HomeSort by relevance Sort by last modified time
    Searched refs:kInstrSize (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/v8/src/arm/
assembler-arm-inl.h 208 static const int kNoCodeAgeSequenceLength = 3 * Assembler::kInstrSize;
221 (kNoCodeAgeSequenceLength - Assembler::kInstrSize)));
229 (kNoCodeAgeSequenceLength - Assembler::kInstrSize)) =
268 Instr next_instr = Assembler::instr_at(pc_ + Assembler::kInstrSize);
378 pc_ += kInstrSize;
416 Address candidate = pc - 2 * Assembler::kInstrSize;
423 candidate -= Assembler::kInstrSize;
426 candidate -= 1 * Assembler::kInstrSize;
428 IsMovT(Memory::int32_at(candidate + Assembler::kInstrSize)));
430 candidate -= 3 * Assembler::kInstrSize;
    [all...]
code-stubs-arm.h 94 Assembler::kInstrSize);
119 PatchBranchIntoNop(&masm, Assembler::kInstrSize);
127 PatchNopIntoBranch(&masm, Assembler::kInstrSize);
132 2 * Assembler::kInstrSize);
deoptimizer-arm.cc 19 return kCallInstructionSizeInWords * Assembler::kInstrSize;
73 int call_size_in_words = call_size_in_bytes / Assembler::kInstrSize;
74 DCHECK(call_size_in_bytes % Assembler::kInstrSize == 0);
assembler-arm.h 713 static const int kInstrSize = sizeof(Instr);
720 static const int kPatchDebugBreakSlotAddressOffset = 2 * kInstrSize;
728 kDebugBreakSlotInstructions * kInstrSize;
    [all...]
simulator-arm.cc 87 reinterpret_cast<char**>(sim_->get_pc() + Instruction::kInstrSize);
105 sim_->set_pc(sim_->get_pc() + 2 * Instruction::kInstrSize);
119 + Instruction::kInstrSize);
130 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);
    [all...]
  /external/v8/src/mips/
assembler-mips-inl.h 126 pc_ + Assembler::kInstructionsFor32BitConstant * Assembler::kInstrSize);
164 Instr instr_lui = Assembler::instr_at(pc + 0 * Assembler::kInstrSize);
165 Instr instr_ori = Assembler::instr_at(pc + 1 * Assembler::kInstrSize);
172 Assembler::instr_at_put(pc + 0 * Assembler::kInstrSize,
174 Assembler::instr_at_put(pc + 1 * Assembler::kInstrSize,
235 Instr instr_lui = Assembler::instr_at(pc_ + 0 * Assembler::kInstrSize);
236 Instr instr_ori = Assembler::instr_at(pc_ + 1 * Assembler::kInstrSize);
295 static const int kNoCodeAgeSequenceLength = 7 * Assembler::kInstrSize;
307 Assembler::target_address_at(pc_ + Assembler::kInstrSize, host_));
314 Assembler::set_target_address_at(isolate_, pc_ + Assembler::kInstrSize, host_
    [all...]
code-stubs-mips.h 125 2 * Assembler::kInstrSize);
150 PatchBranchIntoNop(&masm, 2 * Assembler::kInstrSize);
158 PatchNopIntoBranch(&masm, 2 * Assembler::kInstrSize);
163 4 * Assembler::kInstrSize);
simulator-mips.cc 108 reinterpret_cast<char**>(sim_->get_pc() + Instr::kInstrSize);
142 Instruction::kInstrSize);
148 sim_->set_pc(sim_->get_pc() + 2 * Instruction::kInstrSize);
453 sim_->set_pc(sim_->get_pc() + Instruction::kInstrSize);
619 end = cur + (10 * Instruction::kInstrSize);
628 end = cur + (10 * Instruction::kInstrSize);
636 end = cur + (value * Instruction::kInstrSize);
644 end = cur + (value2 * Instruction::kInstrSize);
652 cur += Instruction::kInstrSize;
680 2 * Instruction::kInstrSize;
    [all...]
