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

1 2

  /art/compiler/debug/
elf_debug_loc_writer.h 114 const uint32_t pc_offset = stack_map.GetNativePcOffset(encoding.stack_map_encoding); local
115 DCHECK_LE(pc_offset, method_info->code_size);
118 method_info->code_address + pc_offset - compilation_unit_code_address);
  /external/v8/src/runtime/
runtime-compiler.cc 217 uint32_t pc_offset = local
226 BailoutId ast_id = caller_code->TranslatePcOffsetToAstId(pc_offset);
  /external/v8/src/
safepoint-table.cc 53 unsigned pc_offset = static_cast<unsigned>(pc - code_->instruction_start()); local
56 if (GetPcOffset(i) == pc_offset) return GetEntry(i);
109 info.pc = assembler->pc_offset();
142 offset_ = assembler->pc_offset();
frames.cc 377 unsigned pc_offset = static_cast<unsigned>(pc - holder->instruction_start()); local
382 pc = holder->instruction_start() + pc_offset;
880 int pc_offset = static_cast<int>(pc() - code->entry()); local
881 return table->LookupRange(pc_offset, stack_depth, prediction);
1127 int pc_offset = static_cast<int>(pc() - code->entry()); local
1227 int pc_offset = GetBytecodeOffset() + 1; \/\/ Point after current bytecode. local
    [all...]
assembler.h 100 int pc_offset() const { return static_cast<int>(pc_ - buffer_); } function in class:v8::internal::AssemblerBase
    [all...]
deoptimizer.cc 692 unsigned pc_offset = FullCodeGenerator::PcField::decode(pc_and_state); local
696 return table->LookupRange(pc_offset, data_out, &prediction);
1058 unsigned pc_offset = goto_catch_handler local
2796 unsigned pc_offset = FullCodeGenerator::PcField::decode(pc_and_state); local
    [all...]
  /external/v8/src/compiler/
