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