Searched defs:kInstrSize (Results 1 - 13 of 13) sorted by relevance

/external/valgrind/VEX/priv/
H A Dhost_tilegx_defs.c2500 UInt kInstrSize = 8; local
2501 return 10*kInstrSize;
H A Dhost_mips_defs.c3909 UInt kInstrSize = 4; local
3910 return 7*kInstrSize;
/external/v8/src/mips/
H A Dassembler-mips.h538 instruction_payload - kInstructionsFor32BitConstant * kInstrSize,
544 static const int kInstrSize = sizeof(Instr); member in class:v8::internal::Assembler
568 static const int kCallTargetAddressOffset = 4 * kInstrSize;
576 static const int kPatchDebugBreakSlotAddressOffset = 0 * kInstrSize;
582 static const int kPatchDebugBreakSlotReturnOffset = 4 * kInstrSize;
589 kDebugBreakSlotInstructions * kInstrSize;
951 return SizeOfCodeGeneratedSince(label) / kInstrSize;
1190 static const int kCheckConstInterval = kCheckConstIntervalInst * kInstrSize;
1297 // Space for trampoline slots is equal to slot_count * 2 * kInstrSize.
1300 // label_count * kInstrSize
[all...]
H A Dsimulator-mips.cc109 reinterpret_cast<char**>(sim_->get_pc() + Instr::kInstrSize);
143 Instruction::kInstrSize);
149 sim_->set_pc(sim_->get_pc() + 2 * Instruction::kInstrSize);
454 sim_->set_pc(sim_->get_pc() + Instruction::kInstrSize);
620 end = cur + (10 * Instruction::kInstrSize);
629 end = cur + (10 * Instruction::kInstrSize);
637 end = cur + (value * Instruction::kInstrSize);
645 end = cur + (value2 * Instruction::kInstrSize);
653 cur += Instruction::kInstrSize;
681 2 * Instruction::kInstrSize;
1780 set_pc(get_pc() + 2 * Instruction::kInstrSize); member in class:v8::internal::Instruction
[all...]
H A Dassembler-mips.cc225 CpuFeatures::FlushICache(pc_, instruction_count * Assembler::kInstrSize);
690 Instr instr_lui = instr_at(pos + 0 * Assembler::kInstrSize);
691 Instr instr_ori = instr_at(pos + 1 * Assembler::kInstrSize);
742 Instr instr_lui = instr_at(pos + 0 * Assembler::kInstrSize);
743 Instr instr_ori = instr_at(pos + 1 * Assembler::kInstrSize);
751 instr_at_put(pos + 0 * Assembler::kInstrSize,
753 instr_at_put(pos + 1 * Assembler::kInstrSize,
852 return ((pc_offset() - L->pos()) < kMaxBranchOffset - 4 * kInstrSize);
1396 uint32_t ipc = reinterpret_cast<uint32_t>(pc_ + 1 * kInstrSize);
1422 uint32_t ipc = reinterpret_cast<uint32_t>(pc_ + 1 * kInstrSize);
2492 BlockTrampolinePoolBefore(pc_offset() + instructions * kInstrSize); local
[all...]
H A Dfull-codegen-mips.cc4898 static const int kInstrSize = Assembler::kInstrSize; local
4899 Address branch_address = pc - 6 * kInstrSize;
4925 Address pc_immediate_load_address = pc - 4 * kInstrSize;
4940 static const int kInstrSize = Assembler::kInstrSize; local
4941 Address branch_address = pc - 6 * kInstrSize;
4942 Address pc_immediate_load_address = pc - 4 * kInstrSize;
4944 DCHECK(Assembler::IsBeq(Assembler::instr_at(pc - 5 * kInstrSize)));
/external/v8/src/mips64/
H A Dassembler-mips64.h528 instruction_payload - kInstructionsFor64BitConstant * kInstrSize,
534 static const int kInstrSize = sizeof(Instr); member in class:v8::internal::Assembler
559 static const int kCallTargetAddressOffset = 6 * kInstrSize;
567 static const int kPatchDebugBreakSlotAddressOffset = 0 * kInstrSize;
573 static const int kPatchDebugBreakSlotReturnOffset = 6 * kInstrSize;
580 kDebugBreakSlotInstructions * kInstrSize;
987 return SizeOfCodeGeneratedSince(label) / kInstrSize;
1226 static const int kCheckConstInterval = kCheckConstIntervalInst * kInstrSize;
1334 // Space for trampoline slots is equal to slot_count * 2 * kInstrSize.
1337 // label_count * kInstrSize
[all...]
H A Dsimulator-mips64.cc125 reinterpret_cast<char**>(sim_->get_pc() + Instr::kInstrSize);
160 Instruction::kInstrSize);
167 sim_->set_pc(sim_->get_pc() + 3 * Instruction::kInstrSize);
418 sim_->set_pc(sim_->get_pc() + Instruction::kInstrSize);
550 end = cur + (10 * Instruction::kInstrSize);
559 end = cur + (10 * Instruction::kInstrSize);
567 end = cur + (value * Instruction::kInstrSize);
575 end = cur + (value2 * Instruction::kInstrSize);
583 cur += Instruction::kInstrSize;
611 2 * Instruction::kInstrSize;
1845 set_pc(get_pc() + 2 * Instruction::kInstrSize); member in class:v8::internal::Instruction
[all...]
H A Dassembler-mips64.cc203 CpuFeatures::FlushICache(pc_, instruction_count * Assembler::kInstrSize);
661 Instr instr_lui = instr_at(pos + 0 * Assembler::kInstrSize);
662 Instr instr_ori = instr_at(pos + 1 * Assembler::kInstrSize);
663 Instr instr_ori2 = instr_at(pos + 3 * Assembler::kInstrSize);
720 Instr instr_lui = instr_at(pos + 0 * Assembler::kInstrSize);
721 Instr instr_ori = instr_at(pos + 1 * Assembler::kInstrSize);
722 Instr instr_ori2 = instr_at(pos + 3 * Assembler::kInstrSize);
733 instr_at_put(pos + 0 * Assembler::kInstrSize,
735 instr_at_put(pos + 1 * Assembler::kInstrSize,
737 instr_at_put(pos + 3 * Assembler::kInstrSize,
2731 BlockTrampolinePoolBefore(pc_offset() + instructions * kInstrSize); local
[all...]
H A Dfull-codegen-mips64.cc4899 static const int kInstrSize = Assembler::kInstrSize; local
4900 Address branch_address = pc - 8 * kInstrSize;
4930 Address pc_immediate_load_address = pc - 6 * kInstrSize;
4945 static const int kInstrSize = Assembler::kInstrSize; local
4946 Address branch_address = pc - 8 * kInstrSize;
4947 Address pc_immediate_load_address = pc - 6 * kInstrSize;
4949 DCHECK(Assembler::IsBeq(Assembler::instr_at(pc - 7 * kInstrSize)));
/external/v8/src/arm/
H A Dconstants-arm.h427 kInstrSize = 4, enumerator in enum:v8::internal::Instruction::__anon14780
H A Dassembler-arm.h798 static const int kInstrSize = sizeof(Instr); member in class:v8::internal::Assembler
805 static const int kPatchReturnSequenceAddressOffset = 0 * kInstrSize;
812 static const int kPatchDebugBreakSlotAddressOffset = 0 * kInstrSize;
814 static const int kPatchDebugBreakSlotReturnOffset = 2 * kInstrSize;
823 kDebugBreakSlotInstructions * kInstrSize;
1323 return SizeOfCodeGeneratedSince(label) / kInstrSize;
1470 static const int kMaxNumPending32RelocInfo = kMaxDistToIntPool/kInstrSize;
1471 static const int kMaxNumPending64RelocInfo = kMaxDistToFPPool/kInstrSize;
1525 int start = pc_offset() + kInstrSize + 2 * kPointerSize;
1576 static const int kCheckPoolInterval = kCheckPoolIntervalInst * kInstrSize;
[all...]
H A Dsimulator-arm.cc88 reinterpret_cast<char**>(sim_->get_pc() + Instruction::kInstrSize);
106 sim_->set_pc(sim_->get_pc() + 2 * Instruction::kInstrSize);
120 + Instruction::kInstrSize);
131 sim_->set_pc(sim_->get_pc() + 2 * Instruction::kInstrSize);
418 end = cur + (10 * Instruction::kInstrSize);
427 end = cur + (10 * Instruction::kInstrSize);
435 end = cur + (value * Instruction::kInstrSize);
443 end = cur + (value2 * Instruction::kInstrSize);
486 intptr_t stop_pc = sim_->get_pc() - 2 * Instruction::kInstrSize;
489 reinterpret_cast<Instruction*>(stop_pc + Instruction::kInstrSize);
1907 set_pc(get_pc() + 2 * Instruction::kInstrSize); member in class:v8::internal::Instruction
3655 set_pc(get_pc() + 2 * Instruction::kInstrSize); member in class:v8::internal::Instruction
[all...]

Completed in 404 milliseconds