Home | History | Annotate | Download | only in AMDGPU

Lines Matching refs:dag

27 void R600SchedStrategy::initialize(ScheduleDAGMI *dag) {
28 assert(dag->hasVRegLiveness() && "R600SchedStrategy needs vreg liveness");
29 DAG = static_cast<ScheduleDAGMILive*>(dag);
30 const R600Subtarget &ST = DAG->MF.getSubtarget<R600Subtarget>();
31 TII = static_cast<const R600InstrInfo*>(DAG->TII);
32 TRI = static_cast<const R600RegisterInfo*>(DAG->TRI);
34 MRI = &DAG->MRI;
130 SU->dump(DAG);
133 for (unsigned i = 0; i < DAG->SUnits.size(); i++) {
134 const SUnit &S = DAG->SUnits[i];
136 S.dump(DAG);
193 DEBUG(dbgs() << "Top Releasing ";SU->dump(DAG););
197 DEBUG(dbgs() << "Bottom Releasing ";SU->dump(DAG););