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

  /art/compiler/optimizing/
graph_test.cc 284 HInstruction* first_instruction = new (GetAllocator()) HIntConstant(4); local
285 block->InsertInstructionBefore(first_instruction, got);
287 ASSERT_NE(first_instruction->GetId(), -1);
288 ASSERT_EQ(first_instruction->GetBlock(), block);
289 ASSERT_EQ(block->GetFirstInstruction(), first_instruction);
291 ASSERT_EQ(first_instruction->GetNext(), got);
292 ASSERT_EQ(first_instruction->GetPrevious(), nullptr);
294 ASSERT_EQ(got->GetPrevious(), first_instruction);
302 ASSERT_EQ(block->GetFirstInstruction(), first_instruction);
304 ASSERT_EQ(first_instruction->GetNext(), second_instruction)
    [all...]
nodes.cc 525 HInstruction* first_instruction = header->GetFirstInstruction(); local
526 if (first_instruction != nullptr && first_instruction->IsSuspendCheck()) {
528 info->SetSuspendCheck(first_instruction->AsSuspendCheck());
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_transform.c 112 boolean first_instruction = TRUE; local
170 if (first_instruction && ctx->prolog) {
191 first_instruction = FALSE;
  /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 81 Instr first_instruction = Assembler::instr_at(stub->instruction_start()); local
85 if (Assembler::IsBranch(first_instruction)) {
89 DCHECK(Assembler::IsTstImmediate(first_instruction));
  /external/v8/src/ia32/
code-stubs-ia32.h 136 byte first_instruction = stub->instruction_start()[0]; local
139 if (first_instruction == kTwoByteJumpInstruction) {
143 DCHECK(first_instruction == kTwoByteNopInstruction);
  /external/v8/src/mips/
code-stubs-mips.h 112 Instr first_instruction = Assembler::instr_at(stub->instruction_start()); local
116 if (Assembler::IsBeq(first_instruction)) {
120 DCHECK(Assembler::IsBne(first_instruction));
  /external/v8/src/mips64/
code-stubs-mips64.h 113 Instr first_instruction = Assembler::instr_at(stub->instruction_start()); local
117 if (Assembler::IsBeq(first_instruction)) {
121 DCHECK(Assembler::IsBne(first_instruction));
  /external/v8/src/x64/
code-stubs-x64.h 129 byte first_instruction = stub->instruction_start()[0]; local
132 if (first_instruction == kTwoByteJumpInstruction) {
136 DCHECK(first_instruction == kTwoByteNopInstruction);
  /external/v8/src/x87/
code-stubs-x87.h 133 byte first_instruction = stub->instruction_start()[0]; local
136 if (first_instruction == kTwoByteJumpInstruction) {
140 DCHECK(first_instruction == kTwoByteNopInstruction);
  /external/v8/src/ppc/
code-stubs-ppc.h 103 Instr first_instruction = local
109 if (BF == (first_instruction & kBOfieldMask)) {
  /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/crankshaft/
lithium.cc 270 int first_instruction = block->first_instruction_index(); local
271 return LLabel::cast(instructions_[first_instruction]);

Completed in 290 milliseconds