LLVM 24.0.0git
SelectionDAGNodes.h
Go to the documentation of this file.
1//===- llvm/CodeGen/SelectionDAGNodes.h - SelectionDAG Nodes ----*- 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 the SDNode class and derived classes, which are used to
10// represent the nodes and operations present in a SelectionDAG. These nodes
11// and operations are machine code level operations, with some similarities to
12// the GCC RTL representation.
13//
14// Clients should include the SelectionDAG.h file instead of this file directly.
15//
16//===----------------------------------------------------------------------===//
17
18#ifndef LLVM_CODEGEN_SELECTIONDAGNODES_H
19#define LLVM_CODEGEN_SELECTIONDAGNODES_H
20
21#include "llvm/ADT/APFloat.h"
22#include "llvm/ADT/ArrayRef.h"
23#include "llvm/ADT/BitVector.h"
24#include "llvm/ADT/FoldingSet.h"
28#include "llvm/ADT/ilist_node.h"
29#include "llvm/ADT/iterator.h"
36#include "llvm/IR/Constants.h"
37#include "llvm/IR/DebugLoc.h"
38#include "llvm/IR/Instruction.h"
40#include "llvm/IR/Metadata.h"
41#include "llvm/IR/Operator.h"
48#include <algorithm>
49#include <cassert>
50#include <climits>
51#include <cstddef>
52#include <cstdint>
53#include <cstring>
54#include <iterator>
55#include <string>
56#include <tuple>
57#include <utility>
58
59namespace llvm {
60
61class APInt;
62class Constant;
63class GlobalValue;
66class MCSymbol;
67class raw_ostream;
68class SDNode;
69class SelectionDAG;
70class Type;
71class Value;
72
73LLVM_ABI void checkForCycles(const SDNode *N, const SelectionDAG *DAG = nullptr,
74 bool force = false);
75
76/// This represents a list of ValueType's that has been intern'd by
77/// a SelectionDAG. Instances of this simple value class are returned by
78/// SelectionDAG::getVTList(...).
79///
80struct SDVTList {
81 const EVT *VTs;
82 unsigned int NumVTs;
83};
84
85namespace ISD {
86
87 /// Node predicates
88
89/// If N is a BUILD_VECTOR or SPLAT_VECTOR node whose elements are all the
90/// same constant or undefined, return true and return the constant value in
91/// \p SplatValue.
92LLVM_ABI bool isConstantSplatVector(const SDNode *N, APInt &SplatValue);
93
94/// Return true if the specified node is a BUILD_VECTOR or SPLAT_VECTOR where
95/// all of the elements are ~0 or undef. If \p BuildVectorOnly is set to
96/// true, it only checks BUILD_VECTOR.
98 bool BuildVectorOnly = false);
99
100/// Return true if the specified node is a BUILD_VECTOR or SPLAT_VECTOR where
101/// all of the elements are 0 or undef. If \p BuildVectorOnly is set to true, it
102/// only checks BUILD_VECTOR.
104 bool BuildVectorOnly = false);
105
106/// Return true if the specified node is a BUILD_VECTOR where all of the
107/// elements are ~0 or undef.
109
110/// Return true if the specified node is a BUILD_VECTOR where all of the
111/// elements are 0 or undef.
113
114/// Return true if the specified node is a BUILD_VECTOR node of all
115/// ConstantSDNode or undef.
117
118/// Return true if the specified node is a BUILD_VECTOR node of all
119/// ConstantFPSDNode or undef.
121
122/// Returns true if the specified node is a vector where all elements can
123/// be truncated to the specified element size without a loss in meaning.
124LLVM_ABI bool isVectorShrinkable(const SDNode *N, unsigned NewEltSize,
125 bool Signed);
126
127/// Return true if the node has at least one operand and all operands of the
128/// specified node are ISD::UNDEF.
129LLVM_ABI bool allOperandsUndef(const SDNode *N);
130
131/// Return true if the specified node is FREEZE(UNDEF).
133
134} // end namespace ISD
135
136//===----------------------------------------------------------------------===//
137/// Unlike LLVM values, Selection DAG nodes may return multiple
138/// values as the result of a computation. Many nodes return multiple values,
139/// from loads (which define a token and a return value) to ADDC (which returns
140/// a result and a carry value), to calls (which may return an arbitrary number
141/// of values).
142///
143/// As such, each use of a SelectionDAG computation must indicate the node that
144/// computes it as well as which return value to use from that node. This pair
145/// of information is represented with the SDValue value type.
146///
147class SDValue {
148 friend struct DenseMapInfo<SDValue>;
149
150 SDNode *Node = nullptr; // The node defining the value we are using.
151 unsigned ResNo = 0; // Which return value of the node we are using.
152
153public:
154 SDValue() = default;
155 SDValue(SDNode *node, unsigned resno);
156
157 /// get the index which selects a specific result in the SDNode
158 unsigned getResNo() const { return ResNo; }
159
160 /// get the SDNode which holds the desired result
161 SDNode *getNode() const { return Node; }
162
163 /// set the SDNode
164 void setNode(SDNode *N) { Node = N; }
165
166 inline SDNode *operator->() const { return Node; }
167
168 bool operator==(const SDValue &O) const {
169 return Node == O.Node && ResNo == O.ResNo;
170 }
171 bool operator!=(const SDValue &O) const {
172 return !operator==(O);
173 }
174 bool operator<(const SDValue &O) const {
175 return std::tie(Node, ResNo) < std::tie(O.Node, O.ResNo);
176 }
177 explicit operator bool() const {
178 return Node != nullptr;
179 }
180
181 SDValue getValue(unsigned R) const {
182 return SDValue(Node, R);
183 }
184
185 /// Return true if the referenced return value is an operand of N.
186 LLVM_ABI bool isOperandOf(const SDNode *N) const;
187
188 /// Return the ValueType of the referenced return value.
189 inline EVT getValueType() const;
190
191 /// Return the simple ValueType of the referenced return value.
193 return getValueType().getSimpleVT();
194 }
195
196 /// Returns the size of the value in bits.
197 ///
198 /// If the value type is a scalable vector type, the scalable property will
199 /// be set and the runtime size will be a positive integer multiple of the
200 /// base size.
202 return getValueType().getSizeInBits();
203 }
204
208
209 // Forwarding methods - These forward to the corresponding methods in SDNode.
210 inline unsigned getOpcode() const;
211 inline unsigned getNumOperands() const;
212 inline const SDValue &getOperand(unsigned i) const;
213 inline uint64_t getConstantOperandVal(unsigned i) const;
214 inline const APInt &getConstantOperandAPInt(unsigned i) const;
215 inline bool isTargetOpcode() const;
216 inline bool isMachineOpcode() const;
217 inline bool isUndef() const;
218 inline bool isAnyAdd() const;
219 inline unsigned getMachineOpcode() const;
220 inline const DebugLoc &getDebugLoc() const;
221 inline void dump() const;
222 inline void dump(const SelectionDAG *G) const;
223 inline void dumpr() const;
224 inline void dumpr(const SelectionDAG *G) const;
225
226 /// Return true if this operand (which must be a chain) reaches the
227 /// specified operand without crossing any side-effecting instructions.
228 /// In practice, this looks through token factors and non-volatile loads.
229 /// In order to remain efficient, this only
230 /// looks a couple of nodes in, it does not do an exhaustive search.
232 unsigned Depth = 2) const;
233
234 /// Return true if there are no nodes using value ResNo of Node.
235 inline bool use_empty() const;
236
237 /// Return true if there is exactly one node using value ResNo of Node, in
238 /// exactly one operand.
239 inline bool hasOneUse() const;
240
241 /// Return true if there is exactly one node using value ResNo of Node, in
242 /// potentially multiple operands.
243 inline bool hasOneUser() const;
244};
245
246template <> struct DenseMapInfo<SDValue> {
247 static unsigned getHashValue(const SDValue &Val) {
249 Val.getResNo();
250 }
251
252 static bool isEqual(const SDValue &LHS, const SDValue &RHS) {
253 return LHS == RHS;
254 }
255};
256
257/// Allow casting operators to work directly on
258/// SDValues as if they were SDNode*'s.
259template<> struct simplify_type<SDValue> {
261
263 return Val.getNode();
264 }
265};
266template<> struct simplify_type<const SDValue> {
267 using SimpleType = /*const*/ SDNode *;
268
270 return Val.getNode();
271 }
272};
273
274/// Represents a use of a SDNode. This class holds an SDValue,
275/// which records the SDNode being used and the result number, a
276/// pointer to the SDNode using the value, and Next and Prev pointers,
277/// which link together all the uses of an SDNode.
278///
279class SDUse {
280 /// Val - The value being used.
281 SDValue Val;
282 /// User - The user of this value.
283 SDNode *User = nullptr;
284 /// Prev, Next - Pointers to the uses list of the SDNode referred by
285 /// this operand.
286 SDUse **Prev = nullptr;
287 SDUse *Next = nullptr;
288
289public:
290 SDUse() = default;
291 SDUse(const SDUse &U) = delete;
292 SDUse &operator=(const SDUse &) = delete;
293
294 /// Normally SDUse will just implicitly convert to an SDValue that it holds.
295 operator const SDValue&() const { return Val; }
296
297 /// If implicit conversion to SDValue doesn't work, the get() method returns
298 /// the SDValue.
299 const SDValue &get() const { return Val; }
300
301 /// This returns the SDNode that contains this Use.
302 SDNode *getUser() { return User; }
303 const SDNode *getUser() const { return User; }
304
305 /// Get the next SDUse in the use list.
306 SDUse *getNext() const { return Next; }
307
308 /// Return the operand # of this use in its user.
309 inline unsigned getOperandNo() const;
310
311 /// Convenience function for get().getNode().
312 SDNode *getNode() const { return Val.getNode(); }
313 /// Convenience function for get().getResNo().
314 unsigned getResNo() const { return Val.getResNo(); }
315 /// Convenience function for get().getValueType().
316 EVT getValueType() const { return Val.getValueType(); }
317
318 /// Convenience function for get().operator==
319 bool operator==(const SDValue &V) const {
320 return Val == V;
321 }
322
323 /// Convenience function for get().operator!=
324 bool operator!=(const SDValue &V) const {
325 return Val != V;
326 }
327
328 /// Convenience function for get().operator<
329 bool operator<(const SDValue &V) const {
330 return Val < V;
331 }
332
333private:
334 friend class SelectionDAG;
335 friend class SDNode;
336 // TODO: unfriend HandleSDNode once we fix its operand handling.
337 friend class HandleSDNode;
338
339 void setUser(SDNode *p) { User = p; }
340
341 /// Remove this use from its existing use list, assign it the
342 /// given value, and add it to the new value's node's use list.
343 inline void set(const SDValue &V);
344 /// Like set, but only supports initializing a newly-allocated
345 /// SDUse with a non-null value.
346 inline void setInitial(const SDValue &V);
347 /// Like set, but only sets the Node portion of the value,
348 /// leaving the ResNo portion unmodified.
349 inline void setNode(SDNode *N);
350
351 void addToList(SDUse **List) {
352 Next = *List;
353 if (Next) Next->Prev = &Next;
354 Prev = List;
355 *List = this;
356 }
357
358 void removeFromList() {
359 *Prev = Next;
360 if (Next) Next->Prev = Prev;
361 }
362};
363
364/// simplify_type specializations - Allow casting operators to work directly on
365/// SDValues as if they were SDNode*'s.
366template<> struct simplify_type<SDUse> {
368
370 return Val.getNode();
371 }
372};
373
374/// These are IR-level optimization flags that may be propagated to SDNodes.
375/// TODO: This data structure should be shared by the IR optimizer and the
376/// the backend.
378private:
379 friend class SDNode;
380
381 unsigned Flags = 0;
382
383 template <unsigned Flag> void setFlag(bool B) {
384 Flags = (Flags & ~Flag) | (B ? Flag : 0);
385 }
386
387public:
388 enum : unsigned {
389 None = 0,
391 NoSignedWrap = 1 << 1,
393 Exact = 1 << 2,
394 Disjoint = 1 << 3,
395 NonNeg = 1 << 4,
396 NoNaNs = 1 << 5,
397 NoInfs = 1 << 6,
403
404 // We assume instructions do not raise floating-point exceptions by default,
405 // and only those marked explicitly may do so. We could choose to represent
406 // this via a positive "FPExcept" flags like on the MI level, but having a
407 // negative "NoFPExcept" flag here makes the flag intersection logic more
408 // straightforward.
409 NoFPExcept = 1 << 12,
410 // Instructions with attached 'unpredictable' metadata on IR level.
411 Unpredictable = 1 << 13,
412 // Compare instructions which may carry the samesign flag.
413 SameSign = 1 << 14,
414 // ISD::PTRADD operations that remain in bounds, i.e., the left operand is
415 // an address in a memory object in which the result of the operation also
416 // lies. WARNING: Since SDAG generally uses integers instead of pointer
417 // types, a PTRADD's pointer operand is effectively the result of an
418 // implicit inttoptr cast. Therefore, when an inbounds PTRADD uses a
419 // pointer P, transformations cannot assume that P has the provenance
420 // implied by its producer as, e.g, operations between producer and PTRADD
421 // that affect the provenance may have been optimized away.
422 InBounds = 1 << 15,
423
424 // Call does not require convergence guarantees.
425 NoConvergent = 1 << 16,
426
427 // ISD::ADDRSPACECAST where the source is known not to be the null value of
428 // the source address space, so the result is poison if the source is null.
429 NonNull = 1 << 17,
430
431 // NOTE: Please update LargestValue in LLVM_DECLARE_ENUM_AS_BITMASK below
432 // the class definition when adding new flags.
433
438 };
439
440 /// Default constructor turns off all optimization flags.
441 SDNodeFlags(unsigned Flags = SDNodeFlags::None) : Flags(Flags) {}
442
443 /// Propagate the fast-math-flags from an IR FPMathOperator.
453
454 // These are mutators for each flag.
455 void setNoUnsignedWrap(bool b) { setFlag<NoUnsignedWrap>(b); }
456 void setNoSignedWrap(bool b) { setFlag<NoSignedWrap>(b); }
457 void setExact(bool b) { setFlag<Exact>(b); }
458 void setDisjoint(bool b) { setFlag<Disjoint>(b); }
459 void setSameSign(bool b) { setFlag<SameSign>(b); }
460 void setNonNeg(bool b) { setFlag<NonNeg>(b); }
461 void setNoNaNs(bool b) { setFlag<NoNaNs>(b); }
462 void setNoInfs(bool b) { setFlag<NoInfs>(b); }
463 void setNoSignedZeros(bool b) { setFlag<NoSignedZeros>(b); }
464 void setAllowReciprocal(bool b) { setFlag<AllowReciprocal>(b); }
465 void setAllowContract(bool b) { setFlag<AllowContract>(b); }
466 void setApproximateFuncs(bool b) { setFlag<ApproximateFuncs>(b); }
467 void setAllowReassociation(bool b) { setFlag<AllowReassociation>(b); }
468 void setNoFPExcept(bool b) { setFlag<NoFPExcept>(b); }
469 void setUnpredictable(bool b) { setFlag<Unpredictable>(b); }
470 void setInBounds(bool b) { setFlag<InBounds>(b); }
471 void setNoConvergent(bool b) { setFlag<NoConvergent>(b); }
472 void setNonNull(bool b) { setFlag<NonNull>(b); }
473
474 // These are accessors for each flag.
475 bool hasNoUnsignedWrap() const { return Flags & NoUnsignedWrap; }
476 bool hasNoSignedWrap() const { return Flags & NoSignedWrap; }
477 bool hasExact() const { return Flags & Exact; }
478 bool hasDisjoint() const { return Flags & Disjoint; }
479 bool hasSameSign() const { return Flags & SameSign; }
480 bool hasNonNeg() const { return Flags & NonNeg; }
481 bool hasNoNaNs() const { return Flags & NoNaNs; }
482 bool hasNoInfs() const { return Flags & NoInfs; }
483 bool hasNoSignedZeros() const { return Flags & NoSignedZeros; }
484 bool hasAllowReciprocal() const { return Flags & AllowReciprocal; }
485 bool hasAllowContract() const { return Flags & AllowContract; }
486 bool hasApproximateFuncs() const { return Flags & ApproximateFuncs; }
487 bool hasAllowReassociation() const { return Flags & AllowReassociation; }
488 bool hasNoFPExcept() const { return Flags & NoFPExcept; }
489 bool hasUnpredictable() const { return Flags & Unpredictable; }
490 bool hasInBounds() const { return Flags & InBounds; }
491 bool hasNoConvergent() const { return Flags & NoConvergent; }
492 bool hasNonNull() const { return Flags & NonNull; }
493
494 bool operator==(const SDNodeFlags &Other) const {
495 return Flags == Other.Flags;
496 }
497 void operator&=(const SDNodeFlags &OtherFlags) { Flags &= OtherFlags.Flags; }
498 void operator|=(const SDNodeFlags &OtherFlags) { Flags |= OtherFlags.Flags; }
499};
500
502
504 LHS |= RHS;
505 return LHS;
506}
507
509 LHS &= RHS;
510 return LHS;
511}
512
513/// Represents one node in the SelectionDAG.
514///
515class SDNode : public FoldingSetNode, public ilist_node<SDNode> {
516private:
517 /// The operation that this node performs.
518 int32_t NodeType;
519
520 SDNodeFlags Flags;
521
522protected:
523 // We define a set of mini-helper classes to help us interpret the bits in our
524 // SubclassData. These are designed to fit within a uint16_t so they pack
525 // with SDNodeFlags.
526
527#if defined(_AIX) && (!defined(__GNUC__) || defined(__clang__))
528// Except for GCC; by default, AIX compilers store bit-fields in 4-byte words
529// and give the `pack` pragma push semantics.
530#define BEGIN_TWO_BYTE_PACK() _Pragma("pack(2)")
531#define END_TWO_BYTE_PACK() _Pragma("pack(pop)")
532#else
533#define BEGIN_TWO_BYTE_PACK()
534#define END_TWO_BYTE_PACK()
535#endif
536
539 friend class SDNode;
540 friend class MemIntrinsicSDNode;
541 friend class MemSDNode;
542 friend class SelectionDAG;
543
544 uint16_t HasDebugValue : 1;
545 uint16_t IsMemIntrinsic : 1;
546 uint16_t IsDivergent : 1;
547 };
548 enum { NumSDNodeBits = 3 };
549
551 friend class ConstantSDNode;
552
554
555 uint16_t IsOpaque : 1;
556 };
557
559 friend class MemSDNode;
560 friend class MemIntrinsicSDNode;
561 friend class AtomicSDNode;
562
564
565 uint16_t IsVolatile : 1;
566 uint16_t IsNonTemporal : 1;
567 uint16_t IsDereferenceable : 1;
568 uint16_t IsInvariant : 1;
569 };
571
573 friend class LSBaseSDNode;
579
581
582 // This storage is shared between disparate class hierarchies to hold an
583 // enumeration specific to the class hierarchy in use.
584 // LSBaseSDNode => enum ISD::MemIndexedMode
585 // VPLoadStoreBaseSDNode => enum ISD::MemIndexedMode
586 // MaskedLoadStoreBaseSDNode => enum ISD::MemIndexedMode
587 // VPGatherScatterSDNode => enum ISD::MemIndexType
588 // MaskedGatherScatterSDNode => enum ISD::MemIndexType
589 // MaskedHistogramSDNode => enum ISD::MemIndexType
590 uint16_t AddressingMode : 3;
591 };
593
595 friend class LoadSDNode;
596 friend class AtomicSDNode;
597 friend class VPLoadSDNode;
599 friend class MaskedLoadSDNode;
600 friend class MaskedGatherSDNode;
601 friend class VPGatherSDNode;
603
605
606 uint16_t ExtTy : 2; // enum ISD::LoadExtType
607 uint16_t IsExpanding : 1;
608 };
609
611 friend class StoreSDNode;
612 friend class VPStoreSDNode;
614 friend class MaskedStoreSDNode;
616 friend class VPScatterSDNode;
617
619
620 uint16_t IsTruncating : 1;
621 uint16_t IsCompressing : 1;
622 };
623
624 union {
625 char RawSDNodeBits[sizeof(uint16_t)];
632 };
634#undef BEGIN_TWO_BYTE_PACK
635#undef END_TWO_BYTE_PACK
636
637 // RawSDNodeBits must cover the entirety of the union. This means that all of
638 // the union's members must have size <= RawSDNodeBits. We write the RHS as
639 // "2" instead of sizeof(RawSDNodeBits) because MSVC can't handle the latter.
640 static_assert(sizeof(SDNodeBitfields) <= 2, "field too wide");
641 static_assert(sizeof(ConstantSDNodeBitfields) <= 2, "field too wide");
642 static_assert(sizeof(MemSDNodeBitfields) <= 2, "field too wide");
643 static_assert(sizeof(LSBaseSDNodeBitfields) <= 2, "field too wide");
644 static_assert(sizeof(LoadSDNodeBitfields) <= 2, "field too wide");
645 static_assert(sizeof(StoreSDNodeBitfields) <= 2, "field too wide");
646
647public:
648 /// Unique and persistent id per SDNode in the DAG. Used for debug printing.
649 /// We do not place that under `#if LLVM_ENABLE_ABI_BREAKING_CHECKS`
650 /// intentionally because it adds unneeded complexity without noticeable
651 /// benefits (see discussion with @thakis in D120714). Currently, there are
652 /// two padding bytes after this field.
654
655private:
656 friend class SelectionDAG;
657 // TODO: unfriend HandleSDNode once we fix its operand handling.
658 friend class HandleSDNode;
659
660 /// Unique id per SDNode in the DAG.
661 int NodeId = -1;
662
663 /// The values that are used by this operation.
664 SDUse *OperandList = nullptr;
665
666 /// The types of the values this node defines. SDNode's may
667 /// define multiple values simultaneously.
668 const EVT *ValueList;
669
670 /// List of uses for this SDNode.
671 SDUse *UseList = nullptr;
672
673 /// The number of entries in the Operand/Value list.
674 unsigned short NumOperands = 0;
675 unsigned short NumValues;
676
677 // The ordering of the SDNodes. It roughly corresponds to the ordering of the
678 // original LLVM instructions.
679 // This is used for turning off scheduling, because we'll forgo
680 // the normal scheduling algorithms and output the instructions according to
681 // this ordering.
682 unsigned IROrder;
683
684 /// Source line information.
685 DebugLoc debugLoc;
686
687 /// Return a pointer to the specified value type.
688 LLVM_ABI static const EVT *getValueTypeList(MVT VT);
689
690 union {
691 /// Index in worklist of DAGCombiner, or negative if the node is not in the
692 /// worklist. -1 = not in worklist; -2 = not in worklist, but has already
693 /// been combined at least once.
695 /// Visited state in ScheduleDAGSDNodes::BuildSchedUnits.
697 };
698
699 uint32_t CFIType = 0;
700
701public:
702 //===--------------------------------------------------------------------===//
703 // Accessors
704 //
705
706 /// Return the SelectionDAG opcode value for this node. For
707 /// pre-isel nodes (those for which isMachineOpcode returns false), these
708 /// are the opcode values in the ISD and <target>ISD namespaces. For
709 /// post-isel opcodes, see getMachineOpcode.
710 unsigned getOpcode() const { return (unsigned)NodeType; }
711
712 /// Test if this node has a target-specific opcode (in the
713 /// <target>ISD namespace).
714 bool isTargetOpcode() const { return NodeType >= ISD::BUILTIN_OP_END; }
715
716 /// Returns true if the node type is UNDEF or POISON.
717 bool isUndef() const {
718 return NodeType == ISD::UNDEF || NodeType == ISD::POISON;
719 }
720
721 /// Returns true if the node type is ADD or PTRADD.
722 bool isAnyAdd() const {
723 return NodeType == ISD::ADD || NodeType == ISD::PTRADD;
724 }
725
726 /// Test if this node is a memory intrinsic (with valid pointer information).
727 bool isMemIntrinsic() const { return SDNodeBits.IsMemIntrinsic; }
728
729 /// Test if this node is a strict floating point pseudo-op.
731 switch (NodeType) {
732 default:
733 return false;
738#define DAG_INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC, DAGN) \
739 case ISD::STRICT_##DAGN:
740#include "llvm/IR/ConstrainedOps.def"
741 return true;
742 }
743 }
744
745 /// Test if this node is an assert operation.
746 bool isAssert() const {
747 switch (NodeType) {
748 default:
749 return false;
750 case ISD::AssertAlign:
752 case ISD::AssertSext:
753 case ISD::AssertZext:
754 return true;
755 }
756 }
757
758 /// Test if this node is a vector predication operation.
759 bool isVPOpcode() const { return ISD::isVPOpcode(getOpcode()); }
760
761 /// Test if this node has a post-isel opcode, directly
762 /// corresponding to a MachineInstr opcode.
763 bool isMachineOpcode() const { return NodeType < 0; }
764
765 /// As above, for an opcode not held by a node.
766 static bool isMachineOpcode(unsigned Opc) {
767 return static_cast<int32_t>(Opc) < 0;
768 }
769
770 /// This may only be called if isMachineOpcode returns
771 /// true. It returns the MachineInstr opcode value that the node's opcode
772 /// corresponds to.
773 unsigned getMachineOpcode() const {
774 assert(isMachineOpcode() && "Not a MachineInstr opcode!");
775 return ~NodeType;
776 }
777
778 bool getHasDebugValue() const { return SDNodeBits.HasDebugValue; }
779 void setHasDebugValue(bool b) { SDNodeBits.HasDebugValue = b; }
780
781 bool isDivergent() const { return SDNodeBits.IsDivergent; }
782
783 /// Return true if there are no uses of this node.
784 bool use_empty() const { return UseList == nullptr; }
785
786 /// Return true if there is exactly one use of this node.
787 bool hasOneUse() const { return hasSingleElement(uses()); }
788
789 /// Return the number of uses of this node. This method takes
790 /// time proportional to the number of uses.
791 size_t use_size() const { return std::distance(use_begin(), use_end()); }
792
793 /// Return the unique node id.
794 int getNodeId() const { return NodeId; }
795
796 /// Set unique node id.
797 void setNodeId(int Id) { NodeId = Id; }
798
799 /// Get worklist index for DAGCombiner
801
802 /// Set worklist index for DAGCombiner
804
805 /// Get visited state for ScheduleDAGSDNodes::BuildSchedUnits.
807
808 /// Set visited state for ScheduleDAGSDNodes::BuildSchedUnits.
809 void setSchedulerWorklistVisited(bool Visited) {
810 SchedulerWorklistVisited = Visited;
811 }
812
813 /// Return the node ordering.
814 unsigned getIROrder() const { return IROrder; }
815
816 /// Set the node ordering.
817 void setIROrder(unsigned Order) { IROrder = Order; }
818
819 /// Return the source location info.
820 const DebugLoc &getDebugLoc() const { return debugLoc; }
821
822 /// Set source location info. Try to avoid this, putting
823 /// it in the constructor is preferable.
824 void setDebugLoc(DebugLoc dl) { debugLoc = std::move(dl); }
825
826 /// This class provides iterator support for SDUse
827 /// operands that use a specific SDNode.
828 class use_iterator {
829 friend class SDNode;
830
831 SDUse *Op = nullptr;
832
833 explicit use_iterator(SDUse *op) : Op(op) {}
834
835 public:
836 using iterator_category = std::forward_iterator_tag;
838 using difference_type = std::ptrdiff_t;
841
842 use_iterator() = default;
843 use_iterator(const use_iterator &I) = default;
844 use_iterator &operator=(const use_iterator &) = default;
845
846 bool operator==(const use_iterator &x) const { return Op == x.Op; }
847 bool operator!=(const use_iterator &x) const {
848 return !operator==(x);
849 }
850
851 // Iterator traversal: forward iteration only.
852 use_iterator &operator++() { // Preincrement
853 assert(Op && "Cannot increment end iterator!");
854 Op = Op->getNext();
855 return *this;
856 }
857
858 use_iterator operator++(int) { // Postincrement
859 use_iterator tmp = *this; ++*this; return tmp;
860 }
861
862 /// Retrieve a pointer to the current user node.
863 SDUse &operator*() const {
864 assert(Op && "Cannot dereference end iterator!");
865 return *Op;
866 }
867
868 SDUse *operator->() const { return &operator*(); }
869 };
870
871 class user_iterator {
872 friend class SDNode;
873 use_iterator UI;
874
875 explicit user_iterator(SDUse *op) : UI(op) {};
876
877 public:
878 using iterator_category = std::forward_iterator_tag;
880 using difference_type = std::ptrdiff_t;
883
884 user_iterator() = default;
885
886 bool operator==(const user_iterator &x) const { return UI == x.UI; }
887 bool operator!=(const user_iterator &x) const { return !operator==(x); }
888
889 user_iterator &operator++() { // Preincrement
890 ++UI;
891 return *this;
892 }
893
894 user_iterator operator++(int) { // Postincrement
895 auto tmp = *this;
896 ++*this;
897 return tmp;
898 }
899
900 // Retrieve a pointer to the current User.
901 SDNode *operator*() const { return UI->getUser(); }
902
903 SDNode *operator->() const { return operator*(); }
904
905 SDUse &getUse() const { return *UI; }
906 };
907
908 /// Provide iteration support to walk over all uses of an SDNode.
910 return use_iterator(UseList);
911 }
912
913 static use_iterator use_end() { return use_iterator(nullptr); }
914
919 return make_range(use_begin(), use_end());
920 }
921
922 /// Provide iteration support to walk over all users of an SDNode.
923 user_iterator user_begin() const { return user_iterator(UseList); }
924
925 static user_iterator user_end() { return user_iterator(nullptr); }
926
931 return make_range(user_begin(), user_end());
932 }
933
934 /// Return true if there are exactly NUSES uses of the indicated value.
935 /// This method ignores uses of other values defined by this operation.
936 bool hasNUsesOfValue(unsigned NUses, unsigned Value) const {
937 assert(Value < getNumValues() && "Bad value!");
938
939 // TODO: Only iterate over uses of a given value of the node
940 for (SDUse &U : uses()) {
941 if (U.getResNo() == Value) {
942 if (NUses == 0)
943 return false;
944 --NUses;
945 }
946 }
947
948 // Found exactly the right number of uses?
949 return NUses == 0;
950 }
951
952 /// Return true if there are any use of the indicated value.
953 /// This method ignores uses of other values defined by this operation.
954 LLVM_ABI bool hasAnyUseOfValue(unsigned Value) const;
955
956 /// Return true if this node is the only use of N.
957 LLVM_ABI bool isOnlyUserOf(const SDNode *N) const;
958
959 /// Return true if this node is an operand of N.
960 LLVM_ABI bool isOperandOf(const SDNode *N) const;
961
962 /// Return true if this node is a predecessor of N.
963 /// NOTE: Implemented on top of hasPredecessor and every bit as
964 /// expensive. Use carefully.
965 bool isPredecessorOf(const SDNode *N) const {
966 return N->hasPredecessor(this);
967 }
968
969 /// Return true if N is a predecessor of this node.
970 /// N is either an operand of this node, or can be reached by recursively
971 /// traversing up the operands.
972 /// NOTE: This is an expensive method. Use it carefully.
973 LLVM_ABI bool hasPredecessor(const SDNode *N) const;
974
975 /// Returns true if N is a predecessor of any node in Worklist. This
976 /// helper keeps Visited and Worklist sets externally to allow unions
977 /// searches to be performed in parallel, caching of results across
978 /// queries and incremental addition to Worklist. Stops early if N is
979 /// found but will resume. Remember to clear Visited and Worklists
980 /// if DAG changes. MaxSteps gives a maximum number of nodes to visit before
981 /// giving up. The TopologicalPrune flag signals that positive NodeIds are
982 /// topologically ordered (Operands have strictly smaller node id) and search
983 /// can be pruned leveraging this.
984 static bool hasPredecessorHelper(const SDNode *N,
987 unsigned int MaxSteps = 0,
988 bool TopologicalPrune = false) {
989 if (Visited.count(N))
990 return true;
991
992 SmallVector<const SDNode *, 8> DeferredNodes;
993 // Node Id's are assigned in three places: As a topological
994 // ordering (> 0), during legalization (results in values set to
995 // 0), new nodes (set to -1). If N has a topolgical id then we
996 // know that all nodes with ids smaller than it cannot be
997 // successors and we need not check them. Filter out all node
998 // that can't be matches. We add them to the worklist before exit
999 // in case of multiple calls. Note that during selection the topological id
1000 // may be violated if a node's predecessor is selected before it. We mark
1001 // this at selection negating the id of unselected successors and
1002 // restricting topological pruning to positive ids.
1003
1004 int NId = N->getNodeId();
1005 // If we Invalidated the Id, reconstruct original NId.
1006 if (NId < -1)
1007 NId = -(NId + 1);
1008
1009 bool Found = false;
1010 while (!Worklist.empty()) {
1011 const SDNode *M = Worklist.pop_back_val();
1012 int MId = M->getNodeId();
1013 if (TopologicalPrune && M->getOpcode() != ISD::TokenFactor && (NId > 0) &&
1014 (MId > 0) && (MId < NId)) {
1015 DeferredNodes.push_back(M);
1016 continue;
1017 }
1018 for (const SDValue &OpV : M->op_values()) {
1019 SDNode *Op = OpV.getNode();
1020 if (Visited.insert(Op).second)
1021 Worklist.push_back(Op);
1022 if (Op == N)
1023 Found = true;
1024 }
1025 if (Found)
1026 break;
1027 if (MaxSteps != 0 && Visited.size() >= MaxSteps)
1028 break;
1029 }
1030 // Push deferred nodes back on worklist.
1031 Worklist.append(DeferredNodes.begin(), DeferredNodes.end());
1032 // If we bailed early, conservatively return found.
1033 if (MaxSteps != 0 && Visited.size() >= MaxSteps)
1034 return true;
1035 return Found;
1036 }
1037
1038 /// Return true if all the users of N are contained in Nodes.
1039 /// NOTE: Requires at least one match, but doesn't require them all.
1041 const SDNode *N);
1042
1043 /// Return the number of values used by this operation.
1044 unsigned getNumOperands() const { return NumOperands; }
1045
1046 /// Return the maximum number of operands that a SDNode can hold.
1047 static constexpr size_t getMaxNumOperands() {
1048 return std::numeric_limits<decltype(SDNode::NumOperands)>::max();
1049 }
1050
1051 /// Helper method returns the integer value of a ConstantSDNode operand.
1052 inline uint64_t getConstantOperandVal(unsigned Num) const;
1053
1054 /// Helper method returns the zero-extended integer value of a ConstantSDNode.
1055 inline uint64_t getAsZExtVal() const;
1056
1057 /// Helper method returns the APInt of a ConstantSDNode operand.
1058 inline const APInt &getConstantOperandAPInt(unsigned Num) const;
1059
1060 /// Helper method returns the APInt value of a ConstantSDNode.
1061 inline const APInt &getAsAPIntVal() const;
1062
1063 inline std::optional<APInt> bitcastToAPInt() const;
1064
1065 const SDValue &getOperand(unsigned Num) const {
1066 assert(Num < NumOperands && "Invalid child # of SDNode!");
1067 return OperandList[Num];
1068 }
1069
1071
1072 op_iterator op_begin() const { return OperandList; }
1073 op_iterator op_end() const { return OperandList+NumOperands; }
1074 ArrayRef<SDUse> ops() const { return ArrayRef(op_begin(), op_end()); }
1075
1076 /// Iterator for directly iterating over the operand SDValue's.
1078 : iterator_adaptor_base<value_op_iterator, op_iterator,
1079 std::random_access_iterator_tag, SDValue,
1080 ptrdiff_t, value_op_iterator *,
1081 value_op_iterator *> {
1082 explicit value_op_iterator(SDUse *U = nullptr)
1083 : iterator_adaptor_base(U) {}
1084
1085 const SDValue &operator*() const { return I->get(); }
1086 };
1087
1092
1094 SDVTList X = { ValueList, NumValues };
1095 return X;
1096 }
1097
1098 /// If this node has a glue operand, return the node
1099 /// to which the glue operand points. Otherwise return NULL.
1101 if (getNumOperands() != 0 &&
1102 getOperand(getNumOperands()-1).getValueType() == MVT::Glue)
1103 return getOperand(getNumOperands()-1).getNode();
1104 return nullptr;
1105 }
1106
1107 /// If this node has a glue value with a user, return
1108 /// the user (there is at most one). Otherwise return NULL.
1110 for (SDUse &U : uses())
1111 if (U.getValueType() == MVT::Glue)
1112 return U.getUser();
1113 return nullptr;
1114 }
1115
1116 SDNodeFlags getFlags() const { return Flags; }
1117 void setFlags(SDNodeFlags NewFlags) { Flags = NewFlags; }
1118 void dropFlags(unsigned Mask) { Flags &= ~Mask; }
1119
1120 /// Clear any flags in this node that aren't also set in Flags.
1121 /// If Flags is not in a defined state then this has no effect.
1122 LLVM_ABI void intersectFlagsWith(const SDNodeFlags Flags);
1123
1125 return Flags.Flags & SDNodeFlags::PoisonGeneratingFlags;
1126 }
1127
1128 void setCFIType(uint32_t Type) { CFIType = Type; }
1129 uint32_t getCFIType() const { return CFIType; }
1130
1131 /// Return the number of values defined/returned by this operator.
1132 unsigned getNumValues() const { return NumValues; }
1133
1134 /// Return the type of a specified result.
1135 EVT getValueType(unsigned ResNo) const {
1136 assert(ResNo < NumValues && "Illegal result number!");
1137 return ValueList[ResNo];
1138 }
1139
1140 /// Return the type of a specified result as a simple type.
1141 MVT getSimpleValueType(unsigned ResNo) const {
1142 return getValueType(ResNo).getSimpleVT();
1143 }
1144
1145 /// Returns MVT::getSizeInBits(getValueType(ResNo)).
1146 ///
1147 /// If the value type is a scalable vector type, the scalable property will
1148 /// be set and the runtime size will be a positive integer multiple of the
1149 /// base size.
1150 TypeSize getValueSizeInBits(unsigned ResNo) const {
1151 return getValueType(ResNo).getSizeInBits();
1152 }
1153
1154 using value_iterator = const EVT *;
1155
1156 value_iterator value_begin() const { return ValueList; }
1157 value_iterator value_end() const { return ValueList+NumValues; }
1161
1162 /// Return the opcode of this operation for printing.
1163 LLVM_ABI std::string getOperationName(const SelectionDAG *G = nullptr) const;
1164 LLVM_ABI static const char *getIndexedModeName(ISD::MemIndexedMode AM);
1165 LLVM_ABI void print_types(raw_ostream &OS, const SelectionDAG *G) const;
1166 LLVM_ABI void print_details(raw_ostream &OS, const SelectionDAG *G) const;
1167 LLVM_ABI void print(raw_ostream &OS, const SelectionDAG *G = nullptr) const;
1168 LLVM_ABI void printr(raw_ostream &OS, const SelectionDAG *G = nullptr) const;
1169
1170 /// Print a SelectionDAG node and all children down to
1171 /// the leaves. The given SelectionDAG allows target-specific nodes
1172 /// to be printed in human-readable form. Unlike printr, this will
1173 /// print the whole DAG, including children that appear multiple
1174 /// times.
1175 ///
1177 const SelectionDAG *G = nullptr) const;
1178
1179 /// Print a SelectionDAG node and children up to
1180 /// depth "depth." The given SelectionDAG allows target-specific
1181 /// nodes to be printed in human-readable form. Unlike printr, this
1182 /// will print children that appear multiple times wherever they are
1183 /// used.
1184 ///
1185 LLVM_ABI void printrWithDepth(raw_ostream &O, const SelectionDAG *G = nullptr,
1186 unsigned depth = 100) const;
1187
1188 /// Dump this node, for debugging.
1189 LLVM_ABI void dump() const;
1190
1191 /// Dump (recursively) this node and its use-def subgraph.
1192 LLVM_ABI void dumpr() const;
1193
1194 /// Dump this node, for debugging.
1195 /// The given SelectionDAG allows target-specific nodes to be printed
1196 /// in human-readable form.
1197 LLVM_ABI void dump(const SelectionDAG *G) const;
1198
1199 /// Dump (recursively) this node and its use-def subgraph.
1200 /// The given SelectionDAG allows target-specific nodes to be printed
1201 /// in human-readable form.
1202 LLVM_ABI void dumpr(const SelectionDAG *G) const;
1203
1204 /// printrFull to dbgs(). The given SelectionDAG allows
1205 /// target-specific nodes to be printed in human-readable form.
1206 /// Unlike dumpr, this will print the whole DAG, including children
1207 /// that appear multiple times.
1208 LLVM_ABI void dumprFull(const SelectionDAG *G = nullptr) const;
1209
1210 /// printrWithDepth to dbgs(). The given
1211 /// SelectionDAG allows target-specific nodes to be printed in
1212 /// human-readable form. Unlike dumpr, this will print children
1213 /// that appear multiple times wherever they are used.
1214 ///
1215 LLVM_ABI void dumprWithDepth(const SelectionDAG *G = nullptr,
1216 unsigned depth = 100) const;
1217
1218 /// This method should only be used by the SDUse class.
1219 void addUse(SDUse &U) { U.addToList(&UseList); }
1220
1221protected:
1223 SDVTList Ret = { getValueTypeList(VT), 1 };
1224 return Ret;
1225 }
1226
1227 /// Create an SDNode.
1228 ///
1229 /// SDNodes are created without any operands, and never own the operand
1230 /// storage. To add operands, see SelectionDAG::createOperands.
1231 SDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs)
1232 : NodeType(Opc), ValueList(VTs.VTs), NumValues(VTs.NumVTs),
1233 IROrder(Order), debugLoc(std::move(dl)) {
1234 memset(&RawSDNodeBits, 0, sizeof(RawSDNodeBits));
1235 assert(NumValues == VTs.NumVTs &&
1236 "NumValues wasn't wide enough for its operands!");
1237 }
1238
1239 /// Release the operands and set this node to have zero operands.
1240 LLVM_ABI void DropOperands();
1241};
1242
1243/// Wrapper class for IR location info (IR ordering and DebugLoc) to be passed
1244/// into SDNode creation functions.
1245/// When an SDNode is created from the DAGBuilder, the DebugLoc is extracted
1246/// from the original Instruction, and IROrder is the ordinal position of
1247/// the instruction.
1248/// When an SDNode is created after the DAG is being built, both DebugLoc and
1249/// the IROrder are propagated from the original SDNode.
1250/// So SDLoc class provides two constructors besides the default one, one to
1251/// be used by the DAGBuilder, the other to be used by others.
1252class SDLoc {
1253private:
1254 DebugLoc DL;
1255 int IROrder = 0;
1256
1257public:
1258 SDLoc() = default;
1259 SDLoc(const SDNode *N) : DL(N->getDebugLoc()), IROrder(N->getIROrder()) {}
1260 SDLoc(const SDValue V) : SDLoc(V.getNode()) {}
1261 SDLoc(const Instruction *I, int Order) : IROrder(Order) {
1262 assert(Order >= 0 && "bad IROrder");
1263 if (I)
1264 DL = I->getDebugLoc();
1265 }
1266
1267 unsigned getIROrder() const { return IROrder; }
1268 const DebugLoc &getDebugLoc() const { return DL; }
1269};
1270
1271// Define inline functions from the SDValue class.
1272
1273inline SDValue::SDValue(SDNode *node, unsigned resno)
1274 : Node(node), ResNo(resno) {
1275 // Explicitly check for !ResNo to avoid use-after-free, because there are
1276 // callers that use SDValue(N, 0) with a deleted N to indicate successful
1277 // combines.
1278 assert((!Node || !ResNo || ResNo < Node->getNumValues()) &&
1279 "Invalid result number for the given node!");
1280 assert(ResNo < -2U && "Cannot use result numbers reserved for DenseMaps.");
1281}
1282
1283inline unsigned SDValue::getOpcode() const {
1284 return Node->getOpcode();
1285}
1286
1288 return Node->getValueType(ResNo);
1289}
1290
1291inline unsigned SDValue::getNumOperands() const {
1292 return Node->getNumOperands();
1293}
1294
1295inline const SDValue &SDValue::getOperand(unsigned i) const {
1296 return Node->getOperand(i);
1297}
1298
1300 return Node->getConstantOperandVal(i);
1301}
1302
1303inline const APInt &SDValue::getConstantOperandAPInt(unsigned i) const {
1304 return Node->getConstantOperandAPInt(i);
1305}
1306
1307inline bool SDValue::isTargetOpcode() const {
1308 return Node->isTargetOpcode();
1309}
1310
1311inline bool SDValue::isMachineOpcode() const {
1312 return Node->isMachineOpcode();
1313}
1314
1315inline unsigned SDValue::getMachineOpcode() const {
1316 return Node->getMachineOpcode();
1317}
1318
1319inline bool SDValue::isUndef() const {
1320 return Node->isUndef();
1321}
1322
1323inline bool SDValue::isAnyAdd() const { return Node->isAnyAdd(); }
1324
1325inline bool SDValue::use_empty() const {
1326 return !Node->hasAnyUseOfValue(ResNo);
1327}
1328
1329inline bool SDValue::hasOneUse() const {
1330 return Node->hasNUsesOfValue(1, ResNo);
1331}
1332
1333inline bool SDValue::hasOneUser() const {
1334 auto Uses = make_filter_range(Node->uses(),
1335 [this](SDUse &U) { return U.get() == *this; });
1336 auto Users = map_range(Uses, [](SDUse &U) { return U.getUser(); });
1337 return all_equal(Users);
1338}
1339
1340inline const DebugLoc &SDValue::getDebugLoc() const {
1341 return Node->getDebugLoc();
1342}
1343
1344inline void SDValue::dump() const {
1345 return Node->dump();
1346}
1347
1348inline void SDValue::dump(const SelectionDAG *G) const {
1349 return Node->dump(G);
1350}
1351
1352inline void SDValue::dumpr() const {
1353 return Node->dumpr();
1354}
1355
1356inline void SDValue::dumpr(const SelectionDAG *G) const {
1357 return Node->dumpr(G);
1358}
1359
1360// Define inline functions from the SDUse class.
1361inline unsigned SDUse::getOperandNo() const {
1362 return this - getUser()->op_begin();
1363}
1364
1365inline void SDUse::set(const SDValue &V) {
1366 if (Val.getNode()) removeFromList();
1367 Val = V;
1368 if (V.getNode())
1369 V->addUse(*this);
1370}
1371
1372inline void SDUse::setInitial(const SDValue &V) {
1373 Val = V;
1374 V->addUse(*this);
1375}
1376
1377inline void SDUse::setNode(SDNode *N) {
1378 if (Val.getNode()) removeFromList();
1379 Val.setNode(N);
1380 if (N) N->addUse(*this);
1381}
1382
1383/// This class is used to form a handle around another node that
1384/// is persistent and is updated across invocations of replaceAllUsesWith on its
1385/// operand. This node should be directly created by end-users and not added to
1386/// the AllNodes list.
1387class HandleSDNode : public SDNode {
1388 SDUse Op;
1389
1390public:
1392 : SDNode(ISD::HANDLENODE, 0, DebugLoc(), getSDVTList(MVT::Other)) {
1393 // HandleSDNodes are never inserted into the DAG, so they won't be
1394 // auto-numbered. Use ID 65535 as a sentinel.
1395 PersistentId = 0xffff;
1396
1397 // Manually set up the operand list. This node type is special in that it's
1398 // always stack allocated and SelectionDAG does not manage its operands.
1399 // TODO: This should either (a) not be in the SDNode hierarchy, or (b) not
1400 // be so special.
1401 Op.setUser(this);
1402 Op.setInitial(X);
1403 NumOperands = 1;
1404 OperandList = &Op;
1405 }
1407
1408 const SDValue &getValue() const { return Op; }
1409};
1410
1412private:
1413 unsigned SrcAddrSpace;
1414 unsigned DestAddrSpace;
1415
1416public:
1417 AddrSpaceCastSDNode(unsigned Order, const DebugLoc &dl, SDVTList VTs,
1418 unsigned SrcAS, unsigned DestAS)
1419 : SDNode(ISD::ADDRSPACECAST, Order, dl, VTs), SrcAddrSpace(SrcAS),
1420 DestAddrSpace(DestAS) {}
1421
1422 unsigned getSrcAddressSpace() const { return SrcAddrSpace; }
1423 unsigned getDestAddressSpace() const { return DestAddrSpace; }
1424
1425 static bool classof(const SDNode *N) {
1426 return N->getOpcode() == ISD::ADDRSPACECAST;
1427 }
1428};
1429
1430/// This is an abstract virtual class for memory operations.
1431class MemSDNode : public SDNode {
1432private:
1433 // VT of in-memory value.
1434 EVT MemoryVT;
1435
1436protected:
1437 /// Memory reference information. Must always have at least one MMO.
1438 /// - MachineMemOperand*: exactly 1 MMO (common case)
1439 /// - MachineMemOperand**: pointer to array, size at offset -1
1441
1442public:
1443 /// Constructor that supports single or multiple MMOs. For single MMO, pass
1444 /// the MMO pointer directly. For multiple MMOs, pre-allocate storage with
1445 /// count at offset -1 and pass pointer to array.
1446 LLVM_ABI
1447 MemSDNode(unsigned Opc, unsigned Order, const DebugLoc &dl, SDVTList VTs,
1448 EVT memvt,
1450
1451 bool readMem() const { return getMemOperand()->isLoad(); }
1452 bool writeMem() const { return getMemOperand()->isStore(); }
1453
1454 /// Returns alignment and volatility of the memory access
1456 Align getAlign() const { return getMemOperand()->getAlign(); }
1457
1458 /// Return the SubclassData value, without HasDebugValue. This contains an
1459 /// encoding of the volatile flag, as well as bits used by subclasses. This
1460 /// function should only be used to compute a FoldingSetNodeID value.
1461 /// The HasDebugValue bit is masked out because CSE map needs to match
1462 /// nodes with debug info with nodes without debug info. Same is about
1463 /// isDivergent bit.
1464 unsigned getRawSubclassData() const {
1465 uint16_t Data;
1466 union {
1467 char RawSDNodeBits[sizeof(uint16_t)];
1469 };
1470 memcpy(&RawSDNodeBits, &this->RawSDNodeBits, sizeof(this->RawSDNodeBits));
1471 SDNodeBits.HasDebugValue = 0;
1472 SDNodeBits.IsDivergent = false;
1473 memcpy(&Data, &RawSDNodeBits, sizeof(RawSDNodeBits));
1474 return Data;
1475 }
1476
1477 bool isVolatile() const { return MemSDNodeBits.IsVolatile; }
1478 bool isNonTemporal() const { return MemSDNodeBits.IsNonTemporal; }
1479 bool isDereferenceable() const { return MemSDNodeBits.IsDereferenceable; }
1480 bool isInvariant() const { return MemSDNodeBits.IsInvariant; }
1481
1482 // Returns the offset from the location of the access.
1483 int64_t getSrcValueOffset() const { return getMemOperand()->getOffset(); }
1484
1485 /// Returns the AA info that describes the dereference.
1487
1488 /// Returns the Ranges that describes the dereference.
1489 const MDNode *getRanges() const { return getMemOperand()->getRanges(); }
1490
1491 /// Returns the cache hint metadata for this memory access.
1492 const MDNode *getMemCacheHint() const {
1493 return getMemOperand()->getMemCacheHint();
1494 }
1495
1496 /// Returns the synchronization scope ID for this memory operation.
1498 return getMemOperand()->getSyncScopeID();
1499 }
1500
1501 /// Return the atomic ordering requirements for this memory operation. For
1502 /// cmpxchg atomic operations, return the atomic ordering requirements when
1503 /// store occurs.
1507
1508 /// Return a single atomic ordering that is at least as strong as both the
1509 /// success and failure orderings for an atomic operation. (For operations
1510 /// other than cmpxchg, this is equivalent to getSuccessOrdering().)
1514
1515 /// Return true if the memory operation ordering is Unordered or higher.
1516 bool isAtomic() const { return getMemOperand()->isAtomic(); }
1517
1518 /// Returns true if the memory operation doesn't imply any ordering
1519 /// constraints on surrounding memory operations beyond the normal memory
1520 /// aliasing rules.
1521 bool isUnordered() const { return getMemOperand()->isUnordered(); }
1522
1523 /// Returns true if the memory operation is neither atomic or volatile.
1524 bool isSimple() const { return !isAtomic() && !isVolatile(); }
1525
1526 /// Return the type of the in-memory value.
1527 EVT getMemoryVT() const { return MemoryVT; }
1528
1529 /// Return the unique MachineMemOperand object describing the memory
1530 /// reference performed by operation.
1531 /// Asserts if multiple MMOs are present - use memoperands() instead.
1534 "Use memoperands() for nodes with multiple memory operands");
1536 }
1537
1538 /// Return the number of memory operands.
1539 size_t getNumMemOperands() const {
1541 return 1;
1543 return reinterpret_cast<size_t *>(Array)[-1];
1544 }
1545
1546 /// Return true if this node has exactly one memory operand.
1548
1549 /// Return the memory operands for this node.
1552 return ArrayRef(MemRefs.getAddrOfPtr1(), 1);
1554 size_t Count = reinterpret_cast<size_t *>(Array)[-1];
1555 return ArrayRef(Array, Count);
1556 }
1557
1559 return getMemOperand()->getPointerInfo();
1560 }
1561
1562 /// Return the address space for the associated pointer
1563 unsigned getAddressSpace() const {
1564 return getPointerInfo().getAddrSpace();
1565 }
1566
1567 /// Update this MemSDNode's MachineMemOperand information
1568 /// to reflect the alignment of NewMMOs, if they have greater alignment.
1569 /// This must only be used when the new alignment applies to all users of
1570 /// these MachineMemOperands. The NewMMOs array must parallel memoperands().
1573 assert(NewMMOs.size() == MMOs.size() && "MMO count mismatch");
1574 for (auto [MMO, NewMMO] : zip(MMOs, NewMMOs))
1575 MMO->refineAlignment(NewMMO);
1576 }
1577
1579 refineAlignment(ArrayRef(NewMMO));
1580 }
1581
1582 /// Refine LLVM IR metadata for all MMOs. The NewMMOs array must parallel
1583 /// memoperands(). For each pair, if metadata differs, the stored metadata is
1584 /// cleared conservatively.
1587 assert(NewMMOs.size() == MMOs.size() && "MMO count mismatch");
1588 for (auto [MMO, NewMMO] : zip(MMOs, NewMMOs)) {
1589 // FIXME: Union the ranges instead?
1590 if (MMO->getRanges() && MMO->getRanges() != NewMMO->getRanges())
1591 MMO->clearRanges();
1592 if (MMO->getMemCacheHint() &&
1593 MMO->getMemCacheHint() != NewMMO->getMemCacheHint())
1594 MMO->clearMemCacheHint();
1595 }
1596 }
1597
1599 refineMMOMetadata(ArrayRef(NewMMO));
1600 }
1601
1602 const SDValue &getChain() const { return getOperand(0); }
1603
1604 const SDValue &getBasePtr() const {
1605 switch (getOpcode()) {
1606 case ISD::STORE:
1607 case ISD::ATOMIC_STORE:
1608 case ISD::VP_STORE:
1609 case ISD::MSTORE:
1610 case ISD::VP_SCATTER:
1611 case ISD::EXPERIMENTAL_VP_STRIDED_STORE:
1612 return getOperand(2);
1613 case ISD::MGATHER:
1614 case ISD::MSCATTER:
1616 return getOperand(3);
1617 default:
1618 return getOperand(1);
1619 }
1620 }
1621
1622 // Methods to support isa and dyn_cast
1623 static bool classof(const SDNode *N) {
1624 // For some targets, we lower some target intrinsics to a MemIntrinsicNode
1625 // with either an intrinsic or a target opcode.
1626 switch (N->getOpcode()) {
1627 case ISD::LOAD:
1628 case ISD::STORE:
1631 case ISD::ATOMIC_SWAP:
1655 case ISD::ATOMIC_LOAD:
1656 case ISD::ATOMIC_STORE:
1657 case ISD::MLOAD:
1658 case ISD::MSTORE:
1659 case ISD::MGATHER:
1660 case ISD::MSCATTER:
1661 case ISD::VP_LOAD:
1662 case ISD::VP_STORE:
1663 case ISD::VP_GATHER:
1664 case ISD::VP_SCATTER:
1665 case ISD::EXPERIMENTAL_VP_STRIDED_LOAD:
1666 case ISD::EXPERIMENTAL_VP_STRIDED_STORE:
1667 case ISD::GET_FPENV_MEM:
1668 case ISD::SET_FPENV_MEM:
1670 return true;
1671 default:
1672 return N->isMemIntrinsic();
1673 }
1674 }
1675};
1676
1677/// This is an SDNode representing atomic operations.
1678class AtomicSDNode : public MemSDNode {
1679public:
1680 AtomicSDNode(unsigned Order, const DebugLoc &dl, unsigned Opc, SDVTList VTL,
1681 EVT MemVT, MachineMemOperand *MMO, ISD::LoadExtType ETy)
1682 : MemSDNode(Opc, Order, dl, VTL, MemVT, MMO) {
1684 MMO->isAtomic()) && "then why are we using an AtomicSDNode?");
1686 "Only atomic load uses ExtTy");
1687 LoadSDNodeBits.ExtTy = ETy;
1688 }
1689
1691 assert(getOpcode() == ISD::ATOMIC_LOAD && "Only used for atomic loads.");
1692 return static_cast<ISD::LoadExtType>(LoadSDNodeBits.ExtTy);
1693 }
1694
1695 const SDValue &getBasePtr() const {
1696 return getOpcode() == ISD::ATOMIC_STORE ? getOperand(2) : getOperand(1);
1697 }
1698 const SDValue &getVal() const {
1699 return getOpcode() == ISD::ATOMIC_STORE ? getOperand(1) : getOperand(2);
1700 }
1701
1702 /// Returns true if this SDNode represents cmpxchg atomic operation, false
1703 /// otherwise.
1704 bool isCompareAndSwap() const {
1705 unsigned Op = getOpcode();
1706 return Op == ISD::ATOMIC_CMP_SWAP ||
1708 }
1709
1710 /// For cmpxchg atomic operations, return the atomic ordering requirements
1711 /// when store does not occur.
1713 assert(isCompareAndSwap() && "Must be cmpxchg operation");
1715 }
1716
1717 // Methods to support isa and dyn_cast
1718 static bool classof(const SDNode *N) {
1719 return N->getOpcode() == ISD::ATOMIC_CMP_SWAP ||
1720 N->getOpcode() == ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS ||
1721 N->getOpcode() == ISD::ATOMIC_SWAP ||
1722 N->getOpcode() == ISD::ATOMIC_LOAD_ADD ||
1723 N->getOpcode() == ISD::ATOMIC_LOAD_SUB ||
1724 N->getOpcode() == ISD::ATOMIC_LOAD_AND ||
1725 N->getOpcode() == ISD::ATOMIC_LOAD_CLR ||
1726 N->getOpcode() == ISD::ATOMIC_LOAD_OR ||
1727 N->getOpcode() == ISD::ATOMIC_LOAD_XOR ||
1728 N->getOpcode() == ISD::ATOMIC_LOAD_NAND ||
1729 N->getOpcode() == ISD::ATOMIC_LOAD_MIN ||
1730 N->getOpcode() == ISD::ATOMIC_LOAD_MAX ||
1731 N->getOpcode() == ISD::ATOMIC_LOAD_UMIN ||
1732 N->getOpcode() == ISD::ATOMIC_LOAD_UMAX ||
1733 N->getOpcode() == ISD::ATOMIC_LOAD_FADD ||
1734 N->getOpcode() == ISD::ATOMIC_LOAD_FSUB ||
1735 N->getOpcode() == ISD::ATOMIC_LOAD_FMAX ||
1736 N->getOpcode() == ISD::ATOMIC_LOAD_FMIN ||
1737 N->getOpcode() == ISD::ATOMIC_LOAD_FMAXIMUM ||
1738 N->getOpcode() == ISD::ATOMIC_LOAD_FMINIMUM ||
1739 N->getOpcode() == ISD::ATOMIC_LOAD_FMAXIMUMNUM ||
1740 N->getOpcode() == ISD::ATOMIC_LOAD_FMINIMUMNUM ||
1741 N->getOpcode() == ISD::ATOMIC_LOAD_UINC_WRAP ||
1742 N->getOpcode() == ISD::ATOMIC_LOAD_UDEC_WRAP ||
1743 N->getOpcode() == ISD::ATOMIC_LOAD_USUB_COND ||
1744 N->getOpcode() == ISD::ATOMIC_LOAD_USUB_SAT ||
1745 N->getOpcode() == ISD::ATOMIC_LOAD ||
1746 N->getOpcode() == ISD::ATOMIC_STORE;
1747 }
1748};
1749
1750/// This SDNode is used for target intrinsics that touch memory and need
1751/// an associated MachineMemOperand. Its opcode may be INTRINSIC_VOID,
1752/// INTRINSIC_W_CHAIN, PREFETCH, or a target-specific memory-referencing
1753/// opcode (see `SelectionDAGTargetInfo::isTargetMemoryOpcode`).
1755public:
1757 unsigned Opc, unsigned Order, const DebugLoc &dl, SDVTList VTs,
1758 EVT MemoryVT,
1760 : MemSDNode(Opc, Order, dl, VTs, MemoryVT, MemRefs) {
1761 SDNodeBits.IsMemIntrinsic = true;
1762 }
1763
1764 // Methods to support isa and dyn_cast
1765 static bool classof(const SDNode *N) {
1766 // We lower some target intrinsics to their target opcode
1767 // early a node with a target opcode can be of this class
1768 return N->isMemIntrinsic();
1769 }
1770};
1771
1772/// This SDNode is used to implement the code generator
1773/// support for the llvm IR shufflevector instruction. It combines elements
1774/// from two input vectors into a new input vector, with the selection and
1775/// ordering of elements determined by an array of integers, referred to as
1776/// the shuffle mask. For input vectors of width N, mask indices of 0..N-1
1777/// refer to elements from the LHS input, and indices from N to 2N-1 the RHS.
1778/// An index of -1 is treated as undef, such that the code generator may put
1779/// any value in the corresponding element of the result.
1781 // The memory for Mask is owned by the SelectionDAG's OperandAllocator, and
1782 // is freed when the SelectionDAG object is destroyed.
1783 const int *Mask;
1784
1785protected:
1786 friend class SelectionDAG;
1787
1788 ShuffleVectorSDNode(SDVTList VTs, unsigned Order, const DebugLoc &dl,
1789 const int *M)
1790 : SDNode(ISD::VECTOR_SHUFFLE, Order, dl, VTs), Mask(M) {}
1791
1792public:
1794 EVT VT = getValueType(0);
1795 return ArrayRef(Mask, VT.getVectorNumElements());
1796 }
1797
1798 int getMaskElt(unsigned Idx) const {
1799 assert(Idx < getValueType(0).getVectorNumElements() && "Idx out of range!");
1800 return Mask[Idx];
1801 }
1802
1803 bool isSplat() const { return isSplatMask(getMask()); }
1804
1805 int getSplatIndex() const { return getSplatMaskIndex(getMask()); }
1806
1807 LLVM_ABI static bool isSplatMask(ArrayRef<int> Mask);
1808
1810 assert(isSplatMask(Mask) && "Cannot get splat index for non-splat!");
1811 for (int Elem : Mask)
1812 if (Elem >= 0)
1813 return Elem;
1814
1815 // We can choose any index value here and be correct because all elements
1816 // are undefined. Return 0 for better potential for callers to simplify.
1817 return 0;
1818 }
1819
1820 /// Change values in a shuffle permute mask assuming
1821 /// the two vector operands have swapped position.
1823 unsigned NumElems = Mask.size();
1824 for (unsigned i = 0; i != NumElems; ++i) {
1825 int idx = Mask[i];
1826 if (idx < 0)
1827 continue;
1828 else if (idx < (int)NumElems)
1829 Mask[i] = idx + NumElems;
1830 else
1831 Mask[i] = idx - NumElems;
1832 }
1833 }
1834
1835 static bool classof(const SDNode *N) {
1836 return N->getOpcode() == ISD::VECTOR_SHUFFLE;
1837 }
1838};
1839
1840class ConstantSDNode : public SDNode {
1841 friend class SelectionDAG;
1842
1843 const ConstantInt *Value;
1844
1845 ConstantSDNode(bool isTarget, bool isOpaque, const ConstantInt *val,
1846 SDVTList VTs)
1847 : SDNode(isTarget ? ISD::TargetConstant : ISD::Constant, 0, DebugLoc(),
1848 VTs),
1849 Value(val) {
1850 assert(!isa<VectorType>(val->getType()) && "Unexpected vector type!");
1851 ConstantSDNodeBits.IsOpaque = isOpaque;
1852 }
1853
1854public:
1855 const ConstantInt *getConstantIntValue() const { return Value; }
1856 const APInt &getAPIntValue() const { return Value->getValue(); }
1857 uint64_t getZExtValue() const { return Value->getZExtValue(); }
1858 int64_t getSExtValue() const { return Value->getSExtValue(); }
1860 return Value->getLimitedValue(Limit);
1861 }
1862 MaybeAlign getMaybeAlignValue() const { return Value->getMaybeAlignValue(); }
1863 Align getAlignValue() const { return Value->getAlignValue(); }
1864
1865 bool isOne() const { return Value->isOne(); }
1866 bool isZero() const { return Value->isZero(); }
1867 bool isAllOnes() const { return Value->isMinusOne(); }
1868 bool isMaxSignedValue() const { return Value->isMaxValue(true); }
1869 bool isMinSignedValue() const { return Value->isMinValue(true); }
1870
1871 bool isOpaque() const { return ConstantSDNodeBits.IsOpaque; }
1872
1873 static bool classof(const SDNode *N) {
1874 return N->getOpcode() == ISD::Constant ||
1875 N->getOpcode() == ISD::TargetConstant;
1876 }
1877};
1878
1880 return cast<ConstantSDNode>(getOperand(Num))->getZExtValue();
1881}
1882
1884 return cast<ConstantSDNode>(this)->getZExtValue();
1885}
1886
1887const APInt &SDNode::getConstantOperandAPInt(unsigned Num) const {
1888 return cast<ConstantSDNode>(getOperand(Num))->getAPIntValue();
1889}
1890
1892 return cast<ConstantSDNode>(this)->getAPIntValue();
1893}
1894
1895class ConstantFPSDNode : public SDNode {
1896 friend class SelectionDAG;
1897
1898 const ConstantFP *Value;
1899
1900 ConstantFPSDNode(bool isTarget, const ConstantFP *val, SDVTList VTs)
1901 : SDNode(isTarget ? ISD::TargetConstantFP : ISD::ConstantFP, 0,
1902 DebugLoc(), VTs),
1903 Value(val) {
1904 assert(!isa<VectorType>(val->getType()) && "Unexpected vector type!");
1905 }
1906
1907public:
1908 const APFloat& getValueAPF() const { return Value->getValueAPF(); }
1909 const ConstantFP *getConstantFPValue() const { return Value; }
1910
1911 /// Return true if the value is positive or negative zero.
1912 bool isZero() const { return Value->isZero(); }
1913
1914 /// Return true if the value is positive zero.
1915 bool isPosZero() const { return Value->isPosZero(); }
1916
1917 /// Return true if the value is negative zero.
1918 bool isNegZero() const { return Value->isNegZero(); }
1919
1920 /// Return true if the value is a NaN.
1921 bool isNaN() const { return Value->isNaN(); }
1922
1923 /// Return true if the value is an infinity
1924 bool isInfinity() const { return Value->isInfinity(); }
1925
1926 /// Return true if the value is negative.
1927 bool isNegative() const { return Value->isNegative(); }
1928
1929 /// Returns true if this value is exactly +1.0.
1930 bool isOne() const { return Value->isOne(); }
1931
1932 /// Returns true if this value is exactly -1.0.
1933 bool isMinusOne() const { return Value->isMinusOne(); }
1934
1935 /// We don't rely on operator== working on double values, as
1936 /// it returns true for things that are clearly not equal, like -0.0 and 0.0.
1937 /// As such, this method can be used to do an exact bit-for-bit comparison of
1938 /// two floating point values.
1939
1940 /// We leave the version with the double argument here because it's just so
1941 /// convenient to write "2.0" and the like. Without this function we'd
1942 /// have to duplicate its logic everywhere it's called.
1943 bool isExactlyValue(double V) const {
1944 return Value->getValueAPF().isExactlyValue(V);
1945 }
1946 LLVM_ABI bool isExactlyValue(const APFloat &V) const;
1947
1948 LLVM_ABI static bool isValueValidForType(EVT VT, const APFloat &Val);
1949
1950 static bool classof(const SDNode *N) {
1951 return N->getOpcode() == ISD::ConstantFP ||
1952 N->getOpcode() == ISD::TargetConstantFP;
1953 }
1954};
1955
1956std::optional<APInt> SDNode::bitcastToAPInt() const {
1957 if (auto *CN = dyn_cast<ConstantSDNode>(this))
1958 return CN->getAPIntValue();
1959 if (auto *CFPN = dyn_cast<ConstantFPSDNode>(this))
1960 return CFPN->getValueAPF().bitcastToAPInt();
1961 return std::nullopt;
1962}
1963
1964/// Returns true if \p V is a constant integer zero.
1966
1967/// Returns true if \p V is a constant integer zero or an UNDEF node.
1969
1970/// Returns true if \p V is an FP constant with a value of positive zero.
1972
1973/// Returns true if \p V is an integer constant with all bits set.
1975
1976/// Returns true if \p V is a constant integer one.
1978
1979/// Returns true if \p V is a constant min signed integer value.
1981
1982/// Return the non-bitcasted source operand of \p V if it exists.
1983/// If \p V is not a bitcasted value, it is returned as-is.
1985
1986/// Return the non-bitcasted and one-use source operand of \p V if it exists.
1987/// If \p V is not a bitcasted one-use value, it is returned as-is.
1989
1990/// Return the non-extracted vector source operand of \p V if it exists.
1991/// If \p V is not an extracted subvector, it is returned as-is.
1993
1994/// Recursively peek through INSERT_VECTOR_ELT nodes, returning the source
1995/// vector operand of \p V, as long as \p V is an INSERT_VECTOR_ELT operation
1996/// that do not insert into any of the demanded vector elts.
1998 const APInt &DemandedElts);
1999
2000/// Return the non-truncated source operand of \p V if it exists.
2001/// If \p V is not a truncation, it is returned as-is.
2003
2004/// Return the non-frozen source operand of \p V if it exists.
2005/// If \p V is not a freeze, it is returned as-is.
2007 if (V.getOpcode() == ISD::FREEZE)
2008 return V.getOperand(0);
2009 return V;
2010}
2011
2012/// Return the non-frozen source operand of \p V if it exists and \p V has
2013/// a single use. If \p V is not a single-use freeze, it is returned as-is.
2015 if (V.getOpcode() == ISD::FREEZE && V.hasOneUse())
2016 return V.getOperand(0);
2017 return V;
2018}
2019
2020/// Returns true if \p V is a bitwise not operation. Assumes that an all ones
2021/// constant is canonicalized to be operand 1.
2022LLVM_ABI bool isBitwiseNot(SDValue V, bool AllowUndefs = false);
2023
2024/// If \p V is a bitwise not, returns the inverted operand. Otherwise returns
2025/// an empty SDValue. Only bits set in \p Mask are required to be inverted,
2026/// other bits may be arbitrary.
2028 bool AllowUndefs);
2029
2030/// Returns the SDNode if it is a constant splat BuildVector or constant int.
2031LLVM_ABI ConstantSDNode *isConstOrConstSplat(SDValue N,
2032 bool AllowUndefs = false,
2033 bool AllowTruncation = false);
2034
2035/// Returns the SDNode if it is a demanded constant splat BuildVector or
2036/// constant int.
2037LLVM_ABI ConstantSDNode *isConstOrConstSplat(SDValue N,
2038 const APInt &DemandedElts,
2039 bool AllowUndefs = false,
2040 bool AllowTruncation = false);
2041
2042/// Returns the SDNode if it is a constant splat BuildVector or constant float.
2043LLVM_ABI ConstantFPSDNode *isConstOrConstSplatFP(SDValue N,
2044 bool AllowUndefs = false);
2045
2046/// Returns the SDNode if it is a demanded constant splat BuildVector or
2047/// constant float.
2048LLVM_ABI ConstantFPSDNode *isConstOrConstSplatFP(SDValue N,
2049 const APInt &DemandedElts,
2050 bool AllowUndefs = false);
2051
2052/// Return true if the value is a constant 0 integer or a splatted vector of
2053/// a constant 0 integer (with no undefs by default).
2054/// Build vector implicit truncation is not an issue for null values.
2055LLVM_ABI bool isNullOrNullSplat(SDValue V, bool AllowUndefs = false);
2056
2057/// Return true if the value is a constant 1 integer or a splatted vector of a
2058/// constant 1 integer (with no undefs).
2059/// Build vector implicit truncation is allowed, but the truncated bits need to
2060/// be zero.
2061LLVM_ABI bool isOneOrOneSplat(SDValue V, bool AllowUndefs = false);
2062
2063/// Return true if the value is a constant floating-point value, or a splatted
2064/// vector of a constant floating-point value, of 1.0 (with no undefs).
2065LLVM_ABI bool isOneOrOneSplatFP(SDValue V, bool AllowUndefs = false);
2066
2067/// Return true if the value is a constant -1 integer or a splatted vector of a
2068/// constant -1 integer (with no undefs).
2069/// Does not permit build vector implicit truncation.
2070LLVM_ABI bool isAllOnesOrAllOnesSplat(SDValue V, bool AllowUndefs = false);
2071
2072/// Return true if the value is a constant 1 integer or a splatted vector of a
2073/// constant 1 integer (with no undefs).
2074/// Does not permit build vector implicit truncation.
2075LLVM_ABI bool isOnesOrOnesSplat(SDValue N, bool AllowUndefs = false);
2076
2077/// Return true if the value is a constant 0 integer or a splatted vector of a
2078/// constant 0 integer (with no undefs).
2079/// Build vector implicit truncation is allowed.
2080LLVM_ABI bool isZeroOrZeroSplat(SDValue N, bool AllowUndefs = false);
2081
2082/// Return true if the value is a constant (+/-)0.0 floating-point value or a
2083/// splatted vector thereof (with no undefs).
2084LLVM_ABI bool isZeroOrZeroSplatFP(SDValue N, bool AllowUndefs = false);
2085
2086/// Return true if \p V is either a integer or FP constant.
2089}
2090
2091class GlobalAddressSDNode : public SDNode {
2092 friend class SelectionDAG;
2093
2094 const GlobalValue *TheGlobal;
2095 int64_t Offset;
2096 unsigned TargetFlags;
2097
2098 GlobalAddressSDNode(unsigned Opc, unsigned Order, const DebugLoc &DL,
2099 const GlobalValue *GA, SDVTList VTs, int64_t o,
2100 unsigned TF)
2101 : SDNode(Opc, Order, DL, VTs), TheGlobal(GA), Offset(o), TargetFlags(TF) {
2102 }
2103
2104public:
2105 const GlobalValue *getGlobal() const { return TheGlobal; }
2106 int64_t getOffset() const { return Offset; }
2107 unsigned getTargetFlags() const { return TargetFlags; }
2108 // Return the address space this GlobalAddress belongs to.
2109 LLVM_ABI unsigned getAddressSpace() const;
2110
2111 static bool classof(const SDNode *N) {
2112 return N->getOpcode() == ISD::GlobalAddress ||
2113 N->getOpcode() == ISD::TargetGlobalAddress ||
2114 N->getOpcode() == ISD::GlobalTLSAddress ||
2115 N->getOpcode() == ISD::TargetGlobalTLSAddress;
2116 }
2117};
2118
2119class DeactivationSymbolSDNode : public SDNode {
2120 friend class SelectionDAG;
2121
2122 const GlobalValue *TheGlobal;
2123
2124 DeactivationSymbolSDNode(const GlobalValue *GV, SDVTList VTs)
2125 : SDNode(ISD::DEACTIVATION_SYMBOL, 0, DebugLoc(), VTs), TheGlobal(GV) {}
2126
2127public:
2128 const GlobalValue *getGlobal() const { return TheGlobal; }
2129
2130 static bool classof(const SDNode *N) {
2131 return N->getOpcode() == ISD::DEACTIVATION_SYMBOL;
2132 }
2133};
2134
2135class FrameIndexSDNode : public SDNode {
2136 friend class SelectionDAG;
2137
2138 int FI;
2139
2140 FrameIndexSDNode(int fi, SDVTList VTs, bool isTarg)
2141 : SDNode(isTarg ? ISD::TargetFrameIndex : ISD::FrameIndex, 0, DebugLoc(),
2142 VTs),
2143 FI(fi) {}
2144
2145public:
2146 int getIndex() const { return FI; }
2147
2148 static bool classof(const SDNode *N) {
2149 return N->getOpcode() == ISD::FrameIndex ||
2150 N->getOpcode() == ISD::TargetFrameIndex;
2151 }
2152};
2153
2154/// This SDNode is used for LIFETIME_START/LIFETIME_END values.
2155class LifetimeSDNode : public SDNode {
2156 friend class SelectionDAG;
2157
2158 LifetimeSDNode(unsigned Opcode, unsigned Order, const DebugLoc &dl,
2159 SDVTList VTs)
2160 : SDNode(Opcode, Order, dl, VTs) {}
2161
2162public:
2163 int64_t getFrameIndex() const {
2164 return cast<FrameIndexSDNode>(getOperand(1))->getIndex();
2165 }
2166
2167 // Methods to support isa and dyn_cast
2168 static bool classof(const SDNode *N) {
2169 return N->getOpcode() == ISD::LIFETIME_START ||
2170 N->getOpcode() == ISD::LIFETIME_END;
2171 }
2172};
2173
2174/// This SDNode is used for PSEUDO_PROBE values, which are the function guid and
2175/// the index of the basic block being probed. A pseudo probe serves as a place
2176/// holder and will be removed at the end of compilation. It does not have any
2177/// operand because we do not want the instruction selection to deal with any.
2178class PseudoProbeSDNode : public SDNode {
2179 friend class SelectionDAG;
2180 uint64_t Guid;
2181 uint64_t Index;
2182 uint32_t Attributes;
2183
2184 PseudoProbeSDNode(unsigned Opcode, unsigned Order, const DebugLoc &Dl,
2185 SDVTList VTs, uint64_t Guid, uint64_t Index, uint32_t Attr)
2186 : SDNode(Opcode, Order, Dl, VTs), Guid(Guid), Index(Index),
2187 Attributes(Attr) {}
2188
2189public:
2190 uint64_t getGuid() const { return Guid; }
2191 uint64_t getIndex() const { return Index; }
2192 uint32_t getAttributes() const { return Attributes; }
2193
2194 // Methods to support isa and dyn_cast
2195 static bool classof(const SDNode *N) {
2196 return N->getOpcode() == ISD::PSEUDO_PROBE;
2197 }
2198};
2199
2200class JumpTableSDNode : public SDNode {
2201 friend class SelectionDAG;
2202
2203 int JTI;
2204 unsigned TargetFlags;
2205
2206 JumpTableSDNode(int jti, SDVTList VTs, bool isTarg, unsigned TF)
2207 : SDNode(isTarg ? ISD::TargetJumpTable : ISD::JumpTable, 0, DebugLoc(),
2208 VTs),
2209 JTI(jti), TargetFlags(TF) {}
2210
2211public:
2212 int getIndex() const { return JTI; }
2213 unsigned getTargetFlags() const { return TargetFlags; }
2214
2215 static bool classof(const SDNode *N) {
2216 return N->getOpcode() == ISD::JumpTable ||
2217 N->getOpcode() == ISD::TargetJumpTable;
2218 }
2219};
2220
2221class ConstantPoolSDNode : public SDNode {
2222 friend class SelectionDAG;
2223
2224 union {
2227 } Val;
2228 int Offset; // It's a MachineConstantPoolValue if top bit is set.
2229 Align Alignment; // Minimum alignment requirement of CP.
2230 unsigned TargetFlags;
2231
2232 ConstantPoolSDNode(bool isTarget, const Constant *c, SDVTList VTs, int o,
2233 Align Alignment, unsigned TF)
2234 : SDNode(isTarget ? ISD::TargetConstantPool : ISD::ConstantPool, 0,
2235 DebugLoc(), VTs),
2236 Offset(o), Alignment(Alignment), TargetFlags(TF) {
2237 assert(Offset >= 0 && "Offset is too large");
2238 Val.ConstVal = c;
2239 }
2240
2241 ConstantPoolSDNode(bool isTarget, MachineConstantPoolValue *v, SDVTList VTs,
2242 int o, Align Alignment, unsigned TF)
2243 : SDNode(isTarget ? ISD::TargetConstantPool : ISD::ConstantPool, 0,
2244 DebugLoc(), VTs),
2245 Offset(o), Alignment(Alignment), TargetFlags(TF) {
2246 assert(Offset >= 0 && "Offset is too large");
2247 Val.MachineCPVal = v;
2248 Offset |= 1 << (sizeof(unsigned)*CHAR_BIT-1);
2249 }
2250
2251public:
2253 return Offset < 0;
2254 }
2255
2256 const Constant *getConstVal() const {
2257 assert(!isMachineConstantPoolEntry() && "Wrong constantpool type");
2258 return Val.ConstVal;
2259 }
2260
2262 assert(isMachineConstantPoolEntry() && "Wrong constantpool type");
2263 return Val.MachineCPVal;
2264 }
2265
2266 int getOffset() const {
2267 return Offset & ~(1 << (sizeof(unsigned)*CHAR_BIT-1));
2268 }
2269
2270 // Return the alignment of this constant pool object, which is either 0 (for
2271 // default alignment) or the desired value.
2272 Align getAlign() const { return Alignment; }
2273 unsigned getTargetFlags() const { return TargetFlags; }
2274
2275 LLVM_ABI Type *getType() const;
2276
2277 static bool classof(const SDNode *N) {
2278 return N->getOpcode() == ISD::ConstantPool ||
2279 N->getOpcode() == ISD::TargetConstantPool;
2280 }
2281};
2282
2283/// Completely target-dependent object reference.
2285 friend class SelectionDAG;
2286
2287 unsigned TargetFlags;
2288 int Index;
2289 int64_t Offset;
2290
2291public:
2292 TargetIndexSDNode(int Idx, SDVTList VTs, int64_t Ofs, unsigned TF)
2293 : SDNode(ISD::TargetIndex, 0, DebugLoc(), VTs), TargetFlags(TF),
2294 Index(Idx), Offset(Ofs) {}
2295
2296 unsigned getTargetFlags() const { return TargetFlags; }
2297 int getIndex() const { return Index; }
2298 int64_t getOffset() const { return Offset; }
2299
2300 static bool classof(const SDNode *N) {
2301 return N->getOpcode() == ISD::TargetIndex;
2302 }
2303};
2304
2305class BasicBlockSDNode : public SDNode {
2306 friend class SelectionDAG;
2307
2308 MachineBasicBlock *MBB;
2309
2310 /// Debug info is meaningful and potentially useful here, but we create
2311 /// blocks out of order when they're jumped to, which makes it a bit
2312 /// harder. Let's see if we need it first.
2313 explicit BasicBlockSDNode(MachineBasicBlock *mbb)
2314 : SDNode(ISD::BasicBlock, 0, DebugLoc(), getSDVTList(MVT::Other)), MBB(mbb)
2315 {}
2316
2317public:
2318 MachineBasicBlock *getBasicBlock() const { return MBB; }
2319
2320 static bool classof(const SDNode *N) {
2321 return N->getOpcode() == ISD::BasicBlock;
2322 }
2323};
2324
2325/// A "pseudo-class" with methods for operating on BUILD_VECTORs.
2327public:
2328 // These are constructed as SDNodes and then cast to BuildVectorSDNodes.
2329 explicit BuildVectorSDNode() = delete;
2330
2331 /// Check if this is a constant splat, and if so, find the
2332 /// smallest element size that splats the vector. If MinSplatBits is
2333 /// nonzero, the element size must be at least that large. Note that the
2334 /// splat element may be the entire vector (i.e., a one element vector).
2335 /// Returns the splat element value in SplatValue. Any undefined bits in
2336 /// that value are zero, and the corresponding bits in the SplatUndef mask
2337 /// are set. The SplatBitSize value is set to the splat element size in
2338 /// bits. HasAnyUndefs is set to true if any bits in the vector are
2339 /// undefined. isBigEndian describes the endianness of the target.
2340 LLVM_ABI bool isConstantSplat(APInt &SplatValue, APInt &SplatUndef,
2341 unsigned &SplatBitSize, bool &HasAnyUndefs,
2342 unsigned MinSplatBits = 0,
2343 bool isBigEndian = false) const;
2344
2345 /// Returns the demanded splatted value or a null value if this is not a
2346 /// splat.
2347 ///
2348 /// The DemandedElts mask indicates the elements that must be in the splat.
2349 /// If passed a non-null UndefElements bitvector, it will resize it to match
2350 /// the vector width and set the bits where elements are undef.
2351 LLVM_ABI SDValue getSplatValue(const APInt &DemandedElts,
2352 BitVector *UndefElements = nullptr) const;
2353
2354 /// Returns the splatted value or a null value if this is not a splat.
2355 ///
2356 /// If passed a non-null UndefElements bitvector, it will resize it to match
2357 /// the vector width and set the bits where elements are undef.
2358 LLVM_ABI SDValue getSplatValue(BitVector *UndefElements = nullptr) const;
2359
2360 /// Find the shortest repeating sequence of values in the build vector.
2361 ///
2362 /// e.g. { u, X, u, X, u, u, X, u } -> { X }
2363 /// { X, Y, u, Y, u, u, X, u } -> { X, Y }
2364 ///
2365 /// Currently this must be a power-of-2 build vector.
2366 /// The DemandedElts mask indicates the elements that must be present,
2367 /// undemanded elements in Sequence may be null (SDValue()). If passed a
2368 /// non-null UndefElements bitvector, it will resize it to match the original
2369 /// vector width and set the bits where elements are undef. If result is
2370 /// false, Sequence will be empty.
2371 LLVM_ABI bool getRepeatedSequence(const APInt &DemandedElts,
2372 SmallVectorImpl<SDValue> &Sequence,
2373 BitVector *UndefElements = nullptr) const;
2374
2375 /// Find the shortest repeating sequence of values in the build vector.
2376 ///
2377 /// e.g. { u, X, u, X, u, u, X, u } -> { X }
2378 /// { X, Y, u, Y, u, u, X, u } -> { X, Y }
2379 ///
2380 /// Currently this must be a power-of-2 build vector.
2381 /// If passed a non-null UndefElements bitvector, it will resize it to match
2382 /// the original vector width and set the bits where elements are undef.
2383 /// If result is false, Sequence will be empty.
2385 BitVector *UndefElements = nullptr) const;
2386
2387 /// Returns the demanded splatted constant or null if this is not a constant
2388 /// splat.
2389 ///
2390 /// The DemandedElts mask indicates the elements that must be in the splat.
2391 /// If passed a non-null UndefElements bitvector, it will resize it to match
2392 /// the vector width and set the bits where elements are undef.
2394 getConstantSplatNode(const APInt &DemandedElts,
2395 BitVector *UndefElements = nullptr) const;
2396
2397 /// Returns the splatted constant or null if this is not a constant
2398 /// splat.
2399 ///
2400 /// If passed a non-null UndefElements bitvector, it will resize it to match
2401 /// the vector width and set the bits where elements are undef.
2403 getConstantSplatNode(BitVector *UndefElements = nullptr) const;
2404
2405 /// Returns the demanded splatted constant FP or null if this is not a
2406 /// constant FP splat.
2407 ///
2408 /// The DemandedElts mask indicates the elements that must be in the splat.
2409 /// If passed a non-null UndefElements bitvector, it will resize it to match
2410 /// the vector width and set the bits where elements are undef.
2412 getConstantFPSplatNode(const APInt &DemandedElts,
2413 BitVector *UndefElements = nullptr) const;
2414
2415 /// Returns the splatted constant FP or null if this is not a constant
2416 /// FP splat.
2417 ///
2418 /// If passed a non-null UndefElements bitvector, it will resize it to match
2419 /// the vector width and set the bits where elements are undef.
2421 getConstantFPSplatNode(BitVector *UndefElements = nullptr) const;
2422
2423 /// If this is a constant FP splat and the splatted constant FP is an
2424 /// exact power or 2, return the log base 2 integer value. Otherwise,
2425 /// return -1.
2426 ///
2427 /// The BitWidth specifies the necessary bit precision.
2428 LLVM_ABI int32_t getConstantFPSplatPow2ToLog2Int(BitVector *UndefElements,
2429 uint32_t BitWidth) const;
2430
2431 /// Extract the raw bit data from a build vector of Undef, Constant or
2432 /// ConstantFP node elements. Each raw bit element will be \p
2433 /// DstEltSizeInBits wide, undef elements are treated as zero, and entirely
2434 /// undefined elements are flagged in \p UndefElements.
2435 LLVM_ABI bool getConstantRawBits(bool IsLittleEndian,
2436 unsigned DstEltSizeInBits,
2437 SmallVectorImpl<APInt> &RawBitElements,
2438 BitVector &UndefElements) const;
2439
2440 LLVM_ABI bool isConstant() const;
2441
2442 /// If this BuildVector is constant and represents an arithmetic sequence
2443 /// "<a, a+n, a+2n, a+3n, ...>" where a is integer and n is a non-zero
2444 /// integer, the value "<a, n>" is returned. Arithmetic is performed modulo
2445 /// 2^BitWidth, so this also matches sequences that wrap around. Poison
2446 /// elements are ignored and can take any value.
2447 LLVM_ABI std::optional<std::pair<APInt, APInt>> isArithmeticSequence() const;
2448
2449 /// Recast bit data \p SrcBitElements to \p DstEltSizeInBits wide elements.
2450 /// Undef elements are treated as zero, and entirely undefined elements are
2451 /// flagged in \p DstUndefElements.
2452 LLVM_ABI static void recastRawBits(bool IsLittleEndian,
2453 unsigned DstEltSizeInBits,
2454 SmallVectorImpl<APInt> &DstBitElements,
2455 ArrayRef<APInt> SrcBitElements,
2456 BitVector &DstUndefElements,
2457 const BitVector &SrcUndefElements);
2458
2459 static bool classof(const SDNode *N) {
2460 return N->getOpcode() == ISD::BUILD_VECTOR;
2461 }
2462};
2463
2464/// An SDNode that holds an arbitrary LLVM IR Value. This is
2465/// used when the SelectionDAG needs to make a simple reference to something
2466/// in the LLVM IR representation.
2467///
2468class SrcValueSDNode : public SDNode {
2469 friend class SelectionDAG;
2470
2471 const Value *V;
2472
2473 /// Create a SrcValue for a general value.
2474 explicit SrcValueSDNode(const Value *v)
2475 : SDNode(ISD::SRCVALUE, 0, DebugLoc(), getSDVTList(MVT::Other)), V(v) {}
2476
2477public:
2478 /// Return the contained Value.
2479 const Value *getValue() const { return V; }
2480
2481 static bool classof(const SDNode *N) {
2482 return N->getOpcode() == ISD::SRCVALUE;
2483 }
2484};
2485
2486class MDNodeSDNode : public SDNode {
2487 friend class SelectionDAG;
2488
2489 const MDNode *MD;
2490
2491 explicit MDNodeSDNode(const MDNode *md)
2492 : SDNode(ISD::MDNODE_SDNODE, 0, DebugLoc(), getSDVTList(MVT::Other)), MD(md)
2493 {}
2494
2495public:
2496 const MDNode *getMD() const { return MD; }
2497
2498 static bool classof(const SDNode *N) {
2499 return N->getOpcode() == ISD::MDNODE_SDNODE;
2500 }
2501};
2502
2503class RegisterSDNode : public SDNode {
2504 friend class SelectionDAG;
2505
2506 Register Reg;
2507
2508 RegisterSDNode(Register reg, SDVTList VTs)
2509 : SDNode(ISD::Register, 0, DebugLoc(), VTs), Reg(reg) {}
2510
2511public:
2512 Register getReg() const { return Reg; }
2513
2514 static bool classof(const SDNode *N) {
2515 return N->getOpcode() == ISD::Register;
2516 }
2517};
2518
2519class RegisterMaskSDNode : public SDNode {
2520 friend class SelectionDAG;
2521
2522 // The memory for RegMask is not owned by the node.
2523 const uint32_t *RegMask;
2524
2525 RegisterMaskSDNode(const uint32_t *mask)
2526 : SDNode(ISD::RegisterMask, 0, DebugLoc(), getSDVTList(MVT::Untyped)),
2527 RegMask(mask) {}
2528
2529public:
2530 const uint32_t *getRegMask() const { return RegMask; }
2531
2532 static bool classof(const SDNode *N) {
2533 return N->getOpcode() == ISD::RegisterMask;
2534 }
2535};
2536
2537class BlockAddressSDNode : public SDNode {
2538 friend class SelectionDAG;
2539
2540 const BlockAddress *BA;
2541 int64_t Offset;
2542 unsigned TargetFlags;
2543
2544 BlockAddressSDNode(unsigned NodeTy, SDVTList VTs, const BlockAddress *ba,
2545 int64_t o, unsigned Flags)
2546 : SDNode(NodeTy, 0, DebugLoc(), VTs), BA(ba), Offset(o),
2547 TargetFlags(Flags) {}
2548
2549public:
2550 const BlockAddress *getBlockAddress() const { return BA; }
2551 int64_t getOffset() const { return Offset; }
2552 unsigned getTargetFlags() const { return TargetFlags; }
2553
2554 static bool classof(const SDNode *N) {
2555 return N->getOpcode() == ISD::BlockAddress ||
2556 N->getOpcode() == ISD::TargetBlockAddress;
2557 }
2558};
2559
2560class LabelSDNode : public SDNode {
2561 friend class SelectionDAG;
2562
2563 MCSymbol *Label;
2564
2565 LabelSDNode(unsigned Opcode, unsigned Order, const DebugLoc &dl, MCSymbol *L)
2566 : SDNode(Opcode, Order, dl, getSDVTList(MVT::Other)), Label(L) {
2567 assert(LabelSDNode::classof(this) && "not a label opcode");
2568 }
2569
2570public:
2571 MCSymbol *getLabel() const { return Label; }
2572
2573 static bool classof(const SDNode *N) {
2574 return N->getOpcode() == ISD::EH_LABEL ||
2575 N->getOpcode() == ISD::ANNOTATION_LABEL;
2576 }
2577};
2578
2579class ExternalSymbolSDNode : public SDNode {
2580 friend class SelectionDAG;
2581
2582 const char *Symbol;
2583 unsigned TargetFlags;
2584
2585 ExternalSymbolSDNode(bool isTarget, const char *Sym, unsigned TF,
2586 SDVTList VTs)
2587 : SDNode(isTarget ? ISD::TargetExternalSymbol : ISD::ExternalSymbol, 0,
2588 DebugLoc(), VTs),
2589 Symbol(Sym), TargetFlags(TF) {}
2590
2591public:
2592 const char *getSymbol() const { return Symbol; }
2593 unsigned getTargetFlags() const { return TargetFlags; }
2594
2595 static bool classof(const SDNode *N) {
2596 return N->getOpcode() == ISD::ExternalSymbol ||
2597 N->getOpcode() == ISD::TargetExternalSymbol;
2598 }
2599};
2600
2601class MCSymbolSDNode : public SDNode {
2602 friend class SelectionDAG;
2603
2604 MCSymbol *Symbol;
2605
2606 MCSymbolSDNode(MCSymbol *Symbol, SDVTList VTs)
2607 : SDNode(ISD::MCSymbol, 0, DebugLoc(), VTs), Symbol(Symbol) {}
2608
2609public:
2610 MCSymbol *getMCSymbol() const { return Symbol; }
2611
2612 static bool classof(const SDNode *N) {
2613 return N->getOpcode() == ISD::MCSymbol;
2614 }
2615};
2616
2617class CondCodeSDNode : public SDNode {
2618 friend class SelectionDAG;
2619
2620 ISD::CondCode Condition;
2621
2622 explicit CondCodeSDNode(ISD::CondCode Cond)
2623 : SDNode(ISD::CONDCODE, 0, DebugLoc(), getSDVTList(MVT::Other)),
2624 Condition(Cond) {}
2625
2626public:
2627 ISD::CondCode get() const { return Condition; }
2628
2629 static bool classof(const SDNode *N) {
2630 return N->getOpcode() == ISD::CONDCODE;
2631 }
2632};
2633
2634/// This class is used to represent EVT's, which are used
2635/// to parameterize some operations.
2636class VTSDNode : public SDNode {
2637 friend class SelectionDAG;
2638
2639 EVT ValueType;
2640
2641 explicit VTSDNode(EVT VT)
2642 : SDNode(ISD::VALUETYPE, 0, DebugLoc(), getSDVTList(MVT::Other)),
2643 ValueType(VT) {}
2644
2645public:
2646 EVT getVT() const { return ValueType; }
2647
2648 static bool classof(const SDNode *N) {
2649 return N->getOpcode() == ISD::VALUETYPE;
2650 }
2651};
2652
2653/// Base class for LoadSDNode and StoreSDNode
2654class LSBaseSDNode : public MemSDNode {
2655public:
2656 LSBaseSDNode(ISD::NodeType NodeTy, unsigned Order, const DebugLoc &dl,
2657 SDVTList VTs, ISD::MemIndexedMode AM, EVT MemVT,
2658 MachineMemOperand *MMO)
2659 : MemSDNode(NodeTy, Order, dl, VTs, MemVT, MMO) {
2660 LSBaseSDNodeBits.AddressingMode = AM;
2661 assert(getAddressingMode() == AM && "Value truncated");
2662 }
2663
2664 const SDValue &getOffset() const {
2665 return getOperand(getOpcode() == ISD::LOAD ? 2 : 3);
2666 }
2667
2668 /// Return the addressing mode for this load or store:
2669 /// unindexed, pre-inc, pre-dec, post-inc, or post-dec.
2671 return static_cast<ISD::MemIndexedMode>(LSBaseSDNodeBits.AddressingMode);
2672 }
2673
2674 /// Return true if this is a pre/post inc/dec load/store.
2675 bool isIndexed() const { return getAddressingMode() != ISD::UNINDEXED; }
2676
2677 /// Return true if this is NOT a pre/post inc/dec load/store.
2678 bool isUnindexed() const { return getAddressingMode() == ISD::UNINDEXED; }
2679
2680 static bool classof(const SDNode *N) {
2681 return N->getOpcode() == ISD::LOAD ||
2682 N->getOpcode() == ISD::STORE;
2683 }
2684};
2685
2686/// This class is used to represent ISD::LOAD nodes.
2687class LoadSDNode : public LSBaseSDNode {
2688 friend class SelectionDAG;
2689
2690 LoadSDNode(unsigned Order, const DebugLoc &dl, SDVTList VTs,
2692 MachineMemOperand *MMO)
2693 : LSBaseSDNode(ISD::LOAD, Order, dl, VTs, AM, MemVT, MMO) {
2694 LoadSDNodeBits.ExtTy = ETy;
2695 assert(readMem() && "Load MachineMemOperand is not a load!");
2696 assert(!writeMem() && "Load MachineMemOperand is a store!");
2697 }
2698
2699public:
2700 /// Return whether this is a plain node,
2701 /// or one of the varieties of value-extending loads.
2703 return static_cast<ISD::LoadExtType>(LoadSDNodeBits.ExtTy);
2704 }
2705
2706 const SDValue &getBasePtr() const { return getOperand(1); }
2707 const SDValue &getOffset() const { return getOperand(2); }
2708
2709 static bool classof(const SDNode *N) {
2710 return N->getOpcode() == ISD::LOAD;
2711 }
2712};
2713
2714/// This class is used to represent ISD::STORE nodes.
2715class StoreSDNode : public LSBaseSDNode {
2716 friend class SelectionDAG;
2717
2718 StoreSDNode(unsigned Order, const DebugLoc &dl, SDVTList VTs,
2719 ISD::MemIndexedMode AM, bool isTrunc, EVT MemVT,
2720 MachineMemOperand *MMO)
2721 : LSBaseSDNode(ISD::STORE, Order, dl, VTs, AM, MemVT, MMO) {
2722 StoreSDNodeBits.IsTruncating = isTrunc;
2723 assert(!readMem() && "Store MachineMemOperand is a load!");
2724 assert(writeMem() && "Store MachineMemOperand is not a store!");
2725 }
2726
2727public:
2728 /// Return true if the op does a truncation before store.
2729 /// For integers this is the same as doing a TRUNCATE and storing the result.
2730 /// For floats, it is the same as doing an FP_ROUND and storing the result.
2731 bool isTruncatingStore() const { return StoreSDNodeBits.IsTruncating; }
2732
2733 const SDValue &getValue() const { return getOperand(1); }
2734 const SDValue &getBasePtr() const { return getOperand(2); }
2735 const SDValue &getOffset() const { return getOperand(3); }
2736
2737 static bool classof(const SDNode *N) {
2738 return N->getOpcode() == ISD::STORE;
2739 }
2740};
2741
2742/// This base class is used to represent VP_LOAD, VP_STORE,
2743/// EXPERIMENTAL_VP_STRIDED_LOAD and EXPERIMENTAL_VP_STRIDED_STORE nodes
2745public:
2746 friend class SelectionDAG;
2747
2748 VPBaseLoadStoreSDNode(ISD::NodeType NodeTy, unsigned Order,
2749 const DebugLoc &DL, SDVTList VTs,
2750 ISD::MemIndexedMode AM, EVT MemVT,
2751 MachineMemOperand *MMO)
2752 : MemSDNode(NodeTy, Order, DL, VTs, MemVT, MMO) {
2753 LSBaseSDNodeBits.AddressingMode = AM;
2754 assert(getAddressingMode() == AM && "Value truncated");
2755 }
2756
2757 // VPStridedStoreSDNode (Chain, Data, Ptr, Offset, Stride, Mask, EVL)
2758 // VPStoreSDNode (Chain, Data, Ptr, Offset, Mask, EVL)
2759 // VPStridedLoadSDNode (Chain, Ptr, Offset, Stride, Mask, EVL)
2760 // VPLoadSDNode (Chain, Ptr, Offset, Mask, EVL)
2761 // Mask is a vector of i1 elements;
2762 // the type of EVL is TLI.getVPExplicitVectorLengthTy().
2763 const SDValue &getOffset() const {
2764 return getOperand((getOpcode() == ISD::EXPERIMENTAL_VP_STRIDED_LOAD ||
2765 getOpcode() == ISD::VP_LOAD)
2766 ? 2
2767 : 3);
2768 }
2769 const SDValue &getBasePtr() const {
2770 return getOperand((getOpcode() == ISD::EXPERIMENTAL_VP_STRIDED_LOAD ||
2771 getOpcode() == ISD::VP_LOAD)
2772 ? 1
2773 : 2);
2774 }
2775 const SDValue &getMask() const {
2776 switch (getOpcode()) {
2777 default:
2778 llvm_unreachable("Invalid opcode");
2779 case ISD::VP_LOAD:
2780 return getOperand(3);
2781 case ISD::VP_STORE:
2782 case ISD::EXPERIMENTAL_VP_STRIDED_LOAD:
2783 return getOperand(4);
2784 case ISD::EXPERIMENTAL_VP_STRIDED_STORE:
2785 return getOperand(5);
2786 }
2787 }
2788 const SDValue &getVectorLength() const {
2789 switch (getOpcode()) {
2790 default:
2791 llvm_unreachable("Invalid opcode");
2792 case ISD::VP_LOAD:
2793 return getOperand(4);
2794 case ISD::VP_STORE:
2795 case ISD::EXPERIMENTAL_VP_STRIDED_LOAD:
2796 return getOperand(5);
2797 case ISD::EXPERIMENTAL_VP_STRIDED_STORE:
2798 return getOperand(6);
2799 }
2800 }
2801
2802 /// Return the addressing mode for this load or store:
2803 /// unindexed, pre-inc, pre-dec, post-inc, or post-dec.
2805 return static_cast<ISD::MemIndexedMode>(LSBaseSDNodeBits.AddressingMode);
2806 }
2807
2808 /// Return true if this is a pre/post inc/dec load/store.
2809 bool isIndexed() const { return getAddressingMode() != ISD::UNINDEXED; }
2810
2811 /// Return true if this is NOT a pre/post inc/dec load/store.
2812 bool isUnindexed() const { return getAddressingMode() == ISD::UNINDEXED; }
2813
2814 static bool classof(const SDNode *N) {
2815 return N->getOpcode() == ISD::EXPERIMENTAL_VP_STRIDED_LOAD ||
2816 N->getOpcode() == ISD::EXPERIMENTAL_VP_STRIDED_STORE ||
2817 N->getOpcode() == ISD::VP_LOAD || N->getOpcode() == ISD::VP_STORE;
2818 }
2819};
2820
2821/// This class is used to represent a VP_LOAD node
2823public:
2824 friend class SelectionDAG;
2825
2826 VPLoadSDNode(unsigned Order, const DebugLoc &dl, SDVTList VTs,
2827 ISD::MemIndexedMode AM, ISD::LoadExtType ETy, bool isExpanding,
2828 EVT MemVT, MachineMemOperand *MMO)
2829 : VPBaseLoadStoreSDNode(ISD::VP_LOAD, Order, dl, VTs, AM, MemVT, MMO) {
2830 LoadSDNodeBits.ExtTy = ETy;
2831 LoadSDNodeBits.IsExpanding = isExpanding;
2832 }
2833
2835 return static_cast<ISD::LoadExtType>(LoadSDNodeBits.ExtTy);
2836 }
2837
2838 const SDValue &getBasePtr() const { return getOperand(1); }
2839 const SDValue &getOffset() const { return getOperand(2); }
2840 const SDValue &getMask() const { return getOperand(3); }
2841 const SDValue &getVectorLength() const { return getOperand(4); }
2842
2843 static bool classof(const SDNode *N) {
2844 return N->getOpcode() == ISD::VP_LOAD;
2845 }
2846 bool isExpandingLoad() const { return LoadSDNodeBits.IsExpanding; }
2847};
2848
2849/// This class is used to represent an EXPERIMENTAL_VP_STRIDED_LOAD node.
2851public:
2852 friend class SelectionDAG;
2853
2854 VPStridedLoadSDNode(unsigned Order, const DebugLoc &DL, SDVTList VTs,
2856 bool IsExpanding, EVT MemVT, MachineMemOperand *MMO)
2857 : VPBaseLoadStoreSDNode(ISD::EXPERIMENTAL_VP_STRIDED_LOAD, Order, DL, VTs,
2858 AM, MemVT, MMO) {
2859 LoadSDNodeBits.ExtTy = ETy;
2860 LoadSDNodeBits.IsExpanding = IsExpanding;
2861 }
2862
2864 return static_cast<ISD::LoadExtType>(LoadSDNodeBits.ExtTy);
2865 }
2866
2867 const SDValue &getBasePtr() const { return getOperand(1); }
2868 const SDValue &getOffset() const { return getOperand(2); }
2869 const SDValue &getStride() const { return getOperand(3); }
2870 const SDValue &getMask() const { return getOperand(4); }
2871 const SDValue &getVectorLength() const { return getOperand(5); }
2872
2873 static bool classof(const SDNode *N) {
2874 return N->getOpcode() == ISD::EXPERIMENTAL_VP_STRIDED_LOAD;
2875 }
2876 bool isExpandingLoad() const { return LoadSDNodeBits.IsExpanding; }
2877};
2878
2879/// This class is used to represent a VP_STORE node
2881public:
2882 friend class SelectionDAG;
2883
2884 VPStoreSDNode(unsigned Order, const DebugLoc &dl, SDVTList VTs,
2885 ISD::MemIndexedMode AM, bool isTrunc, bool isCompressing,
2886 EVT MemVT, MachineMemOperand *MMO)
2887 : VPBaseLoadStoreSDNode(ISD::VP_STORE, Order, dl, VTs, AM, MemVT, MMO) {
2888 StoreSDNodeBits.IsTruncating = isTrunc;
2889 StoreSDNodeBits.IsCompressing = isCompressing;
2890 }
2891
2892 /// Return true if this is a truncating store.
2893 /// For integers this is the same as doing a TRUNCATE and storing the result.
2894 /// For floats, it is the same as doing an FP_ROUND and storing the result.
2895 bool isTruncatingStore() const { return StoreSDNodeBits.IsTruncating; }
2896
2897 /// Returns true if the op does a compression to the vector before storing.
2898 /// The node contiguously stores the active elements (integers or floats)
2899 /// in src (those with their respective bit set in writemask k) to unaligned
2900 /// memory at base_addr.
2901 bool isCompressingStore() const { return StoreSDNodeBits.IsCompressing; }
2902
2903 const SDValue &getValue() const { return getOperand(1); }
2904 const SDValue &getBasePtr() const { return getOperand(2); }
2905 const SDValue &getOffset() const { return getOperand(3); }
2906 const SDValue &getMask() const { return getOperand(4); }
2907 const SDValue &getVectorLength() const { return getOperand(5); }
2908
2909 static bool classof(const SDNode *N) {
2910 return N->getOpcode() == ISD::VP_STORE;
2911 }
2912};
2913
2914/// This class is used to represent an EXPERIMENTAL_VP_STRIDED_STORE node.
2916public:
2917 friend class SelectionDAG;
2918
2919 VPStridedStoreSDNode(unsigned Order, const DebugLoc &DL, SDVTList VTs,
2920 ISD::MemIndexedMode AM, bool IsTrunc, bool IsCompressing,
2921 EVT MemVT, MachineMemOperand *MMO)
2922 : VPBaseLoadStoreSDNode(ISD::EXPERIMENTAL_VP_STRIDED_STORE, Order, DL,
2923 VTs, AM, MemVT, MMO) {
2924 StoreSDNodeBits.IsTruncating = IsTrunc;
2925 StoreSDNodeBits.IsCompressing = IsCompressing;
2926 }
2927
2928 /// Return true if this is a truncating store.
2929 /// For integers this is the same as doing a TRUNCATE and storing the result.
2930 /// For floats, it is the same as doing an FP_ROUND and storing the result.
2931 bool isTruncatingStore() const { return StoreSDNodeBits.IsTruncating; }
2932
2933 /// Returns true if the op does a compression to the vector before storing.
2934 /// The node contiguously stores the active elements (integers or floats)
2935 /// in src (those with their respective bit set in writemask k) to unaligned
2936 /// memory at base_addr.
2937 bool isCompressingStore() const { return StoreSDNodeBits.IsCompressing; }
2938
2939 const SDValue &getValue() const { return getOperand(1); }
2940 const SDValue &getBasePtr() const { return getOperand(2); }
2941 const SDValue &getOffset() const { return getOperand(3); }
2942 const SDValue &getStride() const { return getOperand(4); }
2943 const SDValue &getMask() const { return getOperand(5); }
2944 const SDValue &getVectorLength() const { return getOperand(6); }
2945
2946 static bool classof(const SDNode *N) {
2947 return N->getOpcode() == ISD::EXPERIMENTAL_VP_STRIDED_STORE;
2948 }
2949};
2950
2951/// This base class is used to represent MLOAD and MSTORE nodes
2953public:
2954 friend class SelectionDAG;
2955
2956 MaskedLoadStoreSDNode(ISD::NodeType NodeTy, unsigned Order,
2957 const DebugLoc &dl, SDVTList VTs,
2958 ISD::MemIndexedMode AM, EVT MemVT,
2959 MachineMemOperand *MMO)
2960 : MemSDNode(NodeTy, Order, dl, VTs, MemVT, MMO) {
2961 LSBaseSDNodeBits.AddressingMode = AM;
2962 assert(getAddressingMode() == AM && "Value truncated");
2963 }
2964
2965 // MaskedLoadSDNode (Chain, ptr, offset, mask, passthru)
2966 // MaskedStoreSDNode (Chain, data, ptr, offset, mask)
2967 // Mask is a vector of i1 elements
2968 const SDValue &getOffset() const {
2969 return getOperand(getOpcode() == ISD::MLOAD ? 2 : 3);
2970 }
2971 const SDValue &getMask() const {
2972 return getOperand(getOpcode() == ISD::MLOAD ? 3 : 4);
2973 }
2974
2975 /// Return the addressing mode for this load or store:
2976 /// unindexed, pre-inc, pre-dec, post-inc, or post-dec.
2978 return static_cast<ISD::MemIndexedMode>(LSBaseSDNodeBits.AddressingMode);
2979 }
2980
2981 /// Return true if this is a pre/post inc/dec load/store.
2982 bool isIndexed() const { return getAddressingMode() != ISD::UNINDEXED; }
2983
2984 /// Return true if this is NOT a pre/post inc/dec load/store.
2985 bool isUnindexed() const { return getAddressingMode() == ISD::UNINDEXED; }
2986
2987 static bool classof(const SDNode *N) {
2988 return N->getOpcode() == ISD::MLOAD ||
2989 N->getOpcode() == ISD::MSTORE;
2990 }
2991};
2992
2993/// This class is used to represent an MLOAD node
2995public:
2996 friend class SelectionDAG;
2997
2998 MaskedLoadSDNode(unsigned Order, const DebugLoc &dl, SDVTList VTs,
3000 bool IsExpanding, EVT MemVT, MachineMemOperand *MMO)
3001 : MaskedLoadStoreSDNode(ISD::MLOAD, Order, dl, VTs, AM, MemVT, MMO) {
3002 LoadSDNodeBits.ExtTy = ETy;
3003 LoadSDNodeBits.IsExpanding = IsExpanding;
3004 }
3005
3007 return static_cast<ISD::LoadExtType>(LoadSDNodeBits.ExtTy);
3008 }
3009
3010 const SDValue &getBasePtr() const { return getOperand(1); }
3011 const SDValue &getOffset() const { return getOperand(2); }
3012 const SDValue &getMask() const { return getOperand(3); }
3013 const SDValue &getPassThru() const { return getOperand(4); }
3014
3015 static bool classof(const SDNode *N) {
3016 return N->getOpcode() == ISD::MLOAD;
3017 }
3018
3019 bool isExpandingLoad() const { return LoadSDNodeBits.IsExpanding; }
3020};
3021
3022/// This class is used to represent an MSTORE node
3024public:
3025 friend class SelectionDAG;
3026
3027 MaskedStoreSDNode(unsigned Order, const DebugLoc &dl, SDVTList VTs,
3028 ISD::MemIndexedMode AM, bool isTrunc, bool isCompressing,
3029 EVT MemVT, MachineMemOperand *MMO)
3030 : MaskedLoadStoreSDNode(ISD::MSTORE, Order, dl, VTs, AM, MemVT, MMO) {
3031 StoreSDNodeBits.IsTruncating = isTrunc;
3032 StoreSDNodeBits.IsCompressing = isCompressing;
3033 }
3034
3035 /// Return true if the op does a truncation before store.
3036 /// For integers this is the same as doing a TRUNCATE and storing the result.
3037 /// For floats, it is the same as doing an FP_ROUND and storing the result.
3038 bool isTruncatingStore() const { return StoreSDNodeBits.IsTruncating; }
3039
3040 /// Returns true if the op does a compression to the vector before storing.
3041 /// The node contiguously stores the active elements (integers or floats)
3042 /// in src (those with their respective bit set in writemask k) to unaligned
3043 /// memory at base_addr.
3044 bool isCompressingStore() const { return StoreSDNodeBits.IsCompressing; }
3045
3046 const SDValue &getValue() const { return getOperand(1); }
3047 const SDValue &getBasePtr() const { return getOperand(2); }
3048 const SDValue &getOffset() const { return getOperand(3); }
3049 const SDValue &getMask() const { return getOperand(4); }
3050
3051 static bool classof(const SDNode *N) {
3052 return N->getOpcode() == ISD::MSTORE;
3053 }
3054};
3055
3056/// This is a base class used to represent
3057/// VP_GATHER and VP_SCATTER nodes
3058///
3060public:
3061 friend class SelectionDAG;
3062
3063 VPGatherScatterSDNode(ISD::NodeType NodeTy, unsigned Order,
3064 const DebugLoc &dl, SDVTList VTs, EVT MemVT,
3065 MachineMemOperand *MMO, ISD::MemIndexType IndexType)
3066 : MemSDNode(NodeTy, Order, dl, VTs, MemVT, MMO) {
3067 LSBaseSDNodeBits.AddressingMode = IndexType;
3068 assert(getIndexType() == IndexType && "Value truncated");
3069 }
3070
3071 /// How is Index applied to BasePtr when computing addresses.
3073 return static_cast<ISD::MemIndexType>(LSBaseSDNodeBits.AddressingMode);
3074 }
3075 bool isIndexScaled() const {
3076 return !cast<ConstantSDNode>(getScale())->isOne();
3077 }
3078 bool isIndexSigned() const { return isIndexTypeSigned(getIndexType()); }
3079
3080 // In the both nodes address is Op1, mask is Op2:
3081 // VPGatherSDNode (Chain, base, index, scale, mask, vlen)
3082 // VPScatterSDNode (Chain, value, base, index, scale, mask, vlen)
3083 // Mask is a vector of i1 elements
3084 const SDValue &getBasePtr() const {
3085 return getOperand((getOpcode() == ISD::VP_GATHER) ? 1 : 2);
3086 }
3087 const SDValue &getIndex() const {
3088 return getOperand((getOpcode() == ISD::VP_GATHER) ? 2 : 3);
3089 }
3090 const SDValue &getScale() const {
3091 return getOperand((getOpcode() == ISD::VP_GATHER) ? 3 : 4);
3092 }
3093 const SDValue &getMask() const {
3094 return getOperand((getOpcode() == ISD::VP_GATHER) ? 4 : 5);
3095 }
3096 const SDValue &getVectorLength() const {
3097 return getOperand((getOpcode() == ISD::VP_GATHER) ? 5 : 6);
3098 }
3099
3100 static bool classof(const SDNode *N) {
3101 return N->getOpcode() == ISD::VP_GATHER ||
3102 N->getOpcode() == ISD::VP_SCATTER;
3103 }
3104};
3105
3106/// This class is used to represent an VP_GATHER node
3107///
3109public:
3110 friend class SelectionDAG;
3111
3112 VPGatherSDNode(unsigned Order, const DebugLoc &dl, SDVTList VTs, EVT MemVT,
3113 MachineMemOperand *MMO, ISD::MemIndexType IndexType)
3114 : VPGatherScatterSDNode(ISD::VP_GATHER, Order, dl, VTs, MemVT, MMO,
3115 IndexType) {}
3116
3117 static bool classof(const SDNode *N) {
3118 return N->getOpcode() == ISD::VP_GATHER;
3119 }
3120};
3121
3122/// This class is used to represent an VP_SCATTER node
3123///
3125public:
3126 friend class SelectionDAG;
3127
3128 VPScatterSDNode(unsigned Order, const DebugLoc &dl, SDVTList VTs, EVT MemVT,
3129 MachineMemOperand *MMO, ISD::MemIndexType IndexType)
3130 : VPGatherScatterSDNode(ISD::VP_SCATTER, Order, dl, VTs, MemVT, MMO,
3131 IndexType) {}
3132
3133 const SDValue &getValue() const { return getOperand(1); }
3134
3135 static bool classof(const SDNode *N) {
3136 return N->getOpcode() == ISD::VP_SCATTER;
3137 }
3138};
3139
3140/// This is a base class used to represent
3141/// MGATHER and MSCATTER nodes
3142///
3144public:
3145 friend class SelectionDAG;
3146
3148 const DebugLoc &dl, SDVTList VTs, EVT MemVT,
3149 MachineMemOperand *MMO, ISD::MemIndexType IndexType)
3150 : MemSDNode(NodeTy, Order, dl, VTs, MemVT, MMO) {
3151 LSBaseSDNodeBits.AddressingMode = IndexType;
3152 assert(getIndexType() == IndexType && "Value truncated");
3153 }
3154
3155 /// How is Index applied to BasePtr when computing addresses.
3157 return static_cast<ISD::MemIndexType>(LSBaseSDNodeBits.AddressingMode);
3158 }
3159 bool isIndexScaled() const {
3160 return !cast<ConstantSDNode>(getScale())->isOne();
3161 }
3162 bool isIndexSigned() const { return isIndexTypeSigned(getIndexType()); }
3163
3164 // In the both nodes address is Op1, mask is Op2:
3165 // MaskedGatherSDNode (Chain, passthru, mask, base, index, scale)
3166 // MaskedScatterSDNode (Chain, value, mask, base, index, scale)
3167 // Mask is a vector of i1 elements
3168 const SDValue &getBasePtr() const { return getOperand(3); }
3169 const SDValue &getIndex() const { return getOperand(4); }
3170 const SDValue &getMask() const { return getOperand(2); }
3171 const SDValue &getScale() const { return getOperand(5); }
3172
3173 static bool classof(const SDNode *N) {
3174 return N->getOpcode() == ISD::MGATHER || N->getOpcode() == ISD::MSCATTER ||
3175 N->getOpcode() == ISD::EXPERIMENTAL_VECTOR_HISTOGRAM;
3176 }
3177};
3178
3179/// This class is used to represent an MGATHER node
3180///
3182public:
3183 friend class SelectionDAG;
3184
3185 MaskedGatherSDNode(unsigned Order, const DebugLoc &dl, SDVTList VTs,
3186 EVT MemVT, MachineMemOperand *MMO,
3187 ISD::MemIndexType IndexType, ISD::LoadExtType ETy)
3188 : MaskedGatherScatterSDNode(ISD::MGATHER, Order, dl, VTs, MemVT, MMO,
3189 IndexType) {
3190 LoadSDNodeBits.ExtTy = ETy;
3191 }
3192
3193 const SDValue &getPassThru() const { return getOperand(1); }
3194
3198
3199 static bool classof(const SDNode *N) {
3200 return N->getOpcode() == ISD::MGATHER;
3201 }
3202};
3203
3204/// This class is used to represent an MSCATTER node
3205///
3207public:
3208 friend class SelectionDAG;
3209
3210 MaskedScatterSDNode(unsigned Order, const DebugLoc &dl, SDVTList VTs,
3211 EVT MemVT, MachineMemOperand *MMO,
3212 ISD::MemIndexType IndexType, bool IsTrunc)
3213 : MaskedGatherScatterSDNode(ISD::MSCATTER, Order, dl, VTs, MemVT, MMO,
3214 IndexType) {
3215 StoreSDNodeBits.IsTruncating = IsTrunc;
3216 }
3217
3218 /// Return true if the op does a truncation before store.
3219 /// For integers this is the same as doing a TRUNCATE and storing the result.
3220 /// For floats, it is the same as doing an FP_ROUND and storing the result.
3221 bool isTruncatingStore() const { return StoreSDNodeBits.IsTruncating; }
3222
3223 const SDValue &getValue() const { return getOperand(1); }
3224
3225 static bool classof(const SDNode *N) {
3226 return N->getOpcode() == ISD::MSCATTER;
3227 }
3228};
3229
3231public:
3232 friend class SelectionDAG;
3233
3234 MaskedHistogramSDNode(unsigned Order, const DebugLoc &DL, SDVTList VTs,
3235 EVT MemVT, MachineMemOperand *MMO,
3236 ISD::MemIndexType IndexType)
3237 : MaskedGatherScatterSDNode(ISD::EXPERIMENTAL_VECTOR_HISTOGRAM, Order, DL,
3238 VTs, MemVT, MMO, IndexType) {}
3239
3241 return static_cast<ISD::MemIndexType>(LSBaseSDNodeBits.AddressingMode);
3242 }
3243
3244 const SDValue &getBasePtr() const { return getOperand(3); }
3245 const SDValue &getIndex() const { return getOperand(4); }
3246 const SDValue &getMask() const { return getOperand(2); }
3247 const SDValue &getScale() const { return getOperand(5); }
3248 const SDValue &getInc() const { return getOperand(1); }
3249 const SDValue &getIntID() const { return getOperand(6); }
3250
3251 static bool classof(const SDNode *N) {
3252 return N->getOpcode() == ISD::EXPERIMENTAL_VECTOR_HISTOGRAM;
3253 }
3254};
3255
3257public:
3258 friend class SelectionDAG;
3259
3260 VPLoadFFSDNode(unsigned Order, const DebugLoc &DL, SDVTList VTs, EVT MemVT,
3261 MachineMemOperand *MMO)
3262 : MemSDNode(ISD::VP_LOAD_FF, Order, DL, VTs, MemVT, MMO) {}
3263
3264 const SDValue &getBasePtr() const { return getOperand(1); }
3265 const SDValue &getMask() const { return getOperand(2); }
3266 const SDValue &getVectorLength() const { return getOperand(3); }
3267
3268 static bool classof(const SDNode *N) {
3269 return N->getOpcode() == ISD::VP_LOAD_FF;
3270 }
3271};
3272
3274public:
3275 friend class SelectionDAG;
3276
3277 FPStateAccessSDNode(unsigned NodeTy, unsigned Order, const DebugLoc &dl,
3278 SDVTList VTs, EVT MemVT, MachineMemOperand *MMO)
3279 : MemSDNode(NodeTy, Order, dl, VTs, MemVT, MMO) {
3280 assert((NodeTy == ISD::GET_FPENV_MEM || NodeTy == ISD::SET_FPENV_MEM) &&
3281 "Expected FP state access node");
3282 }
3283
3284 static bool classof(const SDNode *N) {
3285 return N->getOpcode() == ISD::GET_FPENV_MEM ||
3286 N->getOpcode() == ISD::SET_FPENV_MEM;
3287 }
3288};
3289
3290/// An SDNode that represents everything that will be needed
3291/// to construct a MachineInstr. These nodes are created during the
3292/// instruction selection proper phase.
3293///
3294/// Note that the only supported way to set the `memoperands` is by calling the
3295/// `SelectionDAG::setNodeMemRefs` function as the memory management happens
3296/// inside the DAG rather than in the node.
3297class MachineSDNode : public SDNode {
3298private:
3299 friend class SelectionDAG;
3300
3301 MachineSDNode(unsigned Opc, unsigned Order, const DebugLoc &DL, SDVTList VTs)
3302 : SDNode(Opc, Order, DL, VTs) {}
3303
3304 // We use a pointer union between a single `MachineMemOperand` pointer and
3305 // a pointer to an array of `MachineMemOperand` pointers. This is null when
3306 // the number of these is zero, the single pointer variant used when the
3307 // number is one, and the array is used for larger numbers.
3308 //
3309 // The array is allocated via the `SelectionDAG`'s allocator and so will
3310 // always live until the DAG is cleaned up and doesn't require ownership here.
3311 //
3312 // We can't use something simpler like `TinyPtrVector` here because `SDNode`
3313 // subclasses aren't managed in a conforming C++ manner. See the comments on
3314 // `SelectionDAG::MorphNodeTo` which details what all goes on, but the
3315 // constraint here is that these don't manage memory with their constructor or
3316 // destructor and can be initialized to a good state even if they start off
3317 // uninitialized.
3319
3320 // Note that this could be folded into the above `MemRefs` member if doing so
3321 // is advantageous at some point. We don't need to store this in most cases.
3322 // However, at the moment this doesn't appear to make the allocation any
3323 // smaller and makes the code somewhat simpler to read.
3324 int NumMemRefs = 0;
3325
3326public:
3328
3330 // Special case the common cases.
3331 if (NumMemRefs == 0)
3332 return {};
3333 if (NumMemRefs == 1)
3334 return ArrayRef(MemRefs.getAddrOfPtr1(), 1);
3335
3336 // Otherwise we have an actual array.
3337 return ArrayRef(cast<MachineMemOperand **>(MemRefs), NumMemRefs);
3338 }
3339 mmo_iterator memoperands_begin() const { return memoperands().begin(); }
3340 mmo_iterator memoperands_end() const { return memoperands().end(); }
3341 bool memoperands_empty() const { return memoperands().empty(); }
3342
3343 /// Clear out the memory reference descriptor list.
3345 MemRefs = nullptr;
3346 NumMemRefs = 0;
3347 }
3348
3349 static bool classof(const SDNode *N) {
3350 return N->isMachineOpcode();
3351 }
3352};
3353
3354/// An SDNode that records if a register contains a value that is guaranteed to
3355/// be aligned accordingly.
3357 Align Alignment;
3358
3359public:
3360 AssertAlignSDNode(unsigned Order, const DebugLoc &DL, SDVTList VTs, Align A)
3361 : SDNode(ISD::AssertAlign, Order, DL, VTs), Alignment(A) {}
3362
3363 Align getAlign() const { return Alignment; }
3364
3365 static bool classof(const SDNode *N) {
3366 return N->getOpcode() == ISD::AssertAlign;
3367 }
3368};
3369
3370class SDNodeIterator {
3371 const SDNode *Node;
3372 unsigned Operand;
3373
3374 SDNodeIterator(const SDNode *N, unsigned Op) : Node(N), Operand(Op) {}
3375
3376public:
3377 using iterator_category = std::forward_iterator_tag;
3379 using difference_type = std::ptrdiff_t;
3382
3383 bool operator==(const SDNodeIterator& x) const {
3384 return Operand == x.Operand;
3385 }
3386 bool operator!=(const SDNodeIterator& x) const { return !operator==(x); }
3387
3389 return Node->getOperand(Operand).getNode();
3390 }
3391 pointer operator->() const { return operator*(); }
3392
3393 SDNodeIterator& operator++() { // Preincrement
3394 ++Operand;
3395 return *this;
3396 }
3397 SDNodeIterator operator++(int) { // Postincrement
3398 SDNodeIterator tmp = *this; ++*this; return tmp;
3399 }
3400 size_t operator-(SDNodeIterator Other) const {
3401 assert(Node == Other.Node &&
3402 "Cannot compare iterators of two different nodes!");
3403 return Operand - Other.Operand;
3404 }
3405
3406 static SDNodeIterator begin(const SDNode *N) { return SDNodeIterator(N, 0); }
3407 static SDNodeIterator end (const SDNode *N) {
3408 return SDNodeIterator(N, N->getNumOperands());
3409 }
3410
3411 unsigned getOperand() const { return Operand; }
3412 const SDNode *getNode() const { return Node; }
3413};
3414
3415template <> struct GraphTraits<SDNode*> {
3416 using NodeRef = SDNode *;
3418
3419 static NodeRef getEntryNode(SDNode *N) { return N; }
3420
3424
3428};
3429
3430/// A representation of the largest SDNode, for use in sizeof().
3431///
3432/// This needs to be a union because the largest node differs on 32 bit systems
3433/// with 4 and 8 byte pointer alignment, respectively.
3438
3439/// The SDNode class with the greatest alignment requirement.
3441
3442namespace ISD {
3443
3444 /// Returns true if the specified node is a non-extending and unindexed load.
3445 inline bool isNormalLoad(const SDNode *N) {
3446 auto *Ld = dyn_cast<LoadSDNode>(N);
3447 return Ld && Ld->getExtensionType() == ISD::NON_EXTLOAD &&
3448 Ld->getAddressingMode() == ISD::UNINDEXED;
3449 }
3450
3451 /// Returns true if the specified node is a non-extending load.
3452 inline bool isNON_EXTLoad(const SDNode *N) {
3453 auto *Ld = dyn_cast<LoadSDNode>(N);
3454 return Ld && Ld->getExtensionType() == ISD::NON_EXTLOAD;
3455 }
3456
3457 /// Returns true if the specified node is a EXTLOAD.
3458 inline bool isEXTLoad(const SDNode *N) {
3459 auto *Ld = dyn_cast<LoadSDNode>(N);
3460 return Ld && Ld->getExtensionType() == ISD::EXTLOAD;
3461 }
3462
3463 /// Returns true if the specified node is a SEXTLOAD.
3464 inline bool isSEXTLoad(const SDNode *N) {
3465 auto *Ld = dyn_cast<LoadSDNode>(N);
3466 return Ld && Ld->getExtensionType() == ISD::SEXTLOAD;
3467 }
3468
3469 /// Returns true if the specified node is a ZEXTLOAD.
3470 inline bool isZEXTLoad(const SDNode *N) {
3471 auto *Ld = dyn_cast<LoadSDNode>(N);
3472 return Ld && Ld->getExtensionType() == ISD::ZEXTLOAD;
3473 }
3474
3475 /// Returns true if the specified node is an unindexed load.
3476 inline bool isUNINDEXEDLoad(const SDNode *N) {
3477 auto *Ld = dyn_cast<LoadSDNode>(N);
3478 return Ld && Ld->getAddressingMode() == ISD::UNINDEXED;
3479 }
3480
3481 /// Returns true if the specified node is a non-truncating
3482 /// and unindexed store.
3483 inline bool isNormalStore(const SDNode *N) {
3484 auto *St = dyn_cast<StoreSDNode>(N);
3485 return St && !St->isTruncatingStore() &&
3486 St->getAddressingMode() == ISD::UNINDEXED;
3487 }
3488
3489 /// Returns true if the specified node is an unindexed store.
3490 inline bool isUNINDEXEDStore(const SDNode *N) {
3491 auto *St = dyn_cast<StoreSDNode>(N);
3492 return St && St->getAddressingMode() == ISD::UNINDEXED;
3493 }
3494
3495 /// Returns true if the specified node is a non-extending and unindexed
3496 /// masked load.
3497 inline bool isNormalMaskedLoad(const SDNode *N) {
3498 auto *Ld = dyn_cast<MaskedLoadSDNode>(N);
3499 return Ld && Ld->getExtensionType() == ISD::NON_EXTLOAD &&
3500 Ld->getAddressingMode() == ISD::UNINDEXED;
3501 }
3502
3503 /// Returns true if the specified node is a non-extending and unindexed
3504 /// masked store.
3505 inline bool isNormalMaskedStore(const SDNode *N) {
3506 auto *St = dyn_cast<MaskedStoreSDNode>(N);
3507 return St && !St->isTruncatingStore() &&
3508 St->getAddressingMode() == ISD::UNINDEXED;
3509 }
3510
3511 /// Attempt to match a unary predicate against a scalar/splat constant or
3512 /// every element of a constant BUILD_VECTOR. The DemandedElts argument
3513 /// allows us to only collect the known bits that are shared by the requested
3514 /// vector elements.
3515 /// If AllowUndef is true, then UNDEF elements will pass nullptr to Match.
3516 template <typename ConstNodeType>
3517 bool matchUnaryPredicateImpl(SDValue Op, const APInt &DemandedElts,
3518 std::function<bool(ConstNodeType *)> Match,
3519 bool AllowUndefs = false,
3520 bool AllowTruncation = false);
3521
3522 /// Hook for matching ConstantSDNode predicate
3523 inline bool matchUnaryPredicate(SDValue Op, const APInt &DemandedElts,
3524 std::function<bool(ConstantSDNode *)> Match,
3525 bool AllowUndefs = false,
3526 bool AllowTruncation = false) {
3528 Op, DemandedElts, Match, AllowUndefs, AllowTruncation);
3529 }
3530
3532 std::function<bool(ConstantSDNode *)> Match,
3533 bool AllowUndefs = false,
3534 bool AllowTruncation = false) {
3535 EVT VT = Op.getValueType();
3536 APInt DemandedElts = VT.isFixedLengthVector()
3538 : APInt(1, 1);
3539 return matchUnaryPredicate(Op, DemandedElts, Match, AllowUndefs,
3540 AllowTruncation);
3541 }
3542
3543 /// Hook for matching ConstantFPSDNode predicate
3544 inline bool
3546 std::function<bool(ConstantFPSDNode *)> Match,
3547 bool AllowUndefs = false) {
3548 return matchUnaryPredicateImpl<ConstantFPSDNode>(Op, DemandedElts, Match,
3549 AllowUndefs);
3550 }
3551
3552 inline bool
3554 std::function<bool(ConstantFPSDNode *)> Match,
3555 bool AllowUndefs = false) {
3556 EVT VT = Op.getValueType();
3557 APInt DemandedElts = VT.isFixedLengthVector()
3559 : APInt(1, 1);
3560 return matchUnaryFpPredicate(Op, DemandedElts, Match, AllowUndefs);
3561 }
3562
3563 /// Attempt to match a binary predicate against a pair of scalar/splat
3564 /// constants or every element of a pair of constant BUILD_VECTORs.
3565 /// The DemandedElts argument allows us to only collect the
3566 /// known bits that are shared by the requested vector elements.
3567 /// If AllowUndef is true, then UNDEF elements will pass nullptr to Match.
3568 /// If AllowTypeMismatch is true then RetType + ArgTypes don't need to match.
3570 SDValue LHS, SDValue RHS, const APInt &DemandedElts,
3571 std::function<bool(ConstantSDNode *, ConstantSDNode *)> Match,
3572 bool AllowUndefs = false, bool AllowTypeMismatch = false);
3573
3576 std::function<bool(ConstantSDNode *, ConstantSDNode *)> Match,
3577 bool AllowUndefs = false, bool AllowTypeMismatch = false) {
3578 EVT VT = LHS.getValueType();
3579 APInt DemandedElts = VT.isFixedLengthVector()
3581 : APInt(1, 1);
3582 return matchBinaryPredicate(LHS, RHS, DemandedElts, Match, AllowUndefs,
3583 AllowTypeMismatch);
3584 }
3585
3586 /// Returns true if the specified value is the overflow result from one
3587 /// of the overflow intrinsic nodes.
3589 unsigned Opc = Op.getOpcode();
3590 return (Op.getResNo() == 1 &&
3591 (Opc == ISD::SADDO || Opc == ISD::UADDO || Opc == ISD::SSUBO ||
3592 Opc == ISD::USUBO || Opc == ISD::SMULO || Opc == ISD::UMULO));
3593 }
3594
3595} // end namespace ISD
3596
3597} // end namespace llvm
3598
3599#endif // LLVM_CODEGEN_SELECTIONDAGNODES_H
return SDValue()
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
aarch64 promote const
static msgpack::DocNode getNode(msgpack::DocNode DN, msgpack::Type Type, MCValue Val)
unsigned uint64_t
This file declares a class to represent arbitrary precision floating point values and provide a varie...
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Atomic ordering constants.
#define X(NUM, ENUM, NAME)
Definition ELF.h:857
This file implements the BitVector class.
#define LLVM_DECLARE_ENUM_AS_BITMASK(Enum, LargestValue)
LLVM_DECLARE_ENUM_AS_BITMASK can be used to declare an enum type as a bit set, so that bitwise operat...
Definition BitmaskEnum.h:66
static constexpr unsigned long long mask(BlockVerifier::State S)
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static std::optional< bool > isBigEndian(const SmallDenseMap< int64_t, int64_t, 8 > &MemOffset2Idx, int64_t LowestIdx)
Given a map from byte offsets in memory to indices in a load/store, determine if that map corresponds...
#define LLVM_ABI
Definition Compiler.h:215
This file contains the declarations for the subclasses of Constant, which represent the different fla...
This file defines a hash set that can be used to remove duplication of nodes in a graph.
This file defines the little GraphTraits<X> template class that should be specialized by classes that...
#define op(i)
iv Induction Variable Users
Definition IVUsers.cpp:48
#define I(x, y, z)
Definition MD5.cpp:57
#define G(x, y, z)
Definition MD5.cpp:55
This file contains the declarations for metadata subclasses.
const SmallVectorImpl< MachineOperand > & Cond
Remove Loads Into Fake Uses
#define END_TWO_BYTE_PACK()
#define BEGIN_TWO_BYTE_PACK()
static cl::opt< unsigned > MaxSteps("has-predecessor-max-steps", cl::Hidden, cl::init(8192), cl::desc("DAG combiner limit number of steps when searching DAG " "for predecessor nodes"))
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
Value * RHS
Value * LHS
Class for arbitrary precision integers.
Definition APInt.h:78
static APInt getAllOnes(unsigned numBits)
Return an APInt of a specified width with all bits set.
Definition APInt.h:231
unsigned getSrcAddressSpace() const
AddrSpaceCastSDNode(unsigned Order, const DebugLoc &dl, SDVTList VTs, unsigned SrcAS, unsigned DestAS)
unsigned getDestAddressSpace() const
static bool classof(const SDNode *N)
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
const_pointer const_iterator
Definition ArrayRef.h:48
size_t size() const
Get the array size.
Definition ArrayRef.h:141
static bool classof(const SDNode *N)
AssertAlignSDNode(unsigned Order, const DebugLoc &DL, SDVTList VTs, Align A)
This is an SDNode representing atomic operations.
static bool classof(const SDNode *N)
const SDValue & getBasePtr() const
ISD::LoadExtType getExtensionType() const
AtomicOrdering getFailureOrdering() const
For cmpxchg atomic operations, return the atomic ordering requirements when store does not occur.
AtomicSDNode(unsigned Order, const DebugLoc &dl, unsigned Opc, SDVTList VTL, EVT MemVT, MachineMemOperand *MMO, ISD::LoadExtType ETy)
bool isCompareAndSwap() const
Returns true if this SDNode represents cmpxchg atomic operation, false otherwise.
const SDValue & getVal() const
MachineBasicBlock * getBasicBlock() const
static bool classof(const SDNode *N)
LLVM Basic Block Representation.
Definition BasicBlock.h:62
static bool classof(const SDNode *N)
const BlockAddress * getBlockAddress() const
The address of a basic block.
Definition Constants.h:1088
LLVM_ABI bool getConstantRawBits(bool IsLittleEndian, unsigned DstEltSizeInBits, SmallVectorImpl< APInt > &RawBitElements, BitVector &UndefElements) const
Extract the raw bit data from a build vector of Undef, Constant or ConstantFP node elements.
static LLVM_ABI void recastRawBits(bool IsLittleEndian, unsigned DstEltSizeInBits, SmallVectorImpl< APInt > &DstBitElements, ArrayRef< APInt > SrcBitElements, BitVector &DstUndefElements, const BitVector &SrcUndefElements)
Recast bit data SrcBitElements to DstEltSizeInBits wide elements.
LLVM_ABI bool getRepeatedSequence(const APInt &DemandedElts, SmallVectorImpl< SDValue > &Sequence, BitVector *UndefElements=nullptr) const
Find the shortest repeating sequence of values in the build vector.
LLVM_ABI ConstantFPSDNode * getConstantFPSplatNode(const APInt &DemandedElts, BitVector *UndefElements=nullptr) const
Returns the demanded splatted constant FP or null if this is not a constant FP splat.
LLVM_ABI SDValue getSplatValue(const APInt &DemandedElts, BitVector *UndefElements=nullptr) const
Returns the demanded splatted value or a null value if this is not a splat.
LLVM_ABI bool isConstantSplat(APInt &SplatValue, APInt &SplatUndef, unsigned &SplatBitSize, bool &HasAnyUndefs, unsigned MinSplatBits=0, bool isBigEndian=false) const
Check if this is a constant splat, and if so, find the smallest element size that splats the vector.
LLVM_ABI ConstantSDNode * getConstantSplatNode(const APInt &DemandedElts, BitVector *UndefElements=nullptr) const
Returns the demanded splatted constant or null if this is not a constant splat.
LLVM_ABI int32_t getConstantFPSplatPow2ToLog2Int(BitVector *UndefElements, uint32_t BitWidth) const
If this is a constant FP splat and the splatted constant FP is an exact power or 2,...
LLVM_ABI std::optional< std::pair< APInt, APInt > > isArithmeticSequence() const
If this BuildVector is constant and represents an arithmetic sequence "<a, a+n, a+2n,...
LLVM_ABI bool isConstant() const
static bool classof(const SDNode *N)
ISD::CondCode get() const
static bool classof(const SDNode *N)
static LLVM_ABI bool isValueValidForType(EVT VT, const APFloat &Val)
const APFloat & getValueAPF() const
bool isPosZero() const
Return true if the value is positive zero.
bool isOne() const
Returns true if this value is exactly +1.0.
bool isNegZero() const
Return true if the value is negative zero.
bool isNaN() const
Return true if the value is a NaN.
bool isMinusOne() const
Returns true if this value is exactly -1.0.
const ConstantFP * getConstantFPValue() const
bool isExactlyValue(double V) const
We don't rely on operator== working on double values, as it returns true for things that are clearly ...
bool isNegative() const
Return true if the value is negative.
bool isInfinity() const
Return true if the value is an infinity.
static bool classof(const SDNode *N)
bool isZero() const
Return true if the value is positive or negative zero.
ConstantFP - Floating Point Values [float, double].
Definition Constants.h:420
This is the shared class of boolean and integer constants.
Definition Constants.h:87
static bool classof(const SDNode *N)
MachineConstantPoolValue * getMachineCPVal() const
MachineConstantPoolValue * MachineCPVal
const Constant * getConstVal() const
LLVM_ABI Type * getType() const
MaybeAlign getMaybeAlignValue() const
uint64_t getLimitedValue(uint64_t Limit=UINT64_MAX)
const ConstantInt * getConstantIntValue() const
uint64_t getZExtValue() const
const APInt & getAPIntValue() const
int64_t getSExtValue() const
static bool classof(const SDNode *N)
This is an important base class in LLVM.
Definition Constant.h:43
static bool classof(const SDNode *N)
const GlobalValue * getGlobal() const
A debug info location.
Definition DebugLoc.h:126
const char * getSymbol() const
static bool classof(const SDNode *N)
Utility class for floating point operations which can have information about relaxed accuracy require...
Definition Operator.h:202
bool hasAllowReassoc() const
Test if this operation may be simplified with reassociative transforms.
Definition Operator.h:267
bool hasNoNaNs() const
Test if this operation's arguments and results are assumed not-NaN.
Definition Operator.h:270
bool hasAllowReciprocal() const
Test if this operation can use reciprocal multiply instead of division.
Definition Operator.h:279
bool hasNoSignedZeros() const
Test if this operation can ignore the sign of zero.
Definition Operator.h:276
bool hasAllowContract() const
Test if this operation can be floating-point contracted (FMA).
Definition Operator.h:284
bool hasNoInfs() const
Test if this operation's arguments and results are assumed not-infinite.
Definition Operator.h:273
bool hasApproxFunc() const
Test if this operation allows approximations of math library functions or intrinsics.
Definition Operator.h:288
static bool classof(const SDNode *N)
FPStateAccessSDNode(unsigned NodeTy, unsigned Order, const DebugLoc &dl, SDVTList VTs, EVT MemVT, MachineMemOperand *MMO)
FoldingSetNode()=default
static bool classof(const SDNode *N)
LLVM_ABI unsigned getAddressSpace() const
static bool classof(const SDNode *N)
const GlobalValue * getGlobal() const
const SDValue & getValue() const
static bool classof(const SDNode *N)
unsigned getTargetFlags() const
LSBaseSDNode(ISD::NodeType NodeTy, unsigned Order, const DebugLoc &dl, SDVTList VTs, ISD::MemIndexedMode AM, EVT MemVT, MachineMemOperand *MMO)
ISD::MemIndexedMode getAddressingMode() const
Return the addressing mode for this load or store: unindexed, pre-inc, pre-dec, post-inc,...
const SDValue & getOffset() const
bool isUnindexed() const
Return true if this is NOT a pre/post inc/dec load/store.
bool isIndexed() const
Return true if this is a pre/post inc/dec load/store.
static bool classof(const SDNode *N)
MCSymbol * getLabel() const
static bool classof(const SDNode *N)
int64_t getFrameIndex() const
static bool classof(const SDNode *N)
const SDValue & getBasePtr() const
friend class SelectionDAG
const SDValue & getOffset() const
ISD::LoadExtType getExtensionType() const
Return whether this is a plain node, or one of the varieties of value-extending loads.
static bool classof(const SDNode *N)
MCSymbol * getMCSymbol() const
static bool classof(const SDNode *N)
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition MCSymbol.h:42
static bool classof(const SDNode *N)
const MDNode * getMD() const
Metadata node.
Definition Metadata.h:1069
Machine Value Type.
Abstract base class for all machine specific constantpool value subclasses.
A description of a memory reference used in the backend.
AtomicOrdering getFailureOrdering() const
For cmpxchg atomic operations, return the atomic ordering requirements when store does not occur.
bool isUnordered() const
Returns true if this memory operation doesn't have any ordering constraints other than normal aliasin...
const MDNode * getRanges() const
Return the range tag for the memory reference.
bool isAtomic() const
Returns true if this operation has an atomic ordering requirement of unordered or higher,...
SyncScope::ID getSyncScopeID() const
Returns the synchronization scope ID for this memory operation.
AtomicOrdering getMergedOrdering() const
Return a single atomic ordering that is at least as strong as both the success and failure orderings ...
AtomicOrdering getSuccessOrdering() const
Return the atomic ordering requirements for this memory operation.
const MachinePointerInfo & getPointerInfo() const
LLVM_ABI Align getAlign() const
Return the minimum known alignment in bytes of the actual memory reference.
AAMDNodes getAAInfo() const
Return the AA tags for the memory reference.
Align getBaseAlign() const
Return the minimum known alignment in bytes of the base address, without the offset.
const MDNode * getMemCacheHint() const
Return the cache hint metadata for the memory reference.
int64_t getOffset() const
For normal values, this is a byte offset added to the base address.
ArrayRef< MachineMemOperand * > memoperands() const
void clearMemRefs()
Clear out the memory reference descriptor list.
mmo_iterator memoperands_begin() const
static bool classof(const SDNode *N)
ArrayRef< MachineMemOperand * >::const_iterator mmo_iterator
mmo_iterator memoperands_end() const
static bool classof(const SDNode *N)
MaskedGatherSDNode(unsigned Order, const DebugLoc &dl, SDVTList VTs, EVT MemVT, MachineMemOperand *MMO, ISD::MemIndexType IndexType, ISD::LoadExtType ETy)
const SDValue & getPassThru() const
ISD::LoadExtType getExtensionType() const
static bool classof(const SDNode *N)
MaskedGatherScatterSDNode(ISD::NodeType NodeTy, unsigned Order, const DebugLoc &dl, SDVTList VTs, EVT MemVT, MachineMemOperand *MMO, ISD::MemIndexType IndexType)
const SDValue & getBasePtr() const
ISD::MemIndexType getIndexType() const
How is Index applied to BasePtr when computing addresses.
const SDValue & getInc() const
MaskedHistogramSDNode(unsigned Order, const DebugLoc &DL, SDVTList VTs, EVT MemVT, MachineMemOperand *MMO, ISD::MemIndexType IndexType)
const SDValue & getScale() const
static bool classof(const SDNode *N)
const SDValue & getMask() const
const SDValue & getIntID() const
const SDValue & getIndex() const
const SDValue & getBasePtr() const
ISD::MemIndexType getIndexType() const
MaskedLoadSDNode(unsigned Order, const DebugLoc &dl, SDVTList VTs, ISD::MemIndexedMode AM, ISD::LoadExtType ETy, bool IsExpanding, EVT MemVT, MachineMemOperand *MMO)
const SDValue & getBasePtr() const
ISD::LoadExtType getExtensionType() const
const SDValue & getMask() const
const SDValue & getPassThru() const
static bool classof(const SDNode *N)
const SDValue & getOffset() const
const SDValue & getMask() const
MaskedLoadStoreSDNode(ISD::NodeType NodeTy, unsigned Order, const DebugLoc &dl, SDVTList VTs, ISD::MemIndexedMode AM, EVT MemVT, MachineMemOperand *MMO)
bool isIndexed() const
Return true if this is a pre/post inc/dec load/store.
static bool classof(const SDNode *N)
const SDValue & getOffset() const
bool isUnindexed() const
Return true if this is NOT a pre/post inc/dec load/store.
ISD::MemIndexedMode getAddressingMode() const
Return the addressing mode for this load or store: unindexed, pre-inc, pre-dec, post-inc,...
MaskedScatterSDNode(unsigned Order, const DebugLoc &dl, SDVTList VTs, EVT MemVT, MachineMemOperand *MMO, ISD::MemIndexType IndexType, bool IsTrunc)
const SDValue & getValue() const
static bool classof(const SDNode *N)
bool isTruncatingStore() const
Return true if the op does a truncation before store.
bool isCompressingStore() const
Returns true if the op does a compression to the vector before storing.
MaskedStoreSDNode(unsigned Order, const DebugLoc &dl, SDVTList VTs, ISD::MemIndexedMode AM, bool isTrunc, bool isCompressing, EVT MemVT, MachineMemOperand *MMO)
const SDValue & getOffset() const
const SDValue & getBasePtr() const
const SDValue & getMask() const
const SDValue & getValue() const
bool isTruncatingStore() const
Return true if the op does a truncation before store.
static bool classof(const SDNode *N)
MemIntrinsicSDNode(unsigned Opc, unsigned Order, const DebugLoc &dl, SDVTList VTs, EVT MemoryVT, PointerUnion< MachineMemOperand *, MachineMemOperand ** > MemRefs)
static bool classof(const SDNode *N)
void refineAlignment(ArrayRef< MachineMemOperand * > NewMMOs)
Update this MemSDNode's MachineMemOperand information to reflect the alignment of NewMMOs,...
void refineAlignment(MachineMemOperand *NewMMO)
unsigned getAddressSpace() const
Return the address space for the associated pointer.
size_t getNumMemOperands() const
Return the number of memory operands.
Align getBaseAlign() const
Returns alignment and volatility of the memory access.
void refineMMOMetadata(MachineMemOperand *NewMMO)
const MDNode * getRanges() const
Returns the Ranges that describes the dereference.
LLVM_ABI MemSDNode(unsigned Opc, unsigned Order, const DebugLoc &dl, SDVTList VTs, EVT memvt, PointerUnion< MachineMemOperand *, MachineMemOperand ** > memrefs)
Constructor that supports single or multiple MMOs.
Align getAlign() const
PointerUnion< MachineMemOperand *, MachineMemOperand ** > MemRefs
Memory reference information.
bool isVolatile() const
AAMDNodes getAAInfo() const
Returns the AA info that describes the dereference.
SyncScope::ID getSyncScopeID() const
Returns the synchronization scope ID for this memory operation.
int64_t getSrcValueOffset() const
bool isSimple() const
Returns true if the memory operation is neither atomic or volatile.
AtomicOrdering getSuccessOrdering() const
Return the atomic ordering requirements for this memory operation.
MachineMemOperand * getMemOperand() const
Return the unique MachineMemOperand object describing the memory reference performed by operation.
const SDValue & getBasePtr() const
const MachinePointerInfo & getPointerInfo() const
bool hasUniqueMemOperand() const
Return true if this node has exactly one memory operand.
AtomicOrdering getMergedOrdering() const
Return a single atomic ordering that is at least as strong as both the success and failure orderings ...
const SDValue & getChain() const
bool isNonTemporal() const
void refineMMOMetadata(ArrayRef< MachineMemOperand * > NewMMOs)
Refine LLVM IR metadata for all MMOs.
bool isInvariant() const
bool isDereferenceable() const
bool isUnordered() const
Returns true if the memory operation doesn't imply any ordering constraints on surrounding memory ope...
bool isAtomic() const
Return true if the memory operation ordering is Unordered or higher.
static bool classof(const SDNode *N)
ArrayRef< MachineMemOperand * > memoperands() const
Return the memory operands for this node.
unsigned getRawSubclassData() const
Return the SubclassData value, without HasDebugValue.
EVT getMemoryVT() const
Return the type of the in-memory value.
const MDNode * getMemCacheHint() const
Returns the cache hint metadata for this memory access.
LLVM_ABI void dump() const
User-friendly dump.
Represent a mutable reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:294
A discriminated union of two or more pointer types, with the discriminator in the low bits of the poi...
This SDNode is used for PSEUDO_PROBE values, which are the function guid and the index of the basic b...
static bool classof(const SDNode *N)
const uint32_t * getRegMask() const
static bool classof(const SDNode *N)
static bool classof(const SDNode *N)
Wrapper class representing virtual and physical registers.
Definition Register.h:20
const DebugLoc & getDebugLoc() const
unsigned getIROrder() const
SDLoc(const SDValue V)
SDLoc()=default
SDLoc(const SDNode *N)
SDLoc(const Instruction *I, int Order)
static SDNodeIterator end(const SDNode *N)
size_t operator-(SDNodeIterator Other) const
SDNodeIterator operator++(int)
std::ptrdiff_t difference_type
std::forward_iterator_tag iterator_category
unsigned getOperand() const
SDNodeIterator & operator++()
bool operator==(const SDNodeIterator &x) const
const SDNode * getNode() const
static SDNodeIterator begin(const SDNode *N)
bool operator!=(const SDNodeIterator &x) const
This class provides iterator support for SDUse operands that use a specific SDNode.
bool operator!=(const use_iterator &x) const
use_iterator & operator=(const use_iterator &)=default
std::forward_iterator_tag iterator_category
bool operator==(const use_iterator &x) const
SDUse & operator*() const
Retrieve a pointer to the current user node.
use_iterator(const use_iterator &I)=default
std::forward_iterator_tag iterator_category
bool operator!=(const user_iterator &x) const
bool operator==(const user_iterator &x) const
Represents one node in the SelectionDAG.
void setDebugLoc(DebugLoc dl)
Set source location info.
uint32_t getCFIType() const
void setIROrder(unsigned Order)
Set the node ordering.
bool isStrictFPOpcode()
Test if this node is a strict floating point pseudo-op.
ArrayRef< SDUse > ops() const
char RawSDNodeBits[sizeof(uint16_t)]
const APInt & getAsAPIntVal() const
Helper method returns the APInt value of a ConstantSDNode.
bool isMachineOpcode() const
Test if this node has a post-isel opcode, directly corresponding to a MachineInstr opcode.
bool SchedulerWorklistVisited
Visited state in ScheduleDAGSDNodes::BuildSchedUnits.
void setSchedulerWorklistVisited(bool Visited)
Set visited state for ScheduleDAGSDNodes::BuildSchedUnits.
LLVM_ABI void dumprFull(const SelectionDAG *G=nullptr) const
printrFull to dbgs().
int getNodeId() const
Return the unique node id.
LLVM_ABI void dump() const
Dump this node, for debugging.
iterator_range< value_iterator > values() const
iterator_range< use_iterator > uses() const
unsigned getOpcode() const
Return the SelectionDAG opcode value for this node.
SDNode * getGluedUser() const
If this node has a glue value with a user, return the user (there is at most one).
bool isDivergent() const
bool hasOneUse() const
Return true if there is exactly one use of this node.
LLVM_ABI bool isOnlyUserOf(const SDNode *N) const
Return true if this node is the only use of N.
static LLVM_ABI const char * getIndexedModeName(ISD::MemIndexedMode AM)
iterator_range< value_op_iterator > op_values() const
unsigned getIROrder() const
Return the node ordering.
LoadSDNodeBitfields LoadSDNodeBits
void dropFlags(unsigned Mask)
static constexpr size_t getMaxNumOperands()
Return the maximum number of operands that a SDNode can hold.
int getCombinerWorklistIndex() const
Get worklist index for DAGCombiner.
value_iterator value_end() const
void setHasDebugValue(bool b)
LSBaseSDNodeBitfields LSBaseSDNodeBits
iterator_range< use_iterator > uses()
MemSDNodeBitfields MemSDNodeBits
bool getHasDebugValue() const
LLVM_ABI void dumpr() const
Dump (recursively) this node and its use-def subgraph.
SDNodeFlags getFlags() const
void setNodeId(int Id)
Set unique node id.
LLVM_ABI std::string getOperationName(const SelectionDAG *G=nullptr) const
Return the opcode of this operation for printing.
LLVM_ABI void printrFull(raw_ostream &O, const SelectionDAG *G=nullptr) const
Print a SelectionDAG node and all children down to the leaves.
size_t use_size() const
Return the number of uses of this node.
friend class SelectionDAG
LLVM_ABI void intersectFlagsWith(const SDNodeFlags Flags)
Clear any flags in this node that aren't also set in Flags.
static bool isMachineOpcode(unsigned Opc)
As above, for an opcode not held by a node.
int CombinerWorklistIndex
Index in worklist of DAGCombiner, or negative if the node is not in the worklist.
LLVM_ABI void printr(raw_ostream &OS, const SelectionDAG *G=nullptr) const
const EVT * value_iterator
StoreSDNodeBitfields StoreSDNodeBits
static SDVTList getSDVTList(MVT VT)
TypeSize getValueSizeInBits(unsigned ResNo) const
Returns MVT::getSizeInBits(getValueType(ResNo)).
MVT getSimpleValueType(unsigned ResNo) const
Return the type of a specified result as a simple type.
static bool hasPredecessorHelper(const SDNode *N, SmallPtrSetImpl< const SDNode * > &Visited, SmallVectorImpl< const SDNode * > &Worklist, unsigned int MaxSteps=0, bool TopologicalPrune=false)
Returns true if N is a predecessor of any node in Worklist.
uint64_t getAsZExtVal() const
Helper method returns the zero-extended integer value of a ConstantSDNode.
bool use_empty() const
Return true if there are no uses of this node.
unsigned getNumValues() const
Return the number of values defined/returned by this operator.
unsigned getNumOperands() const
Return the number of values used by this operation.
unsigned getMachineOpcode() const
This may only be called if isMachineOpcode returns true.
SDVTList getVTList() const
const SDValue & getOperand(unsigned Num) const
bool isMemIntrinsic() const
Test if this node is a memory intrinsic (with valid pointer information).
void setCombinerWorklistIndex(int Index)
Set worklist index for DAGCombiner.
uint64_t getConstantOperandVal(unsigned Num) const
Helper method returns the integer value of a ConstantSDNode operand.
static LLVM_ABI bool areOnlyUsersOf(ArrayRef< const SDNode * > Nodes, const SDNode *N)
Return true if all the users of N are contained in Nodes.
bool hasNUsesOfValue(unsigned NUses, unsigned Value) const
Return true if there are exactly NUSES uses of the indicated value.
use_iterator use_begin() const
Provide iteration support to walk over all uses of an SDNode.
LLVM_ABI bool isOperandOf(const SDNode *N) const
Return true if this node is an operand of N.
LLVM_ABI void print(raw_ostream &OS, const SelectionDAG *G=nullptr) const
const DebugLoc & getDebugLoc() const
Return the source location info.
friend class HandleSDNode
LLVM_ABI void printrWithDepth(raw_ostream &O, const SelectionDAG *G=nullptr, unsigned depth=100) const
Print a SelectionDAG node and children up to depth "depth." The given SelectionDAG allows target-spec...
const APInt & getConstantOperandAPInt(unsigned Num) const
Helper method returns the APInt of a ConstantSDNode operand.
uint16_t PersistentId
Unique and persistent id per SDNode in the DAG.
std::optional< APInt > bitcastToAPInt() const
LLVM_ABI void dumprWithDepth(const SelectionDAG *G=nullptr, unsigned depth=100) const
printrWithDepth to dbgs().
bool getSchedulerWorklistVisited() const
Get visited state for ScheduleDAGSDNodes::BuildSchedUnits.
static user_iterator user_end()
bool isPredecessorOf(const SDNode *N) const
Return true if this node is a predecessor of N.
LLVM_ABI bool hasPredecessor(const SDNode *N) const
Return true if N is a predecessor of this node.
void addUse(SDUse &U)
This method should only be used by the SDUse class.
LLVM_ABI bool hasAnyUseOfValue(unsigned Value) const
Return true if there are any use of the indicated value.
EVT getValueType(unsigned ResNo) const
Return the type of a specified result.
LLVM_ABI void print_details(raw_ostream &OS, const SelectionDAG *G) const
void setCFIType(uint32_t Type)
bool isUndef() const
Returns true if the node type is UNDEF or POISON.
LLVM_ABI void print_types(raw_ostream &OS, const SelectionDAG *G) const
iterator_range< user_iterator > users()
iterator_range< user_iterator > users() const
bool isVPOpcode() const
Test if this node is a vector predication operation.
bool hasPoisonGeneratingFlags() const
void setFlags(SDNodeFlags NewFlags)
user_iterator user_begin() const
Provide iteration support to walk over all users of an SDNode.
SDNode * getGluedNode() const
If this node has a glue operand, return the node to which the glue operand points.
bool isTargetOpcode() const
Test if this node has a target-specific opcode (in the <target>ISD namespace).
op_iterator op_end() const
ConstantSDNodeBitfields ConstantSDNodeBits
bool isAnyAdd() const
Returns true if the node type is ADD or PTRADD.
value_iterator value_begin() const
bool isAssert() const
Test if this node is an assert operation.
op_iterator op_begin() const
static use_iterator use_end()
LLVM_ABI void DropOperands()
Release the operands and set this node to have zero operands.
SDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs)
Create an SDNode.
SDNodeBitfields SDNodeBits
Represents a use of a SDNode.
const SDNode * getUser() const
SDUse & operator=(const SDUse &)=delete
EVT getValueType() const
Convenience function for get().getValueType().
friend class SDNode
const SDValue & get() const
If implicit conversion to SDValue doesn't work, the get() method returns the SDValue.
SDUse * getNext() const
Get the next SDUse in the use list.
SDNode * getNode() const
Convenience function for get().getNode().
friend class SelectionDAG
bool operator!=(const SDValue &V) const
Convenience function for get().operator!=.
SDUse()=default
SDUse(const SDUse &U)=delete
friend class HandleSDNode
unsigned getResNo() const
Convenience function for get().getResNo().
bool operator==(const SDValue &V) const
Convenience function for get().operator==.
unsigned getOperandNo() const
Return the operand # of this use in its user.
bool operator<(const SDValue &V) const
Convenience function for get().operator<.
SDNode * getUser()
This returns the SDNode that contains this Use.
Unlike LLVM values, Selection DAG nodes may return multiple values as the result of a computation.
bool hasOneUser() const
Return true if there is exactly one node using value ResNo of Node, in potentially multiple operands.
bool isUndef() const
SDNode * getNode() const
get the SDNode which holds the desired result
bool hasOneUse() const
Return true if there is exactly one node using value ResNo of Node, in exactly one operand.
LLVM_ABI bool isOperandOf(const SDNode *N) const
Return true if the referenced return value is an operand of N.
SDValue()=default
LLVM_ABI bool reachesChainWithoutSideEffects(SDValue Dest, unsigned Depth=2) const
Return true if this operand (which must be a chain) reaches the specified operand without crossing an...
bool operator!=(const SDValue &O) const
SDValue getValue(unsigned R) const
EVT getValueType() const
Return the ValueType of the referenced return value.
bool isTargetOpcode() const
bool isMachineOpcode() const
bool isAnyAdd() const
TypeSize getValueSizeInBits() const
Returns the size of the value in bits.
const DebugLoc & getDebugLoc() const
SDNode * operator->() const
bool operator==(const SDValue &O) const
const SDValue & getOperand(unsigned i) const
bool use_empty() const
Return true if there are no nodes using value ResNo of Node.
bool operator<(const SDValue &O) const
const APInt & getConstantOperandAPInt(unsigned i) const
uint64_t getScalarValueSizeInBits() const
unsigned getResNo() const
get the index which selects a specific result in the SDNode
uint64_t getConstantOperandVal(unsigned i) const
MVT getSimpleValueType() const
Return the simple ValueType of the referenced return value.
void setNode(SDNode *N)
set the SDNode
unsigned getMachineOpcode() const
unsigned getOpcode() const
unsigned getNumOperands() const
This is used to represent a portion of an LLVM function in a low-level Data Dependence DAG representa...
int getMaskElt(unsigned Idx) const
static int getSplatMaskIndex(ArrayRef< int > Mask)
ShuffleVectorSDNode(SDVTList VTs, unsigned Order, const DebugLoc &dl, const int *M)
ArrayRef< int > getMask() const
static void commuteMask(MutableArrayRef< int > Mask)
Change values in a shuffle permute mask assuming the two vector operands have swapped position.
static bool classof(const SDNode *N)
static LLVM_ABI bool isSplatMask(ArrayRef< int > Mask)
size_type size() const
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void append(ItTy in_start, ItTy in_end)
Add the specified range to the end of the SmallVector.
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
const Value * getValue() const
Return the contained Value.
static bool classof(const SDNode *N)
const SDValue & getBasePtr() const
const SDValue & getOffset() const
const SDValue & getValue() const
bool isTruncatingStore() const
Return true if the op does a truncation before store.
static bool classof(const SDNode *N)
Completely target-dependent object reference.
TargetIndexSDNode(int Idx, SDVTList VTs, int64_t Ofs, unsigned TF)
static bool classof(const SDNode *N)
unsigned getTargetFlags() const
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
const SDValue & getMask() const
static bool classof(const SDNode *N)
bool isIndexed() const
Return true if this is a pre/post inc/dec load/store.
VPBaseLoadStoreSDNode(ISD::NodeType NodeTy, unsigned Order, const DebugLoc &DL, SDVTList VTs, ISD::MemIndexedMode AM, EVT MemVT, MachineMemOperand *MMO)
const SDValue & getOffset() const
ISD::MemIndexedMode getAddressingMode() const
Return the addressing mode for this load or store: unindexed, pre-inc, pre-dec, post-inc,...
const SDValue & getVectorLength() const
bool isUnindexed() const
Return true if this is NOT a pre/post inc/dec load/store.
const SDValue & getBasePtr() const
VPGatherSDNode(unsigned Order, const DebugLoc &dl, SDVTList VTs, EVT MemVT, MachineMemOperand *MMO, ISD::MemIndexType IndexType)
static bool classof(const SDNode *N)
const SDValue & getScale() const
ISD::MemIndexType getIndexType() const
How is Index applied to BasePtr when computing addresses.
const SDValue & getVectorLength() const
const SDValue & getIndex() const
VPGatherScatterSDNode(ISD::NodeType NodeTy, unsigned Order, const DebugLoc &dl, SDVTList VTs, EVT MemVT, MachineMemOperand *MMO, ISD::MemIndexType IndexType)
const SDValue & getBasePtr() const
static bool classof(const SDNode *N)
const SDValue & getMask() const
const SDValue & getMask() const
const SDValue & getBasePtr() const
VPLoadFFSDNode(unsigned Order, const DebugLoc &DL, SDVTList VTs, EVT MemVT, MachineMemOperand *MMO)
static bool classof(const SDNode *N)
const SDValue & getVectorLength() const
const SDValue & getOffset() const
const SDValue & getVectorLength() const
ISD::LoadExtType getExtensionType() const
const SDValue & getMask() const
VPLoadSDNode(unsigned Order, const DebugLoc &dl, SDVTList VTs, ISD::MemIndexedMode AM, ISD::LoadExtType ETy, bool isExpanding, EVT MemVT, MachineMemOperand *MMO)
const SDValue & getBasePtr() const
static bool classof(const SDNode *N)
static bool classof(const SDNode *N)
VPScatterSDNode(unsigned Order, const DebugLoc &dl, SDVTList VTs, EVT MemVT, MachineMemOperand *MMO, ISD::MemIndexType IndexType)
const SDValue & getValue() const
const SDValue & getMask() const
VPStoreSDNode(unsigned Order, const DebugLoc &dl, SDVTList VTs, ISD::MemIndexedMode AM, bool isTrunc, bool isCompressing, EVT MemVT, MachineMemOperand *MMO)
static bool classof(const SDNode *N)
const SDValue & getVectorLength() const
bool isCompressingStore() const
Returns true if the op does a compression to the vector before storing.
const SDValue & getOffset() const
bool isTruncatingStore() const
Return true if this is a truncating store.
const SDValue & getBasePtr() const
const SDValue & getValue() const
const SDValue & getMask() const
ISD::LoadExtType getExtensionType() const
const SDValue & getStride() const
const SDValue & getOffset() const
const SDValue & getVectorLength() const
static bool classof(const SDNode *N)
const SDValue & getBasePtr() const
VPStridedLoadSDNode(unsigned Order, const DebugLoc &DL, SDVTList VTs, ISD::MemIndexedMode AM, ISD::LoadExtType ETy, bool IsExpanding, EVT MemVT, MachineMemOperand *MMO)
const SDValue & getBasePtr() const
const SDValue & getMask() const
const SDValue & getValue() const
bool isTruncatingStore() const
Return true if this is a truncating store.
VPStridedStoreSDNode(unsigned Order, const DebugLoc &DL, SDVTList VTs, ISD::MemIndexedMode AM, bool IsTrunc, bool IsCompressing, EVT MemVT, MachineMemOperand *MMO)
const SDValue & getOffset() const
const SDValue & getVectorLength() const
static bool classof(const SDNode *N)
const SDValue & getStride() const
bool isCompressingStore() const
Returns true if the op does a compression to the vector before storing.
friend class SelectionDAG
static bool classof(const SDNode *N)
LLVM Value Representation.
Definition Value.h:75
Type * getType() const
All values are typed, get the type of this value.
Definition Value.h:255
A range adaptor for a pair of iterators.
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
This file defines the ilist_node class template, which is a convenient base class for creating classe...
This provides a very simple, boring adaptor for a begin and end iterator into a range type.
#define UINT64_MAX
Definition DataTypes.h:77
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
ISD namespace - This namespace contains an enum which represents all of the SelectionDAG node types a...
Definition ISDOpcodes.h:24
LLVM_ABI bool isConstantSplatVectorAllOnes(const SDNode *N, bool BuildVectorOnly=false)
Return true if the specified node is a BUILD_VECTOR or SPLAT_VECTOR where all of the elements are ~0 ...
bool isNormalMaskedLoad(const SDNode *N)
Returns true if the specified node is a non-extending and unindexed masked load.
bool isNormalMaskedStore(const SDNode *N)
Returns true if the specified node is a non-extending and unindexed masked store.
bool isNON_EXTLoad(const SDNode *N)
Returns true if the specified node is a non-extending load.
bool matchUnaryPredicateImpl(SDValue Op, const APInt &DemandedElts, std::function< bool(ConstNodeType *)> Match, bool AllowUndefs=false, bool AllowTruncation=false)
Attempt to match a unary predicate against a scalar/splat constant or every element of a constant BUI...
NodeType
ISD::NodeType enum - This enum defines the target-independent operators for a SelectionDAG.
Definition ISDOpcodes.h:41
@ TargetConstantPool
Definition ISDOpcodes.h:189
@ MDNODE_SDNODE
MDNODE_SDNODE - This is a node that holdes an MDNode*, which is used to reference metadata in the IR.
@ PTRADD
PTRADD represents pointer arithmetic semantics, for targets that opt in using shouldPreservePtrArith(...
@ POISON
POISON - A poison node.
Definition ISDOpcodes.h:236
@ ATOMIC_LOAD_FMINIMUMNUM
@ MLOAD
Masked load and store - consecutive vector load and store operations with additional mask operand tha...
@ TargetBlockAddress
Definition ISDOpcodes.h:191
@ DEACTIVATION_SYMBOL
Untyped node storing deactivation symbol reference (DeactivationSymbolSDNode).
@ ATOMIC_STORE
OUTCHAIN = ATOMIC_STORE(INCHAIN, val, ptr) This corresponds to "store atomic" instruction.
@ ADD
Simple integer binary arithmetic operators.
Definition ISDOpcodes.h:264
@ LOAD
LOAD and STORE have token chains as their first operand, then the same operands as an LLVM load/store...
@ ATOMIC_LOAD_USUB_COND
@ GlobalAddress
Definition ISDOpcodes.h:88
@ ATOMIC_CMP_SWAP_WITH_SUCCESS
Val, Success, OUTCHAIN = ATOMIC_CMP_SWAP_WITH_SUCCESS(INCHAIN, ptr, cmp, swap) N.b.
@ 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
@ ANNOTATION_LABEL
ANNOTATION_LABEL - Represents a mid basic block label used by annotations.
@ TargetExternalSymbol
Definition ISDOpcodes.h:190
@ TargetJumpTable
Definition ISDOpcodes.h:188
@ TargetIndex
TargetIndex - Like a constant pool entry, but with completely target-dependent semantics.
Definition ISDOpcodes.h:198
@ SSUBO
Same for subtraction.
Definition ISDOpcodes.h:352
@ ATOMIC_LOAD
Val, OUTCHAIN = ATOMIC_LOAD(INCHAIN, ptr) This corresponds to "load atomic" instruction.
@ UNDEF
UNDEF - An undefined node.
Definition ISDOpcodes.h:233
@ AssertAlign
AssertAlign - These nodes record if a register contains a value that has a known alignment and the tr...
Definition ISDOpcodes.h:69
@ BasicBlock
Various leaf nodes.
Definition ISDOpcodes.h:81
@ SADDO
RESULT, BOOL = [SU]ADDO(LHS, RHS) - Overflow-aware nodes for addition.
Definition ISDOpcodes.h:348
@ TargetGlobalAddress
TargetGlobalAddress - Like GlobalAddress, but the DAG does no folding or anything else with this node...
Definition ISDOpcodes.h:185
@ STRICT_FP_TO_FP16
@ ATOMIC_LOAD_FMAXIMUM
@ STRICT_FP16_TO_FP
@ 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:651
@ TargetConstantFP
Definition ISDOpcodes.h:180
@ ATOMIC_CMP_SWAP
Val, OUTCHAIN = ATOMIC_CMP_SWAP(INCHAIN, ptr, cmp, swap) For double-word atomic operations: ValLo,...
@ SMULO
Same for multiplication.
Definition ISDOpcodes.h:356
@ ATOMIC_LOAD_FMINIMUM
@ TargetFrameIndex
Definition ISDOpcodes.h:187
@ LIFETIME_START
This corresponds to the llvm.lifetime.
@ MGATHER
Masked gather and scatter - load and store operations for a vector of random addresses with additiona...
@ STRICT_BF16_TO_FP
@ ATOMIC_LOAD_FMAXIMUMNUM
@ ATOMIC_LOAD_UDEC_WRAP
@ TargetConstant
TargetConstant* - Like Constant*, but the DAG does not do any folding, simplification,...
Definition ISDOpcodes.h:179
@ 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
@ FREEZE
FREEZE - FREEZE(VAL) returns an arbitrary value if VAL is UNDEF (or is evaluated to UNDEF),...
Definition ISDOpcodes.h:241
@ TokenFactor
TokenFactor - This node takes multiple tokens as input and produces a single token result.
Definition ISDOpcodes.h:53
@ ATOMIC_SWAP
Val, OUTCHAIN = ATOMIC_SWAP(INCHAIN, ptr, amt) Val, OUTCHAIN = ATOMIC_LOAD_[OpName](INCHAIN,...
@ ExternalSymbol
Definition ISDOpcodes.h:93
@ ADDRSPACECAST
ADDRSPACECAST - This operator converts between pointers of different address spaces.
@ EXPERIMENTAL_VECTOR_HISTOGRAM
Experimental vector histogram intrinsic Operands: Input Chain, Inc, Mask, Base, Index,...
@ 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
@ SET_FPENV_MEM
Sets the current floating point environment.
@ TargetGlobalTLSAddress
Definition ISDOpcodes.h:186
@ BUILD_VECTOR
BUILD_VECTOR(ELT0, ELT1, ELT2, ELT3,...) - Return a fixed-width vector with the specified,...
Definition ISDOpcodes.h:558
bool isOverflowIntrOpRes(SDValue Op)
Returns true if the specified value is the overflow result from one of the overflow intrinsic nodes.
LLVM_ABI bool isBuildVectorOfConstantSDNodes(const SDNode *N)
Return true if the specified node is a BUILD_VECTOR node of all ConstantSDNode or undef.
bool isNormalStore(const SDNode *N)
Returns true if the specified node is a non-truncating and unindexed store.
bool isZEXTLoad(const SDNode *N)
Returns true if the specified node is a ZEXTLOAD.
LLVM_ABI bool isConstantSplatVectorAllZeros(const SDNode *N, bool BuildVectorOnly=false)
Return true if the specified node is a BUILD_VECTOR or SPLAT_VECTOR where all of the elements are 0 o...
LLVM_ABI bool isVectorShrinkable(const SDNode *N, unsigned NewEltSize, bool Signed)
Returns true if the specified node is a vector where all elements can be truncated to the specified e...
bool isUNINDEXEDLoad(const SDNode *N)
Returns true if the specified node is an unindexed load.
LLVM_ABI bool matchBinaryPredicate(SDValue LHS, SDValue RHS, const APInt &DemandedElts, std::function< bool(ConstantSDNode *, ConstantSDNode *)> Match, bool AllowUndefs=false, bool AllowTypeMismatch=false)
Attempt to match a binary predicate against a pair of scalar/splat constants or every element of a pa...
bool isEXTLoad(const SDNode *N)
Returns true if the specified node is a EXTLOAD.
LLVM_ABI bool allOperandsUndef(const SDNode *N)
Return true if the node has at least one operand and all operands of the specified node are ISD::UNDE...
LLVM_ABI bool isFreezeUndef(const SDNode *N)
Return true if the specified node is FREEZE(UNDEF).
MemIndexType
MemIndexType enum - This enum defines how to interpret MGATHER/SCATTER's index parameter when calcula...
LLVM_ABI bool isBuildVectorAllZeros(const SDNode *N)
Return true if the specified node is a BUILD_VECTOR where all of the elements are 0 or undef.
LLVM_ABI bool isConstantSplatVector(const SDNode *N, APInt &SplatValue)
Node predicates.
bool isUNINDEXEDStore(const SDNode *N)
Returns true if the specified node is an unindexed store.
MemIndexedMode
MemIndexedMode enum - This enum defines the load / store indexed addressing modes.
LLVM_ABI bool isBuildVectorOfConstantFPSDNodes(const SDNode *N)
Return true if the specified node is a BUILD_VECTOR node of all ConstantFPSDNode or undef.
bool isSEXTLoad(const SDNode *N)
Returns true if the specified node is a SEXTLOAD.
bool matchUnaryFpPredicate(SDValue Op, const APInt &DemandedElts, std::function< bool(ConstantFPSDNode *)> Match, bool AllowUndefs=false)
Hook for matching ConstantFPSDNode predicate.
CondCode
ISD::CondCode enum - These are ordered carefully to make the bitfields below work out,...
LLVM_ABI bool isBuildVectorAllOnes(const SDNode *N)
Return true if the specified node is a BUILD_VECTOR where all of the elements are ~0 or undef.
LoadExtType
LoadExtType enum - This enum defines the three variants of LOADEXT (load with extension).
LLVM_ABI bool isVPOpcode(unsigned Opcode)
Whether this is a vector-predicated Opcode.
bool matchUnaryPredicate(SDValue Op, const APInt &DemandedElts, std::function< bool(ConstantSDNode *)> Match, bool AllowUndefs=false, bool AllowTruncation=false)
Hook for matching ConstantSDNode predicate.
bool isNormalLoad(const SDNode *N)
Returns true if the specified node is a non-extending and unindexed load.
This is an optimization pass for GlobalISel generic memory operations.
@ Offset
Definition DWP.cpp:577
detail::zippy< detail::zip_shortest, T, U, Args... > zip(T &&t, U &&u, Args &&...args)
zip iterator for two or more iteratable types.
Definition STLExtras.h:830
LLVM_ABI SDValue peekThroughExtractSubvectors(SDValue V)
Return the non-extracted vector source operand of V if it exists.
SDValue peekThroughFreeze(SDValue V)
Return the non-frozen source operand of V if it exists.
LLVM_ABI bool isNullConstant(SDValue V)
Returns true if V is a constant integer zero.
LLVM_ABI bool isAllOnesOrAllOnesSplat(const MachineInstr &MI, const MachineRegisterInfo &MRI, bool AllowUndefs=false)
Return true if the value is a constant -1 integer or a splatted vector of a constant -1 integer (with...
Definition Utils.cpp:1557
APInt operator&(APInt a, const APInt &b)
Definition APInt.h:2150
LLVM_ABI SDValue getBitwiseNotOperand(SDValue V, SDValue Mask, bool AllowUndefs)
If V is a bitwise not, returns the inverted operand.
LLVM_ABI SDValue peekThroughBitcasts(SDValue V)
Return the non-bitcasted source operand of V if it exists.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
bool isIntOrFPConstant(SDValue V)
Return true if V is either a integer or FP constant.
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
LLVM_ABI bool isOneOrOneSplatFP(SDValue V, bool AllowUndefs=false)
Return true if the value is a constant floating-point value, or a splatted vector of a constant float...
LLVM_ABI bool isNullOrNullSplat(const MachineInstr &MI, const MachineRegisterInfo &MRI, bool AllowUndefs=false)
Return true if the value is a constant 0 integer or a splatted vector of a constant 0 integer (with n...
Definition Utils.cpp:1539
LLVM_ABI bool isMinSignedConstant(SDValue V)
Returns true if V is a constant min signed integer value.
LLVM_ABI ConstantFPSDNode * isConstOrConstSplatFP(SDValue N, bool AllowUndefs=false)
Returns the SDNode if it is a constant splat BuildVector or constant float.
auto map_range(ContainerTy &&C, FuncTy F)
Return a range that applies F to the elements of C.
Definition STLExtras.h:365
LLVM_ABI bool isBitwiseNot(SDValue V, bool AllowUndefs=false)
Returns true if V is a bitwise not operation.
LLVM_ABI SDValue peekThroughInsertVectorElt(SDValue V, const APInt &DemandedElts)
Recursively peek through INSERT_VECTOR_ELT nodes, returning the source vector operand of V,...
LLVM_ABI void checkForCycles(const SelectionDAG *DAG, bool force=false)
LLVM_ABI SDValue peekThroughTruncates(SDValue V)
Return the non-truncated source operand of V if it exists.
AlignedCharArrayUnion< AtomicSDNode, TargetIndexSDNode, BlockAddressSDNode, GlobalAddressSDNode, PseudoProbeSDNode > LargestSDNode
A representation of the largest SDNode, for use in sizeof().
GlobalAddressSDNode MostAlignedSDNode
The SDNode class with the greatest alignment requirement.
bool hasSingleElement(ContainerTy &&C)
Returns true if the given container only contains a single element.
Definition STLExtras.h:299
LLVM_ABI SDValue peekThroughOneUseBitcasts(SDValue V)
Return the non-bitcasted and one-use source operand of V if it exists.
iterator_range< filter_iterator< detail::IterOfRange< RangeT >, PredicateT > > make_filter_range(RangeT &&Range, PredicateT Pred)
Convenience function that takes a range of elements and a predicate, and return a new filter_iterator...
Definition STLExtras.h:551
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
Definition Casting.h:547
LLVM_ABI bool isOneOrOneSplat(SDValue V, bool AllowUndefs=false)
Return true if the value is a constant 1 integer or a splatted vector of a constant 1 integer (with n...
AtomicOrdering
Atomic ordering for LLVM's memory model.
@ Other
Any other memory.
Definition ModRef.h:68
constexpr NextUseDistance max(NextUseDistance A, NextUseDistance B)
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Count
Definition InstrProf.h:145
LLVM_ABI bool isNullConstantOrUndef(SDValue V)
Returns true if V is a constant integer zero or an UNDEF node.
DWARFExpression::Operation Op
ArrayRef(const T &OneElt) -> ArrayRef< T >
LLVM_ABI ConstantSDNode * isConstOrConstSplat(SDValue N, bool AllowUndefs=false, bool AllowTruncation=false)
Returns the SDNode if it is a constant splat BuildVector or constant int.
constexpr unsigned BitWidth
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1917
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:559
LLVM_ABI bool isZeroOrZeroSplat(SDValue N, bool AllowUndefs=false)
Return true if the value is a constant 0 integer or a splatted vector of a constant 0 integer (with n...
LLVM_ABI bool isOneConstant(SDValue V)
Returns true if V is a constant integer one.
LLVM_ABI bool isNullFPConstant(SDValue V)
Returns true if V is an FP constant with a value of positive zero.
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Next
Definition InstrProf.h:147
bool all_equal(std::initializer_list< T > Values)
Returns true if all Values in the initializer lists are equal or the list.
Definition STLExtras.h:2166
LLVM_ABI bool isZeroOrZeroSplatFP(SDValue N, bool AllowUndefs=false)
Return true if the value is a constant (+/-)0.0 floating-point value or a splatted vector thereof (wi...
APInt operator|(APInt a, const APInt &b)
Definition APInt.h:2170
LLVM_ABI bool isOnesOrOnesSplat(SDValue N, bool AllowUndefs=false)
Return true if the value is a constant 1 integer or a splatted vector of a constant 1 integer (with n...
SDValue peekThroughOneUseFreeze(SDValue V)
Return the non-frozen source operand of V if it exists and V has a single use.
LLVM_ABI bool isAllOnesConstant(SDValue V)
Returns true if V is an integer constant with all bits set.
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:878
#define N
A collection of metadata nodes that might be associated with a memory access used by the alias-analys...
Definition Metadata.h:763
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
A suitably aligned and sized character array member which can hold elements of any type.
Definition AlignOf.h:22
static unsigned getHashValue(const SDValue &Val)
static bool isEqual(const SDValue &LHS, const SDValue &RHS)
An information struct used to provide DenseMap with the various necessary components for a given valu...
Extended Value Type.
Definition ValueTypes.h:35
TypeSize getSizeInBits() const
Return the size of the specified value type in bits.
Definition ValueTypes.h:396
MVT getSimpleVT() const
Return the SimpleValueType held in the specified simple EVT.
Definition ValueTypes.h:339
uint64_t getFixedSizeInBits() const
Return the size of the specified fixed width value type in bits.
Definition ValueTypes.h:404
bool isFixedLengthVector() const
Definition ValueTypes.h:199
EVT getScalarType() const
If this is a vector type, return the element type, otherwise return this.
Definition ValueTypes.h:346
unsigned getVectorNumElements() const
Given a vector type, return the number of elements it contains.
Definition ValueTypes.h:359
static ChildIteratorType child_begin(NodeRef N)
static ChildIteratorType child_end(NodeRef N)
static NodeRef getEntryNode(SDNode *N)
This class contains a discriminated union of information about pointers in memory operands,...
LLVM_ABI unsigned getAddrSpace() const
Return the LLVM IR address space number that this pointer points into.
This struct is a compact representation of a valid (power of two) or undefined (0) alignment.
Definition Alignment.h:106
These are IR-level optimization flags that may be propagated to SDNodes.
void setNoConvergent(bool b)
void copyFMF(const FPMathOperator &FPMO)
Propagate the fast-math-flags from an IR FPMathOperator.
void setNoFPExcept(bool b)
void setAllowContract(bool b)
void setNoSignedZeros(bool b)
bool hasNoFPExcept() const
bool operator==(const SDNodeFlags &Other) const
void operator&=(const SDNodeFlags &OtherFlags)
void operator|=(const SDNodeFlags &OtherFlags)
bool hasNoUnsignedWrap() const
void setAllowReassociation(bool b)
void setUnpredictable(bool b)
void setAllowReciprocal(bool b)
bool hasAllowContract() const
bool hasNoSignedZeros() const
bool hasApproximateFuncs() const
bool hasUnpredictable() const
void setApproximateFuncs(bool b)
bool hasNoSignedWrap() const
SDNodeFlags(unsigned Flags=SDNodeFlags::None)
Default constructor turns off all optimization flags.
bool hasAllowReciprocal() const
bool hasNoConvergent() const
bool hasAllowReassociation() const
void setNoUnsignedWrap(bool b)
void setNoSignedWrap(bool b)
Iterator for directly iterating over the operand SDValue's.
const SDValue & operator*() const
This represents a list of ValueType's that has been intern'd by a SelectionDAG.
unsigned int NumVTs
static SimpleType getSimplifiedValue(SDUse &Val)
static SimpleType getSimplifiedValue(SDValue &Val)
static SimpleType getSimplifiedValue(const SDValue &Val)
Define a template that can be specialized by smart pointers to reflect the fact that they are automat...
Definition Casting.h:34