c1396a17bee41fe518b2985f40ff6e52e82018bc
[oota-llvm.git] / lib / Target / PowerPC / MCTargetDesc / PPCMCTargetDesc.cpp
1 //===-- PPCMCTargetDesc.cpp - PowerPC Target Descriptions -------*- C++ -*-===//
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 // This file provides PowerPC specific target descriptions.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "PPCMCTargetDesc.h"
15 #include "PPCMCAsmInfo.h"
16 #include "InstPrinter/PPCInstPrinter.h"
17 #include "llvm/MC/MachineLocation.h"
18 #include "llvm/MC/MCCodeGenInfo.h"
19 #include "llvm/MC/MCInstrInfo.h"
20 #include "llvm/MC/MCRegisterInfo.h"
21 #include "llvm/MC/MCStreamer.h"
22 #include "llvm/MC/MCSubtargetInfo.h"
23 #include "llvm/Target/TargetRegistry.h"
24
25 #define GET_INSTRINFO_MC_DESC
26 #include "PPCGenInstrInfo.inc"
27
28 #define GET_SUBTARGETINFO_MC_DESC
29 #include "PPCGenSubtargetInfo.inc"
30
31 #define GET_REGINFO_MC_DESC
32 #include "PPCGenRegisterInfo.inc"
33
34 using namespace llvm;
35
36 static MCInstrInfo *createPPCMCInstrInfo() {
37   MCInstrInfo *X = new MCInstrInfo();
38   InitPPCMCInstrInfo(X);
39   return X;
40 }
41
42 static MCRegisterInfo *createPPCMCRegisterInfo(StringRef TT) {
43   Triple TheTriple(TT);
44   bool isPPC64 = (TheTriple.getArch() == Triple::ppc64);
45   unsigned Flavour = isPPC64 ? 0 : 1;
46   unsigned RA = isPPC64 ? PPC::LR8 : PPC::LR;
47
48   MCRegisterInfo *X = new MCRegisterInfo();
49   InitPPCMCRegisterInfo(X, RA, Flavour, Flavour);
50   return X;
51 }
52
53 static MCSubtargetInfo *createPPCMCSubtargetInfo(StringRef TT, StringRef CPU,
54                                                  StringRef FS) {
55   MCSubtargetInfo *X = new MCSubtargetInfo();
56   InitPPCMCSubtargetInfo(X, TT, CPU, FS);
57   return X;
58 }
59
60 static MCAsmInfo *createPPCMCAsmInfo(const Target &T, StringRef TT) {
61   Triple TheTriple(TT);
62   bool isPPC64 = TheTriple.getArch() == Triple::ppc64;
63
64   MCAsmInfo *MAI;
65   if (TheTriple.isOSDarwin())
66     MAI = new PPCMCAsmInfoDarwin(isPPC64);
67   else
68     MAI = new PPCLinuxMCAsmInfo(isPPC64);
69
70   // Initial state of the frame pointer is R1.
71   MachineLocation Dst(MachineLocation::VirtualFP);
72   MachineLocation Src(PPC::R1, 0);
73   MAI->addInitialFrameState(0, Dst, Src);
74
75   return MAI;
76 }
77
78 static MCCodeGenInfo *createPPCMCCodeGenInfo(StringRef TT, Reloc::Model RM,
79                                              CodeModel::Model CM) {
80   MCCodeGenInfo *X = new MCCodeGenInfo();
81
82   if (RM == Reloc::Default) {
83     Triple T(TT);
84     if (T.isOSDarwin())
85       RM = Reloc::DynamicNoPIC;
86     else
87       RM = Reloc::Static;
88   }
89   X->InitMCCodeGenInfo(RM, CM);
90   return X;
91 }
92
93 // This is duplicated code. Refactor this.
94 static MCStreamer *createMCStreamer(const Target &T, StringRef TT,
95                                     MCContext &Ctx, MCAsmBackend &MAB,
96                                     raw_ostream &OS,
97                                     MCCodeEmitter *Emitter,
98                                     bool RelaxAll,
99                                     bool NoExecStack) {
100   if (Triple(TT).isOSDarwin())
101     return createMachOStreamer(Ctx, MAB, OS, Emitter, RelaxAll);
102
103   return createELFStreamer(Ctx, MAB, OS, Emitter, RelaxAll, NoExecStack);
104 }
105
106 static MCInstPrinter *createPPCMCInstPrinter(const Target &T,
107                                              unsigned SyntaxVariant,
108                                              const MCAsmInfo &MAI) {
109   return new PPCInstPrinter(MAI, SyntaxVariant);
110 }
111
112 extern "C" void LLVMInitializePowerPCTargetMC() {
113   // Register the MC asm info.
114   RegisterMCAsmInfoFn C(ThePPC32Target, createPPCMCAsmInfo);
115   RegisterMCAsmInfoFn D(ThePPC64Target, createPPCMCAsmInfo);  
116
117   // Register the MC codegen info.
118   TargetRegistry::RegisterMCCodeGenInfo(ThePPC32Target, createPPCMCCodeGenInfo);
119   TargetRegistry::RegisterMCCodeGenInfo(ThePPC64Target, createPPCMCCodeGenInfo);
120
121   // Register the MC instruction info.
122   TargetRegistry::RegisterMCInstrInfo(ThePPC32Target, createPPCMCInstrInfo);
123   TargetRegistry::RegisterMCInstrInfo(ThePPC64Target, createPPCMCInstrInfo);
124
125   // Register the MC register info.
126   TargetRegistry::RegisterMCRegInfo(ThePPC32Target, createPPCMCRegisterInfo);
127   TargetRegistry::RegisterMCRegInfo(ThePPC64Target, createPPCMCRegisterInfo);
128
129   // Register the MC subtarget info.
130   TargetRegistry::RegisterMCSubtargetInfo(ThePPC32Target,
131                                           createPPCMCSubtargetInfo);
132   TargetRegistry::RegisterMCSubtargetInfo(ThePPC64Target,
133                                           createPPCMCSubtargetInfo);
134
135   // Register the MC Code Emitter
136   TargetRegistry::RegisterMCCodeEmitter(ThePPC32Target, createPPCMCCodeEmitter);
137   TargetRegistry::RegisterMCCodeEmitter(ThePPC64Target, createPPCMCCodeEmitter);
138   
139     // Register the asm backend.
140   TargetRegistry::RegisterMCAsmBackend(ThePPC32Target, createPPCAsmBackend);
141   TargetRegistry::RegisterMCAsmBackend(ThePPC64Target, createPPCAsmBackend);
142   
143   // Register the object streamer.
144   TargetRegistry::RegisterMCObjectStreamer(ThePPC32Target, createMCStreamer);
145   TargetRegistry::RegisterMCObjectStreamer(ThePPC64Target, createMCStreamer);
146
147   // Register the MCInstPrinter.
148   TargetRegistry::RegisterMCInstPrinter(ThePPC32Target, createPPCMCInstPrinter);
149   TargetRegistry::RegisterMCInstPrinter(ThePPC64Target, createPPCMCInstPrinter);
150 }