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.cpp149 EHInstStack.push_back(TRY); in printInst()
192 if (ControlFlowStack.empty() || EHInstStack.empty()) { in printInst()
197 EHInstStack.pop_back(); in printInst()
207 if (EHInstStack.empty()) { in printInst()
209 } else if (EHInstStack.back() == CATCH_ALL_LEGACY) { in printInst()
211 } else if (EHInstStack.back() == TRY) { in printInst()
217 EHInstStack.pop_back(); in printInst()
220 EHInstStack.push_back(CATCH_LEGACY); in printInst()
222 EHInstStack.push_back(CATCH_ALL_LEGACY); in printInst()
240 if (ControlFlowStack.empty() || TryStack.empty() || EHInstStack.empty()) { in printInst()
[all …]
H A DWebAssemblyInstPrinter.h32 SmallVector<EHInstKind, 4> EHInstStack; variable