Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dscheduler.cc284 SchedulingNode* instruction_node = GetNode(instruction); in AddDependencies()
288 AddDataDependency(GetNode(use.GetUser()), instruction_node); in AddDependencies()
297 SchedulingNode* other_node = GetNode(other); in AddDependencies()
335 SchedulingNode* other_node = GetNode(other); in AddDependencies()
357 AddOtherDependency(GetNode(use.GetUser()->GetHolder()), instruction_node); in AddDependencies()
369 const SchedulingNode* node = GetNode(instruction); in HasImmediateDataDependency()
370 const SchedulingNode* other = GetNode(other_instruction); in HasImmediateDataDependency()
388 const SchedulingNode* node = GetNode(instruction); in HasImmediateOtherDependency()
389 const SchedulingNode* other = GetNode(other_instruction); in HasImmediateOtherDependency()
491 SchedulingNode* condition_node = (condition != nullptr) ? graph.GetNode(condition) : nullptr; in SelectMaterializedCondition()
Dscheduler.h280 SchedulingNode* GetNode(const HInstruction* instr) const { in GetNode() function