deoptimizer-mips.cc 17 return kCallInstructionSizeInWords * Assembler::kInstrSize;
67 int call_size_in_words = call_size_in_bytes / Assembler::kInstrSize;
68 DCHECK(call_size_in_bytes % Assembler::kInstrSize == 0);
331 const int Deoptimizer::table_entry_size_ = 2 * Assembler::kInstrSize;
341 (table_entry_size_ / Assembler::kInstrSize);
assembler-mips.h 421 return pc_offset() - L->pos() < kMaxBranchOffset - 4 * kInstrSize;
425 return pc_offset() - L->pos() < kMaxCompactBranchOffset - 4 * kInstrSize;
498 instruction_payload - kInstructionsFor32BitConstant * kInstrSize, code,
508 static const int kInstrSize = sizeof(Instr);
532 static const int kCallTargetAddressOffset = 4 * kInstrSize;
536 static const int kPatchDebugBreakSlotAddressOffset = 4 * kInstrSize;
544 kDebugBreakSlotInstructions * kInstrSize;
    [all...]
constants-mips.h 851 kInstrSize = 4,
    [all...]
assembler-mips.cc 733 Instr instr_lui = instr_at(pos + 0 * Assembler::kInstrSize);
734 Instr instr_ori = instr_at(pos + 1 * Assembler::kInstrSize);
790 Instr instr_lui = instr_at(pos + 0 * Assembler::kInstrSize);
791 Instr instr_ori = instr_at(pos + 1 * Assembler::kInstrSize);
799 instr_at_put(pos + 0 * Assembler::kInstrSize,
801 instr_at_put(pos + 1 * Assembler::kInstrSize,
899 return pc_offset() - L->pos() < kMaxBranchOffset - 4 * kInstrSize;
905 return pc_offset() - L->pos() < (1 << (bits + 2 - 1)) - 1 - 5 * kInstrSize;
    [all...]
  /external/v8/src/mips64/
assembler-mips64-inl.h 126 // pc_ + Assembler::kInstructionsFor32BitConstant * Assembler::kInstrSize);
128 pc_ + Assembler::kInstructionsFor64BitConstant * Assembler::kInstrSize);
166 Instr instr = Assembler::instr_at(pc + 0 * Assembler::kInstrSize);
234 Instr instr = Assembler::instr_at(pc_ + 0 * Assembler::kInstrSize);
293 static const int kNoCodeAgeSequenceLength = 9 * Assembler::kInstrSize;
305 Assembler::target_address_at(pc_ + Assembler::kInstrSize, host_));
312 Assembler::set_target_address_at(isolate_, pc_ + Assembler::kInstrSize, host_,
354 Instr instr1 = Assembler::instr_at(pc_ + 1 * Assembler::kInstrSize); // ori.
355 Instr instr2 = Assembler::instr_at(pc_ + 2 * Assembler::kInstrSize); // dsll.
356 Instr instr3 = Assembler::instr_at(pc_ + 3 * Assembler::kInstrSize); // ori
    [all...]
code-stubs-mips64.h 126 2 * Assembler::kInstrSize);
151 PatchBranchIntoNop(&masm, 2 * Assembler::kInstrSize);
159 PatchNopIntoBranch(&masm, 2 * Assembler::kInstrSize);
164 4 * Assembler::kInstrSize);
simulator-mips64.cc 124 reinterpret_cast<char**>(sim_->get_pc() + Instr::kInstrSize);
159 Instruction::kInstrSize);
166 sim_->set_pc(sim_->get_pc() + 3 * Instruction::kInstrSize);
417 sim_->set_pc(sim_->get_pc() + Instruction::kInstrSize);
549 end = cur + (10 * Instruction::kInstrSize);
558 end = cur + (10 * Instruction::kInstrSize);
566 end = cur + (value * Instruction::kInstrSize);
574 end = cur + (value2 * Instruction::kInstrSize);
582 cur += Instruction::kInstrSize;
610 2 * Instruction::kInstrSize;
    [all...]
