Home
last modified time | relevance | path

Searched refs:hnot (Results 1 – 2 of 2) 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()
Dinstruction_simplifier.cc241 HInstruction* hnot; in TryDeMorganNegationFactoring() local
243 hnot = new (GetGraph()->GetAllocator()) HBooleanNot(hbin, dex_pc); in TryDeMorganNegationFactoring()
245 hnot = new (GetGraph()->GetAllocator()) HNot(type, hbin, dex_pc); in TryDeMorganNegationFactoring()
249 op->GetBlock()->ReplaceAndRemoveInstructionWith(op, hnot); in TryDeMorganNegationFactoring()