OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsLandingPad
(Results
1 - 3
of
3
) sorted by null
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineBasicBlock.h
89
///
IsLandingPad
- Indicate that this basic block is entered via an
91
bool
IsLandingPad
;
229
///
isLandingPad
- Returns true if the block is a landing pad. That is
231
bool
isLandingPad
() const { return
IsLandingPad
; }
235
void setIsLandingPad(bool V = true) {
IsLandingPad
= V; }
/external/llvm/lib/CodeGen/MIRParser/
MIParser.cpp
328
bool
IsLandingPad
= false;
340
IsLandingPad
= true;
381
MBB->setIsEHPad(
IsLandingPad
);
[
all
...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
MachineBasicBlock.cpp
37
: BB(bb), Number(-1), xParent(&mf), Alignment(0),
IsLandingPad
(false),
182
if ((*I)->
isLandingPad
())
219
if (
isLandingPad
()) { OS << Comma << "EH LANDING PAD"; Comma = ", "; }
743
(MBB != DestA && MBB != DestB && !MBB->
isLandingPad
())) {
Completed in 1089 milliseconds