Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dscheduler.cc94 SchedulingNode* instruction_node = GetNode(instruction); in AddDependencies()
98 AddDataDependency(GetNode(use.GetUser()), instruction_node); in AddDependencies()
107 SchedulingNode* other_node = GetNode(other); in AddDependencies()
141 SchedulingNode* other_node = GetNode(other); in AddDependencies()
163 AddOtherDependency(GetNode(use.GetUser()->GetHolder()), instruction_node); in AddDependencies()
175 const SchedulingNode* node = GetNode(instruction); in HasImmediateDataDependency()
176 const SchedulingNode* other = GetNode(other_instruction); in HasImmediateDataDependency()
194 const SchedulingNode* node = GetNode(instruction); in HasImmediateOtherDependency()
195 const SchedulingNode* other = GetNode(other_instruction); in HasImmediateOtherDependency()
306 SchedulingNode* condition_node = (condition != nullptr) ? graph.GetNode(condition) : nullptr; in SelectMaterializedCondition()
Dscheduler.h263 SchedulingNode* GetNode(const HInstruction* instr) const { in GetNode() function