Home
last modified time | relevance | path

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

/external/v8/src/codegen/
Dsafepoint-table.cc20 code.stack_slots(), true) {} in SafepointTable()
25 code->stack_slots(), false) {} in SafepointTable()
29 uint32_t stack_slots, bool has_deopt) in SafepointTable() argument
31 stack_slots_(stack_slots), in SafepointTable()
Dsafepoint-table.h108 uint32_t stack_slots, bool has_deopt);
/external/v8/src/wasm/baseline/
Dliftoff-assembler.cc725 LiftoffStackSlots* stack_slots, in PrepareStackTransfers() argument
763 stack_slots->Add(slot, stack_offset, half); in PrepareStackTransfers()
774 LiftoffStackSlots stack_slots(this); in PrepareBuiltinCall() local
777 PrepareStackTransfers(sig, call_descriptor, params.begin(), &stack_slots, in PrepareBuiltinCall()
782 stack_slots.Reverse(); in PrepareBuiltinCall()
783 stack_slots.Construct(); in PrepareBuiltinCall()
810 LiftoffStackSlots stack_slots(this); in PrepareCall() local
829 &cache_state_.stack_state[param_base], &stack_slots, in PrepareCall()
844 stack_slots.Add(LiftoffAssembler::VarState(LiftoffAssembler::kWasmIntPtr, in PrepareCall()
851 stack_slots.Construct(); in PrepareCall()
/external/v8/src/wasm/
Dwasm-code-manager.h172 int stack_slots() const { return stack_slots_; } in stack_slots() function
256 int stack_slots, int tagged_parameter_slots, in WasmCode() argument
276 stack_slots_(stack_slots),
488 int stack_slots, int tagged_parameter_slots,
501 int index, Vector<const byte> instructions, int stack_slots,
694 int index, const CodeDesc& desc, int stack_slots,
Dwasm-code-manager.cc900 const int stack_slots = code->has_safepoint_info() ? code->stack_slots() : 0; in AddCodeForTesting() local
951 stack_slots, // stack_slots in AddCodeForTesting()
1007 int index, const CodeDesc& desc, int stack_slots, in AddCode() argument
1015 return AddCodeWithCodeSpace(index, desc, stack_slots, tagged_parameter_slots, in AddCode()
1022 int index, const CodeDesc& desc, int stack_slots, in AddCodeWithCodeSpace() argument
1079 this, index, dst_code_bytes, stack_slots, tagged_parameter_slots, in AddCodeWithCodeSpace()
1178 int index, Vector<const byte> instructions, int stack_slots, in AddDeserializedCode() argument
1192 this, index, dst_code_bytes, stack_slots, tagged_parameter_slots, in AddDeserializedCode()
Dwasm-serialization.cc353 writer->Write(code->stack_slots()); in WriteCode()
/external/v8/src/objects/
Dcode-inl.h332 void Code::initialize_flags(CodeKind kind, bool is_turbofanned, int stack_slots, in initialize_flags() argument
334 CHECK(0 <= stack_slots && stack_slots < StackSlotsField::kMax); in initialize_flags()
338 StackSlotsField::encode(stack_slots) | in initialize_flags()
342 DCHECK_IMPLIES(stack_slots != 0, has_safepoint_info()); in initialize_flags()
455 int Code::stack_slots() const { in stack_slots() function
Dcode.h281 inline int stack_slots() const;
341 int stack_slots, bool is_off_heap_trampoline);
Dcode.cc692 os << "stack_slots = " << stack_slots() << "\n"; in Disassemble()
/external/v8/src/execution/
Dframes.cc914 uint32_t stack_slots; in IterateCompiledFrame() local
921 stack_slots = wasm_code->stack_slots(); in IterateCompiledFrame()
938 stack_slots = code.stack_slots(); in IterateCompiledFrame()
941 uint32_t slot_space = stack_slots * kSystemPointerSize; in IterateCompiledFrame()
1012 for (unsigned index = 0; index < stack_slots; index++) { in IterateCompiledFrame()
Disolate.cc1760 code.stack_slots() * kSystemPointerSize; in ThrowInternal()
1786 wasm_code->stack_slots() * kSystemPointerSize; in ThrowInternal()
1817 code.stack_slots() * kSystemPointerSize; in ThrowInternal()
1855 code.stack_slots() * kSystemPointerSize; in ThrowInternal()
/external/libchrome/base/debug/
Dactivity_tracker.cc631 uint32_t stack_slots; member
729 DCHECK_EQ(0U, header_->stack_slots); in ThreadActivityTracker()
746 header_->stack_slots = stack_slots_; in ThreadActivityTracker()
903 header_->stack_slots != stack_slots_ || in IsValid()
/external/v8/src/heap/
Dfactory.h909 CodeBuilder& set_stack_slots(int stack_slots) { in set_stack_slots() argument
910 stack_slots_ = stack_slots; in set_stack_slots()
Dfactory.cc1896 const int stack_slots = in NewOffHeapTrampolineFor() local
1897 code->has_safepoint_info() ? code->stack_slots() : 0; in NewOffHeapTrampolineFor()
1898 result->initialize_flags(code->kind(), code->is_turbofanned(), stack_slots, in NewOffHeapTrampolineFor()
/external/v8/src/deoptimizer/
Ddeoptimizer.cc2025 unsigned stack_slots = compiled_code_.stack_slots(); in ComputeInputFrameSize() local
2028 CHECK_EQ(fixed_size_above_fp + (stack_slots * kSystemPointerSize) - in ComputeInputFrameSize()