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