HomeSort by relevance Sort by last modified time
    Searched defs:pc_offset (Results 1 - 11 of 11) sorted by null

  /external/v8/src/
safepoint-table.cc 77 unsigned pc_offset = static_cast<unsigned>(pc - code_->instruction_start()); local
80 if (GetPcOffset(i) == pc_offset) return GetEntry(i);
130 pc_and_deoptimization_index.pc = assembler->pc_offset();
132 pc_and_deoptimization_index.pc_after_gap = assembler->pc_offset();
154 int target_offset = assembler->pc_offset() + Deoptimizer::patch_size();
155 while (assembler->pc_offset() < target_offset) {
162 offset_ = assembler->pc_offset();
deoptimizer.cc 801 uint32_t pc_offset = Memory::uint32_at(stack_check_cursor + kIntSize); local
802 Address pc_after = unoptimized_code->instruction_start() + pc_offset;
820 uint32_t pc_offset = Memory::uint32_at(stack_check_cursor + kIntSize); local
821 Address pc_after = unoptimized_code->instruction_start() + pc_offset;
    [all...]
frames.cc 401 unsigned pc_offset = static_cast<unsigned>(pc - holder->instruction_start()); local
406 pc = holder->instruction_start() + pc_offset;
771 unsigned pc_offset = local
773 ASSERT(pc_offset > 0);
775 FrameSummary summary(receiver, function, code, pc_offset, is_constructor);
    [all...]
objects.cc 6640 unsigned pc_offset = table.GetPcOffset(i); local
    [all...]
  /external/v8/src/arm/
deoptimizer-arm.cc 71 unsigned pc_offset = table.GetPcOffset(i); local
76 CHECK(pc_offset >= last_pc_offset);
79 int instructions = (pc_offset - last_pc_offset) / Assembler::kInstrSize;
86 last_pc_offset = pc_offset;
341 unsigned pc_offset = data->OsrPcOffset()->value(); local
343 optimized_code_->entry() + pc_offset);
509 unsigned pc_offset = FullCodeGenerator::PcField::decode(pc_and_state); local
510 uint32_t pc_value = reinterpret_cast<uint32_t>(start + pc_offset);
688 __ ldr(r6, MemOperand(r2, FrameDescription::pc_offset()));
722 int start = masm()->pc_offset();
    [all...]
assembler-arm.h 1184 int pc_offset() const { return pc_ - buffer_; } function in class:v8::internal::Assembler
    [all...]
  /external/v8/src/ia32/
deoptimizer-ia32.cc 418 unsigned pc_offset = data->OsrPcOffset()->value(); local
420 optimized_code_->entry() + pc_offset);
581 unsigned pc_offset = FullCodeGenerator::PcField::decode(pc_and_state); local
582 uint32_t pc_value = reinterpret_cast<uint32_t>(start + pc_offset);
738 __ push(Operand(ebx, FrameDescription::pc_offset()));
760 int start = masm()->pc_offset();
764 ASSERT(masm()->pc_offset() - start == table_entry_size_);
assembler-ia32.h 1008 int SizeOfCodeGeneratedSince(Label* l) { return pc_offset() - l->pos(); }
1026 int pc_offset() const { return pc_ - buffer_; } function in class:v8::internal::Assembler
    [all...]
  /external/v8/src/x64/
deoptimizer-x64.cc 411 unsigned pc_offset = data->OsrPcOffset()->value(); local
413 optimized_code_->entry() + pc_offset);
578 unsigned pc_offset = FullCodeGenerator::PcField::decode(pc_and_state); local
579 intptr_t pc_value = reinterpret_cast<intptr_t>(start + pc_offset);
767 __ push(Operand(rbx, FrameDescription::pc_offset()));
801 int start = masm()->pc_offset();
805 ASSERT(masm()->pc_offset() - start == table_entry_size_);
assembler-x64.h 1368 int pc_offset() const { return static_cast<int>(pc_ - buffer_); } function in class:v8::internal::Assembler
    [all...]
  /external/v8/src/mips/
assembler-mips.h 737 return (pc_offset() - l->pos()) / kInstrSize;
773 int32_t pc_offset() const { return pc_ - buffer_; } function in class:v8::internal::Assembler
779 if (last_bound_pos_ > pc_offset() - instructions * kInstrSize) return false;
847 // Block the emission of the trampoline pool before pc_offset.
848 void BlockTrampolinePoolBefore(int pc_offset) {
849 if (no_trampoline_pool_before_ < pc_offset)
850 no_trampoline_pool_before_ = pc_offset;
    [all...]

Completed in 1082 milliseconds