Home
last modified time | relevance | path

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

/external/clang/lib/CodeGen/
DCodeGenFunction.h113 struct JumpDest { struct
114 JumpDest() : Block(nullptr), ScopeDepth(), Index(0) {} in JumpDest() argument
115 JumpDest(llvm::BasicBlock *Block, in JumpDest() argument
120 bool isValid() const { return Block != nullptr; } in isValid()
121 llvm::BasicBlock *getBlock() const { return Block; } in getBlock()
122 EHScopeStack::stable_iterator getScopeDepth() const { return ScopeDepth; } in getScopeDepth()
123 unsigned getDestIndex() const { return Index; } in getDestIndex()
126 void setScopeDepth(EHScopeStack::stable_iterator depth) { in setScopeDepth()
132 EHScopeStack::stable_iterator ScopeDepth;
133 unsigned Index;