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))
130 }
else if (Def->isMachineOpcode()) {
132 if (ResNo >=
II.getNumDefs() &&
II.hasImplicitDefOfPhysReg(
Reg))
138 TRI->getMinimalPhysRegClass(
Reg, Def->getSimpleValueType(ResNo));
147 if (ExtraOper.getNode())
148 Ops.push_back(ExtraOper);
169 if (GlueDestNode ==
N)
return false;
173 N->getOperand(
N->getNumOperands()-1).getValueType() == MVT::Glue) {
177 if (
N->getValueType(
N->getNumValues() - 1) == MVT::Glue)
return false;
191 assert((
N->getValueType(
N->getNumValues() - 1) == MVT::Glue &&
192 !
N->hasAnyUseOfValue(
N->getNumValues() - 1)) &&
193 "expected an unused glue value");
196 ArrayRef(
N->value_begin(),
N->getNumValues() - 1));
204void ScheduleDAGSDNodes::ClusterNeighboringLoads(
SDNode *Node) {
207 if (
Node->getOperand(
NumOps-1).getValueType() == MVT::Other)
215 auto hasTiedInput = [
this](
const SDNode *
N) {
216 const MCInstrDesc &MCID =
TII->get(
N->getMachineOpcode());
227 SmallPtrSet<SDNode*, 16> Visited;
229 DenseMap<long long, SDNode*> O2SMap;
233 if (hasTiedInput(
Base))
238 unsigned UseCount = 0;
240 I !=
E && UseCount < 100; ++
I, ++UseCount) {
241 if (
I.getUse().getResNo() != Chain.
getResNo())
245 if (User == Node || !Visited.
insert(User).second)
247 int64_t Offset1, Offset2;
248 if (!
TII->areLoadsFromSameBasePtr(
Base, User, Offset1, Offset2) ||
249 Offset1 == Offset2 ||
250 hasTiedInput(User)) {
255 if (O2SMap.
insert(std::make_pair(Offset1,
Base)).second)
257 O2SMap.
insert(std::make_pair(Offset2, User));
259 if (Offset2 < Offset1)
274 unsigned NumLoads = 0;
276 SDNode *BaseLoad = O2SMap[BaseOff];
278 for (
unsigned i = 1, e =
Offsets.size(); i != e; ++i) {
281 if (!
TII->shouldScheduleLoadsNear(BaseLoad, Load, BaseOff,
Offset,NumLoads))
292 SDNode *Lead = Loads[0];
296 for (
unsigned I = 1,
E = Loads.
size();
I !=
E; ++
I) {
297 bool OutGlue =
I <
E - 1;
298 SDNode *
Load = Loads[
I];
308 else if (!OutGlue && InGlue.
getNode())
315void ScheduleDAGSDNodes::ClusterNodes() {
316 for (SDNode &NI :
DAG->allnodes()) {
318 if (!Node || !
Node->isMachineOpcode())
321 unsigned Opc =
Node->getMachineOpcode();
322 const MCInstrDesc &MCID =
TII->get(
Opc);
325 ClusterNeighboringLoads(Node);
329void ScheduleDAGSDNodes::BuildSchedUnits() {
333 unsigned NumNodes = 0;
334 for (SDNode &NI :
DAG->allnodes()) {
344 SUnits.reserve(NumNodes * 2);
348 SmallPtrSet<SDNode*, 32> Visited;
350 Visited.
insert(
DAG->getRoot().getNode());
353 while (!Worklist.
empty()) {
358 if (Visited.
insert(
Op.getNode()).second)
375 while (
N->getNumOperands() &&
376 N->getOperand(
N->getNumOperands()-1).getValueType() == MVT::Glue) {
377 N =
N->getOperand(
N->getNumOperands()-1).getNode();
378 assert(
N->getNodeId() == -1 &&
"Node already inserted!");
380 if (
N->isMachineOpcode() &&
TII->get(
N->getMachineOpcode()).isCall())
386 while (
N->getValueType(
N->getNumValues()-1) == MVT::Glue) {
390 bool HasGlueUse =
false;
391 for (SDNode *U :
N->users())
392 if (GlueVal.isOperandOf(U)) {
394 assert(
N->getNodeId() == -1 &&
"Node already inserted!");
397 if (
N->isMachineOpcode() &&
TII->get(
N->getMachineOpcode()).isCall())
401 if (!HasGlueUse)
break;
417 assert(
N->getNodeId() == -1 &&
"Node already inserted!");
428 while (!CallSUnits.
empty()) {
430 for (
const SDNode *SUNode = SU->
getNode(); SUNode;
434 SDNode *SrcN = SUNode->getOperand(2).getNode();
442void ScheduleDAGSDNodes::AddSchedEdges() {
443 const TargetSubtargetInfo &
ST =
MF.getSubtarget();
449 for (SUnit &SU :
SUnits) {
450 SDNode *MainNode = SU.
getNode();
454 const MCInstrDesc &MCID =
TII->get(
Opc);
467 if (
N->isMachineOpcode() &&
468 !
TII->get(
N->getMachineOpcode()).implicit_defs().empty()) {
471 while (NumUsed != 0 && !
N->hasAnyUseOfValue(NumUsed - 1))
473 if (NumUsed >
TII->get(
N->getMachineOpcode()).getNumDefs())
477 for (
unsigned i = 0, e =
N->getNumOperands(); i != e; ++i) {
478 SDNode *OpN =
N->getOperand(i).getNode();
479 unsigned DefIdx =
N->getOperand(i).getResNo();
482 assert(OpSU &&
"Node has no SUnit!");
486 EVT OpVT =
N->getOperand(i).getValueType();
487 assert(OpVT != MVT::Glue &&
"Glued nodes should be in same sunit!");
488 bool isChain = OpVT == MVT::Other;
493 const TargetLowering &TLI =
DAG->getTargetLoweringInfo();
495 assert((!PhysReg || !isChain) &&
"Chain dependence via physreg data?");
502 PhysReg = MCRegister();
505 unsigned OpLatency = isChain ? 1 : OpSU->
Latency;
511 : SDep(OpSU, SDep::
Data, PhysReg);
513 if (!isChain && !UnitLatencies) {
515 ST.adjustSchedDependency(OpSU, DefIdx, &SU, i, Dep,
nullptr);
527 --OpSU->NumRegDefsLeft;
548void ScheduleDAGSDNodes::RegDefIter::InitNodeNumDefs() {
553 if (!
Node->isMachineOpcode()) {
560 unsigned POpc =
Node->getMachineOpcode();
561 if (POpc == TargetOpcode::IMPLICIT_DEF) {
566 if (POpc == TargetOpcode::PATCHPOINT &&
567 Node->getValueType(0) == MVT::Other) {
574 unsigned NRegDefs = SchedDAG->TII->get(Node->getMachineOpcode()).getNumDefs();
577 NodeNumDefs = std::min(Node->getNumValues(), NRegDefs);
584 : SchedDAG(SD), Node(SU->
getNode()) {
592 for (;DefIdx < NodeNumDefs; ++DefIdx) {
593 if (!Node->hasAnyUseOfValue(DefIdx))
595 ValueType = Node->getSimpleValueType(DefIdx);
599 Node = Node->getGluedNode();
633 if (
N &&
N->isMachineOpcode() &&
634 TII->isHighLatencyDef(
N->getMachineOpcode()))
645 if (
N->isMachineOpcode())
658 unsigned DefIdx =
Use->getOperand(
OpIdx).getResNo();
659 if (
Use->isMachineOpcode())
661 OpIdx +=
TII->get(
Use->getMachineOpcode()).getNumDefs();
662 std::optional<unsigned>
Latency =
678#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
683 dbgs() <<
"PHYS REG COPY\n";
692 while (!GluedNodes.
empty()) {
702#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
703 if (
EntrySU.getNode() !=
nullptr)
707 if (
ExitSU.getNode() !=
nullptr)
712#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
718 dbgs() <<
"**** NOOP ****\n";
731 "The number of nodes scheduled doesn't match the expected number!");
740 if (!
N->getHasDebugValue())
745 auto HasUnknownVReg = [&VRBaseMap](
SDDbgValue *DV) {
748 VRBaseMap.
count({L.getSDNode(), L.getResNo()}) == 0)
761 unsigned DVOrder = DV->getOrder();
762 if (Order != 0 && DVOrder != Order)
769 if (!DV->isInvalidated() && HasUnknownVReg(DV))
774 Orders.push_back({DVOrder, DbgMI});
787 unsigned Order =
N->getIROrder();
788 if (!Order || Seen.
count(Order)) {
801 Orders.push_back({Order, NewInsn});
809void ScheduleDAGSDNodes::
810EmitPhysRegCopy(SUnit *SU, SmallDenseMap<SUnit *, Register, 16> &VRBaseMap,
812 for (
const SDep &Pred : SU->
Preds) {
819 assert(VRI != VRBaseMap.
end() &&
"Node emitted out of order - late");
822 for (
const SDep &Succ : SU->
Succs) {
836 bool isNew = VRBaseMap.
insert(std::make_pair(SU, VRBase)).second;
838 assert(isNew &&
"Node emitted out of order - early");
857 bool HasDbg =
DAG->hasDebugValues();
862 [&](
SDNode *
Node,
bool IsClone,
bool IsCloned,
866 if (
I ==
BB->begin())
869 return std::prev(
Emitter.getInsertPos());
873 Emitter.EmitNode(
Node, IsClone, IsCloned, VRBaseMap);
881 if (Before ==
BB->end()) {
887 MI = &*std::next(Before);
890 if (
MI->isCandidateForAdditionalCallInfo()) {
891 if (
DAG->getTarget().Options.EmitCallSiteInfo ||
892 DAG->getTarget().Options.EmitCallGraphSection)
893 MF.addCallSiteInfo(
MI,
DAG->getCallSiteInfo(
Node));
895 if (
auto CalledGlobal =
DAG->getCalledGlobal(
Node))
896 if (CalledGlobal->Callee)
897 MF.addCalledGlobal(
MI, *CalledGlobal);
900 if (
DAG->getNoMergeSiteInfo(
Node)) {
905 MI->setPCSections(
MF, MD);
910 End = std::next(After);
912 It->setMMRAMetadata(
MF, MMRA);
922 for (; PDI != PDE; ++PDI) {
925 BB->insert(InsertPos, DbgMI);
928 (*PDI)->clearIsEmitted();
936 TII->insertNoop(*
Emitter.getBlock(), InsertPos);
944 EmitPhysRegCopy(SU, CopyVRBaseMap, InsertPos);
951 while (!GluedNodes.
empty()) {
959 if (NewInsn && NewInsn->isCall())
960 NewInsn->setHeapAllocMarker(
MF, MD);
972 if (NewInsn && NewInsn->isCall())
973 NewInsn->setHeapAllocMarker(
MF, MD);
986 std::stable_sort(
DAG->DbgBegin(),
DAG->DbgEnd(),
988 return LHS->getOrder() < RHS->getOrder();
994 unsigned LastOrder = 0;
995 for (
unsigned i = 0, e = Orders.
size(); i != e && DI != DE; ++i) {
996 unsigned Order = Orders[i].first;
1000 for (; DI != DE; ++DI) {
1001 if ((*DI)->getOrder() < LastOrder || (*DI)->getOrder() >= Order)
1003 if ((*DI)->isEmitted())
1010 BB->insert(BBBegin, DbgMI);
1015 MI->getParent()->insert(Pos, DbgMI);
1024 for (; DI != DE; ++DI) {
1025 if ((*DI)->isEmitted())
1027 assert((*DI)->getOrder() >= LastOrder &&
1028 "emitting DBG_VALUE out of order");
1041 for (
const auto &InstrOrder : Orders) {
1042 unsigned Order = InstrOrder.first;
1048 for (; DLI != DLE &&
1049 (*DLI)->getOrder() >= LastOrder && (*DLI)->getOrder() < Order;
1055 BB->insert(BBBegin, DbgMI);
1060 MI->getParent()->insert(Pos, DbgMI);
1071 InsertPos =
Emitter.getInsertPos();
1077 if (FirstTerm != InsertBB->
end()) {
1078 assert(!FirstTerm->isDebugValue() &&
1079 "first terminator cannot be a debug value");
1083 if (&
MI == InsertPos)
1086 if (!
MI.isDebugValue())
1091 MI.getOperand(0).ChangeToRegister(0,
false);
1092 MI.moveBefore(&*FirstTerm);
1100 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 void CheckForPhysRegDependency(SDNode *Def, SDNode *User, unsigned Op, const TargetRegisterInfo *TRI, const TargetInstrInfo *TII, const TargetLowering &TLI, MCRegister &PhysReg, int &Cost)
CheckForPhysRegDependency - Check if the dependency between def and use of a specified operand is a p...
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 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.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
iterator find(const_arg_type_t< KeyT > Val)
DenseMapIterator< KeyT, ValueT, KeyInfoT, BucketT > iterator
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, unsigned flags=0, 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...
virtual bool checkForPhysRegDependency(SDNode *Def, SDNode *User, unsigned Op, const TargetRegisterInfo *TRI, const TargetInstrInfo *TII, MCRegister &PhysReg, int &Cost) const
Allows the target to handle physreg-carried dependency in target-specific way.
int getCopyCost() const
Return the cost of copying a value between two registers in this class.
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::...