Home
last modified time | relevance | path

Searched refs:hnot (Results 1 – 3 of 3) sorted by relevance

/art/compiler/optimizing/
Dinstruction_simplifier_shared.cc197 HInstruction* hnot = (left->IsNot() ? left : right); in TryMergeNegatedInput() local
211 if (hnot->HasOnlyOneNonEnvironmentUse()) { in TryMergeNegatedInput()
217 HInstruction* src = hnot->AsNot()->GetInput(); in TryMergeNegatedInput()
219 HBitwiseNegatedRight* neg_op = new (hnot->GetBlock()->GetGraph()->GetAllocator()) in TryMergeNegatedInput()
223 hnot->GetBlock()->RemoveInstruction(hnot); in TryMergeNegatedInput()
Dconstant_folding.cc240 HInstruction* hnot = (left->IsNot() ? left : right); in VisitAnd() local
242 HInstruction* src = hnot->AsNot()->GetInput(); in VisitAnd()
Dinstruction_simplifier.cc255 HInstruction* hnot; in TryDeMorganNegationFactoring() local
257 hnot = new (GetGraph()->GetAllocator()) HBooleanNot(hbin, dex_pc); in TryDeMorganNegationFactoring()
259 hnot = new (GetGraph()->GetAllocator()) HNot(type, hbin, dex_pc); in TryDeMorganNegationFactoring()
263 op->GetBlock()->ReplaceAndRemoveInstructionWith(op, hnot); in TryDeMorganNegationFactoring()