Home
last modified time | relevance | path

Searched defs:JumpDest (Results 1 – 1 of 1) sorted by relevance

/external/clang/lib/CodeGen/
DCodeGenFunction.h106 struct JumpDest { struct
107 JumpDest() : Block(nullptr), ScopeDepth(), Index(0) {} in JumpDest() argument
108 JumpDest(llvm::BasicBlock *Block, in JumpDest() argument
113 bool isValid() const { return Block != nullptr; } in isValid()
114 llvm::BasicBlock *getBlock() const { return Block; } in getBlock()
115 EHScopeStack::stable_iterator getScopeDepth() const { return ScopeDepth; } in getScopeDepth()
116 unsigned getDestIndex() const { return Index; } in getDestIndex()
119 void setScopeDepth(EHScopeStack::stable_iterator depth) { in setScopeDepth()
125 EHScopeStack::stable_iterator ScopeDepth;
126 unsigned Index;