Searched refs:IsSchedulingBarrier (Results 1 – 3 of 3) sorted by relevance
206 bool IsSchedulingBarrier() const { return is_scheduling_barrier_; } in IsSchedulingBarrier() function281 bool IsSchedulingBarrier(const HInstruction* instruction) const;443 virtual bool IsSchedulingBarrier(const HInstruction* instruction) const;480 inline bool SchedulingGraph::IsSchedulingBarrier(const HInstruction* instruction) const { in IsSchedulingBarrier() function481 return scheduler_->IsSchedulingBarrier(instruction); in IsSchedulingBarrier()
163 bool IsSchedulingBarrier(const HInstruction* instr) const override { in IsSchedulingBarrier() function164 return HScheduler::IsSchedulingBarrier(instr) || in IsSchedulingBarrier()
319 bool other_is_barrier = other_node->IsSchedulingBarrier(); in AddDependencies()354 if (other_node->IsSchedulingBarrier()) { in AddDependencies()452 if (node->IsSchedulingBarrier()) { in DumpAsDotNode()604 SchedulingNode* node = scheduling_graph.AddNode(instruction, IsSchedulingBarrier(instruction)); in Schedule()806 bool HScheduler::IsSchedulingBarrier(const HInstruction* instr) const { in IsSchedulingBarrier() function in art::HScheduler