Home
last modified time | relevance | path

Searched refs:JumpTables (Results 1 – 2 of 2) sorted by relevance

/external/llvm/include/llvm/CodeGen/
DMachineJumpTableInfo.h80 std::vector<MachineJumpTableEntry> JumpTables; variable
97 bool isEmpty() const { return JumpTables.empty(); } in isEmpty()
100 return JumpTables; in getJumpTables()
106 JumpTables[Idx].MBBs.clear(); in RemoveJumpTable()
/external/llvm/lib/CodeGen/
DMachineFunction.cpp577 JumpTables.push_back(MachineJumpTableEntry(DestBBs)); in createJumpTableIndex()
578 return JumpTables.size()-1; in createJumpTableIndex()
587 for (size_t i = 0, e = JumpTables.size(); i != e; ++i) in ReplaceMBBInJumpTables()
599 MachineJumpTableEntry &JTE = JumpTables[Idx]; in ReplaceMBBInJumpTable()
609 if (JumpTables.empty()) return; in print()
613 for (unsigned i = 0, e = JumpTables.size(); i != e; ++i) { in print()
615 for (unsigned j = 0, f = JumpTables[i].MBBs.size(); j != f; ++j) in print()
616 OS << " BB#" << JumpTables[i].MBBs[j]->getNumber(); in print()