LLVM 23.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
18
19namespace llvm {
20
21/// ISD namespace - This namespace contains an enum which represents all of the
22/// SelectionDAG node types and value types.
23///
24namespace ISD {
25
26//===--------------------------------------------------------------------===//
27/// ISD::NodeType enum - This enum defines the target-independent operators
28/// for a SelectionDAG.
29///
30/// Targets may also define target-dependent operator codes for SDNodes. For
31/// example, on x86, these are the enum values in the X86ISD namespace.
32/// Targets should aim to use target-independent operators to model their
33/// instruction sets as much as possible, and only use target-dependent
34/// operators when they have special requirements.
35///
36/// Finally, during and after selection proper, SNodes may use special
37/// operator codes that correspond directly with MachineInstr opcodes. These
38/// are used to represent selected instructions. See the isMachineOpcode()
39/// and getMachineOpcode() member functions of SDNode.
40///
42
43 /// DELETED_NODE - This is an illegal value that is used to catch
44 /// errors. This opcode is not a legal opcode for any node.
46
47 /// EntryToken - This is the marker used to indicate the start of a region.
49
50 /// TokenFactor - This node takes multiple tokens as input and produces a
51 /// single token result. This is used to represent the fact that the operand
52 /// operators are independent of each other.
54
55 /// AssertSext, AssertZext - These nodes record if a register contains a
56 /// value that has already been zero or sign extended from a narrower type.
57 /// These nodes take two operands. The first is the node that has already
58 /// been extended, and the second is a value type node indicating the width
59 /// of the extension.
60 /// NOTE: In case of the source value (or any vector element value) is
61 /// poisoned the assertion will not be true for that value.
64
65 /// AssertAlign - These nodes record if a register contains a value that
66 /// has a known alignment and the trailing bits are known to be zero.
67 /// NOTE: In case of the source value (or any vector element value) is
68 /// poisoned the assertion will not be true for that value.
70
71 /// AssertNoFPClass - These nodes record if a register contains a float
72 /// value that is known to be not some type.
73 /// This node takes two operands. The first is the node that is known
74 /// never to be some float types; the second is a constant value with
75 /// the value of FPClassTest (casted to uint32_t).
76 /// NOTE: In case of the source value (or any vector element value) is
77 /// poisoned the assertion will not be true for that value.
79
80 /// Various leaf nodes.
95
96 /// A ptrauth constant.
97 /// ptr, key, addr-disc, disc
98 /// Note that the addr-disc can be a non-constant value, to allow representing
99 /// a constant global address signed using address-diversification, in code.
101
102 /// The address of the GOT
104
105 /// FRAMEADDR, RETURNADDR - These nodes represent llvm.frameaddress and
106 /// llvm.returnaddress on the DAG. These nodes take one operand, the index
107 /// of the frame or return address to return. An index of zero corresponds
108 /// to the current function's frame or return address, an index of one to
109 /// the parent's frame or return address, and so on.
112
113 /// ADDROFRETURNADDR - Represents the llvm.addressofreturnaddress intrinsic.
114 /// This node takes no operand, returns a target-specific pointer to the
115 /// place in the stack frame where the return address of the current
116 /// function is stored.
118
119 /// SPONENTRY - Represents the llvm.sponentry intrinsic. Takes no argument
120 /// and returns the stack pointer value at the entry of the current
121 /// function calling this intrinsic.
123
124 /// STACKADDRESS - Represents the llvm.stackaddress intrinsic. Takes no
125 /// argument and returns the starting address of the stack region that may be
126 /// used by called functions.
128
129 /// LOCAL_RECOVER - Represents the llvm.localrecover intrinsic.
130 /// Materializes the offset from the local object pointer of another
131 /// function to a particular local object passed to llvm.localescape. The
132 /// operand is the MCSymbol label used to represent this offset, since
133 /// typically the offset is not known until after code generation of the
134 /// parent.
136
137 /// READ_REGISTER, WRITE_REGISTER - This node represents llvm.register on
138 /// the DAG, which implements the named register global variables extension.
141
142 /// FRAME_TO_ARGS_OFFSET - This node represents offset from frame pointer to
143 /// first (possible) on-stack argument. This is needed for correct stack
144 /// adjustment during unwind.
146
147 /// EH_DWARF_CFA - This node represents the pointer to the DWARF Canonical
148 /// Frame Address (CFA), generally the value of the stack pointer at the
149 /// call site in the previous frame.
151
152 /// OUTCHAIN = EH_RETURN(INCHAIN, OFFSET, HANDLER) - This node represents
153 /// 'eh_return' gcc dwarf builtin, which is used to return from
154 /// exception. The general meaning is: adjust stack by OFFSET and pass
155 /// execution to HANDLER. Many platform-related details also :)
157
158 /// RESULT, OUTCHAIN = EH_SJLJ_SETJMP(INCHAIN, buffer)
159 /// This corresponds to the eh.sjlj.setjmp intrinsic.
160 /// It takes an input chain and a pointer to the jump buffer as inputs
161 /// and returns an outchain.
163
164 /// OUTCHAIN = EH_SJLJ_LONGJMP(INCHAIN, buffer)
165 /// This corresponds to the eh.sjlj.longjmp intrinsic.
166 /// It takes an input chain and a pointer to the jump buffer as inputs
167 /// and returns an outchain.
169
170 /// OUTCHAIN = EH_SJLJ_SETUP_DISPATCH(INCHAIN)
171 /// The target initializes the dispatch table here.
173
174 /// TargetConstant* - Like Constant*, but the DAG does not do any folding,
175 /// simplification, or lowering of the constant. They are used for constants
176 /// which are known to fit in the immediate fields of their users, or for
177 /// carrying magic numbers which are not values which need to be
178 /// materialized in registers.
181
182 /// TargetGlobalAddress - Like GlobalAddress, but the DAG does no folding or
183 /// anything else with this node, and this is valid in the target-specific
184 /// dag, turning into a GlobalAddress operand.
192
194
195 /// TargetIndex - Like a constant pool entry, but with completely
196 /// target-dependent semantics. Holds target flags, a 32-bit index, and a
197 /// 64-bit index. Targets can use this however they like.
199
200 /// RESULT = INTRINSIC_WO_CHAIN(INTRINSICID, arg1, arg2, ...)
201 /// This node represents a target intrinsic function with no side effects.
202 /// The first operand is the ID number of the intrinsic from the
203 /// llvm::Intrinsic namespace. The operands to the intrinsic follow. The
204 /// node returns the result of the intrinsic.
206
207 /// RESULT,OUTCHAIN = INTRINSIC_W_CHAIN(INCHAIN, INTRINSICID, arg1, ...)
208 /// This node represents a target intrinsic function with side effects that
209 /// returns a result. The first operand is a chain pointer. The second is
210 /// the ID number of the intrinsic from the llvm::Intrinsic namespace. The
211 /// operands to the intrinsic follow. The node has two results, the result
212 /// of the intrinsic and an output chain.
214
215 /// OUTCHAIN = INTRINSIC_VOID(INCHAIN, INTRINSICID, arg1, arg2, ...)
216 /// This node represents a target intrinsic function with side effects that
217 /// does not return a result. The first operand is a chain pointer. The
218 /// second is the ID number of the intrinsic from the llvm::Intrinsic
219 /// namespace. The operands to the intrinsic follow.
221
222 /// CopyToReg - This node has three operands: a chain, a register number to
223 /// set to this value, and a value.
225
226 /// CopyFromReg - This node indicates that the input value is a virtual or
227 /// physical register that is defined outside of the scope of this
228 /// SelectionDAG. The register is available from the RegisterSDNode object.
229 /// Note that CopyFromReg is considered as also freezing the value.
231
232 /// UNDEF - An undefined node.
234
235 /// POISON - A poison node.
237
238 /// FREEZE - FREEZE(VAL) returns an arbitrary value if VAL is UNDEF (or
239 /// is evaluated to UNDEF), or returns VAL otherwise. Note that each
240 /// read of UNDEF can yield different value, but FREEZE(UNDEF) cannot.
242
243 /// EXTRACT_ELEMENT - This is used to get the lower or upper (determined by
244 /// a Constant, which is required to be operand #1) half of the integer or
245 /// float value specified as operand #0. This is only for use before
246 /// legalization, for values that will be broken into multiple registers.
248
249 /// BUILD_PAIR - This is the opposite of EXTRACT_ELEMENT in some ways.
250 /// Given two values of the same integer value type, this produces a value
251 /// twice as big. Like EXTRACT_ELEMENT, this can only be used before
252 /// legalization. The lower part of the composite value should be in
253 /// element 0 and the upper part should be in element 1.
255
256 /// MERGE_VALUES - This node takes multiple discrete operands and returns
257 /// them all as its individual results. This nodes has exactly the same
258 /// number of inputs and outputs. This node is useful for some pieces of the
259 /// code generator that want to think about a single node with multiple
260 /// results, not multiple nodes.
262
263 /// Simple integer binary arithmetic operators.
271
272 /// SMUL_LOHI/UMUL_LOHI - Multiply two integers of type iN, producing
273 /// a signed/unsigned value of type i[2*N], and return the full value as
274 /// two results, each of type iN.
277
278 /// SDIVREM/UDIVREM - Divide two integers and produce both a quotient and
279 /// remainder result.
282
283 /// CARRY_FALSE - This node is used when folding other nodes,
284 /// like ADDC/SUBC, which indicate the carry result is always false.
286
287 /// Carry-setting nodes for multiple precision addition and subtraction.
288 /// These nodes take two operands of the same value type, and produce two
289 /// results. The first result is the normal add or sub result, the second
290 /// result is the carry flag result.
291 /// FIXME: These nodes are deprecated in favor of UADDO_CARRY and USUBO_CARRY.
292 /// They are kept around for now to provide a smooth transition path
293 /// toward the use of UADDO_CARRY/USUBO_CARRY and will eventually be removed.
296
297 /// Carry-using nodes for multiple precision addition and subtraction. These
298 /// nodes take three operands: The first two are the normal lhs and rhs to
299 /// the add or sub, and the third is the input carry flag. These nodes
300 /// produce two results; the normal result of the add or sub, and the output
301 /// carry flag. These nodes both read and write a carry flag to allow them
302 /// to them to be chained together for add and sub of arbitrarily large
303 /// values.
306
307 /// Carry-using nodes for multiple precision addition and subtraction.
308 /// These nodes take three operands: The first two are the normal lhs and
309 /// rhs to the add or sub, and the third is a boolean value that is 1 if and
310 /// only if there is an incoming carry/borrow. These nodes produce two
311 /// results: the normal result of the add or sub, and a boolean value that is
312 /// 1 if and only if there is an outgoing carry/borrow.
313 ///
314 /// Care must be taken if these opcodes are lowered to hardware instructions
315 /// that use the inverse logic -- 0 if and only if there is an
316 /// incoming/outgoing carry/borrow. In such cases, you must preserve the
317 /// semantics of these opcodes by inverting the incoming carry/borrow, feeding
318 /// it to the add/sub hardware instruction, and then inverting the outgoing
319 /// carry/borrow.
320 ///
321 /// The use of these opcodes is preferable to ADDE/SUBE if the target supports
322 /// it, as the carry is a regular value rather than a glue, which allows
323 /// further optimisation.
324 ///
325 /// These opcodes are different from [US]{ADD,SUB}O in that
326 /// U{ADD,SUB}O_CARRY consume and produce a carry/borrow, whereas
327 /// [US]{ADD,SUB}O produce an overflow.
330
331 /// Carry-using overflow-aware nodes for multiple precision addition and
332 /// subtraction. These nodes take three operands: The first two are normal lhs
333 /// and rhs to the add or sub, and the third is a boolean indicating if there
334 /// is an incoming carry. They produce two results: the normal result of the
335 /// add or sub, and a boolean that indicates if an overflow occurred (*not*
336 /// flag, because it may be a store to memory, etc.). If the type of the
337 /// boolean is not i1 then the high bits conform to getBooleanContents.
340
341 /// RESULT, BOOL = [SU]ADDO(LHS, RHS) - Overflow-aware nodes for addition.
342 /// These nodes take two operands: the normal LHS and RHS to the add. They
343 /// produce two results: the normal result of the add, and a boolean that
344 /// indicates if an overflow occurred (*not* a flag, because it may be store
345 /// to memory, etc.). If the type of the boolean is not i1 then the high
346 /// bits conform to getBooleanContents.
347 /// These nodes are generated from llvm.[su]add.with.overflow intrinsics.
350
351 /// Same for subtraction.
354
355 /// Same for multiplication.
358
359 /// RESULT = [US]ADDSAT(LHS, RHS) - Perform saturation addition on 2
360 /// integers with the same bit width (W). If the true value of LHS + RHS
361 /// exceeds the largest value that can be represented by W bits, the
362 /// resulting value is this maximum value. Otherwise, if this value is less
363 /// than the smallest value that can be represented by W bits, the
364 /// resulting value is this minimum value.
367
368 /// RESULT = [US]SUBSAT(LHS, RHS) - Perform saturation subtraction on 2
369 /// integers with the same bit width (W). If the true value of LHS - RHS
370 /// exceeds the largest value that can be represented by W bits, the
371 /// resulting value is this maximum value. Otherwise, if this value is less
372 /// than the smallest value that can be represented by W bits, the
373 /// resulting value is this minimum value.
376
377 /// RESULT = [US]SHLSAT(LHS, RHS) - Perform saturation left shift. The first
378 /// operand is the value to be shifted, and the second argument is the amount
379 /// to shift by. Both must be integers. After legalization the type of the
380 /// shift amount is known to be TLI.getShiftAmountTy(). Before legalization
381 /// the shift amount can be any type, but care must be taken to ensure it is
382 /// large enough. If the true value of LHS << RHS exceeds the largest value
383 /// that can be represented by W bits, the resulting value is this maximum
384 /// value, Otherwise, if this value is less than the smallest value that can
385 /// be represented by W bits, the resulting value is this minimum value.
388
389 /// RESULT = [US]MULFIX(LHS, RHS, SCALE) - Perform fixed point multiplication
390 /// on 2 integers with the same width and scale. SCALE represents the scale
391 /// of both operands as fixed point numbers. This SCALE parameter must be a
392 /// constant integer. A scale of zero is effectively performing
393 /// multiplication on 2 integers.
396
397 /// Same as the corresponding unsaturated fixed point instructions, but the
398 /// result is clamped between the min and max values representable by the
399 /// bits of the first 2 operands.
402
403 /// RESULT = [US]DIVFIX(LHS, RHS, SCALE) - Perform fixed point division on
404 /// 2 integers with the same width and scale. SCALE represents the scale
405 /// of both operands as fixed point numbers. This SCALE parameter must be a
406 /// constant integer.
409
410 /// Same as the corresponding unsaturated fixed point instructions, but the
411 /// result is clamped between the min and max values representable by the
412 /// bits of the first 2 operands.
415
416 /// Simple binary floating point operators.
422
423 /// Constrained versions of the binary floating point operators.
424 /// These will be lowered to the simple operators before final selection.
425 /// They are used to limit optimizations while the DAG is being
426 /// optimized.
433
434 /// Constrained versions of libm-equivalent floating point intrinsics.
435 /// These will be lowered to the equivalent non-constrained pseudo-op
436 /// (or expanded to the equivalent library call) before final selection.
437 /// They are used to limit optimizations while the DAG is being optimized.
472
473 /// STRICT_FP_TO_[US]INT - Convert a floating point value to a signed or
474 /// unsigned integer. These have the same semantics as fptosi and fptoui
475 /// in IR.
476 /// They are used to limit optimizations while the DAG is being optimized.
479
480 /// STRICT_[US]INT_TO_FP - Convert a signed or unsigned integer to
481 /// a floating point value. These have the same semantics as sitofp and
482 /// uitofp in IR.
483 /// They are used to limit optimizations while the DAG is being optimized.
486
487 /// X = STRICT_FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating
488 /// point type down to the precision of the destination VT. TRUNC is a
489 /// flag, which is always an integer that is zero or one. If TRUNC is 0,
490 /// this is a normal rounding, if it is 1, this FP_ROUND is known to not
491 /// change the value of Y.
492 ///
493 /// The TRUNC = 1 case is used in cases where we know that the value will
494 /// not be modified by the node, because Y is not using any of the extra
495 /// precision of source type. This allows certain transformations like
496 /// STRICT_FP_EXTEND(STRICT_FP_ROUND(X,1)) -> X which are not safe for
497 /// STRICT_FP_EXTEND(STRICT_FP_ROUND(X,0)) because the extra bits aren't
498 /// removed.
499 /// It is used to limit optimizations while the DAG is being optimized.
501
502 /// X = STRICT_FP_EXTEND(Y) - Extend a smaller FP type into a larger FP
503 /// type.
504 /// It is used to limit optimizations while the DAG is being optimized.
506
507 /// STRICT_FSETCC/STRICT_FSETCCS - Constrained versions of SETCC, used
508 /// for floating-point operands only. STRICT_FSETCC performs a quiet
509 /// comparison operation, while STRICT_FSETCCS performs a signaling
510 /// comparison operation.
513
514 /// FPTRUNC_ROUND - This corresponds to the fptrunc_round intrinsic.
516
517 /// FMA - Perform a * b + c with no intermediate rounding step.
519
520 /// FMAD - Perform a * b + c, while getting the same result as the
521 /// separately rounded operations.
523
524 /// FMULADD - Performs a * b + c, with, or without, intermediate rounding.
525 /// It is expected that this will be illegal for most targets, as it usually
526 /// makes sense to split this or use an FMA. But some targets, such as
527 /// WebAssembly, can directly support these semantics.
529
530 /// FCOPYSIGN(X, Y) - Return the value of X with the sign of Y. NOTE: This
531 /// DAG node does not require that X and Y have the same type, just that
532 /// they are both floating point. X and the result must have the same type.
533 /// FCOPYSIGN(f32, f64) is allowed.
535
536 /// INT = FGETSIGN(FP) - Return the sign bit of the specified floating point
537 /// value as an integer 0/1 value.
539
540 /// Returns platform specific canonical encoding of a floating point number.
542
543 /// Performs a check of floating point class property, defined by IEEE-754.
544 /// The first operand is the floating point value to check. The second operand
545 /// specifies the checked property and is a TargetConstant which specifies
546 /// test in the same way as intrinsic 'is_fpclass'.
547 /// Returns boolean value.
549
550 /// BUILD_VECTOR(ELT0, ELT1, ELT2, ELT3,...) - Return a fixed-width vector
551 /// with the specified, possibly variable, elements. The types of the
552 /// operands must match the vector element type, except that integer types
553 /// are allowed to be larger than the element type, in which case the
554 /// operands are implicitly truncated. The types of the operands must all
555 /// be the same.
557
558 /// INSERT_VECTOR_ELT(VECTOR, VAL, IDX) - Returns VECTOR with the element
559 /// at IDX replaced with VAL. If the type of VAL is larger than the vector
560 /// element type then VAL is truncated before replacement.
561 ///
562 /// If VECTOR is a scalable vector, then IDX may be larger than the minimum
563 /// vector width. IDX is not first scaled by the runtime scaling factor of
564 /// VECTOR.
566
567 /// EXTRACT_VECTOR_ELT(VECTOR, IDX) - Returns a single element from VECTOR
568 /// identified by the (potentially variable) element number IDX. If the return
569 /// type is an integer type larger than the element type of the vector, the
570 /// result is extended to the width of the return type. In that case, the high
571 /// bits are undefined.
572 ///
573 /// If VECTOR is a scalable vector, then IDX may be larger than the minimum
574 /// vector width. IDX is not first scaled by the runtime scaling factor of
575 /// VECTOR.
577
578 /// CONCAT_VECTORS(VECTOR0, VECTOR1, ...) - Given a number of values of
579 /// vector type with the same length and element type, this produces a
580 /// concatenated vector result value, with length equal to the sum of the
581 /// lengths of the input vectors. If VECTOR0 is a fixed-width vector, then
582 /// VECTOR1..VECTORN must all be fixed-width vectors. Similarly, if VECTOR0
583 /// is a scalable vector, then VECTOR1..VECTORN must all be scalable vectors.
585
586 /// INSERT_SUBVECTOR(VECTOR1, VECTOR2, IDX) - Returns a vector with VECTOR2
587 /// inserted into VECTOR1. IDX represents the starting element number at which
588 /// VECTOR2 will be inserted. IDX must be a constant multiple of T's known
589 /// minimum vector length. Let the type of VECTOR2 be T, then if T is a
590 /// scalable vector, IDX is first scaled by the runtime scaling factor of T.
591 /// The elements of VECTOR1 starting at IDX are overwritten with VECTOR2.
592 /// Elements IDX through (IDX + num_elements(T) - 1) must be valid VECTOR1
593 /// indices. If this condition cannot be determined statically but is false at
594 /// runtime, then the result vector is undefined. The IDX parameter must be a
595 /// vector index constant type, which for most targets will be an integer
596 /// pointer type.
597 ///
598 /// This operation supports inserting a fixed-width vector into a scalable
599 /// vector, but not the other way around.
601
602 /// EXTRACT_SUBVECTOR(VECTOR, IDX) - Returns a subvector from VECTOR.
603 /// Let the result type be T, then IDX represents the starting element number
604 /// from which a subvector of type T is extracted. IDX must be a constant
605 /// multiple of T's known minimum vector length. If T is a scalable vector,
606 /// IDX is first scaled by the runtime scaling factor of T. Elements IDX
607 /// through (IDX + num_elements(T) - 1) must be valid VECTOR indices. If this
608 /// condition cannot be determined statically but is false at runtime, then
609 /// the result vector is undefined. The IDX parameter must be a vector index
610 /// constant type, which for most targets will be an integer pointer type.
611 ///
612 /// This operation supports extracting a fixed-width vector from a scalable
613 /// vector, but not the other way around.
615
616 /// VECTOR_DEINTERLEAVE(VEC1, VEC2, ...) - Returns N vectors from N input
617 /// vectors, where N is the factor to deinterleave. All input and output
618 /// vectors must have the same type.
619 ///
620 /// Each output contains the deinterleaved indices for a specific field from
621 /// CONCAT_VECTORS(VEC1, VEC2, ...):
622 ///
623 /// Result[I][J] = CONCAT_VECTORS(...)[I + N * J]
625
626 /// VECTOR_INTERLEAVE(VEC1, VEC2, ...) - Returns N vectors from N input
627 /// vectors, where N is the factor to interleave. All input and
628 /// output vectors must have the same type.
629 ///
630 /// All input vectors are interleaved into one wide vector, which is then
631 /// chunked into equal sized parts:
632 ///
633 /// Interleaved[I] = VEC(I % N)[I / N]
634 /// Result[J] = EXTRACT_SUBVECTOR(Interleaved, J * getVectorMinNumElements())
636
637 /// VECTOR_REVERSE(VECTOR) - Returns a vector, of the same type as VECTOR,
638 /// whose elements are shuffled using the following algorithm:
639 /// RESULT[i] = VECTOR[VECTOR.ElementCount - 1 - i]
641
642 /// VECTOR_SHUFFLE(VEC1, VEC2) - Returns a vector, of the same type as
643 /// VEC1/VEC2. A VECTOR_SHUFFLE node also contains an array of constant int
644 /// values that indicate which value (or undef) each result element will
645 /// get. These constant ints are accessible through the
646 /// ShuffleVectorSDNode class. This is quite similar to the Altivec
647 /// 'vperm' instruction, except that the indices must be constants and are
648 /// in terms of the element size of VEC1/VEC2, not in terms of bytes.
650
651 /// VECTOR_SPLICE_LEFT(VEC1, VEC2, OFFSET) - Shifts CONCAT_VECTORS(VEC1, VEC2)
652 /// left by OFFSET elements and returns the lower half.
654 /// VECTOR_SPLICE_RIGHT(VEC1, VEC2, OFFSET) - Shifts CONCAT_VECTORS(VEC1,
655 /// VEC2)
656 /// right by OFFSET elements and returns the upper half.
658
659 /// SCALAR_TO_VECTOR(VAL) - This represents the operation of loading a
660 /// scalar value into element 0 of the resultant vector type. The top
661 /// elements 1 to N-1 of the N-element vector are poison. The type of
662 /// the operand must match the vector element type, except when they
663 /// are integer types. In this case the operand is allowed to be wider
664 /// than the vector element type, and is implicitly truncated to it.
666
667 /// SPLAT_VECTOR(VAL) - Returns a vector with the scalar value VAL
668 /// duplicated in all lanes. The type of the operand must match the vector
669 /// element type, except when they are integer types. In this case the
670 /// operand is allowed to be wider than the vector element type, and is
671 /// implicitly truncated to it.
673
674 /// SPLAT_VECTOR_PARTS(SCALAR1, SCALAR2, ...) - Returns a vector with the
675 /// scalar values joined together and then duplicated in all lanes. This
676 /// represents a SPLAT_VECTOR that has had its scalar operand expanded. This
677 /// allows representing a 64-bit splat on a target with 32-bit integers. The
678 /// total width of the scalars must cover the element width. SCALAR1 contains
679 /// the least significant bits of the value regardless of endianness and all
680 /// scalars should have the same type.
682
683 /// STEP_VECTOR(IMM) - Returns a scalable vector whose lanes are comprised
684 /// of a linear sequence of unsigned values starting from 0 with a step of
685 /// IMM, where IMM must be a TargetConstant with type equal to the vector
686 /// element type. The arithmetic is performed modulo the bitwidth of the
687 /// element.
688 ///
689 /// The operation does not support returning fixed-width vectors or
690 /// non-constant operands.
692
693 /// VECTOR_COMPRESS(Vec, Mask, Passthru)
694 /// consecutively place vector elements based on mask
695 /// e.g., vec = {A, B, C, D} and mask = {1, 0, 1, 0}
696 /// --> {A, C, ?, ?} where ? is undefined
697 /// If passthru is defined, ?s are replaced with elements from passthru.
698 /// If passthru is undef, ?s remain undefined.
700
701 /// MULHU/MULHS - Multiply high - Multiply two integers of type iN,
702 /// producing an unsigned/signed value of type i[2*N], then return the top
703 /// part.
706
707 /// AVGFLOORS/AVGFLOORU - Averaging add - Add two integers using an integer of
708 /// type i[N+1], halving the result by shifting it one bit right.
709 /// shr(add(ext(X), ext(Y)), 1)
712 /// AVGCEILS/AVGCEILU - Rounding averaging add - Add two integers using an
713 /// integer of type i[N+2], add 1 and halve the result by shifting it one bit
714 /// right. shr(add(ext(X), ext(Y), 1), 1)
717
718 /// ABDS/ABDU - Absolute difference - Return the absolute difference between
719 /// two numbers interpreted as signed/unsigned.
720 /// i.e trunc(abs(sext(Op0) - sext(Op1))) becomes abds(Op0, Op1)
721 /// or trunc(abs(zext(Op0) - zext(Op1))) becomes abdu(Op0, Op1)
724
725 /// [US]{MIN/MAX} - Binary minimum or maximum of signed or unsigned
726 /// integers.
731
732 /// [US]CMP - 3-way comparison of signed or unsigned integers. Returns -1, 0,
733 /// or 1 depending on whether Op0 <, ==, or > Op1. The operands can have type
734 /// different to the result.
737
738 /// Bitwise operators - logical and, logical or, logical xor.
742
743 /// ABS - Determine the unsigned absolute value of a signed integer value of
744 /// the same bitwidth.
745 /// Note: A value of INT_MIN will return INT_MIN, no saturation or overflow
746 /// is performed.
748
749 /// ABS with a poison result for INT_MIN. This corresponds to
750 /// llvm.abs(x, true) where the "int min is poison" flag is set.
752
753 /// Shift and rotation operations. After legalization, the type of the
754 /// shift amount is known to be TLI.getShiftAmountTy(). Before legalization
755 /// the shift amount can be any type, but care must be taken to ensure it is
756 /// large enough. TLI.getShiftAmountTy() is i8 on some targets, but before
757 /// legalization, types like i1024 can occur and i8 doesn't have enough bits
758 /// to represent the shift amount.
759 /// When the 1st operand is a vector, the shift amount must be in the same
760 /// type. (TLI.getShiftAmountTy() will return the same type when the input
761 /// type is a vector.)
762 /// For rotates and funnel shifts, the shift amount is treated as an unsigned
763 /// amount modulo the element size of the first operand.
764 ///
765 /// Funnel 'double' shifts take 3 operands, 2 inputs and the shift amount.
766 ///
767 /// fshl(X,Y,Z): (X << (Z % BW)) | (Y >> (BW - (Z % BW)))
768 /// fshr(X,Y,Z): (X << (BW - (Z % BW))) | (Y >> (Z % BW))
776
777 /// Carry-less multiplication operations.
781
782 /// Parallel bit extract (compress) and parallel bit deposit (expand).
785
786 /// Byte Swap and Counting operators.
793
794 /// Bit counting operators with a poisoned result for zero inputs.
797
798 /// Count leading redundant sign bits. Equivalent to
799 /// (sub (ctlz (x < 0 ? ~x : x)), 1).
801
802 /// Select(COND, TRUEVAL, FALSEVAL). If the type of the boolean COND is not
803 /// i1 then the high bits must conform to getBooleanContents.
805
806 /// Select with a vector condition (op #0) and two vector operands (ops #1
807 /// and #2), returning a vector result. All vectors have the same length.
808 /// Much like the scalar select and setcc, each bit in the condition selects
809 /// whether the corresponding result element is taken from op #1 or op #2.
810 /// At first, the VSELECT condition is of vXi1 type. Later, targets may
811 /// change the condition type in order to match the VSELECT node using a
812 /// pattern. The condition follows the BooleanContent format of the target.
814
815 /// Select with condition operator - This selects between a true value and
816 /// a false value (ops #2 and #3) based on the boolean result of comparing
817 /// the lhs and rhs (ops #0 and #1) of a conditional expression with the
818 /// condition code in op #4, a CondCodeSDNode.
820
821 /// SetCC operator - This evaluates to a true value iff the condition is
822 /// true. If the result value type is not i1 then the high bits conform
823 /// to getBooleanContents. The operands to this are the left and right
824 /// operands to compare (ops #0, and #1) and the condition code to compare
825 /// them with (op #2) as a CondCodeSDNode. If the operands are vector types
826 /// then the result type must also be a vector type.
828
829 /// Like SetCC, ops #0 and #1 are the LHS and RHS operands to compare, but
830 /// op #2 is a boolean indicating if there is an incoming carry. This
831 /// operator checks the result of "LHS - RHS - Carry", and can be used to
832 /// compare two wide integers:
833 /// (setcccarry lhshi rhshi (usubo_carry lhslo rhslo) cc).
834 /// Only valid for integers.
836
837 /// SHL_PARTS/SRA_PARTS/SRL_PARTS - These operators are used for expanded
838 /// integer shift operations. The operation ordering is:
839 ///
840 /// [Lo,Hi] = op [LoLHS,HiLHS], Amt
844
845 /// Conversion operators. These are all single input single output
846 /// operations. For all of these, the result type must be strictly
847 /// wider or narrower (depending on the operation) than the source
848 /// type.
849
850 /// SIGN_EXTEND - Used for integer types, replicating the sign bit
851 /// into new bits.
853
854 /// ZERO_EXTEND - Used for integer types, zeroing the new bits. Can carry
855 /// the NonNeg SDNodeFlag to indicate that the input is known to be
856 /// non-negative. If the flag is present and the input is negative, the result
857 /// is poison.
859
860 /// ANY_EXTEND - Used for integer types. The high bits are undefined.
862
863 /// TRUNCATE - Completely drop the high bits.
865 /// TRUNCATE_[SU]SAT_[SU] - Truncate for saturated operand
866 /// [SU] located in middle, prefix for `SAT` means indicates whether
867 /// existing truncate target was a signed operation. For examples,
868 /// If `truncate(smin(smax(x, C), C))` was saturated then become `S`.
869 /// If `truncate(umin(x, C))` was saturated then become `U`.
870 /// [SU] located in last indicates whether range of truncated values is
871 /// sign-saturated. For example, if `truncate(smin(smax(x, C), C))` is a
872 /// truncation to `i8`, then if value of C ranges from `-128 to 127`, it will
873 /// be saturated against signed values, resulting in `S`, which will combine
874 /// to `TRUNCATE_SSAT_S`. If the value of C ranges from `0 to 255`, it will
875 /// be saturated against unsigned values, resulting in `U`, which will
876 /// combine to `TRUNCATE_SSAT_U`. Similarly, in `truncate(umin(x, C))`, if
877 /// value of C ranges from `0 to 255`, it becomes `U` because it is saturated
878 /// for unsigned values. As a result, it combines to `TRUNCATE_USAT_U`.
879 TRUNCATE_SSAT_S, // saturate signed input to signed result -
880 // truncate(smin(smax(x, C), C))
881 TRUNCATE_SSAT_U, // saturate signed input to unsigned result -
882 // truncate(smin(smax(x, 0), C))
883 TRUNCATE_USAT_U, // saturate unsigned input to unsigned result -
884 // truncate(umin(x, C))
885
886 /// [SU]INT_TO_FP - These operators convert integers (whose interpreted sign
887 /// depends on the first letter) to floating point.
890
891 /// SIGN_EXTEND_INREG - This operator atomically performs a SHL/SRA pair to
892 /// sign extend a small value in a large integer register (e.g. sign
893 /// extending the low 8 bits of a 32-bit register to fill the top 24 bits
894 /// with the 7th bit). The size of the smaller type is indicated by the 1th
895 /// operand, a ValueType node.
897
898 /// ANY_EXTEND_VECTOR_INREG(Vector) - This operator represents an
899 /// in-register any-extension of the low lanes of an integer vector. The
900 /// result type must have fewer elements than the operand type, and those
901 /// elements must be larger integer types such that the total size of the
902 /// operand type is less than or equal to the size of the result type. Each
903 /// of the low operand elements is any-extended into the corresponding,
904 /// wider result elements with the high bits becoming undef.
905 /// NOTE: The type legalizer prefers to make the operand and result size
906 /// the same to allow expansion to shuffle vector during op legalization.
908
909 /// SIGN_EXTEND_VECTOR_INREG(Vector) - This operator represents an
910 /// in-register sign-extension of the low lanes of an integer vector. The
911 /// result type must have fewer elements than the operand type, and those
912 /// elements must be larger integer types such that the total size of the
913 /// operand type is less than or equal to the size of the result type. Each
914 /// of the low operand elements is sign-extended into the corresponding,
915 /// wider result elements.
916 /// NOTE: The type legalizer prefers to make the operand and result size
917 /// the same to allow expansion to shuffle vector during op legalization.
919
920 /// ZERO_EXTEND_VECTOR_INREG(Vector) - This operator represents an
921 /// in-register zero-extension of the low lanes of an integer vector. The
922 /// result type must have fewer elements than the operand type, and those
923 /// elements must be larger integer types such that the total size of the
924 /// operand type is less than or equal to the size of the result type. Each
925 /// of the low operand elements is zero-extended into the corresponding,
926 /// wider result elements.
927 /// NOTE: The type legalizer prefers to make the operand and result size
928 /// the same to allow expansion to shuffle vector during op legalization.
930
931 /// FP_TO_[US]INT - Convert a floating point value to a signed or unsigned
932 /// integer. These have the same semantics as fptosi and fptoui in IR. If
933 /// the FP value cannot fit in the integer type, the results are undefined.
936
937 /// FP_TO_[US]INT_SAT - Convert floating point value in operand 0 to a
938 /// signed or unsigned scalar integer type given in operand 1 with the
939 /// following semantics:
940 ///
941 /// * If the value is NaN, zero is returned.
942 /// * If the value is larger/smaller than the largest/smallest integer,
943 /// the largest/smallest integer is returned (saturation).
944 /// * Otherwise the result of rounding the value towards zero is returned.
945 ///
946 /// The scalar width of the type given in operand 1 must be equal to, or
947 /// smaller than, the scalar result type width. It may end up being smaller
948 /// than the result width as a result of integer type legalization.
949 ///
950 /// After converting to the scalar integer type in operand 1, the value is
951 /// extended to the result VT. FP_TO_SINT_SAT sign extends and FP_TO_UINT_SAT
952 /// zero extends.
955
956 /// X = FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating point type
957 /// down to the precision of the destination VT. TRUNC is a flag, which is
958 /// always an integer that is zero or one. If TRUNC is 0, this is a
959 /// normal rounding, if it is 1, this FP_ROUND is known to not change the
960 /// value of Y.
961 ///
962 /// The TRUNC = 1 case is used in cases where we know that the value will
963 /// not be modified by the node, because Y is not using any of the extra
964 /// precision of source type. This allows certain transformations like
965 /// FP_EXTEND(FP_ROUND(X,1)) -> X which are not safe for
966 /// FP_EXTEND(FP_ROUND(X,0)) because the extra bits aren't removed.
968
969 /// Returns current rounding mode:
970 /// -1 Undefined
971 /// 0 Round to 0
972 /// 1 Round to nearest, ties to even
973 /// 2 Round to +inf
974 /// 3 Round to -inf
975 /// 4 Round to nearest, ties to zero
976 /// Other values are target dependent.
977 /// Result is rounding mode and chain. Input is a chain.
979
980 /// Set rounding mode.
981 /// The first operand is a chain pointer. The second specifies the required
982 /// rounding mode, encoded in the same way as used in GET_ROUNDING.
984
985 /// X = FP_EXTEND(Y) - Extend a smaller FP type into a larger FP type.
987
988 /// BITCAST - This operator converts between integer, vector and FP
989 /// values, as if the value was stored to memory with one type and loaded
990 /// from the same address with the other type (or equivalently for vector
991 /// format conversions, etc). The source and result are required to have
992 /// the same bit size (e.g. f32 <-> i32). This can also be used for
993 /// int-to-int or fp-to-fp conversions, but that is a noop, deleted by
994 /// getNode().
995 ///
996 /// This operator is subtly different from the bitcast instruction from
997 /// LLVM-IR since this node may change the bits in the register. For
998 /// example, this occurs on big-endian NEON and big-endian MSA where the
999 /// layout of the bits in the register depends on the vector type and this
1000 /// operator acts as a shuffle operation for some vector type combinations.
1002
1003 /// ADDRSPACECAST - This operator converts between pointers of different
1004 /// address spaces.
1006
1007 /// FP16_TO_FP, FP_TO_FP16 - These operators are used to perform promotions
1008 /// and truncation for half-precision (16 bit) floating numbers. These nodes
1009 /// form a semi-softened interface for dealing with f16 (as an i16), which
1010 /// is often a storage-only type but has native conversions.
1015
1016 /// BF16_TO_FP, FP_TO_BF16 - These operators are used to perform promotions
1017 /// and truncation for bfloat16. These nodes form a semi-softened interface
1018 /// for dealing with bf16 (as an i16), which is often a storage-only type but
1019 /// has native conversions.
1024
1025 /// CONVERT_FROM_ARBITRARY_FP - This operator converts from an arbitrary
1026 /// floating-point represented as an integer to a native FP type.
1027 /// The first operand is the integer containing the source FP bits.
1028 /// The second operand is a constant indicating the source FP semantics.
1030
1031 /// CONVERT_TO_ARBITRARY_FP - Converts a native FP value to an arbitrary
1032 /// floating-point format, returning the result as an integer.
1033 /// The first operand is the source value.
1034 /// The second operand is a constant indicating the destination FP semantics.
1035 /// The third operand is a constant indication the rounding mode.
1036 /// The last operand is a boolean constant indicating whether the result has
1037 /// to be saturated.
1039
1040 /// Perform various unary floating-point operations inspired by libm. For
1041 /// FPOWI, the result is undefined if the integer operand doesn't fit into
1042 /// sizeof(int).
1058 /// FLDEXP - ldexp, inspired by libm (op0 * 2**op1).
1060 /// FATAN2 - atan2, inspired by libm.
1062
1063 /// FFREXP - frexp, extract fractional and exponent component of a
1064 /// floating-point value. Returns the two components as separate return
1065 /// values.
1067
1085
1086 /// FMINNUM/FMAXNUM - Perform floating-point minimum maximum on two values,
1087 /// following IEEE-754 definitions except for signed zero behavior.
1088 ///
1089 /// If one input is a signaling NaN, returns a quiet NaN. This matches
1090 /// IEEE-754 2008's minNum/maxNum behavior for signaling NaNs (which differs
1091 /// from 2019).
1092 ///
1093 /// These treat -0 as ordered less than +0, matching the behavior of IEEE-754
1094 /// 2019's minimumNumber/maximumNumber.
1095 ///
1096 /// Note that that arithmetic on an sNaN doesn't consistently produce a qNaN,
1097 /// so arithmetic feeding into a minnum/maxnum can produce inconsistent
1098 /// results. FMAXIMUN/FMINIMUM or FMAXIMUMNUM/FMINIMUMNUM may be better choice
1099 /// for non-distinction of sNaN/qNaN handling.
1102
1103 /// FMINNUM_IEEE/FMAXNUM_IEEE - Perform floating-point minimumNumber or
1104 /// maximumNumber on two values, following IEEE-754 definitions. This differs
1105 /// from FMINNUM/FMAXNUM in the handling of signaling NaNs, and signed zero.
1106 ///
1107 /// If one input is a signaling NaN, returns a quiet NaN. This matches
1108 /// IEEE-754 2008's minnum/maxnum behavior for signaling NaNs (which differs
1109 /// from 2019).
1110 ///
1111 /// These treat -0 as ordered less than +0, matching the behavior of IEEE-754
1112 /// 2019's minimumNumber/maximumNumber.
1113 ///
1114 /// Deprecated, and will be removed soon, as FMINNUM/FMAXNUM have the same
1115 /// semantics now.
1118
1119 /// FMINIMUM/FMAXIMUM - NaN-propagating minimum/maximum that also treat -0.0
1120 /// as less than 0.0. While FMINNUM_IEEE/FMAXNUM_IEEE follow IEEE 754-2008
1121 /// semantics, FMINIMUM/FMAXIMUM follow IEEE 754-2019 semantics.
1124
1125 /// FMINIMUMNUM/FMAXIMUMNUM - minimumnum/maximumnum that is same with
1126 /// FMINNUM_IEEE and FMAXNUM_IEEE besides if either operand is sNaN.
1129
1130 /// FSINCOS - Compute both fsin and fcos as a single operation.
1132
1133 /// FSINCOSPI - Compute both the sine and cosine times pi more accurately
1134 /// than FSINCOS(pi*x), especially for large x.
1136
1137 /// FMODF - Decomposes the operand into integral and fractional parts, each
1138 /// having the same type and sign as the operand.
1140
1141 /// Gets the current floating-point environment. The first operand is a token
1142 /// chain. The results are FP environment, represented by an integer value,
1143 /// and a token chain.
1145
1146 /// Sets the current floating-point environment. The first operand is a token
1147 /// chain, the second is FP environment, represented by an integer value. The
1148 /// result is a token chain.
1150
1151 /// Set floating-point environment to default state. The first operand and the
1152 /// result are token chains.
1154
1155 /// Gets the current floating-point environment. The first operand is a token
1156 /// chain, the second is a pointer to memory, where FP environment is stored
1157 /// to. The result is a token chain.
1159
1160 /// Sets the current floating point environment. The first operand is a token
1161 /// chain, the second is a pointer to memory, where FP environment is loaded
1162 /// from. The result is a token chain.
1164
1165 /// Reads the current dynamic floating-point control modes. The operand is
1166 /// a token chain.
1168
1169 /// Sets the current dynamic floating-point control modes. The first operand
1170 /// is a token chain, the second is control modes set represented as integer
1171 /// value.
1173
1174 /// Sets default dynamic floating-point control modes. The operand is a
1175 /// token chain.
1177
1178 /// LOAD and STORE have token chains as their first operand, then the same
1179 /// operands as an LLVM load/store instruction, then an offset node that
1180 /// is added / subtracted from the base pointer to form the address (for
1181 /// indexed memory ops).
1184
1185 /// DYNAMIC_STACKALLOC - Allocate some number of bytes on the stack aligned
1186 /// to a specified boundary. This node always has two return values: a new
1187 /// stack pointer value and a chain. The first operand is the token chain,
1188 /// the second is the number of bytes to allocate, and the third is the
1189 /// alignment boundary. The size is guaranteed to be a multiple of the
1190 /// stack alignment, and the alignment is guaranteed to be bigger than the
1191 /// stack alignment (if required) or 0 to get standard stack alignment.
1193
1194 /// Control flow instructions. These all have token chains.
1195
1196 /// BR - Unconditional branch. The first operand is the chain
1197 /// operand, the second is the MBB to branch to.
1199
1200 /// BRIND - Indirect branch. The first operand is the chain, the second
1201 /// is the value to branch to, which must be of the same type as the
1202 /// target's pointer type.
1204
1205 /// BR_JT - Jumptable branch. The first operand is the chain, the second
1206 /// is the jumptable index, the last one is the jumptable entry index.
1208
1209 /// JUMP_TABLE_DEBUG_INFO - Jumptable debug info. The first operand is the
1210 /// chain, the second is the jumptable index.
1212
1213 /// BRCOND - Conditional branch. The first operand is the chain, the
1214 /// second is the condition, the third is the block to branch to if the
1215 /// condition is true. If the type of the condition is not i1, then the
1216 /// high bits must conform to getBooleanContents. If the condition is undef,
1217 /// it nondeterministically jumps to the block.
1218 /// TODO: Its semantics w.r.t undef requires further discussion; we need to
1219 /// make it sure that it is consistent with optimizations in MIR & the
1220 /// meaning of IMPLICIT_DEF. See https://reviews.llvm.org/D92015
1222
1223 /// BR_CC - Conditional branch. The behavior is like that of SELECT_CC, in
1224 /// that the condition is represented as condition code, and two nodes to
1225 /// compare, rather than as a combined SetCC node. The operands in order
1226 /// are chain, cc, lhs, rhs, block to branch to if condition is true. If
1227 /// condition is undef, it nondeterministically jumps to the block.
1229
1230 /// INLINEASM - Represents an inline asm block. This node always has two
1231 /// return values: a chain and a flag result. The inputs are as follows:
1232 /// Operand #0 : Input chain.
1233 /// Operand #1 : a ExternalSymbolSDNode with a pointer to the asm string.
1234 /// Operand #2 : a MDNodeSDNode with the !srcloc metadata.
1235 /// Operand #3 : HasSideEffect, IsAlignStack bits.
1236 /// After this, it is followed by a list of operands with this format:
1237 /// ConstantSDNode: Flags that encode whether it is a mem or not, the
1238 /// of operands that follow, etc. See InlineAsm.h.
1239 /// ... however many operands ...
1240 /// Operand #last: Optional, an incoming flag.
1241 ///
1242 /// The variable width operands are required to represent target addressing
1243 /// modes as a single "operand", even though they may have multiple
1244 /// SDOperands.
1246
1247 /// INLINEASM_BR - Branching version of inline asm. Used by asm-goto.
1249
1250 /// EH_LABEL - Represents a label in mid basic block used to track
1251 /// locations needed for debug and exception handling tables. These nodes
1252 /// take a chain as input and return a chain.
1254
1255 /// ANNOTATION_LABEL - Represents a mid basic block label used by
1256 /// annotations. This should remain within the basic block and be ordered
1257 /// with respect to other call instructions, but loads and stores may float
1258 /// past it.
1260
1261 /// CATCHRET - Represents a return from a catch block funclet. Used for
1262 /// MSVC compatible exception handling. Takes a chain operand and a
1263 /// destination basic block operand.
1265
1266 /// CLEANUPRET - Represents a return from a cleanup block funclet. Used for
1267 /// MSVC compatible exception handling. Takes only a chain operand.
1269
1270 /// STACKSAVE - STACKSAVE has one operand, an input chain. It produces a
1271 /// value, the same type as the pointer type for the system, and an output
1272 /// chain.
1274
1275 /// STACKRESTORE has two operands, an input chain and a pointer to restore
1276 /// to it returns an output chain.
1278
1279 /// CALLSEQ_START/CALLSEQ_END - These operators mark the beginning and end
1280 /// of a call sequence, and carry arbitrary information that target might
1281 /// want to know. The first operand is a chain, the rest are specified by
1282 /// the target and not touched by the DAG optimizers.
1283 /// Targets that may use stack to pass call arguments define additional
1284 /// operands:
1285 /// - size of the call frame part that must be set up within the
1286 /// CALLSEQ_START..CALLSEQ_END pair,
1287 /// - part of the call frame prepared prior to CALLSEQ_START.
1288 /// Both these parameters must be constants, their sum is the total call
1289 /// frame size.
1290 /// CALLSEQ_START..CALLSEQ_END pairs may not be nested.
1291 CALLSEQ_START, // Beginning of a call sequence
1292 CALLSEQ_END, // End of a call sequence
1293
1294 /// VAARG - VAARG has four operands: an input chain, a pointer, a SRCVALUE,
1295 /// and the alignment. It returns a pair of values: the vaarg value and a
1296 /// new chain.
1298
1299 /// VACOPY - VACOPY has 5 operands: an input chain, a destination pointer,
1300 /// a source pointer, a SRCVALUE for the destination, and a SRCVALUE for the
1301 /// source.
1303
1304 /// VAEND, VASTART - VAEND and VASTART have three operands: an input chain,
1305 /// pointer, and a SRCVALUE.
1308
1309 /// PREALLOCATED_SETUP - This has 2 operands: an input chain and a SRCVALUE
1310 /// with the preallocated call Value.
1312 /// PREALLOCATED_ARG - This has 3 operands: an input chain, a SRCVALUE
1313 /// with the preallocated call Value, and a constant int.
1315
1316 /// SRCVALUE - This is a node type that holds a Value* that is used to
1317 /// make reference to a value in the LLVM IR.
1319
1320 /// MDNODE_SDNODE - This is a node that holdes an MDNode*, which is used to
1321 /// reference metadata in the IR.
1323
1324 /// PCMARKER - This corresponds to the pcmarker intrinsic.
1326
1327 /// READCYCLECOUNTER - This corresponds to the readcyclecounter intrinsic.
1328 /// It produces a chain and one i64 value. The only operand is a chain.
1329 /// If i64 is not legal, the result will be expanded into smaller values.
1330 /// Still, it returns an i64, so targets should set legality for i64.
1331 /// The result is the content of the architecture-specific cycle
1332 /// counter-like register (or other high accuracy low latency clock source).
1334
1335 /// READSTEADYCOUNTER - This corresponds to the readfixedcounter intrinsic.
1336 /// It has the same semantics as the READCYCLECOUNTER implementation except
1337 /// that the result is the content of the architecture-specific fixed
1338 /// frequency counter suitable for measuring elapsed time.
1340
1341 /// HANDLENODE node - Used as a handle for various purposes.
1343
1344 /// INIT_TRAMPOLINE - This corresponds to the init_trampoline intrinsic. It
1345 /// takes as input a token chain, the pointer to the trampoline, the pointer
1346 /// to the nested function, the pointer to pass for the 'nest' parameter, a
1347 /// SRCVALUE for the trampoline and another for the nested function
1348 /// (allowing targets to access the original Function*).
1349 /// It produces a token chain as output.
1351
1352 /// ADJUST_TRAMPOLINE - This corresponds to the adjust_trampoline intrinsic.
1353 /// It takes a pointer to the trampoline and produces a (possibly) new
1354 /// pointer to the same trampoline with platform-specific adjustments
1355 /// applied. The pointer it returns points to an executable block of code.
1357
1358 /// TRAP - Trapping instruction
1360
1361 /// DEBUGTRAP - Trap intended to get the attention of a debugger.
1363
1364 /// UBSANTRAP - Trap with an immediate describing the kind of sanitizer
1365 /// failure.
1367
1368 /// PREFETCH - This corresponds to a prefetch intrinsic. The first operand
1369 /// is the chain. The other operands are the address to prefetch,
1370 /// read / write specifier, locality specifier and instruction / data cache
1371 /// specifier.
1373
1374 /// ARITH_FENCE - This corresponds to a arithmetic fence intrinsic. Both its
1375 /// operand and output are the same floating type.
1377
1378 /// MEMBARRIER - Compiler barrier only; generate a no-op.
1380
1381 /// OUTCHAIN = ATOMIC_FENCE(INCHAIN, ordering, scope)
1382 /// This corresponds to the fence instruction. It takes an input chain, and
1383 /// two integer constants: an AtomicOrdering and a SynchronizationScope.
1385
1386 /// Val, OUTCHAIN = ATOMIC_LOAD(INCHAIN, ptr)
1387 /// This corresponds to "load atomic" instruction.
1389
1390 /// OUTCHAIN = ATOMIC_STORE(INCHAIN, val, ptr)
1391 /// This corresponds to "store atomic" instruction.
1393
1394 /// Val, OUTCHAIN = ATOMIC_CMP_SWAP(INCHAIN, ptr, cmp, swap)
1395 /// For double-word atomic operations:
1396 /// ValLo, ValHi, OUTCHAIN = ATOMIC_CMP_SWAP(INCHAIN, ptr, cmpLo, cmpHi,
1397 /// swapLo, swapHi)
1398 /// This corresponds to the cmpxchg instruction.
1400
1401 /// Val, Success, OUTCHAIN
1402 /// = ATOMIC_CMP_SWAP_WITH_SUCCESS(INCHAIN, ptr, cmp, swap)
1403 /// N.b. this is still a strong cmpxchg operation, so
1404 /// Success == "Val == cmp".
1406
1407 /// Val, OUTCHAIN = ATOMIC_SWAP(INCHAIN, ptr, amt)
1408 /// Val, OUTCHAIN = ATOMIC_LOAD_[OpName](INCHAIN, ptr, amt)
1409 /// For double-word atomic operations:
1410 /// ValLo, ValHi, OUTCHAIN = ATOMIC_SWAP(INCHAIN, ptr, amtLo, amtHi)
1411 /// ValLo, ValHi, OUTCHAIN = ATOMIC_LOAD_[OpName](INCHAIN, ptr, amtLo, amtHi)
1412 /// These correspond to the atomicrmw instruction.
1437
1438 /// Masked load and store - consecutive vector load and store operations
1439 /// with additional mask operand that prevents memory accesses to the
1440 /// masked-off lanes.
1441 ///
1442 /// Val, OutChain = MLOAD(BasePtr, Mask, PassThru)
1443 /// OutChain = MSTORE(Value, BasePtr, Mask)
1446
1447 /// Masked gather and scatter - load and store operations for a vector of
1448 /// random addresses with additional mask operand that prevents memory
1449 /// accesses to the masked-off lanes.
1450 ///
1451 /// Val, OutChain = GATHER(InChain, PassThru, Mask, BasePtr, Index, Scale)
1452 /// OutChain = SCATTER(InChain, Value, Mask, BasePtr, Index, Scale)
1453 ///
1454 /// The Index operand can have more vector elements than the other operands
1455 /// due to type legalization. The extra elements are ignored.
1458
1459 /// This corresponds to the llvm.lifetime.* intrinsics. The first operand
1460 /// is the chain and the second operand is the alloca pointer.
1463
1464 /// FAKE_USE represents a use of the operand but does not do anything.
1465 /// Its purpose is the extension of the operand's lifetime mainly for
1466 /// debugging purposes.
1468
1469 /// COND_LOOP is a conditional branch to self, used for implementing efficient
1470 /// conditional traps.
1472
1473 /// GC_TRANSITION_START/GC_TRANSITION_END - These operators mark the
1474 /// beginning and end of GC transition sequence, and carry arbitrary
1475 /// information that target might need for lowering. The first operand is
1476 /// a chain, the rest are specified by the target and not touched by the DAG
1477 /// optimizers. GC_TRANSITION_START..GC_TRANSITION_END pairs may not be
1478 /// nested.
1481
1482 /// GET_DYNAMIC_AREA_OFFSET - get offset from native SP to the address of
1483 /// the most recent dynamic alloca. For most targets that would be 0, but
1484 /// for some others (e.g. PowerPC, PowerPC64) that would be compile-time
1485 /// known nonzero constant. The only operand here is the chain.
1487
1488 /// Pseudo probe for AutoFDO, as a place holder in a basic block to improve
1489 /// the sample counts quality.
1491
1492 /// VSCALE(IMM) - Returns the runtime scaling factor used to calculate the
1493 /// number of elements within a scalable vector. IMM is a constant integer
1494 /// multiplier that is applied to the runtime value.
1496
1497 /// Generic reduction nodes. These nodes represent horizontal vector
1498 /// reduction operations, producing a scalar result.
1499 /// The SEQ variants perform reductions in sequential order. The first
1500 /// operand is an initial scalar accumulator value, and the second operand
1501 /// is the vector to reduce.
1502 /// E.g. RES = VECREDUCE_SEQ_FADD f32 ACC, <4 x f32> SRC_VEC
1503 /// ... is equivalent to
1504 /// RES = (((ACC + SRC_VEC[0]) + SRC_VEC[1]) + SRC_VEC[2]) + SRC_VEC[3]
1507
1508 /// These reductions have relaxed evaluation order semantics, and have a
1509 /// single vector operand. The order of evaluation is unspecified. For
1510 /// pow-of-2 vectors, one valid legalizer expansion is to use a tree
1511 /// reduction, i.e.:
1512 /// For RES = VECREDUCE_FADD <8 x f16> SRC_VEC
1513 ///
1514 /// PART_RDX = FADD SRC_VEC[0:3], SRC_VEC[4:7]
1515 /// PART_RDX2 = FADD PART_RDX[0:1], PART_RDX[2:3]
1516 /// RES = FADD PART_RDX2[0], PART_RDX2[1]
1517 ///
1518 /// For non-pow-2 vectors, this can be computed by extracting each element
1519 /// and performing the operation as if it were scalarized.
1522 /// FMIN/FMAX nodes can have flags, for NaN/NoNaN variants.
1525 /// FMINIMUM/FMAXIMUM nodes propatate NaNs and signed zeroes using the
1526 /// llvm.minimum and llvm.maximum semantics.
1529 /// Integer reductions may have a result type larger than the vector element
1530 /// type. However, the reduction is performed using the vector element type
1531 /// and the value in the top bits is unspecified.
1541
1542 /// PARTIAL_REDUCE_[U|S]MLA(Accumulator, Input1, Input2)
1543 /// The partial reduction nodes sign or zero extend Input1 and Input2
1544 /// (with the extension kind noted below) to the element type of
1545 /// Accumulator before multiplying their results.
1546 /// This result is concatenated to the Accumulator, and this is then reduced,
1547 /// using addition, to the result type.
1548 /// The output is only expected to either be given to another partial
1549 /// reduction operation or an equivalent vector reduce operation, so the order
1550 /// in which the elements are reduced is deliberately not specified.
1551 /// Input1 and Input2 must be the same type. Accumulator and the output must
1552 /// be the same type.
1553 /// The number of elements in Input1 and Input2 must be a positive integer
1554 /// multiple of the number of elements in the Accumulator / output type.
1555 /// Input1 and Input2 must have an element type which is the same as or
1556 /// smaller than the element type of the Accumulator and output.
1557 PARTIAL_REDUCE_SMLA, // sext, sext
1558 PARTIAL_REDUCE_UMLA, // zext, zext
1560 PARTIAL_REDUCE_FMLA, // fpext, fpext
1561
1562 /// The `llvm.experimental.stackmap` intrinsic.
1563 /// Operands: input chain, glue, <id>, <numShadowBytes>, [live0[, live1...]]
1564 /// Outputs: output chain, glue
1566
1567 /// The `llvm.experimental.patchpoint.*` intrinsic.
1568 /// Operands: input chain, [glue], reg-mask, <id>, <numShadowBytes>, callee,
1569 /// <numArgs>, cc, ...
1570 /// Outputs: [rv], output chain, glue
1572
1573 /// PTRADD represents pointer arithmetic semantics, for targets that opt in
1574 /// using shouldPreservePtrArith().
1575 /// ptr = PTRADD ptr, offset
1577
1578// Vector Predication
1579#define BEGIN_REGISTER_VP_SDNODE(VPSDID, ...) VPSDID,
1580#include "llvm/IR/VPIntrinsics.def"
1581
1582 /// Issue a no-op relocation against a given symbol at the current location.
1584
1585 /// The `llvm.experimental.convergence.*` intrinsics.
1589 /// This does not correspond to any convergence control intrinsic. It is used
1590 /// to glue a convergence control token to a convergent operation in the DAG,
1591 /// which is later translated to an implicit use in the MIR.
1593
1594 /// Experimental vector histogram intrinsic
1595 /// Operands: Input Chain, Inc, Mask, Base, Index, Scale, ID
1596 /// Output: Output Chain
1598
1599 /// Returns the number of number of trailing (least significant) zero elements
1600 /// in a vector. Has a single mask vector operand. The result is poison if the
1601 /// return type isn't wide enough to hold the maximum number of elements in
1602 /// the input vector.
1605
1606 /// Finds the index of the last active mask element
1607 /// Operands: Mask
1609
1610 /// GET_ACTIVE_LANE_MASK - this corrosponds to the llvm.get.active.lane.mask
1611 /// intrinsic. It creates a mask representing active and inactive vector
1612 /// lanes, active while Base + index < Trip Count. As with the intrinsic,
1613 /// the operands Base and Trip Count have the same scalar integer type and
1614 /// the internal addition of Base + index cannot overflow. However, the ISD
1615 /// node supports result types which are wider than i1, where the high
1616 /// bits conform to getBooleanContents similar to the SETCC operator.
1618
1619 /// The `llvm.loop.dependence.{war, raw}.mask` intrinsics
1620 /// Operands: Load pointer, Store pointer, Element size, Lane offset
1621 /// Output: Mask
1622 ///
1623 /// Note: The semantics of these opcodes differ slightly from the intrinsics.
1624 /// Wherever "lane" (meaning lane index) occurs in the intrinsic definition,
1625 /// it is replaced with (lane + lane_offset) for the ISD opcode.
1626 ///
1627 /// E.g., for LOOP_DEPENDENCE_WAR_MASK:
1628 /// `elementSize * lane < (ptrB - ptrA)`
1629 /// Becomes:
1630 /// `elementSize * (lane + lane_offset) < (ptrB - ptrA)`
1631 ///
1632 /// This is done to allow for trivial splitting of the operation. Note: The
1633 /// lane offset is always a constant, for scalable masks, it is implicitly
1634 /// multiplied by vscale.
1637
1638 /// Masked vector arithmetic that returns poison on disabled lanes. Disabled
1639 /// lanes do not have undefined behaviour on division by zero or overflow. The
1640 /// first two operands are input vectors, the third operand is the mask.
1645
1646 /// llvm.clear_cache intrinsic
1647 /// Operands: Input Chain, Start Addres, End Address
1648 /// Outputs: Output Chain
1650
1651 /// Untyped node storing deactivation symbol reference
1652 /// (DeactivationSymbolSDNode).
1654
1655 /// BUILTIN_OP_END - This must be the last enum value in this list.
1656 /// The target-specific pre-isel opcode values start here.
1658};
1659
1660/// Whether this is bitwise logic opcode.
1661inline bool isBitwiseLogicOp(unsigned Opcode) {
1662 return Opcode == ISD::AND || Opcode == ISD::OR || Opcode == ISD::XOR;
1663}
1664
1665/// Whether this is an integer absolute-value opcode (ISD::ABS or
1666/// ISD::ABS_MIN_POISON).
1667inline bool isAbsOpcode(unsigned Opcode) {
1668 return Opcode == ISD::ABS || Opcode == ISD::ABS_MIN_POISON;
1669}
1670
1671/// Given a \p MinMaxOpc of ISD::(U|S)MIN or ISD::(U|S)MAX, returns
1672/// ISD::(U|S)MAX and ISD::(U|S)MIN, respectively.
1673LLVM_ABI NodeType getInverseMinMaxOpcode(unsigned MinMaxOpc);
1674
1675/// Given a \p MinMaxOpc of ISD::(U|S)MIN or ISD::(U|S)MAX, returns the
1676/// corresponding opcode with the opposite signedness:
1677/// ISD::SMIN <-> ISD::UMIN, ISD::SMAX <-> ISD::UMAX.
1679
1680/// Get underlying scalar opcode for VECREDUCE opcode.
1681/// For example ISD::AND for ISD::VECREDUCE_AND.
1682LLVM_ABI NodeType getVecReduceBaseOpcode(unsigned VecReduceOpcode);
1683
1684/// Given a \p MaskedOpc of ISD::MASKED_(U|S)(DIV|REM), returns the unmasked
1685/// ISD::(U|S)(DIV|REM).
1686LLVM_ABI NodeType getUnmaskedBinOpOpcode(unsigned MaskedOpc);
1687
1688/// Whether this is a vector-predicated Opcode.
1689LLVM_ABI bool isVPOpcode(unsigned Opcode);
1690
1691/// Whether this is a vector-predicated binary operation opcode.
1692LLVM_ABI bool isVPBinaryOp(unsigned Opcode);
1693
1694/// Whether this is a vector-predicated reduction opcode.
1695LLVM_ABI bool isVPReduction(unsigned Opcode);
1696
1697/// The operand position of the vector mask.
1698LLVM_ABI std::optional<unsigned> getVPMaskIdx(unsigned Opcode);
1699
1700/// The operand position of the explicit vector length parameter.
1701LLVM_ABI std::optional<unsigned> getVPExplicitVectorLengthIdx(unsigned Opcode);
1702
1703/// Translate this VP Opcode to its corresponding non-VP Opcode.
1704LLVM_ABI std::optional<unsigned> getBaseOpcodeForVP(unsigned Opcode,
1705 bool hasFPExcept);
1706
1707/// Translate this non-VP Opcode to its corresponding VP Opcode.
1708LLVM_ABI std::optional<unsigned> getVPForBaseOpcode(unsigned Opcode);
1709
1710//===--------------------------------------------------------------------===//
1711/// MemIndexedMode enum - This enum defines the load / store indexed
1712/// addressing modes.
1713///
1714/// UNINDEXED "Normal" load / store. The effective address is already
1715/// computed and is available in the base pointer. The offset
1716/// operand is always undefined. In addition to producing a
1717/// chain, an unindexed load produces one value (result of the
1718/// load); an unindexed store does not produce a value.
1719///
1720/// PRE_INC Similar to the unindexed mode where the effective address is
1721/// PRE_DEC the value of the base pointer add / subtract the offset.
1722/// It considers the computation as being folded into the load /
1723/// store operation (i.e. the load / store does the address
1724/// computation as well as performing the memory transaction).
1725/// The base operand is always undefined. In addition to
1726/// producing a chain, pre-indexed load produces two values
1727/// (result of the load and the result of the address
1728/// computation); a pre-indexed store produces one value (result
1729/// of the address computation).
1730///
1731/// POST_INC The effective address is the value of the base pointer. The
1732/// POST_DEC value of the offset operand is then added to / subtracted
1733/// from the base after memory transaction. In addition to
1734/// producing a chain, post-indexed load produces two values
1735/// (the result of the load and the result of the base +/- offset
1736/// computation); a post-indexed store produces one value (the
1737/// the result of the base +/- offset computation).
1739
1740static const int LAST_INDEXED_MODE = POST_DEC + 1;
1741
1742//===--------------------------------------------------------------------===//
1743/// MemIndexType enum - This enum defines how to interpret MGATHER/SCATTER's
1744/// index parameter when calculating addresses.
1745///
1746/// SIGNED_SCALED Addr = Base + ((signed)Index * Scale)
1747/// UNSIGNED_SCALED Addr = Base + ((unsigned)Index * Scale)
1748///
1749/// NOTE: The value of Scale is typically only known to the node owning the
1750/// IndexType, with a value of 1 the equivalent of being unscaled.
1752
1754
1755inline bool isIndexTypeSigned(MemIndexType IndexType) {
1756 return IndexType == SIGNED_SCALED;
1757}
1758
1759//===--------------------------------------------------------------------===//
1760/// LoadExtType enum - This enum defines the three variants of LOADEXT
1761/// (load with extension).
1762///
1763/// SEXTLOAD loads the integer operand and sign extends it to a larger
1764/// integer result type.
1765/// ZEXTLOAD loads the integer operand and zero extends it to a larger
1766/// integer result type.
1767/// EXTLOAD is used for two things: floating point extending loads and
1768/// integer extending loads [the top bits are undefined].
1770
1771static const int LAST_LOADEXT_TYPE = ZEXTLOAD + 1;
1772
1774
1775//===--------------------------------------------------------------------===//
1776/// ISD::CondCode enum - These are ordered carefully to make the bitfields
1777/// below work out, when considering SETFALSE (something that never exists
1778/// dynamically) as 0. "U" -> Unsigned (for integer operands) or Unordered
1779/// (for floating point), "L" -> Less than, "G" -> Greater than, "E" -> Equal
1780/// to. If the "N" column is 1, the result of the comparison is undefined if
1781/// the input is a NAN.
1782///
1783/// All of these (except for the 'always folded ops') should be handled for
1784/// floating point. For integer, only the SETEQ,SETNE,SETLT,SETLE,SETGT,
1785/// SETGE,SETULT,SETULE,SETUGT, and SETUGE opcodes are used.
1786///
1787/// Note that these are laid out in a specific order to allow bit-twiddling
1788/// to transform conditions.
1790 // Opcode N U L G E Intuitive operation
1791 SETFALSE, // 0 0 0 0 Always false (always folded)
1792 SETOEQ, // 0 0 0 1 True if ordered and equal
1793 SETOGT, // 0 0 1 0 True if ordered and greater than
1794 SETOGE, // 0 0 1 1 True if ordered and greater than or equal
1795 SETOLT, // 0 1 0 0 True if ordered and less than
1796 SETOLE, // 0 1 0 1 True if ordered and less than or equal
1797 SETONE, // 0 1 1 0 True if ordered and operands are unequal
1798 SETO, // 0 1 1 1 True if ordered (no nans)
1799 SETUO, // 1 0 0 0 True if unordered: isnan(X) | isnan(Y)
1800 SETUEQ, // 1 0 0 1 True if unordered or equal
1801 SETUGT, // 1 0 1 0 True if unordered or greater than
1802 SETUGE, // 1 0 1 1 True if unordered, greater than, or equal
1803 SETULT, // 1 1 0 0 True if unordered or less than
1804 SETULE, // 1 1 0 1 True if unordered, less than, or equal
1805 SETUNE, // 1 1 1 0 True if unordered or not equal
1806 SETTRUE, // 1 1 1 1 Always true (always folded)
1807 // Don't care operations: undefined if the input is a nan.
1808 SETFALSE2, // 1 X 0 0 0 Always false (always folded)
1809 SETEQ, // 1 X 0 0 1 True if equal
1810 SETGT, // 1 X 0 1 0 True if greater than
1811 SETGE, // 1 X 0 1 1 True if greater than or equal
1812 SETLT, // 1 X 1 0 0 True if less than
1813 SETLE, // 1 X 1 0 1 True if less than or equal
1814 SETNE, // 1 X 1 1 0 True if not equal
1815 SETTRUE2, // 1 X 1 1 1 Always true (always folded)
1816
1817 SETCC_INVALID // Marker value.
1818};
1819
1820/// Return true if this is a setcc instruction that performs a signed
1821/// comparison when used with integer operands.
1822inline bool isSignedIntSetCC(CondCode Code) {
1823 return Code == SETGT || Code == SETGE || Code == SETLT || Code == SETLE;
1824}
1825
1826/// Return true if this is a setcc instruction that performs an unsigned
1827/// comparison when used with integer operands.
1828inline bool isUnsignedIntSetCC(CondCode Code) {
1829 return Code == SETUGT || Code == SETUGE || Code == SETULT || Code == SETULE;
1830}
1831
1832/// Return true if this is a setcc instruction that performs an equality
1833/// comparison when used with integer operands.
1834inline bool isIntEqualitySetCC(CondCode Code) {
1835 return Code == SETEQ || Code == SETNE;
1836}
1837
1838/// Return true if this is a setcc instruction that performs an equality
1839/// comparison when used with floating point operands.
1840inline bool isFPEqualitySetCC(CondCode Code) {
1841 return Code == SETOEQ || Code == SETONE || Code == SETUEQ || Code == SETUNE;
1842}
1843
1844/// Return true if the specified condition returns true if the two operands to
1845/// the condition are equal. Note that if one of the two operands is a NaN,
1846/// this value is meaningless.
1847inline bool isTrueWhenEqual(CondCode Cond) { return ((int)Cond & 1) != 0; }
1848
1849/// This function returns 0 if the condition is always false if an operand is
1850/// a NaN, 1 if the condition is always true if the operand is a NaN, and 2 if
1851/// the condition is undefined if the operand is a NaN.
1853 return ((int)Cond >> 3) & 3;
1854}
1855
1856/// Return the operation corresponding to !(X op Y), where 'op' is a valid
1857/// SetCC operation.
1858LLVM_ABI CondCode getSetCCInverse(CondCode Operation, EVT Type);
1859
1860inline bool isExtOpcode(unsigned Opcode) {
1861 return Opcode == ISD::ANY_EXTEND || Opcode == ISD::ZERO_EXTEND ||
1862 Opcode == ISD::SIGN_EXTEND;
1863}
1864
1865inline bool isExtVecInRegOpcode(unsigned Opcode) {
1866 return Opcode == ISD::ANY_EXTEND_VECTOR_INREG ||
1869}
1870
1871namespace GlobalISel {
1872/// Return the operation corresponding to !(X op Y), where 'op' is a valid
1873/// SetCC operation. The U bit of the condition code has different meanings
1874/// between floating point and integer comparisons and LLT's don't provide
1875/// this distinction. As such we need to be told whether the comparison is
1876/// floating point or integer-like. Pointers should use integer-like
1877/// comparisons.
1879} // end namespace GlobalISel
1880
1881/// Return the operation corresponding to (Y op X) when given the operation
1882/// for (X op Y).
1884
1885/// Return the result of a logical OR between different comparisons of
1886/// identical values: ((X op1 Y) | (X op2 Y)). This function returns
1887/// SETCC_INVALID if it is not possible to represent the resultant comparison.
1889
1890/// Return the result of a logical AND between different comparisons of
1891/// identical values: ((X op1 Y) & (X op2 Y)). This function returns
1892/// SETCC_INVALID if it is not possible to represent the resultant comparison.
1894
1895} // namespace ISD
1896
1897} // namespace llvm
1898
1899#endif
#define LLVM_ABI
Definition Compiler.h:215
PowerPC Reduce CR logical Operation
const SmallVectorImpl< MachineOperand > & Cond
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
LLVM_ABI CondCode getSetCCInverse(CondCode Operation, bool isIntegerLike)
Return the operation corresponding to !(X op Y), where 'op' is a valid SetCC operation.
ISD namespace - This namespace contains an enum which represents all of the SelectionDAG node types a...
Definition ISDOpcodes.h:24
LLVM_ABI 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:41
@ SETCC
SetCC operator - This evaluates to a true value iff the condition is true.
Definition ISDOpcodes.h:827
@ MERGE_VALUES
MERGE_VALUES - This node takes multiple discrete operands and returns them all as its individual resu...
Definition ISDOpcodes.h:261
@ STACKRESTORE
STACKRESTORE has two operands, an input chain and a pointer to restore to it returns an output chain.
@ STACKSAVE
STACKSAVE - STACKSAVE has one operand, an input chain.
@ TargetConstantPool
Definition ISDOpcodes.h:189
@ CONVERGENCECTRL_ANCHOR
The llvm.experimental.convergence.* intrinsics.
@ MDNODE_SDNODE
MDNODE_SDNODE - This is a node that holdes an MDNode*, which is used to reference metadata in the IR.
@ STRICT_FSETCC
STRICT_FSETCC/STRICT_FSETCCS - Constrained versions of SETCC, used for floating-point operands only.
Definition ISDOpcodes.h:511
@ PTRADD
PTRADD represents pointer arithmetic semantics, for targets that opt in using shouldPreservePtrArith(...
@ DELETED_NODE
DELETED_NODE - This is an illegal value that is used to catch errors.
Definition ISDOpcodes.h:45
@ POISON
POISON - A poison node.
Definition ISDOpcodes.h:236
@ SET_FPENV
Sets the current floating-point environment.
@ PARTIAL_REDUCE_SMLA
PARTIAL_REDUCE_[U|S]MLA(Accumulator, Input1, Input2) The partial reduction nodes sign or zero extend ...
@ ATOMIC_LOAD_FMINIMUMNUM
@ LOOP_DEPENDENCE_RAW_MASK
@ VECREDUCE_SEQ_FADD
Generic reduction nodes.
@ COND_LOOP
COND_LOOP is a conditional branch to self, used for implementing efficient conditional traps.
@ MLOAD
Masked load and store - consecutive vector load and store operations with additional mask operand tha...
@ EH_SJLJ_LONGJMP
OUTCHAIN = EH_SJLJ_LONGJMP(INCHAIN, buffer) This corresponds to the eh.sjlj.longjmp intrinsic.
Definition ISDOpcodes.h:168
@ FGETSIGN
INT = FGETSIGN(FP) - Return the sign bit of the specified floating point value as an integer 0/1 valu...
Definition ISDOpcodes.h:538
@ SMUL_LOHI
SMUL_LOHI/UMUL_LOHI - Multiply two integers of type iN, producing a signed/unsigned value of type i[2...
Definition ISDOpcodes.h:275
@ INSERT_SUBVECTOR
INSERT_SUBVECTOR(VECTOR1, VECTOR2, IDX) - Returns a vector with VECTOR2 inserted into VECTOR1.
Definition ISDOpcodes.h:600
@ STACKADDRESS
STACKADDRESS - Represents the llvm.stackaddress intrinsic.
Definition ISDOpcodes.h:127
@ JUMP_TABLE_DEBUG_INFO
JUMP_TABLE_DEBUG_INFO - Jumptable debug info.
@ BSWAP
Byte Swap and Counting operators.
Definition ISDOpcodes.h:787
@ SMULFIX
RESULT = [US]MULFIX(LHS, RHS, SCALE) - Perform fixed point multiplication on 2 integers with the same...
Definition ISDOpcodes.h:394
@ VAEND
VAEND, VASTART - VAEND and VASTART have three operands: an input chain, pointer, and a SRCVALUE.
@ TargetBlockAddress
Definition ISDOpcodes.h:191
@ DEACTIVATION_SYMBOL
Untyped node storing deactivation symbol reference (DeactivationSymbolSDNode).
@ ATOMIC_STORE
OUTCHAIN = ATOMIC_STORE(INCHAIN, val, ptr) This corresponds to "store atomic" instruction.
@ ADDC
Carry-setting nodes for multiple precision addition and subtraction.
Definition ISDOpcodes.h:294
@ FRAME_TO_ARGS_OFFSET
FRAME_TO_ARGS_OFFSET - This node represents offset from frame pointer to first (possible) on-stack ar...
Definition ISDOpcodes.h:145
@ RESET_FPENV
Set floating-point environment to default state.
@ FMAD
FMAD - Perform a * b + c, while getting the same result as the separately rounded operations.
Definition ISDOpcodes.h:522
@ ADD
Simple integer binary arithmetic operators.
Definition ISDOpcodes.h:264
@ LOAD
LOAD and STORE have token chains as their first operand, then the same operands as an LLVM load/store...
@ SMULFIXSAT
Same as the corresponding unsaturated fixed point instructions, but the result is clamped between the...
Definition ISDOpcodes.h:400
@ SET_FPMODE
Sets the current dynamic floating-point control modes.
@ ANY_EXTEND
ANY_EXTEND - Used for integer types. The high bits are undefined.
Definition ISDOpcodes.h:861
@ CTTZ_ELTS
Returns the number of number of trailing (least significant) zero elements in a vector.
@ ATOMIC_LOAD_USUB_COND
@ FMA
FMA - Perform a * b + c with no intermediate rounding step.
Definition ISDOpcodes.h:518
@ VECTOR_FIND_LAST_ACTIVE
Finds the index of the last active mask element Operands: Mask.
@ FMODF
FMODF - Decomposes the operand into integral and fractional parts, each having the same type and sign...
@ FATAN2
FATAN2 - atan2, inspired by libm.
@ FSINCOSPI
FSINCOSPI - Compute both the sine and cosine times pi more accurately than FSINCOS(pi*x),...
@ INTRINSIC_VOID
OUTCHAIN = INTRINSIC_VOID(INCHAIN, INTRINSICID, arg1, arg2, ...) This node represents a target intrin...
Definition ISDOpcodes.h:220
@ EH_SJLJ_SETUP_DISPATCH
OUTCHAIN = EH_SJLJ_SETUP_DISPATCH(INCHAIN) The target initializes the dispatch table here.
Definition ISDOpcodes.h:172
@ GlobalAddress
Definition ISDOpcodes.h:88
@ ATOMIC_CMP_SWAP_WITH_SUCCESS
Val, Success, OUTCHAIN = ATOMIC_CMP_SWAP_WITH_SUCCESS(INCHAIN, ptr, cmp, swap) N.b.
@ STRICT_FMINIMUM
Definition ISDOpcodes.h:471
@ SINT_TO_FP
[SU]INT_TO_FP - These operators convert integers (whose interpreted sign depends on the first letter)...
Definition ISDOpcodes.h:888
@ CONCAT_VECTORS
CONCAT_VECTORS(VECTOR0, VECTOR1, ...) - Given a number of values of vector type with the same length ...
Definition ISDOpcodes.h:584
@ VECREDUCE_FMAX
FMIN/FMAX nodes can have flags, for NaN/NoNaN variants.
@ FADD
Simple binary floating point operators.
Definition ISDOpcodes.h:417
@ VECREDUCE_FMAXIMUM
FMINIMUM/FMAXIMUM nodes propatate NaNs and signed zeroes using the llvm.minimum and llvm....
@ ABS
ABS - Determine the unsigned absolute value of a signed integer value of the same bitwidth.
Definition ISDOpcodes.h:747
@ MEMBARRIER
MEMBARRIER - Compiler barrier only; generate a no-op.
@ ATOMIC_FENCE
OUTCHAIN = ATOMIC_FENCE(INCHAIN, ordering, scope) This corresponds to the fence instruction.
@ RESET_FPMODE
Sets default dynamic floating-point control modes.
@ SIGN_EXTEND_VECTOR_INREG
SIGN_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register sign-extension of the low ...
Definition ISDOpcodes.h:918
@ SDIVREM
SDIVREM/UDIVREM - Divide two integers and produce both a quotient and remainder result.
Definition ISDOpcodes.h:280
@ FP16_TO_FP
FP16_TO_FP, FP_TO_FP16 - These operators are used to perform promotions and truncation for half-preci...
@ FMULADD
FMULADD - Performs a * b + c, with, or without, intermediate rounding.
Definition ISDOpcodes.h:528
@ FPTRUNC_ROUND
FPTRUNC_ROUND - This corresponds to the fptrunc_round intrinsic.
Definition ISDOpcodes.h:515
@ FAKE_USE
FAKE_USE represents a use of the operand but does not do anything.
@ BITCAST
BITCAST - This operator converts between integer, vector and FP values, as if the value was stored to...
@ BUILD_PAIR
BUILD_PAIR - This is the opposite of EXTRACT_ELEMENT in some ways.
Definition ISDOpcodes.h:254
@ CLMUL
Carry-less multiplication operations.
Definition ISDOpcodes.h:778
@ INIT_TRAMPOLINE
INIT_TRAMPOLINE - This corresponds to the init_trampoline intrinsic.
@ FLDEXP
FLDEXP - ldexp, inspired by libm (op0 * 2**op1).
@ SDIVFIX
RESULT = [US]DIVFIX(LHS, RHS, SCALE) - Perform fixed point division on 2 integers with the same width...
Definition ISDOpcodes.h:407
@ STRICT_FSQRT
Constrained versions of libm-equivalent floating point intrinsics.
Definition ISDOpcodes.h:438
@ BUILTIN_OP_END
BUILTIN_OP_END - This must be the last enum value in this list.
@ GlobalTLSAddress
Definition ISDOpcodes.h:89
@ SRCVALUE
SRCVALUE - This is a node type that holds a Value* that is used to make reference to a value in the L...
@ CONVERT_FROM_ARBITRARY_FP
CONVERT_FROM_ARBITRARY_FP - This operator converts from an arbitrary floating-point represented as an...
@ EH_LABEL
EH_LABEL - Represents a label in mid basic block used to track locations needed for debug and excepti...
@ ATOMIC_LOAD_USUB_SAT
@ CTLZ_ZERO_POISON
Definition ISDOpcodes.h:796
@ EH_RETURN
OUTCHAIN = EH_RETURN(INCHAIN, OFFSET, HANDLER) - This node represents 'eh_return' gcc dwarf builtin,...
Definition ISDOpcodes.h:156
@ ANNOTATION_LABEL
ANNOTATION_LABEL - Represents a mid basic block label used by annotations.
@ SET_ROUNDING
Set rounding mode.
Definition ISDOpcodes.h:983
@ CONVERGENCECTRL_GLUE
This does not correspond to any convergence control intrinsic.
@ PARTIAL_REDUCE_UMLA
@ SIGN_EXTEND
Conversion operators.
Definition ISDOpcodes.h:852
@ AVGCEILS
AVGCEILS/AVGCEILU - Rounding averaging add - Add two integers using an integer of type i[N+2],...
Definition ISDOpcodes.h:715
@ STRICT_UINT_TO_FP
Definition ISDOpcodes.h:485
@ SCALAR_TO_VECTOR
SCALAR_TO_VECTOR(VAL) - This represents the operation of loading a scalar value into element 0 of the...
Definition ISDOpcodes.h:665
@ PREALLOCATED_SETUP
PREALLOCATED_SETUP - This has 2 operands: an input chain and a SRCVALUE with the preallocated call Va...
@ READSTEADYCOUNTER
READSTEADYCOUNTER - This corresponds to the readfixedcounter intrinsic.
@ ADDROFRETURNADDR
ADDROFRETURNADDR - Represents the llvm.addressofreturnaddress intrinsic.
Definition ISDOpcodes.h:117
@ TargetExternalSymbol
Definition ISDOpcodes.h:190
@ CONVERGENCECTRL_ENTRY
@ BR
Control flow instructions. These all have token chains.
@ VECREDUCE_FADD
These reductions have relaxed evaluation order semantics, and have a single vector operand.
@ TargetJumpTable
Definition ISDOpcodes.h:188
@ TargetIndex
TargetIndex - Like a constant pool entry, but with completely target-dependent semantics.
Definition ISDOpcodes.h:198
@ PARTIAL_REDUCE_FMLA
@ PREFETCH
PREFETCH - This corresponds to a prefetch intrinsic.
@ TRUNCATE_SSAT_U
Definition ISDOpcodes.h:881
@ FSINCOS
FSINCOS - Compute both fsin and fcos as a single operation.
@ 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:835
@ FNEG
Perform various unary floating-point operations inspired by libm.
@ BR_CC
BR_CC - Conditional branch.
@ SSUBO
Same for subtraction.
Definition ISDOpcodes.h:352
@ PREALLOCATED_ARG
PREALLOCATED_ARG - This has 3 operands: an input chain, a SRCVALUE with the preallocated call Value,...
@ BRIND
BRIND - Indirect branch.
@ BR_JT
BR_JT - Jumptable branch.
@ GC_TRANSITION_START
GC_TRANSITION_START/GC_TRANSITION_END - These operators mark the beginning and end of GC transition s...
@ VECTOR_INTERLEAVE
VECTOR_INTERLEAVE(VEC1, VEC2, ...) - Returns N vectors from N input vectors, where N is the factor to...
Definition ISDOpcodes.h:635
@ STEP_VECTOR
STEP_VECTOR(IMM) - Returns a scalable vector whose lanes are comprised of a linear sequence of unsign...
Definition ISDOpcodes.h:691
@ FCANONICALIZE
Returns platform specific canonical encoding of a floating point number.
Definition ISDOpcodes.h:541
@ IS_FPCLASS
Performs a check of floating point class property, defined by IEEE-754.
Definition ISDOpcodes.h:548
@ SSUBSAT
RESULT = [US]SUBSAT(LHS, RHS) - Perform saturation subtraction on 2 integers with the same bit width ...
Definition ISDOpcodes.h:374
@ SELECT
Select(COND, TRUEVAL, FALSEVAL).
Definition ISDOpcodes.h:804
@ ATOMIC_LOAD
Val, OUTCHAIN = ATOMIC_LOAD(INCHAIN, ptr) This corresponds to "load atomic" instruction.
@ UNDEF
UNDEF - An undefined node.
Definition ISDOpcodes.h:233
@ EXTRACT_ELEMENT
EXTRACT_ELEMENT - This is used to get the lower or upper (determined by a Constant,...
Definition ISDOpcodes.h:247
@ SPLAT_VECTOR
SPLAT_VECTOR(VAL) - Returns a vector with the scalar value VAL duplicated in all lanes.
Definition ISDOpcodes.h:672
@ AssertAlign
AssertAlign - These nodes record if a register contains a value that has a known alignment and the tr...
Definition ISDOpcodes.h:69
@ VACOPY
VACOPY - VACOPY has 5 operands: an input chain, a destination pointer, a source pointer,...
@ GET_ACTIVE_LANE_MASK
GET_ACTIVE_LANE_MASK - this corrosponds to the llvm.get.active.lane.mask intrinsic.
@ BasicBlock
Various leaf nodes.
Definition ISDOpcodes.h:81
@ CopyFromReg
CopyFromReg - This node indicates that the input value is a virtual or physical register that is defi...
Definition ISDOpcodes.h:230
@ SADDO
RESULT, BOOL = [SU]ADDO(LHS, RHS) - Overflow-aware nodes for addition.
Definition ISDOpcodes.h:348
@ TargetGlobalAddress
TargetGlobalAddress - Like GlobalAddress, but the DAG does no folding or anything else with this node...
Definition ISDOpcodes.h:185
@ ARITH_FENCE
ARITH_FENCE - This corresponds to a arithmetic fence intrinsic.
@ CTLS
Count leading redundant sign bits.
Definition ISDOpcodes.h:800
@ VECREDUCE_ADD
Integer reductions may have a result type larger than the vector element type.
@ 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:978
@ STRICT_FP_TO_FP16
@ MULHU
MULHU/MULHS - Multiply high - Multiply two integers of type iN, producing an unsigned/signed value of...
Definition ISDOpcodes.h:704
@ CLEANUPRET
CLEANUPRET - Represents a return from a cleanup block funclet.
@ ATOMIC_LOAD_FMAXIMUM
@ GET_FPMODE
Reads the current dynamic floating-point control modes.
@ STRICT_FP16_TO_FP
@ GET_FPENV
Gets the current floating-point environment.
@ SHL
Shift and rotation operations.
Definition ISDOpcodes.h:769
@ AssertNoFPClass
AssertNoFPClass - These nodes record if a register contains a float value that is known to be not som...
Definition ISDOpcodes.h:78
@ VECTOR_SHUFFLE
VECTOR_SHUFFLE(VEC1, VEC2) - Returns a vector, of the same type as VEC1/VEC2.
Definition ISDOpcodes.h:649
@ PtrAuthGlobalAddress
A ptrauth constant.
Definition ISDOpcodes.h:100
@ EXTRACT_SUBVECTOR
EXTRACT_SUBVECTOR(VECTOR, IDX) - Returns a subvector from VECTOR.
Definition ISDOpcodes.h:614
@ FMINNUM_IEEE
FMINNUM_IEEE/FMAXNUM_IEEE - Perform floating-point minimumNumber or maximumNumber on two values,...
@ STRICT_FMAXIMUM
Definition ISDOpcodes.h:470
@ EntryToken
EntryToken - This is the marker used to indicate the start of a region.
Definition ISDOpcodes.h:48
@ READ_REGISTER
READ_REGISTER, WRITE_REGISTER - This node represents llvm.register on the DAG, which implements the n...
Definition ISDOpcodes.h:139
@ EXTRACT_VECTOR_ELT
EXTRACT_VECTOR_ELT(VECTOR, IDX) - Returns a single element from VECTOR identified by the (potentially...
Definition ISDOpcodes.h:576
@ CopyToReg
CopyToReg - This node has three operands: a chain, a register number to set to this value,...
Definition ISDOpcodes.h:224
@ ZERO_EXTEND
ZERO_EXTEND - Used for integer types, zeroing the new bits.
Definition ISDOpcodes.h:858
@ TargetConstantFP
Definition ISDOpcodes.h:180
@ DEBUGTRAP
DEBUGTRAP - Trap intended to get the attention of a debugger.
@ SELECT_CC
Select with condition operator - This selects between a true value and a false value (ops #2 and #3) ...
Definition ISDOpcodes.h:819
@ VSCALE
VSCALE(IMM) - Returns the runtime scaling factor used to calculate the number of elements within a sc...
@ ATOMIC_CMP_SWAP
Val, OUTCHAIN = ATOMIC_CMP_SWAP(INCHAIN, ptr, cmp, swap) For double-word atomic operations: ValLo,...
@ LOCAL_RECOVER
LOCAL_RECOVER - Represents the llvm.localrecover intrinsic.
Definition ISDOpcodes.h:135
@ FMINNUM
FMINNUM/FMAXNUM - Perform floating-point minimum maximum on two values, following IEEE-754 definition...
@ UBSANTRAP
UBSANTRAP - Trap with an immediate describing the kind of sanitizer failure.
@ SSHLSAT
RESULT = [US]SHLSAT(LHS, RHS) - Perform saturation left shift.
Definition ISDOpcodes.h:386
@ PATCHPOINT
The llvm.experimental.patchpoint.
@ SMULO
Same for multiplication.
Definition ISDOpcodes.h:356
@ ATOMIC_LOAD_FMINIMUM
@ DYNAMIC_STACKALLOC
DYNAMIC_STACKALLOC - Allocate some number of bytes on the stack aligned to a specified boundary.
@ TargetFrameIndex
Definition ISDOpcodes.h:187
@ VECTOR_SPLICE_LEFT
VECTOR_SPLICE_LEFT(VEC1, VEC2, OFFSET) - Shifts CONCAT_VECTORS(VEC1, VEC2) left by OFFSET elements an...
Definition ISDOpcodes.h:653
@ ANY_EXTEND_VECTOR_INREG
ANY_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register any-extension of the low la...
Definition ISDOpcodes.h:907
@ SIGN_EXTEND_INREG
SIGN_EXTEND_INREG - This operator atomically performs a SHL/SRA pair to sign extend a small value in ...
Definition ISDOpcodes.h:896
@ SMIN
[US]{MIN/MAX} - Binary minimum or maximum of signed or unsigned integers.
Definition ISDOpcodes.h:727
@ MASKED_UDIV
Masked vector arithmetic that returns poison on disabled lanes.
@ VECTOR_REVERSE
VECTOR_REVERSE(VECTOR) - Returns a vector, of the same type as VECTOR, whose elements are shuffled us...
Definition ISDOpcodes.h:640
@ LIFETIME_START
This corresponds to the llvm.lifetime.
@ SDIVFIXSAT
Same as the corresponding unsaturated fixed point instructions, but the result is clamped between the...
Definition ISDOpcodes.h:413
@ FP_EXTEND
X = FP_EXTEND(Y) - Extend a smaller FP type into a larger FP type.
Definition ISDOpcodes.h:986
@ GLOBAL_OFFSET_TABLE
The address of the GOT.
Definition ISDOpcodes.h:103
@ VSELECT
Select with a vector condition (op #0) and two vector operands (ops #1 and #2), returning a vector re...
Definition ISDOpcodes.h:813
@ UADDO_CARRY
Carry-using nodes for multiple precision addition and subtraction.
Definition ISDOpcodes.h:328
@ STRICT_SINT_TO_FP
STRICT_[US]INT_TO_FP - Convert a signed or unsigned integer to a floating point value.
Definition ISDOpcodes.h:484
@ MGATHER
Masked gather and scatter - load and store operations for a vector of random addresses with additiona...
@ HANDLENODE
HANDLENODE node - Used as a handle for various purposes.
@ STRICT_BF16_TO_FP
@ PCMARKER
PCMARKER - This corresponds to the pcmarker intrinsic.
@ STRICT_FROUNDEVEN
Definition ISDOpcodes.h:464
@ INLINEASM_BR
INLINEASM_BR - Branching version of inline asm. Used by asm-goto.
@ ATOMIC_LOAD_FMAXIMUMNUM
@ EH_DWARF_CFA
EH_DWARF_CFA - This node represents the pointer to the DWARF Canonical Frame Address (CFA),...
Definition ISDOpcodes.h:150
@ BF16_TO_FP
BF16_TO_FP, FP_TO_BF16 - These operators are used to perform promotions and truncation for bfloat16.
@ FRAMEADDR
FRAMEADDR, RETURNADDR - These nodes represent llvm.frameaddress and llvm.returnaddress on the DAG.
Definition ISDOpcodes.h:110
@ ATOMIC_LOAD_UDEC_WRAP
@ STRICT_FP_TO_UINT
Definition ISDOpcodes.h:478
@ PEXT
Parallel bit extract (compress) and parallel bit deposit (expand).
Definition ISDOpcodes.h:783
@ STRICT_FP_ROUND
X = STRICT_FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating point type down to the precision ...
Definition ISDOpcodes.h:500
@ STRICT_FP_TO_SINT
STRICT_FP_TO_[US]INT - Convert a floating point value to a signed or unsigned integer.
Definition ISDOpcodes.h:477
@ FMINIMUM
FMINIMUM/FMAXIMUM - NaN-propagating minimum/maximum that also treat -0.0 as less than 0....
@ FP_TO_SINT
FP_TO_[US]INT - Convert a floating point value to a signed or unsigned integer.
Definition ISDOpcodes.h:934
@ READCYCLECOUNTER
READCYCLECOUNTER - This corresponds to the readcyclecounter intrinsic.
@ TargetConstant
TargetConstant* - Like Constant*, but the DAG does not do any folding, simplification,...
Definition ISDOpcodes.h:179
@ STRICT_FP_EXTEND
X = STRICT_FP_EXTEND(Y) - Extend a smaller FP type into a larger FP type.
Definition ISDOpcodes.h:505
@ RELOC_NONE
Issue a no-op relocation against a given symbol at the current location.
@ AND
Bitwise operators - logical and, logical or, logical xor.
Definition ISDOpcodes.h:739
@ TRAP
TRAP - Trapping instruction.
@ INTRINSIC_WO_CHAIN
RESULT = INTRINSIC_WO_CHAIN(INTRINSICID, arg1, arg2, ...) This node represents a target intrinsic fun...
Definition ISDOpcodes.h:205
@ GET_FPENV_MEM
Gets the current floating-point environment.
@ PSEUDO_PROBE
Pseudo probe for AutoFDO, as a place holder in a basic block to improve the sample counts quality.
@ STRICT_FP_TO_BF16
@ SCMP
[US]CMP - 3-way comparison of signed or unsigned integers.
Definition ISDOpcodes.h:735
@ CARRY_FALSE
CARRY_FALSE - This node is used when folding other nodes, like ADDC/SUBC, which indicate the carry re...
Definition ISDOpcodes.h:285
@ AVGFLOORS
AVGFLOORS/AVGFLOORU - Averaging add - Add two integers using an integer of type i[N+1],...
Definition ISDOpcodes.h:710
@ VECTOR_SPLICE_RIGHT
VECTOR_SPLICE_RIGHT(VEC1, VEC2, OFFSET) - Shifts CONCAT_VECTORS(VEC1,VEC2) right by OFFSET elements a...
Definition ISDOpcodes.h:657
@ ADDE
Carry-using nodes for multiple precision addition and subtraction.
Definition ISDOpcodes.h:304
@ STRICT_FADD
Constrained versions of the binary floating point operators.
Definition ISDOpcodes.h:427
@ STACKMAP
The llvm.experimental.stackmap intrinsic.
@ SPLAT_VECTOR_PARTS
SPLAT_VECTOR_PARTS(SCALAR1, SCALAR2, ...) - Returns a vector with the scalar values joined together a...
Definition ISDOpcodes.h:681
@ FREEZE
FREEZE - FREEZE(VAL) returns an arbitrary value if VAL is UNDEF (or is evaluated to UNDEF),...
Definition ISDOpcodes.h:241
@ INSERT_VECTOR_ELT
INSERT_VECTOR_ELT(VECTOR, VAL, IDX) - Returns VECTOR with the element at IDX replaced with VAL.
Definition ISDOpcodes.h:565
@ TokenFactor
TokenFactor - This node takes multiple tokens as input and produces a single token result.
Definition ISDOpcodes.h:53
@ ATOMIC_SWAP
Val, OUTCHAIN = ATOMIC_SWAP(INCHAIN, ptr, amt) Val, OUTCHAIN = ATOMIC_LOAD_[OpName](INCHAIN,...
@ CTTZ_ZERO_POISON
Bit counting operators with a poisoned result for zero inputs.
Definition ISDOpcodes.h:795
@ ExternalSymbol
Definition ISDOpcodes.h:93
@ FFREXP
FFREXP - frexp, extract fractional and exponent component of a floating-point value.
@ FP_ROUND
X = FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating point type down to the precision of the ...
Definition ISDOpcodes.h:967
@ VECTOR_COMPRESS
VECTOR_COMPRESS(Vec, Mask, Passthru) consecutively place vector elements based on mask e....
Definition ISDOpcodes.h:699
@ SPONENTRY
SPONENTRY - Represents the llvm.sponentry intrinsic.
Definition ISDOpcodes.h:122
@ CLEAR_CACHE
llvm.clear_cache intrinsic Operands: Input Chain, Start Addres, End Address Outputs: Output Chain
@ CONVERGENCECTRL_LOOP
@ ZERO_EXTEND_VECTOR_INREG
ZERO_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register zero-extension of the low ...
Definition ISDOpcodes.h:929
@ ADDRSPACECAST
ADDRSPACECAST - This operator converts between pointers of different address spaces.
@ EXPERIMENTAL_VECTOR_HISTOGRAM
Experimental vector histogram intrinsic Operands: Input Chain, Inc, Mask, Base, Index,...
@ INLINEASM
INLINEASM - Represents an inline asm block.
@ STRICT_FNEARBYINT
Definition ISDOpcodes.h:458
@ 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:953
@ VECREDUCE_FMINIMUM
@ EH_SJLJ_SETJMP
RESULT, OUTCHAIN = EH_SJLJ_SETJMP(INCHAIN, buffer) This corresponds to the eh.sjlj....
Definition ISDOpcodes.h:162
@ TRUNCATE
TRUNCATE - Completely drop the high bits.
Definition ISDOpcodes.h:864
@ VAARG
VAARG - VAARG has four operands: an input chain, a pointer, a SRCVALUE, and the alignment.
@ BRCOND
BRCOND - Conditional branch.
@ VECREDUCE_SEQ_FMUL
@ CONVERT_TO_ARBITRARY_FP
CONVERT_TO_ARBITRARY_FP - Converts a native FP value to an arbitrary floating-point format,...
@ SHL_PARTS
SHL_PARTS/SRA_PARTS/SRL_PARTS - These operators are used for expanded integer shift operations.
Definition ISDOpcodes.h:841
@ CATCHRET
CATCHRET - Represents a return from a catch block funclet.
@ GC_TRANSITION_END
@ AssertSext
AssertSext, AssertZext - These nodes record if a register contains a value that has already been zero...
Definition ISDOpcodes.h:62
@ ATOMIC_LOAD_UINC_WRAP
@ FCOPYSIGN
FCOPYSIGN(X, Y) - Return the value of X with the sign of Y.
Definition ISDOpcodes.h:534
@ PARTIAL_REDUCE_SUMLA
@ SADDSAT
RESULT = [US]ADDSAT(LHS, RHS) - Perform saturation addition on 2 integers with the same bit width (W)...
Definition ISDOpcodes.h:365
@ CALLSEQ_START
CALLSEQ_START/CALLSEQ_END - These operators mark the beginning and end of a call sequence,...
@ VECTOR_DEINTERLEAVE
VECTOR_DEINTERLEAVE(VEC1, VEC2, ...) - Returns N vectors from N input vectors, where N is the factor ...
Definition ISDOpcodes.h:624
@ GET_DYNAMIC_AREA_OFFSET
GET_DYNAMIC_AREA_OFFSET - get offset from native SP to the address of the most recent dynamic alloca.
@ CTTZ_ELTS_ZERO_POISON
@ SET_FPENV_MEM
Sets the current floating point environment.
@ FMINIMUMNUM
FMINIMUMNUM/FMAXIMUMNUM - minimumnum/maximumnum that is same with FMINNUM_IEEE and FMAXNUM_IEEE besid...
@ TRUNCATE_SSAT_S
TRUNCATE_[SU]SAT_[SU] - Truncate for saturated operand [SU] located in middle, prefix for SAT means i...
Definition ISDOpcodes.h:879
@ ABDS
ABDS/ABDU - Absolute difference - Return the absolute difference between two numbers interpreted as s...
Definition ISDOpcodes.h:722
@ ADJUST_TRAMPOLINE
ADJUST_TRAMPOLINE - This corresponds to the adjust_trampoline intrinsic.
@ TRUNCATE_USAT_U
Definition ISDOpcodes.h:883
@ SADDO_CARRY
Carry-using overflow-aware nodes for multiple precision addition and subtraction.
Definition ISDOpcodes.h:338
@ INTRINSIC_W_CHAIN
RESULT,OUTCHAIN = INTRINSIC_W_CHAIN(INCHAIN, INTRINSICID, arg1, ...) This node represents a target in...
Definition ISDOpcodes.h:213
@ TargetGlobalTLSAddress
Definition ISDOpcodes.h:186
@ ABS_MIN_POISON
ABS with a poison result for INT_MIN.
Definition ISDOpcodes.h:751
@ BUILD_VECTOR
BUILD_VECTOR(ELT0, ELT1, ELT2, ELT3,...) - Return a fixed-width vector with the specified,...
Definition ISDOpcodes.h:556
@ LOOP_DEPENDENCE_WAR_MASK
The llvm.loop.dependence.
bool isIndexTypeSigned(MemIndexType IndexType)
bool isExtVecInRegOpcode(unsigned Opcode)
LLVM_ABI NodeType getOppositeSignednessMinMaxOpcode(unsigned MinMaxOpc)
Given a MinMaxOpc of ISD::(U|S)MIN or ISD::(U|S)MAX, returns the corresponding opcode with the opposi...
LLVM_ABI NodeType getExtForLoadExtType(bool IsFP, LoadExtType)
bool isFPEqualitySetCC(CondCode Code)
Return true if this is a setcc instruction that performs an equality comparison when used with floati...
bool isExtOpcode(unsigned Opcode)
static const int LAST_LOADEXT_TYPE
LLVM_ABI NodeType getUnmaskedBinOpOpcode(unsigned MaskedOpc)
Given a MaskedOpc of ISD::MASKED_(U|S)(DIV|REM), returns the unmasked ISD::(U|S)(DIV|REM).
LLVM_ABI bool isVPBinaryOp(unsigned Opcode)
Whether this is a vector-predicated binary operation opcode.
LLVM_ABI CondCode getSetCCInverse(CondCode Operation, EVT Type)
Return the operation corresponding to !(X op Y), where 'op' is a valid SetCC operation.
LLVM_ABI 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.
bool isTrueWhenEqual(CondCode Cond)
Return true if the specified condition returns true if the two operands to the condition are equal.
LLVM_ABI std::optional< unsigned > getVPMaskIdx(unsigned Opcode)
The operand position of the vector mask.
static const int LAST_MEM_INDEX_TYPE
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...
LLVM_ABI std::optional< unsigned > getVPExplicitVectorLengthIdx(unsigned Opcode)
The operand position of the explicit vector length parameter.
LLVM_ABI CondCode getSetCCSwappedOperands(CondCode Operation)
Return the operation corresponding to (Y op X) when given the operation for (X op Y).
LLVM_ABI std::optional< unsigned > getVPForBaseOpcode(unsigned Opcode)
Translate this non-VP Opcode to its corresponding VP Opcode.
MemIndexType
MemIndexType enum - This enum defines how to interpret MGATHER/SCATTER's index parameter when calcula...
bool isSignedIntSetCC(CondCode Code)
Return true if this is a setcc instruction that performs a signed comparison when used with integer o...
LLVM_ABI NodeType getInverseMinMaxOpcode(unsigned MinMaxOpc)
Given a MinMaxOpc of ISD::(U|S)MIN or ISD::(U|S)MAX, returns ISD::(U|S)MAX and ISD::(U|S)MIN,...
LLVM_ABI bool isVPReduction(unsigned Opcode)
Whether this is a vector-predicated reduction opcode.
MemIndexedMode
MemIndexedMode enum - This enum defines the load / store indexed addressing modes.
CondCode
ISD::CondCode enum - These are ordered carefully to make the bitfields below work out,...
LLVM_ABI 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).
bool isAbsOpcode(unsigned Opcode)
Whether this is an integer absolute-value opcode (ISD::ABS or ISD::ABS_MIN_POISON).
bool isUnsignedIntSetCC(CondCode Code)
Return true if this is a setcc instruction that performs an unsigned comparison when used with intege...
static const int LAST_INDEXED_MODE
LLVM_ABI bool isVPOpcode(unsigned Opcode)
Whether this is a vector-predicated Opcode.
LLVM_ABI 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...
This is an optimization pass for GlobalISel generic memory operations.
Extended Value Type.
Definition ValueTypes.h:35