HomeSort by relevance Sort by last modified time
    Searched refs:instr_at (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/v8/src/arm/
code-stubs-arm.h 118 masm->instr_at_put(pos, (masm->instr_at(pos) & ~B27) | (B24 | B20));
119 DCHECK(Assembler::IsTstImmediate(masm->instr_at(pos)));
123 masm->instr_at_put(pos, (masm->instr_at(pos) & ~(B24 | B20)) | B27);
124 DCHECK(Assembler::IsBranch(masm->instr_at(pos)));
128 Instr first_instruction = Assembler::instr_at(stub->instruction_start());
129 Instr second_instruction = Assembler::instr_at(stub->instruction_start() +
assembler-arm-inl.h 304 Instr current_instr = Assembler::instr_at(pc_);
305 Instr next_instr = Assembler::instr_at(pc_ + Assembler::kInstrSize);
315 Instr current_instr = Assembler::instr_at(pc_);
557 Instr mov_instr = instr_at(pc);
558 Instr orr_instr_1 = instr_at(pc + kInstrSize);
559 Instr orr_instr_2 = instr_at(pc + 2 * kInstrSize);
560 Instr orr_instr_3 = instr_at(pc + 3 * kInstrSize);
605 Instr mov_instr = instr_at(pc);
606 Instr orr_instr_1 = instr_at(pc + kInstrSize);
607 Instr orr_instr_2 = instr_at(pc + 2 * kInstrSize)
    [all...]
assembler-arm.cc 786 Instr instr = instr_at(pos);
803 Instr instr = instr_at(pos);
821 Instruction::RmValue(instr_at(pos + kInstrSize)));
822 DCHECK(IsNop(instr_at(pos + kInstrSize), dst.code()));
898 Instr instr = instr_at(l.pos());
    [all...]
assembler-arm.h 1406 Instr instr_at(int pos) { return *reinterpret_cast<Instr*>(buffer_ + pos); } function in class:v8::internal::Assembler
1410 static Instr instr_at(byte* pc) { return *reinterpret_cast<Instr*>(pc); } function in class:v8::internal::Assembler
    [all...]
code-stubs-arm.cc     [all...]
full-codegen-arm.cc     [all...]
macro-assembler-arm.cc     [all...]
  /external/chromium_org/v8/src/mips/
code-stubs-mips.h 156 const unsigned offset = masm->instr_at(pos) & kImm16Mask;
159 DCHECK(Assembler::IsBne(masm->instr_at(pos)));
163 const unsigned offset = masm->instr_at(pos) & kImm16Mask;
166 DCHECK(Assembler::IsBeq(masm->instr_at(pos)));
170 Instr first_instruction = Assembler::instr_at(stub->instruction_start());
171 Instr second_instruction = Assembler::instr_at(stub->instruction_start() +
assembler-mips-inl.h 353 Instr instr0 = Assembler::instr_at(pc_);
354 Instr instr1 = Assembler::instr_at(pc_ + 1 * Assembler::kInstrSize);
355 Instr instr2 = Assembler::instr_at(pc_ + 2 * Assembler::kInstrSize);
366 Instr current_instr = Assembler::instr_at(pc_);
assembler-mips.cc 666 Instr instr = instr_at(pos);
690 Instr instr_lui = instr_at(pos + 0 * Assembler::kInstrSize);
691 Instr instr_ori = instr_at(pos + 1 * Assembler::kInstrSize);
722 Instr instr = instr_at(pos);
742 Instr instr_lui = instr_at(pos + 0 * Assembler::kInstrSize);
743 Instr instr_ori = instr_at(pos + 1 * Assembler::kInstrSize);
779 Instr instr = instr_at(l.pos());
805 Instr instr = instr_at(fixup_pos);
    [all...]
assembler-mips.h 1040 static Instr instr_at(byte* pc) { return *reinterpret_cast<Instr*>(pc); } function in class:v8::internal::Assembler
1044 Instr instr_at(int pos) { return *reinterpret_cast<Instr*>(buffer_ + pos); } function in class:v8::internal::Assembler
    [all...]
full-codegen-mips.cc     [all...]
macro-assembler-mips.cc     [all...]
  /external/chromium_org/v8/src/mips64/
assembler-mips64-inl.h 347 Instr instr0 = Assembler::instr_at(pc_); // lui.
348 Instr instr1 = Assembler::instr_at(pc_ + 1 * Assembler::kInstrSize); // ori.
349 Instr instr2 = Assembler::instr_at(pc_ + 2 * Assembler::kInstrSize); // dsll.
350 Instr instr3 = Assembler::instr_at(pc_ + 3 * Assembler::kInstrSize); // ori.
351 Instr instr4 = Assembler::instr_at(pc_ + 4 * Assembler::kInstrSize); // jalr.
363 Instr current_instr = Assembler::instr_at(pc_);
code-stubs-mips64.h 158 const unsigned offset = masm->instr_at(pos) & kImm16Mask;
161 DCHECK(Assembler::IsBne(masm->instr_at(pos)));
165 const unsigned offset = masm->instr_at(pos) & kImm16Mask;
168 DCHECK(Assembler::IsBeq(masm->instr_at(pos)));
172 Instr first_instruction = Assembler::instr_at(stub->instruction_start());
173 Instr second_instruction = Assembler::instr_at(stub->instruction_start() +
assembler-mips64.cc 638 Instr instr = instr_at(pos);
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);
700 Instr instr = instr_at(pos);
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);
763 Instr instr = instr_at(l.pos());
789 Instr instr = instr_at(fixup_pos)
    [all...]
assembler-mips64.h 1076 static Instr instr_at(byte* pc) { return *reinterpret_cast<Instr*>(pc); } function in class:v8::internal::Assembler
1080 Instr instr_at(int pos) { return *reinterpret_cast<Instr*>(buffer_ + pos); } function in class:v8::internal::Assembler
    [all...]
full-codegen-mips64.cc     [all...]
macro-assembler-mips64.cc     [all...]
  /external/chromium_org/v8/src/ic/arm/
ic-arm.cc     [all...]
  /external/chromium_org/v8/src/ic/mips/
ic-mips.cc     [all...]
  /external/chromium_org/v8/src/ic/mips64/
ic-mips64.cc     [all...]

Completed in 1475 milliseconds