[SystemZ] Add LOCR and LOCGR
[oota-llvm.git] / lib / Target / SystemZ / SystemZTargetMachine.cpp
1 //===-- SystemZTargetMachine.cpp - Define TargetMachine for SystemZ -------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #include "SystemZTargetMachine.h"
11 #include "llvm/CodeGen/Passes.h"
12 #include "llvm/Support/TargetRegistry.h"
13
14 using namespace llvm;
15
16 extern "C" void LLVMInitializeSystemZTarget() {
17   // Register the target.
18   RegisterTargetMachine<SystemZTargetMachine> X(TheSystemZTarget);
19 }
20
21 SystemZTargetMachine::SystemZTargetMachine(const Target &T, StringRef TT,
22                                            StringRef CPU, StringRef FS,
23                                            const TargetOptions &Options,
24                                            Reloc::Model RM,
25                                            CodeModel::Model CM,
26                                            CodeGenOpt::Level OL)
27   : LLVMTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL),
28     Subtarget(TT, CPU, FS),
29     // Make sure that global data has at least 16 bits of alignment by default,
30     // so that we can refer to it using LARL.  We don't have any special
31     // requirements for stack variables though.
32     DL("E-p:64:64:64-i1:8:16-i8:8:16-i16:16-i32:32-i64:64"
33        "-f32:32-f64:64-f128:64-a0:8:16-n32:64"),
34     InstrInfo(*this), TLInfo(*this), TSInfo(*this),
35     FrameLowering(*this, Subtarget) {
36   initAsmInfo();
37 }
38
39 namespace {
40 /// SystemZ Code Generator Pass Configuration Options.
41 class SystemZPassConfig : public TargetPassConfig {
42 public:
43   SystemZPassConfig(SystemZTargetMachine *TM, PassManagerBase &PM)
44     : TargetPassConfig(TM, PM) {}
45
46   SystemZTargetMachine &getSystemZTargetMachine() const {
47     return getTM<SystemZTargetMachine>();
48   }
49
50   virtual bool addInstSelector() LLVM_OVERRIDE;
51   virtual bool addPreSched2() LLVM_OVERRIDE;
52   virtual bool addPreEmitPass() LLVM_OVERRIDE;
53 };
54 } // end anonymous namespace
55
56 bool SystemZPassConfig::addInstSelector() {
57   addPass(createSystemZISelDag(getSystemZTargetMachine(), getOptLevel()));
58   return false;
59 }
60
61 bool SystemZPassConfig::addPreSched2() {
62   if (getSystemZTargetMachine().getSubtargetImpl()->hasLoadStoreOnCond())
63     addPass(&IfConverterID);
64   return true;
65 }
66
67 bool SystemZPassConfig::addPreEmitPass() {
68   addPass(createSystemZLongBranchPass(getSystemZTargetMachine()));
69   return true;
70 }
71
72 TargetPassConfig *SystemZTargetMachine::createPassConfig(PassManagerBase &PM) {
73   return new SystemZPassConfig(this, PM);
74 }