LLVM 24.0.0git
SelectionDAG.h
Go to the documentation of this file.
1//===- llvm/CodeGen/SelectionDAG.h - InstSelection DAG ----------*- 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 SelectionDAG class, and transitively defines the
10// SDNode class and subclasses.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_CODEGEN_SELECTIONDAG_H
15#define LLVM_CODEGEN_SELECTIONDAG_H
16
17#include "llvm/ADT/ArrayRef.h"
18#include "llvm/ADT/DenseMap.h"
19#include "llvm/ADT/DenseSet.h"
20#include "llvm/ADT/FoldingSet.h"
22#include "llvm/ADT/StringMap.h"
23#include "llvm/ADT/ilist.h"
24#include "llvm/ADT/iterator.h"
35#include "llvm/IR/DebugLoc.h"
36#include "llvm/IR/Metadata.h"
46#include <cassert>
47#include <cstdint>
48#include <functional>
49#include <map>
50#include <set>
51#include <string>
52#include <tuple>
53#include <utility>
54#include <vector>
55
56namespace llvm {
57
58class DIExpression;
59class DILabel;
60class DIVariable;
61class Function;
62class Pass;
63class Type;
64template <class GraphType> struct GraphTraits;
65template <typename T, unsigned int N> class SmallSetVector;
66template <typename T, typename Enable> struct FoldingSetTrait;
67class BatchAAResults;
68class BlockAddress;
70class Constant;
71class ConstantFP;
72class ConstantInt;
73class DataLayout;
74struct fltSemantics;
76class FunctionVarLocs;
77class GlobalValue;
78struct KnownBits;
79class LLVMContext;
82class MCSymbol;
84class SDDbgValue;
85class SDDbgOperand;
86class SDDbgLabel;
87class SelectionDAG;
90class TargetLowering;
91class TargetMachine;
93class Value;
94
95template <typename T> class GenericSSAContext;
97template <typename T> class GenericUniformityInfo;
99
100/// The key SelectionDAG uniques SDNodes by. \p Tail carries the opcode
101/// specific data, which most opcodes do not have, still serialized; a lookup
102/// site appends it through the FoldingSetNodeID-shaped forwarders below.
103struct SDNodeKey {
104 unsigned Opcode;
105 const EVT *VTs;
108 /// Backs \p Ops when the key is built from a node; empty otherwise. No
109 /// inline capacity: only that one path pays for the storage.
111
113 : Opcode(Opcode), VTs(VTList.VTs), Ops(Ops) {}
114 LLVM_ABI explicit SDNodeKey(const SDNode &N);
115
116 SDNodeKey(const SDNodeKey &) = delete;
117 SDNodeKey &operator=(const SDNodeKey &) = delete;
118
119 // Forward to FoldingSetNodeID's own overload set, so a lookup site resolves
120 // the same way it did when profiling into one.
121 template <typename T> void AddInteger(T I) { Tail.AddInteger(I); }
122 void AddBoolean(bool B) { Tail.AddBoolean(B); }
123 void AddPointer(const void *P) { Tail.AddPointer(P); }
124};
125
128
129 static KeyTy getKey(const SDNode &N) { return SDNodeKey(N); }
130
131 static unsigned getHashValue(const KeyTy &Key) {
132 unsigned H = detail::combineHashValue(
134 for (const SDValue &Op : Key.Ops)
136 for (unsigned Word : Key.Tail.getRef())
138 return H;
139 }
140
141 LLVM_ABI static bool isEqual(const KeyTy &Key, const SDNode &N);
142};
143
144template <> struct ilist_alloc_traits<SDNode> {
145 static void deleteNode(SDNode *) {
146 llvm_unreachable("ilist_traits<SDNode> shouldn't see a deleteNode call!");
147 }
148};
149
150/// Keeps track of dbg_value information through SDISel. We do
151/// not build SDNodes for these so as not to perturb the generated code;
152/// instead the info is kept off to the side in this structure. Each SDNode may
153/// have one or more associated dbg_value entries. This information is kept in
154/// DbgValMap.
155/// Byval parameters are handled separately because they don't use alloca's,
156/// which busts the normal mechanism. There is good reason for handling all
157/// parameters separately: they may not have code generated for them, they
158/// should always go at the beginning of the function regardless of other code
159/// motion, and debug info for them is potentially useful even if the parameter
160/// is unused. Right now only byval parameters are handled separately.
162 BumpPtrAllocator Alloc;
164 SmallVector<SDDbgValue*, 32> ByvalParmDbgValues;
167 DbgValMapType DbgValMap;
168
169public:
170 SDDbgInfo() = default;
171 SDDbgInfo(const SDDbgInfo &) = delete;
172 SDDbgInfo &operator=(const SDDbgInfo &) = delete;
173
174 LLVM_ABI void add(SDDbgValue *V, bool isParameter);
175
176 void add(SDDbgLabel *L) { DbgLabels.push_back(L); }
177
178 /// Invalidate all DbgValues attached to the node and remove
179 /// it from the Node-to-DbgValues map.
180 LLVM_ABI void erase(const SDNode *Node);
181
182 void clear() {
183 DbgValMap.clear();
184 DbgValues.clear();
185 ByvalParmDbgValues.clear();
186 DbgLabels.clear();
187 Alloc.Reset();
188 }
189
190 BumpPtrAllocator &getAlloc() { return Alloc; }
191
192 bool empty() const {
193 return DbgValues.empty() && ByvalParmDbgValues.empty() && DbgLabels.empty();
194 }
195
197 auto I = DbgValMap.find(Node);
198 if (I != DbgValMap.end())
199 return I->second;
200 return ArrayRef<SDDbgValue*>();
201 }
202
205
206 DbgIterator DbgBegin() { return DbgValues.begin(); }
207 DbgIterator DbgEnd() { return DbgValues.end(); }
208 DbgIterator ByvalParmDbgBegin() { return ByvalParmDbgValues.begin(); }
209 DbgIterator ByvalParmDbgEnd() { return ByvalParmDbgValues.end(); }
210 DbgLabelIterator DbgLabelBegin() { return DbgLabels.begin(); }
211 DbgLabelIterator DbgLabelEnd() { return DbgLabels.end(); }
212};
213
214LLVM_ABI void checkForCycles(const SelectionDAG *DAG, bool force = false);
215
216/// This is used to represent a portion of an LLVM function in a low-level
217/// Data Dependence DAG representation suitable for instruction selection.
218/// This DAG is constructed as the first step of instruction selection in order
219/// to allow implementation of machine specific optimizations
220/// and code simplifications.
221///
222/// The representation used by the SelectionDAG is a target-independent
223/// representation, which has some similarities to the GCC RTL representation,
224/// but is significantly more simple, powerful, and is a graph form instead of a
225/// linear form.
226///
228 const TargetMachine &TM;
229 const SelectionDAGTargetInfo *TSI = nullptr;
230 const TargetLowering *TLI = nullptr;
231 const TargetLibraryInfo *LibInfo = nullptr;
232 const LibcallLoweringInfo *Libcalls = nullptr;
233
234 const FunctionVarLocs *FnVarLocs = nullptr;
235 MachineFunction *MF;
236 MachineFunctionAnalysisManager *MFAM = nullptr;
237 LLVMContext *Context;
238 CodeGenOptLevel OptLevel;
239
240 UniformityInfo *UA = nullptr;
241 FunctionLoweringInfo * FLI = nullptr;
242
243 ProfileSummaryInfo *PSI = nullptr;
244 BlockFrequencyInfo *BFI = nullptr;
245
246 /// Uniquing of VT lists. Each key aliases the EVT array that the returned
247 /// SDVTList points at, allocated from \p Allocator.
248 struct VTListInfo {
249 static unsigned getHashValue(ArrayRef<EVT> VTs) {
250 unsigned H = VTs.size();
251 for (EVT VT : VTs)
253 H, DenseMapInfo<intptr_t>::getHashValue(VT.getRawBits()));
254 return H;
255 }
257 return LHS == RHS;
258 }
259 };
260 DenseSet<ArrayRef<EVT>, VTListInfo> VTLists;
261
262 /// Pool allocation for misc. objects that are created once per SelectionDAG.
263 BumpPtrAllocator Allocator;
264
265 /// The starting token.
266 SDNode EntryNode;
267
268 /// The root of the entire DAG.
269 SDValue Root;
270
271 /// A linked list of nodes in the current DAG.
272 ilist<SDNode> AllNodes;
273
274 /// The AllocatorType for allocating SDNodes. We use
275 /// pool allocation with recycling.
276 using NodeAllocatorType = RecyclingAllocator<BumpPtrAllocator, SDNode,
277 sizeof(LargestSDNode),
278 alignof(MostAlignedSDNode)>;
279
280 /// Pool allocation for nodes.
281 NodeAllocatorType NodeAllocator;
282
283 /// This structure is used to memoize nodes, automatically performing
284 /// CSE with existing nodes when a duplicate is requested.
286
287 /// Pool allocation for machine-opcode SDNode operands.
288 BumpPtrAllocator OperandAllocator;
289 ArrayRecycler<SDUse> OperandRecycler;
290
291 /// Tracks dbg_value and dbg_label information through SDISel.
292 SDDbgInfo *DbgInfo;
293
294 using CallSiteInfo = MachineFunction::CallSiteInfo;
295 using CalledGlobalInfo = MachineFunction::CalledGlobalInfo;
296
297 struct NodeExtraInfo {
298 CallSiteInfo CSInfo;
299 MDNode *HeapAllocSite = nullptr;
300 MDNode *PCSections = nullptr;
301 MDNode *MMRA = nullptr;
302 CalledGlobalInfo CalledGlobal{};
303 bool NoMerge = false;
304 };
305 /// Out-of-line extra information for SDNodes.
307
308 /// PersistentId counter to be used when inserting the next
309 /// SDNode to this SelectionDAG. We do not place that under
310 /// `#if LLVM_ENABLE_ABI_BREAKING_CHECKS` intentionally because
311 /// it adds unneeded complexity without noticeable
312 /// benefits (see discussion with @thakis in D120714).
313 uint16_t NextPersistentId = 0;
314
315public:
316 /// Clients of various APIs that cause global effects on
317 /// the DAG can optionally implement this interface. This allows the clients
318 /// to handle the various sorts of updates that happen.
319 ///
320 /// A DAGUpdateListener automatically registers itself with DAG when it is
321 /// constructed, and removes itself when destroyed in RAII fashion.
325
327 : Next(D.UpdateListeners), DAG(D) {
328 DAG.UpdateListeners = this;
329 }
330
332 assert(DAG.UpdateListeners == this &&
333 "DAGUpdateListeners must be destroyed in LIFO order");
334 DAG.UpdateListeners = Next;
335 }
336
337 /// The node N that was deleted and, if E is not null, an
338 /// equivalent node E that replaced it.
339 virtual void NodeDeleted(SDNode *N, SDNode *E);
340
341 /// The node N that was updated.
342 virtual void NodeUpdated(SDNode *N);
343
344 /// The node N that was inserted.
345 virtual void NodeInserted(SDNode *N);
346 };
347
349 std::function<void(SDNode *, SDNode *)> Callback;
350
354
355 void NodeDeleted(SDNode *N, SDNode *E) override { Callback(N, E); }
356
357 private:
358 virtual void anchor();
359 };
360
362 std::function<void(SDNode *)> Callback;
363
367
368 void NodeInserted(SDNode *N) override { Callback(N); }
369
370 private:
371 virtual void anchor();
372 };
373
374 /// Help to insert SDNodeFlags automatically in transforming. Use
375 /// RAII to save and resume flags in current scope.
377 SelectionDAG &DAG;
378 SDNodeFlags Flags;
379 FlagInserter *LastInserter;
380
381 public:
383 : DAG(SDAG), Flags(Flags),
384 LastInserter(SDAG.getFlagInserter()) {
385 SDAG.setFlagInserter(this);
386 }
389
390 FlagInserter(const FlagInserter &) = delete;
392 ~FlagInserter() { DAG.setFlagInserter(LastInserter); }
393
394 SDNodeFlags getFlags() const { return Flags; }
395 };
396
397 /// When true, additional steps are taken to
398 /// ensure that getConstant() and similar functions return DAG nodes that
399 /// have legal types. This is important after type legalization since
400 /// any illegally typed nodes generated after this point will not experience
401 /// type legalization.
403
404private:
405 /// DAGUpdateListener is a friend so it can manipulate the listener stack.
406 friend struct DAGUpdateListener;
407
408 /// Linked list of registered DAGUpdateListener instances.
409 /// This stack is maintained by DAGUpdateListener RAII.
410 DAGUpdateListener *UpdateListeners = nullptr;
411
412 /// Implementation of setSubgraphColor.
413 /// Return whether we had to truncate the search.
414 bool setSubgraphColorHelper(SDNode *N, const char *Color,
415 DenseSet<SDNode *> &visited,
416 int level, bool &printed);
417
418 template <typename SDNodeT, typename... ArgTypes>
419 SDNodeT *newSDNode(ArgTypes &&... Args) {
420 return new (NodeAllocator.template Allocate<SDNodeT>())
421 SDNodeT(std::forward<ArgTypes>(Args)...);
422 }
423
424 /// Build a synthetic SDNodeT with the given args and extract its subclass
425 /// data as an integer (e.g. for use in a folding set).
426 ///
427 /// The args to this function are the same as the args to SDNodeT's
428 /// constructor, except the second arg (assumed to be a const DebugLoc&) is
429 /// omitted.
430 template <typename SDNodeT, typename... ArgTypes>
431 static uint16_t getSyntheticNodeSubclassData(unsigned IROrder,
432 ArgTypes &&... Args) {
433 // The compiler can reduce this expression to a constant iff we pass an
434 // empty DebugLoc. Thankfully, the debug location doesn't have any bearing
435 // on the subclass data.
436 return SDNodeT(IROrder, DebugLoc(), std::forward<ArgTypes>(Args)...)
437 .getRawSubclassData();
438 }
439
440 template <typename SDNodeTy>
441 static uint16_t getSyntheticNodeSubclassData(unsigned Opc, unsigned Order,
442 SDVTList VTs, EVT MemoryVT,
443 MachineMemOperand *MMO) {
444 return SDNodeTy(Opc, Order, DebugLoc(), VTs, MemoryVT, MMO)
445 .getRawSubclassData();
446 }
447
448 template <typename SDNodeTy>
449 static uint16_t getSyntheticNodeSubclassData(
450 unsigned Opc, unsigned Order, SDVTList VTs, EVT MemoryVT,
451 PointerUnion<MachineMemOperand *, MachineMemOperand **> MemRefs) {
452 return SDNodeTy(Opc, Order, DebugLoc(), VTs, MemoryVT, MemRefs)
453 .getRawSubclassData();
454 }
455
456 void createOperands(SDNode *Node, ArrayRef<SDValue> Vals);
457
458 void removeOperands(SDNode *Node) {
459 if (!Node->OperandList)
460 return;
461 OperandRecycler.deallocate(
463 Node->OperandList);
464 Node->NumOperands = 0;
465 Node->OperandList = nullptr;
466 }
467 void CreateTopologicalOrder(std::vector<SDNode*>& Order);
468
469public:
470 // Maximum depth for recursive analysis such as computeKnownBits, etc.
471 static constexpr unsigned MaxRecursionDepth = 6;
472
473 // Returns the maximum steps for SDNode->hasPredecessor() like searches.
474 LLVM_ABI static unsigned getHasPredecessorMaxSteps();
475
477 SelectionDAG(const SelectionDAG &) = delete;
480
481 /// Prepare this SelectionDAG to process code in the given MachineFunction.
482 LLVM_ABI void init(MachineFunction &NewMF,
483 const TargetLibraryInfo *LibraryInfo,
484 const LibcallLoweringInfo *LibcallsInfo,
486 BlockFrequencyInfo *BFIin,
487 FunctionVarLocs const *FnVarLocs);
488
490 const TargetLibraryInfo *LibraryInfo,
491 const LibcallLoweringInfo *LibcallsInfo, UniformityInfo *UA,
493 FunctionVarLocs const *FnVarLocs) {
494 init(NewMF, LibraryInfo, LibcallsInfo, UA, PSIin, BFIin, FnVarLocs);
495 MFAM = &AM;
496 }
497
499 FLI = FuncInfo;
500 }
501
502 /// Clear state and free memory necessary to make this
503 /// SelectionDAG ready to process a new block.
504 LLVM_ABI void clear();
505
506 MachineFunction &getMachineFunction() const { return *MF; }
508
509 bool hasSwiftErrorArg() const;
510
511 CodeGenOptLevel getOptLevel() const { return OptLevel; }
512 const DataLayout &getDataLayout() const { return MF->getDataLayout(); }
513 const TargetMachine &getTarget() const { return TM; }
514 const TargetSubtargetInfo &getSubtarget() const { return MF->getSubtarget(); }
515 template <typename STC> const STC &getSubtarget() const {
516 return MF->getSubtarget<STC>();
517 }
518 const TargetLowering &getTargetLoweringInfo() const { return *TLI; }
519 const TargetLibraryInfo &getLibInfo() const { return *LibInfo; }
520
521 const LibcallLoweringInfo &getLibcalls() const { return *Libcalls; }
522
523 const SelectionDAGTargetInfo &getSelectionDAGInfo() const { return *TSI; }
524 const UniformityInfo *getUniformityInfo() const { return UA; }
525 /// Returns the result of the AssignmentTrackingAnalysis pass if it's
526 /// available, otherwise return nullptr.
527 const FunctionVarLocs *getFunctionVarLocs() const { return FnVarLocs; }
528 LLVMContext *getContext() const { return Context; }
529 ProfileSummaryInfo *getPSI() const { return PSI; }
530 BlockFrequencyInfo *getBFI() const { return BFI; }
531
532 FlagInserter *getFlagInserter() { return Inserter; }
533 void setFlagInserter(FlagInserter *FI) { Inserter = FI; }
534
535 /// Just dump dot graph to a user-provided path and title.
536 /// This doesn't open the dot viewer program and
537 /// helps visualization when outside debugging session.
538 /// FileName expects absolute path. If provided
539 /// without any path separators then the file
540 /// will be created in the current directory.
541 /// Error will be emitted if the path is insane.
542#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
543 LLVM_DUMP_METHOD void dumpDotGraph(const Twine &FileName, const Twine &Title);
544#endif
545
546 /// Pop up a GraphViz/gv window with the DAG rendered using 'dot'.
547 LLVM_ABI void viewGraph(const std::string &Title);
548 LLVM_ABI void viewGraph();
549
550#if LLVM_ENABLE_ABI_BREAKING_CHECKS
551 std::map<const SDNode *, std::string> NodeGraphAttrs;
552#endif
553
554 /// Clear all previously defined node graph attributes.
555 /// Intended to be used from a debugging tool (eg. gdb).
557
558 /// Set graph attributes for a node. (eg. "color=red".)
559 LLVM_ABI void setGraphAttrs(const SDNode *N, const char *Attrs);
560
561 /// Get graph attributes for a node. (eg. "color=red".)
562 /// Used from getNodeAttributes.
563 LLVM_ABI std::string getGraphAttrs(const SDNode *N) const;
564
565 /// Convenience for setting node color attribute.
566 LLVM_ABI void setGraphColor(const SDNode *N, const char *Color);
567
568 /// Convenience for setting subgraph color attribute.
569 LLVM_ABI void setSubgraphColor(SDNode *N, const char *Color);
570
572
573 allnodes_const_iterator allnodes_begin() const { return AllNodes.begin(); }
574 allnodes_const_iterator allnodes_end() const { return AllNodes.end(); }
575
577
578 allnodes_iterator allnodes_begin() { return AllNodes.begin(); }
579 allnodes_iterator allnodes_end() { return AllNodes.end(); }
580
582 return AllNodes.size();
583 }
584
591
592 /// Return the root tag of the SelectionDAG.
593 const SDValue &getRoot() const { return Root; }
594
595 /// Return the token chain corresponding to the entry of the function.
597 return SDValue(const_cast<SDNode *>(&EntryNode), 0);
598 }
599
600 /// Set the current root tag of the SelectionDAG.
601 ///
603 assert((!N.getNode() || N.getValueType() == MVT::Other) &&
604 "DAG root value is not a chain!");
605 if (N.getNode())
606 checkForCycles(N.getNode(), this);
607 Root = N;
608 if (N.getNode())
609 checkForCycles(this);
610 return Root;
611 }
612
613#if !defined(NDEBUG) && LLVM_ENABLE_ABI_BREAKING_CHECKS
614 void VerifyDAGDivergence();
615#endif
616
617 /// This iterates over the nodes in the SelectionDAG, folding
618 /// certain types of nodes together, or eliminating superfluous nodes. The
619 /// Level argument controls whether Combine is allowed to produce nodes and
620 /// types that are illegal on the target.
621 LLVM_ABI void Combine(CombineLevel Level, BatchAAResults *BatchAA,
622 CodeGenOptLevel OptLevel);
623
624 /// This transforms the SelectionDAG into a SelectionDAG that
625 /// only uses types natively supported by the target.
626 /// Returns "true" if it made any changes.
627 ///
628 /// Note that this is an involved process that may invalidate pointers into
629 /// the graph.
630 LLVM_ABI bool LegalizeTypes();
631
632 /// This transforms the SelectionDAG into a SelectionDAG that is
633 /// compatible with the target instruction selector, as indicated by the
634 /// TargetLowering object.
635 ///
636 /// Note that this is an involved process that may invalidate pointers into
637 /// the graph.
638 LLVM_ABI void Legalize();
639
640 /// Transforms a SelectionDAG node and any operands to it into a node
641 /// that is compatible with the target instruction selector, as indicated by
642 /// the TargetLowering object.
643 ///
644 /// \returns true if \c N is a valid, legal node after calling this.
645 ///
646 /// This essentially runs a single recursive walk of the \c Legalize process
647 /// over the given node (and its operands). This can be used to incrementally
648 /// legalize the DAG. All of the nodes which are directly replaced,
649 /// potentially including N, are added to the output parameter \c
650 /// UpdatedNodes so that the delta to the DAG can be understood by the
651 /// caller.
652 ///
653 /// When this returns false, N has been legalized in a way that make the
654 /// pointer passed in no longer valid. It may have even been deleted from the
655 /// DAG, and so it shouldn't be used further. When this returns true, the
656 /// N passed in is a legal node, and can be immediately processed as such.
657 /// This may still have done some work on the DAG, and will still populate
658 /// UpdatedNodes with any new nodes replacing those originally in the DAG.
660 SmallSetVector<SDNode *, 16> &UpdatedNodes);
661
662 /// This transforms the SelectionDAG into a SelectionDAG
663 /// that only uses vector math operations supported by the target. This is
664 /// necessary as a separate step from Legalize because unrolling a vector
665 /// operation can introduce illegal types, which requires running
666 /// LegalizeTypes again.
667 ///
668 /// This returns true if it made any changes; in that case, LegalizeTypes
669 /// is called again before Legalize.
670 ///
671 /// Note that this is an involved process that may invalidate pointers into
672 /// the graph.
674
675 /// This method deletes all unreachable nodes in the SelectionDAG.
677
678 /// Remove the specified node from the system. This node must
679 /// have no referrers.
681
682 /// Return an SDVTList that represents the list of values specified.
685 LLVM_ABI SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3);
686 LLVM_ABI SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4);
688
689 //===--------------------------------------------------------------------===//
690 // Node creation methods.
691
692 /// Create a ConstantSDNode wrapping a constant value.
693 /// If VT is a vector type, the constant is splatted into a BUILD_VECTOR.
694 ///
695 /// If only legal types can be produced, this does the necessary
696 /// transformations (e.g., if the vector element type is illegal).
697 /// @{
699 bool isTarget = false, bool isOpaque = false);
700 LLVM_ABI SDValue getConstant(const APInt &Val, const SDLoc &DL, EVT VT,
701 bool isTarget = false, bool isOpaque = false);
702
703 LLVM_ABI SDValue getSignedConstant(int64_t Val, const SDLoc &DL, EVT VT,
704 bool isTarget = false,
705 bool isOpaque = false);
706
708 bool IsTarget = false,
709 bool IsOpaque = false);
710
711 LLVM_ABI SDValue getConstant(const ConstantInt &Val, const SDLoc &DL, EVT VT,
712 bool isTarget = false, bool isOpaque = false);
714 bool isTarget = false);
716 const SDLoc &DL);
718 const SDLoc &DL);
720 bool isTarget = false);
721
723 bool isOpaque = false) {
724 return getConstant(Val, DL, VT, true, isOpaque);
725 }
726 SDValue getTargetConstant(const APInt &Val, const SDLoc &DL, EVT VT,
727 bool isOpaque = false) {
728 return getConstant(Val, DL, VT, true, isOpaque);
729 }
731 bool isOpaque = false) {
732 return getConstant(Val, DL, VT, true, isOpaque);
733 }
734 SDValue getSignedTargetConstant(int64_t Val, const SDLoc &DL, EVT VT,
735 bool isOpaque = false) {
736 return getSignedConstant(Val, DL, VT, true, isOpaque);
737 }
738
739 /// Create a true or false constant of type \p VT using the target's
740 /// BooleanContent for type \p OpVT.
741 LLVM_ABI SDValue getBoolConstant(bool V, const SDLoc &DL, EVT VT, EVT OpVT);
742 /// @}
743
744 /// Create a ConstantFPSDNode wrapping a constant value.
745 /// If VT is a vector type, the constant is splatted into a BUILD_VECTOR.
746 ///
747 /// If only legal types can be produced, this does the necessary
748 /// transformations (e.g., if the vector element type is illegal).
749 /// The forms that take a double should only be used for simple constants
750 /// that can be exactly represented in VT. No checks are made.
751 /// @{
752 LLVM_ABI SDValue getConstantFP(double Val, const SDLoc &DL, EVT VT,
753 bool isTarget = false);
754 LLVM_ABI SDValue getConstantFP(const APFloat &Val, const SDLoc &DL, EVT VT,
755 bool isTarget = false);
756 LLVM_ABI SDValue getConstantFP(const ConstantFP &V, const SDLoc &DL, EVT VT,
757 bool isTarget = false);
758 SDValue getTargetConstantFP(double Val, const SDLoc &DL, EVT VT) {
759 return getConstantFP(Val, DL, VT, true);
760 }
761 SDValue getTargetConstantFP(const APFloat &Val, const SDLoc &DL, EVT VT) {
762 return getConstantFP(Val, DL, VT, true);
763 }
765 return getConstantFP(Val, DL, VT, true);
766 }
767 /// @}
768
770 EVT VT, int64_t offset = 0,
771 bool isTargetGA = false,
772 unsigned TargetFlags = 0);
774 int64_t offset = 0, unsigned TargetFlags = 0) {
775 return getGlobalAddress(GV, DL, VT, offset, true, TargetFlags);
776 }
778 LLVM_ABI SDValue getFrameIndex(int FI, EVT VT, bool isTarget = false);
780 return getFrameIndex(FI, VT, true);
781 }
782 LLVM_ABI SDValue getJumpTable(int JTI, EVT VT, bool isTarget = false,
783 unsigned TargetFlags = 0);
784 SDValue getTargetJumpTable(int JTI, EVT VT, unsigned TargetFlags = 0) {
785 return getJumpTable(JTI, VT, true, TargetFlags);
786 }
788 const SDLoc &DL);
790 MaybeAlign Align = std::nullopt,
791 int Offs = 0, bool isT = false,
792 unsigned TargetFlags = 0);
794 MaybeAlign Align = std::nullopt, int Offset = 0,
795 unsigned TargetFlags = 0) {
796 return getConstantPool(C, VT, Align, Offset, true, TargetFlags);
797 }
799 MaybeAlign Align = std::nullopt,
800 int Offs = 0, bool isT = false,
801 unsigned TargetFlags = 0);
803 MaybeAlign Align = std::nullopt, int Offset = 0,
804 unsigned TargetFlags = 0) {
805 return getConstantPool(C, VT, Align, Offset, true, TargetFlags);
806 }
807 // When generating a branch to a BB, we don't in general know enough
808 // to provide debug info for the BB at that time, so keep this one around.
810 LLVM_ABI SDValue getExternalSymbol(const char *Sym, EVT VT);
811 LLVM_ABI SDValue getExternalSymbol(RTLIB::LibcallImpl LCImpl, EVT VT);
812 LLVM_ABI SDValue getTargetExternalSymbol(const char *Sym, EVT VT,
813 unsigned TargetFlags = 0);
814 LLVM_ABI SDValue getTargetExternalSymbol(RTLIB::LibcallImpl LCImpl, EVT VT,
815 unsigned TargetFlags = 0);
816
818
822 LLVM_ABI SDValue getEHLabel(const SDLoc &dl, SDValue Root, MCSymbol *Label);
823 LLVM_ABI SDValue getLabelNode(unsigned Opcode, const SDLoc &dl, SDValue Root,
824 MCSymbol *Label);
826 int64_t Offset = 0, bool isTarget = false,
827 unsigned TargetFlags = 0);
829 int64_t Offset = 0, unsigned TargetFlags = 0) {
830 return getBlockAddress(BA, VT, Offset, true, TargetFlags);
831 }
832
834 SDValue N) {
835 return getNode(ISD::CopyToReg, dl, MVT::Other, Chain,
836 getRegister(Reg, N.getValueType()), N);
837 }
838
839 // This version of the getCopyToReg method takes an extra operand, which
840 // indicates that there is potentially an incoming glue value (if Glue is not
841 // null) and that there should be a glue result.
843 SDValue Glue) {
844 SDVTList VTs = getVTList(MVT::Other, MVT::Glue);
845 SDValue Ops[] = { Chain, getRegister(Reg, N.getValueType()), N, Glue };
846 return getNode(ISD::CopyToReg, dl, VTs,
847 ArrayRef(Ops, Glue.getNode() ? 4 : 3));
848 }
849
850 // Similar to last getCopyToReg() except parameter Reg is a SDValue
852 SDValue Glue) {
853 SDVTList VTs = getVTList(MVT::Other, MVT::Glue);
854 SDValue Ops[] = { Chain, Reg, N, Glue };
855 return getNode(ISD::CopyToReg, dl, VTs,
856 ArrayRef(Ops, Glue.getNode() ? 4 : 3));
857 }
858
860 SDVTList VTs = getVTList(VT, MVT::Other);
861 SDValue Ops[] = { Chain, getRegister(Reg, VT) };
862 return getNode(ISD::CopyFromReg, dl, VTs, Ops);
863 }
864
865 // This version of the getCopyFromReg method takes an extra operand, which
866 // indicates that there is potentially an incoming glue value (if Glue is not
867 // null) and that there should be a glue result.
869 SDValue Glue) {
870 SDVTList VTs = getVTList(VT, MVT::Other, MVT::Glue);
871 SDValue Ops[] = { Chain, getRegister(Reg, VT), Glue };
872 return getNode(ISD::CopyFromReg, dl, VTs,
873 ArrayRef(Ops, Glue.getNode() ? 3 : 2));
874 }
875
877
878 /// Return an ISD::VECTOR_SHUFFLE node. The number of elements in VT,
879 /// which must be a vector type, must match the number of mask elements
880 /// NumElts. An integer mask element equal to -1 is treated as undefined.
882 SDValue N2, ArrayRef<int> Mask);
883
884 /// Return an ISD::BUILD_VECTOR node. The number of elements in VT,
885 /// which must be a vector type, must match the number of operands in Ops.
886 /// The operands must have the same type as (or, for integers, a type wider
887 /// than) VT's element type.
889 // VerifySDNode (via InsertNode) checks BUILD_VECTOR later.
890 return getNode(ISD::BUILD_VECTOR, DL, VT, Ops);
891 }
892
893 /// Return an ISD::BUILD_VECTOR node. The number of elements in VT,
894 /// which must be a vector type, must match the number of operands in Ops.
895 /// The operands must have the same type as (or, for integers, a type wider
896 /// than) VT's element type.
898 // VerifySDNode (via InsertNode) checks BUILD_VECTOR later.
899 return getNode(ISD::BUILD_VECTOR, DL, VT, Ops);
900 }
901
902 /// Return a splat ISD::BUILD_VECTOR node, consisting of Op splatted to all
903 /// elements. VT must be a vector type. Op's type must be the same as (or,
904 /// for integers, a type wider than) VT's element type.
906 // VerifySDNode (via InsertNode) checks BUILD_VECTOR later.
907 if (Op.isUndef()) {
908 assert((VT.getVectorElementType() == Op.getValueType() ||
909 (VT.isInteger() &&
910 VT.getVectorElementType().bitsLE(Op.getValueType()))) &&
911 "A splatted value must have a width equal or (for integers) "
912 "greater than the vector element type!");
913 return getNode(ISD::UNDEF, SDLoc(), VT);
914 }
915
917 return getNode(ISD::BUILD_VECTOR, DL, VT, Ops);
918 }
919
920 // Return a splat ISD::SPLAT_VECTOR node, consisting of Op splatted to all
921 // elements.
923 if (Op.isUndef()) {
924 assert((VT.getVectorElementType() == Op.getValueType() ||
925 (VT.isInteger() &&
926 VT.getVectorElementType().bitsLE(Op.getValueType()))) &&
927 "A splatted value must have a width equal or (for integers) "
928 "greater than the vector element type!");
929 return getNode(ISD::UNDEF, SDLoc(), VT);
930 }
931 return getNode(ISD::SPLAT_VECTOR, DL, VT, Op);
932 }
933
934 /// Returns a node representing a splat of one value into all lanes
935 /// of the provided vector type. This is a utility which returns
936 /// either a BUILD_VECTOR or SPLAT_VECTOR depending on the
937 /// scalability of the desired vector type.
939 assert(VT.isVector() && "Can't splat to non-vector type");
940 return VT.isScalableVector() ?
942 }
943
944 /// Returns a vector of type ResVT whose elements contain the linear sequence
945 /// <0, Step, Step * 2, Step * 3, ...>
947 const APInt &StepVal);
948
949 /// Returns a vector of type ResVT whose elements contain the linear sequence
950 /// <0, 1, 2, 3, ...>
951 LLVM_ABI SDValue getStepVector(const SDLoc &DL, EVT ResVT);
952
953 /// Returns an ISD::VECTOR_SHUFFLE node semantically equivalent to
954 /// the shuffle node in input but with swapped operands.
955 ///
956 /// Example: shuffle A, B, <0,5,2,7> -> shuffle B, A, <4,1,6,3>
958
959 /// Extract element at \p Idx from \p Vec. See EXTRACT_VECTOR_ELT
960 /// description for result type handling.
962 unsigned Idx) {
963 return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT, Vec,
965 }
966
967 /// Insert \p Elt into \p Vec at offset \p Idx. See INSERT_VECTOR_ELT
968 /// description for element type handling.
970 unsigned Idx) {
971 return getNode(ISD::INSERT_VECTOR_ELT, DL, Vec.getValueType(), Vec, Elt,
973 }
974
975 /// Insert \p SubVec at the \p Idx element of \p Vec.
977 unsigned Idx) {
978 return getNode(ISD::INSERT_SUBVECTOR, DL, Vec.getValueType(), Vec, SubVec,
980 }
981
982 /// Return the \p VT typed sub-vector of \p Vec at \p Idx
984 unsigned Idx) {
985 return getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, Vec,
987 }
988
989 /// Convert Op, which must be of float type, to the
990 /// float type VT, by either extending or rounding (by truncation).
992
993 /// Convert Op, which must be a STRICT operation of float type, to the
994 /// float type VT, by either extending or rounding (by truncation).
995 LLVM_ABI std::pair<SDValue, SDValue>
997
998 /// Convert *_EXTEND_VECTOR_INREG to *_EXTEND opcode.
999 static unsigned getOpcode_EXTEND(unsigned Opcode) {
1000 switch (Opcode) {
1001 case ISD::ANY_EXTEND:
1003 return ISD::ANY_EXTEND;
1004 case ISD::ZERO_EXTEND:
1006 return ISD::ZERO_EXTEND;
1007 case ISD::SIGN_EXTEND:
1009 return ISD::SIGN_EXTEND;
1010 }
1011 llvm_unreachable("Unknown opcode");
1012 }
1013
1014 /// Convert *_EXTEND to *_EXTEND_VECTOR_INREG opcode.
1015 static unsigned getOpcode_EXTEND_VECTOR_INREG(unsigned Opcode) {
1016 switch (Opcode) {
1017 case ISD::ANY_EXTEND:
1020 case ISD::ZERO_EXTEND:
1023 case ISD::SIGN_EXTEND:
1026 }
1027 llvm_unreachable("Unknown opcode");
1028 }
1029
1030 /// Convert Op, which must be of integer type, to the
1031 /// integer type VT, by either any-extending or truncating it.
1033
1034 /// Convert Op, which must be of integer type, to the
1035 /// integer type VT, by either sign-extending or truncating it.
1037
1038 /// Convert Op, which must be of integer type, to the
1039 /// integer type VT, by either zero-extending or truncating it.
1041
1042 /// Convert Op, which must be of integer type, to the
1043 /// integer type VT, by either any/sign/zero-extending (depending on IsAny /
1044 /// IsSigned) or truncating it.
1046 EVT VT, unsigned Opcode) {
1047 switch(Opcode) {
1048 case ISD::ANY_EXTEND:
1049 return getAnyExtOrTrunc(Op, DL, VT);
1050 case ISD::ZERO_EXTEND:
1051 return getZExtOrTrunc(Op, DL, VT);
1052 case ISD::SIGN_EXTEND:
1053 return getSExtOrTrunc(Op, DL, VT);
1054 }
1055 llvm_unreachable("Unsupported opcode");
1056 }
1057
1058 /// Convert Op, which must be of integer type, to the
1059 /// integer type VT, by either sign/zero-extending (depending on IsSigned) or
1060 /// truncating it.
1061 SDValue getExtOrTrunc(bool IsSigned, SDValue Op, const SDLoc &DL, EVT VT) {
1062 return IsSigned ? getSExtOrTrunc(Op, DL, VT) : getZExtOrTrunc(Op, DL, VT);
1063 }
1064
1065 /// Convert Op, which must be of integer type, to the
1066 /// integer type VT, by first bitcasting (from potential vector) to
1067 /// corresponding scalar type then either any-extending or truncating it.
1069 EVT VT);
1070
1071 /// Return the expression required to zero extend the Op
1072 /// value assuming it was the smaller SrcTy value.
1074
1075 /// Convert Op, which must be of integer type, to the integer type VT, by
1076 /// either truncating it or performing either zero or sign extension as
1077 /// appropriate extension for the pointer's semantics.
1079
1080 /// Return the expression required to extend the Op as a pointer value
1081 /// assuming it was the smaller SrcTy value. This may be either a zero extend
1082 /// or a sign extend.
1084
1085 /// Convert Op, which must be of integer type, to the integer type VT,
1086 /// by using an extension appropriate for the target's
1087 /// BooleanContent for type OpVT or truncating it.
1089 EVT OpVT);
1090
1091 /// Create negative operation as (SUB 0, Val).
1092 LLVM_ABI SDValue getNegative(SDValue Val, const SDLoc &DL, EVT VT);
1093
1094 /// Create a bitwise NOT operation as (XOR Val, -1).
1095 LLVM_ABI SDValue getNOT(const SDLoc &DL, SDValue Val, EVT VT);
1096
1097 /// Create a logical NOT operation as (XOR Val, BooleanOne).
1098 LLVM_ABI SDValue getLogicalNOT(const SDLoc &DL, SDValue Val, EVT VT);
1099
1100 /// Returns sum of the base pointer and offset.
1101 /// Unlike getObjectPtrOffset this does not set NoUnsignedWrap and InBounds by
1102 /// default.
1105 const SDNodeFlags Flags = SDNodeFlags());
1108 const SDNodeFlags Flags = SDNodeFlags());
1109
1110 /// Create an add instruction with appropriate flags when used for
1111 /// addressing some offset of an object. i.e. if a load is split into multiple
1112 /// components, create an add nuw (or ptradd nuw inbounds) from the base
1113 /// pointer to the offset.
1118
1120 // The object itself can't wrap around the address space, so it shouldn't be
1121 // possible for the adds of the offsets to the split parts to overflow.
1122 return getMemBasePlusOffset(
1124 }
1125
1126 /// Return a new CALLSEQ_START node, that starts new call frame, in which
1127 /// InSize bytes are set up inside CALLSEQ_START..CALLSEQ_END sequence and
1128 /// OutSize specifies part of the frame set up prior to the sequence.
1130 const SDLoc &DL) {
1131 SDVTList VTs = getVTList(MVT::Other, MVT::Glue);
1132 SDValue Ops[] = { Chain,
1133 getIntPtrConstant(InSize, DL, true),
1134 getIntPtrConstant(OutSize, DL, true) };
1135 return getNode(ISD::CALLSEQ_START, DL, VTs, Ops);
1136 }
1137
1138 /// Return a new CALLSEQ_END node, which always must have a
1139 /// glue result (to ensure it's not CSE'd).
1140 /// CALLSEQ_END does not have a useful SDLoc.
1142 SDValue InGlue, const SDLoc &DL) {
1143 SDVTList NodeTys = getVTList(MVT::Other, MVT::Glue);
1145 Ops.push_back(Chain);
1146 Ops.push_back(Op1);
1147 Ops.push_back(Op2);
1148 if (InGlue.getNode())
1149 Ops.push_back(InGlue);
1150 return getNode(ISD::CALLSEQ_END, DL, NodeTys, Ops);
1151 }
1152
1154 SDValue Glue, const SDLoc &DL) {
1155 return getCALLSEQ_END(
1156 Chain, getIntPtrConstant(Size1, DL, /*isTarget=*/true),
1157 getIntPtrConstant(Size2, DL, /*isTarget=*/true), Glue, DL);
1158 }
1159
1160 /// Return true if the result of this operation is always undefined.
1161 LLVM_ABI bool isUndef(unsigned Opcode, ArrayRef<SDValue> Ops);
1162
1163 /// Return an UNDEF node. UNDEF does not have a useful SDLoc.
1165 return getNode(ISD::UNDEF, SDLoc(), VT);
1166 }
1167
1168 /// Return a POISON node. POISON does not have a useful SDLoc.
1170
1171 /// Return a node that represents the runtime scaling 'MulImm * RuntimeVL'.
1172 LLVM_ABI SDValue getVScale(const SDLoc &DL, EVT VT, APInt MulImm);
1173
1175
1177
1178 /// Return a vector with the first 'Len' lanes set to true and remaining lanes
1179 /// set to false. The mask's ValueType is the same as when comparing vectors
1180 /// of type VT.
1182 ElementCount Len);
1183
1184 /// Return a GLOBAL_OFFSET_TABLE node. This does not have a useful SDLoc.
1188
1189 /// Gets or creates the specified node.
1190 ///
1191 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
1193 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
1194 ArrayRef<SDValue> Ops, const SDNodeFlags Flags);
1195 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL,
1197 const SDNodeFlags Flags);
1198 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
1199 ArrayRef<SDValue> Ops, const SDNodeFlags Flags);
1200
1201 // Use flags from current flag inserter.
1202 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
1204 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL,
1206 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
1208 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
1209 SDValue Operand);
1210 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N1,
1211 SDValue N2);
1212 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N1,
1213 SDValue N2, SDValue N3);
1214
1215 // Specialize based on number of operands.
1216 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT);
1217 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
1218 SDValue Operand, const SDNodeFlags Flags);
1219 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N1,
1220 SDValue N2, const SDNodeFlags Flags);
1221 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N1,
1222 SDValue N2, SDValue N3, const SDNodeFlags Flags);
1223 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N1,
1224 SDValue N2, SDValue N3, SDValue N4);
1225 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N1,
1226 SDValue N2, SDValue N3, SDValue N4,
1227 const SDNodeFlags Flags);
1228 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N1,
1229 SDValue N2, SDValue N3, SDValue N4, SDValue N5);
1230 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N1,
1231 SDValue N2, SDValue N3, SDValue N4, SDValue N5,
1232 const SDNodeFlags Flags);
1233
1234 // Specialize again based on number of operands for nodes with a VTList
1235 // rather than a single VT.
1236 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList);
1237 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
1238 SDValue N);
1239 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
1240 SDValue N1, SDValue N2);
1241 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
1242 SDValue N1, SDValue N2, SDValue N3);
1243 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
1244 SDValue N1, SDValue N2, SDValue N3, SDValue N4);
1245 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
1246 SDValue N1, SDValue N2, SDValue N3, SDValue N4,
1247 SDValue N5);
1248
1249 /// Compute a TokenFactor to force all the incoming stack arguments to be
1250 /// loaded from the stack. This is used in tail call lowering to protect
1251 /// stack arguments from being clobbered.
1253
1254 /// Lower a memccpy operation into a target library call and return the
1255 /// resulting chain and call result as SelectionDAG SDValues.
1256 LLVM_ABI std::pair<SDValue, SDValue>
1257 getMemccpy(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Src,
1258 SDValue C, SDValue Size, const CallInst *CI);
1259
1260 /// Lower a memcmp operation into a target library call and return the
1261 /// resulting chain and call result as SelectionDAG SDValues.
1262 LLVM_ABI std::pair<SDValue, SDValue> getMemcmp(SDValue Chain, const SDLoc &dl,
1263 SDValue Dst, SDValue Src,
1264 SDValue Size,
1265 const CallInst *CI);
1266
1267 /// Lower a strcmp operation into a target library call and return the
1268 /// resulting chain and call result as SelectionDAG SDValues.
1269 LLVM_ABI std::pair<SDValue, SDValue> getStrcmp(SDValue Chain, const SDLoc &dl,
1270 SDValue S0, SDValue S1,
1271 const CallInst *CI);
1272
1273 /// Lower a strcpy operation into a target library call and return the
1274 /// resulting chain and call result as SelectionDAG SDValues.
1275 LLVM_ABI std::pair<SDValue, SDValue> getStrcpy(SDValue Chain, const SDLoc &dl,
1276 SDValue Dst, SDValue Src,
1277 const CallInst *CI);
1278
1279 /// Lower a strlen operation into a target library call and return the
1280 /// resulting chain and call result as SelectionDAG SDValues.
1281 LLVM_ABI std::pair<SDValue, SDValue>
1282 getStrlen(SDValue Chain, const SDLoc &dl, SDValue Src, const CallInst *CI);
1283
1284 /// Lower a strstr operation into a target library call and return the
1285 /// resulting chain and call result as SelectionDAG SDValues.
1286 LLVM_ABI std::pair<SDValue, SDValue> getStrstr(SDValue Chain, const SDLoc &dl,
1287 SDValue S0, SDValue S1,
1288 const CallInst *CI);
1289
1290 /* \p CI if not null is the memset call being lowered.
1291 * \p OverrideTailCall is an optional parameter that can be used to override
1292 * the tail call optimization decision. */
1294 SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Src, SDValue Size,
1295 Align DstAlign, Align SrcAlign, bool isVol, bool AlwaysInline,
1296 const CallInst *CI, std::optional<bool> OverrideTailCall,
1297 MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo,
1298 const AAMDNodes &AAInfo = AAMDNodes(), BatchAAResults *BatchAA = nullptr);
1299
1300 /* \p CI if not null is the memset call being lowered.
1301 * \p OverrideTailCall is an optional parameter that can be used to override
1302 * the tail call optimization decision. */
1303 LLVM_ABI SDValue getMemmove(SDValue Chain, const SDLoc &dl, SDValue Dst,
1304 SDValue Src, SDValue Size, Align DstAlign,
1305 Align SrcAlign, bool isVol, const CallInst *CI,
1306 std::optional<bool> OverrideTailCall,
1307 MachinePointerInfo DstPtrInfo,
1308 MachinePointerInfo SrcPtrInfo,
1309 const AAMDNodes &AAInfo = AAMDNodes(),
1310 BatchAAResults *BatchAA = nullptr);
1311
1312 LLVM_ABI SDValue getMemset(SDValue Chain, const SDLoc &dl, SDValue Dst,
1313 SDValue Src, SDValue Size, Align Alignment,
1314 bool isVol, bool AlwaysInline, const CallInst *CI,
1315 MachinePointerInfo DstPtrInfo,
1316 const AAMDNodes &AAInfo = AAMDNodes());
1317
1318 LLVM_ABI SDValue getAtomicMemcpy(SDValue Chain, const SDLoc &dl, SDValue Dst,
1319 SDValue Src, SDValue Size, Type *SizeTy,
1320 unsigned ElemSz, bool isTailCall,
1321 MachinePointerInfo DstPtrInfo,
1322 MachinePointerInfo SrcPtrInfo);
1323
1324 LLVM_ABI SDValue getAtomicMemmove(SDValue Chain, const SDLoc &dl, SDValue Dst,
1325 SDValue Src, SDValue Size, Type *SizeTy,
1326 unsigned ElemSz, bool isTailCall,
1327 MachinePointerInfo DstPtrInfo,
1328 MachinePointerInfo SrcPtrInfo);
1329
1330 LLVM_ABI SDValue getAtomicMemset(SDValue Chain, const SDLoc &dl, SDValue Dst,
1331 SDValue Value, SDValue Size, Type *SizeTy,
1332 unsigned ElemSz, bool isTailCall,
1333 MachinePointerInfo DstPtrInfo);
1334
1335 /// Helper function to make it easier to build SetCC's if you just have an
1336 /// ISD::CondCode instead of an SDValue.
1338 ISD::CondCode Cond, SDValue Chain = SDValue(),
1339 bool IsSignaling = false, SDNodeFlags Flags = {}) {
1340 assert(LHS.getValueType().isVector() == RHS.getValueType().isVector() &&
1341 "Vector/scalar operand type mismatch for setcc");
1342 assert(LHS.getValueType().isVector() == VT.isVector() &&
1343 "Vector/scalar result type mismatch for setcc");
1345 "Cannot create a setCC of an invalid node.");
1346 if (Chain)
1347 return getNode(IsSignaling ? ISD::STRICT_FSETCCS : ISD::STRICT_FSETCC, DL,
1348 {VT, MVT::Other}, {Chain, LHS, RHS, getCondCode(Cond)},
1349 Flags);
1350 return getNode(ISD::SETCC, DL, VT, LHS, RHS, getCondCode(Cond), Flags);
1351 }
1352
1353 /// Helper function to make it easier to build Select's if you just have
1354 /// operands and don't want to check for vector.
1356 SDValue RHS, SDNodeFlags Flags = SDNodeFlags()) {
1357 assert(LHS.getValueType() == VT && RHS.getValueType() == VT &&
1358 "Cannot use select on differing types");
1359 auto Opcode = Cond.getValueType().isVector() ? ISD::VSELECT : ISD::SELECT;
1360 return getNode(Opcode, DL, VT, Cond, LHS, RHS, Flags);
1361 }
1362
1363 /// Helper function to make it easier to build SelectCC's if you just have an
1364 /// ISD::CondCode instead of an SDValue.
1366 SDValue False, ISD::CondCode Cond,
1367 SDNodeFlags Flags = SDNodeFlags()) {
1368 return getNode(ISD::SELECT_CC, DL, True.getValueType(), LHS, RHS, True,
1369 False, getCondCode(Cond), Flags);
1370 }
1371
1372 /// Try to simplify a select/vselect into 1 of its operands or a constant.
1374
1375 /// Try to simplify a shift into 1 of its operands or a constant.
1377
1378 /// Try to simplify a floating-point binary operation into 1 of its operands
1379 /// or a constant.
1380 LLVM_ABI SDValue simplifyFPBinop(unsigned Opcode, SDValue X, SDValue Y,
1381 SDNodeFlags Flags);
1382
1383 /// VAArg produces a result and token chain, and takes a pointer
1384 /// and a source value as input.
1385 LLVM_ABI SDValue getVAArg(EVT VT, const SDLoc &dl, SDValue Chain, SDValue Ptr,
1386 SDValue SV, unsigned Align);
1387
1388 /// Gets a node for an atomic cmpxchg op. There are two
1389 /// valid Opcodes. ISD::ATOMIC_CMO_SWAP produces the value loaded and a
1390 /// chain result. ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS produces the value loaded,
1391 /// a success flag (initially i1), and a chain.
1392 LLVM_ABI SDValue getAtomicCmpSwap(unsigned Opcode, const SDLoc &dl, EVT MemVT,
1393 SDVTList VTs, SDValue Chain, SDValue Ptr,
1394 SDValue Cmp, SDValue Swp,
1395 MachineMemOperand *MMO);
1396
1397 /// Gets a node for an atomic op, produces result (if relevant)
1398 /// and chain and takes 2 operands.
1399 LLVM_ABI SDValue getAtomic(unsigned Opcode, const SDLoc &dl, EVT MemVT,
1400 SDValue Chain, SDValue Ptr, SDValue Val,
1401 MachineMemOperand *MMO);
1402
1403 /// Gets a node for an atomic op, produces result and chain and takes N
1404 /// operands.
1405 LLVM_ABI SDValue getAtomic(unsigned Opcode, const SDLoc &dl, EVT MemVT,
1407 MachineMemOperand *MMO,
1409
1411 EVT MemVT, EVT VT, SDValue Chain, SDValue Ptr,
1412 MachineMemOperand *MMO);
1413
1414 /// Creates a MemIntrinsicNode that may produce a
1415 /// result and takes a list of operands. Opcode may be INTRINSIC_VOID,
1416 /// INTRINSIC_W_CHAIN, or a target-specific memory-referencing opcode
1417 // (see `SelectionDAGTargetInfo::isTargetMemoryOpcode`).
1419 unsigned Opcode, const SDLoc &dl, SDVTList VTList, ArrayRef<SDValue> Ops,
1420 EVT MemVT, MachinePointerInfo PtrInfo, Align Alignment,
1424 const AAMDNodes &AAInfo = AAMDNodes());
1425
1427 unsigned Opcode, const SDLoc &dl, SDVTList VTList, ArrayRef<SDValue> Ops,
1428 EVT MemVT, MachinePointerInfo PtrInfo,
1429 MaybeAlign Alignment = std::nullopt,
1433 const AAMDNodes &AAInfo = AAMDNodes()) {
1434 // Ensure that codegen never sees alignment 0
1435 return getMemIntrinsicNode(Opcode, dl, VTList, Ops, MemVT, PtrInfo,
1436 Alignment.value_or(getEVTAlign(MemVT)), Flags,
1437 Size, AAInfo);
1438 }
1439
1440 LLVM_ABI SDValue getMemIntrinsicNode(unsigned Opcode, const SDLoc &dl,
1442 EVT MemVT, MachineMemOperand *MMO);
1443
1444 /// getMemIntrinsicNode - Creates a MemIntrinsicNode with multiple MMOs.
1445 LLVM_ABI SDValue getMemIntrinsicNode(unsigned Opcode, const SDLoc &dl,
1447 EVT MemVT,
1449
1450 /// Creates a LifetimeSDNode that starts (`IsStart==true`) or ends
1451 /// (`IsStart==false`) the lifetime of the `FrameIndex`.
1452 LLVM_ABI SDValue getLifetimeNode(bool IsStart, const SDLoc &dl, SDValue Chain,
1453 int FrameIndex);
1454
1455 /// Creates a PseudoProbeSDNode with function GUID `Guid` and
1456 /// the index of the block `Index` it is probing, as well as the attributes
1457 /// `attr` of the probe.
1459 uint64_t Guid, uint64_t Index,
1460 uint32_t Attr);
1461
1462 /// Create a MERGE_VALUES node from the given operands.
1464
1465 /// Return poison values for each of \p ResultTypes, substituting \p Chain
1466 /// for any result of type MVT::Other, merged into a single MERGE_VALUES
1467 /// node. Used to salvage a chain when an operation cannot be lowered due
1468 /// to an error, and the program will be discarded.
1470 const SDLoc &dl);
1471
1472 /// Loads are not normal binary operators: their result type is not
1473 /// determined by their operands, and they produce a value AND a token chain.
1474 ///
1475 /// This function will set the MOLoad flag on MMOFlags, but you can set it if
1476 /// you want. The MOStore flag must not be set.
1478 getLoad(EVT VT, const SDLoc &dl, SDValue Chain, SDValue Ptr,
1479 MachinePointerInfo PtrInfo, MaybeAlign Alignment = MaybeAlign(),
1481 const MMOMetadata &Metadata = MMOMetadata());
1482 LLVM_ABI SDValue getLoad(EVT VT, const SDLoc &dl, SDValue Chain, SDValue Ptr,
1483 MachineMemOperand *MMO);
1485 getExtLoad(ISD::LoadExtType ExtType, const SDLoc &dl, EVT VT, SDValue Chain,
1486 SDValue Ptr, MachinePointerInfo PtrInfo, EVT MemVT,
1487 MaybeAlign Alignment = MaybeAlign(),
1489 const MMOMetadata &Metadata = MMOMetadata());
1490 LLVM_ABI SDValue getExtLoad(ISD::LoadExtType ExtType, const SDLoc &dl, EVT VT,
1491 SDValue Chain, SDValue Ptr, EVT MemVT,
1492 MachineMemOperand *MMO);
1493 LLVM_ABI SDValue getIndexedLoad(SDValue OrigLoad, const SDLoc &dl,
1498 const SDLoc &dl, SDValue Chain, SDValue Ptr, SDValue Offset,
1499 MachinePointerInfo PtrInfo, EVT MemVT, Align Alignment,
1501 const MMOMetadata &Metadata = MMOMetadata());
1502 inline SDValue
1504 const SDLoc &dl, SDValue Chain, SDValue Ptr, SDValue Offset,
1505 MachinePointerInfo PtrInfo, EVT MemVT,
1506 MaybeAlign Alignment = MaybeAlign(),
1508 const MMOMetadata &Metadata = MMOMetadata()) {
1509 // Ensures that codegen never sees a None Alignment.
1510 return getLoad(AM, ExtType, VT, dl, Chain, Ptr, Offset, PtrInfo, MemVT,
1511 Alignment.value_or(getEVTAlign(MemVT)), MMOFlags, Metadata);
1512 }
1514 EVT VT, const SDLoc &dl, SDValue Chain, SDValue Ptr,
1515 SDValue Offset, EVT MemVT, MachineMemOperand *MMO);
1516
1517 /// Helper function to build ISD::STORE nodes.
1518 ///
1519 /// This function will set the MOStore flag on MMOFlags, but you can set it if
1520 /// you want. The MOLoad and MOInvariant flags must not be set.
1521
1523 getStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr,
1524 MachinePointerInfo PtrInfo, Align Alignment,
1526 const MMOMetadata &Metadata = MMOMetadata());
1527 inline SDValue
1528 getStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr,
1529 MachinePointerInfo PtrInfo, MaybeAlign Alignment = MaybeAlign(),
1531 const MMOMetadata &Metadata = MMOMetadata()) {
1532 return getStore(Chain, dl, Val, Ptr, PtrInfo,
1533 Alignment.value_or(getEVTAlign(Val.getValueType())),
1534 MMOFlags, Metadata);
1535 }
1536 LLVM_ABI SDValue getStore(SDValue Chain, const SDLoc &dl, SDValue Val,
1537 SDValue Ptr, MachineMemOperand *MMO);
1539 SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr, SDValue Offset,
1540 MachinePointerInfo PtrInfo, EVT SVT, Align Alignment,
1542 const MMOMetadata &Metadata = MMOMetadata());
1544 getTruncStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr,
1545 MachinePointerInfo PtrInfo, EVT SVT, Align Alignment,
1547 const MMOMetadata &Metadata = MMOMetadata());
1548 LLVM_ABI SDValue getTruncStore(SDValue Chain, const SDLoc &dl, SDValue Val,
1549 SDValue Ptr, SDValue Offset, EVT SVT,
1550 MachineMemOperand *MMO);
1551
1552 inline SDValue
1553 getTruncStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr,
1554 MachinePointerInfo PtrInfo, EVT SVT,
1555 MaybeAlign Alignment = MaybeAlign(),
1557 const MMOMetadata &Metadata = MMOMetadata()) {
1558 return getTruncStore(Chain, dl, Val, Ptr, PtrInfo, SVT,
1559 Alignment.value_or(getEVTAlign(SVT)), MMOFlags,
1560 Metadata);
1561 }
1562 LLVM_ABI SDValue getTruncStore(SDValue Chain, const SDLoc &dl, SDValue Val,
1563 SDValue Ptr, EVT SVT, MachineMemOperand *MMO);
1564 LLVM_ABI SDValue getIndexedStore(SDValue OrigStore, const SDLoc &dl,
1567 LLVM_ABI SDValue getStore(SDValue Chain, const SDLoc &dl, SDValue Val,
1568 SDValue Ptr, SDValue Offset, EVT SVT,
1570 bool IsTruncating = false);
1571
1573 EVT VT, const SDLoc &dl, SDValue Chain,
1574 SDValue Ptr, SDValue Offset, SDValue Mask,
1575 SDValue EVL, MachinePointerInfo PtrInfo, EVT MemVT,
1576 Align Alignment, MachineMemOperand::Flags MMOFlags,
1577 const AAMDNodes &AAInfo,
1578 const MDNode *Ranges = nullptr,
1579 bool IsExpanding = false);
1580 inline SDValue
1582 const SDLoc &dl, SDValue Chain, SDValue Ptr, SDValue Offset,
1583 SDValue Mask, SDValue EVL, MachinePointerInfo PtrInfo, EVT MemVT,
1584 MaybeAlign Alignment = MaybeAlign(),
1586 const AAMDNodes &AAInfo = AAMDNodes(),
1587 const MDNode *Ranges = nullptr, bool IsExpanding = false) {
1588 // Ensures that codegen never sees a None Alignment.
1589 return getLoadVP(AM, ExtType, VT, dl, Chain, Ptr, Offset, Mask, EVL,
1590 PtrInfo, MemVT, Alignment.value_or(getEVTAlign(MemVT)),
1591 MMOFlags, AAInfo, Ranges, IsExpanding);
1592 }
1594 EVT VT, const SDLoc &dl, SDValue Chain,
1595 SDValue Ptr, SDValue Offset, SDValue Mask,
1596 SDValue EVL, EVT MemVT, MachineMemOperand *MMO,
1597 bool IsExpanding = false);
1598 LLVM_ABI SDValue getLoadVP(EVT VT, const SDLoc &dl, SDValue Chain,
1599 SDValue Ptr, SDValue Mask, SDValue EVL,
1600 MachinePointerInfo PtrInfo, MaybeAlign Alignment,
1601 MachineMemOperand::Flags MMOFlags,
1602 const AAMDNodes &AAInfo,
1603 const MDNode *Ranges = nullptr,
1604 bool IsExpanding = false);
1605 LLVM_ABI SDValue getLoadVP(EVT VT, const SDLoc &dl, SDValue Chain,
1606 SDValue Ptr, SDValue Mask, SDValue EVL,
1607 MachineMemOperand *MMO, bool IsExpanding = false);
1609 ISD::LoadExtType ExtType, const SDLoc &dl, EVT VT, SDValue Chain,
1610 SDValue Ptr, SDValue Mask, SDValue EVL, MachinePointerInfo PtrInfo,
1611 EVT MemVT, MaybeAlign Alignment, MachineMemOperand::Flags MMOFlags,
1612 const AAMDNodes &AAInfo, bool IsExpanding = false);
1614 EVT VT, SDValue Chain, SDValue Ptr,
1615 SDValue Mask, SDValue EVL, EVT MemVT,
1616 MachineMemOperand *MMO,
1617 bool IsExpanding = false);
1618 LLVM_ABI SDValue getStoreVP(SDValue Chain, const SDLoc &dl, SDValue Val,
1619 SDValue Ptr, SDValue Offset, SDValue Mask,
1620 SDValue EVL, EVT MemVT, MachineMemOperand *MMO,
1621 ISD::MemIndexedMode AM, bool IsTruncating = false,
1622 bool IsCompressing = false);
1623 LLVM_ABI SDValue getTruncStoreVP(SDValue Chain, const SDLoc &dl, SDValue Val,
1624 SDValue Ptr, SDValue Mask, SDValue EVL,
1625 MachinePointerInfo PtrInfo, EVT SVT,
1626 Align Alignment,
1627 MachineMemOperand::Flags MMOFlags,
1628 const AAMDNodes &AAInfo,
1629 bool IsCompressing = false);
1630 LLVM_ABI SDValue getTruncStoreVP(SDValue Chain, const SDLoc &dl, SDValue Val,
1631 SDValue Ptr, SDValue Mask, SDValue EVL,
1632 EVT SVT, MachineMemOperand *MMO,
1633 bool IsCompressing = false);
1634
1636 ISD::MemIndexedMode AM, ISD::LoadExtType ExtType, EVT VT, const SDLoc &DL,
1637 SDValue Chain, SDValue Ptr, SDValue Offset, SDValue Stride, SDValue Mask,
1638 SDValue EVL, EVT MemVT, MachineMemOperand *MMO, bool IsExpanding = false);
1640 SDValue Ptr, SDValue Stride, SDValue Mask,
1641 SDValue EVL, MachineMemOperand *MMO,
1642 bool IsExpanding = false);
1644 const SDLoc &DL, EVT VT, SDValue Chain,
1645 SDValue Ptr, SDValue Stride,
1646 SDValue Mask, SDValue EVL, EVT MemVT,
1647 MachineMemOperand *MMO,
1648 bool IsExpanding = false);
1650 SDValue Val, SDValue Ptr, SDValue Offset,
1651 SDValue Stride, SDValue Mask, SDValue EVL,
1652 EVT MemVT, MachineMemOperand *MMO,
1654 bool IsTruncating = false,
1655 bool IsCompressing = false);
1656
1657 LLVM_ABI SDValue getGatherVP(SDVTList VTs, EVT VT, const SDLoc &dl,
1659 ISD::MemIndexType IndexType);
1660 LLVM_ABI SDValue getScatterVP(SDVTList VTs, EVT VT, const SDLoc &dl,
1662 ISD::MemIndexType IndexType);
1663
1664 LLVM_ABI SDValue getMaskedLoad(EVT VT, const SDLoc &dl, SDValue Chain,
1666 SDValue Src0, EVT MemVT,
1668 ISD::LoadExtType, bool IsExpanding = false);
1672 LLVM_ABI SDValue getMaskedStore(SDValue Chain, const SDLoc &dl, SDValue Val,
1674 EVT MemVT, MachineMemOperand *MMO,
1676 bool IsTruncating = false,
1677 bool IsCompressing = false);
1678 LLVM_ABI SDValue getIndexedMaskedStore(SDValue OrigStore, const SDLoc &dl,
1681 LLVM_ABI SDValue getMaskedGather(SDVTList VTs, EVT MemVT, const SDLoc &dl,
1683 MachineMemOperand *MMO,
1684 ISD::MemIndexType IndexType,
1685 ISD::LoadExtType ExtTy);
1686 LLVM_ABI SDValue getMaskedScatter(SDVTList VTs, EVT MemVT, const SDLoc &dl,
1688 MachineMemOperand *MMO,
1689 ISD::MemIndexType IndexType,
1690 bool IsTruncating = false);
1691 LLVM_ABI SDValue getMaskedHistogram(SDVTList VTs, EVT MemVT, const SDLoc &dl,
1693 MachineMemOperand *MMO,
1694 ISD::MemIndexType IndexType);
1695 LLVM_ABI SDValue getLoadFFVP(EVT VT, const SDLoc &DL, SDValue Chain,
1696 SDValue Ptr, SDValue Mask, SDValue EVL,
1697 MachineMemOperand *MMO);
1698
1699 LLVM_ABI SDValue getGetFPEnv(SDValue Chain, const SDLoc &dl, SDValue Ptr,
1700 EVT MemVT, MachineMemOperand *MMO);
1701 LLVM_ABI SDValue getSetFPEnv(SDValue Chain, const SDLoc &dl, SDValue Ptr,
1702 EVT MemVT, MachineMemOperand *MMO);
1703
1704 /// Construct a node to track a Value* through the backend.
1706
1707 /// Return an MDNodeSDNode which holds an MDNode.
1708 LLVM_ABI SDValue getMDNode(const MDNode *MD);
1709
1710 /// Return a bitcast using the SDLoc of the value operand, and casting to the
1711 /// provided type. Use getNode to set a custom SDLoc.
1713
1714 /// Return an AddrSpaceCastSDNode.
1715 LLVM_ABI SDValue getAddrSpaceCast(const SDLoc &dl, EVT VT, SDValue Ptr,
1716 unsigned SrcAS, unsigned DestAS,
1717 const SDNodeFlags Flags = SDNodeFlags());
1718
1719 /// Return a freeze using the SDLoc of the value operand.
1721
1722 /// Return a freeze of V if any of the demanded elts may be undef or poison.
1723 /// \p Kind can be used to selectively freeze poison and/or undef bits only.
1725 getFreeze(SDValue V, const APInt &DemandedElts,
1727
1728 /// Return an AssertAlignSDNode.
1730
1731 /// Swap N1 and N2 if Opcode is a commutative binary opcode
1732 /// and the canonical form expects the opposite order.
1733 LLVM_ABI void canonicalizeCommutativeBinop(unsigned Opcode, SDValue &N1,
1734 SDValue &N2) const;
1735
1736 /// Return the specified value casted to
1737 /// the target's desired shift amount type.
1739
1740 /// Expand the specified \c ISD::VAARG node as the Legalize pass would.
1742
1743 /// Expand the specified \c ISD::VACOPY node as the Legalize pass would.
1745
1746 /// Return a GlobalAddress of the function from the current module with
1747 /// name matching the given ExternalSymbol. Additionally can provide the
1748 /// matched function.
1749 /// Panic if the function doesn't exist.
1751 SDValue Op, Function **TargetFunction = nullptr);
1752
1753 /// *Mutate* the specified node in-place to have the
1754 /// specified operands. If the resultant node already exists in the DAG,
1755 /// this does not modify the specified node, instead it returns the node that
1756 /// already exists. If the resultant node does not exist in the DAG, the
1757 /// input node is returned. As a degenerate case, if you specify the same
1758 /// input operands as the node already has, the input node is returned.
1762 SDValue Op3);
1764 SDValue Op3, SDValue Op4);
1766 SDValue Op3, SDValue Op4, SDValue Op5);
1768
1769 /// Creates a new TokenFactor containing \p Vals. If \p Vals contains 64k
1770 /// values or more, move values into new TokenFactors in 64k-1 blocks, until
1771 /// the final TokenFactor has less than 64k operands.
1774
1775 /// *Mutate* the specified machine node's memory references to the provided
1776 /// list.
1779
1780 // Calculate divergence of node \p N based on its operands.
1782
1783 // Propagates the change in divergence to users
1785
1786 /// These are used for target selectors to *mutate* the
1787 /// specified node to have the specified return type, Target opcode, and
1788 /// operands. Note that target opcodes are stored as
1789 /// ~TargetOpcode in the node opcode field. The resultant node is returned.
1790 LLVM_ABI SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT);
1791 LLVM_ABI SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT,
1792 SDValue Op1);
1793 LLVM_ABI SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT,
1794 SDValue Op1, SDValue Op2);
1795 LLVM_ABI SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT,
1796 SDValue Op1, SDValue Op2, SDValue Op3);
1797 LLVM_ABI SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT,
1799 LLVM_ABI SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1,
1800 EVT VT2);
1801 LLVM_ABI SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1,
1803 LLVM_ABI SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1,
1804 EVT VT2, EVT VT3, ArrayRef<SDValue> Ops);
1805 LLVM_ABI SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1,
1806 EVT VT2, SDValue Op1, SDValue Op2);
1807 LLVM_ABI SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, SDVTList VTs,
1809
1810 /// This *mutates* the specified node to have the specified
1811 /// return type, opcode, and operands.
1812 LLVM_ABI SDNode *MorphNodeTo(SDNode *N, unsigned Opc, SDVTList VTs,
1814
1815 /// Mutate the specified strict FP node to its non-strict equivalent,
1816 /// unlinking the node from its chain and dropping the metadata arguments.
1817 /// The node must be a strict FP node.
1819
1820 /// These are used for target selectors to create a new node
1821 /// with specified return type(s), MachineInstr opcode, and operands.
1822 ///
1823 /// Note that getMachineNode returns the resultant node. If there is already
1824 /// a node of the specified opcode and operands, it returns that node instead
1825 /// of the current one.
1826 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1827 EVT VT);
1828 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1829 EVT VT, SDValue Op1);
1830 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1831 EVT VT, SDValue Op1, SDValue Op2);
1832 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1833 EVT VT, SDValue Op1, SDValue Op2,
1834 SDValue Op3);
1835 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1837 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1838 EVT VT1, EVT VT2, SDValue Op1,
1839 SDValue Op2);
1840 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1841 EVT VT1, EVT VT2, SDValue Op1,
1842 SDValue Op2, SDValue Op3);
1843 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1844 EVT VT1, EVT VT2,
1846 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1847 EVT VT1, EVT VT2, EVT VT3, SDValue Op1,
1848 SDValue Op2);
1849 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1850 EVT VT1, EVT VT2, EVT VT3, SDValue Op1,
1851 SDValue Op2, SDValue Op3);
1852 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1853 EVT VT1, EVT VT2, EVT VT3,
1855 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1856 ArrayRef<EVT> ResultTys,
1858 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1860
1861 /// A convenience function for creating TargetInstrInfo::EXTRACT_SUBREG nodes.
1862 LLVM_ABI SDValue getTargetExtractSubreg(int SRIdx, const SDLoc &DL, EVT VT,
1863 SDValue Operand);
1864
1865 /// A convenience function for creating TargetInstrInfo::INSERT_SUBREG nodes.
1866 LLVM_ABI SDValue getTargetInsertSubreg(int SRIdx, const SDLoc &DL, EVT VT,
1867 SDValue Operand, SDValue Subreg);
1868
1869 /// Get the specified node if it's already available, or else return NULL.
1870 LLVM_ABI SDNode *getNodeIfExists(unsigned Opcode, SDVTList VTList,
1872 const SDNodeFlags Flags,
1873 bool AllowCommute = false);
1874 LLVM_ABI SDNode *getNodeIfExists(unsigned Opcode, SDVTList VTList,
1876 bool AllowCommute = false);
1877
1878 /// Check if a node exists without modifying its flags.
1879 LLVM_ABI bool doesNodeExist(unsigned Opcode, SDVTList VTList,
1881
1882 /// Creates a SDDbgValue node.
1884 SDNode *N, unsigned R, bool IsIndirect,
1885 const DebugLoc &DL, unsigned O);
1886
1887 /// Creates a constant SDDbgValue node.
1889 const Value *C, const DebugLoc &DL,
1890 unsigned O);
1891
1892 /// Creates a FrameIndex SDDbgValue node.
1894 DIExpression *Expr, unsigned FI,
1895 bool IsIndirect,
1896 const DebugLoc &DL, unsigned O);
1897
1898 /// Creates a FrameIndex SDDbgValue node.
1900 DIExpression *Expr, unsigned FI,
1901 ArrayRef<SDNode *> Dependencies,
1902 bool IsIndirect,
1903 const DebugLoc &DL, unsigned O);
1904
1905 /// Creates a VReg SDDbgValue node.
1907 Register VReg, bool IsIndirect,
1908 const DebugLoc &DL, unsigned O);
1909
1910 /// Creates a SDDbgValue node from a list of locations.
1913 ArrayRef<SDNode *> Dependencies,
1914 bool IsIndirect, const DebugLoc &DL,
1915 unsigned O, bool IsVariadic);
1916
1917 /// Creates a SDDbgLabel node.
1919 unsigned O);
1920
1921 /// Transfer debug values from one node to another, while optionally
1922 /// generating fragment expressions for split-up values. If \p InvalidateDbg
1923 /// is set, debug values are invalidated after they are transferred.
1925 unsigned OffsetInBits = 0,
1926 unsigned SizeInBits = 0,
1927 bool InvalidateDbg = true);
1928
1929 /// Remove the specified node from the system. If any of its
1930 /// operands then becomes dead, remove them as well. Inform UpdateListener
1931 /// for each node deleted.
1933
1934 /// This method deletes the unreachable nodes in the
1935 /// given list, and any nodes that become unreachable as a result.
1937
1938 /// Modify anything using 'From' to use 'To' instead.
1939 /// This can cause recursive merging of nodes in the DAG. Use the first
1940 /// version if 'From' is known to have a single result, use the second
1941 /// if you have two nodes with identical results (or if 'To' has a superset
1942 /// of the results of 'From'), use the third otherwise.
1943 ///
1944 /// These methods all take an optional UpdateListener, which (if not null) is
1945 /// informed about nodes that are deleted and modified due to recursive
1946 /// changes in the dag.
1947 ///
1948 /// These functions only replace all existing uses. It's possible that as
1949 /// these replacements are being performed, CSE may cause the From node
1950 /// to be given new uses. These new uses of From are left in place, and
1951 /// not automatically transferred to To.
1952 ///
1954 LLVM_ABI void ReplaceAllUsesWith(SDNode *From, SDNode *To);
1955 LLVM_ABI void ReplaceAllUsesWith(SDNode *From, const SDValue *To);
1956
1957 /// Replace any uses of From with To, leaving
1958 /// uses of other values produced by From.getNode() alone.
1960
1961 /// Like ReplaceAllUsesOfValueWith, but for multiple values at once.
1962 /// This correctly handles the case where
1963 /// there is an overlap between the From values and the To values.
1965 const SDValue *To, unsigned Num);
1966
1967 /// If an existing load has uses of its chain, create a token factor node with
1968 /// that chain and the new memory node's chain and update users of the old
1969 /// chain to the token factor. This ensures that the new memory node will have
1970 /// the same relative memory dependency position as the old load. Returns the
1971 /// new merged load chain.
1973 SDValue NewMemOpChain);
1974
1975 /// If an existing load has uses of its chain, create a token factor node with
1976 /// that chain and the new memory node's chain and update users of the old
1977 /// chain to the token factor. This ensures that the new memory node will have
1978 /// the same relative memory dependency position as the old load. Returns the
1979 /// new merged load chain.
1981 SDValue NewMemOp);
1982
1983 /// Get all the nodes in their topological order without modifying any states.
1985 SmallVectorImpl<const SDNode *> &SortedNodes) const;
1986
1987 /// Topological-sort the AllNodes list and a
1988 /// assign a unique node id for each node in the DAG based on their
1989 /// topological order. Returns the number of nodes.
1991
1992 /// Move node N in the AllNodes list to be immediately
1993 /// before the given iterator Position. This may be used to update the
1994 /// topological ordering when the list of nodes is modified.
1996 AllNodes.insert(Position, AllNodes.remove(N));
1997 }
1998
1999 /// Add a dbg_value SDNode. If SD is non-null that means the
2000 /// value is produced by SD.
2001 LLVM_ABI void AddDbgValue(SDDbgValue *DB, bool isParameter);
2002
2003 /// Add a dbg_label SDNode.
2005
2006 /// Get the debug values which reference the given SDNode.
2008 return DbgInfo->getSDDbgValues(SD);
2009 }
2010
2011public:
2012 /// Return true if there are any SDDbgValue nodes associated
2013 /// with this SelectionDAG.
2014 bool hasDebugValues() const { return !DbgInfo->empty(); }
2015
2016 SDDbgInfo::DbgIterator DbgBegin() const { return DbgInfo->DbgBegin(); }
2017 SDDbgInfo::DbgIterator DbgEnd() const { return DbgInfo->DbgEnd(); }
2018
2020 return DbgInfo->ByvalParmDbgBegin();
2021 }
2023 return DbgInfo->ByvalParmDbgEnd();
2024 }
2025
2027 return DbgInfo->DbgLabelBegin();
2028 }
2030 return DbgInfo->DbgLabelEnd();
2031 }
2032
2033 /// To be invoked on an SDNode that is slated to be erased. This
2034 /// function mirrors \c llvm::salvageDebugInfo.
2036
2037 /// Dump the textual format of this DAG. Nodes are not sorted.
2038 /// Note that we overload it instead of using default value so that it is
2039 /// convenient to be called from debuggers.
2040 LLVM_ABI void dump() const;
2041
2042 /// Dump the textual format of this DAG. Print nodes in sorted orders if \p
2043 /// Sorted is true.
2044 LLVM_ABI void dump(bool Sorted) const;
2045
2046 /// In most cases this function returns the ABI alignment for a given type,
2047 /// except for illegal vector types where the alignment exceeds that of the
2048 /// stack. In such cases we attempt to break the vector down to a legal type
2049 /// and return the ABI alignment for that instead.
2050 LLVM_ABI Align getReducedAlign(EVT VT, bool UseABI);
2051
2052 /// Create a stack temporary based on the size in bytes and the alignment
2054
2055 /// Create a stack temporary, suitable for holding the specified value type.
2056 /// If minAlign is specified, the slot size will have at least that alignment.
2057 LLVM_ABI SDValue CreateStackTemporary(EVT VT, unsigned minAlign = 1);
2058
2059 /// Create a stack temporary suitable for holding either of the specified
2060 /// value types.
2062
2063 /// Emit a store/load combination to the stack. This stores
2064 /// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then
2065 /// does a load from the stack slot to DestVT, extending it if needed. The
2066 /// resultant code need not be legal.
2068 const SDLoc &DL, SDValue Chain);
2069
2070 LLVM_ABI SDValue FoldSymbolOffset(unsigned Opcode, EVT VT,
2071 const GlobalAddressSDNode *GA,
2072 const SDNode *N2);
2073
2074 LLVM_ABI SDValue FoldConstantArithmetic(unsigned Opcode, const SDLoc &DL,
2076 SDNodeFlags Flags = SDNodeFlags());
2077
2078 /// Fold floating-point operations when all operands are constants and/or
2079 /// undefined.
2080 LLVM_ABI SDValue foldConstantFPMath(unsigned Opcode, const SDLoc &DL, EVT VT,
2082
2083 /// Fold BUILD_VECTOR of constants/undefs to the destination type
2084 /// BUILD_VECTOR of constants/undefs elements.
2086 const SDLoc &DL, EVT DstEltVT);
2087
2088 /// Constant fold a setcc to true or false.
2090 const SDLoc &dl, SDNodeFlags Flags = {});
2091
2092 /// Return true if the sign bit of Op is known to be zero.
2093 /// We use this predicate to simplify operations downstream.
2094 LLVM_ABI bool SignBitIsZero(SDValue Op, unsigned Depth = 0) const;
2095
2096 /// Return true if the sign bit of Op is known to be zero, for a
2097 /// floating-point value.
2098 LLVM_ABI bool SignBitIsZeroFP(SDValue Op, unsigned Depth = 0) const;
2099
2100 /// Return true if 'Op & Mask' is known to be zero. We
2101 /// use this predicate to simplify operations downstream. Op and Mask are
2102 /// known to be the same type.
2103 LLVM_ABI bool MaskedValueIsZero(SDValue Op, const APInt &Mask,
2104 unsigned Depth = 0) const;
2105
2106 /// Return true if 'Op & Mask' is known to be zero in DemandedElts. We
2107 /// use this predicate to simplify operations downstream. Op and Mask are
2108 /// known to be the same type.
2109 LLVM_ABI bool MaskedValueIsZero(SDValue Op, const APInt &Mask,
2110 const APInt &DemandedElts,
2111 unsigned Depth = 0) const;
2112
2113 /// Return true if 'Op' is known to be zero in DemandedElts. We
2114 /// use this predicate to simplify operations downstream.
2115 LLVM_ABI bool MaskedVectorIsZero(SDValue Op, const APInt &DemandedElts,
2116 unsigned Depth = 0) const;
2117
2118 /// Return true if '(Op & Mask) == Mask'.
2119 /// Op and Mask are known to be the same type.
2120 LLVM_ABI bool MaskedValueIsAllOnes(SDValue Op, const APInt &Mask,
2121 unsigned Depth = 0) const;
2122
2123 /// For each demanded element of a vector, see if it is known to be zero.
2125 const APInt &DemandedElts,
2126 unsigned Depth = 0) const;
2127
2128 /// Determine which bits of Op are known to be either zero or one and return
2129 /// them in Known. For vectors, the known bits are those that are shared by
2130 /// every vector element.
2131 /// Targets can implement the computeKnownBitsForTargetNode method in the
2132 /// TargetLowering class to allow target nodes to be understood.
2133 LLVM_ABI KnownBits computeKnownBits(SDValue Op, unsigned Depth = 0) const;
2134
2135 /// Determine which bits of Op are known to be either zero or one and return
2136 /// them in Known. The DemandedElts argument allows us to only collect the
2137 /// known bits that are shared by the requested vector elements.
2138 /// Targets can implement the computeKnownBitsForTargetNode method in the
2139 /// TargetLowering class to allow target nodes to be understood.
2140 LLVM_ABI KnownBits computeKnownBits(SDValue Op, const APInt &DemandedElts,
2141 unsigned Depth = 0) const;
2142
2143 /// Determine the possible constant range of an integer or vector of integers.
2144 LLVM_ABI ConstantRange computeConstantRange(SDValue Op, bool ForSigned,
2145 unsigned Depth = 0) const;
2146
2147 /// Determine the possible constant range of an integer or vector of integers.
2148 /// The DemandedElts argument allows us to only collect the known ranges that
2149 /// are shared by the requested vector elements.
2151 const APInt &DemandedElts,
2152 bool ForSigned,
2153 unsigned Depth = 0) const;
2154
2155 /// Combine constant ranges from computeConstantRange() and
2156 /// computeKnownBits().
2158 SDValue Op, bool ForSigned, unsigned Depth = 0) const;
2159
2160 /// Combine constant ranges from computeConstantRange() and
2161 /// computeKnownBits(). The DemandedElts argument allows us to only collect
2162 /// the known ranges that are shared by the requested vector elements.
2164 SDValue Op, const APInt &DemandedElts, bool ForSigned,
2165 unsigned Depth = 0) const;
2166
2167 /// Used to represent the possible overflow behavior of an operation.
2168 /// Never: the operation cannot overflow.
2169 /// Always: the operation will always overflow.
2170 /// Sometime: the operation may or may not overflow.
2176
2177 /// Determine if the result of the signed addition of 2 nodes can overflow.
2179 SDValue N1) const;
2180
2181 /// Determine if the result of the unsigned addition of 2 nodes can overflow.
2183 SDValue N1) const;
2184
2185 /// Determine if the result of the addition of 2 nodes can overflow.
2187 SDValue N1) const {
2188 return IsSigned ? computeOverflowForSignedAdd(N0, N1)
2190 }
2191
2192 /// Determine if the result of the addition of 2 nodes can never overflow.
2193 bool willNotOverflowAdd(bool IsSigned, SDValue N0, SDValue N1) const {
2194 return computeOverflowForAdd(IsSigned, N0, N1) == OFK_Never;
2195 }
2196
2197 /// Determine if the result of the signed sub of 2 nodes can overflow.
2199 SDValue N1) const;
2200
2201 /// Determine if the result of the unsigned sub of 2 nodes can overflow.
2203 SDValue N1) const;
2204
2205 /// Determine if the result of the sub of 2 nodes can overflow.
2207 SDValue N1) const {
2208 return IsSigned ? computeOverflowForSignedSub(N0, N1)
2210 }
2211
2212 /// Determine if the result of the sub of 2 nodes can never overflow.
2213 bool willNotOverflowSub(bool IsSigned, SDValue N0, SDValue N1) const {
2214 return computeOverflowForSub(IsSigned, N0, N1) == OFK_Never;
2215 }
2216
2217 /// Determine if the result of the signed mul of 2 nodes can overflow.
2219 SDValue N1) const;
2220
2221 /// Determine if the result of the unsigned mul of 2 nodes can overflow.
2223 SDValue N1) const;
2224
2225 /// Determine if the result of the mul of 2 nodes can overflow.
2227 SDValue N1) const {
2228 return IsSigned ? computeOverflowForSignedMul(N0, N1)
2230 }
2231
2232 /// Determine if the result of the mul of 2 nodes can never overflow.
2233 bool willNotOverflowMul(bool IsSigned, SDValue N0, SDValue N1) const {
2234 return computeOverflowForMul(IsSigned, N0, N1) == OFK_Never;
2235 }
2236
2237 /// Returns true if \p V is an identity element of Opc with Flags.
2238 /// When OperandNo is 0, it checks that V is a left identity. Otherwise, it
2239 /// checks that V is a right identity.
2240 LLVM_ABI bool isIdentityElement(unsigned Opc, SDNodeFlags Flags, SDValue V,
2241 unsigned OperandNo, unsigned Depth = 0) const;
2242
2243 /// Returns true if the demanded vector elements of \p V is an identity
2244 /// element of Opc with Flags. When OperandNo is 0, it checks that V is a left
2245 /// identity. Otherwise, it checks that V is a right identity.
2246 LLVM_ABI bool isIdentityElement(unsigned Opc, SDNodeFlags Flags, SDValue V,
2247 const APInt &DemandedElts, unsigned OperandNo,
2248 unsigned Depth = 0) const;
2249
2250 /// Test if the given value is known to have exactly one bit set. This differs
2251 /// from computeKnownBits in that it doesn't necessarily determine which bit
2252 /// is set. If 'OrZero' is set, then return true if the given value is either
2253 /// a power of two or zero.
2254 LLVM_ABI bool isKnownToBeAPowerOfTwo(SDValue Val, bool OrZero = false,
2255 unsigned Depth = 0) const;
2256
2257 /// Test if the given value is known to have exactly one bit set. This differs
2258 /// from computeKnownBits in that it doesn't necessarily determine which bit
2259 /// is set. The DemandedElts argument allows us to only collect the minimum
2260 /// sign bits of the requested vector elements. If 'OrZero' is set, then
2261 /// return true if the given value is either a power of two or zero.
2262 LLVM_ABI bool isKnownToBeAPowerOfTwo(SDValue Val, const APInt &DemandedElts,
2263 bool OrZero = false,
2264 unsigned Depth = 0) const;
2265
2266 /// Test if the given _fp_ value is known to be an integer power-of-2, either
2267 /// positive or negative.
2268 LLVM_ABI bool isKnownToBeAPowerOfTwoFP(SDValue Val, unsigned Depth = 0) const;
2269
2270 /// Return the number of times the sign bit of the register is replicated into
2271 /// the other bits. We know that at least 1 bit is always equal to the sign
2272 /// bit (itself), but other cases can give us information. For example,
2273 /// immediately after an "SRA X, 2", we know that the top 3 bits are all equal
2274 /// to each other, so we return 3. Targets can implement the
2275 /// ComputeNumSignBitsForTarget method in the TargetLowering class to allow
2276 /// target nodes to be understood.
2277 LLVM_ABI unsigned ComputeNumSignBits(SDValue Op, unsigned Depth = 0) const;
2278
2279 /// Return the number of times the sign bit of the register is replicated into
2280 /// the other bits. We know that at least 1 bit is always equal to the sign
2281 /// bit (itself), but other cases can give us information. For example,
2282 /// immediately after an "SRA X, 2", we know that the top 3 bits are all equal
2283 /// to each other, so we return 3. The DemandedElts argument allows
2284 /// us to only collect the minimum sign bits of the requested vector elements.
2285 /// Targets can implement the ComputeNumSignBitsForTarget method in the
2286 /// TargetLowering class to allow target nodes to be understood.
2287 LLVM_ABI unsigned ComputeNumSignBits(SDValue Op, const APInt &DemandedElts,
2288 unsigned Depth = 0) const;
2289
2290 /// Get the upper bound on bit size for this Value \p Op as a signed integer.
2291 /// i.e. x == sext(trunc(x to MaxSignedBits) to bitwidth(x)).
2292 /// Similar to the APInt::getSignificantBits function.
2293 /// Helper wrapper to ComputeNumSignBits.
2295 unsigned Depth = 0) const;
2296
2297 /// Get the upper bound on bit size for this Value \p Op as a signed integer.
2298 /// i.e. x == sext(trunc(x to MaxSignedBits) to bitwidth(x)).
2299 /// Similar to the APInt::getSignificantBits function.
2300 /// Helper wrapper to ComputeNumSignBits.
2302 const APInt &DemandedElts,
2303 unsigned Depth = 0) const;
2304
2305 /// Return true if this function can prove that \p Op is never poison
2306 /// and, \p Kind can be used to track poison and/or undef bits.
2309 unsigned Depth = 0) const;
2310
2311 /// Return true if this function can prove that \p Op is never poison
2312 /// and, \p Kind can be used to track poison and/or undef bits. The
2313 /// DemandedElts argument limits the check to the requested vector elements.
2315 SDValue Op, const APInt &DemandedElts,
2317 unsigned Depth = 0) const;
2318
2319 /// Return true if this function can prove that \p Op is never poison.
2324
2325 /// Return true if this function can prove that \p Op is never poison. The
2326 /// DemandedElts argument limits the check to the requested vector elements.
2327 bool isGuaranteedNotToBePoison(SDValue Op, const APInt &DemandedElts,
2328 unsigned Depth = 0) const {
2329 return isGuaranteedNotToBeUndefOrPoison(Op, DemandedElts,
2331 }
2332
2333 /// Return true if Op can create undef or poison from non-undef & non-poison
2334 /// operands. The DemandedElts argument limits the check to the requested
2335 /// vector elements.
2336 ///
2337 /// \p ConsiderFlags controls whether poison producing flags on the
2338 /// instruction are considered. This can be used to see if the instruction
2339 /// could still introduce undef or poison even without poison generating flags
2340 /// which might be on the instruction. (i.e. could the result of
2341 /// Op->dropPoisonGeneratingFlags() still create poison or undef)
2342 LLVM_ABI bool
2343 canCreateUndefOrPoison(SDValue Op, const APInt &DemandedElts,
2345 bool ConsiderFlags = true, unsigned Depth = 0) const;
2346
2347 /// Return true if Op can create undef or poison from non-undef & non-poison
2348 /// operands.
2349 ///
2350 /// \p ConsiderFlags controls whether poison producing flags on the
2351 /// instruction are considered. This can be used to see if the instruction
2352 /// could still introduce undef or poison even without poison generating flags
2353 /// which might be on the instruction. (i.e. could the result of
2354 /// Op->dropPoisonGeneratingFlags() still create poison or undef)
2355 LLVM_ABI bool
2358 bool ConsiderFlags = true, unsigned Depth = 0) const;
2359
2360 /// Return true if the specified operand is an ISD::OR or ISD::XOR node
2361 /// that can be treated as an ISD::ADD node.
2362 /// or(x,y) == add(x,y) iff haveNoCommonBitsSet(x,y)
2363 /// xor(x,y) == add(x,y) iff isMinSignedConstant(y) && !NoWrap
2364 /// If \p NoWrap is true, this will not match ISD::XOR.
2365 LLVM_ABI bool isADDLike(SDValue Op, bool NoWrap = false) const;
2366
2367 /// Return true if the specified operand is an ISD::ADD with a ConstantSDNode
2368 /// on the right-hand side, or if it is an ISD::OR with a ConstantSDNode that
2369 /// is guaranteed to have the same semantics as an ADD. This handles the
2370 /// equivalence:
2371 /// X|Cst == X+Cst iff X&Cst = 0.
2373
2374 /// Determine floating-point class information about \p Op. For vectors, the
2375 /// known FP classes are those shared by every demanded vector element.
2376 /// \p InterestedClasses is a hint for which FP classes we care about;
2377 /// the implementation may bail out early if it can determine that
2378 /// none of the interested classes are possible.
2380 FPClassTest InterestedClasses,
2381 unsigned Depth = 0) const;
2382
2383 /// Determine floating-point class information about \p Op. The
2384 /// DemandedElts argument allows us to only collect the known FP classes
2385 /// that are shared by the requested vector elements.
2386 /// \p InterestedClasses is a hint for which FP classes we care about.
2388 const APInt &DemandedElts,
2389 FPClassTest InterestedClasses,
2390 unsigned Depth = 0) const;
2391
2392 /// Test whether the given SDValue (or all elements of it, if it is a
2393 /// vector) is known to never be NaN in \p DemandedElts. If \p SNaN is true,
2394 /// returns if \p Op is known to never be a signaling NaN (it may still be a
2395 /// qNaN).
2396 LLVM_ABI bool isKnownNeverNaN(SDValue Op, const APInt &DemandedElts,
2397 bool SNaN = false, unsigned Depth = 0) const;
2398
2399 /// Test whether the given SDValue (or all elements of it, if it is a
2400 /// vector) is known to never be NaN. If \p SNaN is true, returns if \p Op is
2401 /// known to never be a signaling NaN (it may still be a qNaN).
2402 LLVM_ABI bool isKnownNeverNaN(SDValue Op, bool SNaN = false,
2403 unsigned Depth = 0) const;
2404
2405 /// \returns true if \p Op is known to never be a signaling NaN in \p
2406 /// DemandedElts.
2407 bool isKnownNeverSNaN(SDValue Op, const APInt &DemandedElts,
2408 unsigned Depth = 0) const {
2409 return isKnownNeverNaN(Op, DemandedElts, true, Depth);
2410 }
2411
2412 /// \returns true if \p Op is known to never be a signaling NaN.
2413 bool isKnownNeverSNaN(SDValue Op, unsigned Depth = 0) const {
2414 return isKnownNeverNaN(Op, true, Depth);
2415 }
2416
2417 /// Test whether the given floating point SDValue (or all elements of it, if
2418 /// it is a vector) is known to never be interpretable as zero in \p
2419 /// DemandedElts.
2420 LLVM_ABI bool isKnownNeverLogicalZero(SDValue Op, const APInt &DemandedElts,
2421 unsigned Depth = 0) const;
2422
2423 /// Test whether the given floating point SDValue (or all elements of it, if
2424 /// it is a vector) is known to never be interpretable as zero.
2425 LLVM_ABI bool isKnownNeverLogicalZero(SDValue Op, unsigned Depth = 0) const;
2426
2427 /// Test whether the given SDValue is known to contain non-zero value(s).
2428 LLVM_ABI bool isKnownNeverZero(SDValue Op, unsigned Depth = 0) const;
2429
2430 /// Test whether the given SDValue is known to contain non-zero value(s).
2431 /// The DemandedElts argument limits the check to the requested vector
2432 /// elements.
2433 LLVM_ABI bool isKnownNeverZero(SDValue Op, const APInt &DemandedElts,
2434 unsigned Depth = 0) const;
2435
2436 /// Test whether the given float value is known to be positive. +0.0, +inf and
2437 /// +nan are considered positive, -0.0, -inf and -nan are not.
2439
2440 /// Check if a use of a float value is insensitive to signed zeros.
2441 LLVM_ABI bool canIgnoreSignBitOfZero(const SDUse &Use) const;
2442
2443 /// Check if \p Op has no-signed-zeros, or all users (limited to checking two
2444 /// for compile-time performance) are insensitive to signed zeros.
2446
2447 /// Test whether two SDValues are known to compare equal. This
2448 /// is true if they are the same value, or if one is negative zero and the
2449 /// other positive zero.
2450 LLVM_ABI bool isEqualTo(SDValue A, SDValue B) const;
2451
2452 /// Return true if A and B have no common bits set. As an example, this can
2453 /// allow an 'add' to be transformed into an 'or'.
2455
2456 /// Test whether \p V has a splatted value for all the demanded elements.
2457 ///
2458 /// On success \p UndefElts will indicate the elements that have UNDEF
2459 /// values instead of the splat value, this is only guaranteed to be correct
2460 /// for \p DemandedElts.
2461 ///
2462 /// NOTE: The function will return true for a demanded splat of UNDEF values.
2463 LLVM_ABI bool isSplatValue(SDValue V, const APInt &DemandedElts,
2464 APInt &UndefElts, unsigned Depth = 0) const;
2465
2466 /// Test whether \p V has a splatted value.
2467 LLVM_ABI bool isSplatValue(SDValue V, bool AllowUndefs = false) const;
2468
2469 /// If V is a splatted value, return the source vector and its splat index.
2470 LLVM_ABI SDValue getSplatSourceVector(SDValue V, int &SplatIndex);
2471
2472 /// If V is a splat vector, return its scalar source operand by extracting
2473 /// that element from the source vector. If LegalTypes is true, this method
2474 /// may only return a legally-typed splat value. If it cannot legalize the
2475 /// splatted value it will return SDValue().
2476 LLVM_ABI SDValue getSplatValue(SDValue V, bool LegalTypes = false);
2477
2478 /// If a SHL/SRA/SRL node \p V has shift amounts that are all less than the
2479 /// element bit-width of the shift node, return the valid constant range.
2480 LLVM_ABI std::optional<ConstantRange>
2481 getValidShiftAmountRange(SDValue V, const APInt &DemandedElts,
2482 unsigned Depth) const;
2483
2484 /// If a SHL/SRA/SRL node \p V has a uniform shift amount
2485 /// that is less than the element bit-width of the shift node, return it.
2486 LLVM_ABI std::optional<unsigned>
2487 getValidShiftAmount(SDValue V, const APInt &DemandedElts,
2488 unsigned Depth = 0) const;
2489
2490 /// If a SHL/SRA/SRL node \p V has a uniform shift amount
2491 /// that is less than the element bit-width of the shift node, return it.
2492 LLVM_ABI std::optional<unsigned>
2493 getValidShiftAmount(SDValue V, unsigned Depth = 0) const;
2494
2495 /// If a SHL/SRA/SRL node \p V has shift amounts that are all less than the
2496 /// element bit-width of the shift node, return the minimum possible value.
2497 LLVM_ABI std::optional<unsigned>
2498 getValidMinimumShiftAmount(SDValue V, const APInt &DemandedElts,
2499 unsigned Depth = 0) const;
2500
2501 /// If a SHL/SRA/SRL node \p V has shift amounts that are all less than the
2502 /// element bit-width of the shift node, return the minimum possible value.
2503 LLVM_ABI std::optional<unsigned>
2504 getValidMinimumShiftAmount(SDValue V, unsigned Depth = 0) const;
2505
2506 /// If a SHL/SRA/SRL node \p V has shift amounts that are all less than the
2507 /// element bit-width of the shift node, return the maximum possible value.
2508 LLVM_ABI std::optional<unsigned>
2509 getValidMaximumShiftAmount(SDValue V, const APInt &DemandedElts,
2510 unsigned Depth = 0) const;
2511
2512 /// If a SHL/SRA/SRL node \p V has shift amounts that are all less than the
2513 /// element bit-width of the shift node, return the maximum possible value.
2514 LLVM_ABI std::optional<unsigned>
2515 getValidMaximumShiftAmount(SDValue V, unsigned Depth = 0) const;
2516
2517 /// Match a binop + shuffle pyramid that represents a horizontal reduction
2518 /// over the elements of a vector starting from the EXTRACT_VECTOR_ELT node /p
2519 /// Extract. The reduction must use one of the opcodes listed in /p
2520 /// CandidateBinOps and on success /p BinOp will contain the matching opcode.
2521 /// Returns the vector that is being reduced on, or SDValue() if a reduction
2522 /// was not matched. If \p AllowPartials is set then in the case of a
2523 /// reduction pattern that only matches the first few stages, the extracted
2524 /// subvector of the start of the reduction is returned.
2526 ArrayRef<ISD::NodeType> CandidateBinOps,
2527 bool AllowPartials = false);
2528
2529 /// Utility function used by legalize and lowering to
2530 /// "unroll" a vector operation by splitting out the scalars and operating
2531 /// on each element individually. If the ResNE is 0, fully unroll the vector
2532 /// op. If ResNE is less than the width of the vector op, unroll up to ResNE.
2533 /// If the ResNE is greater than the width of the vector op, unroll the
2534 /// vector op and fill the end of the resulting vector with UNDEFS.
2535 LLVM_ABI SDValue UnrollVectorOp(SDNode *N, unsigned ResNE = 0);
2536
2537 /// Like UnrollVectorOp(), but for the [US](ADD|SUB|MUL)O family of opcodes.
2538 /// This is a separate function because those opcodes have two results.
2539 LLVM_ABI std::pair<SDValue, SDValue>
2540 UnrollVectorOverflowOp(SDNode *N, unsigned ResNE = 0);
2541
2542 /// Return true if loads are next to each other and can be
2543 /// merged. Check that both are nonvolatile and if LD is loading
2544 /// 'Bytes' bytes from a location that is 'Dist' units away from the
2545 /// location that the 'Base' load is loading from.
2547 unsigned Bytes, int Dist) const;
2548
2549 /// Return true if stores are next to each other and can be merged. Check that
2550 /// both are nonvolatile and if \p ST is storing \p Bytes bytes to a location
2551 /// that is \p Dist units away from the location that \p Base is storing to.
2554 unsigned Bytes, int Dist) const;
2555
2556 /// Infer alignment of a load / store address. Return std::nullopt if it
2557 /// cannot be inferred.
2559
2560 /// Split the scalar node with EXTRACT_ELEMENT using the provided VTs and
2561 /// return the low/high part.
2562 LLVM_ABI std::pair<SDValue, SDValue> SplitScalar(const SDValue &N,
2563 const SDLoc &DL,
2564 const EVT &LoVT,
2565 const EVT &HiVT);
2566
2567 /// Compute the VTs needed for the low/hi parts of a type
2568 /// which is split (or expanded) into two not necessarily identical pieces.
2569 LLVM_ABI std::pair<EVT, EVT> GetSplitDestVTs(const EVT &VT) const;
2570
2571 /// Compute the VTs needed for the low/hi parts of a type, dependent on an
2572 /// enveloping VT that has been split into two identical pieces. Sets the
2573 /// HisIsEmpty flag when hi type has zero storage size.
2574 LLVM_ABI std::pair<EVT, EVT> GetDependentSplitDestVTs(const EVT &VT,
2575 const EVT &EnvVT,
2576 bool *HiIsEmpty) const;
2577
2578 /// Split the vector with EXTRACT_SUBVECTOR using the provided
2579 /// VTs and return the low/high part.
2580 LLVM_ABI std::pair<SDValue, SDValue> SplitVector(const SDValue &N,
2581 const SDLoc &DL,
2582 const EVT &LoVT,
2583 const EVT &HiVT);
2584
2585 /// Split the vector with EXTRACT_SUBVECTOR and return the low/high part.
2586 std::pair<SDValue, SDValue> SplitVector(const SDValue &N, const SDLoc &DL) {
2587 EVT LoVT, HiVT;
2588 std::tie(LoVT, HiVT) = GetSplitDestVTs(N.getValueType());
2589 return SplitVector(N, DL, LoVT, HiVT);
2590 }
2591
2592 /// Split the explicit vector length parameter of a VP operation.
2593 LLVM_ABI std::pair<SDValue, SDValue> SplitEVL(SDValue N, EVT VecVT,
2594 const SDLoc &DL);
2595
2596 /// Split the node's operand with EXTRACT_SUBVECTOR and
2597 /// return the low/high part.
2598 std::pair<SDValue, SDValue> SplitVectorOperand(const SDNode *N, unsigned OpNo)
2599 {
2600 return SplitVector(N->getOperand(OpNo), SDLoc(N));
2601 }
2602
2603 /// Widen the vector up to the next power of two using INSERT_SUBVECTOR.
2604 LLVM_ABI SDValue WidenVector(const SDValue &N, const SDLoc &DL);
2605
2606 /// Append the extracted elements from Start to Count out of the vector Op in
2607 /// Args. If Count is 0, all of the elements will be extracted. The extracted
2608 /// elements will have type EVT if it is provided, and otherwise their type
2609 /// will be Op's element type.
2612 unsigned Start = 0, unsigned Count = 0,
2613 EVT EltVT = EVT());
2614
2615 /// Compute the default alignment value for the given type.
2616 LLVM_ABI Align getEVTAlign(EVT MemoryVT) const;
2617
2618 /// Test whether the given value is a constant int or similar node.
2619 LLVM_ABI bool
2621 bool AllowOpaques = true) const;
2622
2623 /// Test whether the given value is a constant FP or similar node.
2625
2626 /// \returns true if \p N is any kind of constant or build_vector of
2627 /// constants, int or float. If a vector, it may not necessarily be a splat.
2632
2633 /// Check if a value \op N is a constant using the target's BooleanContent for
2634 /// its type.
2635 LLVM_ABI std::optional<bool> isBoolConstant(SDValue N) const;
2636
2637 /// Set CallSiteInfo to be associated with Node.
2638 void addCallSiteInfo(const SDNode *Node, CallSiteInfo &&CallInfo) {
2639 SDEI[Node].CSInfo = std::move(CallInfo);
2640 }
2641 /// Return CallSiteInfo associated with Node, or a default if none exists.
2642 CallSiteInfo getCallSiteInfo(const SDNode *Node) {
2643 auto I = SDEI.find(Node);
2644 return I != SDEI.end() ? std::move(I->second).CSInfo : CallSiteInfo();
2645 }
2646 /// Set HeapAllocSite to be associated with Node.
2648 SDEI[Node].HeapAllocSite = MD;
2649 }
2650 /// Return HeapAllocSite associated with Node, or nullptr if none exists.
2652 auto I = SDEI.find(Node);
2653 return I != SDEI.end() ? I->second.HeapAllocSite : nullptr;
2654 }
2655 /// Set PCSections to be associated with Node.
2656 void addPCSections(const SDNode *Node, MDNode *MD) {
2657 SDEI[Node].PCSections = MD;
2658 }
2659 /// Set MMRAMetadata to be associated with Node.
2660 void addMMRAMetadata(const SDNode *Node, MDNode *MMRA) {
2661 SDEI[Node].MMRA = MMRA;
2662 }
2663 /// Return PCSections associated with Node, or nullptr if none exists.
2665 auto It = SDEI.find(Node);
2666 return It != SDEI.end() ? It->second.PCSections : nullptr;
2667 }
2668 /// Return the MMRA MDNode associated with Node, or nullptr if none
2669 /// exists.
2671 auto It = SDEI.find(Node);
2672 return It != SDEI.end() ? It->second.MMRA : nullptr;
2673 }
2674 /// Set CalledGlobal to be associated with Node.
2675 void addCalledGlobal(const SDNode *Node, const GlobalValue *GV,
2676 unsigned OpFlags) {
2677 SDEI[Node].CalledGlobal = {GV, OpFlags};
2678 }
2679 /// Return CalledGlobal associated with Node, or a nullopt if none exists.
2680 std::optional<CalledGlobalInfo> getCalledGlobal(const SDNode *Node) {
2681 auto I = SDEI.find(Node);
2682 return I != SDEI.end()
2683 ? std::make_optional(std::move(I->second).CalledGlobal)
2684 : std::nullopt;
2685 }
2686 /// Set NoMergeSiteInfo to be associated with Node if NoMerge is true.
2687 void addNoMergeSiteInfo(const SDNode *Node, bool NoMerge) {
2688 if (NoMerge)
2689 SDEI[Node].NoMerge = NoMerge;
2690 }
2691 /// Return NoMerge info associated with Node.
2692 bool getNoMergeSiteInfo(const SDNode *Node) const {
2693 auto I = SDEI.find(Node);
2694 return I != SDEI.end() ? I->second.NoMerge : false;
2695 }
2696
2697 /// Copy extra info associated with one node to another.
2698 LLVM_ABI void copyExtraInfo(SDNode *From, SDNode *To);
2699
2700 /// Return the current function's default denormal handling kind for the given
2701 /// floating point type.
2703 return MF->getDenormalMode(VT.getFltSemantics());
2704 }
2705
2706 LLVM_ABI bool shouldOptForSize() const;
2707
2708 /// Get the (commutative) identity element for the given opcode, if it exists.
2709 LLVM_ABI SDValue getIdentityElement(unsigned Opcode, const SDLoc &DL, EVT VT,
2710 SDNodeFlags Flags);
2711
2712 /// Get an expression that implements a partial multiply-subtract reduction.
2713 /// In practice this means that parts of the expression are negated, e.g.
2714 ///
2715 /// partial_reduce_fmls acc, lhs, rhs
2716 /// <=> partial_reduce_fmla acc, lhs, -rhs
2717 ///
2718 /// partial_reduce_umls acc, lhs, rhs
2719 /// <=> -partial_reduce_umla -acc, lhs, rhs
2721 SDValue Acc, SDValue LHS, SDValue RHS);
2722
2723 /// Some opcodes may create immediate undefined behavior when used with some
2724 /// values (integer division-by-zero for example). Therefore, these operations
2725 /// are not generally safe to move around or change.
2726 bool isSafeToSpeculativelyExecute(unsigned Opcode) const {
2727 switch (Opcode) {
2728 case ISD::SDIV:
2729 case ISD::SREM:
2730 case ISD::SDIVREM:
2731 case ISD::UDIV:
2732 case ISD::UREM:
2733 case ISD::UDIVREM:
2734 return false;
2735 default:
2736 return true;
2737 }
2738 }
2739
2740 /// Check if the provided node is save to speculatively executed given its
2741 /// current arguments. So, while `udiv` the opcode is not safe to
2742 /// speculatively execute, a given `udiv` node may be if the denominator is
2743 /// known nonzero.
2745 switch (N->getOpcode()) {
2746 case ISD::UDIV:
2747 return isKnownNeverZero(N->getOperand(1));
2748 default:
2749 return isSafeToSpeculativelyExecute(N->getOpcode());
2750 }
2751 }
2752
2753 LLVM_ABI SDValue makeStateFunctionCall(unsigned LibFunc, SDValue Ptr,
2754 SDValue InChain, const SDLoc &DLoc);
2755
2756 /// Returns the maximum runtime number of elements in VT if known, or 0
2757 /// otherwise.
2758 unsigned getMaxRuntimeNumElements(EVT VT) const;
2759
2760 /// Returns a vector constructed from the scalar values in order. The number
2761 /// of scalars must match the maximum runtime length of VT, but only the first
2762 /// actual runtime length scalars are included in the result.
2764 ArrayRef<SDValue> Scalars);
2765
2766private:
2767#ifndef NDEBUG
2768 void verifyNode(SDNode *N) const;
2769#endif
2770 void InsertNode(SDNode *N);
2771 bool RemoveNodeFromCSEMaps(SDNode *N);
2772 void AddModifiedNodeToCSEMaps(SDNode *N);
2773 SDNode *FindModifiedNodeSlot(SDNode *N, SDValue Op,
2774 FoldingSetInsertToken &InsertToken);
2775 SDNode *FindModifiedNodeSlot(SDNode *N, SDValue Op1, SDValue Op2,
2776 FoldingSetInsertToken &InsertToken);
2777 SDNode *FindModifiedNodeSlot(SDNode *N, ArrayRef<SDValue> Ops,
2778 FoldingSetInsertToken &InsertToken);
2779 SDNode *UpdateSDLocOnMergeSDNode(SDNode *N, const SDLoc &loc);
2780
2781 void DeleteNodeNotInCSEMaps(SDNode *N);
2782 void DeallocateNode(SDNode *N);
2783
2784 void allnodes_clear();
2785
2786 /// Look up the node specified by ID in CSEMap. If it exists, return it and
2787 /// clear \p InsertToken; otherwise return null and set \p InsertToken for a
2788 /// subsequent insert. This overload is for nodes other than Constant or
2789 /// ConstantFP, use the other one for those.
2790 SDNode *lookupNode(const SDNodeKey &Key, FoldingSetInsertToken &InsertToken);
2791
2792 /// Look up the node specified by ID in CSEMap. If it exists, return it and
2793 /// clear \p InsertToken; otherwise return null and set \p InsertToken for a
2794 /// subsequent insert. Performs additional processing for constant nodes.
2795 SDNode *lookupNode(const SDNodeKey &Key, const SDLoc &DL,
2796 FoldingSetInsertToken &InsertToken);
2797
2798 /// Maps to auto-CSE operations.
2799 std::vector<CondCodeSDNode*> CondCodeNodes;
2800
2801 std::vector<SDNode*> ValueTypeNodes;
2802 std::map<EVT, SDNode*, EVT::compareRawBits> ExtendedValueTypeNodes;
2803 StringMap<SDNode*> ExternalSymbols;
2804
2805 std::map<std::pair<std::string, unsigned>, SDNode *> TargetExternalSymbols;
2807
2808 FlagInserter *Inserter = nullptr;
2809};
2810
2811template <> struct GraphTraits<SelectionDAG*> : public GraphTraits<SDNode*> {
2813
2815 return nodes_iterator(G->allnodes_begin());
2816 }
2817
2819 return nodes_iterator(G->allnodes_end());
2820 }
2821};
2822
2823} // end namespace llvm
2824
2825#endif // LLVM_CODEGEN_SELECTIONDAG_H
return SDValue()
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
This file defines the StringMap class.
unsigned uint64_t
constexpr LLT S1
AMDGPU Uniform Intrinsic Combine
MachineBasicBlock & MBB
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
This file defines the BumpPtrAllocator interface.
#define X(NUM, ENUM, NAME)
Definition ELF.h:857
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
#define LLVM_ABI
Definition Compiler.h:215
#define LLVM_DUMP_METHOD
Mark debug helper function definitions like dump() that should not be stripped from debug builds.
Definition Compiler.h:678
@ CallSiteInfo
This file defines the DenseMap class.
This file defines the DenseSet and SmallDenseSet classes.
This file defines a hash set that can be used to remove duplication of nodes in a graph.
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
#define I(x, y, z)
Definition MD5.cpp:57
#define G(x, y, z)
Definition MD5.cpp:55
#define H(x, y, z)
Definition MD5.cpp:56
Register Reg
This file contains the declarations for metadata subclasses.
#define T
#define P(N)
const SmallVectorImpl< MachineOperand > & Cond
This file defines the SmallVector class.
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
static void removeOperands(MachineInstr &MI, unsigned i)
This file contains the UndefPoisonKind enum and helper functions.
Value * RHS
Value * LHS
Class for arbitrary precision integers.
Definition APInt.h:78
static Capacity get(size_t N)
Get the capacity of an array that can hold at least N elements.
Recycle small arrays allocated from a BumpPtrAllocator.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
size_t size() const
Get the array size.
Definition ArrayRef.h:141
This class is a wrapper over an AAResults, and it is intended to be used only when there are no IR ch...
The address of a basic block.
Definition Constants.h:1088
BlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate IR basic block frequen...
A "pseudo-class" with methods for operating on BUILD_VECTORs.
This class represents a function call, abstracting a target machine's calling convention.
ConstantFP - Floating Point Values [float, double].
Definition Constants.h:420
This is the shared class of boolean and integer constants.
Definition Constants.h:87
This is an important base class in LLVM.
Definition Constant.h:43
DWARF expression.
Base class for variables.
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
A debug info location.
Definition DebugLoc.h:126
Implements a dense probed hash-table based set.
Definition DenseSet.h:281
Insertion token: a failed lookup fills it in, the matching insert consumes it.
Definition FoldingSet.h:284
This class is used to gather all the unique data bits of a node.
Definition FoldingSet.h:162
FunctionLoweringInfo - This contains information that is global to a function that is used when lower...
Data structure describing the variable locations in a function.
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
Tracks which library functions to use for a particular subtarget or function.
This class is used to represent ISD::LOAD nodes.
static LocationSize precise(uint64_t Value)
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition MCSymbol.h:42
Metadata node.
Definition Metadata.h:1079
Abstract base class for all machine specific constantpool value subclasses.
A description of a memory reference used in the backend.
Flags
Flags values. These may be or'd together.
@ MOLoad
The memory access reads data.
@ MOStore
The memory access writes data.
An SDNode that represents everything that will be needed to construct a MachineInstr.
Root of the metadata hierarchy.
Definition Metadata.h:64
Pass interface - Implemented by all 'passes'.
Definition Pass.h:99
Analysis providing profile information.
RecyclingAllocator - This class wraps an Allocator, adding the functionality of recycling deleted obj...
Wrapper class representing virtual and physical registers.
Definition Register.h:20
Keeps track of dbg_value information through SDISel.
BumpPtrAllocator & getAlloc()
DbgIterator ByvalParmDbgBegin()
DbgIterator DbgEnd()
SDDbgInfo & operator=(const SDDbgInfo &)=delete
SmallVectorImpl< SDDbgLabel * >::iterator DbgLabelIterator
SDDbgInfo()=default
LLVM_ABI void add(SDDbgValue *V, bool isParameter)
bool empty() const
DbgLabelIterator DbgLabelEnd()
DbgIterator ByvalParmDbgEnd()
SmallVectorImpl< SDDbgValue * >::iterator DbgIterator
SDDbgInfo(const SDDbgInfo &)=delete
DbgLabelIterator DbgLabelBegin()
void add(SDDbgLabel *L)
DbgIterator DbgBegin()
LLVM_ABI void erase(const SDNode *Node)
Invalidate all DbgValues attached to the node and remove it from the Node-to-DbgValues map.
ArrayRef< SDDbgValue * > getSDDbgValues(const SDNode *Node) const
Holds the information from a dbg_label node through SDISel.
Holds the information for a single machine location through SDISel; either an SDNode,...
Holds the information from a dbg_value node through SDISel.
Wrapper class for IR location info (IR ordering and DebugLoc) to be passed into SDNode creation funct...
Represents one node in the SelectionDAG.
Represents a use of a SDNode.
Unlike LLVM values, Selection DAG nodes may return multiple values as the result of a computation.
SDNode * getNode() const
get the SDNode which holds the desired result
EVT getValueType() const
Return the ValueType of the referenced return value.
Targets can subclass this to parameterize the SelectionDAG lowering and instruction selection process...
Help to insert SDNodeFlags automatically in transforming.
FlagInserter(SelectionDAG &SDAG, SDNodeFlags Flags)
FlagInserter(const FlagInserter &)=delete
FlagInserter(SelectionDAG &SDAG, SDNode *N)
FlagInserter & operator=(const FlagInserter &)=delete
This is used to represent a portion of an LLVM function in a low-level Data Dependence DAG representa...
LLVM_ABI SDValue getElementCount(const SDLoc &DL, EVT VT, ElementCount EC)
bool willNotOverflowAdd(bool IsSigned, SDValue N0, SDValue N1) const
Determine if the result of the addition of 2 nodes can never overflow.
static unsigned getOpcode_EXTEND_VECTOR_INREG(unsigned Opcode)
Convert *_EXTEND to *_EXTEND_VECTOR_INREG opcode.
LLVM_ABI Align getReducedAlign(EVT VT, bool UseABI)
In most cases this function returns the ABI alignment for a given type, except for illegal vector typ...
LLVM_ABI SDValue getShiftAmountOperand(EVT LHSTy, SDValue Op)
Return the specified value casted to the target's desired shift amount type.
LLVM_ABI std::pair< SDValue, SDValue > getMemccpy(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Src, SDValue C, SDValue Size, const CallInst *CI)
Lower a memccpy operation into a target library call and return the resulting chain and call result a...
LLVM_ABI SDValue emitStackConvert(SDValue SrcOp, EVT SlotVT, EVT DestVT, const SDLoc &DL, SDValue Chain)
Emit a store/load combination to the stack.
LLVM_ABI bool isKnownNeverLogicalZero(SDValue Op, const APInt &DemandedElts, unsigned Depth=0) const
Test whether the given floating point SDValue (or all elements of it, if it is a vector) is known to ...
LLVM_ABI SDValue getExtLoadVP(ISD::LoadExtType ExtType, const SDLoc &dl, EVT VT, SDValue Chain, SDValue Ptr, SDValue Mask, SDValue EVL, MachinePointerInfo PtrInfo, EVT MemVT, MaybeAlign Alignment, MachineMemOperand::Flags MMOFlags, const AAMDNodes &AAInfo, bool IsExpanding=false)
SDValue getTargetGlobalAddress(const GlobalValue *GV, const SDLoc &DL, EVT VT, int64_t offset=0, unsigned TargetFlags=0)
SDValue getExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT, unsigned Opcode)
Convert Op, which must be of integer type, to the integer type VT, by either any/sign/zero-extending ...
SDValue getCopyFromReg(SDValue Chain, const SDLoc &dl, Register Reg, EVT VT, SDValue Glue)
SDValue getExtractVectorElt(const SDLoc &DL, EVT VT, SDValue Vec, unsigned Idx)
Extract element at Idx from Vec.
LLVM_ABI SDValue getSplatSourceVector(SDValue V, int &SplatIndex)
If V is a splatted value, return the source vector and its splat index.
LLVM_ABI SDValue getLabelNode(unsigned Opcode, const SDLoc &dl, SDValue Root, MCSymbol *Label)
LLVM_ABI OverflowKind computeOverflowForUnsignedSub(SDValue N0, SDValue N1) const
Determine if the result of the unsigned sub of 2 nodes can overflow.
LLVM_ABI unsigned ComputeMaxSignificantBits(SDValue Op, unsigned Depth=0) const
Get the upper bound on bit size for this Value Op as a signed integer.
const SDValue & getRoot() const
Return the root tag of the SelectionDAG.
LLVM_ABI std::pair< SDValue, SDValue > getStrlen(SDValue Chain, const SDLoc &dl, SDValue Src, const CallInst *CI)
Lower a strlen operation into a target library call and return the resulting chain and call result as...
LLVM_ABI SDValue getMaskedGather(SDVTList VTs, EVT MemVT, const SDLoc &dl, ArrayRef< SDValue > Ops, MachineMemOperand *MMO, ISD::MemIndexType IndexType, ISD::LoadExtType ExtTy)
bool isKnownNeverSNaN(SDValue Op, unsigned Depth=0) const
LLVM_ABI SDValue FoldSetCC(EVT VT, SDValue N1, SDValue N2, ISD::CondCode Cond, const SDLoc &dl, SDNodeFlags Flags={})
Constant fold a setcc to true or false.
bool isKnownNeverSNaN(SDValue Op, const APInt &DemandedElts, unsigned Depth=0) const
LLVM_ABI std::optional< bool > isBoolConstant(SDValue N) const
Check if a value \op N is a constant using the target's BooleanContent for its type.
LLVM_ABI SDValue getStackArgumentTokenFactor(SDValue Chain)
Compute a TokenFactor to force all the incoming stack arguments to be loaded from the stack.
const TargetSubtargetInfo & getSubtarget() const
SDValue getCopyToReg(SDValue Chain, const SDLoc &dl, Register Reg, SDValue N)
LLVM_ABI ConstantRange computeConstantRange(SDValue Op, bool ForSigned, unsigned Depth=0) const
Determine the possible constant range of an integer or vector of integers.
LLVM_ABI SDValue getMergeValues(ArrayRef< SDValue > Ops, const SDLoc &dl)
Create a MERGE_VALUES node from the given operands.
LLVM_ABI SDVTList getVTList(EVT VT)
Return an SDVTList that represents the list of values specified.
BlockFrequencyInfo * getBFI() const
LLVM_ABI SDValue getShiftAmountConstant(uint64_t Val, EVT VT, const SDLoc &DL)
LLVM_ABI void updateDivergence(SDNode *N)
LLVM_ABI SDValue getSplatValue(SDValue V, bool LegalTypes=false)
If V is a splat vector, return its scalar source operand by extracting that element from the source v...
LLVM_ABI SDValue getAllOnesConstant(const SDLoc &DL, EVT VT, bool IsTarget=false, bool IsOpaque=false)
LLVM_ABI MachineSDNode * getMachineNode(unsigned Opcode, const SDLoc &dl, EVT VT)
These are used for target selectors to create a new node with specified return type(s),...
LLVM_ABI void ExtractVectorElements(SDValue Op, SmallVectorImpl< SDValue > &Args, unsigned Start=0, unsigned Count=0, EVT EltVT=EVT())
Append the extracted elements from Start to Count out of the vector Op in Args.
LLVM_ABI SDValue getAtomicMemset(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Value, SDValue Size, Type *SizeTy, unsigned ElemSz, bool isTailCall, MachinePointerInfo DstPtrInfo)
LLVM_ABI SDValue getAtomicLoad(ISD::LoadExtType ExtType, const SDLoc &dl, EVT MemVT, EVT VT, SDValue Chain, SDValue Ptr, MachineMemOperand *MMO)
LLVM_ABI bool LegalizeVectors()
This transforms the SelectionDAG into a SelectionDAG that only uses vector math operations supported ...
LLVM_ABI SDNode * getNodeIfExists(unsigned Opcode, SDVTList VTList, ArrayRef< SDValue > Ops, const SDNodeFlags Flags, bool AllowCommute=false)
Get the specified node if it's already available, or else return NULL.
SDValue getTargetConstantFP(const APFloat &Val, const SDLoc &DL, EVT VT)
LLVM_ABI SDValue getPseudoProbeNode(const SDLoc &Dl, SDValue Chain, uint64_t Guid, uint64_t Index, uint32_t Attr)
Creates a PseudoProbeSDNode with function GUID Guid and the index of the block Index it is probing,...
LLVM_ABI SDValue getFreeze(SDValue V)
Return a freeze using the SDLoc of the value operand.
LLVM_ABI SDNode * SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT)
These are used for target selectors to mutate the specified node to have the specified return type,...
LLVM_ABI SelectionDAG(const TargetMachine &TM, CodeGenOptLevel)
LLVM_ABI SDValue getMemset(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Src, SDValue Size, Align Alignment, bool isVol, bool AlwaysInline, const CallInst *CI, MachinePointerInfo DstPtrInfo, const AAMDNodes &AAInfo=AAMDNodes())
LLVM_ABI SDValue getConstantPool(const Constant *C, EVT VT, MaybeAlign Align=std::nullopt, int Offs=0, bool isT=false, unsigned TargetFlags=0)
LLVM_ABI SDValue getStridedLoadVP(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType, EVT VT, const SDLoc &DL, SDValue Chain, SDValue Ptr, SDValue Offset, SDValue Stride, SDValue Mask, SDValue EVL, EVT MemVT, MachineMemOperand *MMO, bool IsExpanding=false)
SDDbgInfo::DbgIterator ByvalParmDbgEnd() const
LLVM_ABI SDValue getAtomicCmpSwap(unsigned Opcode, const SDLoc &dl, EVT MemVT, SDVTList VTs, SDValue Chain, SDValue Ptr, SDValue Cmp, SDValue Swp, MachineMemOperand *MMO)
Gets a node for an atomic cmpxchg op.
LLVM_ABI SDValue makeEquivalentMemoryOrdering(SDValue OldChain, SDValue NewMemOpChain)
If an existing load has uses of its chain, create a token factor node with that chain and the new mem...
LLVM_ABI bool isConstantIntBuildVectorOrConstantInt(SDValue N, bool AllowOpaques=true) const
Test whether the given value is a constant int or similar node.
LLVM_ABI void ReplaceAllUsesOfValuesWith(const SDValue *From, const SDValue *To, unsigned Num)
Like ReplaceAllUsesOfValueWith, but for multiple values at once.
LLVM_ABI SDValue getJumpTableDebugInfo(int JTI, SDValue Chain, const SDLoc &DL)
LLVM_ABI SDValue getSymbolFunctionGlobalAddress(SDValue Op, Function **TargetFunction=nullptr)
Return a GlobalAddress of the function from the current module with name matching the given ExternalS...
bool isSafeToSpeculativelyExecute(unsigned Opcode) const
Some opcodes may create immediate undefined behavior when used with some values (integer division-by-...
void addMMRAMetadata(const SDNode *Node, MDNode *MMRA)
Set MMRAMetadata to be associated with Node.
SDValue getStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr, MachinePointerInfo PtrInfo, MaybeAlign Alignment=MaybeAlign(), MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const MMOMetadata &Metadata=MMOMetadata())
LLVM_ABI std::optional< unsigned > getValidMaximumShiftAmount(SDValue V, const APInt &DemandedElts, unsigned Depth=0) const
If a SHL/SRA/SRL node V has shift amounts that are all less than the element bit-width of the shift n...
OverflowKind computeOverflowForSub(bool IsSigned, SDValue N0, SDValue N1) const
Determine if the result of the sub of 2 nodes can overflow.
LLVM_ABI SDValue UnrollVectorOp(SDNode *N, unsigned ResNE=0)
Utility function used by legalize and lowering to "unroll" a vector operation by splitting out the sc...
SDDbgInfo::DbgIterator ByvalParmDbgBegin() const
LLVM_ABI SDValue getVScale(const SDLoc &DL, EVT VT, APInt MulImm)
Return a node that represents the runtime scaling 'MulImm * RuntimeVL'.
void setFunctionLoweringInfo(FunctionLoweringInfo *FuncInfo)
LLVM_ABI SDValue getConstantFP(double Val, const SDLoc &DL, EVT VT, bool isTarget=false)
Create a ConstantFPSDNode wrapping a constant value.
OverflowKind
Used to represent the possible overflow behavior of an operation.
static LLVM_ABI unsigned getHasPredecessorMaxSteps()
LLVM_ABI bool haveNoCommonBitsSet(SDValue A, SDValue B) const
Return true if A and B have no common bits set.
LLVM_ABI SDValue getAddrSpaceCast(const SDLoc &dl, EVT VT, SDValue Ptr, unsigned SrcAS, unsigned DestAS, const SDNodeFlags Flags=SDNodeFlags())
Return an AddrSpaceCastSDNode.
SDValue getExtractSubvector(const SDLoc &DL, EVT VT, SDValue Vec, unsigned Idx)
Return the VT typed sub-vector of Vec at Idx.
LLVM_ABI bool cannotBeOrderedNegativeFP(SDValue Op) const
Test whether the given float value is known to be positive.
LLVM_ABI SDValue getRegister(Register Reg, EVT VT)
LLVM_ABI bool calculateDivergence(SDNode *N)
LLVM_ABI std::pair< SDValue, SDValue > getStrcmp(SDValue Chain, const SDLoc &dl, SDValue S0, SDValue S1, const CallInst *CI)
Lower a strcmp operation into a target library call and return the resulting chain and call result as...
LLVM_ABI SDValue getGetFPEnv(SDValue Chain, const SDLoc &dl, SDValue Ptr, EVT MemVT, MachineMemOperand *MMO)
LLVM_ABI SDValue getAssertAlign(const SDLoc &DL, SDValue V, Align A)
Return an AssertAlignSDNode.
LLVM_ABI SDNode * mutateStrictFPToFP(SDNode *Node)
Mutate the specified strict FP node to its non-strict equivalent, unlinking the node from its chain a...
LLVM_ABI bool canIgnoreSignBitOfZero(const SDUse &Use) const
Check if a use of a float value is insensitive to signed zeros.
SDValue getGLOBAL_OFFSET_TABLE(EVT VT)
Return a GLOBAL_OFFSET_TABLE node. This does not have a useful SDLoc.
void init(MachineFunction &NewMF, MachineFunctionAnalysisManager &AM, const TargetLibraryInfo *LibraryInfo, const LibcallLoweringInfo *LibcallsInfo, UniformityInfo *UA, ProfileSummaryInfo *PSIin, BlockFrequencyInfo *BFIin, FunctionVarLocs const *FnVarLocs)
LLVM_ABI bool SignBitIsZeroFP(SDValue Op, unsigned Depth=0) const
Return true if the sign bit of Op is known to be zero, for a floating-point value.
LLVM_ABI SDValue getMemIntrinsicNode(unsigned Opcode, const SDLoc &dl, SDVTList VTList, ArrayRef< SDValue > Ops, EVT MemVT, MachinePointerInfo PtrInfo, Align Alignment, MachineMemOperand::Flags Flags=MachineMemOperand::MOLoad|MachineMemOperand::MOStore, LocationSize Size=LocationSize::precise(0), const AAMDNodes &AAInfo=AAMDNodes())
Creates a MemIntrinsicNode that may produce a result and takes a list of operands.
SDValue getInsertSubvector(const SDLoc &DL, SDValue Vec, SDValue SubVec, unsigned Idx)
Insert SubVec at the Idx element of Vec.
SelectionDAG(const SelectionDAG &)=delete
LLVM_ABI SDValue getStepVector(const SDLoc &DL, EVT ResVT, const APInt &StepVal)
Returns a vector of type ResVT whose elements contain the linear sequence <0, Step,...
SDValue getSetCC(const SDLoc &DL, EVT VT, SDValue LHS, SDValue RHS, ISD::CondCode Cond, SDValue Chain=SDValue(), bool IsSignaling=false, SDNodeFlags Flags={})
Helper function to make it easier to build SetCC's if you just have an ISD::CondCode instead of an SD...
bool willNotOverflowSub(bool IsSigned, SDValue N0, SDValue N1) const
Determine if the result of the sub of 2 nodes can never overflow.
LLVM_ABI SDValue getAtomic(unsigned Opcode, const SDLoc &dl, EVT MemVT, SDValue Chain, SDValue Ptr, SDValue Val, MachineMemOperand *MMO)
Gets a node for an atomic op, produces result (if relevant) and chain and takes 2 operands.
LLVM_ABI Align getEVTAlign(EVT MemoryVT) const
Compute the default alignment value for the given type.
void addNoMergeSiteInfo(const SDNode *Node, bool NoMerge)
Set NoMergeSiteInfo to be associated with Node if NoMerge is true.
LLVM_ABI bool shouldOptForSize() const
std::pair< SDValue, SDValue > SplitVectorOperand(const SDNode *N, unsigned OpNo)
Split the node's operand with EXTRACT_SUBVECTOR and return the low/high part.
bool hasSwiftErrorArg() const
SDValue buildVectorFromUnrolledParts(EVT VT, const SDLoc &DL, ArrayRef< SDValue > Scalars)
Returns a vector constructed from the scalar values in order.
LLVM_ABI SDValue getNOT(const SDLoc &DL, SDValue Val, EVT VT)
Create a bitwise NOT operation as (XOR Val, -1).
const STC & getSubtarget() const
LLVM_ABI SDValue getMemcpy(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Src, SDValue Size, Align DstAlign, Align SrcAlign, bool isVol, bool AlwaysInline, const CallInst *CI, std::optional< bool > OverrideTailCall, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo, const AAMDNodes &AAInfo=AAMDNodes(), BatchAAResults *BatchAA=nullptr)
const TargetLowering & getTargetLoweringInfo() const
LLVM_ABI bool isEqualTo(SDValue A, SDValue B) const
Test whether two SDValues are known to compare equal.
std::optional< CalledGlobalInfo > getCalledGlobal(const SDNode *Node)
Return CalledGlobal associated with Node, or a nullopt if none exists.
static constexpr unsigned MaxRecursionDepth
unsigned getMaxRuntimeNumElements(EVT VT) const
Returns the maximum runtime number of elements in VT if known, or 0 otherwise.
LLVM_ABI SDValue getStridedStoreVP(SDValue Chain, const SDLoc &DL, SDValue Val, SDValue Ptr, SDValue Offset, SDValue Stride, SDValue Mask, SDValue EVL, EVT MemVT, MachineMemOperand *MMO, ISD::MemIndexedMode AM, bool IsTruncating=false, bool IsCompressing=false)
bool isGuaranteedNotToBePoison(SDValue Op, unsigned Depth=0) const
Return true if this function can prove that Op is never poison.
LLVM_ABI SDValue getIdentityElement(unsigned Opcode, const SDLoc &DL, EVT VT, SDNodeFlags Flags)
Get the (commutative) identity element for the given opcode, if it exists.
SDValue getTruncStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr, MachinePointerInfo PtrInfo, EVT SVT, MaybeAlign Alignment=MaybeAlign(), MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const MMOMetadata &Metadata=MMOMetadata())
LLVM_ABI SDValue expandVACopy(SDNode *Node)
Expand the specified ISD::VACOPY node as the Legalize pass would.
LLVM_ABI SDValue getIndexedMaskedLoad(SDValue OrigLoad, const SDLoc &dl, SDValue Base, SDValue Offset, ISD::MemIndexedMode AM)
SelectionDAG & operator=(const SelectionDAG &)=delete
SDValue getMemIntrinsicNode(unsigned Opcode, const SDLoc &dl, SDVTList VTList, ArrayRef< SDValue > Ops, EVT MemVT, MachinePointerInfo PtrInfo, MaybeAlign Alignment=std::nullopt, MachineMemOperand::Flags Flags=MachineMemOperand::MOLoad|MachineMemOperand::MOStore, LocationSize Size=LocationSize::precise(0), const AAMDNodes &AAInfo=AAMDNodes())
SDValue getTargetConstant(const APInt &Val, const SDLoc &DL, EVT VT, bool isOpaque=false)
LLVM_ABI APInt computeVectorKnownZeroElements(SDValue Op, const APInt &DemandedElts, unsigned Depth=0) const
For each demanded element of a vector, see if it is known to be zero.
LLVM_ABI void AddDbgValue(SDDbgValue *DB, bool isParameter)
Add a dbg_value SDNode.
bool NewNodesMustHaveLegalTypes
When true, additional steps are taken to ensure that getConstant() and similar functions return DAG n...
LLVM_ABI std::pair< EVT, EVT > GetSplitDestVTs(const EVT &VT) const
Compute the VTs needed for the low/hi parts of a type which is split (or expanded) into two not neces...
MDNode * getHeapAllocSite(const SDNode *Node) const
Return HeapAllocSite associated with Node, or nullptr if none exists.
LLVM_ABI void salvageDebugInfo(SDNode &N)
To be invoked on an SDNode that is slated to be erased.
LLVM_ABI SDNode * MorphNodeTo(SDNode *N, unsigned Opc, SDVTList VTs, ArrayRef< SDValue > Ops)
This mutates the specified node to have the specified return type, opcode, and operands.
SDValue getTargetJumpTable(int JTI, EVT VT, unsigned TargetFlags=0)
MDNode * getMMRAMetadata(const SDNode *Node) const
Return the MMRA MDNode associated with Node, or nullptr if none exists.
SDValue getLoadVP(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType, EVT VT, const SDLoc &dl, SDValue Chain, SDValue Ptr, SDValue Offset, SDValue Mask, SDValue EVL, MachinePointerInfo PtrInfo, EVT MemVT, MaybeAlign Alignment=MaybeAlign(), MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const AAMDNodes &AAInfo=AAMDNodes(), const MDNode *Ranges=nullptr, bool IsExpanding=false)
LLVM_ABI std::pair< SDValue, SDValue > UnrollVectorOverflowOp(SDNode *N, unsigned ResNE=0)
Like UnrollVectorOp(), but for the [US](ADD|SUB|MUL)O family of opcodes.
allnodes_const_iterator allnodes_begin() const
SDValue getUNDEF(EVT VT)
Return an UNDEF node. UNDEF does not have a useful SDLoc.
SDValue getCALLSEQ_END(SDValue Chain, SDValue Op1, SDValue Op2, SDValue InGlue, const SDLoc &DL)
Return a new CALLSEQ_END node, which always must have a glue result (to ensure it's not CSE'd).
LLVM_ABI SDValue getGatherVP(SDVTList VTs, EVT VT, const SDLoc &dl, ArrayRef< SDValue > Ops, MachineMemOperand *MMO, ISD::MemIndexType IndexType)
SDValue getBuildVector(EVT VT, const SDLoc &DL, ArrayRef< SDValue > Ops)
Return an ISD::BUILD_VECTOR node.
LLVM_ABI SDValue getBitcastedAnyExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of integer type, to the integer type VT, by first bitcasting (from potentia...
allnodes_const_iterator allnodes_end() const
LLVM_ABI bool isSplatValue(SDValue V, const APInt &DemandedElts, APInt &UndefElts, unsigned Depth=0) const
Test whether V has a splatted value for all the demanded elements.
LLVM_ABI void DeleteNode(SDNode *N)
Remove the specified node from the system.
LLVM_ABI SDValue getTruncStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr, SDValue Offset, MachinePointerInfo PtrInfo, EVT SVT, Align Alignment, MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const MMOMetadata &Metadata=MMOMetadata())
LLVM_ABI SDValue getBitcast(EVT VT, SDValue V)
Return a bitcast using the SDLoc of the value operand, and casting to the provided type.
LLVM_ABI SDDbgValue * getDbgValueList(DIVariable *Var, DIExpression *Expr, ArrayRef< SDDbgOperand > Locs, ArrayRef< SDNode * > Dependencies, bool IsIndirect, const DebugLoc &DL, unsigned O, bool IsVariadic)
Creates a SDDbgValue node from a list of locations.
LLVM_ABI std::pair< SDValue, SDValue > getStrcpy(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Src, const CallInst *CI)
Lower a strcpy operation into a target library call and return the resulting chain and call result as...
SDValue getCopyFromReg(SDValue Chain, const SDLoc &dl, Register Reg, EVT VT)
SDValue getSelect(const SDLoc &DL, EVT VT, SDValue Cond, SDValue LHS, SDValue RHS, SDNodeFlags Flags=SDNodeFlags())
Helper function to make it easier to build Select's if you just have operands and don't want to check...
SDDbgInfo::DbgIterator DbgEnd() const
LLVM_ABI SDValue getNegative(SDValue Val, const SDLoc &DL, EVT VT)
Create negative operation as (SUB 0, Val).
LLVM_ABI std::optional< unsigned > getValidShiftAmount(SDValue V, const APInt &DemandedElts, unsigned Depth=0) const
If a SHL/SRA/SRL node V has a uniform shift amount that is less than the element bit-width of the shi...
LLVM_ABI void setNodeMemRefs(MachineSDNode *N, ArrayRef< MachineMemOperand * > NewMemRefs)
Mutate the specified machine node's memory references to the provided list.
LLVM_ABI SDValue simplifySelect(SDValue Cond, SDValue TVal, SDValue FVal)
Try to simplify a select/vselect into 1 of its operands or a constant.
CallSiteInfo getCallSiteInfo(const SDNode *Node)
Return CallSiteInfo associated with Node, or a default if none exists.
LLVM_ABI SDValue getZeroExtendInReg(SDValue Op, const SDLoc &DL, EVT VT)
Return the expression required to zero extend the Op value assuming it was the smaller SrcTy value.
LLVM_ABI bool isConstantFPBuildVectorOrConstantFP(SDValue N) const
Test whether the given value is a constant FP or similar node.
const DataLayout & getDataLayout() const
allnodes_iterator allnodes_begin()
LLVM_ABI SDValue getPartialReduceMLS(unsigned Opc, const SDLoc &DL, SDValue Acc, SDValue LHS, SDValue RHS)
Get an expression that implements a partial multiply-subtract reduction.
iterator_range< allnodes_const_iterator > allnodes() const
MDNode * getPCSections(const SDNode *Node) const
Return PCSections associated with Node, or nullptr if none exists.
ProfileSummaryInfo * getPSI() const
LLVM_ABI SDValue expandVAArg(SDNode *Node)
Expand the specified ISD::VAARG node as the Legalize pass would.
SDValue getTargetFrameIndex(int FI, EVT VT)
LLVM_ABI void Legalize()
This transforms the SelectionDAG into a SelectionDAG that is compatible with the target instruction s...
LLVM_ABI SDValue getTokenFactor(const SDLoc &DL, SmallVectorImpl< SDValue > &Vals)
Creates a new TokenFactor containing Vals.
LLVM_ABI void setGraphAttrs(const SDNode *N, const char *Attrs)
Set graph attributes for a node. (eg. "color=red".)
SDValue getCopyToReg(SDValue Chain, const SDLoc &dl, SDValue Reg, SDValue N, SDValue Glue)
LLVM_ABI SDValue getStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr, MachinePointerInfo PtrInfo, Align Alignment, MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const MMOMetadata &Metadata=MMOMetadata())
Helper function to build ISD::STORE nodes.
LLVM_ABI bool LegalizeOp(SDNode *N, SmallSetVector< SDNode *, 16 > &UpdatedNodes)
Transforms a SelectionDAG node and any operands to it into a node that is compatible with the target ...
LLVM_ABI bool doesNodeExist(unsigned Opcode, SDVTList VTList, ArrayRef< SDValue > Ops)
Check if a node exists without modifying its flags.
LLVM_ABI ConstantRange computeConstantRangeIncludingKnownBits(SDValue Op, bool ForSigned, unsigned Depth=0) const
Combine constant ranges from computeConstantRange() and computeKnownBits().
void addHeapAllocSite(const SDNode *Node, MDNode *MD)
Set HeapAllocSite to be associated with Node.
const SelectionDAGTargetInfo & getSelectionDAGInfo() const
LLVM_ABI bool areNonVolatileConsecutiveLoads(LoadSDNode *LD, LoadSDNode *Base, unsigned Bytes, int Dist) const
Return true if loads are next to each other and can be merged.
LLVM_ABI SDValue getMaskedHistogram(SDVTList VTs, EVT MemVT, const SDLoc &dl, ArrayRef< SDValue > Ops, MachineMemOperand *MMO, ISD::MemIndexType IndexType)
LLVM_ABI SDDbgLabel * getDbgLabel(DILabel *Label, const DebugLoc &DL, unsigned O)
Creates a SDDbgLabel node.
SDValue getTargetConstant(const ConstantInt &Val, const SDLoc &DL, EVT VT, bool isOpaque=false)
LLVM_ABI SDValue getStoreVP(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr, SDValue Offset, SDValue Mask, SDValue EVL, EVT MemVT, MachineMemOperand *MMO, ISD::MemIndexedMode AM, bool IsTruncating=false, bool IsCompressing=false)
std::pair< SDValue, SDValue > SplitVector(const SDValue &N, const SDLoc &DL)
Split the vector with EXTRACT_SUBVECTOR and return the low/high part.
LLVM_ABI OverflowKind computeOverflowForUnsignedMul(SDValue N0, SDValue N1) const
Determine if the result of the unsigned mul of 2 nodes can overflow.
SDValue getCopyToReg(SDValue Chain, const SDLoc &dl, Register Reg, SDValue N, SDValue Glue)
LLVM_ABI void copyExtraInfo(SDNode *From, SDNode *To)
Copy extra info associated with one node to another.
LLVM_ABI SDValue getConstant(uint64_t Val, const SDLoc &DL, EVT VT, bool isTarget=false, bool isOpaque=false)
Create a ConstantSDNode wrapping a constant value.
LLVM_ABI void setGraphColor(const SDNode *N, const char *Color)
Convenience for setting node color attribute.
LLVM_ABI SDValue getMemBasePlusOffset(SDValue Base, TypeSize Offset, const SDLoc &DL, const SDNodeFlags Flags=SDNodeFlags())
Returns sum of the base pointer and offset.
LLVM_ABI SDValue getGlobalAddress(const GlobalValue *GV, const SDLoc &DL, EVT VT, int64_t offset=0, bool isTargetGA=false, unsigned TargetFlags=0)
bool willNotOverflowMul(bool IsSigned, SDValue N0, SDValue N1) const
Determine if the result of the mul of 2 nodes can never overflow.
SDValue getSignedTargetConstant(int64_t Val, const SDLoc &DL, EVT VT, bool isOpaque=false)
LLVM_ABI SDValue getVAArg(EVT VT, const SDLoc &dl, SDValue Chain, SDValue Ptr, SDValue SV, unsigned Align)
VAArg produces a result and token chain, and takes a pointer and a source value as input.
OverflowKind computeOverflowForMul(bool IsSigned, SDValue N0, SDValue N1) const
Determine if the result of the mul of 2 nodes can overflow.
LLVM_ABI SDValue getLoadFFVP(EVT VT, const SDLoc &DL, SDValue Chain, SDValue Ptr, SDValue Mask, SDValue EVL, MachineMemOperand *MMO)
LLVM_ABI SDValue getTypeSize(const SDLoc &DL, EVT VT, TypeSize TS)
LLVM_ABI SDValue getMDNode(const MDNode *MD)
Return an MDNodeSDNode which holds an MDNode.
LLVM_ABI void clear()
Clear state and free memory necessary to make this SelectionDAG ready to process a new block.
SDValue getCALLSEQ_END(SDValue Chain, uint64_t Size1, uint64_t Size2, SDValue Glue, const SDLoc &DL)
LLVM_ABI std::pair< SDValue, SDValue > getMemcmp(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Src, SDValue Size, const CallInst *CI)
Lower a memcmp operation into a target library call and return the resulting chain and call result as...
LLVM_ABI void ReplaceAllUsesWith(SDValue From, SDValue To)
Modify anything using 'From' to use 'To' instead.
LLVM_ABI SDValue getCommutedVectorShuffle(const ShuffleVectorSDNode &SV)
Returns an ISD::VECTOR_SHUFFLE node semantically equivalent to the shuffle node in input but with swa...
LLVM_ABI SDValue getExtLoad(ISD::LoadExtType ExtType, const SDLoc &dl, EVT VT, SDValue Chain, SDValue Ptr, MachinePointerInfo PtrInfo, EVT MemVT, MaybeAlign Alignment=MaybeAlign(), MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const MMOMetadata &Metadata=MMOMetadata())
LLVM_ABI std::pair< SDValue, SDValue > SplitVector(const SDValue &N, const SDLoc &DL, const EVT &LoVT, const EVT &HiVT)
Split the vector with EXTRACT_SUBVECTOR using the provided VTs and return the low/high part.
LLVM_ABI SDValue makeStateFunctionCall(unsigned LibFunc, SDValue Ptr, SDValue InChain, const SDLoc &DLoc)
Helper used to make a call to a library function that has one argument of pointer type.
LLVM_ABI SDValue getSignedConstant(int64_t Val, const SDLoc &DL, EVT VT, bool isTarget=false, bool isOpaque=false)
LLVM_ABI SDValue getSrcValue(const Value *v)
Construct a node to track a Value* through the backend.
SDValue getSplatVector(EVT VT, const SDLoc &DL, SDValue Op)
LLVM_ABI SDValue getAtomicMemcpy(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Src, SDValue Size, Type *SizeTy, unsigned ElemSz, bool isTailCall, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo)
LLVM_ABI OverflowKind computeOverflowForSignedMul(SDValue N0, SDValue N1) const
Determine if the result of the signed mul of 2 nodes can overflow.
LLVM_ABI MaybeAlign InferPtrAlign(SDValue Ptr) const
Infer alignment of a load / store address.
LLVM_ABI void dump() const
Dump the textual format of this DAG.
FlagInserter * getFlagInserter()
LLVM_ABI bool MaskedValueIsAllOnes(SDValue Op, const APInt &Mask, unsigned Depth=0) const
Return true if '(Op & Mask) == Mask'.
SDValue getCALLSEQ_START(SDValue Chain, uint64_t InSize, uint64_t OutSize, const SDLoc &DL)
Return a new CALLSEQ_START node, that starts new call frame, in which InSize bytes are set up inside ...
bool hasDebugValues() const
Return true if there are any SDDbgValue nodes associated with this SelectionDAG.
LLVM_ABI bool SignBitIsZero(SDValue Op, unsigned Depth=0) const
Return true if the sign bit of Op is known to be zero.
LLVM_ABI void RemoveDeadNodes()
This method deletes all unreachable nodes in the SelectionDAG.
LLVM_ABI void RemoveDeadNode(SDNode *N)
Remove the specified node from the system.
SDValue getBuildVector(EVT VT, const SDLoc &DL, ArrayRef< SDUse > Ops)
Return an ISD::BUILD_VECTOR node.
LLVM_ABI void AddDbgLabel(SDDbgLabel *DB)
Add a dbg_label SDNode.
bool isConstantValueOfAnyType(SDValue N) const
SDDbgInfo::DbgLabelIterator DbgLabelEnd() const
allnodes_iterator allnodes_end()
SDDbgInfo::DbgLabelIterator DbgLabelBegin() const
LLVM_ABI bool canCreateUndefOrPoison(SDValue Op, const APInt &DemandedElts, UndefPoisonKind Kind=UndefPoisonKind::UndefOrPoison, bool ConsiderFlags=true, unsigned Depth=0) const
Return true if Op can create undef or poison from non-undef & non-poison operands.
SDValue getInsertVectorElt(const SDLoc &DL, SDValue Vec, SDValue Elt, unsigned Idx)
Insert Elt into Vec at offset Idx.
LLVM_ABI SDValue getTargetExtractSubreg(int SRIdx, const SDLoc &DL, EVT VT, SDValue Operand)
A convenience function for creating TargetInstrInfo::EXTRACT_SUBREG nodes.
LLVM_ABI SDValue getBasicBlock(MachineBasicBlock *MBB)
SDValue getSelectCC(const SDLoc &DL, SDValue LHS, SDValue RHS, SDValue True, SDValue False, ISD::CondCode Cond, SDNodeFlags Flags=SDNodeFlags())
Helper function to make it easier to build SelectCC's if you just have an ISD::CondCode instead of an...
MachineFunctionAnalysisManager * getMFAM()
LLVM_ABI SDValue getSExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of integer type, to the integer type VT, by either sign-extending or trunca...
LLVM_ABI SDDbgValue * getVRegDbgValue(DIVariable *Var, DIExpression *Expr, Register VReg, bool IsIndirect, const DebugLoc &DL, unsigned O)
Creates a VReg SDDbgValue node.
LLVM_ABI SDValue getLoad(EVT VT, const SDLoc &dl, SDValue Chain, SDValue Ptr, MachinePointerInfo PtrInfo, MaybeAlign Alignment=MaybeAlign(), MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const MMOMetadata &Metadata=MMOMetadata())
Loads are not normal binary operators: their result type is not determined by their operands,...
LLVM_ABI KnownFPClass computeKnownFPClass(SDValue Op, FPClassTest InterestedClasses, unsigned Depth=0) const
Determine floating-point class information about Op.
LLVM_ABI bool isIdentityElement(unsigned Opc, SDNodeFlags Flags, SDValue V, unsigned OperandNo, unsigned Depth=0) const
Returns true if V is an identity element of Opc with Flags.
LLVM_ABI SDValue getEHLabel(const SDLoc &dl, SDValue Root, MCSymbol *Label)
LLVM_ABI std::string getGraphAttrs(const SDNode *N) const
Get graph attributes for a node.
LLVM_ABI bool isGuaranteedNotToBeUndefOrPoison(SDValue Op, UndefPoisonKind Kind=UndefPoisonKind::UndefOrPoison, unsigned Depth=0) const
Return true if this function can prove that Op is never poison and, Kind can be used to track poison ...
LLVM_ABI bool isKnownNeverZero(SDValue Op, unsigned Depth=0) const
Test whether the given SDValue is known to contain non-zero value(s).
LLVM_ABI SDValue getIndexedStore(SDValue OrigStore, const SDLoc &dl, SDValue Base, SDValue Offset, ISD::MemIndexedMode AM)
LLVM_ABI SDValue FoldConstantArithmetic(unsigned Opcode, const SDLoc &DL, EVT VT, ArrayRef< SDValue > Ops, SDNodeFlags Flags=SDNodeFlags())
LLVM_ABI std::optional< unsigned > getValidMinimumShiftAmount(SDValue V, const APInt &DemandedElts, unsigned Depth=0) const
If a SHL/SRA/SRL node V has shift amounts that are all less than the element bit-width of the shift n...
LLVM_ABI SDValue getSetFPEnv(SDValue Chain, const SDLoc &dl, SDValue Ptr, EVT MemVT, MachineMemOperand *MMO)
LLVM_ABI SDValue getBoolExtOrTrunc(SDValue Op, const SDLoc &SL, EVT VT, EVT OpVT)
Convert Op, which must be of integer type, to the integer type VT, by using an extension appropriate ...
LLVM_ABI SDValue getMaskedStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Base, SDValue Offset, SDValue Mask, EVT MemVT, MachineMemOperand *MMO, ISD::MemIndexedMode AM, bool IsTruncating=false, bool IsCompressing=false)
LLVM_ABI SDValue getExternalSymbol(const char *Sym, EVT VT)
const TargetMachine & getTarget() const
bool getNoMergeSiteInfo(const SDNode *Node) const
Return NoMerge info associated with Node.
LLVM_ABI std::pair< SDValue, SDValue > getStrictFPExtendOrRound(SDValue Op, SDValue Chain, const SDLoc &DL, EVT VT)
Convert Op, which must be a STRICT operation of float type, to the float type VT, by either extending...
SDValue getObjectPtrOffset(const SDLoc &SL, SDValue Ptr, SDValue Offset)
LLVM_ABI std::pair< SDValue, SDValue > SplitEVL(SDValue N, EVT VecVT, const SDLoc &DL)
Split the explicit vector length parameter of a VP operation.
LLVM_ABI SDValue getPtrExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of integer type, to the integer type VT, by either truncating it or perform...
LLVM_ABI SDValue getMaskFromElementCount(const SDLoc &DL, EVT VT, ElementCount Len)
Return a vector with the first 'Len' lanes set to true and remaining lanes set to false.
SDDbgInfo::DbgIterator DbgBegin() const
LLVM_ABI SDValue getAnyExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of integer type, to the integer type VT, by either any-extending or truncat...
iterator_range< allnodes_iterator > allnodes()
OverflowKind computeOverflowForAdd(bool IsSigned, SDValue N0, SDValue N1) const
Determine if the result of the addition of 2 nodes can overflow.
LLVM_ABI SDValue getBlockAddress(const BlockAddress *BA, EVT VT, int64_t Offset=0, bool isTarget=false, unsigned TargetFlags=0)
LLVM_ABI SDValue WidenVector(const SDValue &N, const SDLoc &DL)
Widen the vector up to the next power of two using INSERT_SUBVECTOR.
const LibcallLoweringInfo & getLibcalls() const
LLVM_ABI SDValue getLoadVP(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType, EVT VT, const SDLoc &dl, SDValue Chain, SDValue Ptr, SDValue Offset, SDValue Mask, SDValue EVL, MachinePointerInfo PtrInfo, EVT MemVT, Align Alignment, MachineMemOperand::Flags MMOFlags, const AAMDNodes &AAInfo, const MDNode *Ranges=nullptr, bool IsExpanding=false)
LLVM_ABI SDValue getIntPtrConstant(uint64_t Val, const SDLoc &DL, bool isTarget=false)
LLVM_ABI SDDbgValue * getConstantDbgValue(DIVariable *Var, DIExpression *Expr, const Value *C, const DebugLoc &DL, unsigned O)
Creates a constant SDDbgValue node.
LLVM_ABI SDValue getScatterVP(SDVTList VTs, EVT VT, const SDLoc &dl, ArrayRef< SDValue > Ops, MachineMemOperand *MMO, ISD::MemIndexType IndexType)
LLVM_ABI SDValue getValueType(EVT)
SDValue getTargetConstantFP(double Val, const SDLoc &DL, EVT VT)
LLVM_ABI SDValue getLifetimeNode(bool IsStart, const SDLoc &dl, SDValue Chain, int FrameIndex)
Creates a LifetimeSDNode that starts (IsStart==true) or ends (IsStart==false) the lifetime of the Fra...
ArrayRef< SDDbgValue * > GetDbgValues(const SDNode *SD) const
Get the debug values which reference the given SDNode.
LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, ArrayRef< SDUse > Ops)
Gets or creates the specified node.
LLVM_ABI OverflowKind computeOverflowForSignedAdd(SDValue N0, SDValue N1) const
Determine if the result of the signed addition of 2 nodes can overflow.
LLVM_ABI SDValue getFPExtendOrRound(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of float type, to the float type VT, by either extending or rounding (by tr...
LLVM_ABI unsigned AssignTopologicalOrder()
Topological-sort the AllNodes list and a assign a unique node id for each node in the DAG based on th...
ilist< SDNode >::size_type allnodes_size() const
LLVM_ABI bool isKnownNeverNaN(SDValue Op, const APInt &DemandedElts, bool SNaN=false, unsigned Depth=0) const
Test whether the given SDValue (or all elements of it, if it is a vector) is known to never be NaN in...
LLVM_ABI SDValue FoldConstantBuildVector(BuildVectorSDNode *BV, const SDLoc &DL, EVT DstEltVT)
Fold BUILD_VECTOR of constants/undefs to the destination type BUILD_VECTOR of constants/undefs elemen...
ilist< SDNode >::const_iterator allnodes_const_iterator
LLVM_ABI SDValue getAtomicMemmove(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Src, SDValue Size, Type *SizeTy, unsigned ElemSz, bool isTailCall, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo)
LLVM_ABI SDValue getIndexedMaskedStore(SDValue OrigStore, const SDLoc &dl, SDValue Base, SDValue Offset, ISD::MemIndexedMode AM)
LLVM_ABI SDValue getTruncStoreVP(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr, SDValue Mask, SDValue EVL, MachinePointerInfo PtrInfo, EVT SVT, Align Alignment, MachineMemOperand::Flags MMOFlags, const AAMDNodes &AAInfo, bool IsCompressing=false)
SDValue getTargetConstant(uint64_t Val, const SDLoc &DL, EVT VT, bool isOpaque=false)
const TargetLibraryInfo & getLibInfo() const
LLVM_ABI unsigned ComputeNumSignBits(SDValue Op, unsigned Depth=0) const
Return the number of times the sign bit of the register is replicated into the other bits.
void addCalledGlobal(const SDNode *Node, const GlobalValue *GV, unsigned OpFlags)
Set CalledGlobal to be associated with Node.
LLVM_ABI bool MaskedVectorIsZero(SDValue Op, const APInt &DemandedElts, unsigned Depth=0) const
Return true if 'Op' is known to be zero in DemandedElts.
LLVM_ABI SDValue getBoolConstant(bool V, const SDLoc &DL, EVT VT, EVT OpVT)
Create a true or false constant of type VT using the target's BooleanContent for type OpVT.
SDValue getTargetBlockAddress(const BlockAddress *BA, EVT VT, int64_t Offset=0, unsigned TargetFlags=0)
LLVM_ABI SDDbgValue * getFrameIndexDbgValue(DIVariable *Var, DIExpression *Expr, unsigned FI, bool IsIndirect, const DebugLoc &DL, unsigned O)
Creates a FrameIndex SDDbgValue node.
const UniformityInfo * getUniformityInfo() const
LLVM_ABI SDValue getExtStridedLoadVP(ISD::LoadExtType ExtType, const SDLoc &DL, EVT VT, SDValue Chain, SDValue Ptr, SDValue Stride, SDValue Mask, SDValue EVL, EVT MemVT, MachineMemOperand *MMO, bool IsExpanding=false)
CodeGenOptLevel getOptLevel() const
LLVM_ABI SDValue getMemmove(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Src, SDValue Size, Align DstAlign, Align SrcAlign, bool isVol, const CallInst *CI, std::optional< bool > OverrideTailCall, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo, const AAMDNodes &AAInfo=AAMDNodes(), BatchAAResults *BatchAA=nullptr)
LLVM_ABI SDValue getJumpTable(int JTI, EVT VT, bool isTarget=false, unsigned TargetFlags=0)
LLVM_ABI bool isBaseWithConstantOffset(SDValue Op) const
Return true if the specified operand is an ISD::ADD with a ConstantSDNode on the right-hand side,...
LLVM_ABI SDValue getVectorIdxConstant(uint64_t Val, const SDLoc &DL, bool isTarget=false)
LLVM_ABI void getTopologicallyOrderedNodes(SmallVectorImpl< const SDNode * > &SortedNodes) const
Get all the nodes in their topological order without modifying any states.
LLVM_ABI void ReplaceAllUsesOfValueWith(SDValue From, SDValue To)
Replace any uses of From with To, leaving uses of other values produced by From.getNode() alone.
MachineFunction & getMachineFunction() const
LLVM_ABI std::pair< SDValue, SDValue > getStrstr(SDValue Chain, const SDLoc &dl, SDValue S0, SDValue S1, const CallInst *CI)
Lower a strstr operation into a target library call and return the resulting chain and call result as...
LLVM_ABI SDValue getPtrExtendInReg(SDValue Op, const SDLoc &DL, EVT VT)
Return the expression required to extend the Op as a pointer value assuming it was the smaller SrcTy ...
LLVM_ABI OverflowKind computeOverflowForUnsignedAdd(SDValue N0, SDValue N1) const
Determine if the result of the unsigned addition of 2 nodes can overflow.
SDValue getPOISON(EVT VT)
Return a POISON node. POISON does not have a useful SDLoc.
void setFlagInserter(FlagInserter *FI)
SDValue getSplatBuildVector(EVT VT, const SDLoc &DL, SDValue Op)
Return a splat ISD::BUILD_VECTOR node, consisting of Op splatted to all elements.
bool isSafeToSpeculativelyExecuteNode(const SDNode *N) const
Check if the provided node is save to speculatively executed given its current arguments.
LLVM_ABI SDValue getErrorMergeValues(ArrayRef< EVT > ResultTypes, SDValue Chain, const SDLoc &dl)
Return poison values for each of ResultTypes, substituting Chain for any result of type MVT::Other,...
LLVM_ABI SDValue getFrameIndex(int FI, EVT VT, bool isTarget=false)
const FunctionVarLocs * getFunctionVarLocs() const
Returns the result of the AssignmentTrackingAnalysis pass if it's available, otherwise return nullptr...
LLVM_ABI void canonicalizeCommutativeBinop(unsigned Opcode, SDValue &N1, SDValue &N2) const
Swap N1 and N2 if Opcode is a commutative binary opcode and the canonical form expects the opposite o...
LLVM_ABI KnownBits computeKnownBits(SDValue Op, unsigned Depth=0) const
Determine which bits of Op are known to be either zero or one and return them in Known.
LLVM_ABI SDValue getRegisterMask(const uint32_t *RegMask)
LLVM_ABI SDValue getZExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of integer type, to the integer type VT, by either zero-extending or trunca...
LLVM_ABI SDValue getCondCode(ISD::CondCode Cond)
void addCallSiteInfo(const SDNode *Node, CallSiteInfo &&CallInfo)
Set CallSiteInfo to be associated with Node.
SDValue getExtOrTrunc(bool IsSigned, SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of integer type, to the integer type VT, by either sign/zero-extending (dep...
LLVM_ABI bool MaskedValueIsZero(SDValue Op, const APInt &Mask, unsigned Depth=0) const
Return true if 'Op & Mask' is known to be zero.
LLVM_ABI bool isKnownToBeAPowerOfTwoFP(SDValue Val, unsigned Depth=0) const
Test if the given fp value is known to be an integer power-of-2, either positive or negative.
LLVM_ABI OverflowKind computeOverflowForSignedSub(SDValue N0, SDValue N1) const
Determine if the result of the signed sub of 2 nodes can overflow.
LLVM_ABI void init(MachineFunction &NewMF, const TargetLibraryInfo *LibraryInfo, const LibcallLoweringInfo *LibcallsInfo, UniformityInfo *UA, ProfileSummaryInfo *PSIin, BlockFrequencyInfo *BFIin, FunctionVarLocs const *FnVarLocs)
Prepare this SelectionDAG to process code in the given MachineFunction.
SDValue getObjectPtrOffset(const SDLoc &SL, SDValue Ptr, TypeSize Offset)
Create an add instruction with appropriate flags when used for addressing some offset of an object.
LLVMContext * getContext() const
LLVM_ABI SDValue simplifyFPBinop(unsigned Opcode, SDValue X, SDValue Y, SDNodeFlags Flags)
Try to simplify a floating-point binary operation into 1 of its operands or a constant.
const SDValue & setRoot(SDValue N)
Set the current root tag of the SelectionDAG.
void addPCSections(const SDNode *Node, MDNode *MD)
Set PCSections to be associated with Node.
LLVM_ABI bool isKnownToBeAPowerOfTwo(SDValue Val, bool OrZero=false, unsigned Depth=0) const
Test if the given value is known to have exactly one bit set.
bool isGuaranteedNotToBePoison(SDValue Op, const APInt &DemandedElts, unsigned Depth=0) const
Return true if this function can prove that Op is never poison.
SDValue getTargetConstantPool(MachineConstantPoolValue *C, EVT VT, MaybeAlign Align=std::nullopt, int Offset=0, unsigned TargetFlags=0)
LLVM_ABI SDValue getDeactivationSymbol(const GlobalValue *GV)
LLVM_ABI void clearGraphAttrs()
Clear all previously defined node graph attributes.
LLVM_ABI SDValue getTargetExternalSymbol(const char *Sym, EVT VT, unsigned TargetFlags=0)
LLVM_ABI SDValue getMCSymbol(MCSymbol *Sym, EVT VT)
LLVM_ABI bool isUndef(unsigned Opcode, ArrayRef< SDValue > Ops)
Return true if the result of this operation is always undefined.
LLVM_ABI SDValue CreateStackTemporary(TypeSize Bytes, Align Alignment)
Create a stack temporary based on the size in bytes and the alignment.
LLVM_ABI SDNode * UpdateNodeOperands(SDNode *N, SDValue Op)
Mutate the specified node in-place to have the specified operands.
LLVM_ABI std::pair< EVT, EVT > GetDependentSplitDestVTs(const EVT &VT, const EVT &EnvVT, bool *HiIsEmpty) const
Compute the VTs needed for the low/hi parts of a type, dependent on an enveloping VT that has been sp...
LLVM_ABI SDValue foldConstantFPMath(unsigned Opcode, const SDLoc &DL, EVT VT, ArrayRef< SDValue > Ops)
Fold floating-point operations when all operands are constants and/or undefined.
SDValue getTargetConstantPool(const Constant *C, EVT VT, MaybeAlign Align=std::nullopt, int Offset=0, unsigned TargetFlags=0)
LLVM_ABI std::optional< ConstantRange > getValidShiftAmountRange(SDValue V, const APInt &DemandedElts, unsigned Depth) const
If a SHL/SRA/SRL node V has shift amounts that are all less than the element bit-width of the shift n...
LLVM_ABI SDValue FoldSymbolOffset(unsigned Opcode, EVT VT, const GlobalAddressSDNode *GA, const SDNode *N2)
void RepositionNode(allnodes_iterator Position, SDNode *N)
Move node N in the AllNodes list to be immediately before the given iterator Position.
SDValue getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType, EVT VT, const SDLoc &dl, SDValue Chain, SDValue Ptr, SDValue Offset, MachinePointerInfo PtrInfo, EVT MemVT, MaybeAlign Alignment=MaybeAlign(), MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const MMOMetadata &Metadata=MMOMetadata())
LLVM_ABI SDValue getIndexedLoad(SDValue OrigLoad, const SDLoc &dl, SDValue Base, SDValue Offset, ISD::MemIndexedMode AM)
LLVM_ABI SDValue getTargetInsertSubreg(int SRIdx, const SDLoc &DL, EVT VT, SDValue Operand, SDValue Subreg)
A convenience function for creating TargetInstrInfo::INSERT_SUBREG nodes.
SDValue getEntryNode() const
Return the token chain corresponding to the entry of the function.
LLVM_ABI SDDbgValue * getDbgValue(DIVariable *Var, DIExpression *Expr, SDNode *N, unsigned R, bool IsIndirect, const DebugLoc &DL, unsigned O)
Creates a SDDbgValue node.
LLVM_ABI void setSubgraphColor(SDNode *N, const char *Color)
Convenience for setting subgraph color attribute.
LLVM_ABI SDValue getMaskedLoad(EVT VT, const SDLoc &dl, SDValue Chain, SDValue Base, SDValue Offset, SDValue Mask, SDValue Src0, EVT MemVT, MachineMemOperand *MMO, ISD::MemIndexedMode AM, ISD::LoadExtType, bool IsExpanding=false)
SDValue getTargetConstantFP(const ConstantFP &Val, const SDLoc &DL, EVT VT)
DenormalMode getDenormalMode(EVT VT) const
Return the current function's default denormal handling kind for the given floating point type.
SDValue getSplat(EVT VT, const SDLoc &DL, SDValue Op)
Returns a node representing a splat of one value into all lanes of the provided vector type.
LLVM_ABI std::pair< SDValue, SDValue > SplitScalar(const SDValue &N, const SDLoc &DL, const EVT &LoVT, const EVT &HiVT)
Split the scalar node with EXTRACT_ELEMENT using the provided VTs and return the low/high part.
static unsigned getOpcode_EXTEND(unsigned Opcode)
Convert *_EXTEND_VECTOR_INREG to *_EXTEND opcode.
LLVM_ABI SDValue matchBinOpReduction(SDNode *Extract, ISD::NodeType &BinOp, ArrayRef< ISD::NodeType > CandidateBinOps, bool AllowPartials=false)
Match a binop + shuffle pyramid that represents a horizontal reduction over the elements of a vector ...
LLVM_ABI bool isADDLike(SDValue Op, bool NoWrap=false) const
Return true if the specified operand is an ISD::OR or ISD::XOR node that can be treated as an ISD::AD...
LLVM_ABI SDValue getVectorShuffle(EVT VT, const SDLoc &dl, SDValue N1, SDValue N2, ArrayRef< int > Mask)
Return an ISD::VECTOR_SHUFFLE node.
LLVM_DUMP_METHOD void dumpDotGraph(const Twine &FileName, const Twine &Title)
Just dump dot graph to a user-provided path and title.
LLVM_ABI SDValue simplifyShift(SDValue X, SDValue Y)
Try to simplify a shift into 1 of its operands or a constant.
LLVM_ABI bool areNonVolatileConsecutiveStores(StoreSDNode *ST, StoreSDNode *Base, unsigned Bytes, int Dist) const
Return true if stores are next to each other and can be merged.
LLVM_ABI void transferDbgValues(SDValue From, SDValue To, unsigned OffsetInBits=0, unsigned SizeInBits=0, bool InvalidateDbg=true)
Transfer debug values from one node to another, while optionally generating fragment expressions for ...
LLVM_ABI SDValue getLogicalNOT(const SDLoc &DL, SDValue Val, EVT VT)
Create a logical NOT operation as (XOR Val, BooleanOne).
LLVM_ABI SDValue getMaskedScatter(SDVTList VTs, EVT MemVT, const SDLoc &dl, ArrayRef< SDValue > Ops, MachineMemOperand *MMO, ISD::MemIndexType IndexType, bool IsTruncating=false)
ilist< SDNode >::iterator allnodes_iterator
LLVM_ABI bool LegalizeTypes()
This transforms the SelectionDAG into a SelectionDAG that only uses types natively supported by the t...
This SDNode is used to implement the code generator support for the llvm IR shufflevector instruction...
A SetVector that performs no allocations if smaller than a certain size.
Definition SetVector.h:345
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
typename SuperClass::iterator iterator
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
This class is used to represent ISD::STORE nodes.
StringMap - This is an unconventional map that is specialized for handling keys that are "strings",...
Definition StringMap.h:129
Provides information about what library functions are available for the current target.
This class defines information used to lower LLVM code to legal SelectionDAG operators that the targe...
Primary interface to the complete machine description for the target machine.
TargetSubtargetInfo - Generic base class for all target subtargets.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
A uniquing set that compares nodes against a typed key rather than a serialized FoldingSetNodeID.
Definition FoldingSet.h:696
A Use represents the edge between a Value definition and its users.
Definition Use.h:35
LLVM Value Representation.
Definition Value.h:75
typename base_list_type::const_iterator const_iterator
Definition ilist.h:122
A range adaptor for a pair of iterators.
This file defines classes to implement an intrusive doubly linked list class (i.e.
This provides a very simple, boring adaptor for a begin and end iterator into a range type.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
NodeType
ISD::NodeType enum - This enum defines the target-independent operators for a SelectionDAG.
Definition ISDOpcodes.h:41
@ SETCC
SetCC operator - This evaluates to a true value iff the condition is true.
Definition ISDOpcodes.h:829
@ STRICT_FSETCC
STRICT_FSETCC/STRICT_FSETCCS - Constrained versions of SETCC, used for floating-point operands only.
Definition ISDOpcodes.h:513
@ POISON
POISON - A poison node.
Definition ISDOpcodes.h:236
@ INSERT_SUBVECTOR
INSERT_SUBVECTOR(VECTOR1, VECTOR2, IDX) - Returns a vector with VECTOR2 inserted into VECTOR1.
Definition ISDOpcodes.h:602
@ ANY_EXTEND
ANY_EXTEND - Used for integer types. The high bits are undefined.
Definition ISDOpcodes.h:863
@ SIGN_EXTEND_VECTOR_INREG
SIGN_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register sign-extension of the low ...
Definition ISDOpcodes.h:920
@ SDIVREM
SDIVREM/UDIVREM - Divide two integers and produce both a quotient and remainder result.
Definition ISDOpcodes.h:280
@ SIGN_EXTEND
Conversion operators.
Definition ISDOpcodes.h:854
@ SELECT
Select(COND, TRUEVAL, FALSEVAL).
Definition ISDOpcodes.h:806
@ UNDEF
UNDEF - An undefined node.
Definition ISDOpcodes.h:233
@ SPLAT_VECTOR
SPLAT_VECTOR(VAL) - Returns a vector with the scalar value VAL duplicated in all lanes.
Definition ISDOpcodes.h:674
@ CopyFromReg
CopyFromReg - This node indicates that the input value is a virtual or physical register that is defi...
Definition ISDOpcodes.h:230
@ EXTRACT_SUBVECTOR
EXTRACT_SUBVECTOR(VECTOR, IDX) - Returns a subvector from VECTOR.
Definition ISDOpcodes.h:616
@ EXTRACT_VECTOR_ELT
EXTRACT_VECTOR_ELT(VECTOR, IDX) - Returns a single element from VECTOR identified by the (potentially...
Definition ISDOpcodes.h:578
@ CopyToReg
CopyToReg - This node has three operands: a chain, a register number to set to this value,...
Definition ISDOpcodes.h:224
@ ZERO_EXTEND
ZERO_EXTEND - Used for integer types, zeroing the new bits.
Definition ISDOpcodes.h:860
@ SELECT_CC
Select with condition operator - This selects between a true value and a false value (ops #2 and #3) ...
Definition ISDOpcodes.h:821
@ ANY_EXTEND_VECTOR_INREG
ANY_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register any-extension of the low la...
Definition ISDOpcodes.h:909
@ GLOBAL_OFFSET_TABLE
The address of the GOT.
Definition ISDOpcodes.h:103
@ VSELECT
Select with a vector condition (op #0) and two vector operands (ops #1 and #2), returning a vector re...
Definition ISDOpcodes.h:815
@ INSERT_VECTOR_ELT
INSERT_VECTOR_ELT(VECTOR, VAL, IDX) - Returns VECTOR with the element at IDX replaced with VAL.
Definition ISDOpcodes.h:567
@ ZERO_EXTEND_VECTOR_INREG
ZERO_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register zero-extension of the low ...
Definition ISDOpcodes.h:931
@ CALLSEQ_START
CALLSEQ_START/CALLSEQ_END - These operators mark the beginning and end of a call sequence,...
@ BUILD_VECTOR
BUILD_VECTOR(ELT0, ELT1, ELT2, ELT3,...) - Return a fixed-width vector with the specified,...
Definition ISDOpcodes.h:558
MemIndexType
MemIndexType enum - This enum defines how to interpret MGATHER/SCATTER's index parameter when calcula...
MemIndexedMode
MemIndexedMode enum - This enum defines the load / store indexed addressing modes.
CondCode
ISD::CondCode enum - These are ordered carefully to make the bitfields below work out,...
LoadExtType
LoadExtType enum - This enum defines the three variants of LOADEXT (load with extension).
unsigned combineHashValue(unsigned a, unsigned b)
Simplistic combination of 32-bit hash values into 32-bit hash values.
NodeAddr< NodeBase * > Node
Definition RDFGraph.h:381
This is an optimization pass for GlobalISel generic memory operations.
GenericUniformityInfo< SSAContext > UniformityInfo
@ Offset
Definition DWP.cpp:577
bool isEqual(const GCNRPTracker::LiveRegSet &S1, const GCNRPTracker::LiveRegSet &S2)
GenericSSAContext< Function > SSAContext
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
AnalysisManager< MachineFunction > MachineFunctionAnalysisManager
iplist< T, Options... > ilist
Definition ilist.h:344
LLVM_ABI void checkForCycles(const SelectionDAG *DAG, bool force=false)
FPClassTest
Floating-point class tests, supported by 'is_fpclass' intrinsic.
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.
CodeGenOptLevel
Code generation optimization level.
Definition CodeGen.h:177
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
CombineLevel
Definition DAGCombine.h:15
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Count
Definition InstrProf.h:145
DWARFExpression::Operation Op
ArrayRef(const T &OneElt) -> ArrayRef< T >
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
UndefPoisonKind
Enumeration to track whether we are interested in Undef, Poison, or both.
Definition UndefPoison.h:20
BumpPtrAllocatorImpl<> BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
Definition Allocator.h:390
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:772
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
Represent subnormal handling kind for floating point instruction inputs and outputs.
An information struct used to provide DenseMap with the various necessary components for a given valu...
Extended Value Type.
Definition ValueTypes.h:35
bool isVector() const
Return true if this is a vector value type.
Definition ValueTypes.h:176
bool isScalableVector() const
Return true if this is a vector type where the runtime length is machine dependent.
Definition ValueTypes.h:187
EVT getVectorElementType() const
Given a vector type, return the type of each element.
Definition ValueTypes.h:351
LLVM_ABI const fltSemantics & getFltSemantics() const
Returns an APFloat semantics tag appropriate for the value type.
unsigned getVectorNumElements() const
Given a vector type, return the number of elements it contains.
Definition ValueTypes.h:359
bool bitsLE(EVT VT) const
Return true if this has no more bits than VT.
Definition ValueTypes.h:331
bool isInteger() const
Return true if this is an integer or a vector integer type.
Definition ValueTypes.h:160
This trait class is used to define behavior of how to "profile" (in the FoldingSet parlance) an objec...
Definition FoldingSet.h:255
static nodes_iterator nodes_begin(SelectionDAG *G)
static nodes_iterator nodes_end(SelectionDAG *G)
pointer_iterator< SelectionDAG::allnodes_iterator > nodes_iterator
LLVM IR metadata carried by a MachineMemOperand.
This class contains a discriminated union of information about pointers in memory operands,...
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.
static unsigned getHashValue(const KeyTy &Key)
static KeyTy getKey(const SDNode &N)
static LLVM_ABI bool isEqual(const KeyTy &Key, const SDNode &N)
The key SelectionDAG uniques SDNodes by.
void AddPointer(const void *P)
SmallVector< SDValue, 0 > OpStorage
Backs Ops when the key is built from a node; empty otherwise.
void AddInteger(T I)
const EVT * VTs
void AddBoolean(bool B)
ArrayRef< SDValue > Ops
FoldingSetNodeID Tail
SDNodeKey & operator=(const SDNodeKey &)=delete
SDNodeKey(const SDNodeKey &)=delete
SDNodeKey(unsigned Opcode, SDVTList VTList, ArrayRef< SDValue > Ops)
This represents a list of ValueType's that has been intern'd by a SelectionDAG.
DAGNodeDeletedListener(SelectionDAG &DAG, std::function< void(SDNode *, SDNode *)> Callback)
void NodeDeleted(SDNode *N, SDNode *E) override
The node N that was deleted and, if E is not null, an equivalent node E that replaced it.
std::function< void(SDNode *, SDNode *)> Callback
std::function< void(SDNode *)> Callback
void NodeInserted(SDNode *N) override
The node N that was inserted.
DAGNodeInsertedListener(SelectionDAG &DAG, std::function< void(SDNode *)> Callback)
Clients of various APIs that cause global effects on the DAG can optionally implement this interface.
static void deleteNode(SDNode *)
Use delete by default for iplist and ilist.
Definition ilist.h:41