Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dscheduler.h207 bool IsSchedulingBarrier() const { return is_scheduling_barrier_; } in IsSchedulingBarrier() function
289 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() function
498 return scheduler_->IsSchedulingBarrier(instruction); in IsSchedulingBarrier()
Dscheduler_arm64.h160 bool IsSchedulingBarrier(const HInstruction* instr) const OVERRIDE { in IsSchedulingBarrier() function
161 return HScheduler::IsSchedulingBarrier(instr) || in IsSchedulingBarrier()
Dscheduler.cc302 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