Home
last modified time | relevance | path

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

/external/clang/lib/CodeGen/
DCodeGenFunction.h110 struct JumpDest { struct
111 JumpDest() : Block(nullptr), ScopeDepth(), Index(0) {} in JumpDest() argument
112 JumpDest(llvm::BasicBlock *Block, in JumpDest() function
117 bool isValid() const { return Block != nullptr; } in isValid()
118 llvm::BasicBlock *getBlock() const { return Block; } in getBlock()
119 EHScopeStack::stable_iterator getScopeDepth() const { return ScopeDepth; } in getScopeDepth()
120 unsigned getDestIndex() const { return Index; } in getDestIndex()
123 void setScopeDepth(EHScopeStack::stable_iterator depth) { in setScopeDepth()
129 EHScopeStack::stable_iterator ScopeDepth;
130 unsigned Index;