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

  /art/compiler/optimizing/
instruction_simplifier_shared.cc 197 HInstruction* hnot = (left->IsNot() ? left : right); local
211 if (hnot->HasOnlyOneNonEnvironmentUse()) {
217 HInstruction* src = hnot->AsNot()->GetInput();
219 HBitwiseNegatedRight* neg_op = new (hnot->GetBlock()->GetGraph()->GetAllocator())
223 hnot->GetBlock()->RemoveInstruction(hnot);
instruction_simplifier.cc 95 void VisitNot(HNot* instruction) OVERRIDE;
241 HInstruction* hnot; local
243 hnot = new (GetGraph()->GetAllocator()) HBooleanNot(hbin, dex_pc);
245 hnot = new (GetGraph()->GetAllocator()) HNot(type, hbin, dex_pc);
249 op->GetBlock()->ReplaceAndRemoveInstructionWith(op, hnot);
    [all...]

Completed in 81 milliseconds