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 75 std::vector<MachineJumpTableEntry> JumpTables;
92 bool isEmpty() const { return JumpTables.empty(); }
95 return JumpTables;
101 JumpTables[Idx].MBBs.clear();
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 570 JumpTables.push_back(MachineJumpTableEntry(DestBBs));
571 return JumpTables.size()-1;
580 for (size_t i = 0, e = JumpTables.size(); i != e; ++i)
592 MachineJumpTableEntry &JTE = JumpTables[Idx];
602 if (JumpTables.empty()) return;
606 for (unsigned i = 0, e = JumpTables.size(); i != e; ++i) {
608 for (unsigned j = 0, f = JumpTables[i].MBBs.size(); j != f; ++j)
609 OS << " BB#" << JumpTables[i].MBBs[j]->getNumber();

Completed in 42 milliseconds