Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:TopDown

39 cl::opt<bool> ForceTopDown("misched-topdown", cl::Hidden,
2424 // Check -misched-topdown/bottomup can force or unforce scheduling direction.
2427 "-misched-topdown incompatible with -misched-bottomup");
3176 InstructionShuffler(bool alternate, bool topdown)
3177 : IsAlternating(alternate), IsTopDown(topdown) {}
3223 bool TopDown = !ForceBottomUp;
3224 assert((TopDown || !ForceTopDown) &&
3225 "-misched-topdown incompatible with -misched-bottomup");
3226 return new ScheduleDAGMILive(C, make_unique<InstructionShuffler>(Alternate, TopDown));