Home
last modified time | relevance | path

Searched refs:stack_slots (Results 1 – 15 of 15) sorted by relevance

/third_party/node/deps/v8/src/maglev/
Dmaglev-graph.h44 uint32_t stack_slots() const { return stack_slots_; } in stack_slots() function
45 void set_stack_slots(uint32_t stack_slots) { in set_stack_slots() argument
47 DCHECK_NE(kMaxUInt32, stack_slots); in set_stack_slots()
48 stack_slots_ = stack_slots; in set_stack_slots()
Dmaglev-regalloc.h28 int stack_slots() const { return top_of_stack_; } in stack_slots() function
Dmaglev-code-generator.cc67 code_gen_state_->SetVregSlots(graph->stack_slots()); in PreProcessGraph()
/third_party/node/deps/v8/src/wasm/
Dwasm-code-manager.h285 int stack_slots() const { return stack_slots_; } in stack_slots() function
389 base::Vector<byte> instructions, int stack_slots, in WasmCode() argument
409 stack_slots_(stack_slots),
632 int index, const CodeDesc& desc, int stack_slots,
662 int index, base::Vector<byte> instructions, int stack_slots,
873 int index, const CodeDesc& desc, int stack_slots,
Dwasm-code-manager.cc1084 const int stack_slots = code->stack_slots(); in AddCodeForTesting() local
1136 stack_slots, // stack_slots in AddCodeForTesting()
1191 int index, const CodeDesc& desc, int stack_slots, in AddCode() argument
1204 return AddCodeWithCodeSpace(index, desc, stack_slots, tagged_parameter_slots, in AddCode()
1211 int index, const CodeDesc& desc, int stack_slots, in AddCodeWithCodeSpace() argument
1269 this, index, dst_code_bytes, stack_slots, tagged_parameter_slots, in AddCodeWithCodeSpace()
1421 int index, base::Vector<byte> instructions, int stack_slots, in AddDeserializedCode() argument
1432 this, index, instructions, stack_slots, tagged_parameter_slots, in AddDeserializedCode()
Dwasm-serialization.cc368 writer->Write(code->stack_slots()); in WriteCode()
/third_party/node/deps/v8/src/wasm/baseline/
Dliftoff-assembler.cc938 LiftoffStackSlots* stack_slots, in PrepareStackTransfers() argument
978 stack_slots->Add(slot, stack_offset, half, param_offset); in PrepareStackTransfers()
989 LiftoffStackSlots stack_slots(this); in PrepareBuiltinCall() local
992 PrepareStackTransfers(sig, call_descriptor, params.begin(), &stack_slots, in PrepareBuiltinCall()
997 stack_slots.Construct(param_slots); in PrepareBuiltinCall()
1026 LiftoffStackSlots stack_slots(this); in PrepareCall() local
1046 &cache_state_.stack_state[param_base], &stack_slots, in PrepareCall()
1061 stack_slots.Add(VarState(kPointerKind, LiftoffRegister(*target), 0), in PrepareCall()
1069 stack_slots.Construct(param_slots); in PrepareCall()
/third_party/node/deps/v8/src/objects/
Dcode-inl.h607 void Code::initialize_flags(CodeKind kind, bool is_turbofanned, int stack_slots, in initialize_flags() argument
609 CHECK(0 <= stack_slots && stack_slots < StackSlotsField::kMax); in initialize_flags()
613 StackSlotsField::encode(stack_slots) | in initialize_flags()
617 DCHECK_IMPLIES(stack_slots != 0, uses_safepoint_table()); in initialize_flags()
618 DCHECK_IMPLIES(!uses_safepoint_table(), stack_slots == 0); in initialize_flags()
736 int Code::stack_slots() const { in stack_slots() function
Dcode.h460 inline int stack_slots() const;
511 int stack_slots, bool is_off_heap_trampoline);
Dcode.cc497 os << "stack_slots = " << stack_slots() << "\n"; in Disassemble()
/third_party/node/deps/v8/src/execution/
Dframes.cc1036 uint32_t stack_slots = 0; in IterateCompiledFrame() local
1049 stack_slots = wasm_code->stack_slots(); in IterateCompiledFrame()
1075 stack_slots = code.stack_slots(); in IterateCompiledFrame()
1150 stack_slots * kSystemPointerSize - in IterateCompiledFrame()
1170 DCHECK_GE((stack_slots + kBitsPerByte) / kBitsPerByte, in IterateCompiledFrame()
Disolate.cc1963 code.stack_slots() * kSystemPointerSize; in ThrowInternal()
1987 wasm_code->stack_slots() * kSystemPointerSize; in ThrowInternal()
2017 code.stack_slots() * kSystemPointerSize; in ThrowInternal()
2056 code.stack_slots() * kSystemPointerSize; in ThrowInternal()
/third_party/node/deps/v8/src/heap/
Dfactory.h970 CodeBuilder& set_stack_slots(int stack_slots) { in set_stack_slots() argument
971 stack_slots_ = stack_slots; in set_stack_slots()
Dfactory.cc2317 raw_code.stack_slots(), in NewOffHeapTrampolineFor()
/third_party/node/deps/v8/src/deoptimizer/
Ddeoptimizer.cc1988 unsigned stack_slots = compiled_code_.stack_slots(); in ComputeInputFrameSize() local
1990 CHECK_EQ(fixed_size_above_fp + (stack_slots * kSystemPointerSize) - in ComputeInputFrameSize()