Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dinstruction_simplifier_shared.cc297 bool TryReplaceSubSubWithSubAdd(HSub* last_sub) { in TryReplaceSubSubWithSubAdd() argument
298 DCHECK(last_sub->GetRight()->IsSub()); in TryReplaceSubSubWithSubAdd()
299 HBasicBlock* basic_block = last_sub->GetBlock(); in TryReplaceSubSubWithSubAdd()
301 HInstruction* last_sub_right = last_sub->GetRight(); in TryReplaceSubSubWithSubAdd()
302 HInstruction* last_sub_left = last_sub->GetLeft(); in TryReplaceSubSubWithSubAdd()
311 HAdd* add = new (allocator) HAdd(last_sub->GetType(), last_sub_left, last_sub_right); in TryReplaceSubSubWithSubAdd()
312 basic_block->ReplaceAndRemoveInstructionWith(last_sub, add); in TryReplaceSubSubWithSubAdd()
Dinstruction_simplifier_shared.h78 bool TryReplaceSubSubWithSubAdd(HSub* last_sub);