Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyInstPrinter.cpp117 if (Depth >= ControlFlowStack.size()) { in printInst()
120 const auto &Pair = ControlFlowStack.rbegin()[Depth]; in printInst()
137 ControlFlowStack.push_back(std::make_pair(ControlFlowCounter++, true)); in printInst()
142 ControlFlowStack.push_back(std::make_pair(ControlFlowCounter++, false)); in printInst()
147 ControlFlowStack.push_back(std::make_pair(ControlFlowCounter, false)); in printInst()
165 ControlFlowStack.push_back(std::make_pair(ControlFlowCounter++, false)); in printInst()
171 if (ControlFlowStack.empty()) { in printInst()
174 ControlFlowStack.pop_back(); in printInst()
182 if (ControlFlowStack.empty()) { in printInst()
186 OS, "label" + utostr(ControlFlowStack.pop_back_val().first) + ':'); in printInst()
[all …]
H A DWebAssemblyInstPrinter.h28 SmallVector<std::pair<uint64_t, bool>, 4> ControlFlowStack; variable