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

  /art/compiler/optimizing/
graph_test.cc 309 HInstruction* second_instruction = new (&allocator) HIntConstant(4); local
310 block->InsertInstructionBefore(second_instruction, got);
312 ASSERT_NE(second_instruction->GetId(), -1);
313 ASSERT_EQ(second_instruction->GetBlock(), block);
316 ASSERT_EQ(first_instruction->GetNext(), second_instruction);
318 ASSERT_EQ(second_instruction->GetNext(), got);
319 ASSERT_EQ(second_instruction->GetPrevious(), first_instruction);
321 ASSERT_EQ(got->GetPrevious(), second_instruction);
  /external/chromium_org/v8/src/arm/
code-stubs-arm.h 193 Instr second_instruction = Assembler::instr_at(stub->instruction_start() + local
202 if (Assembler::IsBranch(second_instruction)) {
206 ASSERT(Assembler::IsTstImmediate(second_instruction));
  /external/chromium_org/v8/src/ia32/
code-stubs-ia32.h 215 byte second_instruction = stub->instruction_start()[2]; local
223 if (second_instruction == kFiveByteJumpInstruction) {
227 ASSERT(second_instruction == kFiveByteNopInstruction);
  /external/chromium_org/v8/src/mips/
code-stubs-mips.h 235 Instr second_instruction = Assembler::instr_at(stub->instruction_start() + local
244 if (Assembler::IsBeq(second_instruction)) {
248 ASSERT(Assembler::IsBne(second_instruction));
  /external/chromium_org/v8/src/x64/
code-stubs-x64.h 215 byte second_instruction = stub->instruction_start()[2]; local
223 if (second_instruction == kFiveByteJumpInstruction) {
227 ASSERT(second_instruction == kFiveByteNopInstruction);
  /external/chromium_org/v8/src/x87/
code-stubs-x87.h 211 byte second_instruction = stub->instruction_start()[2]; local
219 if (second_instruction == kFiveByteJumpInstruction) {
223 ASSERT(second_instruction == kFiveByteNopInstruction);

Completed in 816 milliseconds