Searched refs:pc_offset (Results 1 – 14 of 14) sorted by relevance
/external/webkit/V8Binding/v8/src/arm/ |
D | assembler-arm.cc | 302 desc->instr_size = pc_offset(); in GetCode() 309 while ((pc_offset() & (m - 1)) != 0) { in Align() 430 ASSERT(0 <= pos && pos <= pc_offset()); // must have a valid binding position in bind_to() 468 bind_to(L, pc_offset()); in bind() 562 BlockConstPoolBefore(pc_offset() + kInstrSize); in addrmod1() 682 L->link_to(pc_offset()); in branch_offset() 687 BlockConstPoolBefore(pc_offset() + kInstrSize); in branch_offset() 688 return target_pos - (pc_offset() + kPcLoadDelta); in branch_offset() 788 last_bound_pos_ <= (pc_offset() - pattern_size) && in add() 795 PrintF("%x push(reg)/pop() eliminated\n", pc_offset()); in add() [all …]
|
D | regexp-macro-assembler-arm.cc | 843 masm_->pc_offset() + Assembler::kPcLoadDelta; in PushBacktrack() 848 masm_->BlockConstPoolBefore(masm_->pc_offset() + Assembler::kInstrSize); in PushBacktrack() 854 masm_->pc_offset() + 2 * Assembler::kInstrSize); in PushBacktrack() 1116 masm_->pc_offset() + kBacktrackConstantPoolSize * Assembler::kInstrSize); in EmitBacktrackConstantPool() 1117 backtrack_constant_pool_offset_ = masm_->pc_offset(); in EmitBacktrackConstantPool() 1131 if (masm_->pc_offset() - offset < 2 * KB) { in GetBacktrackConstantPoolEntry()
|
D | assembler-arm.h | 666 int pc_offset() const { return pc_ - buffer_; } in pc_offset() function 693 void BlockConstPoolBefore(int pc_offset) { in BlockConstPoolBefore() argument 694 if (no_const_pool_before_ < pc_offset) no_const_pool_before_ = pc_offset; in BlockConstPoolBefore()
|
D | assembler-arm-inl.h | 207 if (pc_offset() >= next_buffer_check_) { in CheckBuffer()
|
D | macro-assembler-arm.cc | 169 BlockConstPoolBefore(pc_offset() + (targets.length() + 1) * sizeof(Instr)); in SmiJumpTable() 1055 Unresolved entry = { pc_offset() - sizeof(Instr), flags, name }; in InvokeBuiltin() 1073 Unresolved entry = { pc_offset() - sizeof(Instr), flags, name }; in GetBuiltinEntry()
|
/external/webkit/V8Binding/v8/src/ia32/ |
D | assembler-ia32.cc | 330 desc->instr_size = pc_offset(); in GetCode() 340 while ((pc_offset() & (m - 1)) != 0) { in Align() 424 PrintF("%d push/pop (same reg) eliminated\n", pc_offset()); in pop() 433 PrintF("%d push/pop (reg->reg) eliminated\n", pc_offset()); in pop() 447 PrintF("%d push/pop (op->reg) eliminated\n", pc_offset()); in pop() 464 PrintF("%d push/pop (mov-pop) eliminated\n", pc_offset()); in pop() 479 PrintF("%d push/pop (imm->reg) eliminated\n", pc_offset()); in pop() 502 PrintF("%d push/pop (imm->reg) eliminated\n", pc_offset()); in pop() 514 PrintF("%d push/pop (imm->reg) eliminated\n", pc_offset()); in pop() 778 PrintF("%d push/pop(noreg) eliminated\n", pc_offset()); in add() [all …]
|
D | assembler-ia32-inl.h | 269 L->link_to(pc_offset()); in emit_disp()
|
D | assembler-ia32.h | 730 int SizeOfCodeGeneratedSince(Label* l) { return pc_offset() - l->pos(); } in SizeOfCodeGeneratedSince() 747 int pc_offset() const { return pc_ - buffer_; } in pc_offset() function
|
D | macro-assembler-ia32.cc | 1053 Unresolved entry = { pc_offset() - sizeof(int32_t), flags, name }; in InvokeBuiltin() 1072 Unresolved entry = { pc_offset() - sizeof(int32_t), flags, name }; in GetBuiltinEntry()
|
/external/webkit/V8Binding/v8/src/x64/ |
D | assembler-x64.cc | 320 desc->instr_size = pc_offset(); in GetCode() 331 while ((pc_offset() & (m - 1)) != 0) { in Align() 340 ASSERT(0 <= pos && pos <= pc_offset()); // Position must be valid. in bind_to() 360 bind_to(L, pc_offset()); in bind() 384 desc.instr_size = pc_offset(); in GrowBuffer() 733 int offset = L->pos() - pc_offset() - sizeof(int32_t); in call() 738 L->link_to(pc_offset() - sizeof(int32_t)); in call() 741 int32_t current = pc_offset(); in call() 1019 int offs = L->pos() - pc_offset(); in j() 1036 L->link_to(pc_offset() - sizeof(int32_t)); in j() [all …]
|
D | regexp-macro-assembler-x64.h | 219 code_relative_fixup_positions_.Add(masm_->pc_offset()); in MarkPositionForCodeRelativeFixup()
|
D | assembler-x64.h | 1024 int SizeOfCodeGeneratedSince(Label* l) { return pc_offset() - l->pos(); } in SizeOfCodeGeneratedSince() 1045 int pc_offset() const { return pc_ - buffer_; } in pc_offset() function
|
D | macro-assembler-x64.cc | 360 Unresolved entry = { pc_offset() - sizeof(intptr_t), flags, name }; in GetBuiltinEntry() 822 { pc_offset() - kPatchReturnSequenceLength, flags, name }; in InvokeBuiltin()
|
/external/webkit/V8Binding/v8/test/cctest/ |
D | test-disasm-arm.cc | 89 int pc_offset = assm.pc_offset(); \ 90 byte *pc = &buffer[pc_offset]; \
|