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

/art/compiler/optimizing/
H A Dgraph_test.cc32 HInstruction* equal = new (allocator) HEqual(instr, instr); local
33 if_block->AddInstruction(equal);
34 instr = new (allocator) HIf(equal);
H A Dcodegen_test.cc538 HEqual* equal = new (&allocator) HEqual(constant0, constant0); local
539 first_block->AddInstruction(equal);
540 first_block->AddInstruction(new (&allocator) HIf(equal));
558 ASSERT_TRUE(equal->NeedsMaterialization());
561 ASSERT_FALSE(equal->NeedsMaterialization());
H A Dinstruction_simplifier.cc45 void VisitEqual(HEqual* equal) OVERRIDE;
46 void VisitNotEqual(HNotEqual* equal) OVERRIDE;
48 void VisitArraySet(HArraySet* equal) OVERRIDE;
218 void InstructionSimplifierVisitor::VisitEqual(HEqual* equal) { argument
219 HInstruction* input_const = equal->GetConstantRight();
221 HInstruction* input_value = equal->GetLeastConstantLeft();
223 HBasicBlock* block = equal->GetBlock();
228 equal->ReplaceWith(input_value);
229 block->RemoveInstruction(equal);
234 equal, ne
[all...]
/art/compiler/utils/mips/
H A Dassembler_mips.cc93 void MipsAssembler::EmitBranch(Register rt, Register rs, Label* label, bool equal) { argument
102 if (equal) {

Completed in 78 milliseconds