Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dinstruction_simplifier_shared.cc339 bool TryReplaceSubSubWithSubAdd(HSub* last_sub) { in TryReplaceSubSubWithSubAdd() argument
340 DCHECK(last_sub->GetRight()->IsSub()); in TryReplaceSubSubWithSubAdd()
341 HBasicBlock* basic_block = last_sub->GetBlock(); in TryReplaceSubSubWithSubAdd()
343 HInstruction* last_sub_right = last_sub->GetRight(); in TryReplaceSubSubWithSubAdd()
344 HInstruction* last_sub_left = last_sub->GetLeft(); in TryReplaceSubSubWithSubAdd()
353 HAdd* add = new (allocator) HAdd(last_sub->GetType(), last_sub_left, last_sub_right); in TryReplaceSubSubWithSubAdd()
354 basic_block->ReplaceAndRemoveInstructionWith(last_sub, add); in TryReplaceSubSubWithSubAdd()
Dinstruction_simplifier_shared.h77 bool TryReplaceSubSubWithSubAdd(HSub* last_sub);