Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dload_store_elimination.cc178 void AddRemovedLoad(HInstruction* load, HInstruction* heap_value) { in AddRemovedLoad() argument
180 DCHECK_EQ(FindSubstitute(heap_value), heap_value) << in AddRemovedLoad()
181 "Unexpected heap_value that has a substitute " << heap_value->DebugName(); in AddRemovedLoad()
196 load, heap_value, load->GetType()); in AddRemovedLoad()
200 type_conversion != nullptr ? type_conversion : heap_value); in AddRemovedLoad()
278 HInstruction* GetRealHeapValue(HInstruction* heap_value) { in GetRealHeapValue() argument
279 if (IsLoad(heap_value)) { in GetRealHeapValue()
280 return FindSubstitute(heap_value); in GetRealHeapValue()
282 if (!IsStore(heap_value)) { in GetRealHeapValue()
283 return heap_value; in GetRealHeapValue()
[all …]