HomeSort by relevance Sort by last modified time
    Searched full:pc_offset (Results 1 - 17 of 17) sorted by null

  /external/v8/src/arm/
assembler-arm.cc 426 desc->instr_size = pc_offset();
433 while ((pc_offset() & (m - 1)) != 0) {
554 ASSERT(0 <= pos && pos <= pc_offset()); // must have a valid binding position
592 bind_to(L, pc_offset());
691 BlockConstPoolBefore(pc_offset() + kInstrSize);
811 L->link_to(pc_offset());
816 BlockConstPoolBefore(pc_offset() + kInstrSize);
817 return target_pos - (pc_offset() + kPcLoadDelta);
932 last_bound_pos_ <= (pc_offset() - pattern_size) &&
939 PrintF("%x push(reg)/pop() eliminated\n", pc_offset());
    [all...]
assembler-thumb2.cc 406 desc->instr_size = pc_offset();
413 while ((pc_offset() & (m - 1)) != 0) {
534 ASSERT(0 <= pos && pos <= pc_offset()); // must have a valid binding position
572 bind_to(L, pc_offset());
671 BlockConstPoolBefore(pc_offset() + kInstrSize);
791 L->link_to(pc_offset());
796 BlockConstPoolBefore(pc_offset() + kInstrSize);
797 return target_pos - (pc_offset() + kPcLoadDelta);
912 last_bound_pos_ <= (pc_offset() - pattern_size) &&
919 PrintF("%x push(reg)/pop() eliminated\n", pc_offset());
    [all...]
assembler-arm.h 876 return (pc_offset() - l->pos()) / kInstrSize;
899 int pc_offset() const { return pc_ - buffer_; } function in class:v8::internal::Assembler
925 // Block the emission of the constant pool before pc_offset
926 void BlockConstPoolBefore(int pc_offset) {
927 if (no_const_pool_before_ < pc_offset) no_const_pool_before_ = pc_offset;
    [all...]
assembler-thumb2.h 876 return (pc_offset() - l->pos()) / kInstrSize;
899 int pc_offset() const { return pc_ - buffer_; } function in class:v8::internal::Assembler
925 // Block the emission of the constant pool before pc_offset
926 void BlockConstPoolBefore(int pc_offset) {
927 if (no_const_pool_before_ < pc_offset) no_const_pool_before_ = pc_offset;
    [all...]
regexp-macro-assembler-arm.cc 881 masm_->pc_offset() + Assembler::kPcLoadDelta;
886 masm_->BlockConstPoolBefore(masm_->pc_offset() + Assembler::kInstrSize);
892 masm_->pc_offset() + 2 * Assembler::kInstrSize);
    [all...]
assembler-arm-inl.h 204 if (pc_offset() >= next_buffer_check_) {
assembler-thumb2-inl.h 204 if (pc_offset() >= next_buffer_check_) {
macro-assembler-arm.cc 187 BlockConstPoolBefore(pc_offset() + (targets.length() + 1) * kInstrSize);
    [all...]
  /external/v8/test/cctest/
test-disasm-arm.cc 89 int pc_offset = assm.pc_offset(); \
90 byte *pc = &buffer[pc_offset]; \
  /external/v8/src/x64/
assembler-x64.cc 317 desc->instr_size = pc_offset();
329 while ((pc_offset() & (m - 1)) != 0) {
338 ASSERT(0 <= pos && pos <= pc_offset()); // Position must be valid.
358 bind_to(L, pc_offset());
382 desc.instr_size = pc_offset();
732 int offset = L->pos() - pc_offset() - sizeof(int32_t);
737 L->link_to(pc_offset() - sizeof(int32_t));
740 int32_t current = pc_offset();
1080 int offs = L->pos() - pc_offset();
1097 L->link_to(pc_offset() - sizeof(int32_t))
    [all...]
regexp-macro-assembler-x64.h 218 code_relative_fixup_positions_.Add(masm_->pc_offset());
assembler-x64.h 1126 int pc_offset() const { return static_cast<int>(pc_ - buffer_); } function in class:v8::internal::Assembler
    [all...]
  /external/v8/src/ia32/
assembler-ia32.cc 353 desc->instr_size = pc_offset();
363 while ((pc_offset() & (m - 1)) != 0) {
447 PrintF("%d push/pop (same reg) eliminated\n", pc_offset());
456 PrintF("%d push/pop (reg->reg) eliminated\n", pc_offset());
470 PrintF("%d push/pop (op->reg) eliminated\n", pc_offset());
487 PrintF("%d push/pop (mov-pop) eliminated\n", pc_offset());
502 PrintF("%d push/pop (imm->reg) eliminated\n", pc_offset());
525 PrintF("%d push/pop (imm->reg) eliminated\n", pc_offset());
537 PrintF("%d push/pop (imm->reg) eliminated\n", pc_offset());
811 PrintF("%d push/pop(noreg) eliminated\n", pc_offset());
    [all...]
assembler-ia32-inl.h 275 L->link_to(pc_offset());
assembler-ia32.h 779 int SizeOfCodeGeneratedSince(Label* l) { return pc_offset() - l->pos(); }
796 int pc_offset() const { return pc_ - buffer_; } function in class:v8::internal::Assembler
  /external/v8/src/mips/
assembler-mips.cc 286 desc->instr_size = pc_offset();
388 ASSERT(0 <= pos && pos <= pc_offset()); // must have a valid binding position
426 bind_to(L, pc_offset());
548 L->link_to(pc_offset());
551 int32_t offset = target_pos - (pc_offset() + kBranchPCOffset);
1083 desc.instr_size = pc_offset();
assembler-mips.h 507 return (pc_offset() - l->pos()) / kInstrSize;
523 int32_t pc_offset() const { return pc_ - buffer_; } function in class:v8::internal::Assembler

Completed in 1337 milliseconds