Lines Matching refs:TopDown
39 cl::opt<bool> ForceTopDown("misched-topdown", cl::Hidden,
2497 // Check -misched-topdown/bottomup can force or unforce scheduling direction.
2500 "-misched-topdown incompatible with -misched-bottomup");
3268 InstructionShuffler(bool alternate, bool topdown)
3269 : IsAlternating(alternate), IsTopDown(topdown) {}
3315 bool TopDown = !ForceBottomUp;
3316 assert((TopDown || !ForceTopDown) &&
3317 "-misched-topdown incompatible with -misched-bottomup");
3318 return new ScheduleDAGMILive(C, make_unique<InstructionShuffler>(Alternate, TopDown));