summaryrefslogtreecommitdiffstats
path: root/lib/Target/ARM/ARMTargetMachine.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-10-02 04:57:15 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-10-02 04:57:15 +0000
commit62a1b5db44e87eaba053483041943905b4a4046c (patch)
treeff92c4545c80b65d70b47fc89fadd3a67a69ede0 /lib/Target/ARM/ARMTargetMachine.cpp
parent1ec8e194eb28bc451abab3624ff2cb85f22f7b6c (diff)
downloadexternal_llvm-62a1b5db44e87eaba053483041943905b4a4046c.zip
external_llvm-62a1b5db44e87eaba053483041943905b4a4046c.tar.gz
external_llvm-62a1b5db44e87eaba053483041943905b4a4046c.tar.bz2
Move load / store multiple before post-alloc scheduling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83236 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMTargetMachine.cpp')
-rw-r--r--lib/Target/ARM/ARMTargetMachine.cpp12
1 files changed, 2 insertions, 10 deletions
diff --git a/lib/Target/ARM/ARMTargetMachine.cpp b/lib/Target/ARM/ARMTargetMachine.cpp
index ef42bd2..32ddc20 100644
--- a/lib/Target/ARM/ARMTargetMachine.cpp
+++ b/lib/Target/ARM/ARMTargetMachine.cpp
@@ -22,10 +22,6 @@
#include "llvm/Target/TargetRegistry.h"
using namespace llvm;
-static cl::opt<bool>
-LdStBeforeSched("ldstopti-before-sched2", cl::Hidden,
- cl::desc("Move ld / st multiple pass before postalloc scheduling"));
-
static const MCAsmInfo *createMCAsmInfo(const Target &T,
const StringRef &TT) {
Triple TheTriple(TT);
@@ -109,8 +105,7 @@ bool ARMBaseTargetMachine::addPreSched2(PassManagerBase &PM,
CodeGenOpt::Level OptLevel) {
// FIXME: temporarily disabling load / store optimization pass for Thumb1.
if (OptLevel != CodeGenOpt::None && !Subtarget.isThumb1Only())
- if (LdStBeforeSched)
- PM.add(createARMLoadStoreOptimizationPass());
+ PM.add(createARMLoadStoreOptimizationPass());
return true;
}
@@ -118,11 +113,8 @@ bool ARMBaseTargetMachine::addPreSched2(PassManagerBase &PM,
bool ARMBaseTargetMachine::addPreEmitPass(PassManagerBase &PM,
CodeGenOpt::Level OptLevel) {
// FIXME: temporarily disabling load / store optimization pass for Thumb1.
- if (OptLevel != CodeGenOpt::None && !Subtarget.isThumb1Only()) {
- if (!LdStBeforeSched)
- PM.add(createARMLoadStoreOptimizationPass());
+ if (OptLevel != CodeGenOpt::None && !Subtarget.isThumb1Only())
PM.add(createIfConverterPass());
- }
if (Subtarget.isThumb2()) {
PM.add(createThumb2ITBlockPass());