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

1 2

  /art/runtime/
stack_map.cc 200 const uint32_t pc_offset = GetNativePcOffset(stack_map_encoding, instruction_set); local
204 << " [native_pc=0x" << code_offset + pc_offset << "]"
207 << ", native_pc_offset=0x" << pc_offset
  /art/compiler/debug/
elf_debug_loc_writer.h 115 const uint32_t pc_offset = stack_map.GetNativePcOffset(encoding.stack_map.encoding, isa); local
116 DCHECK_LE(pc_offset, method_info->code_size);
119 method_info->code_address + pc_offset - compilation_unit_code_address);
  /external/v8/src/runtime/
runtime-compiler.cc 277 uint32_t pc_offset = local
279 return 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();
assembler.h 109 int pc_offset() const { return static_cast<int>(pc_ - buffer_); } function in class:v8::internal::AssemblerBase
    [all...]
frames.cc 413 unsigned pc_offset = static_cast<unsigned>(pc - holder->instruction_start()); local
418 pc = holder->instruction_start() + pc_offset;
1466 int pc_offset = static_cast<int>(pc() - code->entry()); local
1778 int pc_offset = static_cast<int>(pc() - code->entry()); local
    [all...]
deoptimizer.cc 1001 unsigned pc_offset = goto_catch_handler local
1649 int pc_offset = local
    [all...]
  /external/v8/src/profiler/
