Searched defs:MBBs (Results 1 - 4 of 4) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DMachineJumpTableInfo.h35 /// MBBs - The vector of basic blocks from which to create the jump table.
36 std::vector<MachineBasicBlock*> MBBs; member in struct:llvm::MachineJumpTableEntry
39 : MBBs(M) {}
106 JumpTables[Idx].MBBs.clear();
/external/llvm/lib/CodeGen/
H A DLexicalScopes.cpp269 SmallPtrSet<const MachineBasicBlock*, 4> &MBBs) {
270 MBBs.clear();
278 MBBs.insert(I);
286 MBBs.insert(R.first->getParent());
268 getMachineBasicBlocks(DebugLoc DL, SmallPtrSet<const MachineBasicBlock*, 4> &MBBs) argument
H A DRegisterCoalescer.cpp1528 std::vector<std::pair<unsigned, MachineBasicBlock*> > MBBs; local
1531 MBBs.push_back(std::make_pair(Loops->getLoopDepth(MBB), I));
1535 std::sort(MBBs.begin(), MBBs.end(), DepthMBBCompare());
1538 for (unsigned i = 0, e = MBBs.size(); i != e; ++i)
1539 copyCoalesceInMBB(MBBs[i].second);
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp1105 NumEntries += JT[i].MBBs.size();
1111 // we will know the final locations of the MBBs in memory.
1139 const std::vector<MachineBasicBlock*> &MBBs = JT[i].MBBs; local
1142 for (unsigned mi = 0, me = MBBs.size(); mi != me; ++mi)
1143 *SlotPtr++ = getMachineBasicBlockAddress(MBBs[mi]);
1157 const std::vector<MachineBasicBlock*> &MBBs = JT[i].MBBs; local
1161 for (unsigned mi = 0, me = MBBs.size(); mi != me; ++mi) {
1162 uintptr_t MBBAddr = getMachineBasicBlockAddress(MBBs[m
[all...]

Completed in 185 milliseconds