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.cpp716 JumpTables.push_back(MachineJumpTableEntry(DestBBs)); in createJumpTableIndex()
717 return JumpTables.size()-1; in createJumpTableIndex()
726 for (size_t i = 0, e = JumpTables.size(); i != e; ++i) in ReplaceMBBInJumpTables()
738 MachineJumpTableEntry &JTE = JumpTables[Idx]; in ReplaceMBBInJumpTable()
748 if (JumpTables.empty()) return; in print()
752 for (unsigned i = 0, e = JumpTables.size(); i != e; ++i) { in print()
754 for (unsigned j = 0, f = JumpTables[i].MBBs.size(); j != f; ++j) in print()
755 OS << " BB#" << JumpTables[i].MBBs[j]->getNumber(); in print()