LLVM 17.0.0git
ISDOpcodes.h
Go to the documentation of this file.
1//===-- llvm/CodeGen/ISDOpcodes.h - CodeGen opcodes -------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file declares codegen opcodes and related utilities.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_CODEGEN_ISDOPCODES_H
14#define LLVM_CODEGEN_ISDOPCODES_H
15
17
18namespace llvm {
19
20/// ISD namespace - This namespace contains an enum which represents all of the
21/// SelectionDAG node types and value types.
22///
23namespace ISD {
24
25//===--------------------------------------------------------------------===//
26/// ISD::NodeType enum - This enum defines the target-independent operators
27/// for a SelectionDAG.
28///
29/// Targets may also define target-dependent operator codes for SDNodes. For
30/// example, on x86, these are the enum values in the X86ISD namespace.
31/// Targets should aim to use target-independent operators to model their
32/// instruction sets as much as possible, and only use target-dependent
33/// operators when they have special requirements.
34///
35/// Finally, during and after selection proper, SNodes may use special
36/// operator codes that correspond directly with MachineInstr opcodes. These
37/// are used to represent selected instructions. See the isMachineOpcode()
38/// and getMachineOpcode() member functions of SDNode.
39///
41
42 /// DELETED_NODE - This is an illegal value that is used to catch
43 /// errors. This opcode is not a legal opcode for any node.
45
46 /// EntryToken - This is the marker used to indicate the start of a region.
48
49 /// TokenFactor - This node takes multiple tokens as input and produces a
50 /// single token result. This is used to represent the fact that the operand
51 /// operators are independent of each other.
53
54 /// AssertSext, AssertZext - These nodes record if a register contains a
55 /// value that has already been zero or sign extended from a narrower type.
56 /// These nodes take two operands. The first is the node that has already
57 /// been extended, and the second is a value type node indicating the width
58 /// of the extension.
59 /// NOTE: In case of the source value (or any vector element value) is
60 /// poisoned the assertion will not be true for that value.
63
64 /// AssertAlign - These nodes record if a register contains a value that
65 /// has a known alignment and the trailing bits are known to be zero.
66 /// NOTE: In case of the source value (or any vector element value) is
67 /// poisoned the assertion will not be true for that value.
69
70 /// Various leaf nodes.
85
86 /// The address of the GOT
88
89 /// FRAMEADDR, RETURNADDR - These nodes represent llvm.frameaddress and
90 /// llvm.returnaddress on the DAG. These nodes take one operand, the index
91 /// of the frame or return address to return. An index of zero corresponds
92 /// to the current function's frame or return address, an index of one to
93 /// the parent's frame or return address, and so on.
96
97 /// ADDROFRETURNADDR - Represents the llvm.addressofreturnaddress intrinsic.
98 /// This node takes no operand, returns a target-specific pointer to the
99 /// place in the stack frame where the return address of the current
100 /// function is stored.
102
103 /// SPONENTRY - Represents the llvm.sponentry intrinsic. Takes no argument
104 /// and returns the stack pointer value at the entry of the current
105 /// function calling this intrinsic.
107
108 /// LOCAL_RECOVER - Represents the llvm.localrecover intrinsic.
109 /// Materializes the offset from the local object pointer of another
110 /// function to a particular local object passed to llvm.localescape. The
111 /// operand is the MCSymbol label used to represent this offset, since
112 /// typically the offset is not known until after code generation of the
113 /// parent.
115
116 /// READ_REGISTER, WRITE_REGISTER - This node represents llvm.register on
117 /// the DAG, which implements the named register global variables extension.
120
121 /// FRAME_TO_ARGS_OFFSET - This node represents offset from frame pointer to
122 /// first (possible) on-stack argument. This is needed for correct stack
123 /// adjustment during unwind.
125
126 /// EH_DWARF_CFA - This node represents the pointer to the DWARF Canonical
127 /// Frame Address (CFA), generally the value of the stack pointer at the
128 /// call site in the previous frame.
130
131 /// OUTCHAIN = EH_RETURN(INCHAIN, OFFSET, HANDLER) - This node represents
132 /// 'eh_return' gcc dwarf builtin, which is used to return from
133 /// exception. The general meaning is: adjust stack by OFFSET and pass
134 /// execution to HANDLER. Many platform-related details also :)
136
137 /// RESULT, OUTCHAIN = EH_SJLJ_SETJMP(INCHAIN, buffer)
138 /// This corresponds to the eh.sjlj.setjmp intrinsic.
139 /// It takes an input chain and a pointer to the jump buffer as inputs
140 /// and returns an outchain.
142
143 /// OUTCHAIN = EH_SJLJ_LONGJMP(INCHAIN, buffer)
144 /// This corresponds to the eh.sjlj.longjmp intrinsic.
145 /// It takes an input chain and a pointer to the jump buffer as inputs
146 /// and returns an outchain.
148
149 /// OUTCHAIN = EH_SJLJ_SETUP_DISPATCH(INCHAIN)
150 /// The target initializes the dispatch table here.
152
153 /// TargetConstant* - Like Constant*, but the DAG does not do any folding,
154 /// simplification, or lowering of the constant. They are used for constants
155 /// which are known to fit in the immediate fields of their users, or for
156 /// carrying magic numbers which are not values which need to be
157 /// materialized in registers.
160
161 /// TargetGlobalAddress - Like GlobalAddress, but the DAG does no folding or
162 /// anything else with this node, and this is valid in the target-specific
163 /// dag, turning into a GlobalAddress operand.
171
173
174 /// TargetIndex - Like a constant pool entry, but with completely
175 /// target-dependent semantics. Holds target flags, a 32-bit index, and a
176 /// 64-bit index. Targets can use this however they like.
178
179 /// RESULT = INTRINSIC_WO_CHAIN(INTRINSICID, arg1, arg2, ...)
180 /// This node represents a target intrinsic function with no side effects.
181 /// The first operand is the ID number of the intrinsic from the
182 /// llvm::Intrinsic namespace. The operands to the intrinsic follow. The
183 /// node returns the result of the intrinsic.
185
186 /// RESULT,OUTCHAIN = INTRINSIC_W_CHAIN(INCHAIN, INTRINSICID, arg1, ...)
187 /// This node represents a target intrinsic function with side effects that
188 /// returns a result. The first operand is a chain pointer. The second is
189 /// the ID number of the intrinsic from the llvm::Intrinsic namespace. The
190 /// operands to the intrinsic follow. The node has two results, the result
191 /// of the intrinsic and an output chain.
193
194 /// OUTCHAIN = INTRINSIC_VOID(INCHAIN, INTRINSICID, arg1, arg2, ...)
195 /// This node represents a target intrinsic function with side effects that
196 /// does not return a result. The first operand is a chain pointer. The
197 /// second is the ID number of the intrinsic from the llvm::Intrinsic
198 /// namespace. The operands to the intrinsic follow.
200
201 /// CopyToReg - This node has three operands: a chain, a register number to
202 /// set to this value, and a value.
204
205 /// CopyFromReg - This node indicates that the input value is a virtual or
206 /// physical register that is defined outside of the scope of this
207 /// SelectionDAG. The register is available from the RegisterSDNode object.
209
210 /// UNDEF - An undefined node.
212
213 // FREEZE - FREEZE(VAL) returns an arbitrary value if VAL is UNDEF (or
214 // is evaluated to UNDEF), or returns VAL otherwise. Note that each
215 // read of UNDEF can yield different value, but FREEZE(UNDEF) cannot.
217
218 /// EXTRACT_ELEMENT - This is used to get the lower or upper (determined by
219 /// a Constant, which is required to be operand #1) half of the integer or
220 /// float value specified as operand #0. This is only for use before
221 /// legalization, for values that will be broken into multiple registers.
223
224 /// BUILD_PAIR - This is the opposite of EXTRACT_ELEMENT in some ways.
225 /// Given two values of the same integer value type, this produces a value
226 /// twice as big. Like EXTRACT_ELEMENT, this can only be used before
227 /// legalization. The lower part of the composite value should be in
228 /// element 0 and the upper part should be in element 1.
230
231 /// MERGE_VALUES - This node takes multiple discrete operands and returns
232 /// them all as its individual results. This nodes has exactly the same
233 /// number of inputs and outputs. This node is useful for some pieces of the
234 /// code generator that want to think about a single node with multiple
235 /// results, not multiple nodes.
237
238 /// Simple integer binary arithmetic operators.
246
247 /// SMUL_LOHI/UMUL_LOHI - Multiply two integers of type iN, producing
248 /// a signed/unsigned value of type i[2*N], and return the full value as
249 /// two results, each of type iN.
252
253 /// SDIVREM/UDIVREM - Divide two integers and produce both a quotient and
254 /// remainder result.
257
258 /// CARRY_FALSE - This node is used when folding other nodes,
259 /// like ADDC/SUBC, which indicate the carry result is always false.
261
262 /// Carry-setting nodes for multiple precision addition and subtraction.
263 /// These nodes take two operands of the same value type, and produce two
264 /// results. The first result is the normal add or sub result, the second
265 /// result is the carry flag result.
266 /// FIXME: These nodes are deprecated in favor of UADDO_CARRY and USUBO_CARRY.
267 /// They are kept around for now to provide a smooth transition path
268 /// toward the use of UADDO_CARRY/USUBO_CARRY and will eventually be removed.
271
272 /// Carry-using nodes for multiple precision addition and subtraction. These
273 /// nodes take three operands: The first two are the normal lhs and rhs to
274 /// the add or sub, and the third is the input carry flag. These nodes
275 /// produce two results; the normal result of the add or sub, and the output
276 /// carry flag. These nodes both read and write a carry flag to allow them
277 /// to them to be chained together for add and sub of arbitrarily large
278 /// values.
281
282 /// Carry-using nodes for multiple precision addition and subtraction.
283 /// These nodes take three operands: The first two are the normal lhs and
284 /// rhs to the add or sub, and the third is a boolean value that is 1 if and
285 /// only if there is an incoming carry/borrow. These nodes produce two
286 /// results: the normal result of the add or sub, and a boolean value that is
287 /// 1 if and only if there is an outgoing carry/borrow.
288 ///
289 /// Care must be taken if these opcodes are lowered to hardware instructions
290 /// that use the inverse logic -- 0 if and only if there is an
291 /// incoming/outgoing carry/borrow. In such cases, you must preserve the
292 /// semantics of these opcodes by inverting the incoming carry/borrow, feeding
293 /// it to the add/sub hardware instruction, and then inverting the outgoing
294 /// carry/borrow.
295 ///
296 /// The use of these opcodes is preferable to adde/sube if the target supports
297 /// it, as the carry is a regular value rather than a glue, which allows
298 /// further optimisation.
299 ///
300 /// These opcodes are different from [US]{ADD,SUB}O in that
301 /// U{ADD,SUB}O_CARRY consume and produce a carry/borrow, whereas
302 /// [US]{ADD,SUB}O produce an overflow.
305
306 /// Carry-using overflow-aware nodes for multiple precision addition and
307 /// subtraction. These nodes take three operands: The first two are normal lhs
308 /// and rhs to the add or sub, and the third is a boolean indicating if there
309 /// is an incoming carry. They produce two results: the normal result of the
310 /// add or sub, and a boolean that indicates if an overflow occurred (*not*
311 /// flag, because it may be a store to memory, etc.). If the type of the
312 /// boolean is not i1 then the high bits conform to getBooleanContents.
315
316 /// RESULT, BOOL = [SU]ADDO(LHS, RHS) - Overflow-aware nodes for addition.
317 /// These nodes take two operands: the normal LHS and RHS to the add. They
318 /// produce two results: the normal result of the add, and a boolean that
319 /// indicates if an overflow occurred (*not* a flag, because it may be store
320 /// to memory, etc.). If the type of the boolean is not i1 then the high
321 /// bits conform to getBooleanContents.
322 /// These nodes are generated from llvm.[su]add.with.overflow intrinsics.
325
326 /// Same for subtraction.
329
330 /// Same for multiplication.
333
334 /// RESULT = [US]ADDSAT(LHS, RHS) - Perform saturation addition on 2
335 /// integers with the same bit width (W). If the true value of LHS + RHS
336 /// exceeds the largest value that can be represented by W bits, the
337 /// resulting value is this maximum value. Otherwise, if this value is less
338 /// than the smallest value that can be represented by W bits, the
339 /// resulting value is this minimum value.
342
343 /// RESULT = [US]SUBSAT(LHS, RHS) - Perform saturation subtraction on 2
344 /// integers with the same bit width (W). If the true value of LHS - RHS
345 /// exceeds the largest value that can be represented by W bits, the
346 /// resulting value is this maximum value. Otherwise, if this value is less
347 /// than the smallest value that can be represented by W bits, the
348 /// resulting value is this minimum value.
351
352 /// RESULT = [US]SHLSAT(LHS, RHS) - Perform saturation left shift. The first
353 /// operand is the value to be shifted, and the second argument is the amount
354 /// to shift by. Both must be integers of the same bit width (W). If the true
355 /// value of LHS << RHS exceeds the largest value that can be represented by
356 /// W bits, the resulting value is this maximum value, Otherwise, if this
357 /// value is less than the smallest value that can be represented by W bits,
358 /// the resulting value is this minimum value.
361
362 /// RESULT = [US]MULFIX(LHS, RHS, SCALE) - Perform fixed point multiplication
363 /// on 2 integers with the same width and scale. SCALE represents the scale
364 /// of both operands as fixed point numbers. This SCALE parameter must be a
365 /// constant integer. A scale of zero is effectively performing
366 /// multiplication on 2 integers.
369
370 /// Same as the corresponding unsaturated fixed point instructions, but the
371 /// result is clamped between the min and max values representable by the
372 /// bits of the first 2 operands.
375
376 /// RESULT = [US]DIVFIX(LHS, RHS, SCALE) - Perform fixed point division on
377 /// 2 integers with the same width and scale. SCALE represents the scale
378 /// of both operands as fixed point numbers. This SCALE parameter must be a
379 /// constant integer.
382
383 /// Same as the corresponding unsaturated fixed point instructions, but the
384 /// result is clamped between the min and max values representable by the
385 /// bits of the first 2 operands.
388
389 /// Simple binary floating point operators.
395
396 /// Constrained versions of the binary floating point operators.
397 /// These will be lowered to the simple operators before final selection.
398 /// They are used to limit optimizations while the DAG is being
399 /// optimized.
406
407 /// Constrained versions of libm-equivalent floating point intrinsics.
408 /// These will be lowered to the equivalent non-constrained pseudo-op
409 /// (or expanded to the equivalent library call) before final selection.
410 /// They are used to limit optimizations while the DAG is being optimized.
436
437 /// STRICT_FP_TO_[US]INT - Convert a floating point value to a signed or
438 /// unsigned integer. These have the same semantics as fptosi and fptoui
439 /// in IR.
440 /// They are used to limit optimizations while the DAG is being optimized.
443
444 /// STRICT_[US]INT_TO_FP - Convert a signed or unsigned integer to
445 /// a floating point value. These have the same semantics as sitofp and
446 /// uitofp in IR.
447 /// They are used to limit optimizations while the DAG is being optimized.
450
451 /// X = STRICT_FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating
452 /// point type down to the precision of the destination VT. TRUNC is a
453 /// flag, which is always an integer that is zero or one. If TRUNC is 0,
454 /// this is a normal rounding, if it is 1, this FP_ROUND is known to not
455 /// change the value of Y.
456 ///
457 /// The TRUNC = 1 case is used in cases where we know that the value will
458 /// not be modified by the node, because Y is not using any of the extra
459 /// precision of source type. This allows certain transformations like
460 /// STRICT_FP_EXTEND(STRICT_FP_ROUND(X,1)) -> X which are not safe for
461 /// STRICT_FP_EXTEND(STRICT_FP_ROUND(X,0)) because the extra bits aren't
462 /// removed.
463 /// It is used to limit optimizations while the DAG is being optimized.
465
466 /// X = STRICT_FP_EXTEND(Y) - Extend a smaller FP type into a larger FP
467 /// type.
468 /// It is used to limit optimizations while the DAG is being optimized.
470
471 /// STRICT_FSETCC/STRICT_FSETCCS - Constrained versions of SETCC, used
472 /// for floating-point operands only. STRICT_FSETCC performs a quiet
473 /// comparison operation, while STRICT_FSETCCS performs a signaling
474 /// comparison operation.
477
478 // FPTRUNC_ROUND - This corresponds to the fptrunc_round intrinsic.
480
481 /// FMA - Perform a * b + c with no intermediate rounding step.
483
484 /// FMAD - Perform a * b + c, while getting the same result as the
485 /// separately rounded operations.
487
488 /// FCOPYSIGN(X, Y) - Return the value of X with the sign of Y. NOTE: This
489 /// DAG node does not require that X and Y have the same type, just that
490 /// they are both floating point. X and the result must have the same type.
491 /// FCOPYSIGN(f32, f64) is allowed.
493
494 /// INT = FGETSIGN(FP) - Return the sign bit of the specified floating point
495 /// value as an integer 0/1 value.
497
498 /// Returns platform specific canonical encoding of a floating point number.
500
501 /// Performs a check of floating point class property, defined by IEEE-754.
502 /// The first operand is the floating point value to check. The second operand
503 /// specifies the checked property and is a TargetConstant which specifies
504 /// test in the same way as intrinsic 'is_fpclass'.
505 /// Returns boolean value.
507
508 /// BUILD_VECTOR(ELT0, ELT1, ELT2, ELT3,...) - Return a fixed-width vector
509 /// with the specified, possibly variable, elements. The types of the
510 /// operands must match the vector element type, except that integer types
511 /// are allowed to be larger than the element type, in which case the
512 /// operands are implicitly truncated. The types of the operands must all
513 /// be the same.
515
516 /// INSERT_VECTOR_ELT(VECTOR, VAL, IDX) - Returns VECTOR with the element
517 /// at IDX replaced with VAL. If the type of VAL is larger than the vector
518 /// element type then VAL is truncated before replacement.
519 ///
520 /// If VECTOR is a scalable vector, then IDX may be larger than the minimum
521 /// vector width. IDX is not first scaled by the runtime scaling factor of
522 /// VECTOR.
524
525 /// EXTRACT_VECTOR_ELT(VECTOR, IDX) - Returns a single element from VECTOR
526 /// identified by the (potentially variable) element number IDX. If the return
527 /// type is an integer type larger than the element type of the vector, the
528 /// result is extended to the width of the return type. In that case, the high
529 /// bits are undefined.
530 ///
531 /// If VECTOR is a scalable vector, then IDX may be larger than the minimum
532 /// vector width. IDX is not first scaled by the runtime scaling factor of
533 /// VECTOR.
535
536 /// CONCAT_VECTORS(VECTOR0, VECTOR1, ...) - Given a number of values of
537 /// vector type with the same length and element type, this produces a
538 /// concatenated vector result value, with length equal to the sum of the
539 /// lengths of the input vectors. If VECTOR0 is a fixed-width vector, then
540 /// VECTOR1..VECTORN must all be fixed-width vectors. Similarly, if VECTOR0
541 /// is a scalable vector, then VECTOR1..VECTORN must all be scalable vectors.
543
544 /// INSERT_SUBVECTOR(VECTOR1, VECTOR2, IDX) - Returns a vector with VECTOR2
545 /// inserted into VECTOR1. IDX represents the starting element number at which
546 /// VECTOR2 will be inserted. IDX must be a constant multiple of T's known
547 /// minimum vector length. Let the type of VECTOR2 be T, then if T is a
548 /// scalable vector, IDX is first scaled by the runtime scaling factor of T.
549 /// The elements of VECTOR1 starting at IDX are overwritten with VECTOR2.
550 /// Elements IDX through (IDX + num_elements(T) - 1) must be valid VECTOR1
551 /// indices. If this condition cannot be determined statically but is false at
552 /// runtime, then the result vector is undefined. The IDX parameter must be a
553 /// vector index constant type, which for most targets will be an integer
554 /// pointer type.
555 ///
556 /// This operation supports inserting a fixed-width vector into a scalable
557 /// vector, but not the other way around.
559
560 /// EXTRACT_SUBVECTOR(VECTOR, IDX) - Returns a subvector from VECTOR.
561 /// Let the result type be T, then IDX represents the starting element number
562 /// from which a subvector of type T is extracted. IDX must be a constant
563 /// multiple of T's known minimum vector length. If T is a scalable vector,
564 /// IDX is first scaled by the runtime scaling factor of T. Elements IDX
565 /// through (IDX + num_elements(T) - 1) must be valid VECTOR indices. If this
566 /// condition cannot be determined statically but is false at runtime, then
567 /// the result vector is undefined. The IDX parameter must be a vector index
568 /// constant type, which for most targets will be an integer pointer type.
569 ///
570 /// This operation supports extracting a fixed-width vector from a scalable
571 /// vector, but not the other way around.
573
574 /// VECTOR_DEINTERLEAVE(VEC1, VEC2) - Returns two vectors with all input and
575 /// output vectors having the same type. The first output contains the even
576 /// indices from CONCAT_VECTORS(VEC1, VEC2), with the second output
577 /// containing the odd indices. The relative order of elements within an
578 /// output match that of the concatenated input.
580
581 /// VECTOR_INTERLEAVE(VEC1, VEC2) - Returns two vectors with all input and
582 /// output vectors having the same type. The first output contains the
583 /// result of interleaving the low half of CONCAT_VECTORS(VEC1, VEC2), with
584 /// the second output containing the result of interleaving the high half.
586
587 /// VECTOR_REVERSE(VECTOR) - Returns a vector, of the same type as VECTOR,
588 /// whose elements are shuffled using the following algorithm:
589 /// RESULT[i] = VECTOR[VECTOR.ElementCount - 1 - i]
591
592 /// VECTOR_SHUFFLE(VEC1, VEC2) - Returns a vector, of the same type as
593 /// VEC1/VEC2. A VECTOR_SHUFFLE node also contains an array of constant int
594 /// values that indicate which value (or undef) each result element will
595 /// get. These constant ints are accessible through the
596 /// ShuffleVectorSDNode class. This is quite similar to the Altivec
597 /// 'vperm' instruction, except that the indices must be constants and are
598 /// in terms of the element size of VEC1/VEC2, not in terms of bytes.
600
601 /// VECTOR_SPLICE(VEC1, VEC2, IMM) - Returns a subvector of the same type as
602 /// VEC1/VEC2 from CONCAT_VECTORS(VEC1, VEC2), based on the IMM in two ways.
603 /// Let the result type be T, if IMM is positive it represents the starting
604 /// element number (an index) from which a subvector of type T is extracted
605 /// from CONCAT_VECTORS(VEC1, VEC2). If IMM is negative it represents a count
606 /// specifying the number of trailing elements to extract from VEC1, where the
607 /// elements of T are selected using the following algorithm:
608 /// RESULT[i] = CONCAT_VECTORS(VEC1,VEC2)[VEC1.ElementCount - ABS(IMM) + i]
609 /// If IMM is not in the range [-VL, VL-1] the result vector is undefined. IMM
610 /// is a constant integer.
612
613 /// SCALAR_TO_VECTOR(VAL) - This represents the operation of loading a
614 /// scalar value into element 0 of the resultant vector type. The top
615 /// elements 1 to N-1 of the N-element vector are undefined. The type
616 /// of the operand must match the vector element type, except when they
617 /// are integer types. In this case the operand is allowed to be wider
618 /// than the vector element type, and is implicitly truncated to it.
620
621 /// SPLAT_VECTOR(VAL) - Returns a vector with the scalar value VAL
622 /// duplicated in all lanes. The type of the operand must match the vector
623 /// element type, except when they are integer types. In this case the
624 /// operand is allowed to be wider than the vector element type, and is
625 /// implicitly truncated to it.
627
628 /// SPLAT_VECTOR_PARTS(SCALAR1, SCALAR2, ...) - Returns a vector with the
629 /// scalar values joined together and then duplicated in all lanes. This
630 /// represents a SPLAT_VECTOR that has had its scalar operand expanded. This
631 /// allows representing a 64-bit splat on a target with 32-bit integers. The
632 /// total width of the scalars must cover the element width. SCALAR1 contains
633 /// the least significant bits of the value regardless of endianness and all
634 /// scalars should have the same type.
636
637 /// STEP_VECTOR(IMM) - Returns a scalable vector whose lanes are comprised
638 /// of a linear sequence of unsigned values starting from 0 with a step of
639 /// IMM, where IMM must be a TargetConstant with type equal to the vector
640 /// element type. The arithmetic is performed modulo the bitwidth of the
641 /// element.
642 ///
643 /// The operation does not support returning fixed-width vectors or
644 /// non-constant operands.
646
647 /// MULHU/MULHS - Multiply high - Multiply two integers of type iN,
648 /// producing an unsigned/signed value of type i[2*N], then return the top
649 /// part.
652
653 /// AVGFLOORS/AVGFLOORU - Averaging add - Add two integers using an integer of
654 /// type i[N+1], halving the result by shifting it one bit right.
655 /// shr(add(ext(X), ext(Y)), 1)
658 /// AVGCEILS/AVGCEILU - Rounding averaging add - Add two integers using an
659 /// integer of type i[N+2], add 1 and halve the result by shifting it one bit
660 /// right. shr(add(ext(X), ext(Y), 1), 1)
663
664 // ABDS/ABDU - Absolute difference - Return the absolute difference between
665 // two numbers interpreted as signed/unsigned.
666 // i.e trunc(abs(sext(Op0) - sext(Op1))) becomes abds(Op0, Op1)
667 // or trunc(abs(zext(Op0) - zext(Op1))) becomes abdu(Op0, Op1)
670
671 /// [US]{MIN/MAX} - Binary minimum or maximum of signed or unsigned
672 /// integers.
677
678 /// Bitwise operators - logical and, logical or, logical xor.
682
683 /// ABS - Determine the unsigned absolute value of a signed integer value of
684 /// the same bitwidth.
685 /// Note: A value of INT_MIN will return INT_MIN, no saturation or overflow
686 /// is performed.
688
689 /// Shift and rotation operations. After legalization, the type of the
690 /// shift amount is known to be TLI.getShiftAmountTy(). Before legalization
691 /// the shift amount can be any type, but care must be taken to ensure it is
692 /// large enough. TLI.getShiftAmountTy() is i8 on some targets, but before
693 /// legalization, types like i1024 can occur and i8 doesn't have enough bits
694 /// to represent the shift amount.
695 /// When the 1st operand is a vector, the shift amount must be in the same
696 /// type. (TLI.getShiftAmountTy() will return the same type when the input
697 /// type is a vector.)
698 /// For rotates and funnel shifts, the shift amount is treated as an unsigned
699 /// amount modulo the element size of the first operand.
700 ///
701 /// Funnel 'double' shifts take 3 operands, 2 inputs and the shift amount.
702 /// fshl(X,Y,Z): (X << (Z % BW)) | (Y >> (BW - (Z % BW)))
703 /// fshr(X,Y,Z): (X << (BW - (Z % BW))) | (Y >> (Z % BW))
711
712 /// Byte Swap and Counting operators.
719
720 /// Bit counting operators with an undefined result for zero inputs.
723
724 /// Select(COND, TRUEVAL, FALSEVAL). If the type of the boolean COND is not
725 /// i1 then the high bits must conform to getBooleanContents.
727
728 /// Select with a vector condition (op #0) and two vector operands (ops #1
729 /// and #2), returning a vector result. All vectors have the same length.
730 /// Much like the scalar select and setcc, each bit in the condition selects
731 /// whether the corresponding result element is taken from op #1 or op #2.
732 /// At first, the VSELECT condition is of vXi1 type. Later, targets may
733 /// change the condition type in order to match the VSELECT node using a
734 /// pattern. The condition follows the BooleanContent format of the target.
736
737 /// Select with condition operator - This selects between a true value and
738 /// a false value (ops #2 and #3) based on the boolean result of comparing
739 /// the lhs and rhs (ops #0 and #1) of a conditional expression with the
740 /// condition code in op #4, a CondCodeSDNode.
742
743 /// SetCC operator - This evaluates to a true value iff the condition is
744 /// true. If the result value type is not i1 then the high bits conform
745 /// to getBooleanContents. The operands to this are the left and right
746 /// operands to compare (ops #0, and #1) and the condition code to compare
747 /// them with (op #2) as a CondCodeSDNode. If the operands are vector types
748 /// then the result type must also be a vector type.
750
751 /// Like SetCC, ops #0 and #1 are the LHS and RHS operands to compare, but
752 /// op #2 is a boolean indicating if there is an incoming carry. This
753 /// operator checks the result of "LHS - RHS - Carry", and can be used to
754 /// compare two wide integers:
755 /// (setcccarry lhshi rhshi (usubo_carry lhslo rhslo) cc).
756 /// Only valid for integers.
758
759 /// SHL_PARTS/SRA_PARTS/SRL_PARTS - These operators are used for expanded
760 /// integer shift operations. The operation ordering is:
761 /// [Lo,Hi] = op [LoLHS,HiLHS], Amt
765
766 /// Conversion operators. These are all single input single output
767 /// operations. For all of these, the result type must be strictly
768 /// wider or narrower (depending on the operation) than the source
769 /// type.
770
771 /// SIGN_EXTEND - Used for integer types, replicating the sign bit
772 /// into new bits.
774
775 /// ZERO_EXTEND - Used for integer types, zeroing the new bits.
777
778 /// ANY_EXTEND - Used for integer types. The high bits are undefined.
780
781 /// TRUNCATE - Completely drop the high bits.
783
784 /// [SU]INT_TO_FP - These operators convert integers (whose interpreted sign
785 /// depends on the first letter) to floating point.
788
789 /// SIGN_EXTEND_INREG - This operator atomically performs a SHL/SRA pair to
790 /// sign extend a small value in a large integer register (e.g. sign
791 /// extending the low 8 bits of a 32-bit register to fill the top 24 bits
792 /// with the 7th bit). The size of the smaller type is indicated by the 1th
793 /// operand, a ValueType node.
795
796 /// ANY_EXTEND_VECTOR_INREG(Vector) - This operator represents an
797 /// in-register any-extension of the low lanes of an integer vector. The
798 /// result type must have fewer elements than the operand type, and those
799 /// elements must be larger integer types such that the total size of the
800 /// operand type is less than or equal to the size of the result type. Each
801 /// of the low operand elements is any-extended into the corresponding,
802 /// wider result elements with the high bits becoming undef.
803 /// NOTE: The type legalizer prefers to make the operand and result size
804 /// the same to allow expansion to shuffle vector during op legalization.
806
807 /// SIGN_EXTEND_VECTOR_INREG(Vector) - This operator represents an
808 /// in-register sign-extension of the low lanes of an integer vector. The
809 /// result type must have fewer elements than the operand type, and those
810 /// elements must be larger integer types such that the total size of the
811 /// operand type is less than or equal to the size of the result type. Each
812 /// of the low operand elements is sign-extended into the corresponding,
813 /// wider result elements.
814 /// NOTE: The type legalizer prefers to make the operand and result size
815 /// the same to allow expansion to shuffle vector during op legalization.
817
818 /// ZERO_EXTEND_VECTOR_INREG(Vector) - This operator represents an
819 /// in-register zero-extension of the low lanes of an integer vector. The
820 /// result type must have fewer elements than the operand type, and those
821 /// elements must be larger integer types such that the total size of the
822 /// operand type is less than or equal to the size of the result type. Each
823 /// of the low operand elements is zero-extended into the corresponding,
824 /// wider result elements.
825 /// NOTE: The type legalizer prefers to make the operand and result size
826 /// the same to allow expansion to shuffle vector during op legalization.
828
829 /// FP_TO_[US]INT - Convert a floating point value to a signed or unsigned
830 /// integer. These have the same semantics as fptosi and fptoui in IR. If
831 /// the FP value cannot fit in the integer type, the results are undefined.
834
835 /// FP_TO_[US]INT_SAT - Convert floating point value in operand 0 to a
836 /// signed or unsigned scalar integer type given in operand 1 with the
837 /// following semantics:
838 ///
839 /// * If the value is NaN, zero is returned.
840 /// * If the value is larger/smaller than the largest/smallest integer,
841 /// the largest/smallest integer is returned (saturation).
842 /// * Otherwise the result of rounding the value towards zero is returned.
843 ///
844 /// The scalar width of the type given in operand 1 must be equal to, or
845 /// smaller than, the scalar result type width. It may end up being smaller
846 /// than the result width as a result of integer type legalization.
847 ///
848 /// After converting to the scalar integer type in operand 1, the value is
849 /// extended to the result VT. FP_TO_SINT_SAT sign extends and FP_TO_UINT_SAT
850 /// zero extends.
853
854 /// X = FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating point type
855 /// down to the precision of the destination VT. TRUNC is a flag, which is
856 /// always an integer that is zero or one. If TRUNC is 0, this is a
857 /// normal rounding, if it is 1, this FP_ROUND is known to not change the
858 /// value of Y.
859 ///
860 /// The TRUNC = 1 case is used in cases where we know that the value will
861 /// not be modified by the node, because Y is not using any of the extra
862 /// precision of source type. This allows certain transformations like
863 /// FP_EXTEND(FP_ROUND(X,1)) -> X which are not safe for
864 /// FP_EXTEND(FP_ROUND(X,0)) because the extra bits aren't removed.
866
867 /// Returns current rounding mode:
868 /// -1 Undefined
869 /// 0 Round to 0
870 /// 1 Round to nearest, ties to even
871 /// 2 Round to +inf
872 /// 3 Round to -inf
873 /// 4 Round to nearest, ties to zero
874 /// Result is rounding mode and chain. Input is a chain.
876
877 /// Set rounding mode.
878 /// The first operand is a chain pointer. The second specifies the required
879 /// rounding mode, encoded in the same way as used in '``GET_ROUNDING``'.
881
882 /// X = FP_EXTEND(Y) - Extend a smaller FP type into a larger FP type.
884
885 /// BITCAST - This operator converts between integer, vector and FP
886 /// values, as if the value was stored to memory with one type and loaded
887 /// from the same address with the other type (or equivalently for vector
888 /// format conversions, etc). The source and result are required to have
889 /// the same bit size (e.g. f32 <-> i32). This can also be used for
890 /// int-to-int or fp-to-fp conversions, but that is a noop, deleted by
891 /// getNode().
892 ///
893 /// This operator is subtly different from the bitcast instruction from
894 /// LLVM-IR since this node may change the bits in the register. For
895 /// example, this occurs on big-endian NEON and big-endian MSA where the
896 /// layout of the bits in the register depends on the vector type and this
897 /// operator acts as a shuffle operation for some vector type combinations.
899
900 /// ADDRSPACECAST - This operator converts between pointers of different
901 /// address spaces.
903
904 /// FP16_TO_FP, FP_TO_FP16 - These operators are used to perform promotions
905 /// and truncation for half-precision (16 bit) floating numbers. These nodes
906 /// form a semi-softened interface for dealing with f16 (as an i16), which
907 /// is often a storage-only type but has native conversions.
912
913 /// BF16_TO_FP, FP_TO_BF16 - These operators are used to perform promotions
914 /// and truncation for bfloat16. These nodes form a semi-softened interface
915 /// for dealing with bf16 (as an i16), which is often a storage-only type but
916 /// has native conversions.
919
920 /// Perform various unary floating-point operations inspired by libm. For
921 /// FPOWI, the result is undefined if if the integer operand doesn't fit into
922 /// sizeof(int).
947
948 /// FMINNUM/FMAXNUM - Perform floating-point minimum or maximum on two
949 /// values.
950 //
951 /// In the case where a single input is a NaN (either signaling or quiet),
952 /// the non-NaN input is returned.
953 ///
954 /// The return value of (FMINNUM 0.0, -0.0) could be either 0.0 or -0.0.
957
958 /// FMINNUM_IEEE/FMAXNUM_IEEE - Perform floating-point minimum or maximum on
959 /// two values, following the IEEE-754 2008 definition. This differs from
960 /// FMINNUM/FMAXNUM in the handling of signaling NaNs. If one input is a
961 /// signaling NaN, returns a quiet NaN.
964
965 /// FMINIMUM/FMAXIMUM - NaN-propagating minimum/maximum that also treat -0.0
966 /// as less than 0.0. While FMINNUM_IEEE/FMAXNUM_IEEE follow IEEE 754-2008
967 /// semantics, FMINIMUM/FMAXIMUM follow IEEE 754-2018 draft semantics.
970
971 /// FSINCOS - Compute both fsin and fcos as a single operation.
973
974 /// LOAD and STORE have token chains as their first operand, then the same
975 /// operands as an LLVM load/store instruction, then an offset node that
976 /// is added / subtracted from the base pointer to form the address (for
977 /// indexed memory ops).
980
981 /// DYNAMIC_STACKALLOC - Allocate some number of bytes on the stack aligned
982 /// to a specified boundary. This node always has two return values: a new
983 /// stack pointer value and a chain. The first operand is the token chain,
984 /// the second is the number of bytes to allocate, and the third is the
985 /// alignment boundary. The size is guaranteed to be a multiple of the
986 /// stack alignment, and the alignment is guaranteed to be bigger than the
987 /// stack alignment (if required) or 0 to get standard stack alignment.
989
990 /// Control flow instructions. These all have token chains.
991
992 /// BR - Unconditional branch. The first operand is the chain
993 /// operand, the second is the MBB to branch to.
995
996 /// BRIND - Indirect branch. The first operand is the chain, the second
997 /// is the value to branch to, which must be of the same type as the
998 /// target's pointer type.
1000
1001 /// BR_JT - Jumptable branch. The first operand is the chain, the second
1002 /// is the jumptable index, the last one is the jumptable entry index.
1004
1005 /// BRCOND - Conditional branch. The first operand is the chain, the
1006 /// second is the condition, the third is the block to branch to if the
1007 /// condition is true. If the type of the condition is not i1, then the
1008 /// high bits must conform to getBooleanContents. If the condition is undef,
1009 /// it nondeterministically jumps to the block.
1010 /// TODO: Its semantics w.r.t undef requires further discussion; we need to
1011 /// make it sure that it is consistent with optimizations in MIR & the
1012 /// meaning of IMPLICIT_DEF. See https://reviews.llvm.org/D92015
1014
1015 /// BR_CC - Conditional branch. The behavior is like that of SELECT_CC, in
1016 /// that the condition is represented as condition code, and two nodes to
1017 /// compare, rather than as a combined SetCC node. The operands in order
1018 /// are chain, cc, lhs, rhs, block to branch to if condition is true. If
1019 /// condition is undef, it nondeterministically jumps to the block.
1021
1022 /// INLINEASM - Represents an inline asm block. This node always has two
1023 /// return values: a chain and a flag result. The inputs are as follows:
1024 /// Operand #0 : Input chain.
1025 /// Operand #1 : a ExternalSymbolSDNode with a pointer to the asm string.
1026 /// Operand #2 : a MDNodeSDNode with the !srcloc metadata.
1027 /// Operand #3 : HasSideEffect, IsAlignStack bits.
1028 /// After this, it is followed by a list of operands with this format:
1029 /// ConstantSDNode: Flags that encode whether it is a mem or not, the
1030 /// of operands that follow, etc. See InlineAsm.h.
1031 /// ... however many operands ...
1032 /// Operand #last: Optional, an incoming flag.
1033 ///
1034 /// The variable width operands are required to represent target addressing
1035 /// modes as a single "operand", even though they may have multiple
1036 /// SDOperands.
1038
1039 /// INLINEASM_BR - Branching version of inline asm. Used by asm-goto.
1041
1042 /// EH_LABEL - Represents a label in mid basic block used to track
1043 /// locations needed for debug and exception handling tables. These nodes
1044 /// take a chain as input and return a chain.
1046
1047 /// ANNOTATION_LABEL - Represents a mid basic block label used by
1048 /// annotations. This should remain within the basic block and be ordered
1049 /// with respect to other call instructions, but loads and stores may float
1050 /// past it.
1052
1053 /// CATCHRET - Represents a return from a catch block funclet. Used for
1054 /// MSVC compatible exception handling. Takes a chain operand and a
1055 /// destination basic block operand.
1057
1058 /// CLEANUPRET - Represents a return from a cleanup block funclet. Used for
1059 /// MSVC compatible exception handling. Takes only a chain operand.
1061
1062 /// STACKSAVE - STACKSAVE has one operand, an input chain. It produces a
1063 /// value, the same type as the pointer type for the system, and an output
1064 /// chain.
1066
1067 /// STACKRESTORE has two operands, an input chain and a pointer to restore
1068 /// to it returns an output chain.
1070
1071 /// CALLSEQ_START/CALLSEQ_END - These operators mark the beginning and end
1072 /// of a call sequence, and carry arbitrary information that target might
1073 /// want to know. The first operand is a chain, the rest are specified by
1074 /// the target and not touched by the DAG optimizers.
1075 /// Targets that may use stack to pass call arguments define additional
1076 /// operands:
1077 /// - size of the call frame part that must be set up within the
1078 /// CALLSEQ_START..CALLSEQ_END pair,
1079 /// - part of the call frame prepared prior to CALLSEQ_START.
1080 /// Both these parameters must be constants, their sum is the total call
1081 /// frame size.
1082 /// CALLSEQ_START..CALLSEQ_END pairs may not be nested.
1083 CALLSEQ_START, // Beginning of a call sequence
1084 CALLSEQ_END, // End of a call sequence
1085
1086 /// VAARG - VAARG has four operands: an input chain, a pointer, a SRCVALUE,
1087 /// and the alignment. It returns a pair of values: the vaarg value and a
1088 /// new chain.
1090
1091 /// VACOPY - VACOPY has 5 operands: an input chain, a destination pointer,
1092 /// a source pointer, a SRCVALUE for the destination, and a SRCVALUE for the
1093 /// source.
1095
1096 /// VAEND, VASTART - VAEND and VASTART have three operands: an input chain,
1097 /// pointer, and a SRCVALUE.
1100
1101 // PREALLOCATED_SETUP - This has 2 operands: an input chain and a SRCVALUE
1102 // with the preallocated call Value.
1104 // PREALLOCATED_ARG - This has 3 operands: an input chain, a SRCVALUE
1105 // with the preallocated call Value, and a constant int.
1107
1108 /// SRCVALUE - This is a node type that holds a Value* that is used to
1109 /// make reference to a value in the LLVM IR.
1111
1112 /// MDNODE_SDNODE - This is a node that holdes an MDNode*, which is used to
1113 /// reference metadata in the IR.
1115
1116 /// PCMARKER - This corresponds to the pcmarker intrinsic.
1118
1119 /// READCYCLECOUNTER - This corresponds to the readcyclecounter intrinsic.
1120 /// It produces a chain and one i64 value. The only operand is a chain.
1121 /// If i64 is not legal, the result will be expanded into smaller values.
1122 /// Still, it returns an i64, so targets should set legality for i64.
1123 /// The result is the content of the architecture-specific cycle
1124 /// counter-like register (or other high accuracy low latency clock source).
1126
1127 /// HANDLENODE node - Used as a handle for various purposes.
1129
1130 /// INIT_TRAMPOLINE - This corresponds to the init_trampoline intrinsic. It
1131 /// takes as input a token chain, the pointer to the trampoline, the pointer
1132 /// to the nested function, the pointer to pass for the 'nest' parameter, a
1133 /// SRCVALUE for the trampoline and another for the nested function
1134 /// (allowing targets to access the original Function*).
1135 /// It produces a token chain as output.
1137
1138 /// ADJUST_TRAMPOLINE - This corresponds to the adjust_trampoline intrinsic.
1139 /// It takes a pointer to the trampoline and produces a (possibly) new
1140 /// pointer to the same trampoline with platform-specific adjustments
1141 /// applied. The pointer it returns points to an executable block of code.
1143
1144 /// TRAP - Trapping instruction
1146
1147 /// DEBUGTRAP - Trap intended to get the attention of a debugger.
1149
1150 /// UBSANTRAP - Trap with an immediate describing the kind of sanitizer
1151 /// failure.
1153
1154 /// PREFETCH - This corresponds to a prefetch intrinsic. The first operand
1155 /// is the chain. The other operands are the address to prefetch,
1156 /// read / write specifier, locality specifier and instruction / data cache
1157 /// specifier.
1159
1160 /// ARITH_FENCE - This corresponds to a arithmetic fence intrinsic. Both its
1161 /// operand and output are the same floating type.
1163
1164 /// MEMBARRIER - Compiler barrier only; generate a no-op.
1166
1167 /// OUTCHAIN = ATOMIC_FENCE(INCHAIN, ordering, scope)
1168 /// This corresponds to the fence instruction. It takes an input chain, and
1169 /// two integer constants: an AtomicOrdering and a SynchronizationScope.
1171
1172 /// Val, OUTCHAIN = ATOMIC_LOAD(INCHAIN, ptr)
1173 /// This corresponds to "load atomic" instruction.
1175
1176 /// OUTCHAIN = ATOMIC_STORE(INCHAIN, ptr, val)
1177 /// This corresponds to "store atomic" instruction.
1179
1180 /// Val, OUTCHAIN = ATOMIC_CMP_SWAP(INCHAIN, ptr, cmp, swap)
1181 /// For double-word atomic operations:
1182 /// ValLo, ValHi, OUTCHAIN = ATOMIC_CMP_SWAP(INCHAIN, ptr, cmpLo, cmpHi,
1183 /// swapLo, swapHi)
1184 /// This corresponds to the cmpxchg instruction.
1186
1187 /// Val, Success, OUTCHAIN
1188 /// = ATOMIC_CMP_SWAP_WITH_SUCCESS(INCHAIN, ptr, cmp, swap)
1189 /// N.b. this is still a strong cmpxchg operation, so
1190 /// Success == "Val == cmp".
1192
1193 /// Val, OUTCHAIN = ATOMIC_SWAP(INCHAIN, ptr, amt)
1194 /// Val, OUTCHAIN = ATOMIC_LOAD_[OpName](INCHAIN, ptr, amt)
1195 /// For double-word atomic operations:
1196 /// ValLo, ValHi, OUTCHAIN = ATOMIC_SWAP(INCHAIN, ptr, amtLo, amtHi)
1197 /// ValLo, ValHi, OUTCHAIN = ATOMIC_LOAD_[OpName](INCHAIN, ptr, amtLo, amtHi)
1198 /// These correspond to the atomicrmw instruction.
1217
1218 // Masked load and store - consecutive vector load and store operations
1219 // with additional mask operand that prevents memory accesses to the
1220 // masked-off lanes.
1221 //
1222 // Val, OutChain = MLOAD(BasePtr, Mask, PassThru)
1223 // OutChain = MSTORE(Value, BasePtr, Mask)
1226
1227 // Masked gather and scatter - load and store operations for a vector of
1228 // random addresses with additional mask operand that prevents memory
1229 // accesses to the masked-off lanes.
1230 //
1231 // Val, OutChain = GATHER(InChain, PassThru, Mask, BasePtr, Index, Scale)
1232 // OutChain = SCATTER(InChain, Value, Mask, BasePtr, Index, Scale)
1233 //
1234 // The Index operand can have more vector elements than the other operands
1235 // due to type legalization. The extra elements are ignored.
1238
1239 /// This corresponds to the llvm.lifetime.* intrinsics. The first operand
1240 /// is the chain and the second operand is the alloca pointer.
1243
1244 /// GC_TRANSITION_START/GC_TRANSITION_END - These operators mark the
1245 /// beginning and end of GC transition sequence, and carry arbitrary
1246 /// information that target might need for lowering. The first operand is
1247 /// a chain, the rest are specified by the target and not touched by the DAG
1248 /// optimizers. GC_TRANSITION_START..GC_TRANSITION_END pairs may not be
1249 /// nested.
1252
1253 /// GET_DYNAMIC_AREA_OFFSET - get offset from native SP to the address of
1254 /// the most recent dynamic alloca. For most targets that would be 0, but
1255 /// for some others (e.g. PowerPC, PowerPC64) that would be compile-time
1256 /// known nonzero constant. The only operand here is the chain.
1258
1259 /// Pseudo probe for AutoFDO, as a place holder in a basic block to improve
1260 /// the sample counts quality.
1262
1263 /// VSCALE(IMM) - Returns the runtime scaling factor used to calculate the
1264 /// number of elements within a scalable vector. IMM is a constant integer
1265 /// multiplier that is applied to the runtime value.
1267
1268 /// Generic reduction nodes. These nodes represent horizontal vector
1269 /// reduction operations, producing a scalar result.
1270 /// The SEQ variants perform reductions in sequential order. The first
1271 /// operand is an initial scalar accumulator value, and the second operand
1272 /// is the vector to reduce.
1273 /// E.g. RES = VECREDUCE_SEQ_FADD f32 ACC, <4 x f32> SRC_VEC
1274 /// ... is equivalent to
1275 /// RES = (((ACC + SRC_VEC[0]) + SRC_VEC[1]) + SRC_VEC[2]) + SRC_VEC[3]
1278
1279 /// These reductions have relaxed evaluation order semantics, and have a
1280 /// single vector operand. The order of evaluation is unspecified. For
1281 /// pow-of-2 vectors, one valid legalizer expansion is to use a tree
1282 /// reduction, i.e.:
1283 /// For RES = VECREDUCE_FADD <8 x f16> SRC_VEC
1284 /// PART_RDX = FADD SRC_VEC[0:3], SRC_VEC[4:7]
1285 /// PART_RDX2 = FADD PART_RDX[0:1], PART_RDX[2:3]
1286 /// RES = FADD PART_RDX2[0], PART_RDX2[1]
1287 /// For non-pow-2 vectors, this can be computed by extracting each element
1288 /// and performing the operation as if it were scalarized.
1291 /// FMIN/FMAX nodes can have flags, for NaN/NoNaN variants.
1294 /// Integer reductions may have a result type larger than the vector element
1295 /// type. However, the reduction is performed using the vector element type
1296 /// and the value in the top bits is unspecified.
1306
1307 // The `llvm.experimental.stackmap` intrinsic.
1308 // Operands: input chain, glue, <id>, <numShadowBytes>, [live0[, live1...]]
1309 // Outputs: output chain, glue
1311
1312 // The `llvm.experimental.patchpoint.*` intrinsic.
1313 // Operands: input chain, [glue], reg-mask, <id>, <numShadowBytes>, callee,
1314 // <numArgs>, cc, ...
1315 // Outputs: [rv], output chain, glue
1317
1318// Vector Predication
1319#define BEGIN_REGISTER_VP_SDNODE(VPSDID, ...) VPSDID,
1320#include "llvm/IR/VPIntrinsics.def"
1321
1322 /// BUILTIN_OP_END - This must be the last enum value in this list.
1323 /// The target-specific pre-isel opcode values start here.
1326
1327/// FIRST_TARGET_STRICTFP_OPCODE - Target-specific pre-isel operations
1328/// which cannot raise FP exceptions should be less than this value.
1329/// Those that do must not be less than this value.
1331
1332/// FIRST_TARGET_MEMORY_OPCODE - Target-specific pre-isel operations
1333/// which do not reference a specific memory location should be less than
1334/// this value. Those that do must not be less than this value, and can
1335/// be used with SelectionDAG::getMemIntrinsicNode.
1337
1338/// Whether this is bitwise logic opcode.
1339inline bool isBitwiseLogicOp(unsigned Opcode) {
1340 return Opcode == ISD::AND || Opcode == ISD::OR || Opcode == ISD::XOR;
1341}
1342
1343/// Get underlying scalar opcode for VECREDUCE opcode.
1344/// For example ISD::AND for ISD::VECREDUCE_AND.
1345NodeType getVecReduceBaseOpcode(unsigned VecReduceOpcode);
1346
1347/// Whether this is a vector-predicated Opcode.
1348bool isVPOpcode(unsigned Opcode);
1349
1350/// Whether this is a vector-predicated binary operation opcode.
1351bool isVPBinaryOp(unsigned Opcode);
1352
1353/// Whether this is a vector-predicated reduction opcode.
1354bool isVPReduction(unsigned Opcode);
1355
1356/// The operand position of the vector mask.
1357std::optional<unsigned> getVPMaskIdx(unsigned Opcode);
1358
1359/// The operand position of the explicit vector length parameter.
1360std::optional<unsigned> getVPExplicitVectorLengthIdx(unsigned Opcode);
1361
1362/// Translate this VP Opcode to its corresponding non-VP Opcode.
1363std::optional<unsigned> getBaseOpcodeForVP(unsigned Opcode, bool hasFPExcept);
1364
1365/// Translate this non-VP Opcode to its corresponding VP Opcode.
1366unsigned getVPForBaseOpcode(unsigned Opcode);
1367
1368//===--------------------------------------------------------------------===//
1369/// MemIndexedMode enum - This enum defines the load / store indexed
1370/// addressing modes.
1371///
1372/// UNINDEXED "Normal" load / store. The effective address is already
1373/// computed and is available in the base pointer. The offset
1374/// operand is always undefined. In addition to producing a
1375/// chain, an unindexed load produces one value (result of the
1376/// load); an unindexed store does not produce a value.
1377///
1378/// PRE_INC Similar to the unindexed mode where the effective address is
1379/// PRE_DEC the value of the base pointer add / subtract the offset.
1380/// It considers the computation as being folded into the load /
1381/// store operation (i.e. the load / store does the address
1382/// computation as well as performing the memory transaction).
1383/// The base operand is always undefined. In addition to
1384/// producing a chain, pre-indexed load produces two values
1385/// (result of the load and the result of the address
1386/// computation); a pre-indexed store produces one value (result
1387/// of the address computation).
1388///
1389/// POST_INC The effective address is the value of the base pointer. The
1390/// POST_DEC value of the offset operand is then added to / subtracted
1391/// from the base after memory transaction. In addition to
1392/// producing a chain, post-indexed load produces two values
1393/// (the result of the load and the result of the base +/- offset
1394/// computation); a post-indexed store produces one value (the
1395/// the result of the base +/- offset computation).
1397
1398static const int LAST_INDEXED_MODE = POST_DEC + 1;
1399
1400//===--------------------------------------------------------------------===//
1401/// MemIndexType enum - This enum defines how to interpret MGATHER/SCATTER's
1402/// index parameter when calculating addresses.
1403///
1404/// SIGNED_SCALED Addr = Base + ((signed)Index * Scale)
1405/// UNSIGNED_SCALED Addr = Base + ((unsigned)Index * Scale)
1406///
1407/// NOTE: The value of Scale is typically only known to the node owning the
1408/// IndexType, with a value of 1 the equivalent of being unscaled.
1410
1412
1413inline bool isIndexTypeSigned(MemIndexType IndexType) {
1414 return IndexType == SIGNED_SCALED;
1415}
1416
1417//===--------------------------------------------------------------------===//
1418/// LoadExtType enum - This enum defines the three variants of LOADEXT
1419/// (load with extension).
1420///
1421/// SEXTLOAD loads the integer operand and sign extends it to a larger
1422/// integer result type.
1423/// ZEXTLOAD loads the integer operand and zero extends it to a larger
1424/// integer result type.
1425/// EXTLOAD is used for two things: floating point extending loads and
1426/// integer extending loads [the top bits are undefined].
1428
1429static const int LAST_LOADEXT_TYPE = ZEXTLOAD + 1;
1430
1432
1433//===--------------------------------------------------------------------===//
1434/// ISD::CondCode enum - These are ordered carefully to make the bitfields
1435/// below work out, when considering SETFALSE (something that never exists
1436/// dynamically) as 0. "U" -> Unsigned (for integer operands) or Unordered
1437/// (for floating point), "L" -> Less than, "G" -> Greater than, "E" -> Equal
1438/// to. If the "N" column is 1, the result of the comparison is undefined if
1439/// the input is a NAN.
1440///
1441/// All of these (except for the 'always folded ops') should be handled for
1442/// floating point. For integer, only the SETEQ,SETNE,SETLT,SETLE,SETGT,
1443/// SETGE,SETULT,SETULE,SETUGT, and SETUGE opcodes are used.
1444///
1445/// Note that these are laid out in a specific order to allow bit-twiddling
1446/// to transform conditions.
1448 // Opcode N U L G E Intuitive operation
1449 SETFALSE, // 0 0 0 0 Always false (always folded)
1450 SETOEQ, // 0 0 0 1 True if ordered and equal
1451 SETOGT, // 0 0 1 0 True if ordered and greater than
1452 SETOGE, // 0 0 1 1 True if ordered and greater than or equal
1453 SETOLT, // 0 1 0 0 True if ordered and less than
1454 SETOLE, // 0 1 0 1 True if ordered and less than or equal
1455 SETONE, // 0 1 1 0 True if ordered and operands are unequal
1456 SETO, // 0 1 1 1 True if ordered (no nans)
1457 SETUO, // 1 0 0 0 True if unordered: isnan(X) | isnan(Y)
1458 SETUEQ, // 1 0 0 1 True if unordered or equal
1459 SETUGT, // 1 0 1 0 True if unordered or greater than
1460 SETUGE, // 1 0 1 1 True if unordered, greater than, or equal
1461 SETULT, // 1 1 0 0 True if unordered or less than
1462 SETULE, // 1 1 0 1 True if unordered, less than, or equal
1463 SETUNE, // 1 1 1 0 True if unordered or not equal
1464 SETTRUE, // 1 1 1 1 Always true (always folded)
1465 // Don't care operations: undefined if the input is a nan.
1466 SETFALSE2, // 1 X 0 0 0 Always false (always folded)
1467 SETEQ, // 1 X 0 0 1 True if equal
1468 SETGT, // 1 X 0 1 0 True if greater than
1469 SETGE, // 1 X 0 1 1 True if greater than or equal
1470 SETLT, // 1 X 1 0 0 True if less than
1471 SETLE, // 1 X 1 0 1 True if less than or equal
1472 SETNE, // 1 X 1 1 0 True if not equal
1473 SETTRUE2, // 1 X 1 1 1 Always true (always folded)
1474
1475 SETCC_INVALID // Marker value.
1477
1478/// Return true if this is a setcc instruction that performs a signed
1479/// comparison when used with integer operands.
1480inline bool isSignedIntSetCC(CondCode Code) {
1481 return Code == SETGT || Code == SETGE || Code == SETLT || Code == SETLE;
1482}
1483
1484/// Return true if this is a setcc instruction that performs an unsigned
1485/// comparison when used with integer operands.
1486inline bool isUnsignedIntSetCC(CondCode Code) {
1487 return Code == SETUGT || Code == SETUGE || Code == SETULT || Code == SETULE;
1488}
1489
1490/// Return true if this is a setcc instruction that performs an equality
1491/// comparison when used with integer operands.
1492inline bool isIntEqualitySetCC(CondCode Code) {
1493 return Code == SETEQ || Code == SETNE;
1494}
1495
1496/// Return true if the specified condition returns true if the two operands to
1497/// the condition are equal. Note that if one of the two operands is a NaN,
1498/// this value is meaningless.
1499inline bool isTrueWhenEqual(CondCode Cond) { return ((int)Cond & 1) != 0; }
1500
1501/// This function returns 0 if the condition is always false if an operand is
1502/// a NaN, 1 if the condition is always true if the operand is a NaN, and 2 if
1503/// the condition is undefined if the operand is a NaN.
1505 return ((int)Cond >> 3) & 3;
1506}
1507
1508/// Return the operation corresponding to !(X op Y), where 'op' is a valid
1509/// SetCC operation.
1511
1512inline bool isExtOpcode(unsigned Opcode) {
1513 return Opcode == ISD::ANY_EXTEND || Opcode == ISD::ZERO_EXTEND ||
1514 Opcode == ISD::SIGN_EXTEND;
1515}
1516
1517inline bool isExtVecInRegOpcode(unsigned Opcode) {
1518 return Opcode == ISD::ANY_EXTEND_VECTOR_INREG ||
1521}
1522
1523namespace GlobalISel {
1524/// Return the operation corresponding to !(X op Y), where 'op' is a valid
1525/// SetCC operation. The U bit of the condition code has different meanings
1526/// between floating point and integer comparisons and LLT's don't provide
1527/// this distinction. As such we need to be told whether the comparison is
1528/// floating point or integer-like. Pointers should use integer-like
1529/// comparisons.
1530CondCode getSetCCInverse(CondCode Operation, bool isIntegerLike);
1531} // end namespace GlobalISel
1532
1533/// Return the operation corresponding to (Y op X) when given the operation
1534/// for (X op Y).
1536
1537/// Return the result of a logical OR between different comparisons of
1538/// identical values: ((X op1 Y) | (X op2 Y)). This function returns
1539/// SETCC_INVALID if it is not possible to represent the resultant comparison.
1541
1542/// Return the result of a logical AND between different comparisons of
1543/// identical values: ((X op1 Y) & (X op2 Y)). This function returns
1544/// SETCC_INVALID if it is not possible to represent the resultant comparison.
1546
1547} // namespace ISD
1548
1549} // namespace llvm
1550
1551#endif
SmallVector< MachineOperand, 4 > Cond
PowerPC Reduce CR logical Operation
The instances of the Type class are immutable: once they are created, they are never changed.
Definition: Type.h:45
CondCode getSetCCInverse(CondCode Operation, bool isIntegerLike)
Return the operation corresponding to !(X op Y), where 'op' is a valid SetCC operation.
CondCode getSetCCAndOperation(CondCode Op1, CondCode Op2, EVT Type)
Return the result of a logical AND between different comparisons of identical values: ((X op1 Y) & (X...
NodeType
ISD::NodeType enum - This enum defines the target-independent operators for a SelectionDAG.
Definition: ISDOpcodes.h:40
@ SETCC
SetCC operator - This evaluates to a true value iff the condition is true.
Definition: ISDOpcodes.h:749
@ MERGE_VALUES
MERGE_VALUES - This node takes multiple discrete operands and returns them all as its individual resu...
Definition: ISDOpcodes.h:236
@ STACKRESTORE
STACKRESTORE has two operands, an input chain and a pointer to restore to it returns an output chain.
Definition: ISDOpcodes.h:1069
@ STACKSAVE
STACKSAVE - STACKSAVE has one operand, an input chain.
Definition: ISDOpcodes.h:1065
@ CTLZ_ZERO_UNDEF
Definition: ISDOpcodes.h:722
@ TargetConstantPool
Definition: ISDOpcodes.h:168
@ MDNODE_SDNODE
MDNODE_SDNODE - This is a node that holdes an MDNode*, which is used to reference metadata in the IR.
Definition: ISDOpcodes.h:1114
@ STRICT_FSETCC
STRICT_FSETCC/STRICT_FSETCCS - Constrained versions of SETCC, used for floating-point operands only.
Definition: ISDOpcodes.h:475
@ ATOMIC_LOAD_FMAX
Definition: ISDOpcodes.h:1213
@ DELETED_NODE
DELETED_NODE - This is an illegal value that is used to catch errors.
Definition: ISDOpcodes.h:44
@ VECREDUCE_SEQ_FADD
Generic reduction nodes.
Definition: ISDOpcodes.h:1276
@ VECREDUCE_SMIN
Definition: ISDOpcodes.h:1303
@ EH_SJLJ_LONGJMP
OUTCHAIN = EH_SJLJ_LONGJMP(INCHAIN, buffer) This corresponds to the eh.sjlj.longjmp intrinsic.
Definition: ISDOpcodes.h:147
@ FGETSIGN
INT = FGETSIGN(FP) - Return the sign bit of the specified floating point value as an integer 0/1 valu...
Definition: ISDOpcodes.h:496
@ SMUL_LOHI
SMUL_LOHI/UMUL_LOHI - Multiply two integers of type iN, producing a signed/unsigned value of type i[2...
Definition: ISDOpcodes.h:250
@ ATOMIC_LOAD_NAND
Definition: ISDOpcodes.h:1206
@ INSERT_SUBVECTOR
INSERT_SUBVECTOR(VECTOR1, VECTOR2, IDX) - Returns a vector with VECTOR2 inserted into VECTOR1.
Definition: ISDOpcodes.h:558
@ BSWAP
Byte Swap and Counting operators.
Definition: ISDOpcodes.h:713
@ SMULFIX
RESULT = [US]MULFIX(LHS, RHS, SCALE) - Perform fixed point multiplication on 2 integers with the same...
Definition: ISDOpcodes.h:367
@ VAEND
VAEND, VASTART - VAEND and VASTART have three operands: an input chain, pointer, and a SRCVALUE.
Definition: ISDOpcodes.h:1098
@ TargetBlockAddress
Definition: ISDOpcodes.h:170
@ ConstantFP
Definition: ISDOpcodes.h:77
@ ATOMIC_LOAD_MAX
Definition: ISDOpcodes.h:1208
@ ATOMIC_STORE
OUTCHAIN = ATOMIC_STORE(INCHAIN, ptr, val) This corresponds to "store atomic" instruction.
Definition: ISDOpcodes.h:1178
@ STRICT_FCEIL
Definition: ISDOpcodes.h:425
@ ATOMIC_LOAD_UMIN
Definition: ISDOpcodes.h:1209
@ ADDC
Carry-setting nodes for multiple precision addition and subtraction.
Definition: ISDOpcodes.h:269
@ FRAME_TO_ARGS_OFFSET
FRAME_TO_ARGS_OFFSET - This node represents offset from frame pointer to first (possible) on-stack ar...
Definition: ISDOpcodes.h:124
@ FMAD
FMAD - Perform a * b + c, while getting the same result as the separately rounded operations.
Definition: ISDOpcodes.h:486
@ FMAXNUM_IEEE
Definition: ISDOpcodes.h:963
@ ADD
Simple integer binary arithmetic operators.
Definition: ISDOpcodes.h:239
@ LOAD
LOAD and STORE have token chains as their first operand, then the same operands as an LLVM load/store...
Definition: ISDOpcodes.h:978
@ SMULFIXSAT
Same as the corresponding unsaturated fixed point instructions, but the result is clamped between the...
Definition: ISDOpcodes.h:373
@ ANY_EXTEND
ANY_EXTEND - Used for integer types. The high bits are undefined.
Definition: ISDOpcodes.h:779
@ FMA
FMA - Perform a * b + c with no intermediate rounding step.
Definition: ISDOpcodes.h:482
@ INTRINSIC_VOID
OUTCHAIN = INTRINSIC_VOID(INCHAIN, INTRINSICID, arg1, arg2, ...) This node represents a target intrin...
Definition: ISDOpcodes.h:199
@ RETURNADDR
Definition: ISDOpcodes.h:95
@ EH_SJLJ_SETUP_DISPATCH
OUTCHAIN = EH_SJLJ_SETUP_DISPATCH(INCHAIN) The target initializes the dispatch table here.
Definition: ISDOpcodes.h:151
@ GlobalAddress
Definition: ISDOpcodes.h:78
@ ATOMIC_CMP_SWAP_WITH_SUCCESS
Val, Success, OUTCHAIN = ATOMIC_CMP_SWAP_WITH_SUCCESS(INCHAIN, ptr, cmp, swap) N.b.
Definition: ISDOpcodes.h:1191
@ STRICT_FMINIMUM
Definition: ISDOpcodes.h:435
@ SINT_TO_FP
[SU]INT_TO_FP - These operators convert integers (whose interpreted sign depends on the first letter)...
Definition: ISDOpcodes.h:786
@ CONCAT_VECTORS
CONCAT_VECTORS(VECTOR0, VECTOR1, ...) - Given a number of values of vector type with the same length ...
Definition: ISDOpcodes.h:542
@ VECREDUCE_FMAX
FMIN/FMAX nodes can have flags, for NaN/NoNaN variants.
Definition: ISDOpcodes.h:1292
@ FADD
Simple binary floating point operators.
Definition: ISDOpcodes.h:390
@ ABS
ABS - Determine the unsigned absolute value of a signed integer value of the same bitwidth.
Definition: ISDOpcodes.h:687
@ MEMBARRIER
MEMBARRIER - Compiler barrier only; generate a no-op.
Definition: ISDOpcodes.h:1165
@ ATOMIC_FENCE
OUTCHAIN = ATOMIC_FENCE(INCHAIN, ordering, scope) This corresponds to the fence instruction.
Definition: ISDOpcodes.h:1170
@ SIGN_EXTEND_VECTOR_INREG
SIGN_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register sign-extension of the low ...
Definition: ISDOpcodes.h:816
@ SDIVREM
SDIVREM/UDIVREM - Divide two integers and produce both a quotient and remainder result.
Definition: ISDOpcodes.h:255
@ VECREDUCE_SMAX
Definition: ISDOpcodes.h:1302
@ STRICT_FSETCCS
Definition: ISDOpcodes.h:476
@ FP16_TO_FP
FP16_TO_FP, FP_TO_FP16 - These operators are used to perform promotions and truncation for half-preci...
Definition: ISDOpcodes.h:908
@ STRICT_FLOG2
Definition: ISDOpcodes.h:420
@ FPTRUNC_ROUND
Definition: ISDOpcodes.h:479
@ ATOMIC_LOAD_OR
Definition: ISDOpcodes.h:1204
@ BITCAST
BITCAST - This operator converts between integer, vector and FP values, as if the value was stored to...
Definition: ISDOpcodes.h:898
@ BUILD_PAIR
BUILD_PAIR - This is the opposite of EXTRACT_ELEMENT in some ways.
Definition: ISDOpcodes.h:229
@ ATOMIC_LOAD_XOR
Definition: ISDOpcodes.h:1205
@ INIT_TRAMPOLINE
INIT_TRAMPOLINE - This corresponds to the init_trampoline intrinsic.
Definition: ISDOpcodes.h:1136
@ SDIVFIX
RESULT = [US]DIVFIX(LHS, RHS, SCALE) - Perform fixed point division on 2 integers with the same width...
Definition: ISDOpcodes.h:380
@ STRICT_FSQRT
Constrained versions of libm-equivalent floating point intrinsics.
Definition: ISDOpcodes.h:411
@ BUILTIN_OP_END
BUILTIN_OP_END - This must be the last enum value in this list.
Definition: ISDOpcodes.h:1324
@ ATOMIC_LOAD_FADD
Definition: ISDOpcodes.h:1211
@ GlobalTLSAddress
Definition: ISDOpcodes.h:79
@ SRCVALUE
SRCVALUE - This is a node type that holds a Value* that is used to make reference to a value in the L...
Definition: ISDOpcodes.h:1110
@ FrameIndex
Definition: ISDOpcodes.h:80
@ EH_LABEL
EH_LABEL - Represents a label in mid basic block used to track locations needed for debug and excepti...
Definition: ISDOpcodes.h:1045
@ EH_RETURN
OUTCHAIN = EH_RETURN(INCHAIN, OFFSET, HANDLER) - This node represents 'eh_return' gcc dwarf builtin,...
Definition: ISDOpcodes.h:135
@ ANNOTATION_LABEL
ANNOTATION_LABEL - Represents a mid basic block label used by annotations.
Definition: ISDOpcodes.h:1051
@ SET_ROUNDING
Set rounding mode.
Definition: ISDOpcodes.h:880
@ SIGN_EXTEND
Conversion operators.
Definition: ISDOpcodes.h:773
@ AVGCEILS
AVGCEILS/AVGCEILU - Rounding averaging add - Add two integers using an integer of type i[N+2],...
Definition: ISDOpcodes.h:661
@ STRICT_UINT_TO_FP
Definition: ISDOpcodes.h:449
@ SCALAR_TO_VECTOR
SCALAR_TO_VECTOR(VAL) - This represents the operation of loading a scalar value into element 0 of the...
Definition: ISDOpcodes.h:619
@ PREALLOCATED_SETUP
Definition: ISDOpcodes.h:1103
@ ADDROFRETURNADDR
ADDROFRETURNADDR - Represents the llvm.addressofreturnaddress intrinsic.
Definition: ISDOpcodes.h:101
@ TargetExternalSymbol
Definition: ISDOpcodes.h:169
@ BR
Control flow instructions. These all have token chains.
Definition: ISDOpcodes.h:994
@ VECREDUCE_FADD
These reductions have relaxed evaluation order semantics, and have a single vector operand.
Definition: ISDOpcodes.h:1289
@ CTTZ_ZERO_UNDEF
Bit counting operators with an undefined result for zero inputs.
Definition: ISDOpcodes.h:721
@ TargetJumpTable
Definition: ISDOpcodes.h:167
@ TargetIndex
TargetIndex - Like a constant pool entry, but with completely target-dependent semantics.
Definition: ISDOpcodes.h:177
@ WRITE_REGISTER
Definition: ISDOpcodes.h:119
@ PREFETCH
PREFETCH - This corresponds to a prefetch intrinsic.
Definition: ISDOpcodes.h:1158
@ VECREDUCE_FMIN
Definition: ISDOpcodes.h:1293
@ FSINCOS
FSINCOS - Compute both fsin and fcos as a single operation.
Definition: ISDOpcodes.h:972
@ SETCCCARRY
Like SetCC, ops #0 and #1 are the LHS and RHS operands to compare, but op #2 is a boolean indicating ...
Definition: ISDOpcodes.h:757
@ STRICT_LROUND
Definition: ISDOpcodes.h:430
@ FNEG
Perform various unary floating-point operations inspired by libm.
Definition: ISDOpcodes.h:923
@ ATOMIC_LOAD_FSUB
Definition: ISDOpcodes.h:1212
@ BR_CC
BR_CC - Conditional branch.
Definition: ISDOpcodes.h:1020
@ SSUBO
Same for subtraction.
Definition: ISDOpcodes.h:327
@ ATOMIC_LOAD_MIN
Definition: ISDOpcodes.h:1207
@ PREALLOCATED_ARG
Definition: ISDOpcodes.h:1106
@ BRIND
BRIND - Indirect branch.
Definition: ISDOpcodes.h:999
@ BR_JT
BR_JT - Jumptable branch.
Definition: ISDOpcodes.h:1003
@ GC_TRANSITION_START
GC_TRANSITION_START/GC_TRANSITION_END - These operators mark the beginning and end of GC transition s...
Definition: ISDOpcodes.h:1250
@ VECTOR_INTERLEAVE
VECTOR_INTERLEAVE(VEC1, VEC2) - Returns two vectors with all input and output vectors having the same...
Definition: ISDOpcodes.h:585
@ STEP_VECTOR
STEP_VECTOR(IMM) - Returns a scalable vector whose lanes are comprised of a linear sequence of unsign...
Definition: ISDOpcodes.h:645
@ FCANONICALIZE
Returns platform specific canonical encoding of a floating point number.
Definition: ISDOpcodes.h:499
@ IS_FPCLASS
Performs a check of floating point class property, defined by IEEE-754.
Definition: ISDOpcodes.h:506
@ SSUBSAT
RESULT = [US]SUBSAT(LHS, RHS) - Perform saturation subtraction on 2 integers with the same bit width ...
Definition: ISDOpcodes.h:349
@ SELECT
Select(COND, TRUEVAL, FALSEVAL).
Definition: ISDOpcodes.h:726
@ STRICT_FPOWI
Definition: ISDOpcodes.h:413
@ ATOMIC_LOAD
Val, OUTCHAIN = ATOMIC_LOAD(INCHAIN, ptr) This corresponds to "load atomic" instruction.
Definition: ISDOpcodes.h:1174
@ UNDEF
UNDEF - An undefined node.
Definition: ISDOpcodes.h:211
@ VECREDUCE_UMAX
Definition: ISDOpcodes.h:1304
@ RegisterMask
Definition: ISDOpcodes.h:75
@ EXTRACT_ELEMENT
EXTRACT_ELEMENT - This is used to get the lower or upper (determined by a Constant,...
Definition: ISDOpcodes.h:222
@ SPLAT_VECTOR
SPLAT_VECTOR(VAL) - Returns a vector with the scalar value VAL duplicated in all lanes.
Definition: ISDOpcodes.h:626
@ AssertAlign
AssertAlign - These nodes record if a register contains a value that has a known alignment and the tr...
Definition: ISDOpcodes.h:68
@ VACOPY
VACOPY - VACOPY has 5 operands: an input chain, a destination pointer, a source pointer,...
Definition: ISDOpcodes.h:1094
@ ATOMIC_LOAD_FMIN
Definition: ISDOpcodes.h:1214
@ BasicBlock
Various leaf nodes.
Definition: ISDOpcodes.h:71
@ CopyFromReg
CopyFromReg - This node indicates that the input value is a virtual or physical register that is defi...
Definition: ISDOpcodes.h:208
@ SADDO
RESULT, BOOL = [SU]ADDO(LHS, RHS) - Overflow-aware nodes for addition.
Definition: ISDOpcodes.h:323
@ TargetGlobalAddress
TargetGlobalAddress - Like GlobalAddress, but the DAG does no folding or anything else with this node...
Definition: ISDOpcodes.h:164
@ STRICT_FTRUNC
Definition: ISDOpcodes.h:429
@ ARITH_FENCE
ARITH_FENCE - This corresponds to a arithmetic fence intrinsic.
Definition: ISDOpcodes.h:1162
@ VECREDUCE_ADD
Integer reductions may have a result type larger than the vector element type.
Definition: ISDOpcodes.h:1297
@ GET_ROUNDING
Returns current rounding mode: -1 Undefined 0 Round to 0 1 Round to nearest, ties to even 2 Round to ...
Definition: ISDOpcodes.h:875
@ STRICT_FP_TO_FP16
Definition: ISDOpcodes.h:911
@ MULHU
MULHU/MULHS - Multiply high - Multiply two integers of type iN, producing an unsigned/signed value of...
Definition: ISDOpcodes.h:650
@ CLEANUPRET
CLEANUPRET - Represents a return from a cleanup block funclet.
Definition: ISDOpcodes.h:1060
@ STRICT_FP16_TO_FP
Definition: ISDOpcodes.h:910
@ SHL
Shift and rotation operations.
Definition: ISDOpcodes.h:704
@ ATOMIC_LOAD_CLR
Definition: ISDOpcodes.h:1203
@ VECTOR_SHUFFLE
VECTOR_SHUFFLE(VEC1, VEC2) - Returns a vector, of the same type as VEC1/VEC2.
Definition: ISDOpcodes.h:599
@ ATOMIC_LOAD_AND
Definition: ISDOpcodes.h:1202
@ EXTRACT_SUBVECTOR
EXTRACT_SUBVECTOR(VECTOR, IDX) - Returns a subvector from VECTOR.
Definition: ISDOpcodes.h:572
@ FMINNUM_IEEE
FMINNUM_IEEE/FMAXNUM_IEEE - Perform floating-point minimum or maximum on two values,...
Definition: ISDOpcodes.h:962
@ STRICT_FMAXIMUM
Definition: ISDOpcodes.h:434
@ EntryToken
EntryToken - This is the marker used to indicate the start of a region.
Definition: ISDOpcodes.h:47
@ STRICT_FMAXNUM
Definition: ISDOpcodes.h:423
@ READ_REGISTER
READ_REGISTER, WRITE_REGISTER - This node represents llvm.register on the DAG, which implements the n...
Definition: ISDOpcodes.h:118
@ EXTRACT_VECTOR_ELT
EXTRACT_VECTOR_ELT(VECTOR, IDX) - Returns a single element from VECTOR identified by the (potentially...
Definition: ISDOpcodes.h:534
@ CopyToReg
CopyToReg - This node has three operands: a chain, a register number to set to this value,...
Definition: ISDOpcodes.h:203
@ ZERO_EXTEND
ZERO_EXTEND - Used for integer types, zeroing the new bits.
Definition: ISDOpcodes.h:776
@ TargetConstantFP
Definition: ISDOpcodes.h:159
@ DEBUGTRAP
DEBUGTRAP - Trap intended to get the attention of a debugger.
Definition: ISDOpcodes.h:1148
@ FP_TO_UINT_SAT
Definition: ISDOpcodes.h:852
@ STRICT_FMINNUM
Definition: ISDOpcodes.h:424
@ SELECT_CC
Select with condition operator - This selects between a true value and a false value (ops #2 and #3) ...
Definition: ISDOpcodes.h:741
@ VSCALE
VSCALE(IMM) - Returns the runtime scaling factor used to calculate the number of elements within a sc...
Definition: ISDOpcodes.h:1266
@ ATOMIC_CMP_SWAP
Val, OUTCHAIN = ATOMIC_CMP_SWAP(INCHAIN, ptr, cmp, swap) For double-word atomic operations: ValLo,...
Definition: ISDOpcodes.h:1185
@ ATOMIC_LOAD_UMAX
Definition: ISDOpcodes.h:1210
@ LOCAL_RECOVER
LOCAL_RECOVER - Represents the llvm.localrecover intrinsic.
Definition: ISDOpcodes.h:114
@ FMINNUM
FMINNUM/FMAXNUM - Perform floating-point minimum or maximum on two values.
Definition: ISDOpcodes.h:955
@ UBSANTRAP
UBSANTRAP - Trap with an immediate describing the kind of sanitizer failure.
Definition: ISDOpcodes.h:1152
@ SSHLSAT
RESULT = [US]SHLSAT(LHS, RHS) - Perform saturation left shift.
Definition: ISDOpcodes.h:359
@ SMULO
Same for multiplication.
Definition: ISDOpcodes.h:331
@ DYNAMIC_STACKALLOC
DYNAMIC_STACKALLOC - Allocate some number of bytes on the stack aligned to a specified boundary.
Definition: ISDOpcodes.h:988
@ STRICT_LRINT
Definition: ISDOpcodes.h:432
@ TargetFrameIndex
Definition: ISDOpcodes.h:166
@ ConstantPool
Definition: ISDOpcodes.h:82
@ ANY_EXTEND_VECTOR_INREG
ANY_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register any-extension of the low la...
Definition: ISDOpcodes.h:805
@ SIGN_EXTEND_INREG
SIGN_EXTEND_INREG - This operator atomically performs a SHL/SRA pair to sign extend a small value in ...
Definition: ISDOpcodes.h:794
@ SMIN
[US]{MIN/MAX} - Binary minimum or maximum of signed or unsigned integers.
Definition: ISDOpcodes.h:673
@ VECTOR_REVERSE
VECTOR_REVERSE(VECTOR) - Returns a vector, of the same type as VECTOR, whose elements are shuffled us...
Definition: ISDOpcodes.h:590
@ LIFETIME_START
This corresponds to the llvm.lifetime.
Definition: ISDOpcodes.h:1241
@ SDIVFIXSAT
Same as the corresponding unsaturated fixed point instructions, but the result is clamped between the...
Definition: ISDOpcodes.h:386
@ FP_EXTEND
X = FP_EXTEND(Y) - Extend a smaller FP type into a larger FP type.
Definition: ISDOpcodes.h:883
@ GLOBAL_OFFSET_TABLE
The address of the GOT.
Definition: ISDOpcodes.h:87
@ STRICT_FROUND
Definition: ISDOpcodes.h:427
@ VSELECT
Select with a vector condition (op #0) and two vector operands (ops #1 and #2), returning a vector re...
Definition: ISDOpcodes.h:735
@ UADDO_CARRY
Carry-using nodes for multiple precision addition and subtraction.
Definition: ISDOpcodes.h:303
@ STRICT_SINT_TO_FP
STRICT_[US]INT_TO_FP - Convert a signed or unsigned integer to a floating point value.
Definition: ISDOpcodes.h:448
@ HANDLENODE
HANDLENODE node - Used as a handle for various purposes.
Definition: ISDOpcodes.h:1128
@ VECREDUCE_UMIN
Definition: ISDOpcodes.h:1305
@ PCMARKER
PCMARKER - This corresponds to the pcmarker intrinsic.
Definition: ISDOpcodes.h:1117
@ STRICT_FFLOOR
Definition: ISDOpcodes.h:426
@ STRICT_FROUNDEVEN
Definition: ISDOpcodes.h:428
@ INLINEASM_BR
INLINEASM_BR - Branching version of inline asm. Used by asm-goto.
Definition: ISDOpcodes.h:1040
@ EH_DWARF_CFA
EH_DWARF_CFA - This node represents the pointer to the DWARF Canonical Frame Address (CFA),...
Definition: ISDOpcodes.h:129
@ BF16_TO_FP
BF16_TO_FP, FP_TO_BF16 - These operators are used to perform promotions and truncation for bfloat16.
Definition: ISDOpcodes.h:917
@ FRAMEADDR
FRAMEADDR, RETURNADDR - These nodes represent llvm.frameaddress and llvm.returnaddress on the DAG.
Definition: ISDOpcodes.h:94
@ ATOMIC_LOAD_UDEC_WRAP
Definition: ISDOpcodes.h:1216
@ ATOMIC_LOAD_ADD
Definition: ISDOpcodes.h:1200
@ STRICT_FP_TO_UINT
Definition: ISDOpcodes.h:442
@ STRICT_FP_ROUND
X = STRICT_FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating point type down to the precision ...
Definition: ISDOpcodes.h:464
@ STRICT_FP_TO_SINT
STRICT_FP_TO_[US]INT - Convert a floating point value to a signed or unsigned integer.
Definition: ISDOpcodes.h:441
@ FMINIMUM
FMINIMUM/FMAXIMUM - NaN-propagating minimum/maximum that also treat -0.0 as less than 0....
Definition: ISDOpcodes.h:968
@ ATOMIC_LOAD_SUB
Definition: ISDOpcodes.h:1201
@ FP_TO_SINT
FP_TO_[US]INT - Convert a floating point value to a signed or unsigned integer.
Definition: ISDOpcodes.h:832
@ READCYCLECOUNTER
READCYCLECOUNTER - This corresponds to the readcyclecounter intrinsic.
Definition: ISDOpcodes.h:1125
@ TargetConstant
TargetConstant* - Like Constant*, but the DAG does not do any folding, simplification,...
Definition: ISDOpcodes.h:158
@ STRICT_FP_EXTEND
X = STRICT_FP_EXTEND(Y) - Extend a smaller FP type into a larger FP type.
Definition: ISDOpcodes.h:469
@ AND
Bitwise operators - logical and, logical or, logical xor.
Definition: ISDOpcodes.h:679
@ TRAP
TRAP - Trapping instruction.
Definition: ISDOpcodes.h:1145
@ INTRINSIC_WO_CHAIN
RESULT = INTRINSIC_WO_CHAIN(INTRINSICID, arg1, arg2, ...) This node represents a target intrinsic fun...
Definition: ISDOpcodes.h:184
@ PSEUDO_PROBE
Pseudo probe for AutoFDO, as a place holder in a basic block to improve the sample counts quality.
Definition: ISDOpcodes.h:1261
@ CARRY_FALSE
CARRY_FALSE - This node is used when folding other nodes, like ADDC/SUBC, which indicate the carry re...
Definition: ISDOpcodes.h:260
@ AVGFLOORS
AVGFLOORS/AVGFLOORU - Averaging add - Add two integers using an integer of type i[N+1],...
Definition: ISDOpcodes.h:656
@ VECREDUCE_FMUL
Definition: ISDOpcodes.h:1290
@ ADDE
Carry-using nodes for multiple precision addition and subtraction.
Definition: ISDOpcodes.h:279
@ STRICT_FADD
Constrained versions of the binary floating point operators.
Definition: ISDOpcodes.h:400
@ STRICT_FLOG10
Definition: ISDOpcodes.h:419
@ SPLAT_VECTOR_PARTS
SPLAT_VECTOR_PARTS(SCALAR1, SCALAR2, ...) - Returns a vector with the scalar values joined together a...
Definition: ISDOpcodes.h:635
@ INSERT_VECTOR_ELT
INSERT_VECTOR_ELT(VECTOR, VAL, IDX) - Returns VECTOR with the element at IDX replaced with VAL.
Definition: ISDOpcodes.h:523
@ TokenFactor
TokenFactor - This node takes multiple tokens as input and produces a single token result.
Definition: ISDOpcodes.h:52
@ STRICT_LLRINT
Definition: ISDOpcodes.h:433
@ VECTOR_SPLICE
VECTOR_SPLICE(VEC1, VEC2, IMM) - Returns a subvector of the same type as VEC1/VEC2 from CONCAT_VECTOR...
Definition: ISDOpcodes.h:611
@ STRICT_FEXP2
Definition: ISDOpcodes.h:417
@ ATOMIC_SWAP
Val, OUTCHAIN = ATOMIC_SWAP(INCHAIN, ptr, amt) Val, OUTCHAIN = ATOMIC_LOAD_[OpName](INCHAIN,...
Definition: ISDOpcodes.h:1199
@ ExternalSymbol
Definition: ISDOpcodes.h:83
@ FP_ROUND
X = FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating point type down to the precision of the ...
Definition: ISDOpcodes.h:865
@ SPONENTRY
SPONENTRY - Represents the llvm.sponentry intrinsic.
Definition: ISDOpcodes.h:106
@ STRICT_LLROUND
Definition: ISDOpcodes.h:431
@ ZERO_EXTEND_VECTOR_INREG
ZERO_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register zero-extension of the low ...
Definition: ISDOpcodes.h:827
@ ADDRSPACECAST
ADDRSPACECAST - This operator converts between pointers of different address spaces.
Definition: ISDOpcodes.h:902
@ INLINEASM
INLINEASM - Represents an inline asm block.
Definition: ISDOpcodes.h:1037
@ STRICT_FNEARBYINT
Definition: ISDOpcodes.h:422
@ FP_TO_SINT_SAT
FP_TO_[US]INT_SAT - Convert floating point value in operand 0 to a signed or unsigned scalar integer ...
Definition: ISDOpcodes.h:851
@ EH_SJLJ_SETJMP
RESULT, OUTCHAIN = EH_SJLJ_SETJMP(INCHAIN, buffer) This corresponds to the eh.sjlj....
Definition: ISDOpcodes.h:141
@ TRUNCATE
TRUNCATE - Completely drop the high bits.
Definition: ISDOpcodes.h:782
@ VAARG
VAARG - VAARG has four operands: an input chain, a pointer, a SRCVALUE, and the alignment.
Definition: ISDOpcodes.h:1089
@ BRCOND
BRCOND - Conditional branch.
Definition: ISDOpcodes.h:1013
@ BlockAddress
Definition: ISDOpcodes.h:84
@ VECREDUCE_SEQ_FMUL
Definition: ISDOpcodes.h:1277
@ SHL_PARTS
SHL_PARTS/SRA_PARTS/SRL_PARTS - These operators are used for expanded integer shift operations.
Definition: ISDOpcodes.h:762
@ CATCHRET
CATCHRET - Represents a return from a catch block funclet.
Definition: ISDOpcodes.h:1056
@ GC_TRANSITION_END
Definition: ISDOpcodes.h:1251
@ AssertSext
AssertSext, AssertZext - These nodes record if a register contains a value that has already been zero...
Definition: ISDOpcodes.h:61
@ ATOMIC_LOAD_UINC_WRAP
Definition: ISDOpcodes.h:1215
@ FCOPYSIGN
FCOPYSIGN(X, Y) - Return the value of X with the sign of Y.
Definition: ISDOpcodes.h:492
@ SADDSAT
RESULT = [US]ADDSAT(LHS, RHS) - Perform saturation addition on 2 integers with the same bit width (W)...
Definition: ISDOpcodes.h:340
@ AssertZext
Definition: ISDOpcodes.h:62
@ CALLSEQ_START
CALLSEQ_START/CALLSEQ_END - These operators mark the beginning and end of a call sequence,...
Definition: ISDOpcodes.h:1083
@ STRICT_FRINT
Definition: ISDOpcodes.h:421
@ VECTOR_DEINTERLEAVE
VECTOR_DEINTERLEAVE(VEC1, VEC2) - Returns two vectors with all input and output vectors having the sa...
Definition: ISDOpcodes.h:579
@ GET_DYNAMIC_AREA_OFFSET
GET_DYNAMIC_AREA_OFFSET - get offset from native SP to the address of the most recent dynamic alloca.
Definition: ISDOpcodes.h:1257
@ ADJUST_TRAMPOLINE
ADJUST_TRAMPOLINE - This corresponds to the adjust_trampoline intrinsic.
Definition: ISDOpcodes.h:1142
@ SADDO_CARRY
Carry-using overflow-aware nodes for multiple precision addition and subtraction.
Definition: ISDOpcodes.h:313
@ INTRINSIC_W_CHAIN
RESULT,OUTCHAIN = INTRINSIC_W_CHAIN(INCHAIN, INTRINSICID, arg1, ...) This node represents a target in...
Definition: ISDOpcodes.h:192
@ TargetGlobalTLSAddress
Definition: ISDOpcodes.h:165
@ BUILD_VECTOR
BUILD_VECTOR(ELT0, ELT1, ELT2, ELT3,...) - Return a fixed-width vector with the specified,...
Definition: ISDOpcodes.h:514
bool isIndexTypeSigned(MemIndexType IndexType)
Definition: ISDOpcodes.h:1413
bool isExtVecInRegOpcode(unsigned Opcode)
Definition: ISDOpcodes.h:1517
unsigned getVPForBaseOpcode(unsigned Opcode)
Translate this non-VP Opcode to its corresponding VP Opcode.
NodeType getExtForLoadExtType(bool IsFP, LoadExtType)
static const int FIRST_TARGET_MEMORY_OPCODE
FIRST_TARGET_MEMORY_OPCODE - Target-specific pre-isel operations which do not reference a specific me...
Definition: ISDOpcodes.h:1336
bool isExtOpcode(unsigned Opcode)
Definition: ISDOpcodes.h:1512
static const int LAST_LOADEXT_TYPE
Definition: ISDOpcodes.h:1429
bool isVPBinaryOp(unsigned Opcode)
Whether this is a vector-predicated binary operation opcode.
CondCode getSetCCInverse(CondCode Operation, EVT Type)
Return the operation corresponding to !(X op Y), where 'op' is a valid SetCC operation.
std::optional< unsigned > getBaseOpcodeForVP(unsigned Opcode, bool hasFPExcept)
Translate this VP Opcode to its corresponding non-VP Opcode.
bool isBitwiseLogicOp(unsigned Opcode)
Whether this is bitwise logic opcode.
Definition: ISDOpcodes.h:1339
bool isTrueWhenEqual(CondCode Cond)
Return true if the specified condition returns true if the two operands to the condition are equal.
Definition: ISDOpcodes.h:1499
std::optional< unsigned > getVPMaskIdx(unsigned Opcode)
The operand position of the vector mask.
static const int LAST_MEM_INDEX_TYPE
Definition: ISDOpcodes.h:1411
unsigned getUnorderedFlavor(CondCode Cond)
This function returns 0 if the condition is always false if an operand is a NaN, 1 if the condition i...
Definition: ISDOpcodes.h:1504
std::optional< unsigned > getVPExplicitVectorLengthIdx(unsigned Opcode)
The operand position of the explicit vector length parameter.
CondCode getSetCCSwappedOperands(CondCode Operation)
Return the operation corresponding to (Y op X) when given the operation for (X op Y).
MemIndexType
MemIndexType enum - This enum defines how to interpret MGATHER/SCATTER's index parameter when calcula...
Definition: ISDOpcodes.h:1409
@ UNSIGNED_SCALED
Definition: ISDOpcodes.h:1409
bool isSignedIntSetCC(CondCode Code)
Return true if this is a setcc instruction that performs a signed comparison when used with integer o...
Definition: ISDOpcodes.h:1480
bool isVPReduction(unsigned Opcode)
Whether this is a vector-predicated reduction opcode.
MemIndexedMode
MemIndexedMode enum - This enum defines the load / store indexed addressing modes.
Definition: ISDOpcodes.h:1396
static const int FIRST_TARGET_STRICTFP_OPCODE
FIRST_TARGET_STRICTFP_OPCODE - Target-specific pre-isel operations which cannot raise FP exceptions s...
Definition: ISDOpcodes.h:1330
CondCode
ISD::CondCode enum - These are ordered carefully to make the bitfields below work out,...
Definition: ISDOpcodes.h:1447
NodeType getVecReduceBaseOpcode(unsigned VecReduceOpcode)
Get underlying scalar opcode for VECREDUCE opcode.
LoadExtType
LoadExtType enum - This enum defines the three variants of LOADEXT (load with extension).
Definition: ISDOpcodes.h:1427
bool isUnsignedIntSetCC(CondCode Code)
Return true if this is a setcc instruction that performs an unsigned comparison when used with intege...
Definition: ISDOpcodes.h:1486
static const int LAST_INDEXED_MODE
Definition: ISDOpcodes.h:1398
bool isVPOpcode(unsigned Opcode)
Whether this is a vector-predicated Opcode.
CondCode getSetCCOrOperation(CondCode Op1, CondCode Op2, EVT Type)
Return the result of a logical OR between different comparisons of identical values: ((X op1 Y) | (X ...
bool isIntEqualitySetCC(CondCode Code)
Return true if this is a setcc instruction that performs an equality comparison when used with intege...
Definition: ISDOpcodes.h:1492
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
Extended Value Type.
Definition: ValueTypes.h:34