HomeSort by relevance Sort by last modified time
    Searched refs:stack_slots (Results 1 - 25 of 25) sorted by null

  /external/v8/src/wasm/
wasm-code-manager.h 126 uint32_t stack_slots() const { return stack_slots_; } function in class:v8::internal::wasm::final
154 Vector<byte> instructions, uint32_t stack_slots,
168 stack_slots_(stack_slots),
221 WasmCode* AddCode(uint32_t index, const CodeDesc& desc, uint32_t stack_slots,
229 uint32_t index, Vector<const byte> instructions, uint32_t stack_slots,
361 uint32_t stack_slots, size_t safepoint_table_offset,
wasm-code-manager.cc 363 uint32_t stack_slots, size_t safepoint_table_offset,
383 stack_slots, safepoint_table_offset, handler_table_offset,
472 int stack_slots = code->has_safepoint_info() ? code->stack_slots() : 0; local
478 stack_slots, // stack_slots
519 uint32_t index, const CodeDesc& desc, uint32_t stack_slots,
528 stack_slots, safepoint_table_offset, handler_table_offset,
568 uint32_t index, Vector<const byte> instructions, uint32_t stack_slots,
575 Just(index), instructions, stack_slots, safepoint_table_offset
    [all...]
wasm-serialization.cc 294 writer->Write(code->stack_slots());
  /external/v8/src/objects/
code-inl.h 345 bool is_turbofanned, int stack_slots,
347 CHECK(0 <= stack_slots && stack_slots < StackSlotsField::kMax);
352 StackSlotsField::encode(stack_slots) |
355 DCHECK_IMPLIES(stack_slots != 0, has_safepoint_info());
474 int Code::stack_slots() const { function in class:v8::internal::Code
code.h 152 // [stack_slots]: If {has_safepoint_info()}, the number of stack slots
154 inline int stack_slots() const;
213 bool is_turbofanned, int stack_slots,
    [all...]
  /external/v8/src/
safepoint-table.cc 39 uint32_t stack_slots, bool has_deopt)
41 stack_slots_(stack_slots),
55 code->stack_slots(), true) {}
frames.cc 827 uint32_t stack_slots; local
833 wasm_code->stack_slots());
835 stack_slots = wasm_code->stack_slots();
850 stack_slots = code->stack_slots();
853 uint32_t slot_space = stack_slots * kPointerSize;
    [all...]
safepoint-table.h 95 size_t safepoint_table_offset, uint32_t stack_slots,
isolate.cc 1316 int stack_slots = 0; \/\/ Will contain stack slot count of frame. local
1341 int stack_slots = 0; \/\/ Will contain stack slot count of frame. local
1379 int stack_slots = 0; \/\/ Will contain stack slot count of frame. local
    [all...]
deoptimizer.cc 1796 unsigned stack_slots = compiled_code_->stack_slots(); local
    [all...]
objects.cc     [all...]
  /external/v8/src/wasm/baseline/
liftoff-assembler.cc 467 LiftoffStackSlots stack_slots(this);
516 stack_slots.Add(slot, stack_idx, half);
534 stack_slots.Add(LiftoffAssembler::VarState(LiftoffAssembler::kWasmIntPtr,
541 stack_slots.Construct();
liftoff-compiler.cc     [all...]
liftoff-assembler.h 348 inline void PatchPrepareStackFrame(int offset, uint32_t stack_slots);
  /external/v8/src/wasm/baseline/arm/
liftoff-assembler-arm.h 22 uint32_t stack_slots) {
  /external/v8/src/wasm/baseline/ppc/
liftoff-assembler-ppc.h 22 uint32_t stack_slots) {
  /external/v8/src/wasm/baseline/s390/
liftoff-assembler-s390.h 22 uint32_t stack_slots) {
  /external/libchrome/base/debug/
activity_tracker.cc 631 uint32_t stack_slots; member in struct:base::debug::ThreadActivityTracker::Header
729 DCHECK_EQ(0U, header_->stack_slots);
746 header_->stack_slots = stack_slots_;
    [all...]
  /external/v8/src/heap/
factory.cc 63 bool is_turbofanned, int stack_slots,
75 code->initialize_flags(kind, has_unwinding_info, is_turbofanned, stack_slots,
2688 const int stack_slots = code->has_safepoint_info() ? code->stack_slots() : 0; local
    [all...]
factory.h     [all...]
  /external/v8/src/wasm/baseline/arm64/
liftoff-assembler-arm64.h 125 uint32_t stack_slots) {
128 uint32_t bytes = liftoff::kConstantStackSpace + kStackSlotSize * stack_slots;
  /external/v8/src/wasm/baseline/mips/
liftoff-assembler-mips.h 244 uint32_t stack_slots) {
245 uint32_t bytes = liftoff::kConstantStackSpace + kStackSlotSize * stack_slots;
    [all...]
  /external/v8/src/wasm/baseline/mips64/
liftoff-assembler-mips64.h 214 uint32_t stack_slots) {
215 uint64_t bytes = liftoff::kConstantStackSpace + kStackSlotSize * stack_slots;
    [all...]
  /external/v8/src/wasm/baseline/x64/
liftoff-assembler-x64.h 141 uint32_t stack_slots) {
142 uint32_t bytes = liftoff::kConstantStackSpace + kStackSlotSize * stack_slots;
    [all...]
  /external/v8/src/wasm/baseline/ia32/
liftoff-assembler-ia32.h 138 uint32_t stack_slots) {
139 uint32_t bytes = liftoff::kConstantStackSpace + kStackSlotSize * stack_slots;
    [all...]

Completed in 388 milliseconds