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

1 2 3 4 5

  /external/v8/src/crankshaft/arm64/
delayed-masm-arm64.cc 22 DCHECK(pending_pc_ == masm_->pc_offset());
61 pending_pc_ = masm_->pc_offset();
76 DCHECK(pending_pc_ == masm_->pc_offset());
93 pending_pc_ = masm_->pc_offset();
105 DCHECK(pending_pc_ == masm_->pc_offset());
113 DCHECK(pending_pc_ == masm_->pc_offset());
128 pending_pc_ = masm_->pc_offset();
140 DCHECK(pending_pc_ == masm_->pc_offset());
145 DCHECK(pending_pc_ == masm_->pc_offset());
157 pending_pc_ = masm_->pc_offset();
    [all...]
  /external/v8/src/compiler/
code-generator.h 149 int BuildTranslation(Instruction* instr, int pc_offset,
180 int pc_offset() const { return pc_offset_; } function in struct:v8::internal::compiler::final::DeoptimizationState
182 DeoptimizationState(BailoutId bailout_id, int translation_id, int pc_offset)
185 pc_offset_(pc_offset) {}
196 int pc_offset; member in struct:v8::internal::compiler::final::HandlerInfo
code-generator.cc 83 info->set_prologue_offset(masm()->pc_offset());
161 int target_offset = masm()->pc_offset() + Deoptimizer::patch_size();
162 while (masm()->pc_offset() < target_offset) {
197 table->SetReturnOffset(static_cast<int>(i), handlers_[i].pc_offset);
408 data->SetPc(i, Smi::FromInt(deoptimization_state->pc_offset()));
434 handlers_.push_back({caught, GetLabel(handler_rpo), masm()->pc_offset()});
448 int pc_offset = masm()->pc_offset(); local
449 int deopt_state_id = BuildTranslation(instr, pc_offset, frame_state_offset,
605 int CodeGenerator::BuildTranslation(Instruction* instr, int pc_offset,
    [all...]
  /external/v8/src/profiler/
profile-generator.cc 26 void JITLineInfoTable::SetPosition(int pc_offset, int line) {
27 DCHECK(pc_offset >= 0);
29 if (GetSourceLineNumber(pc_offset) != line) {
30 pc_offset_map_.insert(std::make_pair(pc_offset, line));
35 int JITLineInfoTable::GetSourceLineNumber(int pc_offset) const {
36 PcOffsetMap::const_iterator it = pc_offset_map_.lower_bound(pc_offset);
96 int CodeEntry::GetSourceLine(int pc_offset) const {
98 return line_info_->GetSourceLineNumber(pc_offset);
613 int pc_offset = local
615 src_line = pc_entry->GetSourceLine(pc_offset);
646 int pc_offset = local
    [all...]
cpu-profiler-inl.h 38 if (entry != NULL) entry->set_deopt_info(deopt_reason, position, pc_offset);
profile-generator.h 25 void SetPosition(int pc_offset, int line);
26 int GetSourceLineNumber(int pc_offset) const;
31 // pc_offset -> source line
67 size_t pc_offset) {
71 pc_offset_ = pc_offset;
100 int GetSourceLine(int pc_offset) const;
  /external/v8/test/cctest/
test-disasm-ppc.cc 80 int pc_offset = assm.pc_offset(); \
81 byte* progcounter = &buffer[pc_offset]; \
test-disasm-mips.cc 86 int pc_offset = assm.pc_offset(); \
87 byte *progcounter = &buffer[pc_offset]; \
103 int pc_offset = assm.pc_offset(); \
104 byte *progcounter = &buffer[pc_offset]; \
121 int pc_offset = assm.pc_offset(); \
122 byte *progcounter = &buffer[pc_offset]; \
133 int pc_offset = assm.pc_offset();
    [all...]
test-disasm-mips64.cc 86 int pc_offset = assm.pc_offset(); \
87 byte *progcounter = &buffer[pc_offset]; \
103 int pc_offset = assm.pc_offset(); \
104 byte *progcounter = &buffer[pc_offset]; \
121 int pc_offset = assm.pc_offset(); \
122 byte *progcounter = &buffer[pc_offset]; \
133 int pc_offset = assm.pc_offset();
    [all...]
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints_test.cc 65 static void CheckPCOffset(InstructionSet isa, Runtime::CalleeSaveType type, size_t pc_offset)
69 EXPECT_EQ(frame_info.GetReturnPcOffset(), 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 383 unsigned pc_offset = static_cast<unsigned>(pc - holder->instruction_start()); local
388 pc = holder->instruction_start() + pc_offset;
815 int pc_offset = static_cast<int>(pc() - code->entry()); local
816 return table->LookupRange(pc_offset, stack_slots, prediction);
999 unsigned pc_offset; local
1036 int pc_offset = static_cast<int>(pc() - code->entry()); 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 DCHECK_GE(pc_offset, prev_pc_offset);
39 int pc_delta = pc_offset - prev_pc_offset;
48 prev_pc_offset = pc_offset;
384 __ push(Operand(ebx, FrameDescription::pc_offset()));
406 int start = masm()->pc_offset();
410 DCHECK(masm()->pc_offset() - start == table_entry_size_);
  /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;
421 __ push(Operand(ebx, FrameDescription::pc_offset()));
443 int start = masm()->pc_offset();
447 DCHECK(masm()->pc_offset() - start == table_entry_size_);
  /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/heap/
heap-inl.h 674 void Heap::SetArgumentsAdaptorDeoptPCOffset(int pc_offset) {
676 set_arguments_adaptor_deopt_pc_offset(Smi::FromInt(pc_offset));
680 void Heap::SetConstructStubDeoptPCOffset(int pc_offset) {
682 set_construct_stub_deopt_pc_offset(Smi::FromInt(pc_offset));
686 void Heap::SetGetterStubDeoptPCOffset(int pc_offset) {
688 set_getter_stub_deopt_pc_offset(Smi::FromInt(pc_offset));
692 void Heap::SetSetterStubDeoptPCOffset(int pc_offset) {
694 set_setter_stub_deopt_pc_offset(Smi::FromInt(pc_offset));
  /external/v8/src/arm/
deoptimizer-arm.cc 304 __ ldr(r6, MemOperand(r2, FrameDescription::pc_offset()));
336 int start = masm()->pc_offset();
340 DCHECK(masm()->pc_offset() - start == table_entry_size_);
  /external/v8/src/arm64/
deoptimizer-arm64.cc 310 __ Ldr(lr, MemOperand(last_output_frame, FrameDescription::pc_offset()));
337 int start = masm()->pc_offset();
341 DCHECK(masm()->pc_offset() - start == table_entry_size_);
assembler-arm64.cc 302 int offset = assm_->pc_offset();
326 return assm_->pc_offset() - first_use_;
364 prologue_size += IsAligned(assm_->pc_offset() + prologue_size, 8) ?
450 (IsAligned(assm_->pc_offset(), 8) ? 0 : 1);
496 DCHECK(IsAligned(assm_->pc_offset(), 8));
587 desc->instr_size = pc_offset();
599 while ((pc_offset() & (m - 1)) != 0) {
720 // |---------------------->| pc_offset
737 DCHECK(linkoffset < pc_offset());
763 label->bind_to(pc_offset());
    [all...]
  /external/v8/src/ppc/
deoptimizer-ppc.cc 309 __ LoadP(r9, MemOperand(r5, FrameDescription::pc_offset()));
341 int start = masm()->pc_offset();
345 DCHECK(masm()->pc_offset() - start == table_entry_size_);
assembler-ppc.h 421 // Links a label at the current pc_offset(). If already bound, returns the
423 // Otherwise, returns the current pc_offset().
436 return link(L) - pc_offset();
451 int pc_offset, int offset, ConstantPoolEntry::Access access,
587 int pos = pc_offset();
588 int cmpi_pos = pc_offset() - kInstrSize;
    [all...]
  /external/v8/src/runtime/
runtime-compiler.cc 231 uint32_t pc_offset = local
241 BailoutId ast_id = caller_code->TranslatePcOffsetToAstId(pc_offset);
255 BackEdgeTable::AddStackCheck(caller_code, pc_offset);
  /external/v8/src/x64/
assembler-x64.cc 290 desc->instr_size = pc_offset();
301 int delta = (m - (pc_offset() & (m - 1))) & (m - 1);
322 DCHECK(0 <= pos && pos <= pc_offset()); // Position must be valid.
371 bind_to(L, pc_offset());
393 desc.instr_size = pc_offset();
443 int offset = label->pos() - pc_offset() - sizeof(int32_t);
448 label->link_to(pc_offset() - sizeof(int32_t));
451 int32_t current = pc_offset();
810 int offset = L->pos() - pc_offset() - sizeof(int32_t);
815 L->link_to(pc_offset() - sizeof(int32_t))
    [all...]
deoptimizer-x64.cc 290 __ PushQuad(Operand(rbx, FrameDescription::pc_offset()));
323 int start = masm()->pc_offset();
327 DCHECK(masm()->pc_offset() - start == table_entry_size_);
  /external/v8/src/full-codegen/
full-codegen.cc 83 unsigned offset = masm()->pc_offset();
222 StateField::encode(state) | PcField::encode(masm_->pc_offset());
236 DCHECK(masm_->pc_offset() > 0);
240 { ast_id, static_cast<unsigned>(masm_->pc_offset()), depth };
    [all...]

Completed in 426 milliseconds

1 2 3 4 5