Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:topdown

40 cl::opt<bool> ForceTopDown("misched-topdown", cl::Hidden,
1505 "-misched-topdown incompatible with -misched-bottomup");
2474 "-misched-topdown incompatible with -misched-bottomup");
2643 InstructionShuffler(bool alternate, bool topdown)
2644 : IsAlternating(alternate), IsTopDown(topdown) {}
2690 bool TopDown = !ForceBottomUp;
2691 assert((TopDown || !ForceTopDown) &&
2692 "-misched-topdown incompatible with -misched-bottomup");
2693 return new ScheduleDAGMI(C, new InstructionShuffler(Alternate, TopDown));