Searched refs:pc_offset (Results 26 - 50 of 97) sorted by relevance

1234

/external/chromium_org/v8/src/
H A Dfull-codegen.h892 uint32_t pc_offset(uint32_t index) { function in class:v8::internal::BackEdgeTable
897 return instruction_start_ + pc_offset(index);
921 static void AddStackCheck(Handle<Code> code, uint32_t pc_offset);
924 static void RemoveStackCheck(Handle<Code> code, uint32_t pc_offset);
H A Dlithium-codegen.cc103 last_lazy_deopt_pc_ = masm()->pc_offset();
H A Dlog.cc481 int pc_offset,
556 int pc_offset,
563 event.line_info.offset = pc_offset;
1361 int pc_offset,
1364 pc_offset,
1371 int pc_offset,
1374 pc_offset,
554 AddCodeLinePosInfoEvent( void* jit_handler_data, int pc_offset, int position, JitCodeEvent::PositionType position_type) argument
1360 CodeLinePosInfoAddPositionEvent(void* jit_handler_data, int pc_offset, int position) argument
1370 CodeLinePosInfoAddStatementPositionEvent(void* jit_handler_data, int pc_offset, int position) argument
H A Ddebug.cc1733 // Figure out how many bytes of "pc_offset" correspond to actual code by
1737 static int ComputeCodeOffsetFromPcOffset(Code *code, int pc_offset) { argument
1740 DCHECK_LE(0, pc_offset);
1741 DCHECK_LT(pc_offset, code->instruction_end() - code->instruction_start());
1745 byte *pc = code->instruction_start() + pc_offset;
1746 int code_offset = pc_offset;
1778 int pc_offset = code_offset + reloc; local
1780 DCHECK_LT(code->instruction_start() + pc_offset, code->instruction_end());
1782 return pc_offset;
1901 int pc_offset local
2010 int pc_offset = gen->continuation(); local
[all...]
H A Dassembler.cc160 start_offset_(assembler->pc_offset()),
169 CHECK_EQ(expected_size_, assembler_->pc_offset() - start_offset_);
1530 assembler_->pc_offset(),
1542 assembler_->pc_offset(),
H A Dlithium.h425 int pc_offset() const { return pc_offset_; } function in class:v8::internal::FINAL
490 int pc_offset) {
494 pc_offset_ = pc_offset;
488 Register(int deoptimization_index, int translation_index, int pc_offset) argument
H A Dframes.cc395 unsigned pc_offset = static_cast<unsigned>(pc - holder->instruction_start()); local
400 pc = holder->instruction_start() + pc_offset;
1013 unsigned pc_offset = local
1015 DCHECK(pc_offset > 0);
1017 FrameSummary summary(receiver, function, code, pc_offset, is_constructor);
/external/chromium_org/v8/src/x64/
H A Dregexp-macro-assembler-x64.h216 code_relative_fixup_positions_.Add(masm_.pc_offset(), zone());
/external/chromium_org/v8/src/heap/
H A Dheap.h1243 void SetArgumentsAdaptorDeoptPCOffset(int pc_offset) { argument
1245 set_arguments_adaptor_deopt_pc_offset(Smi::FromInt(pc_offset));
1248 void SetConstructStubDeoptPCOffset(int pc_offset) { argument
1250 set_construct_stub_deopt_pc_offset(Smi::FromInt(pc_offset));
1253 void SetGetterStubDeoptPCOffset(int pc_offset) { argument
1255 set_getter_stub_deopt_pc_offset(Smi::FromInt(pc_offset));
1258 void SetSetterStubDeoptPCOffset(int pc_offset) { argument
1260 set_setter_stub_deopt_pc_offset(Smi::FromInt(pc_offset));
/external/chromium_org/v8/src/ia32/
H A Dassembler-ia32.cc268 desc->instr_size = pc_offset();
277 int addr = pc_offset();
1305 DCHECK(0 <= pos && pos <= pc_offset()); // must have a valid binding position
1344 bind_to(L, pc_offset());
1353 int offs = L->pos() - pc_offset();
1415 int offs = L->pos() - pc_offset();
1470 int offs = L->pos() - pc_offset();
2521 desc.instr_size = pc_offset();
/external/chromium_org/v8/src/mips/
H A Dassembler-mips.h946 return pc_offset() - label->pos();
1130 // Block the emission of the trampoline pool before pc_offset.
1131 void BlockTrampolinePoolBefore(int pc_offset) { argument
1132 if (no_trampoline_pool_before_ < pc_offset)
1133 no_trampoline_pool_before_ = pc_offset;
H A Dassembler-mips-inl.h432 if (pc_offset() >= next_buffer_check_) {
H A Ddeoptimizer-mips.cc292 __ lw(t2, MemOperand(a2, FrameDescription::pc_offset()));
/external/chromium_org/v8/test/cctest/
H A Dtest-disasm-arm.cc81 int pc_offset = assm.pc_offset(); \
82 byte *progcounter = &buffer[pc_offset]; \
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugLine.cpp324 uint16_t pc_offset = debug_line_data.GetU16(&offset); local
325 log->Printf( "0x%8.8x: DW_LNS_fixed_advance_pc (0x%4.4x)", op_offset, pc_offset);
326 row.address += pc_offset;
/external/chromium_org/v8/src/arm64/
H A Dassembler-arm64.h926 DCHECK(pc_offset() >= label->pos());
927 DCHECK(pc_offset() < buffer_size_);
928 return pc_offset() - label->pos();
2078 next_constant_pool_check_ = pc_offset() + instructions * kInstructionSize;
2207 // pc_offset() for convenience.
2276 DCHECK((pc_offset() + kGap) == buffer_size_);
/external/chromium_org/v8/src/mips64/
H A Dassembler-mips64-inl.h429 if (pc_offset() >= next_buffer_check_) {
H A Dassembler-mips64.h982 return pc_offset() - label->pos();
1166 // Block the emission of the trampoline pool before pc_offset.
1167 void BlockTrampolinePoolBefore(int pc_offset) { argument
1168 if (no_trampoline_pool_before_ < pc_offset)
1169 no_trampoline_pool_before_ = pc_offset;
H A Ddeoptimizer-mips64.cc296 __ ld(a6, MemOperand(a2, FrameDescription::pc_offset()));
/external/chromium_org/v8/src/ic/arm/
H A Dhandler-compiler-arm.cc45 masm->isolate()->heap()->SetGetterStubDeoptPCOffset(masm->pc_offset());
82 masm->isolate()->heap()->SetSetterStubDeoptPCOffset(masm->pc_offset());
/external/chromium_org/v8/src/ic/arm64/
H A Dhandler-compiler-arm64.cc239 masm->isolate()->heap()->SetSetterStubDeoptPCOffset(masm->pc_offset());
273 masm->isolate()->heap()->SetGetterStubDeoptPCOffset(masm->pc_offset());
/external/chromium_org/v8/src/ic/ia32/
H A Dhandler-compiler-ia32.cc40 masm->isolate()->heap()->SetGetterStubDeoptPCOffset(masm->pc_offset());
243 masm->isolate()->heap()->SetSetterStubDeoptPCOffset(masm->pc_offset());
/external/chromium_org/v8/src/ic/mips/
H A Dhandler-compiler-mips.cc45 masm->isolate()->heap()->SetGetterStubDeoptPCOffset(masm->pc_offset());
82 masm->isolate()->heap()->SetSetterStubDeoptPCOffset(masm->pc_offset());
/external/chromium_org/v8/src/ic/mips64/
H A Dhandler-compiler-mips64.cc45 masm->isolate()->heap()->SetGetterStubDeoptPCOffset(masm->pc_offset());
82 masm->isolate()->heap()->SetSetterStubDeoptPCOffset(masm->pc_offset());
/external/chromium_org/v8/src/ic/x64/
H A Dhandler-compiler-x64.cc230 masm->isolate()->heap()->SetSetterStubDeoptPCOffset(masm->pc_offset());
269 masm->isolate()->heap()->SetGetterStubDeoptPCOffset(masm->pc_offset());

Completed in 683 milliseconds

1234