Home
last modified time | relevance | path

Searched refs:EHInstStack (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyInstPrinter.cpp136 EHInstStack.push_back(TRY); in printInst()
160 if (ControlFlowStack.empty() || EHInstStack.empty()) { in printInst()
165 EHInstStack.pop_back(); in printInst()
175 if (EHInstStack.empty()) { in printInst()
177 } else if (EHInstStack.back() == CATCH_ALL) { in printInst()
179 } else if (EHInstStack.back() == TRY) { in printInst()
185 EHInstStack.pop_back(); in printInst()
187 EHInstStack.push_back(CATCH); in printInst()
189 EHInstStack.push_back(CATCH_ALL); in printInst()
207 if (ControlFlowStack.empty() || TryStack.empty() || EHInstStack in printInst()
[all...]
H A DWebAssemblyInstPrinter.h32 SmallVector<EHInstKind, 4> EHInstStack; variable