Searched refs:IsSchedulingBarrier (Results 1 – 3 of 3) sorted by relevance
207 bool IsSchedulingBarrier() const { return is_scheduling_barrier_; } in IsSchedulingBarrier() function289 bool IsSchedulingBarrier(const HInstruction* instruction) const;454 virtual bool IsSchedulingBarrier(const HInstruction* instruction) const;497 inline bool SchedulingGraph::IsSchedulingBarrier(const HInstruction* instruction) const { in IsSchedulingBarrier() function498 return scheduler_->IsSchedulingBarrier(instruction); in IsSchedulingBarrier()
160 bool IsSchedulingBarrier(const HInstruction* instr) const OVERRIDE { in IsSchedulingBarrier() function161 return HScheduler::IsSchedulingBarrier(instr) || in IsSchedulingBarrier()
302 bool other_is_barrier = other_node->IsSchedulingBarrier(); in AddDependencies()336 if (other_node->IsSchedulingBarrier()) { in AddDependencies()423 if (node->IsSchedulingBarrier()) { in DumpAsDotNode()572 SchedulingNode* node = scheduling_graph_.AddNode(instruction, IsSchedulingBarrier(instruction)); in Schedule()766 bool HScheduler::IsSchedulingBarrier(const HInstruction* instr) const { in IsSchedulingBarrier() function in art::HScheduler