/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/ |
H A D | SystemZLongBranch.cpp | 166 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 D | MachineJumpTableInfo.h | 36 std::vector<MachineBasicBlock*> MBBs; member 39 : MBBs(M) {} in MachineJumpTableEntry() 106 JumpTables[Idx].MBBs.clear(); in RemoveJumpTable()
|
H A D | LexicalScopes.h | 164 SmallPtrSetImpl<const MachineBasicBlock *> &MBBs);
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyMachineFunctionInfo.cpp | 125 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 D | WebAssemblyLateEHPrepare.cpp | 96 static void eraseDeadBBsAndChildren(const Container &MBBs) { in eraseDeadBBsAndChildren() argument 97 SmallVector<MachineBasicBlock *, 8> WL(MBBs.begin(), MBBs.end()); in eraseDeadBBsAndChildren()
|
H A D | WebAssemblyISelLowering.cpp | 1513 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 D | LexicalScopes.cpp | 281 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 D | MachineFunction.cpp | 1056 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 D | RegisterCoalescer.cpp | 3943 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 D | MIRPrinter.cpp | 559 for (const auto *MBB : Table.MBBs) { in convert()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/ |
H A D | AArch64CompressJumpTables.cpp | 118 if (JT.MBBs.empty()) in compressJumpTable() 124 for (auto *Block : JT.MBBs) { in compressJumpTable()
|
H A D | AArch64BranchTargets.cpp | 74 for (auto *MBB : JTE.MBBs) in runOnMachineFunction()
|
H A D | AArch64AsmPrinter.cpp | 832 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs; in emitJumpTableInfo()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUMachineCFGStructurizer.cpp | 321 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 D | MipsAsmPrinter.cpp | 1284 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 D | XCoreAsmPrinter.cpp | 191 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs; in printInlineJT()
|
H A D | XCoreISelLowering.cpp | 356 unsigned NumEntries = MJTI->getJumpTables()[JTI].MBBs.size(); in LowerBR_JT()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
H A D | ARMAsmPrinter.cpp | 973 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 D | ARMConstantIslandPass.cpp | 625 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 D | ARMFrameLowering.cpp | 1606 FnSize += Table.MBBs.size() * 4; in EstimateFunctionSizeInBytes()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
H A D | AsmPrinter.cpp | 2105 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs; in emitJumpTableInfo()
|