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