Home
last modified time | relevance | path

Searched refs:MBBs (Results 1 – 21 of 21) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZLongBranch.cpp166 SmallVector<MBBInfo, 16> MBBs; member in __anon971b573c0111::SystemZLongBranch
272 MBBs.clear(); in initMBBInfo()
273 MBBs.resize(NumBlocks); in initMBBInfo()
281 MBBInfo &Block = MBBs[I]; in initMBBInfo()
317 const MBBInfo &Target = MBBs[Terminator.TargetBlock]; in mustRelaxBranch()
343 for (auto &Block : MBBs) { in setWorstCaseAddresses()
444 for (auto &Block : MBBs) { in relaxBranches()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachineJumpTableInfo.h36 std::vector<MachineBasicBlock*> MBBs; member
39 : MBBs(M) {} in MachineJumpTableEntry()
106 JumpTables[Idx].MBBs.clear(); in RemoveJumpTable()
H A DLexicalScopes.h164 SmallPtrSetImpl<const MachineBasicBlock *> &MBBs);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMachineFunctionInfo.cpp125 SmallPtrSet<const MachineBasicBlock *, 16> MBBs; in WebAssemblyFunctionInfo() local
127 MBBs.insert(&MBB); in WebAssemblyFunctionInfo()
131 if (MBBs.count(SrcBB) && MBBs.count(DestBB)) in WebAssemblyFunctionInfo()
H A DWebAssemblyLateEHPrepare.cpp96 static void eraseDeadBBsAndChildren(const Container &MBBs) { in eraseDeadBBsAndChildren() argument
97 SmallVector<MachineBasicBlock *, 8> WL(MBBs.begin(), MBBs.end()); in eraseDeadBBsAndChildren()
H A DWebAssemblyISelLowering.cpp1513 const auto &MBBs = MJTI->getJumpTables()[JT->getIndex()].MBBs; in LowerBR_JT() local
1516 for (auto MBB : MBBs) in LowerBR_JT()
1522 Ops.push_back(DAG.getBasicBlock(*MBBs.begin())); in LowerBR_JT()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DLexicalScopes.cpp281 const DILocation *DL, SmallPtrSetImpl<const MachineBasicBlock *> &MBBs) { in getMachineBasicBlocks() argument
283 MBBs.clear(); in getMachineBasicBlocks()
291 MBBs.insert(&MBB); in getMachineBasicBlocks()
303 MBBs.insert(&*CurMBBIt); in getMachineBasicBlocks()
H A DMachineFunction.cpp1056 auto removeBeginItr = std::remove(JTE.MBBs.begin(), JTE.MBBs.end(), MBB); in RemoveMBBFromJumpTables()
1057 MadeChange |= (removeBeginItr != JTE.MBBs.end()); in RemoveMBBFromJumpTables()
1058 JTE.MBBs.erase(removeBeginItr, JTE.MBBs.end()); in RemoveMBBFromJumpTables()
1071 for (size_t j = 0, e = JTE.MBBs.size(); j != e; ++j) in ReplaceMBBInJumpTable()
1072 if (JTE.MBBs[j] == Old) { in ReplaceMBBInJumpTable()
1073 JTE.MBBs[j] = New; in ReplaceMBBInJumpTable()
1086 for (unsigned j = 0, f = JumpTables[i].MBBs.size(); j != f; ++j) in print()
1087 OS << ' ' << printMBBReference(*JumpTables[i].MBBs[j]); in print()
H A DRegisterCoalescer.cpp3943 std::vector<MBBPriorityInfo> MBBs; in joinAllIntervals() local
3944 MBBs.reserve(MF->size()); in joinAllIntervals()
3946 MBBs.push_back(MBBPriorityInfo(&MBB, Loops->getLoopDepth(&MBB), in joinAllIntervals()
3949 array_pod_sort(MBBs.begin(), MBBs.end(), compareMBBPriority); in joinAllIntervals()
3953 for (unsigned i = 0, e = MBBs.size(); i != e; ++i) { in joinAllIntervals()
3955 if (JoinGlobalCopies && MBBs[i].Depth < CurrDepth) { in joinAllIntervals()
3957 CurrDepth = MBBs[i].Depth; in joinAllIntervals()
3959 copyCoalesceInMBB(MBBs[i].MBB); in joinAllIntervals()
H A DMIRPrinter.cpp559 for (const auto *MBB : Table.MBBs) { in convert()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64CompressJumpTables.cpp118 if (JT.MBBs.empty()) in compressJumpTable()
124 for (auto *Block : JT.MBBs) { in compressJumpTable()
H A DAArch64BranchTargets.cpp74 for (auto *MBB : JTE.MBBs) in runOnMachineFunction()
H A DAArch64AsmPrinter.cpp832 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs; in emitJumpTableInfo()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUMachineCFGStructurizer.cpp321 SmallPtrSet<MachineBasicBlock *, 1> MBBs; member in __anon8dbf25c70211::LinearizedRegion
817 for (auto MBBI : SubRegion->MBBs) { in storeLiveOuts()
846 for (auto MBB : MBBs) { in print()
978 void LinearizedRegion::addMBB(MachineBasicBlock *MBB) { MBBs.insert(MBB); } in addMBB()
981 for (auto MBB : InnerRegion->MBBs) { in addMBBs()
987 return MBBs.contains(MBB); in contains()
1004 for (auto MBBI : MBBs) { in removeFalseRegisterKills()
1058 MBBs.insert(MBB); in LinearizedRegion()
2571 SmallPtrSet<MachineBasicBlock *, 8> &MBBs) { in mbbHasBackEdge() argument
2573 if (MBBs.contains(*SI)) { in mbbHasBackEdge()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsAsmPrinter.cpp1284 const std::vector<MachineBasicBlock*> &MBBs = JT[I].MBBs; in NaClAlignIndirectJumpTargets() local
1286 for (unsigned J = 0; J < MBBs.size(); ++J) in NaClAlignIndirectJumpTargets()
1287 MBBs[J]->setAlignment(MIPS_NACL_BUNDLE_ALIGN); in NaClAlignIndirectJumpTargets()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
H A DXCoreAsmPrinter.cpp191 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs; in printInlineJT()
H A DXCoreISelLowering.cpp356 unsigned NumEntries = MJTI->getJumpTables()[JTI].MBBs.size(); in LowerBR_JT()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMAsmPrinter.cpp973 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs; in emitJumpTableAddrs()
1016 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs; in emitJumpTableInsts()
1044 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs; in emitJumpTableTBInst()
H A DARMConstantIslandPass.cpp625 unsigned Size = JT[JTI].MBBs.size() * sizeof(uint32_t); in doInitialJumpTablePlacement()
2193 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs; in optimizeThumb2JumpTables()
2388 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs; in reorderThumb2JumpTables()
H A DARMFrameLowering.cpp1606 FnSize += Table.MBBs.size() * 4; in EstimateFunctionSizeInBytes()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp2105 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs; in emitJumpTableInfo()