HomeSort by relevance Sort by last modified time
    Searched defs:kInstrSize (Results 1 - 8 of 8) sorted by null

  /external/v8/src/arm/
deoptimizer-arm.cc 43 return kCallInstructionSizeInWords * Assembler::kInstrSize;
74 int call_size_in_words = call_size_in_bytes / Assembler::kInstrSize;
75 ASSERT(call_size_in_bytes % Assembler::kInstrSize == 0);
119 const int kInstrSize = Assembler::kInstrSize;
125 ASSERT(Memory::int32_at(pc_after - kInstrSize) == kBlxIp);
127 Assembler::instr_at(pc_after - 2 * kInstrSize)));
130 Memory::int32_at(pc_after - 3 * kInstrSize));
133 Memory::int32_at(pc_after - 3 * kInstrSize));
145 CodePatcher patcher(pc_after - 3 * kInstrSize, 1)
    [all...]
assembler-arm.h 703 static const int kInstrSize = sizeof(Instr);
712 static const int kCallTargetAddressOffset = 2 * kInstrSize;
718 static const int kCallTargetAddressOffset = kInstrSize;
727 static const int kPatchReturnSequenceAddressOffset = 0 * kInstrSize;
732 static const int kPatchReturnSequenceAddressOffset = kInstrSize;
741 static const int kPatchDebugBreakSlotAddressOffset = 0 * kInstrSize;
746 static const int kPatchDebugBreakSlotAddressOffset = kInstrSize;
756 kDebugBreakSlotInstructions * kInstrSize;
    [all...]
constants-arm.h 513 kInstrSize = 4,
simulator-arm.cc 109 reinterpret_cast<char**>(sim_->get_pc() + Instruction::kInstrSize);
127 sim_->set_pc(sim_->get_pc() + 2 * Instruction::kInstrSize);
141 + Instruction::kInstrSize);
152 sim_->set_pc(sim_->get_pc() + 2 * Instruction::kInstrSize);
438 end = cur + (10 * Instruction::kInstrSize);
447 end = cur + (10 * Instruction::kInstrSize);
455 end = cur + (value * Instruction::kInstrSize);
463 end = cur + (value2 * Instruction::kInstrSize);
506 intptr_t stop_pc = sim_->get_pc() - 2 * Instruction::kInstrSize;
509 reinterpret_cast<Instruction*>(stop_pc + Instruction::kInstrSize);
    [all...]
  /external/v8/src/mips/
deoptimizer-mips.cc 41 return kCallInstructionSizeInWords * Assembler::kInstrSize;
72 int call_size_in_words = call_size_in_bytes / Assembler::kInstrSize;
73 ASSERT(call_size_in_bytes % Assembler::kInstrSize == 0);
119 const int kInstrSize = Assembler::kInstrSize;
130 ASSERT(Assembler::IsBeq(Assembler::instr_at(pc_after - 5 * kInstrSize)));
133 CodePatcher patcher(pc_after - 6 * kInstrSize, 1);
139 Assembler::target_address_at(pc_after - 4 * kInstrSize)) ==
141 Assembler::set_target_address_at(pc_after - 4 * kInstrSize,
154 unoptimized_code, pc_after - 4 * kInstrSize, replacement_code)
    [all...]
assembler-mips.h 581 instruction_payload - kInstructionsFor32BitConstant * kInstrSize,
593 static const int kInstrSize = sizeof(Instr);
617 static const int kCallTargetAddressOffset = 4 * kInstrSize;
625 static const int kPatchDebugBreakSlotAddressOffset = 0 * kInstrSize;
636 kDebugBreakSlotInstructions * kInstrSize;
864 return SizeOfCodeGeneratedSince(label) / kInstrSize;
    [all...]
simulator-mips.cc 130 reinterpret_cast<char**>(sim_->get_pc() + Instr::kInstrSize);
164 Instruction::kInstrSize);
170 sim_->set_pc(sim_->get_pc() + 2 * Instruction::kInstrSize);
413 sim_->set_pc(sim_->get_pc() + Instruction::kInstrSize);
555 end = cur + (10 * Instruction::kInstrSize);
564 end = cur + (10 * Instruction::kInstrSize);
572 end = cur + (value * Instruction::kInstrSize);
580 end = cur + (value2 * Instruction::kInstrSize);
588 cur += Instruction::kInstrSize;
616 2 * Instruction::kInstrSize;
    [all...]
assembler-mips.cc 197 CPU::FlushICache(pc_, instruction_count * Assembler::kInstrSize);
679 Instr instr_lui = instr_at(pos + 0 * Assembler::kInstrSize);
680 Instr instr_ori = instr_at(pos + 1 * Assembler::kInstrSize);
731 Instr instr_lui = instr_at(pos + 0 * Assembler::kInstrSize);
732 Instr instr_ori = instr_at(pos + 1 * Assembler::kInstrSize);
740 instr_at_put(pos + 0 * Assembler::kInstrSize,
742 instr_at_put(pos + 1 * Assembler::kInstrSize,
840 return ((pc_offset() - L->pos()) < kMaxBranchOffset - 4 * kInstrSize);
1131 uint32_t ipc = reinterpret_cast<uint32_t>(pc_ + 1 * kInstrSize);
    [all...]

Completed in 63 milliseconds