Home
last modified time | relevance | path

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

/external/v8/src/
Dframes.cc355 unsigned* stack_slots) { in GetSafepointData() argument
369 *stack_slots = code->stack_slots(); in GetSafepointData()
646 unsigned stack_slots = 0; in IterateCompiledFrame() local
649 isolate(), pc(), &safepoint_entry, &stack_slots); in IterateCompiledFrame()
650 unsigned slot_space = stack_slots * kPointerSize; in IterateCompiledFrame()
694 for (unsigned index = 0; index < stack_slots; index++) { in IterateCompiledFrame()
811 int* stack_slots, HandlerTable::CatchPrediction* prediction) { in LookupExceptionHandlerInTable() argument
816 return table->LookupRange(pc_offset, stack_slots, prediction); in LookupExceptionHandlerInTable()
1032 int* stack_slots, HandlerTable::CatchPrediction* prediction) { in LookupExceptionHandlerInTable() argument
1037 *stack_slots = code->stack_slots(); in LookupExceptionHandlerInTable()
Disolate.cc1102 int stack_slots = 0; // Will contain stack slot count of frame. in UnwindAndFindHandler() local
1103 offset = js_frame->LookupExceptionHandlerInTable(&stack_slots, NULL); in UnwindAndFindHandler()
1109 stack_slots * kPointerSize; in UnwindAndFindHandler()
1122 int stack_slots = 0; // Will contain operand stack depth of handler. in UnwindAndFindHandler() local
1123 offset = js_frame->LookupExceptionHandlerInTable(&stack_slots, NULL); in UnwindAndFindHandler()
1130 stack_slots * kPointerSize; in UnwindAndFindHandler()
1178 int stack_slots = 0; // The computed stack slot count is not used. in PredictExceptionCatcher() local
1180 if (js_frame->LookupExceptionHandlerInTable(&stack_slots, &prediction) > in PredictExceptionCatcher()
1589 int stack_slots = 0; // The computed stack slot count is not used. in GetPromiseOnStackOnThrow() local
1590 if (frame->LookupExceptionHandlerInTable(&stack_slots, NULL) > 0) { in GetPromiseOnStackOnThrow()
Dframes.h320 unsigned* stack_slots);
622 int* stack_slots, HandlerTable::CatchPrediction* prediction);
697 int* stack_slots, HandlerTable::CatchPrediction* prediction) override;
Dsafepoint-table.cc74 int last_bits = code_->stack_slots() - ((last - first) * kBitsPerByte); in PrintEntry()
Ddeoptimizer.cc157 unsigned stack_slots = code->stack_slots(); in DebuggerInspectableFrame() local
160 unsigned fp_to_sp_delta = (stack_slots * kPointerSize) + in DebuggerInspectableFrame()
1989 unsigned stack_slots = compiled_code_->stack_slots(); in ComputeInputFrameSize() local
1992 CHECK(result == fixed_size + (stack_slots * kPointerSize) + outgoing_size); in ComputeInputFrameSize()
Dobjects-inl.h5023 unsigned Code::stack_slots() { in stack_slots() function
Dobjects.h4964 inline unsigned stack_slots();
Dobjects.cc14879 os << "stack_slots = " << stack_slots() << "\n"; in Disassemble()
/external/v8/src/debug/
Ddebug.cc782 int stack_slots = 0; // The computed stack slot count is not used. in PrepareStepOnThrow() local
783 if (frame->LookupExceptionHandlerInTable(&stack_slots, NULL) > 0) break; in PrepareStepOnThrow()