Home
last modified time | relevance | path

Searched refs:MBBInfo (Results 1 – 5 of 5) sorted by relevance

/external/llvm/lib/Target/Mips/
DMipsOptimizePICCall.cpp47 class MBBInfo { class
49 MBBInfo(MachineDomTreeNode *N);
75 bool visitNode(MBBInfo &MBBI);
161 MBBInfo::MBBInfo(MachineDomTreeNode *N) : Node(N), HTScope(nullptr) {} in MBBInfo() function in MBBInfo
163 const MachineDomTreeNode *MBBInfo::getNode() const { return Node; } in getNode()
165 bool MBBInfo::isVisited() const { return HTScope; } in isVisited()
167 void MBBInfo::preVisit(ScopedHTType &ScopedHT) { in preVisit()
171 void MBBInfo::postVisit() { in postVisit()
184 SmallVector<MBBInfo, 8> WorkList(1, MBBInfo(MDT->getRootNode())); in runOnMachineFunction()
187 MBBInfo &MBBI = WorkList.back(); in runOnMachineFunction()
[all …]
DMipsLongBranch.cpp53 struct MBBInfo { struct
58 MBBInfo() : Size(0), HasLongBranch(false), Br(nullptr) {} in MBBInfo() argument
86 void expandToLongBranch(MBBInfo &Info);
90 SmallVector<MBBInfo, 16> MBBInfos;
255 void MipsLongBranch::expandToLongBranch(MBBInfo &I) { in expandToLongBranch()
481 SmallVectorImpl<MBBInfo>::iterator I, E = MBBInfos.end(); in runOnMachineFunction()
/external/llvm/lib/Target/SystemZ/
DSystemZLongBranch.cpp74 struct MBBInfo { struct
89 MBBInfo() in MBBInfo() function
147 void skipNonTerminators(BlockPosition &Position, MBBInfo &Block);
162 SmallVector<MBBInfo, 16> MBBs;
180 MBBInfo &Block) { in skipNonTerminators()
277 MBBInfo &Block = MBBs[I]; in initMBBInfo()
313 const MBBInfo &Target = MBBs[Terminator.TargetBlock]; in mustRelaxBranch()
/external/llvm/lib/Target/ARM/
DThumb2SizeReduction.cpp202 struct MBBInfo { struct in __anon933e06d00111::Thumb2SizeReduce
208 MBBInfo() : HighLatencyCPSR(false), Visited(false) {} in MBBInfo() function
211 SmallVector<MBBInfo, 8> BlockInfo;
992 const MBBInfo &PInfo = BlockInfo[Pred->getNumber()]; in ReduceMBB()
1064 MBBInfo &Info = BlockInfo[MBB.getNumber()]; in ReduceMBB()
/external/llvm/lib/CodeGen/MIRParser/
DMIParser.cpp1098 auto MBBInfo = PFS.MBBSlots.find(Number); in parseMBBReference() local
1099 if (MBBInfo == PFS.MBBSlots.end()) in parseMBBReference()
1102 MBB = MBBInfo->second; in parseMBBReference()