HomeSort by relevance Sort by last modified time
    Searched refs:JumpTables (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/CodeGen/
MachineJumpTableInfo.h 80 std::vector<MachineJumpTableEntry> JumpTables;
97 bool isEmpty() const { return JumpTables.empty(); }
100 return JumpTables;
106 JumpTables[Idx].MBBs.clear();
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 716 JumpTables.push_back(MachineJumpTableEntry(DestBBs));
717 return JumpTables.size()-1;
726 for (size_t i = 0, e = JumpTables.size(); i != e; ++i)
738 MachineJumpTableEntry &JTE = JumpTables[Idx];
748 if (JumpTables.empty()) return;
752 for (unsigned i = 0, e = JumpTables.size(); i != e; ++i) {
754 for (unsigned j = 0, f = JumpTables[i].MBBs.size(); j != f; ++j)
755 OS << " BB#" << JumpTables[i].MBBs[j]->getNumber();
    [all...]

Completed in 170 milliseconds