Searched defs:first_sub (Results 1 - 1 of 1) sorted by relevance

/art/compiler/optimizing/
H A Dregister_allocator_test.cc688 HInstruction** first_sub,
705 *first_sub = new (allocator) HSub(Primitive::kPrimInt, parameter, constant1);
706 block->AddInstruction(*first_sub);
707 *second_sub = new (allocator) HSub(Primitive::kPrimInt, *first_sub, constant2);
719 HInstruction *first_sub, *second_sub; local
722 HGraph* graph = BuildTwoSubs(&allocator, &first_sub, &second_sub);
733 ASSERT_EQ(first_sub->GetLiveInterval()->GetRegister(), 1);
738 HGraph* graph = BuildTwoSubs(&allocator, &first_sub, &second_sub);
747 first_sub->InputAt(0)->GetLocations()->output_ = Location::RegisterLocation(2);
748 ASSERT_EQ(first_sub
687 BuildTwoSubs(ArenaAllocator* allocator, HInstruction** first_sub, HInstruction** second_sub) argument
[all...]

Completed in 4 milliseconds