Home
last modified time | relevance | path

Searched refs:JumpTables (Results 1 – 3 of 3) 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/include/llvm/Analysis/
DJumpInstrTableInfo.h48 typedef DenseMap<FunctionType *, std::vector<JumpPair> > JumpTables; typedef
54 const JumpTables &getTables() const { return Tables; } in getTables()
59 JumpTables Tables;
/external/llvm/lib/CodeGen/
DMachineFunction.cpp755 JumpTables.push_back(MachineJumpTableEntry(DestBBs)); in createJumpTableIndex()
756 return JumpTables.size()-1; in createJumpTableIndex()
765 for (size_t i = 0, e = JumpTables.size(); i != e; ++i) in ReplaceMBBInJumpTables()
777 MachineJumpTableEntry &JTE = JumpTables[Idx]; in ReplaceMBBInJumpTable()
787 if (JumpTables.empty()) return; in print()
791 for (unsigned i = 0, e = JumpTables.size(); i != e; ++i) { in print()
793 for (unsigned j = 0, f = JumpTables[i].MBBs.size(); j != f; ++j) in print()
794 OS << " BB#" << JumpTables[i].MBBs[j]->getNumber(); in print()