Searched defs:JumpDest (Results 1 – 1 of 1) sorted by relevance
113 struct JumpDest { struct114 JumpDest() : Block(nullptr), ScopeDepth(), Index(0) {} in JumpDest() argument115 JumpDest(llvm::BasicBlock *Block, in JumpDest() argument120 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;