blob: e6f61029f3b20c8c779e7b12e09d40aae962011e [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- PPCTargetMachine.h - Define TargetMachine for PowerPC -----*- C++ -*-=//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file declares the PowerPC specific subclass of TargetMachine.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef PPC_TARGETMACHINE_H
15#define PPC_TARGETMACHINE_H
16
17#include "PPCFrameInfo.h"
18#include "PPCSubtarget.h"
19#include "PPCJITInfo.h"
20#include "PPCInstrInfo.h"
21#include "PPCISelLowering.h"
22#include "PPCMachOWriterInfo.h"
23#include "llvm/Target/TargetMachine.h"
24#include "llvm/Target/TargetData.h"
25
26namespace llvm {
27class PassManager;
28class GlobalValue;
29
30/// PPCTargetMachine - Common code between 32-bit and 64-bit PowerPC targets.
31///
32class PPCTargetMachine : public LLVMTargetMachine {
33 PPCSubtarget Subtarget;
34 const TargetData DataLayout; // Calculates type size & alignment
35 PPCInstrInfo InstrInfo;
36 PPCFrameInfo FrameInfo;
37 PPCJITInfo JITInfo;
38 PPCTargetLowering TLInfo;
39 InstrItineraryData InstrItins;
40 PPCMachOWriterInfo MachOWriterInfo;
41
42protected:
43 virtual const TargetAsmInfo *createTargetAsmInfo() const;
Anton Korobeynikov01c0e9f2008-08-17 13:54:28 +000044
45 // To avoid having target depend on the asmprinter stuff libraries, asmprinter
46 // set this functions to ctor pointer at startup time if they are linked in.
David Greene302008d2009-07-14 20:18:05 +000047 typedef FunctionPass *(*AsmPrinterCtorFn)(formatted_raw_ostream &o,
Stuart Hastings1721b8d2009-07-15 17:27:11 +000048 PPCTargetMachine &tm,
Bill Wendling5ed22ac2009-04-29 23:29:43 +000049 bool verbose);
Anton Korobeynikov01c0e9f2008-08-17 13:54:28 +000050 static AsmPrinterCtorFn AsmPrinterCtor;
51
Dan Gohmanf17a25c2007-07-18 16:29:46 +000052public:
Stuart Hastings1721b8d2009-07-15 17:27:11 +000053 PPCTargetMachine(const Module &M, const std::string &FS, bool is64Bit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054
55 virtual const PPCInstrInfo *getInstrInfo() const { return &InstrInfo; }
Dan Gohmanb41dfba2008-05-14 01:58:56 +000056 virtual const PPCFrameInfo *getFrameInfo() const { return &FrameInfo; }
57 virtual PPCJITInfo *getJITInfo() { return &JITInfo; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000058 virtual PPCTargetLowering *getTargetLowering() const {
59 return const_cast<PPCTargetLowering*>(&TLInfo);
60 }
Dan Gohmanb41dfba2008-05-14 01:58:56 +000061 virtual const PPCRegisterInfo *getRegisterInfo() const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000062 return &InstrInfo.getRegisterInfo();
63 }
64
65 virtual const TargetData *getTargetData() const { return &DataLayout; }
66 virtual const PPCSubtarget *getSubtargetImpl() const { return &Subtarget; }
67 virtual const InstrItineraryData getInstrItineraryData() const {
68 return InstrItins;
69 }
70 virtual const PPCMachOWriterInfo *getMachOWriterInfo() const {
71 return &MachOWriterInfo;
72 }
Anton Korobeynikov01c0e9f2008-08-17 13:54:28 +000073
74 static void registerAsmPrinter(AsmPrinterCtorFn F) {
75 AsmPrinterCtor = F;
76 }
77
Dan Gohmanf17a25c2007-07-18 16:29:46 +000078 // Pass Pipeline Configuration
Bill Wendling5ed22ac2009-04-29 23:29:43 +000079 virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
80 virtual bool addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
81 virtual bool addAssemblyEmitter(PassManagerBase &PM,
82 CodeGenOpt::Level OptLevel,
David Greene302008d2009-07-14 20:18:05 +000083 bool Verbose, formatted_raw_ostream &Out);
Bill Wendling5ed22ac2009-04-29 23:29:43 +000084 virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
Evan Cheng77547212007-07-20 21:56:13 +000085 bool DumpAsm, MachineCodeEmitter &MCE);
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +000086 virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
87 bool DumpAsm, JITCodeEmitter &JCE);
Bruno Cardoso Lopesaabb9a52009-07-06 05:09:34 +000088 virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
89 bool DumpAsm, ObjectCodeEmitter &OCE);
Bill Wendling5ed22ac2009-04-29 23:29:43 +000090 virtual bool addSimpleCodeEmitter(PassManagerBase &PM,
91 CodeGenOpt::Level OptLevel,
Evan Cheng77547212007-07-20 21:56:13 +000092 bool DumpAsm, MachineCodeEmitter &MCE);
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +000093 virtual bool addSimpleCodeEmitter(PassManagerBase &PM,
94 CodeGenOpt::Level OptLevel,
95 bool DumpAsm, JITCodeEmitter &JCE);
Bruno Cardoso Lopesaabb9a52009-07-06 05:09:34 +000096 virtual bool addSimpleCodeEmitter(PassManagerBase &PM,
97 CodeGenOpt::Level OptLevel,
98 bool DumpAsm, ObjectCodeEmitter &OCE);
Dan Gohman62ea18a2007-11-19 20:46:23 +000099 virtual bool getEnableTailMergeDefault() const;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000100};
101
102/// PPC32TargetMachine - PowerPC 32-bit target machine.
103///
104class PPC32TargetMachine : public PPCTargetMachine {
105public:
Stuart Hastings1721b8d2009-07-15 17:27:11 +0000106 PPC32TargetMachine(const Module &M, const std::string &FS);
107
108 static unsigned getJITMatchQuality();
109 static unsigned getModuleMatchQuality(const Module &M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000110};
111
112/// PPC64TargetMachine - PowerPC 64-bit target machine.
113///
114class PPC64TargetMachine : public PPCTargetMachine {
115public:
Stuart Hastings1721b8d2009-07-15 17:27:11 +0000116 PPC64TargetMachine(const Module &M, const std::string &FS);
117
118 static unsigned getJITMatchQuality();
119 static unsigned getModuleMatchQuality(const Module &M);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000120};
121
122} // end namespace llvm
123
124#endif