diff options
author | Matthias Braun <matze@braunis.de> | 2016-07-16 02:24:10 +0000 |
---|---|---|
committer | Matthias Braun <matze@braunis.de> | 2016-07-16 02:24:10 +0000 |
commit | 8f456fb18f6272bbb5c0cf23c2c2940f0662650f (patch) | |
tree | 3eac28c77b8d79dc4ff5caf417c703a005e1c260 /llvm/lib/Target/ARM/ARMTargetMachine.cpp | |
parent | 0ff953e8117e8435608630e82ed2d179c2d79519 (diff) | |
download | llvm-8f456fb18f6272bbb5c0cf23c2c2940f0662650f.zip llvm-8f456fb18f6272bbb5c0cf23c2c2940f0662650f.tar.gz llvm-8f456fb18f6272bbb5c0cf23c2c2940f0662650f.tar.bz2 |
ARM: Initialize LoadStore passes in TargetMachine
Initializing them in LLVMInitializeARMTarget() makes them visible early
enough for "llc -run-pass usage".
This required the pass to be renamed from "arm-load-store-opt" to
"arm-ldst-opt", because there already exists an arm-load-store-opt
cl::opt switch which would now clash with the passname getting added as
a switch in opt. On the bright side the pass name now matches the
DEBUG_TYPE name. Renamed "arm-prera-load-store-opt" to
"arm-repra-ldst-opt" as well for consistency.
llvm-svn: 275661
Diffstat (limited to 'llvm/lib/Target/ARM/ARMTargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMTargetMachine.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/Target/ARM/ARMTargetMachine.cpp b/llvm/lib/Target/ARM/ARMTargetMachine.cpp index ab20eaf..dc730a6 100644 --- a/llvm/lib/Target/ARM/ARMTargetMachine.cpp +++ b/llvm/lib/Target/ARM/ARMTargetMachine.cpp @@ -54,6 +54,10 @@ extern "C" void LLVMInitializeARMTarget() { RegisterTargetMachine<ARMBETargetMachine> Y(TheARMBETarget); RegisterTargetMachine<ThumbLETargetMachine> A(TheThumbLETarget); RegisterTargetMachine<ThumbBETargetMachine> B(TheThumbBETarget); + + PassRegistry &Registry = *PassRegistry::getPassRegistry(); + initializeARMLoadStoreOptPass(Registry); + initializeARMPreAllocLoadStoreOptPass(Registry); } static std::unique_ptr<TargetLoweringObjectFile> createTLOF(const Triple &TT) { |