Home
last modified time | relevance | path

Searched refs:control_depth (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/wasm/
Dwasm-text.cc45 int control_depth = 1; in PrintWasmText() local
84 if (opcode == kExprElse || opcode == kExprEnd) --control_depth; in PrintWasmText()
86 DCHECK_LE(0, control_depth); in PrintWasmText()
88 int indentation = std::min(kMaxIndentation, 2 * control_depth); in PrintWasmText()
111 control_depth++; in PrintWasmText()
122 control_depth++; in PrintWasmText()
234 DCHECK_EQ(0, control_depth); in PrintWasmText()
Dfunction-body-decoder.cc177 current_catch_ = static_cast<int32_t>(decoder->control_depth() - 1); in Try()
240 DCHECK_EQ(1, decoder->control_depth()); in DoReturn()
499 return decoder->control_at(decoder->control_depth() - 1 - current_catch_) in current_try_info()
956 unsigned control_depth = 0; in PrintRawWasmCode() local
963 if (opcode == kExprElse) control_depth--; in PrintRawWasmCode()
965 int num_whitespaces = control_depth < 32 ? 2 * control_depth : 64; in PrintRawWasmCode()
1004 control_depth++; in PrintRawWasmCode()
1018 control_depth++; in PrintRawWasmCode()
1023 control_depth--; in PrintRawWasmCode()
Dfunction-body-decoder-impl.h878 size_t control_depth) { in Validate() argument
879 if (!VALIDATE(imm.depth < control_depth)) { in Validate()
1325 inline uint32_t control_depth() const { in control_depth() function
1690 for (uint32_t depth = control_depth(); depth-- > 0;) { in DecodeFunctionBody()
/external/v8/src/wasm/baseline/
Dliftoff-compiler.cc201 uint32_t control_depth = decoder ? decoder->control_depth() : 0; in BindUnboundLabels() local
202 for (uint32_t i = 0; i < control_depth; ++i) { in BindUnboundLabels()
1042 DCHECK_EQ(1, decoder->control_depth()); in DoReturn()
1826 for (int control_depth = decoder->control_depth() - 1; control_depth >= -1; in TraceCacheState() local
1827 --control_depth) { in TraceCacheState()
1829 control_depth == -1 ? __ cache_state() in TraceCacheState()
1830 : &decoder->control_at(control_depth) in TraceCacheState()
1833 if (control_depth != -1) PrintF("; "); in TraceCacheState()