Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineJumpTableInfo.h87 std::vector<MachineJumpTableEntry> JumpTables;
104 bool isEmpty() const { return JumpTables.empty(); }
107 return JumpTables; in RemoveJumpTable()
113 JumpTables[Idx].MBBs.clear();
80 std::vector<MachineJumpTableEntry> JumpTables; global() variable
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineFunction.cpp1304 JumpTables.push_back(MachineJumpTableEntry(DestBBs)); in createJumpTableIndex()
1305 return JumpTables.size()-1; in createJumpTableIndex()
1314 for (size_t i = 0, e = JumpTables.size(); i != e; ++i) in ReplaceMBBInJumpTables()
1322 for (MachineJumpTableEntry &JTE : JumpTables) { in RemoveMBBFromJumpTables()
1337 MachineJumpTableEntry &JTE = JumpTables[Idx]; in ReplaceMBBInJumpTable()
1347 if (JumpTables.empty()) return; in print()
1351 for (unsigned i = 0, e = JumpTables.size(); i != e; ++i) { in print()
1353 for (const MachineBasicBlock *MBB : JumpTables[i].MBBs) in print()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.h177 std::vector<JumpTableInfo> JumpTables; member