forked from OSchip/llvm-project
mi-sched: Load clustering is a bit to expensive to enable unconditionally.
llvm-svn: 189990
This commit is contained in:
parent
8c699c93b2
commit
a6e877707f
|
@ -615,6 +615,8 @@ public:
|
|||
return false;
|
||||
}
|
||||
|
||||
virtual bool enableClusterLoads() const { return false; }
|
||||
|
||||
virtual bool shouldClusterLoads(MachineInstr *FirstLdSt,
|
||||
MachineInstr *SecondLdSt,
|
||||
unsigned NumLoads) const {
|
||||
|
|
|
@ -2753,7 +2753,7 @@ static ScheduleDAGInstrs *createConvergingSched(MachineSchedContext *C) {
|
|||
// data and pass it to later mutations. Have a single mutation that gathers
|
||||
// the interesting nodes in one pass.
|
||||
DAG->addMutation(new CopyConstrain(DAG->TII, DAG->TRI));
|
||||
if (EnableLoadCluster)
|
||||
if (EnableLoadCluster && DAG->TII->enableClusterLoads())
|
||||
DAG->addMutation(new LoadClusterMutation(DAG->TII, DAG->TRI));
|
||||
if (EnableMacroFusion)
|
||||
DAG->addMutation(new MacroFusion(DAG->TII));
|
||||
|
|
Loading…
Reference in New Issue