Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dinstruction_simplifier_shared.cc195 HInstruction* hnot = (left->IsNot() ? left : right); in TryMergeNegatedInput() local
209 if (hnot->HasOnlyOneNonEnvironmentUse()) { in TryMergeNegatedInput()
215 HInstruction* src = hnot->AsNot()->GetInput(); in TryMergeNegatedInput()
217 HBitwiseNegatedRight* neg_op = new (hnot->GetBlock()->GetGraph()->GetArena()) in TryMergeNegatedInput()
221 hnot->GetBlock()->RemoveInstruction(hnot); in TryMergeNegatedInput()
Dinstruction_simplifier.cc232 HInstruction* hnot; in TryDeMorganNegationFactoring() local
234 hnot = new (GetGraph()->GetArena()) HBooleanNot(hbin, dex_pc); in TryDeMorganNegationFactoring()
236 hnot = new (GetGraph()->GetArena()) HNot(type, hbin, dex_pc); in TryDeMorganNegationFactoring()
240 op->GetBlock()->ReplaceAndRemoveInstructionWith(op, hnot); in TryDeMorganNegationFactoring()