- Change default scheduling preference to list-burr, which produces somewhat
  better code than the default. Could also use list-tdrr, but need to ask
  dev list about the appropriate handy mnemonic before commiting.

llvm-svn: 60738
This commit is contained in:
Scott Michel 2008-12-09 03:37:19 +00:00
parent 80b34b3f47
commit 8deac5db5a
1 changed files with 5 additions and 2 deletions

View File

@ -28,6 +28,7 @@
#include "llvm/Support/Debug.h"
#include "llvm/Support/MathExtras.h"
#include "llvm/Target/TargetOptions.h"
#include "llvm/CodeGen/SchedulerRegistry.h"
#include <map>
@ -415,8 +416,10 @@ SPUTargetLowering::SPUTargetLowering(SPUTargetMachine &TM)
computeRegisterProperties();
// Set other properties:
setSchedulingPreference(SchedulingForLatency);
// Set pre-RA register scheduler default to BURR, which produces slightly
// better code than the default (could also be TDRR, but TargetLowering.h
// needs a mod to support that model):
setSchedulingPreference(SchedulingForRegPressure);
}
const char *