Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyInstPrinter.cpp134 ControlFlowStack.push_back(std::make_pair(ControlFlowCounter, false)); in printInst()
141 if (ControlFlowStack.empty()) { in printInst()
144 ControlFlowStack.pop_back(); in printInst()
150 if (ControlFlowStack.empty()) { in printInst()
160 if (ControlFlowStack.empty() || EHInstStack.empty()) { in printInst()
214 assert(ControlFlowStack.back().first == TryStack.back()); in printInst()
216 utostr(ControlFlowStack.pop_back_val().first) + in printInst()
221 if (Depth >= ControlFlowStack.size()) { in printInst()
224 const auto &Pair = ControlFlowStack.rbegin()[Depth]; in printInst()
256 if (Depth >= ControlFlowStack.size()) { in printInst()
[all …]
H A DWebAssemblyInstPrinter.h28 SmallVector<std::pair<uint64_t, bool>, 4> ControlFlowStack; variable