LLVM 23.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"
44#include <cassert>
45#include <cstdint>
46#include <functional>
47#include <map>
48#include <set>
49#include <string>
50#include <tuple>
51#include <utility>
52#include <vector>
53
54namespace llvm {
55
56class DIExpression;
57class DILabel;
58class DIVariable;
59class Function;
60class Pass;
61class Type;
62template <class GraphType> struct GraphTraits;
63template <typename T, unsigned int N> class SmallSetVector;
64template <typename T, typename Enable> struct FoldingSetTrait;
65class BatchAAResults;
66class BlockAddress;
68class Constant;
69class ConstantFP;
70class ConstantInt;
71class DataLayout;
72struct fltSemantics;
74class FunctionVarLocs;
75class GlobalValue;
76struct KnownBits;
77class LLVMContext;
81class 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
101 friend struct FoldingSetTrait<SDVTListNode>;
102
103 /// A reference to an Interned FoldingSetNodeID for this node.
104 /// The Allocator in SelectionDAG holds the data.
105 /// SDVTList contains all types which are frequently accessed in SelectionDAG.
106 /// The size of this list is not expected to be big so it won't introduce
107 /// a memory penalty.
108 FoldingSetNodeIDRef FastID;
109 const EVT *VTs;
110 unsigned int NumVTs;
111 /// The hash value for SDVTList is fixed, so cache it to avoid
112 /// hash calculation.
113 unsigned HashValue;
114
115public:
116 SDVTListNode(const FoldingSetNodeIDRef ID, const EVT *VT, unsigned int Num) :
117 FastID(ID), VTs(VT), NumVTs(Num) {
118 HashValue = ID.ComputeHash();
119 }
120
122 SDVTList result = {VTs, NumVTs};
123 return result;
124 }
125};
126
127/// Specialize FoldingSetTrait for SDVTListNode
128/// to avoid computing temp FoldingSetNodeID and hash value.
129template<> struct FoldingSetTrait<SDVTListNode> : DefaultFoldingSetTrait<SDVTListNode> {
130 static void Profile(const SDVTListNode &X, FoldingSetNodeID& ID) {
131 ID = X.FastID;
132 }
133
134 static bool Equals(const SDVTListNode &X, const FoldingSetNodeID &ID,
135 unsigned IDHash, FoldingSetNodeID &TempID) {
136 if (X.HashValue != IDHash)
137 return false;
138 return ID == X.FastID;
139 }
140
141 static unsigned ComputeHash(const SDVTListNode &X, FoldingSetNodeID &TempID) {
142 return X.HashValue;
143 }
144};
145
146template <> struct ilist_alloc_traits<SDNode> {
147 static void deleteNode(SDNode *) {
148 llvm_unreachable("ilist_traits<SDNode> shouldn't see a deleteNode call!");
149 }
150};
151
152/// Keeps track of dbg_value information through SDISel. We do
153/// not build SDNodes for these so as not to perturb the generated code;
154/// instead the info is kept off to the side in this structure. Each SDNode may
155/// have one or more associated dbg_value entries. This information is kept in
156/// DbgValMap.
157/// Byval parameters are handled separately because they don't use alloca's,
158/// which busts the normal mechanism. There is good reason for handling all
159/// parameters separately: they may not have code generated for them, they
160/// should always go at the beginning of the function regardless of other code
161/// motion, and debug info for them is potentially useful even if the parameter
162/// is unused. Right now only byval parameters are handled separately.
164 BumpPtrAllocator Alloc;
166 SmallVector<SDDbgValue*, 32> ByvalParmDbgValues;
169 DbgValMapType DbgValMap;
170
171public:
172 SDDbgInfo() = default;
173 SDDbgInfo(const SDDbgInfo &) = delete;
174 SDDbgInfo &operator=(const SDDbgInfo &) = delete;
175
176 LLVM_ABI void add(SDDbgValue *V, bool isParameter);
177
178 void add(SDDbgLabel *L) { DbgLabels.push_back(L); }
179
180 /// Invalidate all DbgValues attached to the node and remove
181 /// it from the Node-to-DbgValues map.
182 LLVM_ABI void erase(const SDNode *Node);
183
184 void clear() {
185 DbgValMap.clear();
186 DbgValues.clear();
187 ByvalParmDbgValues.clear();
188 DbgLabels.clear();
189 Alloc.Reset();
190 }
191
192 BumpPtrAllocator &getAlloc() { return Alloc; }
193
194 bool empty() const {
195 return DbgValues.empty() && ByvalParmDbgValues.empty() && DbgLabels.empty();
196 }
197
199 auto I = DbgValMap.find(Node);
200 if (I != DbgValMap.end())
201 return I->second;
202 return ArrayRef<SDDbgValue*>();
203 }
204
207
208 DbgIterator DbgBegin() { return DbgValues.begin(); }
209 DbgIterator DbgEnd() { return DbgValues.end(); }
210 DbgIterator ByvalParmDbgBegin() { return ByvalParmDbgValues.begin(); }
211 DbgIterator ByvalParmDbgEnd() { return ByvalParmDbgValues.end(); }
212 DbgLabelIterator DbgLabelBegin() { return DbgLabels.begin(); }
213 DbgLabelIterator DbgLabelEnd() { return DbgLabels.end(); }
214};
215
216LLVM_ABI void checkForCycles(const SelectionDAG *DAG, bool force = false);
217
218/// This is used to represent a portion of an LLVM function in a low-level
219/// Data Dependence DAG representation suitable for instruction selection.
220/// This DAG is constructed as the first step of instruction selection in order
221/// to allow implementation of machine specific optimizations
222/// and code simplifications.
223///
224/// The representation used by the SelectionDAG is a target-independent
225/// representation, which has some similarities to the GCC RTL representation,
226/// but is significantly more simple, powerful, and is a graph form instead of a
227/// linear form.
228///
230 const TargetMachine &TM;
231 const SelectionDAGTargetInfo *TSI = nullptr;
232 const TargetLowering *TLI = nullptr;
233 const TargetLibraryInfo *LibInfo = nullptr;
234 const RTLIB::RuntimeLibcallsInfo *RuntimeLibcallInfo = nullptr;
235 const LibcallLoweringInfo *Libcalls = nullptr;
236
237 const FunctionVarLocs *FnVarLocs = nullptr;
238 MachineFunction *MF;
239 MachineFunctionAnalysisManager *MFAM = nullptr;
240 Pass *SDAGISelPass = nullptr;
241 LLVMContext *Context;
242 CodeGenOptLevel OptLevel;
243
244 UniformityInfo *UA = nullptr;
245 FunctionLoweringInfo * FLI = nullptr;
246
247 /// The function-level optimization remark emitter. Used to emit remarks
248 /// whenever manipulating the DAG.
250
251 ProfileSummaryInfo *PSI = nullptr;
252 BlockFrequencyInfo *BFI = nullptr;
253 MachineModuleInfo *MMI = nullptr;
254
255 /// Extended EVTs used for single value VTLists.
256 std::set<EVT, EVT::compareRawBits> EVTs;
257
258 /// List of non-single value types.
259 FoldingSet<SDVTListNode> VTListMap;
260
261 /// Pool allocation for misc. objects that are created once per SelectionDAG.
262 BumpPtrAllocator Allocator;
263
264 /// The starting token.
265 SDNode EntryNode;
266
267 /// The root of the entire DAG.
268 SDValue Root;
269
270 /// A linked list of nodes in the current DAG.
271 ilist<SDNode> AllNodes;
272
273 /// The AllocatorType for allocating SDNodes. We use
274 /// pool allocation with recycling.
275 using NodeAllocatorType = RecyclingAllocator<BumpPtrAllocator, SDNode,
276 sizeof(LargestSDNode),
277 alignof(MostAlignedSDNode)>;
278
279 /// Pool allocation for nodes.
280 NodeAllocatorType NodeAllocator;
281
282 /// This structure is used to memoize nodes, automatically performing
283 /// CSE with existing nodes when a duplicate is requested.
284 FoldingSet<SDNode> CSEMap;
285
286 /// Pool allocation for machine-opcode SDNode operands.
287 BumpPtrAllocator OperandAllocator;
288 ArrayRecycler<SDUse> OperandRecycler;
289
290 /// Tracks dbg_value and dbg_label information through SDISel.
291 SDDbgInfo *DbgInfo;
292
293 using CallSiteInfo = MachineFunction::CallSiteInfo;
294 using CalledGlobalInfo = MachineFunction::CalledGlobalInfo;
295
296 struct NodeExtraInfo {
297 CallSiteInfo CSInfo;
298 MDNode *HeapAllocSite = nullptr;
299 MDNode *PCSections = nullptr;
300 MDNode *MMRA = nullptr;
301 CalledGlobalInfo CalledGlobal{};
302 bool NoMerge = false;
303 };
304 /// Out-of-line extra information for SDNodes.
306
307 /// PersistentId counter to be used when inserting the next
308 /// SDNode to this SelectionDAG. We do not place that under
309 /// `#if LLVM_ENABLE_ABI_BREAKING_CHECKS` intentionally because
310 /// it adds unneeded complexity without noticeable
311 /// benefits (see discussion with @thakis in D120714).
312 uint16_t NextPersistentId = 0;
313
314public:
315 /// Clients of various APIs that cause global effects on
316 /// the DAG can optionally implement this interface. This allows the clients
317 /// to handle the various sorts of updates that happen.
318 ///
319 /// A DAGUpdateListener automatically registers itself with DAG when it is
320 /// constructed, and removes itself when destroyed in RAII fashion.
324
326 : Next(D.UpdateListeners), DAG(D) {
327 DAG.UpdateListeners = this;
328 }
329
331 assert(DAG.UpdateListeners == this &&
332 "DAGUpdateListeners must be destroyed in LIFO order");
333 DAG.UpdateListeners = Next;
334 }
335
336 /// The node N that was deleted and, if E is not null, an
337 /// equivalent node E that replaced it.
338 virtual void NodeDeleted(SDNode *N, SDNode *E);
339
340 /// The node N that was updated.
341 virtual void NodeUpdated(SDNode *N);
342
343 /// The node N that was inserted.
344 virtual void NodeInserted(SDNode *N);
345 };
346
348 std::function<void(SDNode *, SDNode *)> Callback;
349
353
354 void NodeDeleted(SDNode *N, SDNode *E) override { Callback(N, E); }
355
356 private:
357 virtual void anchor();
358 };
359
361 std::function<void(SDNode *)> Callback;
362
366
367 void NodeInserted(SDNode *N) override { Callback(N); }
368
369 private:
370 virtual void anchor();
371 };
372
373 /// Help to insert SDNodeFlags automatically in transforming. Use
374 /// RAII to save and resume flags in current scope.
376 SelectionDAG &DAG;
377 SDNodeFlags Flags;
378 FlagInserter *LastInserter;
379
380 public:
382 : DAG(SDAG), Flags(Flags),
383 LastInserter(SDAG.getFlagInserter()) {
384 SDAG.setFlagInserter(this);
385 }
388
389 FlagInserter(const FlagInserter &) = delete;
391 ~FlagInserter() { DAG.setFlagInserter(LastInserter); }
392
393 SDNodeFlags getFlags() const { return Flags; }
394 };
395
396 /// When true, additional steps are taken to
397 /// ensure that getConstant() and similar functions return DAG nodes that
398 /// have legal types. This is important after type legalization since
399 /// any illegally typed nodes generated after this point will not experience
400 /// type legalization.
402
403private:
404 /// DAGUpdateListener is a friend so it can manipulate the listener stack.
405 friend struct DAGUpdateListener;
406
407 /// Linked list of registered DAGUpdateListener instances.
408 /// This stack is maintained by DAGUpdateListener RAII.
409 DAGUpdateListener *UpdateListeners = nullptr;
410
411 /// Implementation of setSubgraphColor.
412 /// Return whether we had to truncate the search.
413 bool setSubgraphColorHelper(SDNode *N, const char *Color,
414 DenseSet<SDNode *> &visited,
415 int level, bool &printed);
416
417 template <typename SDNodeT, typename... ArgTypes>
418 SDNodeT *newSDNode(ArgTypes &&... Args) {
419 return new (NodeAllocator.template Allocate<SDNodeT>())
420 SDNodeT(std::forward<ArgTypes>(Args)...);
421 }
422
423 /// Build a synthetic SDNodeT with the given args and extract its subclass
424 /// data as an integer (e.g. for use in a folding set).
425 ///
426 /// The args to this function are the same as the args to SDNodeT's
427 /// constructor, except the second arg (assumed to be a const DebugLoc&) is
428 /// omitted.
429 template <typename SDNodeT, typename... ArgTypes>
430 static uint16_t getSyntheticNodeSubclassData(unsigned IROrder,
431 ArgTypes &&... Args) {
432 // The compiler can reduce this expression to a constant iff we pass an
433 // empty DebugLoc. Thankfully, the debug location doesn't have any bearing
434 // on the subclass data.
435 return SDNodeT(IROrder, DebugLoc(), std::forward<ArgTypes>(Args)...)
436 .getRawSubclassData();
437 }
438
439 template <typename SDNodeTy>
440 static uint16_t getSyntheticNodeSubclassData(unsigned Opc, unsigned Order,
441 SDVTList VTs, EVT MemoryVT,
442 MachineMemOperand *MMO) {
443 return SDNodeTy(Opc, Order, DebugLoc(), VTs, MemoryVT, MMO)
444 .getRawSubclassData();
445 }
446
447 void createOperands(SDNode *Node, ArrayRef<SDValue> Vals);
448
449 void removeOperands(SDNode *Node) {
450 if (!Node->OperandList)
451 return;
452 OperandRecycler.deallocate(
454 Node->OperandList);
455 Node->NumOperands = 0;
456 Node->OperandList = nullptr;
457 }
458 void CreateTopologicalOrder(std::vector<SDNode*>& Order);
459
460public:
461 // Maximum depth for recursive analysis such as computeKnownBits, etc.
462 static constexpr unsigned MaxRecursionDepth = 6;
463
464 // Returns the maximum steps for SDNode->hasPredecessor() like searches.
465 LLVM_ABI static unsigned getHasPredecessorMaxSteps();
466
468 SelectionDAG(const SelectionDAG &) = delete;
471
472 /// Prepare this SelectionDAG to process code in the given MachineFunction.
474 Pass *PassPtr, const TargetLibraryInfo *LibraryInfo,
475 const LibcallLoweringInfo *LibcallsInfo,
478 FunctionVarLocs const *FnVarLocs);
479
482 const TargetLibraryInfo *LibraryInfo,
483 const LibcallLoweringInfo *LibcallsInfo, UniformityInfo *UA,
485 MachineModuleInfo &MMI, FunctionVarLocs const *FnVarLocs) {
486 init(NewMF, NewORE, nullptr, LibraryInfo, LibcallsInfo, UA, PSIin, BFIin,
487 MMI, FnVarLocs);
488 MFAM = &AM;
489 }
490
492 FLI = FuncInfo;
493 }
494
495 /// Clear state and free memory necessary to make this
496 /// SelectionDAG ready to process a new block.
497 LLVM_ABI void clear();
498
499 MachineFunction &getMachineFunction() const { return *MF; }
500 const Pass *getPass() const { return SDAGISelPass; }
502
503 CodeGenOptLevel getOptLevel() const { return OptLevel; }
504 const DataLayout &getDataLayout() const { return MF->getDataLayout(); }
505 const TargetMachine &getTarget() const { return TM; }
506 const TargetSubtargetInfo &getSubtarget() const { return MF->getSubtarget(); }
507 template <typename STC> const STC &getSubtarget() const {
508 return MF->getSubtarget<STC>();
509 }
510 const TargetLowering &getTargetLoweringInfo() const { return *TLI; }
511 const TargetLibraryInfo &getLibInfo() const { return *LibInfo; }
512
513 const LibcallLoweringInfo &getLibcalls() const { return *Libcalls; }
514
516 return *RuntimeLibcallInfo;
517 }
518
519 const SelectionDAGTargetInfo &getSelectionDAGInfo() const { return *TSI; }
520 const UniformityInfo *getUniformityInfo() const { return UA; }
521 /// Returns the result of the AssignmentTrackingAnalysis pass if it's
522 /// available, otherwise return nullptr.
523 const FunctionVarLocs *getFunctionVarLocs() const { return FnVarLocs; }
524 LLVMContext *getContext() const { return Context; }
525 OptimizationRemarkEmitter &getORE() const { return *ORE; }
526 ProfileSummaryInfo *getPSI() const { return PSI; }
527 BlockFrequencyInfo *getBFI() const { return BFI; }
528 MachineModuleInfo *getMMI() const { return MMI; }
529
530 FlagInserter *getFlagInserter() { return Inserter; }
531 void setFlagInserter(FlagInserter *FI) { Inserter = FI; }
532
533 /// Just dump dot graph to a user-provided path and title.
534 /// This doesn't open the dot viewer program and
535 /// helps visualization when outside debugging session.
536 /// FileName expects absolute path. If provided
537 /// without any path separators then the file
538 /// will be created in the current directory.
539 /// Error will be emitted if the path is insane.
540#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
541 LLVM_DUMP_METHOD void dumpDotGraph(const Twine &FileName, const Twine &Title);
542#endif
543
544 /// Pop up a GraphViz/gv window with the DAG rendered using 'dot'.
545 LLVM_ABI void viewGraph(const std::string &Title);
546 LLVM_ABI void viewGraph();
547
548#if LLVM_ENABLE_ABI_BREAKING_CHECKS
549 std::map<const SDNode *, std::string> NodeGraphAttrs;
550#endif
551
552 /// Clear all previously defined node graph attributes.
553 /// Intended to be used from a debugging tool (eg. gdb).
555
556 /// Set graph attributes for a node. (eg. "color=red".)
557 LLVM_ABI void setGraphAttrs(const SDNode *N, const char *Attrs);
558
559 /// Get graph attributes for a node. (eg. "color=red".)
560 /// Used from getNodeAttributes.
561 LLVM_ABI std::string getGraphAttrs(const SDNode *N) const;
562
563 /// Convenience for setting node color attribute.
564 LLVM_ABI void setGraphColor(const SDNode *N, const char *Color);
565
566 /// Convenience for setting subgraph color attribute.
567 LLVM_ABI void setSubgraphColor(SDNode *N, const char *Color);
568
570
571 allnodes_const_iterator allnodes_begin() const { return AllNodes.begin(); }
572 allnodes_const_iterator allnodes_end() const { return AllNodes.end(); }
573
575
576 allnodes_iterator allnodes_begin() { return AllNodes.begin(); }
577 allnodes_iterator allnodes_end() { return AllNodes.end(); }
578
580 return AllNodes.size();
581 }
582
589
590 /// Return the root tag of the SelectionDAG.
591 const SDValue &getRoot() const { return Root; }
592
593 /// Return the token chain corresponding to the entry of the function.
595 return SDValue(const_cast<SDNode *>(&EntryNode), 0);
596 }
597
598 /// Set the current root tag of the SelectionDAG.
599 ///
601 assert((!N.getNode() || N.getValueType() == MVT::Other) &&
602 "DAG root value is not a chain!");
603 if (N.getNode())
604 checkForCycles(N.getNode(), this);
605 Root = N;
606 if (N.getNode())
607 checkForCycles(this);
608 return Root;
609 }
610
611#if !defined(NDEBUG) && LLVM_ENABLE_ABI_BREAKING_CHECKS
612 void VerifyDAGDivergence();
613#endif
614
615 /// This iterates over the nodes in the SelectionDAG, folding
616 /// certain types of nodes together, or eliminating superfluous nodes. The
617 /// Level argument controls whether Combine is allowed to produce nodes and
618 /// types that are illegal on the target.
619 LLVM_ABI void Combine(CombineLevel Level, BatchAAResults *BatchAA,
620 CodeGenOptLevel OptLevel);
621
622 /// This transforms the SelectionDAG into a SelectionDAG that
623 /// only uses types natively supported by the target.
624 /// Returns "true" if it made any changes.
625 ///
626 /// Note that this is an involved process that may invalidate pointers into
627 /// the graph.
628 LLVM_ABI bool LegalizeTypes();
629
630 /// This transforms the SelectionDAG into a SelectionDAG that is
631 /// compatible with the target instruction selector, as indicated by the
632 /// TargetLowering object.
633 ///
634 /// Note that this is an involved process that may invalidate pointers into
635 /// the graph.
636 LLVM_ABI void Legalize();
637
638 /// Transforms a SelectionDAG node and any operands to it into a node
639 /// that is compatible with the target instruction selector, as indicated by
640 /// the TargetLowering object.
641 ///
642 /// \returns true if \c N is a valid, legal node after calling this.
643 ///
644 /// This essentially runs a single recursive walk of the \c Legalize process
645 /// over the given node (and its operands). This can be used to incrementally
646 /// legalize the DAG. All of the nodes which are directly replaced,
647 /// potentially including N, are added to the output parameter \c
648 /// UpdatedNodes so that the delta to the DAG can be understood by the
649 /// caller.
650 ///
651 /// When this returns false, N has been legalized in a way that make the
652 /// pointer passed in no longer valid. It may have even been deleted from the
653 /// DAG, and so it shouldn't be used further. When this returns true, the
654 /// N passed in is a legal node, and can be immediately processed as such.
655 /// This may still have done some work on the DAG, and will still populate
656 /// UpdatedNodes with any new nodes replacing those originally in the DAG.
658 SmallSetVector<SDNode *, 16> &UpdatedNodes);
659
660 /// This transforms the SelectionDAG into a SelectionDAG
661 /// that only uses vector math operations supported by the target. This is
662 /// necessary as a separate step from Legalize because unrolling a vector
663 /// operation can introduce illegal types, which requires running
664 /// LegalizeTypes again.
665 ///
666 /// This returns true if it made any changes; in that case, LegalizeTypes
667 /// is called again before Legalize.
668 ///
669 /// Note that this is an involved process that may invalidate pointers into
670 /// the graph.
672
673 /// This method deletes all unreachable nodes in the SelectionDAG.
675
676 /// Remove the specified node from the system. This node must
677 /// have no referrers.
679
680 /// Return an SDVTList that represents the list of values specified.
683 LLVM_ABI SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3);
684 LLVM_ABI SDVTList getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4);
686
687 //===--------------------------------------------------------------------===//
688 // Node creation methods.
689
690 /// Create a ConstantSDNode wrapping a constant value.
691 /// If VT is a vector type, the constant is splatted into a BUILD_VECTOR.
692 ///
693 /// If only legal types can be produced, this does the necessary
694 /// transformations (e.g., if the vector element type is illegal).
695 /// @{
697 bool isTarget = false, bool isOpaque = false);
698 LLVM_ABI SDValue getConstant(const APInt &Val, const SDLoc &DL, EVT VT,
699 bool isTarget = false, bool isOpaque = false);
700
701 LLVM_ABI SDValue getSignedConstant(int64_t Val, const SDLoc &DL, EVT VT,
702 bool isTarget = false,
703 bool isOpaque = false);
704
706 bool IsTarget = false,
707 bool IsOpaque = false);
708
709 LLVM_ABI SDValue getConstant(const ConstantInt &Val, const SDLoc &DL, EVT VT,
710 bool isTarget = false, bool isOpaque = false);
712 bool isTarget = false);
714 const SDLoc &DL);
716 const SDLoc &DL);
718 bool isTarget = false);
719
721 bool isOpaque = false) {
722 return getConstant(Val, DL, VT, true, isOpaque);
723 }
724 SDValue getTargetConstant(const APInt &Val, const SDLoc &DL, EVT VT,
725 bool isOpaque = false) {
726 return getConstant(Val, DL, VT, true, isOpaque);
727 }
729 bool isOpaque = false) {
730 return getConstant(Val, DL, VT, true, isOpaque);
731 }
732 SDValue getSignedTargetConstant(int64_t Val, const SDLoc &DL, EVT VT,
733 bool isOpaque = false) {
734 return getSignedConstant(Val, DL, VT, true, isOpaque);
735 }
736
737 /// Create a true or false constant of type \p VT using the target's
738 /// BooleanContent for type \p OpVT.
739 LLVM_ABI SDValue getBoolConstant(bool V, const SDLoc &DL, EVT VT, EVT OpVT);
740 /// @}
741
742 /// Create a ConstantFPSDNode wrapping a constant value.
743 /// If VT is a vector type, the constant is splatted into a BUILD_VECTOR.
744 ///
745 /// If only legal types can be produced, this does the necessary
746 /// transformations (e.g., if the vector element type is illegal).
747 /// The forms that take a double should only be used for simple constants
748 /// that can be exactly represented in VT. No checks are made.
749 /// @{
750 LLVM_ABI SDValue getConstantFP(double Val, const SDLoc &DL, EVT VT,
751 bool isTarget = false);
752 LLVM_ABI SDValue getConstantFP(const APFloat &Val, const SDLoc &DL, EVT VT,
753 bool isTarget = false);
754 LLVM_ABI SDValue getConstantFP(const ConstantFP &V, const SDLoc &DL, EVT VT,
755 bool isTarget = false);
756 SDValue getTargetConstantFP(double Val, const SDLoc &DL, EVT VT) {
757 return getConstantFP(Val, DL, VT, true);
758 }
759 SDValue getTargetConstantFP(const APFloat &Val, const SDLoc &DL, EVT VT) {
760 return getConstantFP(Val, DL, VT, true);
761 }
763 return getConstantFP(Val, DL, VT, true);
764 }
765 /// @}
766
768 EVT VT, int64_t offset = 0,
769 bool isTargetGA = false,
770 unsigned TargetFlags = 0);
772 int64_t offset = 0, unsigned TargetFlags = 0) {
773 return getGlobalAddress(GV, DL, VT, offset, true, TargetFlags);
774 }
776 LLVM_ABI SDValue getFrameIndex(int FI, EVT VT, bool isTarget = false);
778 return getFrameIndex(FI, VT, true);
779 }
780 LLVM_ABI SDValue getJumpTable(int JTI, EVT VT, bool isTarget = false,
781 unsigned TargetFlags = 0);
782 SDValue getTargetJumpTable(int JTI, EVT VT, unsigned TargetFlags = 0) {
783 return getJumpTable(JTI, VT, true, TargetFlags);
784 }
786 const SDLoc &DL);
788 MaybeAlign Align = std::nullopt,
789 int Offs = 0, bool isT = false,
790 unsigned TargetFlags = 0);
792 MaybeAlign Align = std::nullopt, int Offset = 0,
793 unsigned TargetFlags = 0) {
794 return getConstantPool(C, VT, Align, Offset, true, TargetFlags);
795 }
797 MaybeAlign Align = std::nullopt,
798 int Offs = 0, bool isT = false,
799 unsigned TargetFlags = 0);
801 MaybeAlign Align = std::nullopt, int Offset = 0,
802 unsigned TargetFlags = 0) {
803 return getConstantPool(C, VT, Align, Offset, true, TargetFlags);
804 }
805 // When generating a branch to a BB, we don't in general know enough
806 // to provide debug info for the BB at that time, so keep this one around.
808 LLVM_ABI SDValue getExternalSymbol(const char *Sym, EVT VT);
809 LLVM_ABI SDValue getExternalSymbol(RTLIB::LibcallImpl LCImpl, EVT VT);
810 LLVM_ABI SDValue getTargetExternalSymbol(const char *Sym, EVT VT,
811 unsigned TargetFlags = 0);
812 LLVM_ABI SDValue getTargetExternalSymbol(RTLIB::LibcallImpl LCImpl, EVT VT,
813 unsigned TargetFlags = 0);
814
816
820 LLVM_ABI SDValue getEHLabel(const SDLoc &dl, SDValue Root, MCSymbol *Label);
821 LLVM_ABI SDValue getLabelNode(unsigned Opcode, const SDLoc &dl, SDValue Root,
822 MCSymbol *Label);
824 int64_t Offset = 0, bool isTarget = false,
825 unsigned TargetFlags = 0);
827 int64_t Offset = 0, unsigned TargetFlags = 0) {
828 return getBlockAddress(BA, VT, Offset, true, TargetFlags);
829 }
830
832 SDValue N) {
833 return getNode(ISD::CopyToReg, dl, MVT::Other, Chain,
834 getRegister(Reg, N.getValueType()), N);
835 }
836
837 // This version of the getCopyToReg method takes an extra operand, which
838 // indicates that there is potentially an incoming glue value (if Glue is not
839 // null) and that there should be a glue result.
841 SDValue Glue) {
842 SDVTList VTs = getVTList(MVT::Other, MVT::Glue);
843 SDValue Ops[] = { Chain, getRegister(Reg, N.getValueType()), N, Glue };
844 return getNode(ISD::CopyToReg, dl, VTs,
845 ArrayRef(Ops, Glue.getNode() ? 4 : 3));
846 }
847
848 // Similar to last getCopyToReg() except parameter Reg is a SDValue
850 SDValue Glue) {
851 SDVTList VTs = getVTList(MVT::Other, MVT::Glue);
852 SDValue Ops[] = { Chain, Reg, N, Glue };
853 return getNode(ISD::CopyToReg, dl, VTs,
854 ArrayRef(Ops, Glue.getNode() ? 4 : 3));
855 }
856
858 SDVTList VTs = getVTList(VT, MVT::Other);
859 SDValue Ops[] = { Chain, getRegister(Reg, VT) };
860 return getNode(ISD::CopyFromReg, dl, VTs, Ops);
861 }
862
863 // This version of the getCopyFromReg method takes an extra operand, which
864 // indicates that there is potentially an incoming glue value (if Glue is not
865 // null) and that there should be a glue result.
867 SDValue Glue) {
868 SDVTList VTs = getVTList(VT, MVT::Other, MVT::Glue);
869 SDValue Ops[] = { Chain, getRegister(Reg, VT), Glue };
870 return getNode(ISD::CopyFromReg, dl, VTs,
871 ArrayRef(Ops, Glue.getNode() ? 3 : 2));
872 }
873
875
876 /// Return an ISD::VECTOR_SHUFFLE node. The number of elements in VT,
877 /// which must be a vector type, must match the number of mask elements
878 /// NumElts. An integer mask element equal to -1 is treated as undefined.
880 SDValue N2, ArrayRef<int> Mask);
881
882 /// Return an ISD::BUILD_VECTOR node. The number of elements in VT,
883 /// which must be a vector type, must match the number of operands in Ops.
884 /// The operands must have the same type as (or, for integers, a type wider
885 /// than) VT's element type.
887 // VerifySDNode (via InsertNode) checks BUILD_VECTOR later.
888 return getNode(ISD::BUILD_VECTOR, DL, VT, Ops);
889 }
890
891 /// Return an ISD::BUILD_VECTOR node. The number of elements in VT,
892 /// which must be a vector type, must match the number of operands in Ops.
893 /// The operands must have the same type as (or, for integers, a type wider
894 /// than) VT's element type.
896 // VerifySDNode (via InsertNode) checks BUILD_VECTOR later.
897 return getNode(ISD::BUILD_VECTOR, DL, VT, Ops);
898 }
899
900 /// Return a splat ISD::BUILD_VECTOR node, consisting of Op splatted to all
901 /// elements. VT must be a vector type. Op's type must be the same as (or,
902 /// for integers, a type wider than) VT's element type.
904 // VerifySDNode (via InsertNode) checks BUILD_VECTOR later.
905 if (Op.isUndef()) {
906 assert((VT.getVectorElementType() == Op.getValueType() ||
907 (VT.isInteger() &&
908 VT.getVectorElementType().bitsLE(Op.getValueType()))) &&
909 "A splatted value must have a width equal or (for integers) "
910 "greater than the vector element type!");
911 return getNode(ISD::UNDEF, SDLoc(), VT);
912 }
913
915 return getNode(ISD::BUILD_VECTOR, DL, VT, Ops);
916 }
917
918 // Return a splat ISD::SPLAT_VECTOR node, consisting of Op splatted to all
919 // elements.
921 if (Op.isUndef()) {
922 assert((VT.getVectorElementType() == Op.getValueType() ||
923 (VT.isInteger() &&
924 VT.getVectorElementType().bitsLE(Op.getValueType()))) &&
925 "A splatted value must have a width equal or (for integers) "
926 "greater than the vector element type!");
927 return getNode(ISD::UNDEF, SDLoc(), VT);
928 }
929 return getNode(ISD::SPLAT_VECTOR, DL, VT, Op);
930 }
931
932 /// Returns a node representing a splat of one value into all lanes
933 /// of the provided vector type. This is a utility which returns
934 /// either a BUILD_VECTOR or SPLAT_VECTOR depending on the
935 /// scalability of the desired vector type.
937 assert(VT.isVector() && "Can't splat to non-vector type");
938 return VT.isScalableVector() ?
940 }
941
942 /// Returns a vector of type ResVT whose elements contain the linear sequence
943 /// <0, Step, Step * 2, Step * 3, ...>
945 const APInt &StepVal);
946
947 /// Returns a vector of type ResVT whose elements contain the linear sequence
948 /// <0, 1, 2, 3, ...>
949 LLVM_ABI SDValue getStepVector(const SDLoc &DL, EVT ResVT);
950
951 /// Returns an ISD::VECTOR_SHUFFLE node semantically equivalent to
952 /// the shuffle node in input but with swapped operands.
953 ///
954 /// Example: shuffle A, B, <0,5,2,7> -> shuffle B, A, <4,1,6,3>
956
957 /// Extract element at \p Idx from \p Vec. See EXTRACT_VECTOR_ELT
958 /// description for result type handling.
960 unsigned Idx) {
961 return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT, Vec,
963 }
964
965 /// Insert \p Elt into \p Vec at offset \p Idx. See INSERT_VECTOR_ELT
966 /// description for element type handling.
968 unsigned Idx) {
969 return getNode(ISD::INSERT_VECTOR_ELT, DL, Vec.getValueType(), Vec, Elt,
971 }
972
973 /// Insert \p SubVec at the \p Idx element of \p Vec.
975 unsigned Idx) {
976 return getNode(ISD::INSERT_SUBVECTOR, DL, Vec.getValueType(), Vec, SubVec,
978 }
979
980 /// Return the \p VT typed sub-vector of \p Vec at \p Idx
982 unsigned Idx) {
983 return getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, Vec,
985 }
986
987 /// Convert Op, which must be of float type, to the
988 /// float type VT, by either extending or rounding (by truncation).
990
991 /// Convert Op, which must be a STRICT operation of float type, to the
992 /// float type VT, by either extending or rounding (by truncation).
993 LLVM_ABI std::pair<SDValue, SDValue>
995
996 /// Convert *_EXTEND_VECTOR_INREG to *_EXTEND opcode.
997 static unsigned getOpcode_EXTEND(unsigned Opcode) {
998 switch (Opcode) {
999 case ISD::ANY_EXTEND:
1001 return ISD::ANY_EXTEND;
1002 case ISD::ZERO_EXTEND:
1004 return ISD::ZERO_EXTEND;
1005 case ISD::SIGN_EXTEND:
1007 return ISD::SIGN_EXTEND;
1008 }
1009 llvm_unreachable("Unknown opcode");
1010 }
1011
1012 /// Convert *_EXTEND to *_EXTEND_VECTOR_INREG opcode.
1013 static unsigned getOpcode_EXTEND_VECTOR_INREG(unsigned Opcode) {
1014 switch (Opcode) {
1015 case ISD::ANY_EXTEND:
1018 case ISD::ZERO_EXTEND:
1021 case ISD::SIGN_EXTEND:
1024 }
1025 llvm_unreachable("Unknown opcode");
1026 }
1027
1028 /// Convert Op, which must be of integer type, to the
1029 /// integer type VT, by either any-extending or truncating it.
1031
1032 /// Convert Op, which must be of integer type, to the
1033 /// integer type VT, by either sign-extending or truncating it.
1035
1036 /// Convert Op, which must be of integer type, to the
1037 /// integer type VT, by either zero-extending or truncating it.
1039
1040 /// Convert Op, which must be of integer type, to the
1041 /// integer type VT, by either any/sign/zero-extending (depending on IsAny /
1042 /// IsSigned) or truncating it.
1044 EVT VT, unsigned Opcode) {
1045 switch(Opcode) {
1046 case ISD::ANY_EXTEND:
1047 return getAnyExtOrTrunc(Op, DL, VT);
1048 case ISD::ZERO_EXTEND:
1049 return getZExtOrTrunc(Op, DL, VT);
1050 case ISD::SIGN_EXTEND:
1051 return getSExtOrTrunc(Op, DL, VT);
1052 }
1053 llvm_unreachable("Unsupported opcode");
1054 }
1055
1056 /// Convert Op, which must be of integer type, to the
1057 /// integer type VT, by either sign/zero-extending (depending on IsSigned) or
1058 /// truncating it.
1059 SDValue getExtOrTrunc(bool IsSigned, SDValue Op, const SDLoc &DL, EVT VT) {
1060 return IsSigned ? getSExtOrTrunc(Op, DL, VT) : getZExtOrTrunc(Op, DL, VT);
1061 }
1062
1063 /// Convert Op, which must be of integer type, to the
1064 /// integer type VT, by first bitcasting (from potential vector) to
1065 /// corresponding scalar type then either any-extending or truncating it.
1067 EVT VT);
1068
1069 /// Convert Op, which must be of integer type, to the
1070 /// integer type VT, by first bitcasting (from potential vector) to
1071 /// corresponding scalar type then either sign-extending or truncating it.
1073
1074 /// Convert Op, which must be of integer type, to the
1075 /// integer type VT, by first bitcasting (from potential vector) to
1076 /// corresponding scalar type then either zero-extending or truncating it.
1078
1079 /// Return the expression required to zero extend the Op
1080 /// value assuming it was the smaller SrcTy value.
1082
1083 /// Return the expression required to zero extend the Op
1084 /// value assuming it was the smaller SrcTy value.
1086 const SDLoc &DL, EVT VT);
1087
1088 /// Convert Op, which must be of integer type, to the integer type VT, by
1089 /// either truncating it or performing either zero or sign extension as
1090 /// appropriate extension for the pointer's semantics.
1092
1093 /// Return the expression required to extend the Op as a pointer value
1094 /// assuming it was the smaller SrcTy value. This may be either a zero extend
1095 /// or a sign extend.
1097
1098 /// Convert Op, which must be of integer type, to the integer type VT,
1099 /// by using an extension appropriate for the target's
1100 /// BooleanContent for type OpVT or truncating it.
1102 EVT OpVT);
1103
1104 /// Create negative operation as (SUB 0, Val).
1105 LLVM_ABI SDValue getNegative(SDValue Val, const SDLoc &DL, EVT VT);
1106
1107 /// Create a bitwise NOT operation as (XOR Val, -1).
1108 LLVM_ABI SDValue getNOT(const SDLoc &DL, SDValue Val, EVT VT);
1109
1110 /// Create a logical NOT operation as (XOR Val, BooleanOne).
1111 LLVM_ABI SDValue getLogicalNOT(const SDLoc &DL, SDValue Val, EVT VT);
1112
1113 /// Create a vector-predicated logical NOT operation as (VP_XOR Val,
1114 /// BooleanOne, Mask, EVL).
1116 SDValue EVL, EVT VT);
1117
1118 /// Convert a vector-predicated Op, which must be an integer vector, to the
1119 /// vector-type VT, by performing either vector-predicated zext or truncating
1120 /// it. The Op will be returned as-is if Op and VT are vectors containing
1121 /// integer with same width.
1123 SDValue Mask, SDValue EVL);
1124
1125 /// Convert a vector-predicated Op, which must be of integer type, to the
1126 /// vector-type integer type VT, by either truncating it or performing either
1127 /// vector-predicated zero or sign extension as appropriate extension for the
1128 /// pointer's semantics. This function just redirects to getVPZExtOrTrunc
1129 /// right now.
1131 SDValue Mask, SDValue EVL);
1132
1133 /// Returns sum of the base pointer and offset.
1134 /// Unlike getObjectPtrOffset this does not set NoUnsignedWrap and InBounds by
1135 /// default.
1138 const SDNodeFlags Flags = SDNodeFlags());
1141 const SDNodeFlags Flags = SDNodeFlags());
1142
1143 /// Create an add instruction with appropriate flags when used for
1144 /// addressing some offset of an object. i.e. if a load is split into multiple
1145 /// components, create an add nuw (or ptradd nuw inbounds) from the base
1146 /// pointer to the offset.
1151
1153 // The object itself can't wrap around the address space, so it shouldn't be
1154 // possible for the adds of the offsets to the split parts to overflow.
1155 return getMemBasePlusOffset(
1157 }
1158
1159 /// Return a new CALLSEQ_START node, that starts new call frame, in which
1160 /// InSize bytes are set up inside CALLSEQ_START..CALLSEQ_END sequence and
1161 /// OutSize specifies part of the frame set up prior to the sequence.
1163 const SDLoc &DL) {
1164 SDVTList VTs = getVTList(MVT::Other, MVT::Glue);
1165 SDValue Ops[] = { Chain,
1166 getIntPtrConstant(InSize, DL, true),
1167 getIntPtrConstant(OutSize, DL, true) };
1168 return getNode(ISD::CALLSEQ_START, DL, VTs, Ops);
1169 }
1170
1171 /// Return a new CALLSEQ_END node, which always must have a
1172 /// glue result (to ensure it's not CSE'd).
1173 /// CALLSEQ_END does not have a useful SDLoc.
1175 SDValue InGlue, const SDLoc &DL) {
1176 SDVTList NodeTys = getVTList(MVT::Other, MVT::Glue);
1178 Ops.push_back(Chain);
1179 Ops.push_back(Op1);
1180 Ops.push_back(Op2);
1181 if (InGlue.getNode())
1182 Ops.push_back(InGlue);
1183 return getNode(ISD::CALLSEQ_END, DL, NodeTys, Ops);
1184 }
1185
1187 SDValue Glue, const SDLoc &DL) {
1188 return getCALLSEQ_END(
1189 Chain, getIntPtrConstant(Size1, DL, /*isTarget=*/true),
1190 getIntPtrConstant(Size2, DL, /*isTarget=*/true), Glue, DL);
1191 }
1192
1193 /// Return true if the result of this operation is always undefined.
1194 LLVM_ABI bool isUndef(unsigned Opcode, ArrayRef<SDValue> Ops);
1195
1196 /// Return an UNDEF node. UNDEF does not have a useful SDLoc.
1198 return getNode(ISD::UNDEF, SDLoc(), VT);
1199 }
1200
1201 /// Return a POISON node. POISON does not have a useful SDLoc.
1203
1204 /// Return a node that represents the runtime scaling 'MulImm * RuntimeVL'.
1205 LLVM_ABI SDValue getVScale(const SDLoc &DL, EVT VT, APInt MulImm);
1206
1208
1210
1211 /// Return a vector with the first 'Len' lanes set to true and remaining lanes
1212 /// set to false. The mask's ValueType is the same as when comparing vectors
1213 /// of type VT.
1215 ElementCount Len);
1216
1217 /// Return a GLOBAL_OFFSET_TABLE node. This does not have a useful SDLoc.
1221
1222 /// Gets or creates the specified node.
1223 ///
1224 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
1226 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
1227 ArrayRef<SDValue> Ops, const SDNodeFlags Flags);
1228 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL,
1230 const SDNodeFlags Flags);
1231 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
1232 ArrayRef<SDValue> Ops, const SDNodeFlags Flags);
1233
1234 // Use flags from current flag inserter.
1235 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
1237 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL,
1239 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
1241 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
1242 SDValue Operand);
1243 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N1,
1244 SDValue N2);
1245 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N1,
1246 SDValue N2, SDValue N3);
1247
1248 // Specialize based on number of operands.
1249 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT);
1250 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
1251 SDValue Operand, const SDNodeFlags Flags);
1252 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N1,
1253 SDValue N2, const SDNodeFlags Flags);
1254 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N1,
1255 SDValue N2, SDValue N3, const SDNodeFlags Flags);
1256 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N1,
1257 SDValue N2, SDValue N3, SDValue N4);
1258 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N1,
1259 SDValue N2, SDValue N3, SDValue N4,
1260 const SDNodeFlags Flags);
1261 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N1,
1262 SDValue N2, SDValue N3, SDValue N4, SDValue N5);
1263 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, SDValue N1,
1264 SDValue N2, SDValue N3, SDValue N4, SDValue N5,
1265 const SDNodeFlags Flags);
1266
1267 // Specialize again based on number of operands for nodes with a VTList
1268 // rather than a single VT.
1269 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList);
1270 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
1271 SDValue N);
1272 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
1273 SDValue N1, SDValue N2);
1274 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
1275 SDValue N1, SDValue N2, SDValue N3);
1276 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
1277 SDValue N1, SDValue N2, SDValue N3, SDValue N4);
1278 LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
1279 SDValue N1, SDValue N2, SDValue N3, SDValue N4,
1280 SDValue N5);
1281
1282 /// Compute a TokenFactor to force all the incoming stack arguments to be
1283 /// loaded from the stack. This is used in tail call lowering to protect
1284 /// stack arguments from being clobbered.
1286
1287 /// Lower a memcmp operation into a target library call and return the
1288 /// resulting chain and call result as SelectionDAG SDValues.
1289 LLVM_ABI std::pair<SDValue, SDValue> getMemcmp(SDValue Chain, const SDLoc &dl,
1290 SDValue Dst, SDValue Src,
1291 SDValue Size,
1292 const CallInst *CI);
1293
1294 /// Lower a strcpy operation into a target library call and return the
1295 /// resulting chain and call result as SelectionDAG SDValues.
1296 LLVM_ABI std::pair<SDValue, SDValue> getStrcpy(SDValue Chain, const SDLoc &dl,
1297 SDValue Dst, SDValue Src,
1298 const CallInst *CI);
1299
1300 /// Lower a strlen operation into a target library call and return the
1301 /// resulting chain and call result as SelectionDAG SDValues.
1302 LLVM_ABI std::pair<SDValue, SDValue>
1303 getStrlen(SDValue Chain, const SDLoc &dl, SDValue Src, const CallInst *CI);
1304
1305 /// Lower a strstr operation into a target library call and return the
1306 /// resulting chain and call result as SelectionDAG SDValues.
1307 LLVM_ABI std::pair<SDValue, SDValue> getStrstr(SDValue Chain, const SDLoc &dl,
1308 SDValue S0, SDValue S1,
1309 const CallInst *CI);
1310
1311 /* \p CI if not null is the memset call being lowered.
1312 * \p OverrideTailCall is an optional parameter that can be used to override
1313 * the tail call optimization decision. */
1314 LLVM_ABI SDValue getMemcpy(SDValue Chain, const SDLoc &dl, SDValue Dst,
1315 SDValue Src, SDValue Size, Align Alignment,
1316 bool isVol, bool AlwaysInline, const CallInst *CI,
1317 std::optional<bool> OverrideTailCall,
1318 MachinePointerInfo DstPtrInfo,
1319 MachinePointerInfo SrcPtrInfo,
1320 const AAMDNodes &AAInfo = AAMDNodes(),
1321 BatchAAResults *BatchAA = nullptr);
1322
1323 /* \p CI if not null is the memset call being lowered.
1324 * \p OverrideTailCall is an optional parameter that can be used to override
1325 * the tail call optimization decision. */
1326 LLVM_ABI SDValue getMemmove(SDValue Chain, const SDLoc &dl, SDValue Dst,
1327 SDValue Src, SDValue Size, Align Alignment,
1328 bool isVol, const CallInst *CI,
1329 std::optional<bool> OverrideTailCall,
1330 MachinePointerInfo DstPtrInfo,
1331 MachinePointerInfo SrcPtrInfo,
1332 const AAMDNodes &AAInfo = AAMDNodes(),
1333 BatchAAResults *BatchAA = nullptr);
1334
1335 LLVM_ABI SDValue getMemset(SDValue Chain, const SDLoc &dl, SDValue Dst,
1336 SDValue Src, SDValue Size, Align Alignment,
1337 bool isVol, bool AlwaysInline, const CallInst *CI,
1338 MachinePointerInfo DstPtrInfo,
1339 const AAMDNodes &AAInfo = AAMDNodes());
1340
1341 LLVM_ABI SDValue getAtomicMemcpy(SDValue Chain, const SDLoc &dl, SDValue Dst,
1342 SDValue Src, SDValue Size, Type *SizeTy,
1343 unsigned ElemSz, bool isTailCall,
1344 MachinePointerInfo DstPtrInfo,
1345 MachinePointerInfo SrcPtrInfo);
1346
1347 LLVM_ABI SDValue getAtomicMemmove(SDValue Chain, const SDLoc &dl, SDValue Dst,
1348 SDValue Src, SDValue Size, Type *SizeTy,
1349 unsigned ElemSz, bool isTailCall,
1350 MachinePointerInfo DstPtrInfo,
1351 MachinePointerInfo SrcPtrInfo);
1352
1353 LLVM_ABI SDValue getAtomicMemset(SDValue Chain, const SDLoc &dl, SDValue Dst,
1354 SDValue Value, SDValue Size, Type *SizeTy,
1355 unsigned ElemSz, bool isTailCall,
1356 MachinePointerInfo DstPtrInfo);
1357
1358 /// Helper function to make it easier to build SetCC's if you just have an
1359 /// ISD::CondCode instead of an SDValue.
1361 ISD::CondCode Cond, SDValue Chain = SDValue(),
1362 bool IsSignaling = false) {
1363 assert(LHS.getValueType().isVector() == RHS.getValueType().isVector() &&
1364 "Vector/scalar operand type mismatch for setcc");
1365 assert(LHS.getValueType().isVector() == VT.isVector() &&
1366 "Vector/scalar result type mismatch for setcc");
1368 "Cannot create a setCC of an invalid node.");
1369 if (Chain)
1370 return getNode(IsSignaling ? ISD::STRICT_FSETCCS : ISD::STRICT_FSETCC, DL,
1371 {VT, MVT::Other}, {Chain, LHS, RHS, getCondCode(Cond)});
1372 return getNode(ISD::SETCC, DL, VT, LHS, RHS, getCondCode(Cond));
1373 }
1374
1375 /// Helper function to make it easier to build VP_SETCCs if you just have an
1376 /// ISD::CondCode instead of an SDValue.
1378 ISD::CondCode Cond, SDValue Mask, SDValue EVL) {
1379 assert(LHS.getValueType().isVector() && RHS.getValueType().isVector() &&
1380 "Cannot compare scalars");
1382 "Cannot create a setCC of an invalid node.");
1383 return getNode(ISD::VP_SETCC, DL, VT, LHS, RHS, getCondCode(Cond), Mask,
1384 EVL);
1385 }
1386
1387 /// Helper function to make it easier to build Select's if you just have
1388 /// operands and don't want to check for vector.
1390 SDValue RHS, SDNodeFlags Flags = SDNodeFlags()) {
1391 assert(LHS.getValueType() == VT && RHS.getValueType() == VT &&
1392 "Cannot use select on differing types");
1393 auto Opcode = Cond.getValueType().isVector() ? ISD::VSELECT : ISD::SELECT;
1394 return getNode(Opcode, DL, VT, Cond, LHS, RHS, Flags);
1395 }
1396
1397 /// Helper function to make it easier to build SelectCC's if you just have an
1398 /// ISD::CondCode instead of an SDValue.
1400 SDValue False, ISD::CondCode Cond,
1401 SDNodeFlags Flags = SDNodeFlags()) {
1402 return getNode(ISD::SELECT_CC, DL, True.getValueType(), LHS, RHS, True,
1403 False, getCondCode(Cond), Flags);
1404 }
1405
1406 /// Try to simplify a select/vselect into 1 of its operands or a constant.
1408
1409 /// Try to simplify a shift into 1 of its operands or a constant.
1411
1412 /// Try to simplify a floating-point binary operation into 1 of its operands
1413 /// or a constant.
1414 LLVM_ABI SDValue simplifyFPBinop(unsigned Opcode, SDValue X, SDValue Y,
1415 SDNodeFlags Flags);
1416
1417 /// VAArg produces a result and token chain, and takes a pointer
1418 /// and a source value as input.
1419 LLVM_ABI SDValue getVAArg(EVT VT, const SDLoc &dl, SDValue Chain, SDValue Ptr,
1420 SDValue SV, unsigned Align);
1421
1422 /// Gets a node for an atomic cmpxchg op. There are two
1423 /// valid Opcodes. ISD::ATOMIC_CMO_SWAP produces the value loaded and a
1424 /// chain result. ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS produces the value loaded,
1425 /// a success flag (initially i1), and a chain.
1426 LLVM_ABI SDValue getAtomicCmpSwap(unsigned Opcode, const SDLoc &dl, EVT MemVT,
1427 SDVTList VTs, SDValue Chain, SDValue Ptr,
1428 SDValue Cmp, SDValue Swp,
1429 MachineMemOperand *MMO);
1430
1431 /// Gets a node for an atomic op, produces result (if relevant)
1432 /// and chain and takes 2 operands.
1433 LLVM_ABI SDValue getAtomic(unsigned Opcode, const SDLoc &dl, EVT MemVT,
1434 SDValue Chain, SDValue Ptr, SDValue Val,
1435 MachineMemOperand *MMO);
1436
1437 /// Gets a node for an atomic op, produces result and chain and takes N
1438 /// operands.
1439 LLVM_ABI SDValue getAtomic(unsigned Opcode, const SDLoc &dl, EVT MemVT,
1441 MachineMemOperand *MMO,
1443
1445 EVT MemVT, EVT VT, SDValue Chain, SDValue Ptr,
1446 MachineMemOperand *MMO);
1447
1448 /// Creates a MemIntrinsicNode that may produce a
1449 /// result and takes a list of operands. Opcode may be INTRINSIC_VOID,
1450 /// INTRINSIC_W_CHAIN, or a target-specific memory-referencing opcode
1451 // (see `SelectionDAGTargetInfo::isTargetMemoryOpcode`).
1453 unsigned Opcode, const SDLoc &dl, SDVTList VTList, ArrayRef<SDValue> Ops,
1454 EVT MemVT, MachinePointerInfo PtrInfo, Align Alignment,
1458 const AAMDNodes &AAInfo = AAMDNodes());
1459
1461 unsigned Opcode, const SDLoc &dl, SDVTList VTList, ArrayRef<SDValue> Ops,
1462 EVT MemVT, MachinePointerInfo PtrInfo,
1463 MaybeAlign Alignment = std::nullopt,
1467 const AAMDNodes &AAInfo = AAMDNodes()) {
1468 // Ensure that codegen never sees alignment 0
1469 return getMemIntrinsicNode(Opcode, dl, VTList, Ops, MemVT, PtrInfo,
1470 Alignment.value_or(getEVTAlign(MemVT)), Flags,
1471 Size, AAInfo);
1472 }
1473
1474 LLVM_ABI SDValue getMemIntrinsicNode(unsigned Opcode, const SDLoc &dl,
1476 EVT MemVT, MachineMemOperand *MMO);
1477
1478 /// Creates a LifetimeSDNode that starts (`IsStart==true`) or ends
1479 /// (`IsStart==false`) the lifetime of the `FrameIndex`.
1480 LLVM_ABI SDValue getLifetimeNode(bool IsStart, const SDLoc &dl, SDValue Chain,
1481 int FrameIndex);
1482
1483 /// Creates a PseudoProbeSDNode with function GUID `Guid` and
1484 /// the index of the block `Index` it is probing, as well as the attributes
1485 /// `attr` of the probe.
1487 uint64_t Guid, uint64_t Index,
1488 uint32_t Attr);
1489
1490 /// Create a MERGE_VALUES node from the given operands.
1492
1493 /// Loads are not normal binary operators: their result type is not
1494 /// determined by their operands, and they produce a value AND a token chain.
1495 ///
1496 /// This function will set the MOLoad flag on MMOFlags, but you can set it if
1497 /// you want. The MOStore flag must not be set.
1499 EVT VT, const SDLoc &dl, SDValue Chain, SDValue Ptr,
1500 MachinePointerInfo PtrInfo, MaybeAlign Alignment = MaybeAlign(),
1502 const AAMDNodes &AAInfo = AAMDNodes(), const MDNode *Ranges = nullptr);
1503 LLVM_ABI SDValue getLoad(EVT VT, const SDLoc &dl, SDValue Chain, SDValue Ptr,
1504 MachineMemOperand *MMO);
1506 getExtLoad(ISD::LoadExtType ExtType, const SDLoc &dl, EVT VT, SDValue Chain,
1507 SDValue Ptr, MachinePointerInfo PtrInfo, EVT MemVT,
1508 MaybeAlign Alignment = MaybeAlign(),
1510 const AAMDNodes &AAInfo = AAMDNodes());
1511 LLVM_ABI SDValue getExtLoad(ISD::LoadExtType ExtType, const SDLoc &dl, EVT VT,
1512 SDValue Chain, SDValue Ptr, EVT MemVT,
1513 MachineMemOperand *MMO);
1514 LLVM_ABI SDValue getIndexedLoad(SDValue OrigLoad, const SDLoc &dl,
1518 ISD::MemIndexedMode AM, ISD::LoadExtType ExtType, EVT VT, const SDLoc &dl,
1519 SDValue Chain, SDValue Ptr, SDValue Offset, MachinePointerInfo PtrInfo,
1520 EVT MemVT, Align Alignment,
1522 const AAMDNodes &AAInfo = AAMDNodes(), const MDNode *Ranges = nullptr);
1524 ISD::MemIndexedMode AM, ISD::LoadExtType ExtType, EVT VT, const SDLoc &dl,
1525 SDValue Chain, SDValue Ptr, SDValue Offset, MachinePointerInfo PtrInfo,
1526 EVT MemVT, MaybeAlign Alignment = MaybeAlign(),
1528 const AAMDNodes &AAInfo = AAMDNodes(), const MDNode *Ranges = nullptr) {
1529 // Ensures that codegen never sees a None Alignment.
1530 return getLoad(AM, ExtType, VT, dl, Chain, Ptr, Offset, PtrInfo, MemVT,
1531 Alignment.value_or(getEVTAlign(MemVT)), MMOFlags, AAInfo,
1532 Ranges);
1533 }
1535 EVT VT, const SDLoc &dl, SDValue Chain, SDValue Ptr,
1536 SDValue Offset, EVT MemVT, MachineMemOperand *MMO);
1537
1538 /// Helper function to build ISD::STORE nodes.
1539 ///
1540 /// This function will set the MOStore flag on MMOFlags, but you can set it if
1541 /// you want. The MOLoad and MOInvariant flags must not be set.
1542
1544 getStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr,
1545 MachinePointerInfo PtrInfo, Align Alignment,
1547 const AAMDNodes &AAInfo = AAMDNodes());
1548 inline SDValue
1549 getStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr,
1550 MachinePointerInfo PtrInfo, MaybeAlign Alignment = MaybeAlign(),
1552 const AAMDNodes &AAInfo = AAMDNodes()) {
1553 return getStore(Chain, dl, Val, Ptr, PtrInfo,
1554 Alignment.value_or(getEVTAlign(Val.getValueType())),
1555 MMOFlags, AAInfo);
1556 }
1557 LLVM_ABI SDValue getStore(SDValue Chain, const SDLoc &dl, SDValue Val,
1558 SDValue Ptr, MachineMemOperand *MMO);
1560 getTruncStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr,
1561 MachinePointerInfo PtrInfo, EVT SVT, Align Alignment,
1563 const AAMDNodes &AAInfo = AAMDNodes());
1564 inline SDValue
1565 getTruncStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr,
1566 MachinePointerInfo PtrInfo, EVT SVT,
1567 MaybeAlign Alignment = MaybeAlign(),
1569 const AAMDNodes &AAInfo = AAMDNodes()) {
1570 return getTruncStore(Chain, dl, Val, Ptr, PtrInfo, SVT,
1571 Alignment.value_or(getEVTAlign(SVT)), MMOFlags,
1572 AAInfo);
1573 }
1574 LLVM_ABI SDValue getTruncStore(SDValue Chain, const SDLoc &dl, SDValue Val,
1575 SDValue Ptr, EVT SVT, MachineMemOperand *MMO);
1576 LLVM_ABI SDValue getIndexedStore(SDValue OrigStore, const SDLoc &dl,
1579 LLVM_ABI SDValue getStore(SDValue Chain, const SDLoc &dl, SDValue Val,
1580 SDValue Ptr, SDValue Offset, EVT SVT,
1582 bool IsTruncating = false);
1583
1585 EVT VT, const SDLoc &dl, SDValue Chain,
1586 SDValue Ptr, SDValue Offset, SDValue Mask,
1587 SDValue EVL, MachinePointerInfo PtrInfo, EVT MemVT,
1588 Align Alignment, MachineMemOperand::Flags MMOFlags,
1589 const AAMDNodes &AAInfo,
1590 const MDNode *Ranges = nullptr,
1591 bool IsExpanding = false);
1592 inline SDValue
1594 const SDLoc &dl, SDValue Chain, SDValue Ptr, SDValue Offset,
1595 SDValue Mask, SDValue EVL, MachinePointerInfo PtrInfo, EVT MemVT,
1596 MaybeAlign Alignment = MaybeAlign(),
1598 const AAMDNodes &AAInfo = AAMDNodes(),
1599 const MDNode *Ranges = nullptr, bool IsExpanding = false) {
1600 // Ensures that codegen never sees a None Alignment.
1601 return getLoadVP(AM, ExtType, VT, dl, Chain, Ptr, Offset, Mask, EVL,
1602 PtrInfo, MemVT, Alignment.value_or(getEVTAlign(MemVT)),
1603 MMOFlags, AAInfo, Ranges, IsExpanding);
1604 }
1606 EVT VT, const SDLoc &dl, SDValue Chain,
1607 SDValue Ptr, SDValue Offset, SDValue Mask,
1608 SDValue EVL, EVT MemVT, MachineMemOperand *MMO,
1609 bool IsExpanding = false);
1610 LLVM_ABI SDValue getLoadVP(EVT VT, const SDLoc &dl, SDValue Chain,
1611 SDValue Ptr, SDValue Mask, SDValue EVL,
1612 MachinePointerInfo PtrInfo, MaybeAlign Alignment,
1613 MachineMemOperand::Flags MMOFlags,
1614 const AAMDNodes &AAInfo,
1615 const MDNode *Ranges = nullptr,
1616 bool IsExpanding = false);
1617 LLVM_ABI SDValue getLoadVP(EVT VT, const SDLoc &dl, SDValue Chain,
1618 SDValue Ptr, SDValue Mask, SDValue EVL,
1619 MachineMemOperand *MMO, bool IsExpanding = false);
1621 ISD::LoadExtType ExtType, const SDLoc &dl, EVT VT, SDValue Chain,
1622 SDValue Ptr, SDValue Mask, SDValue EVL, MachinePointerInfo PtrInfo,
1623 EVT MemVT, MaybeAlign Alignment, MachineMemOperand::Flags MMOFlags,
1624 const AAMDNodes &AAInfo, bool IsExpanding = false);
1626 EVT VT, SDValue Chain, SDValue Ptr,
1627 SDValue Mask, SDValue EVL, EVT MemVT,
1628 MachineMemOperand *MMO,
1629 bool IsExpanding = false);
1630 LLVM_ABI SDValue getIndexedLoadVP(SDValue OrigLoad, const SDLoc &dl,
1633 LLVM_ABI SDValue getStoreVP(SDValue Chain, const SDLoc &dl, SDValue Val,
1634 SDValue Ptr, SDValue Offset, SDValue Mask,
1635 SDValue EVL, EVT MemVT, MachineMemOperand *MMO,
1636 ISD::MemIndexedMode AM, bool IsTruncating = false,
1637 bool IsCompressing = false);
1638 LLVM_ABI SDValue getTruncStoreVP(SDValue Chain, const SDLoc &dl, SDValue Val,
1639 SDValue Ptr, SDValue Mask, SDValue EVL,
1640 MachinePointerInfo PtrInfo, EVT SVT,
1641 Align Alignment,
1642 MachineMemOperand::Flags MMOFlags,
1643 const AAMDNodes &AAInfo,
1644 bool IsCompressing = false);
1645 LLVM_ABI SDValue getTruncStoreVP(SDValue Chain, const SDLoc &dl, SDValue Val,
1646 SDValue Ptr, SDValue Mask, SDValue EVL,
1647 EVT SVT, MachineMemOperand *MMO,
1648 bool IsCompressing = false);
1649 LLVM_ABI SDValue getIndexedStoreVP(SDValue OrigStore, const SDLoc &dl,
1652
1654 ISD::MemIndexedMode AM, ISD::LoadExtType ExtType, EVT VT, const SDLoc &DL,
1655 SDValue Chain, SDValue Ptr, SDValue Offset, SDValue Stride, SDValue Mask,
1656 SDValue EVL, EVT MemVT, MachineMemOperand *MMO, bool IsExpanding = false);
1658 SDValue Ptr, SDValue Stride, SDValue Mask,
1659 SDValue EVL, MachineMemOperand *MMO,
1660 bool IsExpanding = false);
1662 const SDLoc &DL, EVT VT, SDValue Chain,
1663 SDValue Ptr, SDValue Stride,
1664 SDValue Mask, SDValue EVL, EVT MemVT,
1665 MachineMemOperand *MMO,
1666 bool IsExpanding = false);
1668 SDValue Val, SDValue Ptr, SDValue Offset,
1669 SDValue Stride, SDValue Mask, SDValue EVL,
1670 EVT MemVT, MachineMemOperand *MMO,
1672 bool IsTruncating = false,
1673 bool IsCompressing = false);
1675 SDValue Val, SDValue Ptr,
1676 SDValue Stride, SDValue Mask,
1677 SDValue EVL, EVT SVT,
1678 MachineMemOperand *MMO,
1679 bool IsCompressing = false);
1680
1681 LLVM_ABI SDValue getGatherVP(SDVTList VTs, EVT VT, const SDLoc &dl,
1683 ISD::MemIndexType IndexType);
1684 LLVM_ABI SDValue getScatterVP(SDVTList VTs, EVT VT, const SDLoc &dl,
1686 ISD::MemIndexType IndexType);
1687
1688 LLVM_ABI SDValue getMaskedLoad(EVT VT, const SDLoc &dl, SDValue Chain,
1690 SDValue Src0, EVT MemVT,
1692 ISD::LoadExtType, bool IsExpanding = false);
1696 LLVM_ABI SDValue getMaskedStore(SDValue Chain, const SDLoc &dl, SDValue Val,
1698 EVT MemVT, MachineMemOperand *MMO,
1700 bool IsTruncating = false,
1701 bool IsCompressing = false);
1702 LLVM_ABI SDValue getIndexedMaskedStore(SDValue OrigStore, const SDLoc &dl,
1705 LLVM_ABI SDValue getMaskedGather(SDVTList VTs, EVT MemVT, const SDLoc &dl,
1707 MachineMemOperand *MMO,
1708 ISD::MemIndexType IndexType,
1709 ISD::LoadExtType ExtTy);
1710 LLVM_ABI SDValue getMaskedScatter(SDVTList VTs, EVT MemVT, const SDLoc &dl,
1712 MachineMemOperand *MMO,
1713 ISD::MemIndexType IndexType,
1714 bool IsTruncating = false);
1715 LLVM_ABI SDValue getMaskedHistogram(SDVTList VTs, EVT MemVT, const SDLoc &dl,
1717 MachineMemOperand *MMO,
1718 ISD::MemIndexType IndexType);
1719 LLVM_ABI SDValue getLoadFFVP(EVT VT, const SDLoc &DL, SDValue Chain,
1720 SDValue Ptr, SDValue Mask, SDValue EVL,
1721 MachineMemOperand *MMO);
1722
1723 LLVM_ABI SDValue getGetFPEnv(SDValue Chain, const SDLoc &dl, SDValue Ptr,
1724 EVT MemVT, MachineMemOperand *MMO);
1725 LLVM_ABI SDValue getSetFPEnv(SDValue Chain, const SDLoc &dl, SDValue Ptr,
1726 EVT MemVT, MachineMemOperand *MMO);
1727
1728 /// Construct a node to track a Value* through the backend.
1730
1731 /// Return an MDNodeSDNode which holds an MDNode.
1732 LLVM_ABI SDValue getMDNode(const MDNode *MD);
1733
1734 /// Return a bitcast using the SDLoc of the value operand, and casting to the
1735 /// provided type. Use getNode to set a custom SDLoc.
1737
1738 /// Return an AddrSpaceCastSDNode.
1739 LLVM_ABI SDValue getAddrSpaceCast(const SDLoc &dl, EVT VT, SDValue Ptr,
1740 unsigned SrcAS, unsigned DestAS);
1741
1742 /// Return a freeze using the SDLoc of the value operand.
1744
1745 /// Return an AssertAlignSDNode.
1747
1748 /// Swap N1 and N2 if Opcode is a commutative binary opcode
1749 /// and the canonical form expects the opposite order.
1750 LLVM_ABI void canonicalizeCommutativeBinop(unsigned Opcode, SDValue &N1,
1751 SDValue &N2) const;
1752
1753 /// Return the specified value casted to
1754 /// the target's desired shift amount type.
1756
1757 /// Expand the specified \c ISD::VAARG node as the Legalize pass would.
1759
1760 /// Expand the specified \c ISD::VACOPY node as the Legalize pass would.
1762
1763 /// Return a GlobalAddress of the function from the current module with
1764 /// name matching the given ExternalSymbol. Additionally can provide the
1765 /// matched function.
1766 /// Panic if the function doesn't exist.
1768 SDValue Op, Function **TargetFunction = nullptr);
1769
1770 /// *Mutate* the specified node in-place to have the
1771 /// specified operands. If the resultant node already exists in the DAG,
1772 /// this does not modify the specified node, instead it returns the node that
1773 /// already exists. If the resultant node does not exist in the DAG, the
1774 /// input node is returned. As a degenerate case, if you specify the same
1775 /// input operands as the node already has, the input node is returned.
1779 SDValue Op3);
1781 SDValue Op3, SDValue Op4);
1783 SDValue Op3, SDValue Op4, SDValue Op5);
1785
1786 /// Creates a new TokenFactor containing \p Vals. If \p Vals contains 64k
1787 /// values or more, move values into new TokenFactors in 64k-1 blocks, until
1788 /// the final TokenFactor has less than 64k operands.
1791
1792 /// *Mutate* the specified machine node's memory references to the provided
1793 /// list.
1796
1797 // Calculate divergence of node \p N based on its operands.
1799
1800 // Propagates the change in divergence to users
1802
1803 /// These are used for target selectors to *mutate* the
1804 /// specified node to have the specified return type, Target opcode, and
1805 /// operands. Note that target opcodes are stored as
1806 /// ~TargetOpcode in the node opcode field. The resultant node is returned.
1807 LLVM_ABI SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT);
1808 LLVM_ABI SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT,
1809 SDValue Op1);
1810 LLVM_ABI SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT,
1811 SDValue Op1, SDValue Op2);
1812 LLVM_ABI SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT,
1813 SDValue Op1, SDValue Op2, SDValue Op3);
1814 LLVM_ABI SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT,
1816 LLVM_ABI SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1,
1817 EVT VT2);
1818 LLVM_ABI SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1,
1820 LLVM_ABI SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1,
1821 EVT VT2, EVT VT3, ArrayRef<SDValue> Ops);
1822 LLVM_ABI SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT1,
1823 EVT VT2, SDValue Op1, SDValue Op2);
1824 LLVM_ABI SDNode *SelectNodeTo(SDNode *N, unsigned MachineOpc, SDVTList VTs,
1826
1827 /// This *mutates* the specified node to have the specified
1828 /// return type, opcode, and operands.
1829 LLVM_ABI SDNode *MorphNodeTo(SDNode *N, unsigned Opc, SDVTList VTs,
1831
1832 /// Mutate the specified strict FP node to its non-strict equivalent,
1833 /// unlinking the node from its chain and dropping the metadata arguments.
1834 /// The node must be a strict FP node.
1836
1837 /// These are used for target selectors to create a new node
1838 /// with specified return type(s), MachineInstr opcode, and operands.
1839 ///
1840 /// Note that getMachineNode returns the resultant node. If there is already
1841 /// a node of the specified opcode and operands, it returns that node instead
1842 /// of the current one.
1843 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1844 EVT VT);
1845 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1846 EVT VT, SDValue Op1);
1847 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1848 EVT VT, SDValue Op1, SDValue Op2);
1849 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1850 EVT VT, SDValue Op1, SDValue Op2,
1851 SDValue Op3);
1852 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1854 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1855 EVT VT1, EVT VT2, SDValue Op1,
1856 SDValue Op2);
1857 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1858 EVT VT1, EVT VT2, SDValue Op1,
1859 SDValue Op2, SDValue Op3);
1860 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1861 EVT VT1, EVT VT2,
1863 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1864 EVT VT1, EVT VT2, EVT VT3, SDValue Op1,
1865 SDValue Op2);
1866 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1867 EVT VT1, EVT VT2, EVT VT3, SDValue Op1,
1868 SDValue Op2, SDValue Op3);
1869 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1870 EVT VT1, EVT VT2, EVT VT3,
1872 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1873 ArrayRef<EVT> ResultTys,
1875 LLVM_ABI MachineSDNode *getMachineNode(unsigned Opcode, const SDLoc &dl,
1877
1878 /// A convenience function for creating TargetInstrInfo::EXTRACT_SUBREG nodes.
1879 LLVM_ABI SDValue getTargetExtractSubreg(int SRIdx, const SDLoc &DL, EVT VT,
1880 SDValue Operand);
1881
1882 /// A convenience function for creating TargetInstrInfo::INSERT_SUBREG nodes.
1883 LLVM_ABI SDValue getTargetInsertSubreg(int SRIdx, const SDLoc &DL, EVT VT,
1884 SDValue Operand, SDValue Subreg);
1885
1886 /// Get the specified node if it's already available, or else return NULL.
1887 LLVM_ABI SDNode *getNodeIfExists(unsigned Opcode, SDVTList VTList,
1889 const SDNodeFlags Flags,
1890 bool AllowCommute = false);
1891 LLVM_ABI SDNode *getNodeIfExists(unsigned Opcode, SDVTList VTList,
1893 bool AllowCommute = false);
1894
1895 /// Check if a node exists without modifying its flags.
1896 LLVM_ABI bool doesNodeExist(unsigned Opcode, SDVTList VTList,
1898
1899 /// Creates a SDDbgValue node.
1901 SDNode *N, unsigned R, bool IsIndirect,
1902 const DebugLoc &DL, unsigned O);
1903
1904 /// Creates a constant SDDbgValue node.
1906 const Value *C, const DebugLoc &DL,
1907 unsigned O);
1908
1909 /// Creates a FrameIndex SDDbgValue node.
1911 DIExpression *Expr, unsigned FI,
1912 bool IsIndirect,
1913 const DebugLoc &DL, unsigned O);
1914
1915 /// Creates a FrameIndex SDDbgValue node.
1917 DIExpression *Expr, unsigned FI,
1918 ArrayRef<SDNode *> Dependencies,
1919 bool IsIndirect,
1920 const DebugLoc &DL, unsigned O);
1921
1922 /// Creates a VReg SDDbgValue node.
1924 Register VReg, bool IsIndirect,
1925 const DebugLoc &DL, unsigned O);
1926
1927 /// Creates a SDDbgValue node from a list of locations.
1930 ArrayRef<SDNode *> Dependencies,
1931 bool IsIndirect, const DebugLoc &DL,
1932 unsigned O, bool IsVariadic);
1933
1934 /// Creates a SDDbgLabel node.
1936 unsigned O);
1937
1938 /// Transfer debug values from one node to another, while optionally
1939 /// generating fragment expressions for split-up values. If \p InvalidateDbg
1940 /// is set, debug values are invalidated after they are transferred.
1942 unsigned OffsetInBits = 0,
1943 unsigned SizeInBits = 0,
1944 bool InvalidateDbg = true);
1945
1946 /// Remove the specified node from the system. If any of its
1947 /// operands then becomes dead, remove them as well. Inform UpdateListener
1948 /// for each node deleted.
1950
1951 /// This method deletes the unreachable nodes in the
1952 /// given list, and any nodes that become unreachable as a result.
1954
1955 /// Modify anything using 'From' to use 'To' instead.
1956 /// This can cause recursive merging of nodes in the DAG. Use the first
1957 /// version if 'From' is known to have a single result, use the second
1958 /// if you have two nodes with identical results (or if 'To' has a superset
1959 /// of the results of 'From'), use the third otherwise.
1960 ///
1961 /// These methods all take an optional UpdateListener, which (if not null) is
1962 /// informed about nodes that are deleted and modified due to recursive
1963 /// changes in the dag.
1964 ///
1965 /// These functions only replace all existing uses. It's possible that as
1966 /// these replacements are being performed, CSE may cause the From node
1967 /// to be given new uses. These new uses of From are left in place, and
1968 /// not automatically transferred to To.
1969 ///
1971 LLVM_ABI void ReplaceAllUsesWith(SDNode *From, SDNode *To);
1972 LLVM_ABI void ReplaceAllUsesWith(SDNode *From, const SDValue *To);
1973
1974 /// Replace any uses of From with To, leaving
1975 /// uses of other values produced by From.getNode() alone.
1977
1978 /// Like ReplaceAllUsesOfValueWith, but for multiple values at once.
1979 /// This correctly handles the case where
1980 /// there is an overlap between the From values and the To values.
1982 const SDValue *To, unsigned Num);
1983
1984 /// If an existing load has uses of its chain, create a token factor node with
1985 /// that chain and the new memory node's chain and update users of the old
1986 /// chain to the token factor. This ensures that the new memory node will have
1987 /// the same relative memory dependency position as the old load. Returns the
1988 /// new merged load chain.
1990 SDValue NewMemOpChain);
1991
1992 /// If an existing load has uses of its chain, create a token factor node with
1993 /// that chain and the new memory node's chain and update users of the old
1994 /// chain to the token factor. This ensures that the new memory node will have
1995 /// the same relative memory dependency position as the old load. Returns the
1996 /// new merged load chain.
1998 SDValue NewMemOp);
1999
2000 /// Get all the nodes in their topological order without modifying any states.
2002 SmallVectorImpl<const SDNode *> &SortedNodes) const;
2003
2004 /// Topological-sort the AllNodes list and a
2005 /// assign a unique node id for each node in the DAG based on their
2006 /// topological order. Returns the number of nodes.
2008
2009 /// Move node N in the AllNodes list to be immediately
2010 /// before the given iterator Position. This may be used to update the
2011 /// topological ordering when the list of nodes is modified.
2013 AllNodes.insert(Position, AllNodes.remove(N));
2014 }
2015
2016 /// Add a dbg_value SDNode. If SD is non-null that means the
2017 /// value is produced by SD.
2018 LLVM_ABI void AddDbgValue(SDDbgValue *DB, bool isParameter);
2019
2020 /// Add a dbg_label SDNode.
2022
2023 /// Get the debug values which reference the given SDNode.
2025 return DbgInfo->getSDDbgValues(SD);
2026 }
2027
2028public:
2029 /// Return true if there are any SDDbgValue nodes associated
2030 /// with this SelectionDAG.
2031 bool hasDebugValues() const { return !DbgInfo->empty(); }
2032
2033 SDDbgInfo::DbgIterator DbgBegin() const { return DbgInfo->DbgBegin(); }
2034 SDDbgInfo::DbgIterator DbgEnd() const { return DbgInfo->DbgEnd(); }
2035
2037 return DbgInfo->ByvalParmDbgBegin();
2038 }
2040 return DbgInfo->ByvalParmDbgEnd();
2041 }
2042
2044 return DbgInfo->DbgLabelBegin();
2045 }
2047 return DbgInfo->DbgLabelEnd();
2048 }
2049
2050 /// To be invoked on an SDNode that is slated to be erased. This
2051 /// function mirrors \c llvm::salvageDebugInfo.
2053
2054 /// Dump the textual format of this DAG. Print nodes in sorted orders if \p
2055 /// Sorted is true.
2056 LLVM_ABI void dump(bool Sorted = false) const;
2057
2058 /// In most cases this function returns the ABI alignment for a given type,
2059 /// except for illegal vector types where the alignment exceeds that of the
2060 /// stack. In such cases we attempt to break the vector down to a legal type
2061 /// and return the ABI alignment for that instead.
2062 LLVM_ABI Align getReducedAlign(EVT VT, bool UseABI);
2063
2064 /// Create a stack temporary based on the size in bytes and the alignment
2066
2067 /// Create a stack temporary, suitable for holding the specified value type.
2068 /// If minAlign is specified, the slot size will have at least that alignment.
2069 LLVM_ABI SDValue CreateStackTemporary(EVT VT, unsigned minAlign = 1);
2070
2071 /// Create a stack temporary suitable for holding either of the specified
2072 /// value types.
2074
2075 LLVM_ABI SDValue FoldSymbolOffset(unsigned Opcode, EVT VT,
2076 const GlobalAddressSDNode *GA,
2077 const SDNode *N2);
2078
2079 LLVM_ABI SDValue FoldConstantArithmetic(unsigned Opcode, const SDLoc &DL,
2081 SDNodeFlags Flags = SDNodeFlags());
2082
2083 /// Fold floating-point operations when all operands are constants and/or
2084 /// undefined.
2085 LLVM_ABI SDValue foldConstantFPMath(unsigned Opcode, const SDLoc &DL, EVT VT,
2087
2088 /// Fold BUILD_VECTOR of constants/undefs to the destination type
2089 /// BUILD_VECTOR of constants/undefs elements.
2091 const SDLoc &DL, EVT DstEltVT);
2092
2093 /// Constant fold a setcc to true or false.
2095 const SDLoc &dl);
2096
2097 /// Return true if the sign bit of Op is known to be zero.
2098 /// We use this predicate to simplify operations downstream.
2099 LLVM_ABI bool SignBitIsZero(SDValue Op, unsigned Depth = 0) const;
2100
2101 /// Return true if the sign bit of Op is known to be zero, for a
2102 /// floating-point value.
2103 LLVM_ABI bool SignBitIsZeroFP(SDValue Op, unsigned Depth = 0) const;
2104
2105 /// Return true if 'Op & Mask' is known to be zero. We
2106 /// use this predicate to simplify operations downstream. Op and Mask are
2107 /// known to be the same type.
2108 LLVM_ABI bool MaskedValueIsZero(SDValue Op, const APInt &Mask,
2109 unsigned Depth = 0) const;
2110
2111 /// Return true if 'Op & Mask' is known to be zero in DemandedElts. We
2112 /// use this predicate to simplify operations downstream. Op and Mask are
2113 /// known to be the same type.
2114 LLVM_ABI bool MaskedValueIsZero(SDValue Op, const APInt &Mask,
2115 const APInt &DemandedElts,
2116 unsigned Depth = 0) const;
2117
2118 /// Return true if 'Op' is known to be zero in DemandedElts. We
2119 /// use this predicate to simplify operations downstream.
2120 LLVM_ABI bool MaskedVectorIsZero(SDValue Op, const APInt &DemandedElts,
2121 unsigned Depth = 0) const;
2122
2123 /// Return true if '(Op & Mask) == Mask'.
2124 /// Op and Mask are known to be the same type.
2125 LLVM_ABI bool MaskedValueIsAllOnes(SDValue Op, const APInt &Mask,
2126 unsigned Depth = 0) const;
2127
2128 /// For each demanded element of a vector, see if it is known to be zero.
2130 const APInt &DemandedElts,
2131 unsigned Depth = 0) const;
2132
2133 /// Determine which bits of Op are known to be either zero or one and return
2134 /// them in Known. For vectors, the known bits are those that are shared by
2135 /// every vector element.
2136 /// Targets can implement the computeKnownBitsForTargetNode method in the
2137 /// TargetLowering class to allow target nodes to be understood.
2138 LLVM_ABI KnownBits computeKnownBits(SDValue Op, unsigned Depth = 0) const;
2139
2140 /// Determine which bits of Op are known to be either zero or one and return
2141 /// them in Known. The DemandedElts argument allows us to only collect the
2142 /// known bits that are shared by the requested vector elements.
2143 /// Targets can implement the computeKnownBitsForTargetNode method in the
2144 /// TargetLowering class to allow target nodes to be understood.
2145 LLVM_ABI KnownBits computeKnownBits(SDValue Op, const APInt &DemandedElts,
2146 unsigned Depth = 0) const;
2147
2148 /// Used to represent the possible overflow behavior of an operation.
2149 /// Never: the operation cannot overflow.
2150 /// Always: the operation will always overflow.
2151 /// Sometime: the operation may or may not overflow.
2157
2158 /// Determine if the result of the signed addition of 2 nodes can overflow.
2160 SDValue N1) const;
2161
2162 /// Determine if the result of the unsigned addition of 2 nodes can overflow.
2164 SDValue N1) const;
2165
2166 /// Determine if the result of the addition of 2 nodes can overflow.
2168 SDValue N1) const {
2169 return IsSigned ? computeOverflowForSignedAdd(N0, N1)
2171 }
2172
2173 /// Determine if the result of the addition of 2 nodes can never overflow.
2174 bool willNotOverflowAdd(bool IsSigned, SDValue N0, SDValue N1) const {
2175 return computeOverflowForAdd(IsSigned, N0, N1) == OFK_Never;
2176 }
2177
2178 /// Determine if the result of the signed sub of 2 nodes can overflow.
2180 SDValue N1) const;
2181
2182 /// Determine if the result of the unsigned sub of 2 nodes can overflow.
2184 SDValue N1) const;
2185
2186 /// Determine if the result of the sub of 2 nodes can overflow.
2188 SDValue N1) const {
2189 return IsSigned ? computeOverflowForSignedSub(N0, N1)
2191 }
2192
2193 /// Determine if the result of the sub of 2 nodes can never overflow.
2194 bool willNotOverflowSub(bool IsSigned, SDValue N0, SDValue N1) const {
2195 return computeOverflowForSub(IsSigned, N0, N1) == OFK_Never;
2196 }
2197
2198 /// Determine if the result of the signed mul of 2 nodes can overflow.
2200 SDValue N1) const;
2201
2202 /// Determine if the result of the unsigned mul of 2 nodes can overflow.
2204 SDValue N1) const;
2205
2206 /// Determine if the result of the mul of 2 nodes can overflow.
2208 SDValue N1) const {
2209 return IsSigned ? computeOverflowForSignedMul(N0, N1)
2211 }
2212
2213 /// Determine if the result of the mul of 2 nodes can never overflow.
2214 bool willNotOverflowMul(bool IsSigned, SDValue N0, SDValue N1) const {
2215 return computeOverflowForMul(IsSigned, N0, N1) == OFK_Never;
2216 }
2217
2218 /// Test if the given value is known to have exactly one bit set. This differs
2219 /// from computeKnownBits in that it doesn't necessarily determine which bit
2220 /// is set.
2221 LLVM_ABI bool isKnownToBeAPowerOfTwo(SDValue Val, unsigned Depth = 0) const;
2222
2223 /// Test if the given _fp_ value is known to be an integer power-of-2, either
2224 /// positive or negative.
2225 LLVM_ABI bool isKnownToBeAPowerOfTwoFP(SDValue Val, unsigned Depth = 0) const;
2226
2227 /// Return the number of times the sign bit of the register is replicated into
2228 /// the other bits. We know that at least 1 bit is always equal to the sign
2229 /// bit (itself), but other cases can give us information. For example,
2230 /// immediately after an "SRA X, 2", we know that the top 3 bits are all equal
2231 /// to each other, so we return 3. Targets can implement the
2232 /// ComputeNumSignBitsForTarget method in the TargetLowering class to allow
2233 /// target nodes to be understood.
2234 LLVM_ABI unsigned ComputeNumSignBits(SDValue Op, unsigned Depth = 0) const;
2235
2236 /// Return the number of times the sign bit of the register is replicated into
2237 /// the other bits. We know that at least 1 bit is always equal to the sign
2238 /// bit (itself), but other cases can give us information. For example,
2239 /// immediately after an "SRA X, 2", we know that the top 3 bits are all equal
2240 /// to each other, so we return 3. The DemandedElts argument allows
2241 /// us to only collect the minimum sign bits of the requested vector elements.
2242 /// Targets can implement the ComputeNumSignBitsForTarget method in the
2243 /// TargetLowering class to allow target nodes to be understood.
2244 LLVM_ABI unsigned ComputeNumSignBits(SDValue Op, const APInt &DemandedElts,
2245 unsigned Depth = 0) const;
2246
2247 /// Get the upper bound on bit size for this Value \p Op as a signed integer.
2248 /// i.e. x == sext(trunc(x to MaxSignedBits) to bitwidth(x)).
2249 /// Similar to the APInt::getSignificantBits function.
2250 /// Helper wrapper to ComputeNumSignBits.
2252 unsigned Depth = 0) const;
2253
2254 /// Get the upper bound on bit size for this Value \p Op as a signed integer.
2255 /// i.e. x == sext(trunc(x to MaxSignedBits) to bitwidth(x)).
2256 /// Similar to the APInt::getSignificantBits function.
2257 /// Helper wrapper to ComputeNumSignBits.
2259 const APInt &DemandedElts,
2260 unsigned Depth = 0) const;
2261
2262 /// Return true if this function can prove that \p Op is never poison
2263 /// and, if \p PoisonOnly is false, does not have undef bits.
2265 bool PoisonOnly = false,
2266 unsigned Depth = 0) const;
2267
2268 /// Return true if this function can prove that \p Op is never poison
2269 /// and, if \p PoisonOnly is false, does not have undef bits. The DemandedElts
2270 /// argument limits the check to the requested vector elements.
2272 const APInt &DemandedElts,
2273 bool PoisonOnly = false,
2274 unsigned Depth = 0) const;
2275
2276 /// Return true if this function can prove that \p Op is never poison.
2277 bool isGuaranteedNotToBePoison(SDValue Op, unsigned Depth = 0) const {
2278 return isGuaranteedNotToBeUndefOrPoison(Op, /*PoisonOnly*/ true, Depth);
2279 }
2280
2281 /// Return true if this function can prove that \p Op is never poison. The
2282 /// DemandedElts argument limits the check to the requested vector elements.
2283 bool isGuaranteedNotToBePoison(SDValue Op, const APInt &DemandedElts,
2284 unsigned Depth = 0) const {
2285 return isGuaranteedNotToBeUndefOrPoison(Op, DemandedElts,
2286 /*PoisonOnly*/ true, Depth);
2287 }
2288
2289 /// Return true if Op can create undef or poison from non-undef & non-poison
2290 /// operands. The DemandedElts argument limits the check to the requested
2291 /// vector elements.
2292 ///
2293 /// \p ConsiderFlags controls whether poison producing flags on the
2294 /// instruction are considered. This can be used to see if the instruction
2295 /// could still introduce undef or poison even without poison generating flags
2296 /// which might be on the instruction. (i.e. could the result of
2297 /// Op->dropPoisonGeneratingFlags() still create poison or undef)
2298 LLVM_ABI bool canCreateUndefOrPoison(SDValue Op, const APInt &DemandedElts,
2299 bool PoisonOnly = false,
2300 bool ConsiderFlags = true,
2301 unsigned Depth = 0) const;
2302
2303 /// Return true if Op can create undef or poison from non-undef & non-poison
2304 /// operands.
2305 ///
2306 /// \p ConsiderFlags controls whether poison producing flags on the
2307 /// instruction are considered. This can be used to see if the instruction
2308 /// could still introduce undef or poison even without poison generating flags
2309 /// which might be on the instruction. (i.e. could the result of
2310 /// Op->dropPoisonGeneratingFlags() still create poison or undef)
2312 bool ConsiderFlags = true,
2313 unsigned Depth = 0) const;
2314
2315 /// Return true if the specified operand is an ISD::OR or ISD::XOR node
2316 /// that can be treated as an ISD::ADD node.
2317 /// or(x,y) == add(x,y) iff haveNoCommonBitsSet(x,y)
2318 /// xor(x,y) == add(x,y) iff isMinSignedConstant(y) && !NoWrap
2319 /// If \p NoWrap is true, this will not match ISD::XOR.
2320 LLVM_ABI bool isADDLike(SDValue Op, bool NoWrap = false) const;
2321
2322 /// Return true if the specified operand is an ISD::ADD with a ConstantSDNode
2323 /// on the right-hand side, or if it is an ISD::OR with a ConstantSDNode that
2324 /// is guaranteed to have the same semantics as an ADD. This handles the
2325 /// equivalence:
2326 /// X|Cst == X+Cst iff X&Cst = 0.
2328
2329 /// Test whether the given SDValue (or all elements of it, if it is a
2330 /// vector) is known to never be NaN in \p DemandedElts. If \p SNaN is true,
2331 /// returns if \p Op is known to never be a signaling NaN (it may still be a
2332 /// qNaN).
2333 LLVM_ABI bool isKnownNeverNaN(SDValue Op, const APInt &DemandedElts,
2334 bool SNaN = false, unsigned Depth = 0) const;
2335
2336 /// Test whether the given SDValue (or all elements of it, if it is a
2337 /// vector) is known to never be NaN. If \p SNaN is true, returns if \p Op is
2338 /// known to never be a signaling NaN (it may still be a qNaN).
2339 LLVM_ABI bool isKnownNeverNaN(SDValue Op, bool SNaN = false,
2340 unsigned Depth = 0) const;
2341
2342 /// \returns true if \p Op is known to never be a signaling NaN in \p
2343 /// DemandedElts.
2344 bool isKnownNeverSNaN(SDValue Op, const APInt &DemandedElts,
2345 unsigned Depth = 0) const {
2346 return isKnownNeverNaN(Op, DemandedElts, true, Depth);
2347 }
2348
2349 /// \returns true if \p Op is known to never be a signaling NaN.
2350 bool isKnownNeverSNaN(SDValue Op, unsigned Depth = 0) const {
2351 return isKnownNeverNaN(Op, true, Depth);
2352 }
2353
2354 /// Test whether the given floating point SDValue is known to never be
2355 /// positive or negative zero.
2357
2358 /// Test whether the given SDValue is known to contain non-zero value(s).
2359 LLVM_ABI bool isKnownNeverZero(SDValue Op, unsigned Depth = 0) const;
2360
2361 /// Test whether the given float value is known to be positive. +0.0, +inf and
2362 /// +nan are considered positive, -0.0, -inf and -nan are not.
2364
2365 /// Check if a use of a float value is insensitive to signed zeros.
2366 LLVM_ABI bool canIgnoreSignBitOfZero(const SDUse &Use) const;
2367
2368 /// Check if at most two uses of a value are insensitive to signed zeros.
2370
2371 /// Test whether two SDValues are known to compare equal. This
2372 /// is true if they are the same value, or if one is negative zero and the
2373 /// other positive zero.
2374 LLVM_ABI bool isEqualTo(SDValue A, SDValue B) const;
2375
2376 /// Return true if A and B have no common bits set. As an example, this can
2377 /// allow an 'add' to be transformed into an 'or'.
2379
2380 /// Test whether \p V has a splatted value for all the demanded elements.
2381 ///
2382 /// On success \p UndefElts will indicate the elements that have UNDEF
2383 /// values instead of the splat value, this is only guaranteed to be correct
2384 /// for \p DemandedElts.
2385 ///
2386 /// NOTE: The function will return true for a demanded splat of UNDEF values.
2387 LLVM_ABI bool isSplatValue(SDValue V, const APInt &DemandedElts,
2388 APInt &UndefElts, unsigned Depth = 0) const;
2389
2390 /// Test whether \p V has a splatted value.
2391 LLVM_ABI bool isSplatValue(SDValue V, bool AllowUndefs = false) const;
2392
2393 /// If V is a splatted value, return the source vector and its splat index.
2394 LLVM_ABI SDValue getSplatSourceVector(SDValue V, int &SplatIndex);
2395
2396 /// If V is a splat vector, return its scalar source operand by extracting
2397 /// that element from the source vector. If LegalTypes is true, this method
2398 /// may only return a legally-typed splat value. If it cannot legalize the
2399 /// splatted value it will return SDValue().
2400 LLVM_ABI SDValue getSplatValue(SDValue V, bool LegalTypes = false);
2401
2402 /// If a SHL/SRA/SRL node \p V has shift amounts that are all less than the
2403 /// element bit-width of the shift node, return the valid constant range.
2404 LLVM_ABI std::optional<ConstantRange>
2405 getValidShiftAmountRange(SDValue V, const APInt &DemandedElts,
2406 unsigned Depth) const;
2407
2408 /// If a SHL/SRA/SRL node \p V has a uniform shift amount
2409 /// that is less than the element bit-width of the shift node, return it.
2410 LLVM_ABI std::optional<unsigned>
2411 getValidShiftAmount(SDValue V, const APInt &DemandedElts,
2412 unsigned Depth = 0) const;
2413
2414 /// If a SHL/SRA/SRL node \p V has a uniform shift amount
2415 /// that is less than the element bit-width of the shift node, return it.
2416 LLVM_ABI std::optional<unsigned>
2417 getValidShiftAmount(SDValue V, unsigned Depth = 0) const;
2418
2419 /// If a SHL/SRA/SRL node \p V has shift amounts that are all less than the
2420 /// element bit-width of the shift node, return the minimum possible value.
2421 LLVM_ABI std::optional<unsigned>
2422 getValidMinimumShiftAmount(SDValue V, const APInt &DemandedElts,
2423 unsigned Depth = 0) const;
2424
2425 /// If a SHL/SRA/SRL node \p V has shift amounts that are all less than the
2426 /// element bit-width of the shift node, return the minimum possible value.
2427 LLVM_ABI std::optional<unsigned>
2428 getValidMinimumShiftAmount(SDValue V, unsigned Depth = 0) const;
2429
2430 /// If a SHL/SRA/SRL node \p V has shift amounts that are all less than the
2431 /// element bit-width of the shift node, return the maximum possible value.
2432 LLVM_ABI std::optional<unsigned>
2433 getValidMaximumShiftAmount(SDValue V, const APInt &DemandedElts,
2434 unsigned Depth = 0) const;
2435
2436 /// If a SHL/SRA/SRL node \p V has shift amounts that are all less than the
2437 /// element bit-width of the shift node, return the maximum possible value.
2438 LLVM_ABI std::optional<unsigned>
2439 getValidMaximumShiftAmount(SDValue V, unsigned Depth = 0) const;
2440
2441 /// Match a binop + shuffle pyramid that represents a horizontal reduction
2442 /// over the elements of a vector starting from the EXTRACT_VECTOR_ELT node /p
2443 /// Extract. The reduction must use one of the opcodes listed in /p
2444 /// CandidateBinOps and on success /p BinOp will contain the matching opcode.
2445 /// Returns the vector that is being reduced on, or SDValue() if a reduction
2446 /// was not matched. If \p AllowPartials is set then in the case of a
2447 /// reduction pattern that only matches the first few stages, the extracted
2448 /// subvector of the start of the reduction is returned.
2450 ArrayRef<ISD::NodeType> CandidateBinOps,
2451 bool AllowPartials = false);
2452
2453 /// Utility function used by legalize and lowering to
2454 /// "unroll" a vector operation by splitting out the scalars and operating
2455 /// on each element individually. If the ResNE is 0, fully unroll the vector
2456 /// op. If ResNE is less than the width of the vector op, unroll up to ResNE.
2457 /// If the ResNE is greater than the width of the vector op, unroll the
2458 /// vector op and fill the end of the resulting vector with UNDEFS.
2459 LLVM_ABI SDValue UnrollVectorOp(SDNode *N, unsigned ResNE = 0);
2460
2461 /// Like UnrollVectorOp(), but for the [US](ADD|SUB|MUL)O family of opcodes.
2462 /// This is a separate function because those opcodes have two results.
2463 LLVM_ABI std::pair<SDValue, SDValue>
2464 UnrollVectorOverflowOp(SDNode *N, unsigned ResNE = 0);
2465
2466 /// Return true if loads are next to each other and can be
2467 /// merged. Check that both are nonvolatile and if LD is loading
2468 /// 'Bytes' bytes from a location that is 'Dist' units away from the
2469 /// location that the 'Base' load is loading from.
2471 unsigned Bytes, int Dist) const;
2472
2473 /// Infer alignment of a load / store address. Return std::nullopt if it
2474 /// cannot be inferred.
2476
2477 /// Split the scalar node with EXTRACT_ELEMENT using the provided VTs and
2478 /// return the low/high part.
2479 LLVM_ABI std::pair<SDValue, SDValue> SplitScalar(const SDValue &N,
2480 const SDLoc &DL,
2481 const EVT &LoVT,
2482 const EVT &HiVT);
2483
2484 /// Compute the VTs needed for the low/hi parts of a type
2485 /// which is split (or expanded) into two not necessarily identical pieces.
2486 LLVM_ABI std::pair<EVT, EVT> GetSplitDestVTs(const EVT &VT) const;
2487
2488 /// Compute the VTs needed for the low/hi parts of a type, dependent on an
2489 /// enveloping VT that has been split into two identical pieces. Sets the
2490 /// HisIsEmpty flag when hi type has zero storage size.
2491 LLVM_ABI std::pair<EVT, EVT> GetDependentSplitDestVTs(const EVT &VT,
2492 const EVT &EnvVT,
2493 bool *HiIsEmpty) const;
2494
2495 /// Split the vector with EXTRACT_SUBVECTOR using the provided
2496 /// VTs and return the low/high part.
2497 LLVM_ABI std::pair<SDValue, SDValue> SplitVector(const SDValue &N,
2498 const SDLoc &DL,
2499 const EVT &LoVT,
2500 const EVT &HiVT);
2501
2502 /// Split the vector with EXTRACT_SUBVECTOR and return the low/high part.
2503 std::pair<SDValue, SDValue> SplitVector(const SDValue &N, const SDLoc &DL) {
2504 EVT LoVT, HiVT;
2505 std::tie(LoVT, HiVT) = GetSplitDestVTs(N.getValueType());
2506 return SplitVector(N, DL, LoVT, HiVT);
2507 }
2508
2509 /// Split the explicit vector length parameter of a VP operation.
2510 LLVM_ABI std::pair<SDValue, SDValue> SplitEVL(SDValue N, EVT VecVT,
2511 const SDLoc &DL);
2512
2513 /// Split the node's operand with EXTRACT_SUBVECTOR and
2514 /// return the low/high part.
2515 std::pair<SDValue, SDValue> SplitVectorOperand(const SDNode *N, unsigned OpNo)
2516 {
2517 return SplitVector(N->getOperand(OpNo), SDLoc(N));
2518 }
2519
2520 /// Widen the vector up to the next power of two using INSERT_SUBVECTOR.
2521 LLVM_ABI SDValue WidenVector(const SDValue &N, const SDLoc &DL);
2522
2523 /// Append the extracted elements from Start to Count out of the vector Op in
2524 /// Args. If Count is 0, all of the elements will be extracted. The extracted
2525 /// elements will have type EVT if it is provided, and otherwise their type
2526 /// will be Op's element type.
2529 unsigned Start = 0, unsigned Count = 0,
2530 EVT EltVT = EVT());
2531
2532 /// Compute the default alignment value for the given type.
2533 LLVM_ABI Align getEVTAlign(EVT MemoryVT) const;
2534
2535 /// Test whether the given value is a constant int or similar node.
2536 LLVM_ABI bool
2538 bool AllowOpaques = true) const;
2539
2540 /// Test whether the given value is a constant FP or similar node.
2542
2543 /// \returns true if \p N is any kind of constant or build_vector of
2544 /// constants, int or float. If a vector, it may not necessarily be a splat.
2549
2550 /// Check if a value \op N is a constant using the target's BooleanContent for
2551 /// its type.
2552 LLVM_ABI std::optional<bool> isBoolConstant(SDValue N) const;
2553
2554 /// Set CallSiteInfo to be associated with Node.
2555 void addCallSiteInfo(const SDNode *Node, CallSiteInfo &&CallInfo) {
2556 SDEI[Node].CSInfo = std::move(CallInfo);
2557 }
2558 /// Return CallSiteInfo associated with Node, or a default if none exists.
2559 CallSiteInfo getCallSiteInfo(const SDNode *Node) {
2560 auto I = SDEI.find(Node);
2561 return I != SDEI.end() ? std::move(I->second).CSInfo : CallSiteInfo();
2562 }
2563 /// Set HeapAllocSite to be associated with Node.
2565 SDEI[Node].HeapAllocSite = MD;
2566 }
2567 /// Return HeapAllocSite associated with Node, or nullptr if none exists.
2569 auto I = SDEI.find(Node);
2570 return I != SDEI.end() ? I->second.HeapAllocSite : nullptr;
2571 }
2572 /// Set PCSections to be associated with Node.
2573 void addPCSections(const SDNode *Node, MDNode *MD) {
2574 SDEI[Node].PCSections = MD;
2575 }
2576 /// Set MMRAMetadata to be associated with Node.
2577 void addMMRAMetadata(const SDNode *Node, MDNode *MMRA) {
2578 SDEI[Node].MMRA = MMRA;
2579 }
2580 /// Return PCSections associated with Node, or nullptr if none exists.
2582 auto It = SDEI.find(Node);
2583 return It != SDEI.end() ? It->second.PCSections : nullptr;
2584 }
2585 /// Return the MMRA MDNode associated with Node, or nullptr if none
2586 /// exists.
2588 auto It = SDEI.find(Node);
2589 return It != SDEI.end() ? It->second.MMRA : nullptr;
2590 }
2591 /// Set CalledGlobal to be associated with Node.
2592 void addCalledGlobal(const SDNode *Node, const GlobalValue *GV,
2593 unsigned OpFlags) {
2594 SDEI[Node].CalledGlobal = {GV, OpFlags};
2595 }
2596 /// Return CalledGlobal associated with Node, or a nullopt if none exists.
2597 std::optional<CalledGlobalInfo> getCalledGlobal(const SDNode *Node) {
2598 auto I = SDEI.find(Node);
2599 return I != SDEI.end()
2600 ? std::make_optional(std::move(I->second).CalledGlobal)
2601 : std::nullopt;
2602 }
2603 /// Set NoMergeSiteInfo to be associated with Node if NoMerge is true.
2604 void addNoMergeSiteInfo(const SDNode *Node, bool NoMerge) {
2605 if (NoMerge)
2606 SDEI[Node].NoMerge = NoMerge;
2607 }
2608 /// Return NoMerge info associated with Node.
2609 bool getNoMergeSiteInfo(const SDNode *Node) const {
2610 auto I = SDEI.find(Node);
2611 return I != SDEI.end() ? I->second.NoMerge : false;
2612 }
2613
2614 /// Copy extra info associated with one node to another.
2615 LLVM_ABI void copyExtraInfo(SDNode *From, SDNode *To);
2616
2617 /// Return the current function's default denormal handling kind for the given
2618 /// floating point type.
2620 return MF->getDenormalMode(VT.getFltSemantics());
2621 }
2622
2623 LLVM_ABI bool shouldOptForSize() const;
2624
2625 /// Get the (commutative) neutral element for the given opcode, if it exists.
2626 LLVM_ABI SDValue getNeutralElement(unsigned Opcode, const SDLoc &DL, EVT VT,
2627 SDNodeFlags Flags);
2628
2629 /// Some opcodes may create immediate undefined behavior when used with some
2630 /// values (integer division-by-zero for example). Therefore, these operations
2631 /// are not generally safe to move around or change.
2632 bool isSafeToSpeculativelyExecute(unsigned Opcode) const {
2633 switch (Opcode) {
2634 case ISD::SDIV:
2635 case ISD::SREM:
2636 case ISD::SDIVREM:
2637 case ISD::UDIV:
2638 case ISD::UREM:
2639 case ISD::UDIVREM:
2640 return false;
2641 default:
2642 return true;
2643 }
2644 }
2645
2646 /// Check if the provided node is save to speculatively executed given its
2647 /// current arguments. So, while `udiv` the opcode is not safe to
2648 /// speculatively execute, a given `udiv` node may be if the denominator is
2649 /// known nonzero.
2651 switch (N->getOpcode()) {
2652 case ISD::UDIV:
2653 return isKnownNeverZero(N->getOperand(1));
2654 default:
2655 return isSafeToSpeculativelyExecute(N->getOpcode());
2656 }
2657 }
2658
2659 LLVM_ABI SDValue makeStateFunctionCall(unsigned LibFunc, SDValue Ptr,
2660 SDValue InChain, const SDLoc &DLoc);
2661
2662private:
2663#ifndef NDEBUG
2664 void verifyNode(SDNode *N) const;
2665#endif
2666 void InsertNode(SDNode *N);
2667 bool RemoveNodeFromCSEMaps(SDNode *N);
2668 void AddModifiedNodeToCSEMaps(SDNode *N);
2669 SDNode *FindModifiedNodeSlot(SDNode *N, SDValue Op, void *&InsertPos);
2670 SDNode *FindModifiedNodeSlot(SDNode *N, SDValue Op1, SDValue Op2,
2671 void *&InsertPos);
2672 SDNode *FindModifiedNodeSlot(SDNode *N, ArrayRef<SDValue> Ops,
2673 void *&InsertPos);
2674 SDNode *UpdateSDLocOnMergeSDNode(SDNode *N, const SDLoc &loc);
2675
2676 void DeleteNodeNotInCSEMaps(SDNode *N);
2677 void DeallocateNode(SDNode *N);
2678
2679 void allnodes_clear();
2680
2681 /// Look up the node specified by ID in CSEMap. If it exists, return it. If
2682 /// not, return the insertion token that will make insertion faster. This
2683 /// overload is for nodes other than Constant or ConstantFP, use the other one
2684 /// for those.
2685 SDNode *FindNodeOrInsertPos(const FoldingSetNodeID &ID, void *&InsertPos);
2686
2687 /// Look up the node specified by ID in CSEMap. If it exists, return it. If
2688 /// not, return the insertion token that will make insertion faster. Performs
2689 /// additional processing for constant nodes.
2690 SDNode *FindNodeOrInsertPos(const FoldingSetNodeID &ID, const SDLoc &DL,
2691 void *&InsertPos);
2692
2693 /// Maps to auto-CSE operations.
2694 std::vector<CondCodeSDNode*> CondCodeNodes;
2695
2696 std::vector<SDNode*> ValueTypeNodes;
2697 std::map<EVT, SDNode*, EVT::compareRawBits> ExtendedValueTypeNodes;
2698 StringMap<SDNode*> ExternalSymbols;
2699
2700 std::map<std::pair<std::string, unsigned>, SDNode *> TargetExternalSymbols;
2702
2703 FlagInserter *Inserter = nullptr;
2704};
2705
2706template <> struct GraphTraits<SelectionDAG*> : public GraphTraits<SDNode*> {
2708
2710 return nodes_iterator(G->allnodes_begin());
2711 }
2712
2714 return nodes_iterator(G->allnodes_end());
2715 }
2716};
2717
2718} // end namespace llvm
2719
2720#endif // LLVM_CODEGEN_SELECTIONDAG_H
return SDValue()
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
This file defines the StringMap class.
constexpr LLT S1
AMDGPU Uniform Intrinsic Combine
MachineBasicBlock & MBB
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
This file defines the BumpPtrAllocator interface.
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:213
#define LLVM_DUMP_METHOD
Mark debug helper function definitions like dump() that should not be stripped from debug builds.
Definition Compiler.h:661
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.
@ CallSiteInfo
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
Register Reg
This file contains the declarations for metadata subclasses.
const SmallVectorImpl< MachineOperand > & Cond
This file defines the SmallVector class.
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
static TableGen::Emitter::OptClass< SkeletonEmitter > X("gen-skeleton-class", "Generate example skeleton class")
static void removeOperands(MachineInstr &MI, unsigned i)
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.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
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:904
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:282
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:123
Implements a dense probed hash-table based set.
Definition DenseSet.h:279
FoldingSetNodeIDRef - This class describes a reference to an interned FoldingSetNodeID,...
Definition FoldingSet.h:172
FoldingSetNodeID - This class is used to gather all the unique data bits of a node.
Definition FoldingSet.h:209
FoldingSet - This template class is used to instantiate a specialized implementation of the folding s...
Definition FoldingSet.h:535
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.
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:1078
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.
This class contains meta information specific to a module.
An SDNode that represents everything that will be needed to construct a MachineInstr.
The optimization diagnostic interface.
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.
SDVTListNode(const FoldingSetNodeIDRef ID, const EVT *VT, unsigned int Num)
SDVTList getSDVTList()
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 getVPZeroExtendInReg(SDValue Op, SDValue Mask, SDValue EVL, const SDLoc &DL, EVT VT)
Return the expression required to zero extend the Op value assuming it was the smaller SrcTy value.
LLVM_ABI SDValue getShiftAmountOperand(EVT LHSTy, SDValue Op)
Return the specified value casted to the target's desired shift amount type.
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 AAMDNodes &AAInfo=AAMDNodes())
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)
const RTLIB::RuntimeLibcallsInfo & getRuntimeLibcallInfo() const
bool isKnownNeverSNaN(SDValue Op, unsigned Depth=0) const
LLVM_ABI SDValue getAddrSpaceCast(const SDLoc &dl, EVT VT, SDValue Ptr, unsigned SrcAS, unsigned DestAS)
Return an AddrSpaceCastSDNode.
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)
const Pass * getPass() const
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.
OptimizationRemarkEmitter & getORE() const
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 FoldSetCC(EVT VT, SDValue N1, SDValue N2, ISD::CondCode Cond, const SDLoc &dl)
Constant fold a setcc to true or false.
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 getNeutralElement(unsigned Opcode, const SDLoc &DL, EVT VT, SDNodeFlags Flags)
Get the (commutative) neutral element for the given opcode, if it exists.
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 void init(MachineFunction &NewMF, OptimizationRemarkEmitter &NewORE, Pass *PassPtr, const TargetLibraryInfo *LibraryInfo, const LibcallLoweringInfo *LibcallsInfo, UniformityInfo *UA, ProfileSummaryInfo *PSIin, BlockFrequencyInfo *BFIin, MachineModuleInfo &MMI, FunctionVarLocs const *FnVarLocs)
Prepare this SelectionDAG to process code in the given MachineFunction.
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 getBitcastedSExtOrTrunc(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...
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.
MachineModuleInfo * getMMI() const
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)
SDValue getSetCC(const SDLoc &DL, EVT VT, SDValue LHS, SDValue RHS, ISD::CondCode Cond, SDValue Chain=SDValue(), bool IsSignaling=false)
Helper function to make it easier to build SetCC's if you just have an ISD::CondCode instead of an SD...
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.
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.
void init(MachineFunction &NewMF, OptimizationRemarkEmitter &NewORE, MachineFunctionAnalysisManager &AM, const TargetLibraryInfo *LibraryInfo, const LibcallLoweringInfo *LibcallsInfo, UniformityInfo *UA, ProfileSummaryInfo *PSIin, BlockFrequencyInfo *BFIin, MachineModuleInfo &MMI, FunctionVarLocs const *FnVarLocs)
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.
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 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 SDValue getLoad(EVT VT, const SDLoc &dl, SDValue Chain, SDValue Ptr, MachinePointerInfo PtrInfo, MaybeAlign Alignment=MaybeAlign(), MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const AAMDNodes &AAInfo=AAMDNodes(), const MDNode *Ranges=nullptr)
Loads are not normal binary operators: their result type is not determined by their operands,...
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.
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.
LLVM_ABI SDValue getBitcastedZExtOrTrunc(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...
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,...
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 SDValue getMemcpy(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Src, SDValue Size, Align Alignment, bool isVol, bool AlwaysInline, const CallInst *CI, std::optional< bool > OverrideTailCall, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo, const AAMDNodes &AAInfo=AAMDNodes(), BatchAAResults *BatchAA=nullptr)
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.
LLVM_ABI SDValue getNOT(const SDLoc &DL, SDValue Val, EVT VT)
Create a bitwise NOT operation as (XOR Val, -1).
LLVM_ABI SDValue getVPZExtOrTrunc(const SDLoc &DL, EVT VT, SDValue Op, SDValue Mask, SDValue EVL)
Convert a vector-predicated Op, which must be an integer vector, to the vector-type VT,...
const STC & getSubtarget() const
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 AAMDNodes &AAInfo=AAMDNodes(), const MDNode *Ranges=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
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 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)
LLVM_ABI void dump(bool Sorted=false) const
Dump the textual format of this DAG.
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 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()
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 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.
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.
SDValue getStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr, MachinePointerInfo PtrInfo, MaybeAlign Alignment=MaybeAlign(), MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const AAMDNodes &AAInfo=AAMDNodes())
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 getTruncStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr, MachinePointerInfo PtrInfo, EVT SVT, Align Alignment, MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const AAMDNodes &AAInfo=AAMDNodes())
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 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 bool isGuaranteedNotToBeUndefOrPoison(SDValue Op, bool PoisonOnly=false, unsigned Depth=0) const
Return true if this function can prove that Op is never poison and, if PoisonOnly is false,...
LLVM_ABI SDValue getStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr, MachinePointerInfo PtrInfo, Align Alignment, MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const AAMDNodes &AAInfo=AAMDNodes())
Helper function to build ISD::STORE nodes.
LLVM_ABI SDValue getSignedConstant(int64_t Val, const SDLoc &DL, EVT VT, bool isTarget=false, bool isOpaque=false)
LLVM_ABI SDValue getIndexedLoadVP(SDValue OrigLoad, const SDLoc &dl, SDValue Base, SDValue Offset, ISD::MemIndexedMode AM)
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.
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
SDValue getTruncStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr, MachinePointerInfo PtrInfo, EVT SVT, MaybeAlign Alignment=MaybeAlign(), MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const AAMDNodes &AAInfo=AAMDNodes())
allnodes_iterator allnodes_end()
SDDbgInfo::DbgLabelIterator DbgLabelBegin() const
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 bool isKnownToBeAPowerOfTwo(SDValue Val, unsigned Depth=0) const
Test if the given value is known to have exactly one bit set.
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 SDValue getIndexedStoreVP(SDValue OrigStore, const SDLoc &dl, SDValue Base, SDValue Offset, ISD::MemIndexedMode AM)
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 getVPLogicalNOT(const SDLoc &DL, SDValue Val, SDValue Mask, SDValue EVL, EVT VT)
Create a vector-predicated logical NOT operation as (VP_XOR Val, BooleanOne, Mask,...
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.
LLVM_ABI bool isKnownNeverZeroFloat(SDValue Op) const
Test whether the given floating point SDValue is known to never be positive or negative zero.
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 Alignment, 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 getVPPtrExtOrTrunc(const SDLoc &DL, EVT VT, SDValue Op, SDValue Mask, SDValue EVL)
Convert a vector-predicated Op, which must be of integer type, to the vector-type integer type VT,...
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 bool canCreateUndefOrPoison(SDValue Op, const APInt &DemandedElts, bool PoisonOnly=false, bool ConsiderFlags=true, unsigned Depth=0) const
Return true if Op can create undef or poison from non-undef & non-poison operands.
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 getFrameIndex(int FI, EVT VT, bool isTarget=false)
LLVM_ABI SDValue getTruncStridedStoreVP(SDValue Chain, const SDLoc &DL, SDValue Val, SDValue Ptr, SDValue Stride, SDValue Mask, SDValue EVL, EVT SVT, MachineMemOperand *MMO, bool IsCompressing=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.
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.
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.
SDValue getSetCCVP(const SDLoc &DL, EVT VT, SDValue LHS, SDValue RHS, ISD::CondCode Cond, SDValue Mask, SDValue EVL)
Helper function to make it easier to build VP_SETCCs if you just have an ISD::CondCode instead of an ...
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.
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 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:339
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.
StringMap - This is an unconventional map that is specialized for handling keys that are "strings",...
Definition StringMap.h:133
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:45
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.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
@ C
The default llvm calling convention, compatible with C.
Definition CallingConv.h:34
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:818
@ STRICT_FSETCC
STRICT_FSETCC/STRICT_FSETCCS - Constrained versions of SETCC, used for floating-point operands only.
Definition ISDOpcodes.h:511
@ 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:600
@ ANY_EXTEND
ANY_EXTEND - Used for integer types. The high bits are undefined.
Definition ISDOpcodes.h:852
@ SIGN_EXTEND_VECTOR_INREG
SIGN_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register sign-extension of the low ...
Definition ISDOpcodes.h:909
@ 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:843
@ SELECT
Select(COND, TRUEVAL, FALSEVAL).
Definition ISDOpcodes.h:795
@ 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:671
@ 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:614
@ EXTRACT_VECTOR_ELT
EXTRACT_VECTOR_ELT(VECTOR, IDX) - Returns a single element from VECTOR identified by the (potentially...
Definition ISDOpcodes.h:576
@ CopyToReg
CopyToReg - This node has three operands: a chain, a register number to set to this value,...
Definition ISDOpcodes.h:224
@ ZERO_EXTEND
ZERO_EXTEND - Used for integer types, zeroing the new bits.
Definition ISDOpcodes.h:849
@ SELECT_CC
Select with condition operator - This selects between a true value and a false value (ops #2 and #3) ...
Definition ISDOpcodes.h:810
@ ANY_EXTEND_VECTOR_INREG
ANY_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register any-extension of the low la...
Definition ISDOpcodes.h:898
@ 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:804
@ INSERT_VECTOR_ELT
INSERT_VECTOR_ELT(VECTOR, VAL, IDX) - Returns VECTOR with the element at IDX replaced with VAL.
Definition ISDOpcodes.h:565
@ ZERO_EXTEND_VECTOR_INREG
ZERO_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register zero-extension of the low ...
Definition ISDOpcodes.h:920
@ 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:556
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).
NodeAddr< NodeBase * > Node
Definition RDFGraph.h:381
This is an optimization pass for GlobalISel generic memory operations.
Definition Types.h:26
GenericUniformityInfo< SSAContext > UniformityInfo
@ Offset
Definition DWP.cpp:532
GenericSSAContext< Function > SSAContext
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
FoldingSetBase::Node FoldingSetNode
Definition FoldingSet.h:408
AnalysisManager< MachineFunction > MachineFunctionAnalysisManager
iplist< T, Options... > ilist
Definition ilist.h:344
LLVM_ABI void checkForCycles(const SelectionDAG *DAG, bool force=false)
AlignedCharArrayUnion< AtomicSDNode, TargetIndexSDNode, BlockAddressSDNode, GlobalAddressSDNode, PseudoProbeSDNode > LargestSDNode
A representation of the largest SDNode, for use in sizeof().
FunctionAddr VTableAddr Count
Definition InstrProf.h:139
GlobalAddressSDNode MostAlignedSDNode
The SDNode class with the greatest alignment requirement.
CodeGenOptLevel
Code generation optimization level.
Definition CodeGen.h:82
CombineLevel
Definition DAGCombine.h:15
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:1915
BumpPtrAllocatorImpl<> BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
Definition Allocator.h:383
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:870
#define N
A collection of metadata nodes that might be associated with a memory access used by the alias-analys...
Definition Metadata.h:761
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
DefaultFoldingSetTrait - This class provides default implementations for FoldingSetTrait implementati...
Definition FoldingSet.h:115
Represent subnormal handling kind for floating point instruction inputs and outputs.
Extended Value Type.
Definition ValueTypes.h:35
bool isVector() const
Return true if this is a vector value type.
Definition ValueTypes.h:168
bool isScalableVector() const
Return true if this is a vector type where the runtime length is machine dependent.
Definition ValueTypes.h:174
EVT getVectorElementType() const
Given a vector type, return the type of each element.
Definition ValueTypes.h:328
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:336
bool bitsLE(EVT VT) const
Return true if this has no more bits than VT.
Definition ValueTypes.h:308
bool isInteger() const
Return true if this is an integer or a vector integer type.
Definition ValueTypes.h:152
static bool Equals(const SDVTListNode &X, const FoldingSetNodeID &ID, unsigned IDHash, FoldingSetNodeID &TempID)
static unsigned ComputeHash(const SDVTListNode &X, FoldingSetNodeID &TempID)
static void Profile(const SDVTListNode &X, FoldingSetNodeID &ID)
FoldingSetTrait - This trait class is used to define behavior of how to "profile" (in the FoldingSet ...
Definition FoldingSet.h:145
static nodes_iterator nodes_begin(SelectionDAG *G)
static nodes_iterator nodes_end(SelectionDAG *G)
pointer_iterator< SelectionDAG::allnodes_iterator > nodes_iterator
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
A simple container for information about the supported runtime calls.
These are IR-level optimization flags that may be propagated to SDNodes.
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