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.cc647 HEqual* equal = new (&allocator) HEqual(constant0, constant0); local
648 first_block->AddInstruction(equal);
649 first_block->AddInstruction(new (&allocator) HIf(equal));
668 ASSERT_FALSE(equal->IsEmittedAtUseSite());
671 ASSERT_TRUE(equal->IsEmittedAtUseSite());
H A Dinstruction_simplifier.cc59 void VisitEqual(HEqual* equal) OVERRIDE;
60 void VisitNotEqual(HNotEqual* equal) OVERRIDE;
62 void VisitInstanceFieldSet(HInstanceFieldSet* equal) OVERRIDE;
63 void VisitStaticFieldSet(HStaticFieldSet* equal) OVERRIDE;
64 void VisitArraySet(HArraySet* equal) OVERRIDE;
587 void InstructionSimplifierVisitor::VisitEqual(HEqual* equal) { argument
588 HInstruction* input_const = equal->GetConstantRight();
590 HInstruction* input_value = equal->GetLeastConstantLeft();
592 HBasicBlock* block = equal->GetBlock();
597 equal
[all...]
/art/runtime/
H A Dclass_linker.cc1702 bool equal = image_count == loader_dex_file_names.size(); local
1703 if (equal) {
1706 for (size_t i = 0; equal && i < image_count; ++i, ++it1, ++it2) {
1707 equal = equal && (*it1)->Equals(*it2);
1710 if (!equal) {
7307 // by name and for equal names by type id index.

Completed in 82 milliseconds