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

/art/compiler/optimizing/
H A Dbuilder.cc142 HInstruction* second = LoadLocal(instruction.VRegB(), Primitive::kPrimInt); local
143 T* comparison = new (arena_) T(first, second);
275 HInstruction* second = LoadLocal(instruction.VRegC(), type); local
276 current_block_->AddInstruction(new (arena_) T(type, first, second));
283 HInstruction* second = LoadLocal(instruction.VRegB(), type); local
284 current_block_->AddInstruction(new (arena_) T(type, first, second));
291 HInstruction* second = GetIntConstant(instruction.VRegC_22s()); local
293 std::swap(first, second);
295 current_block_->AddInstruction(new (arena_) T(Primitive::kPrimInt, first, second));
302 HInstruction* second local
[all...]
H A Dnodes.h151 HBasicBlock* FindCommonDominator(HBasicBlock* first, HBasicBlock* second) const;
918 HCondition(HInstruction* first, HInstruction* second) argument
919 : HBinaryOperation(Primitive::kPrimBoolean, first, second) {}
935 HEqual(HInstruction* first, HInstruction* second) argument
936 : HCondition(first, second) {}
950 HNotEqual(HInstruction* first, HInstruction* second) argument
951 : HCondition(first, second) {}
965 HLessThan(HInstruction* first, HInstruction* second) argument
966 : HCondition(first, second) {}
980 HLessThanOrEqual(HInstruction* first, HInstruction* second) argument
995 HGreaterThan(HInstruction* first, HInstruction* second) argument
1010 HGreaterThanOrEqual(HInstruction* first, HInstruction* second) argument
1028 HCompare(Primitive::Type type, HInstruction* first, HInstruction* second) argument
[all...]

Completed in 96 milliseconds