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

  /art/compiler/optimizing/
suspend_check_test.cc 40 HInstruction* first_instruction = first_block->GetFirstInstruction(); local
42 ASSERT_TRUE(first_instruction->IsSuspendCheck()
43 || first_instruction->GetNext()->IsSuspendCheck());
graph_test.cc 297 HInstruction* first_instruction = new (&allocator) HIntConstant(4); local
298 block->InsertInstructionBefore(first_instruction, got);
300 ASSERT_NE(first_instruction->GetId(), -1);
301 ASSERT_EQ(first_instruction->GetBlock(), block);
302 ASSERT_EQ(block->GetFirstInstruction(), first_instruction);
304 ASSERT_EQ(first_instruction->GetNext(), got);
305 ASSERT_EQ(first_instruction->GetPrevious(), nullptr);
307 ASSERT_EQ(got->GetPrevious(), first_instruction);
315 ASSERT_EQ(block->GetFirstInstruction(), first_instruction);
317 ASSERT_EQ(first_instruction->GetNext(), second_instruction)
    [all...]
nodes.cc 249 HInstruction* first_instruction = header->GetFirstInstruction(); local
250 if (!first_instruction->IsSuspendCheck()) {
252 header->InsertInstructionBefore(check, first_instruction);
253 first_instruction = check;
255 info->SetSuspendCheck(first_instruction->AsSuspendCheck());
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_vs_draw.c 71 boolean first_instruction; member in struct:vs_transform_context
229 if (!vsctx->first_instruction) {
230 vsctx->first_instruction = TRUE;
  /external/v8/src/arm/
code-stubs-arm.h 128 Instr first_instruction = Assembler::instr_at(stub->instruction_start()); local
132 if (Assembler::IsBranch(first_instruction)) {
136 DCHECK(Assembler::IsTstImmediate(first_instruction));
  /external/v8/src/ia32/
code-stubs-ia32.h 154 byte first_instruction = stub->instruction_start()[0]; local
157 if (first_instruction == kTwoByteJumpInstruction) {
161 DCHECK(first_instruction == kTwoByteNopInstruction);
  /external/v8/src/mips/
code-stubs-mips.h 170 Instr first_instruction = Assembler::instr_at(stub->instruction_start()); local
174 if (Assembler::IsBeq(first_instruction)) {
178 DCHECK(Assembler::IsBne(first_instruction));
  /external/v8/src/mips64/
code-stubs-mips64.h 172 Instr first_instruction = Assembler::instr_at(stub->instruction_start()); local
176 if (Assembler::IsBeq(first_instruction)) {
180 DCHECK(Assembler::IsBne(first_instruction));
  /external/v8/src/x64/
code-stubs-x64.h 146 byte first_instruction = stub->instruction_start()[0]; local
149 if (first_instruction == kTwoByteJumpInstruction) {
153 DCHECK(first_instruction == kTwoByteNopInstruction);
  /external/v8/src/x87/
code-stubs-x87.h 151 byte first_instruction = stub->instruction_start()[0]; local
154 if (first_instruction == kTwoByteJumpInstruction) {
158 DCHECK(first_instruction == kTwoByteNopInstruction);
  /external/mesa3d/src/gallium/drivers/i915/
i915_fpc.h 60 boolean first_instruction; member in struct:i915_fp_compile
i915_fpc_translate.c     [all...]
  /external/v8/src/
lithium.cc 280 int first_instruction = block->first_instruction_index(); local
281 return LLabel::cast(instructions_[first_instruction]);

Completed in 227 milliseconds