Home
last modified time | relevance | path

Searched refs:IsSchedulingBarrier (Results 1 – 3 of 3) sorted by relevance

/art/compiler/optimizing/
Dscheduler.h206 bool IsSchedulingBarrier() const { return is_scheduling_barrier_; } in IsSchedulingBarrier() function
281 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() function
481 return scheduler_->IsSchedulingBarrier(instruction); in IsSchedulingBarrier()
Dscheduler_arm64.h163 bool IsSchedulingBarrier(const HInstruction* instr) const override { in IsSchedulingBarrier() function
164 return HScheduler::IsSchedulingBarrier(instr) || in IsSchedulingBarrier()
Dscheduler.cc319 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