32#include "llvm/Config/llvm-config.h"
51#define DEBUG_TYPE "regbankselect"
59 std::numeric_limits<unsigned>::max();
64 "Run the Fast mode (default mapping)"),
66 "Use the Greedy mode (best local mapping)")));
71 "Assign register bank of generic virtual registers",
77 "Assign register bank of generic virtual registers",
false,
83 OptMode = RegBankSelectMode;
84 if (RegBankSelectMode != RunningMode)
85 LLVM_DEBUG(dbgs() <<
"RegBankSelect mode overrided by command line\n");
91 assert(
RBI &&
"Cannot work without RegisterBankInfo");
102 MORE = std::make_unique<MachineOptimizationRemarkEmitter>(MF,
MBFI);
119 bool &OnlyAssign)
const {
131 OnlyAssign = CurRegBank ==
nullptr;
133 if (CurRegBank)
dbgs() << *CurRegBank;
else dbgs() <<
"none";
134 dbgs() <<
" against ";
135 assert(DesiredRegBank &&
"The mapping must be valid");
136 dbgs() << *DesiredRegBank <<
'\n';);
137 return CurRegBank == DesiredRegBank;
146 "need new vreg for each breakdown");
149 assert(!NewVRegs.empty() &&
"We should not have to repair");
164 "We are about to create several defs for Dst");
186 MergeOp = TargetOpcode::G_BUILD_VECTOR;
193 "don't understand this value breakdown");
195 MergeOp = TargetOpcode::G_CONCAT_VECTORS;
198 MergeOp = TargetOpcode::G_MERGE_VALUES;
205 MergeBuilder.addUse(SrcReg);
210 MIRBuilder.buildInstrNoInsert(TargetOpcode::G_UNMERGE_VALUES);
212 UnMergeBuilder.
addDef(DefReg);
225 std::unique_ptr<MachineInstr *[]> NewInstrs(
229 for (
const std::unique_ptr<InsertPoint> &InsertPt : RepairPt) {
235 InsertPt->insert(*CurMI);
236 NewInstrs[Idx++] = CurMI;
247 assert(MO.
isReg() &&
"We should only repair register operand");
267 return RBI->getBreakDownCost(ValMapping, CurRegBank);
269 if (IsSameNumOfValues) {
286 unsigned Cost =
RBI->copyCost(*DesiredRegBank, *CurRegBank,
299 "Do not know how to map this instruction");
308 if (CurCost <
Cost) {
311 BestMapping = CurMapping;
317 if (!BestMapping &&
MI.getMF()->getTarget().Options.GlobalISelAbort !=
322 BestMapping = *PossibleMappings.
begin();
326 assert(BestMapping &&
"No suitable mapping for instruction");
334 assert(RepairPt.
hasSplit() &&
"We should not have to adjust for split");
337 assert((
MI.isPHI() ||
MI.isTerminator()) &&
"Why do we split?");
340 "Repairing placement does not match operand");
346 assert((!
MI.isPHI() || !MO.
isDef()) &&
"Need split for phi def?");
350 if (
MI.isTerminator()) {
351 assert(&
MI != &(*
MI.getParent()->getFirstTerminator()) &&
352 "Need to split for the first terminator?!");
374 "This code is for the def of a terminator");
409 if (Reg.isPhysical()) {
421 assert(&
MI == &(*
MI.getParent()->getFirstTerminator()) &&
422 "Do not know which outgoing edges are relevant");
425 "Do not know where each terminator ends up");
431 "Need to split between terminators");
440 assert(
false &&
"Repairing cost may not be accurate");
454 assert((
MBFI || !BestCost) &&
"Costs comparison require MBFI");
462 bool Saturated =
Cost.addLocalCost(InstrMapping.
getCost());
463 assert(!Saturated &&
"Possible mapping saturated the cost");
467 if (BestCost &&
Cost > *BestCost) {
468 LLVM_DEBUG(
dbgs() <<
"Mapping is too expensive from the start\n");
485 LLT Ty =
MRI.getType(Reg);
491 InstrMapping.getOperandMapping(
OpIdx);
524 if (!BestCost || Saturated)
529 assert(
MBFI &&
MBPI &&
"Cost computation requires MBFI and MBPI");
548 const uint64_t PercentageForBias = 5;
549 uint64_t Bias = (RepairCost * PercentageForBias + 99) / 100;
554 assert(((RepairCost < RepairCost * PercentageForBias) &&
555 (RepairCost * PercentageForBias <
556 RepairCost * PercentageForBias + 99)) &&
557 "Repairing involves more than a billion of instructions?!");
558 for (
const std::unique_ptr<InsertPoint> &InsertPt : RepairPt) {
559 assert(InsertPt->canMaterialize() &&
"We should not have made it here");
561 if (!InsertPt->isSplit())
562 Saturated =
Cost.addLocalCost(RepairCost);
564 uint64_t CostForInsertPt = RepairCost;
567 assert(CostForInsertPt + Bias > CostForInsertPt &&
568 "Repairing + split bias overflows");
569 CostForInsertPt += Bias;
570 uint64_t PtCost = InsertPt->frequency(*
this) * CostForInsertPt;
572 if ((Saturated = PtCost < CostForInsertPt))
575 Saturated =
Cost.addNonLocalCost(PtCost);
580 if (BestCost &&
Cost > *BestCost) {
581 LLVM_DEBUG(
dbgs() <<
"Mapping is too expensive, stop processing\n");
599 std::optional<RegisterBankInfo::OperandsMapper> OpdMapper;
603 if (!RepairPt.canMaterialize() ||
607 "This should not make its way in the list");
608 unsigned OpIdx = RepairPt.getOpIdx();
611 InstrMapping.getOperandMapping(
OpIdx);
614 switch (RepairPt.getKind()) {
617 "Reassignment should only be for simple mapping");
622 if (
MI.isDebugInstr())
625 OpdMapper.emplace(
MI, InstrMapping, *
MRI);
626 OpdMapper->createVRegs(
OpIdx);
627 if (!
repairReg(MO, ValMapping, RepairPt, OpdMapper->getVRegs(
OpIdx)))
640 OpdMapper.emplace(
MI, InstrMapping, *
MRI);
642 LLVM_DEBUG(
dbgs() <<
"Actual mapping of the operands: " << *OpdMapper
652 unsigned Opc =
MI.getOpcode();
654 assert((
Opc == TargetOpcode::G_ASSERT_ZEXT ||
655 Opc == TargetOpcode::G_ASSERT_SEXT ||
656 Opc == TargetOpcode::G_ASSERT_ALIGN) &&
657 "Unexpected hint opcode!");
661 RBI->getRegBank(
MI.getOperand(1).getReg(), *
MRI, *
TRI);
664 assert(RB &&
"Expected source register to have a register bank?");
665 LLVM_DEBUG(
dbgs() <<
"... Hint always uses source's register bank.\n");
666 MRI->setRegBank(
MI.getOperand(0).getReg(), *RB);
675 BestMapping = &
RBI->getInstrMapping(
MI);
682 RBI->getInstrPossibleMappings(
MI);
683 if (PossibleMappings.
empty())
709 while (!WorkList.
empty()) {
719 if (
MI.isInlineAsm())
723 if (
MI.isImplicitDef())
728 "unable to map instruction",
MI);
742 "instruction is not legal", *
MI);
780 : Kind(Kind), OpIdx(OpIdx),
783 assert(MO.
isReg() &&
"Trying to repair a non-reg operand");
789 bool Before = !MO.
isDef();
792 if (!
MI.isPHI() && !
MI.isTerminator()) {
805 if (It !=
MI.getParent()->end())
817 for (
auto Begin = Pred.begin(); It != Begin && It->isTerminator(); --It)
818 if (It->modifiesRegister(Reg, &
TRI)) {
829 if (It == Pred.end())
840 auto REnd =
MI.getParent()->rend();
842 for (; It != REnd && It->isTerminator(); ++It) {
844 "copy insertion in middle of terminators not handled");
862 "Do not know where to split");
865 for (
auto &Succ : Src.successors())
889 InsertPoints.emplace_back(&Point);
894 : Instr(Instr), Before(Before) {
897 assert((!Before || !Instr.isPHI()) &&
898 "Splitting before phis requires more points");
899 assert((!Before || !Instr.getNextNode() || !Instr.getNextNode()->isPHI()) &&
900 "Splitting between phis does not make sense");
928 return Instr.isTerminator();
931 return Instr.getPrevNode() && Instr.getPrevNode()->isTerminator();
957 assert(Src.isSuccessor(DstOrSplit) && DstOrSplit->isPredecessor(&Src) &&
958 "This point has already been split");
960 assert(NewBB &&
"Invalid call to materialize");
972 return MBFI->getBlockFreq(DstOrSplit).getFrequency();
977 MBPIWrapper ? &MBPIWrapper->getMBPI() :
nullptr;
981 return (
MBFI->getBlockFreq(&Src) *
MBPI->getEdgeProbability(&Src, DstOrSplit))
989 assert(Src.succ_size() > 1 && DstOrSplit->pred_size() > 1 &&
990 "Edge is not critical");
991 return Src.canSplitCriticalEdge(DstOrSplit);
995 : LocalFreq(LocalFreq.getFrequency()) {}
999 if (LocalCost +
Cost < LocalCost) {
1004 return isSaturated();
1009 if (NonLocalCost +
Cost < NonLocalCost) {
1013 NonLocalCost +=
Cost;
1014 return isSaturated();
1017bool RegBankSelect::MappingCost::isSaturated()
const {
1041 if (isSaturated() ||
Cost.isSaturated())
1042 return isSaturated() <
Cost.isSaturated();
1055 if (NonLocalCost ==
Cost.NonLocalCost)
1058 return LocalCost <
Cost.LocalCost;
1062 ThisLocalAdjust = 0;
1063 OtherLocalAdjust = 0;
1064 if (LocalCost <
Cost.LocalCost)
1065 OtherLocalAdjust =
Cost.LocalCost - LocalCost;
1067 ThisLocalAdjust = LocalCost -
Cost.LocalCost;
1069 ThisLocalAdjust = LocalCost;
1070 OtherLocalAdjust =
Cost.LocalCost;
1076 if (NonLocalCost <
Cost.NonLocalCost)
1077 OtherNonLocalAdjust =
Cost.NonLocalCost - NonLocalCost;
1079 ThisNonLocalAdjust = NonLocalCost -
Cost.NonLocalCost;
1081 uint64_t ThisScaledCost = ThisLocalAdjust * LocalFreq;
1083 bool ThisOverflows = ThisLocalAdjust && (ThisScaledCost < ThisLocalAdjust ||
1084 ThisScaledCost < LocalFreq);
1085 uint64_t OtherScaledCost = OtherLocalAdjust *
Cost.LocalFreq;
1087 bool OtherOverflows =
1089 (OtherScaledCost < OtherLocalAdjust || OtherScaledCost <
Cost.LocalFreq);
1091 ThisOverflows |= ThisNonLocalAdjust &&
1092 ThisScaledCost + ThisNonLocalAdjust < ThisNonLocalAdjust;
1093 ThisScaledCost += ThisNonLocalAdjust;
1094 OtherOverflows |= OtherNonLocalAdjust &&
1095 OtherScaledCost + OtherNonLocalAdjust < OtherNonLocalAdjust;
1096 OtherScaledCost += OtherNonLocalAdjust;
1099 if (ThisOverflows && OtherOverflows)
1102 if (ThisOverflows || OtherOverflows)
1103 return ThisOverflows < OtherOverflows;
1105 return ThisScaledCost < OtherScaledCost;
1109 return LocalCost ==
Cost.LocalCost && NonLocalCost ==
Cost.NonLocalCost &&
1110 LocalFreq ==
Cost.LocalFreq;
1113#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1125 if (isSaturated()) {
1129 OS << LocalFreq <<
" * " << LocalCost <<
" + " << NonLocalCost;
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
#define clEnumValN(ENUMVAL, FLAGNAME, DESC)
#define LLVM_DUMP_METHOD
Mark debug helper function definitions like dump() that should not be stripped from debug builds.
#define LLVM_LIKELY(EXPR)
Interface for Targets to specify which operations they can successfully select and how the others sho...
MachineInstr unsigned OpIdx
#define INITIALIZE_PASS_DEPENDENCY(depName)
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
This file builds on the ADT/GraphTraits.h file to build a generic graph post order iterator.
static cl::opt< RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode > Mode("regalloc-enable-advisor", cl::Hidden, cl::init(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default), cl::desc("Enable regalloc advisor mode"), cl::values(clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default, "default", "Default"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Release, "release", "precompiled"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Development, "development", "for training")))
static constexpr unsigned ImpossibleRepairCost
Cost value representing an impossible or invalid repairing.
static cl::opt< RegBankSelect::Mode > RegBankSelectMode(cl::desc("Mode of the RegBankSelect pass"), cl::Hidden, cl::Optional, cl::values(clEnumValN(RegBankSelect::Mode::Fast, "regbankselect-fast", "Run the Fast mode (default mapping)"), clEnumValN(RegBankSelect::Mode::Greedy, "regbankselect-greedy", "Use the Greedy mode (best local mapping)")))
This file describes the interface of the MachineFunctionPass responsible for assigning the generic vi...
This file defines the SmallVector class.
Target-Independent Code Generator Pass Configuration Options pass.
Represent the analysis usage information of a pass.
AnalysisUsage & addRequired()
uint64_t getFrequency() const
Returns the frequency as a fixpoint number scaled by the entry frequency.
constexpr unsigned getScalarSizeInBits() const
constexpr uint16_t getNumElements() const
Returns the number of elements in a vector LLT.
constexpr bool isVector() const
constexpr TypeSize getSizeInBits() const
Returns the total size of the type. Must only be called on sized types.
const MachineBlockFrequencyInfo & getMBFI() const
MachineBasicBlock * SplitCriticalEdge(MachineBasicBlock *Succ, Pass &P, std::vector< SparseBitVector<> > *LiveInSets=nullptr, MachineDomTreeUpdater *MDTU=nullptr)
MachineInstrBundleIterator< MachineInstr, true > reverse_iterator
MachineInstrBundleIterator< MachineInstr > iterator
LLVM_ABI BlockFrequency getBlockFreq(const MachineBasicBlock *MBB) const
getblockFreq - Return block frequency.
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
StringRef getName() const
getName - Return the name of the corresponding LLVM function.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Function & getFunction()
Return the LLVM function that this machine code represents.
const MachineFunctionProperties & getProperties() const
Get the function properties.
const MachineInstrBuilder & addUse(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a virtual register use operand.
const MachineInstrBuilder & addDef(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a virtual register definition operand.
Representation of each machine instruction.
MachineOperand class - Representation of each machine instruction operand.
bool isReg() const
isReg - Tests if this is a MO_Register operand.
MachineInstr * getParent()
getParent - Return the instruction that this operand belongs to.
Register getReg() const
getReg - Returns the register number.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
Pass interface - Implemented by all 'passes'.
AnalysisType & getAnalysis() const
getAnalysis<AnalysisType>() - This function is used by subclasses to get to the analysis information ...
Insertion point on an edge.
uint64_t frequency(const Pass &P) const override
Frequency of the insertion point.
bool canMaterialize() const override
Check whether this insertion point can be materialized.
Abstract class used to represent an insertion point in a CFG.
bool WasMaterialized
Tell if the insert point has already been materialized.
virtual void materialize()=0
Materialize the insertion point.
virtual bool canMaterialize() const
Check whether this insertion point can be materialized.
virtual bool isSplit() const
Does this point involve splitting an edge or block?
Insertion point before or after an instruction.
InstrInsertPoint(MachineInstr &Instr, bool Before=true)
Create an insertion point before (Before=true) or after Instr.
bool isSplit() const override
Does this point involve splitting an edge or block?
uint64_t frequency(const Pass &P) const override
Frequency of the insertion point.
Insertion point at the beginning or end of a basic block.
uint64_t frequency(const Pass &P) const override
Frequency of the insertion point.
Helper class used to represent the cost for mapping an instruction.
void saturate()
Saturate the cost to the maximal representable value.
bool operator==(const MappingCost &Cost) const
Check if this is equal to Cost.
bool addLocalCost(uint64_t Cost)
Add Cost to the local cost.
void dump() const
Print this on dbgs() stream.
static MappingCost ImpossibleCost()
Return an instance of MappingCost that represents an impossible mapping.
bool addNonLocalCost(uint64_t Cost)
Add Cost to the non-local cost.
bool operator<(const MappingCost &Cost) const
Check if this is less than Cost.
void print(raw_ostream &OS) const
Print this on OS;.
Struct used to represent the placement of a repairing point for a given operand.
unsigned getNumInsertPoints() const
bool canMaterialize() const
RepairingPlacement(MachineInstr &MI, unsigned OpIdx, const TargetRegisterInfo &TRI, Pass &P, RepairingKind Kind=RepairingKind::Insert)
Create a repairing placement for the OpIdx-th operand of MI.
unsigned getOpIdx() const
RepairingKind
Define the kind of action this repairing needs.
@ Insert
Reparing code needs to happen before InsertPoints.
@ None
Nothing to repair, just drop this action.
@ Reassign
(Re)assign the register bank of the operand.
@ Impossible
Mark this repairing placement as impossible.
void switchTo(RepairingKind NewKind)
Change the type of this repairing placement to NewKind.
void addInsertPoint(MachineBasicBlock &MBB, bool Beginning)
This pass implements the reg bank selector pass used in the GlobalISel pipeline.
Mode
List of the modes supported by the RegBankSelect pass.
@ Fast
Assign the register banks as fast as possible (default).
@ Greedy
Greedily minimize the cost of assigning register banks.
bool checkFunctionIsLegal(MachineFunction &MF) const
Check that our input is fully legal: we require the function to have the Legalized property,...
MachineIRBuilder MIRBuilder
Helper class used for every code morphing.
MachineBlockFrequencyInfo * MBFI
Get the frequency of blocks.
Mode OptMode
Optimization mode of the pass.
const RegisterBankInfo::InstructionMapping & findBestMapping(MachineInstr &MI, RegisterBankInfo::InstructionMappings &PossibleMappings, SmallVectorImpl< RepairingPlacement > &RepairPts)
Find the best mapping for MI from PossibleMappings.
bool assignInstr(MachineInstr &MI)
Assign the register bank of each operand of MI.
bool assignRegisterBanks(MachineFunction &MF)
Walk through MF and assign a register bank to every virtual register that are still mapped to nothing...
void init(MachineFunction &MF)
Initialize the field members using MF.
void tryAvoidingSplit(RegBankSelect::RepairingPlacement &RepairPt, const MachineOperand &MO, const RegisterBankInfo::ValueMapping &ValMapping) const
When RepairPt involves splitting to repair MO for the given ValMapping, try to change the way we repa...
const TargetRegisterInfo * TRI
Information on the register classes for the current function.
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
MachineBranchProbabilityInfo * MBPI
Get the frequency of the edges.
bool assignmentMatch(Register Reg, const RegisterBankInfo::ValueMapping &ValMapping, bool &OnlyAssign) const
Check if Reg is already assigned what is described by ValMapping.
uint64_t getRepairCost(const MachineOperand &MO, const RegisterBankInfo::ValueMapping &ValMapping) const
Return the cost of the instruction needed to map MO to ValMapping.
MappingCost computeMapping(MachineInstr &MI, const RegisterBankInfo::InstructionMapping &InstrMapping, SmallVectorImpl< RepairingPlacement > &RepairPts, const MappingCost *BestCost=nullptr)
Compute the cost of mapping MI with InstrMapping and compute the repairing placement for such mapping...
bool repairReg(MachineOperand &MO, const RegisterBankInfo::ValueMapping &ValMapping, RegBankSelect::RepairingPlacement &RepairPt, const iterator_range< SmallVectorImpl< Register >::const_iterator > &NewVRegs)
Insert repairing code for Reg as specified by ValMapping.
MachineRegisterInfo * MRI
MRI contains all the register class/bank information that this pass uses and updates.
bool runOnMachineFunction(MachineFunction &MF) override
runOnMachineFunction - This method must be overloaded to perform the desired machine code transformat...
const RegisterBankInfo * RBI
Interface to the target lowering info related to register banks.
std::unique_ptr< MachineOptimizationRemarkEmitter > MORE
Current optimization remark emitter. Used to report failures.
bool applyMapping(MachineInstr &MI, const RegisterBankInfo::InstructionMapping &InstrMapping, SmallVectorImpl< RepairingPlacement > &RepairPts)
Apply Mapping to MI.
Helper class that represents how the value of an instruction may be mapped and what is the related co...
unsigned getNumOperands() const
Get the number of operands.
unsigned getCost() const
Get the cost.
unsigned getID() const
Get the ID.
bool verify(const MachineInstr &MI) const
Verifiy that this mapping makes sense for MI.
bool isValid() const
Check whether this object is valid.
static const unsigned DefaultMappingID
Identifier used when the related instruction mapping instance is generated by target independent code...
SmallVector< const InstructionMapping *, 4 > InstructionMappings
Convenient type to represent the alternatives for mapping an instruction.
This class implements the register bank concept.
Wrapper class representing virtual and physical registers.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
reference emplace_back(ArgTypes &&... Args)
typename SuperClass::const_iterator const_iterator
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Target-Independent Code Generator Pass Configuration Options.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
virtual const RegisterBankInfo * getRegBankInfo() const
If the information for the register banks is available, return it.
virtual const TargetRegisterInfo * getRegisterInfo() const =0
Return the target's register information.
A range adaptor for a pair of iterators.
This class implements an extremely fast bulk output stream that can only output to a stream.
#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.
ValuesClass values(OptsTy... Options)
Helper to build a ValuesClass by forwarding a variable number of arguments as an initializer list to ...
This is an optimization pass for GlobalISel generic memory operations.
Printable print(const GCNRegPressure &RP, const GCNSubtarget *ST=nullptr, unsigned DynamicVGPRBlockSize=0)
auto size(R &&Range, std::enable_if_t< std::is_base_of< std::random_access_iterator_tag, typename std::iterator_traits< decltype(Range.begin())>::iterator_category >::value, void > *=nullptr)
Get the size of a range.
bool isPreISelGenericOptimizationHint(unsigned Opcode)
LLVM_ABI cl::opt< bool > DisableGISelLegalityCheck
auto reverse(ContainerTy &&C)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
LLVM_ABI void reportGISelFailure(MachineFunction &MF, MachineOptimizationRemarkEmitter &MORE, MachineOptimizationRemarkMissed &R)
Report an ISel error as a missed optimization remark to the LLVMContext's diagnostic stream.
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
LLVM_ABI Printable printRegClassOrBank(Register Reg, const MachineRegisterInfo &RegInfo, const TargetRegisterInfo *TRI)
Create Printable object to print register classes or register banks on a raw_ostream.
const MachineInstr * machineFunctionIsIllegal(const MachineFunction &MF)
Checks that MIR is fully legal, returns an illegal instruction if it's not, nullptr otherwise.
LLVM_ABI void getSelectionDAGFallbackAnalysisUsage(AnalysisUsage &AU)
Modify analysis usage so it preserves passes required for the SelectionDAG fallback.
FunctionAddr VTableAddr Next
bool isTargetSpecificOpcode(unsigned Opcode)
Check whether the given Opcode is a target-specific opcode.
iterator_range< pointer_iterator< WrappedIteratorT > > make_pointer_range(RangeT &&Range)
LLVM_ABI Printable printReg(Register Reg, const TargetRegisterInfo *TRI=nullptr, unsigned SubIdx=0, const MachineRegisterInfo *MRI=nullptr)
Prints virtual and physical registers with or without a TRI instance.
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
const RegisterBank * RegBank
Register bank where the partial value lives.
unsigned Length
Length of this mapping in bits.
Helper struct that represents how a value is mapped through different register banks.
bool partsAllUniform() const
unsigned NumBreakDowns
Number of partial mapping to break down this value.
const PartialMapping * BreakDown
How the value is broken down between the different register banks.