Searched refs:stack_height (Results 1 - 6 of 6) sorted by relevance
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-debug.h | 77 Entry(int pc_offset, int stack_height, std::vector<Value> changed_values) in Entry() argument 79 stack_height_(stack_height), in Entry() 88 int stack_height() const { return stack_height_; } in stack_height() function in v8::internal::wasm::DebugSideTable::Entry 128 DCHECK_LE(num_locals_, it->stack_height()); in GetEntry() 138 (entry - 1)->stack_height() <= stack_index || in FindValue()
|
H A D | wasm-debug.cc | 140 int stack_height = scope.debug_side_table_entry->stack_height(); in GetStackDepth() local 141 return stack_height - num_locals; in GetStackDepth() 148 int value_count = scope.debug_side_table_entry->stack_height(); in GetStackValue()
|
/third_party/node/deps/v8/src/deoptimizer/ |
H A D | deoptimized-frame-info.cc | 60 const int stack_height = frame_it->height(); // Accumulator *not* included. in DeoptimizedFrameInfo() local 62 expression_stack_.resize(static_cast<size_t>(stack_height)); in DeoptimizedFrameInfo() 63 for (int i = 0; i < stack_height; i++) { in DeoptimizedFrameInfo()
|
/third_party/node/deps/v8/src/wasm/baseline/ |
H A D | liftoff-assembler.cc | 464 uint32_t discarded = source.stack_height() - target_height; in InitMerge() 467 DCHECK_GE(source.stack_height(), stack_base); in InitMerge() 756 DCHECK_EQ(source.stack_height(), target.stack_height()); in MergeFullStackWith() 760 for (uint32_t i = 0, e = source.stack_height(); i < e; ++i) { in MergeFullStackWith() 764 source.stack_height() - i - 1))); in MergeFullStackWith() 780 // ^target_stack_height ^stack_base ^stack_height in MergeStackWith() 784 uint32_t stack_height = cache_state_.stack_height(); in MergeStackWith() local 785 uint32_t target_stack_height = target.stack_height(); in MergeStackWith() [all...] |
H A D | liftoff-compiler.cc | 184 explicit EntryBuilder(int pc_offset, int stack_height, in EntryBuilder() argument 187 stack_height_(stack_height), in EntryBuilder() 906 DCHECK_EQ(__ num_locals(), __ cache_state()->stack_height()); in StartFunctionBody() 1308 int index = try_block->try_info->catch_state.stack_height() - 1; in Rethrow() 2757 for (uint32_t i = 0, e = __ cache_state()->stack_height(); i < e; ++i) { 3293 : __ cache_state()->stack_height();
|
H A D | liftoff-assembler.h | 439 uint32_t stack_height() const { in stack_height() function
|
Completed in 16 milliseconds