Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dnodes.cc1333 HUserRecord<HInstruction*> input_use = InputRecordAt(index); in ReplaceInput() local
1334 if (input_use.GetInstruction() == replacement) { in ReplaceInput()
1338 HUseList<HInstruction*>::iterator before_use_node = input_use.GetBeforeUseNode(); in ReplaceInput()
1343 input_use.GetInstruction()->uses_, in ReplaceInput()
1346 input_use.GetInstruction()->FixUpUserRecordsAfterUseRemoval(before_use_node); in ReplaceInput()
Dnodes.h2255 HUserRecord<HInstruction*> input_use = InputRecordAt(input); in RemoveAsUserOfInput() local
2256 HUseList<HInstruction*>::iterator before_use_node = input_use.GetBeforeUseNode(); in RemoveAsUserOfInput()
2257 input_use.GetInstruction()->uses_.erase_after(before_use_node); in RemoveAsUserOfInput()
2258 input_use.GetInstruction()->FixUpUserRecordsAfterUseRemoval(before_use_node); in RemoveAsUserOfInput()
2262 for (const HUserRecord<HInstruction*>& input_use : GetInputRecords()) { in RemoveAsUserOfAllInputs() local
2263 HUseList<HInstruction*>::iterator before_use_node = input_use.GetBeforeUseNode(); in RemoveAsUserOfAllInputs()
2264 input_use.GetInstruction()->uses_.erase_after(before_use_node); in RemoveAsUserOfAllInputs()
2265 input_use.GetInstruction()->FixUpUserRecordsAfterUseRemoval(before_use_node); in RemoveAsUserOfAllInputs()