29#include "llvm/Config/llvm-config.h"
38#define DEBUG_TYPE "pre-RA-sched"
40STATISTIC(LoadsClustered,
"Number of loads clustered together");
47 cl::desc(
"Roughly estimate the number of cycles that 'long latency' "
48 "instructions take for targets with no itinerary"));
71 const SUnit *Addr =
nullptr;
77 "SUnits std::vector reallocated on the fly!");
82 (
N->isMachineOpcode() &&
83 N->getMachineOpcode() == TargetOpcode::IMPLICIT_DEF))
126 }
else if (Def->isMachineOpcode()) {
128 if (ResNo >=
II.getNumDefs() &&
II.hasImplicitDefOfPhysReg(
Reg))
142 if (ExtraOper.getNode())
143 Ops.push_back(ExtraOper);
164 if (GlueDestNode ==
N)
return false;
168 N->getOperand(
N->getNumOperands()-1).getValueType() == MVT::Glue) {
172 if (
N->getValueType(
N->getNumValues() - 1) == MVT::Glue)
return false;
186 assert((
N->getValueType(
N->getNumValues() - 1) == MVT::Glue &&
187 !
N->hasAnyUseOfValue(
N->getNumValues() - 1)) &&
188 "expected an unused glue value");
191 ArrayRef(
N->value_begin(),
N->getNumValues() - 1));
199void ScheduleDAGSDNodes::ClusterNeighboringLoads(
SDNode *Node) {
202 if (
Node->getOperand(
NumOps-1).getValueType() == MVT::Other)
210 auto hasTiedInput = [
this](
const SDNode *
N) {
211 const MCInstrDesc &MCID =
TII->get(
N->getMachineOpcode());
222 SmallPtrSet<SDNode*, 16> Visited;
224 DenseMap<long long, SDNode*> O2SMap;
228 if (hasTiedInput(
Base))
233 unsigned UseCount = 0;
235 I !=
E && UseCount < 100; ++
I, ++UseCount) {
236 if (
I.getUse().getResNo() != Chain.
getResNo())
240 if (User == Node || !Visited.
insert(User).second)
242 int64_t Offset1, Offset2;
243 if (!
TII->areLoadsFromSameBasePtr(
Base, User, Offset1, Offset2) ||
244 Offset1 == Offset2 ||
245 hasTiedInput(User)) {
250 if (O2SMap.
insert(std::make_pair(Offset1,
Base)).second)
252 O2SMap.
insert(std::make_pair(Offset2, User));
254 if (Offset2 < Offset1)
269 unsigned NumLoads = 0;
271 SDNode *BaseLoad = O2SMap[BaseOff];
273 for (
unsigned i = 1, e =
Offsets.size(); i != e; ++i) {
276 if (!
TII->shouldScheduleLoadsNear(BaseLoad, Load, BaseOff,
Offset,NumLoads))
287 SDNode *Lead = Loads[0];
291 for (
unsigned I = 1,
E = Loads.
size();
I !=
E; ++
I) {
292 bool OutGlue =
I <
E - 1;
293 SDNode *
Load = Loads[
I];
303 else if (!OutGlue && InGlue.
getNode())
310void ScheduleDAGSDNodes::ClusterNodes() {
311 for (SDNode &NI :
DAG->allnodes()) {
313 if (!Node || !
Node->isMachineOpcode())
316 unsigned Opc =
Node->getMachineOpcode();
317 const MCInstrDesc &MCID =
TII->get(
Opc);
320 ClusterNeighboringLoads(Node);
324void ScheduleDAGSDNodes::BuildSchedUnits() {
328 unsigned NumNodes = 0;
329 for (SDNode &NI :
DAG->allnodes()) {
331 NI.setSchedulerWorklistVisited(
false);
340 SUnits.reserve(NumNodes * 2);
344 SmallPtrSet<SDNode*, 32> Visited;
346 DAG->getRoot().getNode()->setSchedulerWorklistVisited(
true);
349 while (!Worklist.
empty()) {
354 if (
Op.getNode()->getSchedulerWorklistVisited())
356 Op.getNode()->setSchedulerWorklistVisited(
true);
374 while (
N->getNumOperands() &&
375 N->getOperand(
N->getNumOperands()-1).getValueType() == MVT::Glue) {
376 N =
N->getOperand(
N->getNumOperands()-1).getNode();
377 assert(
N->getNodeId() == -1 &&
"Node already inserted!");
379 if (
N->isMachineOpcode() &&
TII->get(
N->getMachineOpcode()).isCall())
385 while (
N->getValueType(
N->getNumValues()-1) == MVT::Glue) {
389 bool HasGlueUse =
false;
390 for (SDNode *U :
N->users())
391 if (GlueVal.isOperandOf(U)) {
393 assert(
N->getNodeId() == -1 &&
"Node already inserted!");
396 if (
N->isMachineOpcode() &&
TII->get(
N->getMachineOpcode()).isCall())
400 if (!HasGlueUse)
break;
416 assert(
N->getNodeId() == -1 &&
"Node already inserted!");
427 while (!CallSUnits.
empty()) {
429 for (
const SDNode *SUNode = SU->
getNode(); SUNode;
433 SDNode *SrcN = SUNode->getOperand(2).getNode();
441void ScheduleDAGSDNodes::AddSchedEdges() {
442 const TargetSubtargetInfo &
ST =
MF.getSubtarget();
448 for (SUnit &SU :
SUnits) {
449 SDNode *MainNode = SU.
getNode();
453 const MCInstrDesc &MCID =
TII->get(
Opc);
466 if (
N->isMachineOpcode() &&
467 !
TII->get(
N->getMachineOpcode()).implicit_defs().empty()) {
470 while (NumUsed != 0 && !
N->hasAnyUseOfValue(NumUsed - 1))
472 if (NumUsed >
TII->get(
N->getMachineOpcode()).getNumDefs())
476 for (
unsigned i = 0, e =
N->getNumOperands(); i != e; ++i) {
477 SDNode *OpN =
N->getOperand(i).getNode();
478 unsigned DefIdx =
N->getOperand(i).getResNo();
481 assert(OpSU &&
"Node has no SUnit!");
485 EVT OpVT =
N->getOperand(i).getValueType();
486 assert(OpVT != MVT::Glue &&
"Glued nodes should be in same sunit!");
487 bool isChain = OpVT == MVT::Other;
493 assert((!PhysReg || !isChain) &&
"Chain dependence via physreg data?");
500 PhysReg = MCRegister();
503 unsigned OpLatency = isChain ? 1 : OpSU->
Latency;
509 : SDep(OpSU, SDep::
Data, PhysReg);
511 if (!isChain && !UnitLatencies) {
513 ST.adjustSchedDependency(OpSU, DefIdx, &SU, i, Dep,
nullptr);
525 --OpSU->NumRegDefsLeft;
546void ScheduleDAGSDNodes::RegDefIter::InitNodeNumDefs() {
551 if (!
Node->isMachineOpcode()) {
558 unsigned POpc =
Node->getMachineOpcode();
559 if (POpc == TargetOpcode::IMPLICIT_DEF) {
564 if (POpc == TargetOpcode::PATCHPOINT &&
565 Node->getValueType(0) == MVT::Other) {
572 unsigned NRegDefs = SchedDAG->TII->get(Node->getMachineOpcode()).getNumDefs();
575 NodeNumDefs = std::min(Node->getNumValues(), NRegDefs);
582 : SchedDAG(SD), Node(SU->
getNode()) {
590 for (;DefIdx < NodeNumDefs; ++DefIdx) {
591 if (!Node->hasAnyUseOfValue(DefIdx))
593 ValueType = Node->getSimpleValueType(DefIdx);
597 Node = Node->getGluedNode();
631 if (
N &&
N->isMachineOpcode() &&
632 TII->isHighLatencyDef(
N->getMachineOpcode()))
643 if (
N->isMachineOpcode())
656 unsigned DefIdx =
Use->getOperand(
OpIdx).getResNo();
657 if (
Use->isMachineOpcode())
659 OpIdx +=
TII->get(
Use->getMachineOpcode()).getNumDefs();
660 std::optional<unsigned>
Latency =
676#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
681 dbgs() <<
"PHYS REG COPY\n";
690 while (!GluedNodes.
empty()) {
700#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
701 if (
EntrySU.getNode() !=
nullptr)
705 if (
ExitSU.getNode() !=
nullptr)
710#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
716 dbgs() <<
"**** NOOP ****\n";
729 "The number of nodes scheduled doesn't match the expected number!");
738 if (!
N->getHasDebugValue())
743 auto HasUnknownVReg = [&VRBaseMap](
SDDbgValue *DV) {
746 VRBaseMap.
count({L.getSDNode(), L.getResNo()}) == 0)
759 unsigned DVOrder = DV->getOrder();
760 if (Order != 0 && DVOrder != Order)
767 if (!DV->isInvalidated() && HasUnknownVReg(DV))
772 Orders.push_back({DVOrder, DbgMI});
785 unsigned Order =
N->getIROrder();
786 if (!Order || Seen.
count(Order)) {
799 Orders.push_back({Order, NewInsn});
807void ScheduleDAGSDNodes::
808EmitPhysRegCopy(SUnit *SU, SmallDenseMap<SUnit *, Register, 16> &VRBaseMap,
810 for (
const SDep &Pred : SU->
Preds) {
816 assert(VRI != VRBaseMap.
end() &&
"Node emitted out of order - late");
819 for (
const SDep &Succ : SU->
Succs) {
833 bool isNew = VRBaseMap.
insert(std::make_pair(SU, VRBase)).second;
835 assert(isNew &&
"Node emitted out of order - early");
854 bool HasDbg =
DAG->hasDebugValues();
859 [&](
SDNode *
Node,
bool IsClone,
bool IsCloned,
863 if (
I ==
BB->begin())
866 return std::prev(
Emitter.getInsertPos());
870 Emitter.EmitNode(
Node, IsClone, IsCloned, VRBaseMap);
878 if (Before ==
BB->end()) {
884 MI = &*std::next(Before);
887 if (
MI->isCandidateForAdditionalCallInfo()) {
888 if (
DAG->getTarget().Options.EmitCallSiteInfo ||
889 DAG->getTarget().Options.EmitCallGraphSection)
890 MF.addCallSiteInfo(
MI,
DAG->getCallSiteInfo(
Node));
892 if (
auto CalledGlobal =
DAG->getCalledGlobal(
Node))
893 if (CalledGlobal->Callee)
894 MF.addCalledGlobal(
MI, *CalledGlobal);
897 if (
DAG->getNoMergeSiteInfo(
Node)) {
902 MI->setPCSections(
MF, MD);
907 End = std::next(After);
909 It->setMMRAMetadata(
MF, MMRA);
919 for (; PDI != PDE; ++PDI) {
922 BB->insert(InsertPos, DbgMI);
925 (*PDI)->clearIsEmitted();
933 TII->insertNoop(*
Emitter.getBlock(), InsertPos);
941 EmitPhysRegCopy(SU, CopyVRBaseMap, InsertPos);
948 while (!GluedNodes.
empty()) {
956 if (NewInsn && NewInsn->isCall())
957 NewInsn->setHeapAllocMarker(
MF, MD);
969 if (NewInsn && NewInsn->isCall())
970 NewInsn->setHeapAllocMarker(
MF, MD);
983 std::stable_sort(
DAG->DbgBegin(),
DAG->DbgEnd(),
985 return LHS->getOrder() < RHS->getOrder();
991 unsigned LastOrder = 0;
992 for (
unsigned i = 0, e = Orders.
size(); i != e && DI != DE; ++i) {
993 unsigned Order = Orders[i].first;
997 for (; DI != DE; ++DI) {
998 if ((*DI)->getOrder() < LastOrder || (*DI)->getOrder() >= Order)
1000 if ((*DI)->isEmitted())
1007 BB->insert(BBBegin, DbgMI);
1012 MI->getParent()->insert(Pos, DbgMI);
1021 for (; DI != DE; ++DI) {
1022 if ((*DI)->isEmitted())
1024 assert((*DI)->getOrder() >= LastOrder &&
1025 "emitting DBG_VALUE out of order");
1038 for (
const auto &InstrOrder : Orders) {
1039 unsigned Order = InstrOrder.first;
1045 for (; DLI != DLE &&
1046 (*DLI)->getOrder() >= LastOrder && (*DLI)->getOrder() < Order;
1052 BB->insert(BBBegin, DbgMI);
1057 MI->getParent()->insert(Pos, DbgMI);
1068 InsertPos =
Emitter.getInsertPos();
1074 if (FirstTerm != InsertBB->
end()) {
1075 assert(!FirstTerm->isDebugValue() &&
1076 "first terminator cannot be a debug value");
1080 if (&
MI == InsertPos)
1083 if (!
MI.isDebugValue())
1088 MI.getOperand(0).ChangeToRegister(0,
false);
1089 MI.moveBefore(&*FirstTerm);
1097 return "sunit-dag." +
BB->getFullName();
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static msgpack::DocNode getNode(msgpack::DocNode DN, msgpack::Type Type, MCValue Val)
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
dxil DXContainer Global Emitter
This file defines the DenseMap class.
const HexagonInstrInfo * TII
const size_t AbstractManglingParser< Derived, Alloc >::NumOps
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
Register const TargetRegisterInfo * TRI
Promote Memory to Register
This file provides utility for Memory Model Relaxation Annotations (MMRAs).
MachineInstr unsigned OpIdx
uint64_t IntrinsicInst * II
static void ProcessSourceNode(SDNode *N, SelectionDAG *DAG, InstrEmitter &Emitter, InstrEmitter::VRBaseMapType &VRBaseMap, SmallVectorImpl< std::pair< unsigned, MachineInstr * > > &Orders, SmallSet< Register, 8 > &Seen, MachineInstr *NewInsn)
static bool AddGlue(SDNode *N, SDValue Glue, bool AddGlue, SelectionDAG *DAG)
static void RemoveUnusedGlue(SDNode *N, SelectionDAG *DAG)
static cl::opt< int > HighLatencyCycles("sched-high-latency-cycles", cl::Hidden, cl::init(10), cl::desc("Roughly estimate the number of cycles that 'long latency' " "instructions take for targets with no itinerary"))
static void CheckForPhysRegDependency(SDNode *Def, SDNode *User, unsigned Op, const TargetRegisterInfo *TRI, const TargetInstrInfo *TII, MCRegister &PhysReg, int &Cost)
CheckForPhysRegDependency - Check if the dependency between def and use of a specified operand is a p...
static void ProcessSDDbgValues(SDNode *N, SelectionDAG *DAG, InstrEmitter &Emitter, SmallVectorImpl< std::pair< unsigned, MachineInstr * > > &Orders, InstrEmitter::VRBaseMapType &VRBaseMap, unsigned Order)
ProcessSDDbgValues - Process SDDbgValues associated with this node.
static void CloneNodeWithValues(SDNode *N, SelectionDAG *DAG, ArrayRef< EVT > VTs, SDValue ExtraOper=SDValue())
This file defines the SmallPtrSet class.
This file defines the SmallSet class.
This file defines the SmallVector class.
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
This file describes how to lower LLVM code to machine code.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
iterator find(const_arg_type_t< KeyT > Val)
size_type count(const_arg_type_t< KeyT > Val) const
Return 1 if the specified key is in the map, 0 otherwise.
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
SmallDenseMap< SDValue, Register, 16 > VRBaseMapType
static unsigned CountResults(SDNode *Node)
CountResults - The results of target nodes have register or immediate operands first,...
Describe properties that are true of each instruction in the target description file.
unsigned getNumOperands() const
Return the number of declared MachineOperands for this MachineInstruction.
bool mayLoad() const
Return true if this instruction could possibly read memory.
int getOperandConstraint(unsigned OpNum, MCOI::OperandConstraint Constraint) const
Returns the value of the specified operand constraint if it is present.
bool isCommutable() const
Return true if this may be a 2- or 3-address instruction (of the form "X = op Y, Z,...
Wrapper class representing physical registers. Should be passed by value.
LLVM_ABI instr_iterator insert(instr_iterator I, MachineInstr *M)
Insert MI into the instruction list before I, possibly inside a bundle.
LLVM_ABI iterator getFirstTerminator()
Returns an iterator to the first terminator instruction of this basic block.
MachineInstrBundleIterator< MachineInstr > iterator
BasicBlockListType::iterator iterator
const MachineInstrBuilder & addReg(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a new virtual register operand.
Representation of each machine instruction.
An SDNode that represents everything that will be needed to construct a MachineInstr.
mmo_iterator memoperands_begin() const
mmo_iterator memoperands_end() const
Wrapper class representing virtual and physical registers.
SmallVectorImpl< SDDbgLabel * >::iterator DbgLabelIterator
SmallVectorImpl< SDDbgValue * >::iterator DbgIterator
Holds the information for a single machine location through SDISel; either an SDNode,...
@ SDNODE
Value is the result of an expression.
Holds the information from a dbg_value node through SDISel.
Represents one node in the SelectionDAG.
bool isMachineOpcode() const
Test if this node has a post-isel opcode, directly corresponding to a MachineInstr opcode.
int getNodeId() const
Return the unique node id.
LLVM_ABI void dump() const
Dump this node, for debugging.
unsigned getOpcode() const
Return the SelectionDAG opcode value for this node.
iterator_range< value_op_iterator > op_values() const
unsigned getNumValues() const
Return the number of values defined/returned by this operator.
unsigned getMachineOpcode() const
This may only be called if isMachineOpcode returns true.
static user_iterator user_end()
user_iterator user_begin() const
Provide iteration support to walk over all users of an SDNode.
SDNode * getGluedNode() const
If this node has a glue operand, return the node to which the glue operand points.
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
unsigned getResNo() const
get the index which selects a specific result in the SDNode
Kind getKind() const
Returns an enum value representing the kind of the dependence.
@ Data
Regular data dependence (aka true-dependence).
void setLatency(unsigned Lat)
Sets the latency for this edge.
@ Barrier
An unknown scheduling barrier.
bool isCtrl() const
Shorthand for getKind() != SDep::Data.
Register getReg() const
Returns the register associated with this edge.
Scheduling unit. This is a node in the scheduling DAG.
bool isCloned
True if this node has been cloned.
bool isCall
Is a function call.
void setNode(SDNode *N)
Assigns the representative SDNode for this SUnit.
unsigned NodeNum
Entry # of node in the node vector.
bool hasPhysRegClobbers
Has any physreg defs, used or not.
bool isCallOp
Is a function call operand.
const TargetRegisterClass * CopyDstRC
Is a special copy node if != nullptr.
unsigned short Latency
Node latency.
unsigned short NumRegDefsLeft
bool isScheduleHigh
True if preferable to schedule high.
bool isScheduleLow
True if preferable to schedule low.
bool hasPhysRegDefs
Has physreg defs that are being used.
SmallVector< SDep, 4 > Succs
All sunit successors.
Sched::Preference SchedulingPref
Scheduling preference.
SDNode * getNode() const
Returns the representative SDNode for this SUnit.
bool isTwoAddress
Is a two-address instruction.
bool isCommutable
Is a commutable instruction.
bool isVRegCycle
May use and def the same vreg.
SmallVector< SDep, 4 > Preds
All sunit predecessors.
SUnit * OrigNode
If not this, the node from which this node was cloned.
LLVM_ABI bool addPred(const SDep &D, bool Required=true)
Adds the specified edge as a pred of the current node if not already.
RegDefIter - In place iteration over the values defined by an SUnit.
RegDefIter(const SUnit *SU, const ScheduleDAGSDNodes *SD)
SUnit * newSUnit(SDNode *N)
NewSUnit - Creates a new SUnit and return a ptr to it.
void VerifyScheduledSequence(bool isBottomUp)
VerifyScheduledSequence - Verify that all SUnits are scheduled and consistent with the Sequence of sc...
virtual void Schedule()=0
Schedule - Order nodes according to selected style, filling in the Sequence member.
virtual void computeLatency(SUnit *SU)
computeLatency - Compute node latency.
std::string getDAGName() const override
Return the basic block label.
virtual MachineBasicBlock * EmitSchedule(MachineBasicBlock::iterator &InsertPos)
EmitSchedule - Insert MachineInstrs into the MachineBasicBlock according to the order specified in Se...
virtual bool forceUnitLatencies() const
ForceUnitLatencies - Return true if all scheduling edges should be given a latency value of one.
static bool isPassiveNode(SDNode *Node)
isPassiveNode - Return true if the node is a non-scheduled leaf.
const InstrItineraryData * InstrItins
void InitNumRegDefsLeft(SUnit *SU)
InitNumRegDefsLeft - Determine the # of regs defined by this node.
std::vector< SUnit * > Sequence
The schedule. Null SUnit*'s represent noop instructions.
void Run(SelectionDAG *dag, MachineBasicBlock *bb)
Run - perform scheduling.
void BuildSchedGraph()
BuildSchedGraph - Build the SUnit graph from the selection dag that we are input.
void dump() const override
void dumpNode(const SUnit &SU) const override
SUnit * Clone(SUnit *Old)
Clone - Creates a clone of the specified SUnit.
ScheduleDAGSDNodes(MachineFunction &mf)
void dumpSchedule() const
virtual void computeOperandLatency(SDNode *Def, SDNode *Use, unsigned OpIdx, SDep &dep) const
MachineRegisterInfo & MRI
Virtual/real register map.
void clearDAG()
Clears the DAG state (between regions).
const TargetInstrInfo * TII
Target instruction information.
std::vector< SUnit > SUnits
The scheduling units.
const TargetRegisterInfo * TRI
Target processor register info.
SUnit EntrySU
Special node for the region entry.
MachineFunction & MF
Machine function.
ScheduleDAG(const ScheduleDAG &)=delete
void dumpNodeAll(const SUnit &SU) const
unsigned VerifyScheduledDAG(bool isBottomUp)
Verifies that all SUnits were scheduled and that their state is consistent.
void dumpNodeName(const SUnit &SU) const
SUnit ExitSU
Special node for the region exit.
This is used to represent a portion of an LLVM function in a low-level Data Dependence DAG representa...
LLVM_ABI SDVTList getVTList(EVT VT)
Return an SDVTList that represents the list of values specified.
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.
LLVM_ABI void setNodeMemRefs(MachineSDNode *N, ArrayRef< MachineMemOperand * > NewMemRefs)
Mutate the specified machine node's memory references to the provided list.
ArrayRef< SDDbgValue * > GetDbgValues(const SDNode *SD) const
Get the debug values which reference the given SDNode.
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
SmallSet - This maintains a set of unique values, optimizing for the case when the set is small (less...
size_type count(const T &V) const
count - Return 1 if the element is in the set, 0 otherwise.
std::pair< const_iterator, bool > insert(const T &V)
insert - Insert an element into the set if it isn't already there.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void assign(size_type NumElts, ValueParamT Elt)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
TargetInstrInfo - Interface to description of machine instruction set.
Sched::Preference getSchedulingPreference() const
Return target scheduling preference.
This class defines information used to lower LLVM code to legal SelectionDAG operators that the targe...
uint8_t getCopyCost() const
Return the cost of copying a value between two registers in this class.
bool expensiveOrImpossibleToCopy() const
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
A Use represents the edge between a Value definition and its users.
Value * getOperand(unsigned i) const
@ CopyFromReg
CopyFromReg - This node indicates that the input value is a virtual or physical register that is defi...
@ CopyToReg
CopyToReg - This node has three operands: a chain, a register number to set to this value,...
@ TokenFactor
TokenFactor - This node takes multiple tokens as input and produces a single token result.
initializer< Ty > init(const Ty &Val)
@ User
could "use" a pointer
NodeAddr< NodeBase * > Node
This is an optimization pass for GlobalISel generic memory operations.
void stable_sort(R &&Range)
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
void sort(IteratorTy Start, IteratorTy End)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
FunctionAddr VTableAddr uintptr_t uintptr_t Data
auto count(R &&Range, const E &Element)
Wrapper function around std::count to count the number of times an element Element occurs in the give...
DWARFExpression::Operation Op
ArrayRef(const T &OneElt) -> ArrayRef< T >
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
This represents a list of ValueType's that has been intern'd by a SelectionDAG.
Function object to check whether the first component of a container supported by std::get (like std::...