/external/v8/src/codegen/ |
D | safepoint-table.cc | 20 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()
|
D | safepoint-table.h | 108 uint32_t stack_slots, bool has_deopt);
|
/external/v8/src/wasm/baseline/ |
D | liftoff-assembler.cc | 725 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/ |
D | wasm-code-manager.h | 172 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,
|
D | wasm-code-manager.cc | 900 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()
|
D | wasm-serialization.cc | 353 writer->Write(code->stack_slots()); in WriteCode()
|
/external/v8/src/objects/ |
D | code-inl.h | 332 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
|
D | code.h | 281 inline int stack_slots() const; 341 int stack_slots, bool is_off_heap_trampoline);
|
D | code.cc | 692 os << "stack_slots = " << stack_slots() << "\n"; in Disassemble()
|
/external/v8/src/execution/ |
D | frames.cc | 914 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()
|
D | isolate.cc | 1760 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/ |
D | activity_tracker.cc | 631 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/ |
D | factory.h | 909 CodeBuilder& set_stack_slots(int stack_slots) { in set_stack_slots() argument 910 stack_slots_ = stack_slots; in set_stack_slots()
|
D | factory.cc | 1896 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/ |
D | deoptimizer.cc | 2025 unsigned stack_slots = compiled_code_.stack_slots(); in ComputeInputFrameSize() local 2028 CHECK_EQ(fixed_size_above_fp + (stack_slots * kSystemPointerSize) - in ComputeInputFrameSize()
|