HomeSort by relevance Sort by last modified time
    Searched defs:pc_offset (Results 1 - 17 of 17) 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);
131 info.pc = assembler->pc_offset();
163 int target_offset = assembler->pc_offset() + Deoptimizer::patch_size();
164 while (assembler->pc_offset() < target_offset) {
171 offset_ = assembler->pc_offset();
frames.cc 423 unsigned pc_offset = static_cast<unsigned>(pc - holder->instruction_start()); local
428 pc = holder->instruction_start() + pc_offset;
895 unsigned pc_offset = local
897 ASSERT(pc_offset > 0);
899 FrameSummary summary(receiver, function, code, pc_offset, is_constructor);
    [all...]
lithium.h 472 int pc_offset() const { return pc_offset_; } function in class:v8::internal::LEnvironment
493 int pc_offset) {
497 pc_offset_ = pc_offset;
deoptimizer.cc 1053 uint32_t pc_offset = Memory::uint32_at(stack_check_cursor + kIntSize); local
1075 uint32_t pc_offset = Memory::uint32_at(stack_check_cursor + kIntSize); local
    [all...]
objects.cc 8416 unsigned pc_offset = table.GetPcOffset(i); local
    [all...]
  /system/core/libcorkscrew/
backtrace.c 291 uint32_t pc_offset = symbol->relative_pc - symbol->relative_symbol_addr; local
292 if (pc_offset) {
295 fieldWidth, symbolName, pc_offset);
  /external/v8/src/arm/
deoptimizer-arm.cc 343 unsigned pc_offset = data->OsrPcOffset()->value(); local
345 optimized_code_->entry() + pc_offset);
725 unsigned pc_offset = FullCodeGenerator::PcField::decode(pc_and_state); local
726 uint32_t pc_value = reinterpret_cast<uint32_t>(start + pc_offset);
    [all...]
assembler-arm.h 1229 int pc_offset() const { return pc_ - buffer_; } function in class:v8::internal::Assembler
    [all...]
lithium-codegen-arm.cc 271 if (!is_int24((masm()->pc_offset() / Assembler::kInstrSize) +
637 int pc_offset = masm()->pc_offset(); local
640 (mode == Safepoint::kLazyDeopt) ? pc_offset : -1);
707 data->SetPc(i, Smi::FromInt(env->pc_offset()));
    [all...]
  /external/v8/src/ia32/
deoptimizer-ia32.cc 59 int pc_offset = deopt_data->Pc(i)->value(); local
60 if (pc_offset == -1) continue;
61 ASSERT_GE(pc_offset, prev_pc_offset);
62 int pc_delta = pc_offset - prev_pc_offset;
71 prev_pc_offset = pc_offset;
433 unsigned pc_offset = data->OsrPcOffset()->value(); local
435 optimized_code_->entry() + pc_offset);
802 unsigned pc_offset = FullCodeGenerator::PcField::decode(pc_and_state); local
803 uint32_t pc_value = reinterpret_cast<uint32_t>(start + pc_offset);
    [all...]
lithium-codegen-ia32.cc 542 int pc_offset = masm()->pc_offset(); local
545 (mode == Safepoint::kLazyDeopt) ? pc_offset : -1);
630 data->SetPc(i, Smi::FromInt(env->pc_offset()));
    [all...]
  /external/v8/src/mips/
deoptimizer-mips.cc 333 unsigned pc_offset = data->OsrPcOffset()->value(); local
335 optimized_code_->entry() + pc_offset);
715 unsigned pc_offset = FullCodeGenerator::PcField::decode(pc_and_state); local
716 uint32_t pc_value = reinterpret_cast<uint32_t>(start + pc_offset);
    [all...]
assembler-mips.h 859 return pc_offset() - label->pos();
935 int32_t pc_offset() const { return pc_ - buffer_; } function in class:v8::internal::Assembler
    [all...]
lithium-codegen-mips.cc 598 int pc_offset = masm()->pc_offset(); local
601 (mode == Safepoint::kLazyDeopt) ? pc_offset : -1);
670 data->SetPc(i, Smi::FromInt(env->pc_offset()));
    [all...]
  /external/v8/src/x64/
deoptimizer-x64.cc 320 unsigned pc_offset = data->OsrPcOffset()->value(); local
322 optimized_code_->entry() + pc_offset);
705 unsigned pc_offset = FullCodeGenerator::PcField::decode(pc_and_state); local
706 intptr_t pc_value = reinterpret_cast<intptr_t>(start + pc_offset);
    [all...]
lithium-codegen-x64.cc 529 int pc_offset = masm()->pc_offset(); local
532 (mode == Safepoint::kLazyDeopt) ? pc_offset : -1);
589 data->SetPc(i, Smi::FromInt(env->pc_offset()));
    [all...]
  /external/linux-tools-perf/util/
trace-event-parse.c 2008 static int pc_offset; local
    [all...]

Completed in 261 milliseconds