code-generator.h 169 int BuildTranslation(Instruction* instr, int pc_offset,
202 int pc_offset() const { return pc_offset_; } function in struct:v8::internal::compiler::final::DeoptimizationState
204 DeoptimizationState(BailoutId bailout_id, int translation_id, int pc_offset)
207 pc_offset_(pc_offset) {}
218 int pc_offset; member in struct:v8::internal::compiler::final::HandlerInfo
code-generator.cc 84 info->set_prologue_offset(masm()->pc_offset());
188 int target_offset = masm()->pc_offset() + Deoptimizer::patch_size();
189 while (masm()->pc_offset() < target_offset) {
224 table->SetReturnOffset(static_cast<int>(i), handlers_[i].pc_offset);
481 data->SetPc(i, Smi::FromInt(deoptimization_state->pc_offset()));
507 handlers_.push_back({caught, GetLabel(handler_rpo), masm()->pc_offset()});
517 int pc_offset = masm()->pc_offset(); local
518 int deopt_state_id = BuildTranslation(instr, pc_offset, frame_state_offset,
677 int CodeGenerator::BuildTranslation(Instruction* instr, int pc_offset,
    [all...]
  /external/v8/src/profiler/
profiler-listener.cc 106 int pc_offset = static_cast<int>(reloc_info->pc() - code->address()); local
108 line_table->SetPosition(pc_offset, line_number);
117 int pc_offset = it.bytecode_offset() + BytecodeArray::kHeaderSize; local
118 line_table->SetPosition(pc_offset, line_number);
227 int pc_offset = deopt_input_data->Pc(i)->value(); local
228 if (pc_offset == -1) continue;
260 entry->AddInlineStack(pc_offset, inline_stack);
profile-generator.cc 27 void JITLineInfoTable::SetPosition(int pc_offset, int line) {
28 DCHECK(pc_offset >= 0);
30 if (GetSourceLineNumber(pc_offset) != line) {
31 pc_offset_map_.insert(std::make_pair(pc_offset, line));
36 int JITLineInfoTable::GetSourceLineNumber(int pc_offset) const {
37 PcOffsetMap::const_iterator it = pc_offset_map_.lower_bound(pc_offset);
137 int CodeEntry::GetSourceLine(int pc_offset) const {
139 return line_info_->GetSourceLineNumber(pc_offset);
144 void CodeEntry::AddInlineStack(int pc_offset,
148 inline_locations_.insert(std::make_pair(pc_offset, std::vector<CodeEntry*>())
595 int pc_offset = local
626 int pc_offset = local
    [all...]
  /external/v8/src/wasm/
decoder.h 342 uint32_t pc_offset() { return static_cast<uint32_t>(pc_ - start_); } function in class:v8::internal::wasm::Decoder
  /external/v8/src/ia32/
deoptimizer-ia32.cc 36 int pc_offset = deopt_data->Pc(i)->value(); local
37 if (pc_offset == -1) continue;
38 DCHECK_GE(pc_offset, prev_pc_offset);
39 int pc_delta = pc_offset - prev_pc_offset;
48 prev_pc_offset = pc_offset;
341 __ push(Operand(ebx, FrameDescription::pc_offset()));
363 int start = masm()->pc_offset();
367 DCHECK(masm()->pc_offset() - start == table_entry_size_);
  /external/v8/src/snapshot/
deserializer.cc 655 int pc_offset = source_.GetInt(); local
659 DCHECK(0 <= pc_offset && pc_offset <= code->instruction_size());
661 Address pc = code->entry() + pc_offset;
    [all...]
serializer.cc 619 intptr_t pc_offset = rinfo->target_internal_reference_address() - entry; local
621 DCHECK(0 <= pc_offset &&
622 pc_offset <= Code::cast(object_)->instruction_size());
629 sink_->PutInt(static_cast<uintptr_t>(pc_offset), "internal ref address");
  /external/v8/src/x87/
deoptimizer-x87.cc 36 int pc_offset = deopt_data->Pc(i)->value(); local
37 if (pc_offset == -1) continue;
38 DCHECK_GE(pc_offset, prev_pc_offset);
39 int pc_delta = pc_offset - prev_pc_offset;
48 prev_pc_offset = pc_offset;
377 __ push(Operand(ebx, FrameDescription::pc_offset()));
399 int start = masm()->pc_offset();
403 DCHECK(masm()->pc_offset() - start == table_entry_size_);
  /external/v8/src/full-codegen/
full-codegen.h 1011 uint32_t pc_offset(uint32_t index) { function in class:v8::internal::BackEdgeTable
    [all...]
  /external/v8/src/crankshaft/
lithium.h 437 int pc_offset() const { return pc_offset_; } function in class:v8::internal::final
502 int pc_offset) {
506 pc_offset_ = pc_offset;
  /external/v8/src/debug/
debug.cc 1349 int pc_offset = generator_obj->continuation(); local
1375 int pc_offset = ComputePcOffsetFromContinuationIndex(shared->code(), index); local
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-codegen-arm.cc 112 info()->set_prologue_offset(masm_->pc_offset());
223 osr_pc_offset_ = masm()->pc_offset();
296 if (!is_int24((masm()->pc_offset() / Assembler::kInstrSize) +
761 int pc_offset = masm()->pc_offset(); local
764 (mode == Safepoint::kLazyDeopt) ? pc_offset : -1);
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-codegen-arm64.cc 326 int pc_offset = masm()->pc_offset(); local
329 (mode == Safepoint::kLazyDeopt) ? pc_offset : -1);
564 info()->set_prologue_offset(masm_->pc_offset());
658 osr_pc_offset_ = masm()->pc_offset();
997 intptr_t current_pc = masm()->pc_offset();
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-codegen-ia32.cc 127 info()->set_prologue_offset(masm_->pc_offset());
234 osr_pc_offset_ = masm()->pc_offset();
371 int target_offset = masm()->pc_offset() + Deoptimizer::patch_size();
372 while (masm()->pc_offset() < target_offset) {
674 int pc_offset = masm()->pc_offset(); local
677 (mode == Safepoint::kLazyDeopt) ? pc_offset : -1);
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-codegen-mips.cc 134 info()->set_prologue_offset(masm_->pc_offset());
237 osr_pc_offset_ = masm()->pc_offset();
736 int pc_offset = masm()->pc_offset(); local
739 (mode == Safepoint::kLazyDeopt) ? pc_offset : -1);
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-codegen-mips64.cc 110 info()->set_prologue_offset(masm_->pc_offset());
213 osr_pc_offset_ = masm()->pc_offset();
724 int pc_offset = masm()->pc_offset(); local
727 (mode == Safepoint::kLazyDeopt) ? pc_offset : -1);
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-codegen-ppc.cc 114 int prologue_offset = masm_->pc_offset();
224 osr_pc_offset_ = masm()->pc_offset();
293 if (!is_int24((masm()->pc_offset() / Assembler::kInstrSize) +
706 int pc_offset = masm()->pc_offset(); local
708 (mode == Safepoint::kLazyDeopt) ? pc_offset : -1);
    [all...]
  /external/v8/src/crankshaft/s390/
lithium-codegen-s390.cc 104 int prologue_offset = masm_->pc_offset();
213 osr_pc_offset_ = masm()->pc_offset();
280 if (!is_int24(masm()->pc_offset() + jump_table_.length() * 7)) {
667 int pc_offset = masm()->pc_offset(); local
669 (mode == Safepoint::kLazyDeopt) ? pc_offset : -1);
    [all...]

Completed in 205 milliseconds

1 2