Home
last modified time | relevance | path

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

/external/v8/src/
Dframes.cc385 unsigned* stack_slots) { in GetSafepointData() argument
399 *stack_slots = code->stack_slots(); in GetSafepointData()
792 unsigned stack_slots = 0; in IterateCompiledFrame() local
795 isolate(), pc(), &safepoint_entry, &stack_slots); in IterateCompiledFrame()
796 unsigned slot_space = stack_slots * kPointerSize; in IterateCompiledFrame()
883 for (unsigned index = 0; index < stack_slots; index++) { in IterateCompiledFrame()
1459 int* stack_slots, HandlerTable::CatchPrediction* prediction) { in LookupExceptionHandlerInTable() argument
1467 if (stack_slots) *stack_slots = code->stack_slots(); in LookupExceptionHandlerInTable()
1774 int WasmCompiledFrame::LookupExceptionHandlerInTable(int* stack_slots) { in LookupExceptionHandlerInTable() argument
1775 DCHECK_NOT_NULL(stack_slots); in LookupExceptionHandlerInTable()
[all …]
Dsafepoint-table.cc74 int last_bits = code_->stack_slots() - ((last - first) * kBitsPerByte); in PrintEntry()
Disolate.cc1221 int stack_slots = 0; // Will contain stack slot count of frame. in Throw() local
1223 offset = wasm_frame->LookupExceptionHandlerInTable(&stack_slots); in Throw()
1229 stack_slots * kPointerSize; in Throw()
1244 int stack_slots = 0; // Will contain stack slot count of frame. in Throw() local
1245 offset = js_frame->LookupExceptionHandlerInTable(&stack_slots, nullptr); in Throw()
1251 stack_slots * kPointerSize; in Throw()
Dframes.h590 unsigned* stack_slots);
Ddeoptimizer.cc2201 unsigned stack_slots = compiled_code_->stack_slots(); in ComputeInputFrameSize() local
2204 CHECK_EQ(fixed_size_above_fp + (stack_slots * kPointerSize) - in ComputeInputFrameSize()
Dobjects-inl.h5075 unsigned Code::stack_slots() { in stack_slots() function
Dobjects.h5058 inline unsigned stack_slots();
Dobjects.cc14533 os << "stack_slots = " << stack_slots() << "\n"; in Disassemble()
/external/libchrome/base/debug/
Dactivity_tracker.cc630 uint32_t stack_slots; member
728 DCHECK_EQ(0U, header_->stack_slots); in ThreadActivityTracker()
745 header_->stack_slots = stack_slots_; in ThreadActivityTracker()
904 header_->stack_slots != stack_slots_ || in IsValid()