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

  /art/compiler/optimizing/
graph_test.cc 297 HInstruction* second_instruction = new (GetAllocator()) HIntConstant(4); local
298 block->InsertInstructionBefore(second_instruction, got);
300 ASSERT_NE(second_instruction->GetId(), -1);
301 ASSERT_EQ(second_instruction->GetBlock(), block);
304 ASSERT_EQ(first_instruction->GetNext(), second_instruction);
306 ASSERT_EQ(second_instruction->GetNext(), got);
307 ASSERT_EQ(second_instruction->GetPrevious(), first_instruction);
309 ASSERT_EQ(got->GetPrevious(), second_instruction);
  /external/v8/src/arm/
code-stubs-arm.h 82 Instr second_instruction = Assembler::instr_at(stub->instruction_start() + local
91 if (Assembler::IsBranch(second_instruction)) {
95 DCHECK(Assembler::IsTstImmediate(second_instruction));
  /external/v8/src/ia32/
code-stubs-ia32.h 137 byte second_instruction = stub->instruction_start()[2]; local
145 if (second_instruction == kFiveByteJumpInstruction) {
149 DCHECK(second_instruction == kFiveByteNopInstruction);
  /external/v8/src/mips/
code-stubs-mips.h 113 Instr second_instruction = Assembler::instr_at(stub->instruction_start() + local
122 if (Assembler::IsBeq(second_instruction)) {
126 DCHECK(Assembler::IsBne(second_instruction));
  /external/v8/src/mips64/
code-stubs-mips64.h 114 Instr second_instruction = Assembler::instr_at(stub->instruction_start() + local
123 if (Assembler::IsBeq(second_instruction)) {
127 DCHECK(Assembler::IsBne(second_instruction));
  /external/v8/src/x64/
code-stubs-x64.h 130 byte second_instruction = stub->instruction_start()[2]; local
138 if (second_instruction == kFiveByteJumpInstruction) {
142 DCHECK(second_instruction == kFiveByteNopInstruction);
  /external/v8/src/x87/
code-stubs-x87.h 134 byte second_instruction = stub->instruction_start()[2]; local
142 if (second_instruction == kFiveByteJumpInstruction) {
146 DCHECK(second_instruction == kFiveByteNopInstruction);
  /external/v8/src/ppc/
code-stubs-ppc.h 105 Instr second_instruction = Assembler::instr_at(stub->instruction_start() + local
113 if (BF == (second_instruction & kBOfieldMask)) {

Completed in 266 milliseconds