profiler-listener.cc 102 int pc_offset = it.code_offset() + offset; local
103 line_table->SetPosition(pc_offset, line_number);
210 int pc_offset = deopt_input_data->Pc(i)->value(); local
211 if (pc_offset == -1) continue;
243 entry->AddInlineStack(pc_offset, std::move(inline_stack));
profile-generator.cc 28 void JITLineInfoTable::SetPosition(int pc_offset, int line) {
29 DCHECK(pc_offset >= 0);
31 if (GetSourceLineNumber(pc_offset) != line) {
32 pc_offset_map_.insert(std::make_pair(pc_offset, line));
37 int JITLineInfoTable::GetSourceLineNumber(int pc_offset) const {
38 PcOffsetMap::const_iterator it = pc_offset_map_.lower_bound(pc_offset);
138 int CodeEntry::GetSourceLine(int pc_offset) const {
140 return line_info_->GetSourceLineNumber(pc_offset);
145 void CodeEntry::AddInlineStack(int pc_offset,
147 inline_locations_.insert(std::make_pair(pc_offset, std::move(inline_stack)))
675 int pc_offset = static_cast<int>(reinterpret_cast<Address>(sample.pc) - local
704 int pc_offset = local
    [all...]
  /external/v8/src/wasm/
decoder.h 297 uint32_t pc_offset() const { return static_cast<uint32_t>(pc_ - start_); } function in class:v8::internal::wasm::Decoder
  /external/v8/src/compiler/
code-generator.h 214 int BuildTranslation(Instruction* instr, int pc_offset,
240 DeoptimizationState(BailoutId bailout_id, int translation_id, int pc_offset,
244 pc_offset_(pc_offset),
250 int pc_offset() const { return pc_offset_; } function in class:v8::internal::compiler::final::final
264 int pc_offset; member in struct:v8::internal::compiler::final::HandlerInfo
code-generator.cc 94 info->set_prologue_offset(masm()->pc_offset());
131 unwinding_info_writer_.BeginInstructionBlock(masm()->pc_offset(), block);
204 int target_offset = masm()->pc_offset() + Deoptimizer::patch_size();
205 while (masm()->pc_offset() < target_offset) {
223 unwinding_info_writer_.Finish(masm()->pc_offset());
242 table->SetReturnOffset(static_cast<int>(i), handlers_[i].pc_offset);
494 source_position_table_builder_.AddPosition(masm()->pc_offset(),
605 data->SetPc(i, Smi::FromInt(deoptimization_state->pc_offset()));
630 handlers_.push_back({GetLabel(handler_rpo), masm()->pc_offset()});
640 int pc_offset = masm()->pc_offset() local
    [all...]
  /external/v8/src/ia32/
deoptimizer-ia32.cc 36 int pc_offset = deopt_data->Pc(i)->value(); local
37 if (pc_offset == -1) continue;
38 pc_offset = pc_offset + 1; // We will encode the pc offset after the call.
39 DCHECK_GE(pc_offset, prev_pc_offset);
40 int pc_delta = pc_offset - prev_pc_offset;
49 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_)
    [all...]
  /external/v8/src/snapshot/
deserializer.cc 710 int pc_offset = source_.GetInt(); local
714 DCHECK(0 <= pc_offset && pc_offset <= code->instruction_size());
    [all...]
serializer.cc 643 intptr_t pc_offset = rinfo->target_internal_reference_address() - entry; local
645 DCHECK(0 <= pc_offset &&
646 pc_offset <= Code::cast(object_)->instruction_size());
653 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 pc_offset = pc_offset + 1; // We will encode the pc offset after the call.
39 DCHECK_GE(pc_offset, prev_pc_offset);
40 int pc_delta = pc_offset - prev_pc_offset;
49 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_)
    [all...]
  /external/swiftshader/third_party/subzero/src/DartARM32/
assembler_arm.h 1239 intptr_t pc_offset() const { return pc_offset_; } function in class:dart::Assembler::CodeComment
    [all...]
  /external/v8/src/full-codegen/
full-codegen.h 850 uint32_t pc_offset(uint32_t index) { function in class:v8::internal::BackEdgeTable
855 return instruction_start_ + pc_offset(index);
    [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/vixl/src/aarch64/
assembler-aarch64.cc 85 uintptr_t pc_offset = GetCursorAddress<uintptr_t>() >> element_shift; local
87 return label_offset - pc_offset;
    [all...]
  /external/v8/src/x64/
assembler-x64.cc 315 desc->instr_size = pc_offset();
328 int delta = (m - (pc_offset() & (m - 1))) & (m - 1);
349 DCHECK(0 <= pos && pos <= pc_offset()); // Position must be valid.
398 bind_to(L, pc_offset());
421 desc.instr_size = pc_offset();
471 int offset = label->pos() - pc_offset() - sizeof(int32_t);
476 label->link_to(pc_offset() - sizeof(int32_t));
479 int32_t current = pc_offset();
838 int offset = L->pos() - pc_offset() - sizeof(int32_t);
843 L->link_to(pc_offset() - sizeof(int32_t))
4677 RelocInfo::WASM_PROTECTED_INSTRUCTION_LANDING, pc_offset, local
    [all...]
  /external/pcre/dist2/src/
pcre2test.c 4657 size_t pc_offset = pc - buffer; local
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-codegen-arm.cc 113 info()->set_prologue_offset(masm_->pc_offset());
232 osr_pc_offset_ = masm()->pc_offset();
304 if (!is_int24((masm()->pc_offset() / Assembler::kInstrSize) +
769 int pc_offset = masm()->pc_offset(); local
772 (mode == Safepoint::kLazyDeopt) ? pc_offset : -1);
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-codegen-arm64.cc 350 int pc_offset = masm()->pc_offset(); local
353 (mode == Safepoint::kLazyDeopt) ? pc_offset : -1);
582 info()->set_prologue_offset(masm_->pc_offset());
683 osr_pc_offset_ = masm()->pc_offset();
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-codegen-ia32.cc 128 info()->set_prologue_offset(masm_->pc_offset());
243 osr_pc_offset_ = masm()->pc_offset();
379 int target_offset = masm()->pc_offset() + Deoptimizer::patch_size();
380 while (masm()->pc_offset() < target_offset) {
682 int pc_offset = masm()->pc_offset(); local
685 (mode == Safepoint::kLazyDeopt) ? pc_offset : -1);
    [all...]

Completed in 750 milliseconds

1 2