OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
768
JumpTables
.push_back(MachineJumpTableEntry(DestBBs));
769
return
JumpTables
.size()-1;
778
for (size_t i = 0, e =
JumpTables
.size(); i != e; ++i)
790
MachineJumpTableEntry &JTE =
JumpTables
[Idx];
800
if (
JumpTables
.empty()) return;
804
for (unsigned i = 0, e =
JumpTables
.size(); i != e; ++i) {
806
for (unsigned j = 0, f =
JumpTables
[i].MBBs.size(); j != f; ++j)
807
OS << " BB#" <<
JumpTables
[i].MBBs[j]->getNumber();
[
all
...]
Completed in 392 milliseconds