deoptimizer-mips64.cc 17 return kCallInstructionSizeInWords * Assembler::kInstrSize;
67 int call_size_in_words = call_size_in_bytes / Assembler::kInstrSize;
68 DCHECK(call_size_in_bytes % Assembler::kInstrSize == 0);
336 const int Deoptimizer::table_entry_size_ = 2 * Assembler::kInstrSize;
346 (1 << (kImm16Bits - 2)) / (table_entry_size_ / Assembler::kInstrSize);
assembler-mips64.cc 706 Instr instr_lui = instr_at(pos + 0 * Assembler::kInstrSize);
707 Instr instr_ori = instr_at(pos + 1 * Assembler::kInstrSize);
708 Instr instr_ori2 = instr_at(pos + 3 * Assembler::kInstrSize);
778 Instr instr_lui = instr_at(pos + 0 * Assembler::kInstrSize);
779 Instr instr_ori = instr_at(pos + 1 * Assembler::kInstrSize);
780 Instr instr_ori2 = instr_at(pos + 3 * Assembler::kInstrSize);
791 instr_at_put(pos + 0 * Assembler::kInstrSize,
793 instr_at_put(pos + 1 * Assembler::kInstrSize,
795 instr_at_put(pos + 3 * Assembler::kInstrSize,
915 return pc_offset() - L->pos() < kMaxBranchOffset - 4 * kInstrSize;
    [all...]
assembler-mips64.h 424 return pc_offset() - L->pos() < kMaxBranchOffset - 4 * kInstrSize;
428 return pc_offset() - L->pos() < kMaxCompactBranchOffset - 4 * kInstrSize;
504 instruction_payload - kInstructionsFor64BitConstant * kInstrSize, code,
514 static const int kInstrSize = sizeof(Instr);
536 static const int kCallTargetAddressOffset = 6 * kInstrSize;
540 static const int kPatchDebugBreakSlotAddressOffset = 6 * kInstrSize;
548 kDebugBreakSlotInstructions * kInstrSize;
    [all...]
  /external/v8/src/ppc/
code-stubs-ppc.h 113 Assembler::instr_at(stub->instruction_start() + Assembler::kInstrSize);
115 (Assembler::kInstrSize * 2));
137 PatchBranchIntoNop(&masm, Assembler::kInstrSize);
138 PatchBranchIntoNop(&masm, Assembler::kInstrSize * 2);
142 PatchNopIntoBranch(&masm, Assembler::kInstrSize);
146 PatchNopIntoBranch(&masm, Assembler::kInstrSize * 2);
151 stub->instruction_start() + Assembler::kInstrSize,
152 2 * Assembler::kInstrSize);
assembler-ppc-inl.h 161 IsConstantPoolLoadEnd(pc - 3 * kInstrSize, &access)) {
166 return pc - (len + 2) * kInstrSize;
179 return pc + (len + 2) * kInstrSize;
270 static const int kCodeAgingTargetDelta = 1 * Assembler::kInstrSize;
272 (kNoCodeAgeSequenceInstructions * Assembler::kInstrSize);
339 Instr instr1 = Assembler::instr_at(pc_ + 1 * Assembler::kInstrSize);
341 Instr instr3 = Assembler::instr_at(pc_ + (3 * Assembler::kInstrSize));
342 Instr instr4 = Assembler::instr_at(pc_ + (4 * Assembler::kInstrSize));
343 Instr binstr = Assembler::instr_at(pc_ + (7 * Assembler::kInstrSize));
345 Instr binstr = Assembler::instr_at(pc_ + 4 * Assembler::kInstrSize);
    [all...]
assembler-ppc.h 497 static const int kInstrSize = sizeof(Instr);
534 (kMovInstructions + 2) * kInstrSize;
542 static const int kPatchDebugBreakSlotAddressOffset = 0 * kInstrSize;
549 kDebugBreakSlotInstructions * kInstrSize;
588 int cmpi_pos = pc_offset() - kInstrSize;
592 int xpos = cmpi_pos - kInstrSize;
601 pc_ -= kInstrSize;
605 pc_ -= kInstrSize;
608 pc_ -= kInstrSize;
    [all...]
deoptimizer-ppc.cc 23 return kCallInstructionSizeInWords * Assembler::kInstrSize;
76 int call_size_in_words = call_size_in_bytes / Assembler::kInstrSize;
77 DCHECK(call_size_in_bytes % Assembler::kInstrSize == 0);
  /art/compiler/utils/arm/
constants_arm.h 240 kInstrSize = 4,
444 Instr* Next() { return this + kInstrSize; }
  /external/v8/test/cctest/
test-macro-assembler-mips.cc 216 masm, (kNumCases + 6) * Assembler::kInstrSize);
223 __ lw(at, MemOperand(at, 4 * Assembler::kInstrSize));
288 masm, kNumCases * kPointerSize + ((7 + 1) * Assembler::kInstrSize));
295 __ lw(at, MemOperand(at, 6 * Assembler::kInstrSize));
test-macro-assembler-mips64.cc 260 masm, (kNumCases * 2 + 6) * Assembler::kInstrSize);
267 __ ld(at, MemOperand(at, 4 * Assembler::kInstrSize));
333 masm, kNumCases * kPointerSize + ((7 + 1) * Assembler::kInstrSize));
340 __ ld(at, MemOperand(at, 6 * Assembler::kInstrSize));

Completed in 233 milliseconds

1 2 3