blob: 086d2f4cf81d602d912a5df1e98dc19fa6acbe0a [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.
Owen Anderson847b99b2008-08-21 00:14:44 +000047 typedef FunctionPass *(*AsmPrinterCtorFn)(raw_ostream &o,
Bill Wendling4f405312009-02-24 08:30:20 +000048 PPCTargetMachine &tm,
Bill Wendling5ed22ac2009-04-29 23:29:43 +000049 CodeGenOpt::Level OptLevel,
50 bool verbose);
Anton Korobeynikov01c0e9f2008-08-17 13:54:28 +000051 static AsmPrinterCtorFn AsmPrinterCtor;
52
Dan Gohmanf17a25c2007-07-18 16:29:46 +000053public:
54 PPCTargetMachine(const Module &M, const std::string &FS, bool is64Bit);
55
56 virtual const PPCInstrInfo *getInstrInfo() const { return &InstrInfo; }
Dan Gohmanb41dfba2008-05-14 01:58:56 +000057 virtual const PPCFrameInfo *getFrameInfo() const { return &FrameInfo; }
58 virtual PPCJITInfo *getJITInfo() { return &JITInfo; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000059 virtual PPCTargetLowering *getTargetLowering() const {
60 return const_cast<PPCTargetLowering*>(&TLInfo);
61 }
Dan Gohmanb41dfba2008-05-14 01:58:56 +000062 virtual const PPCRegisterInfo *getRegisterInfo() const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000063 return &InstrInfo.getRegisterInfo();
64 }
65
66 virtual const TargetData *getTargetData() const { return &DataLayout; }
67 virtual const PPCSubtarget *getSubtargetImpl() const { return &Subtarget; }
68 virtual const InstrItineraryData getInstrItineraryData() const {
69 return InstrItins;
70 }
71 virtual const PPCMachOWriterInfo *getMachOWriterInfo() const {
72 return &MachOWriterInfo;
73 }
Anton Korobeynikov01c0e9f2008-08-17 13:54:28 +000074
75 static void registerAsmPrinter(AsmPrinterCtorFn F) {
76 AsmPrinterCtor = F;
77 }
78
Dan Gohmanf17a25c2007-07-18 16:29:46 +000079 // Pass Pipeline Configuration
Bill Wendling5ed22ac2009-04-29 23:29:43 +000080 virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
81 virtual bool addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
82 virtual bool addAssemblyEmitter(PassManagerBase &PM,
83 CodeGenOpt::Level OptLevel,
Evan Cheng42ceb472009-03-25 01:47:28 +000084 bool Verbose, raw_ostream &Out);
Bill Wendling5ed22ac2009-04-29 23:29:43 +000085 virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
Evan Cheng77547212007-07-20 21:56:13 +000086 bool DumpAsm, MachineCodeEmitter &MCE);
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +000087 virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
88 bool DumpAsm, JITCodeEmitter &JCE);
Bill Wendling5ed22ac2009-04-29 23:29:43 +000089 virtual bool addSimpleCodeEmitter(PassManagerBase &PM,
90 CodeGenOpt::Level OptLevel,
Evan Cheng77547212007-07-20 21:56:13 +000091 bool DumpAsm, MachineCodeEmitter &MCE);
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +000092 virtual bool addSimpleCodeEmitter(PassManagerBase &PM,
93 CodeGenOpt::Level OptLevel,
94 bool DumpAsm, JITCodeEmitter &JCE);
Dan Gohman62ea18a2007-11-19 20:46:23 +000095 virtual bool getEnableTailMergeDefault() const;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000096};
97
98/// PPC32TargetMachine - PowerPC 32-bit target machine.
99///
100class PPC32TargetMachine : public PPCTargetMachine {
101public:
102 PPC32TargetMachine(const Module &M, const std::string &FS);
103
104 static unsigned getJITMatchQuality();
105 static unsigned getModuleMatchQuality(const Module &M);
106};
107
108/// PPC64TargetMachine - PowerPC 64-bit target machine.
109///
110class PPC64TargetMachine : public PPCTargetMachine {
111public:
112 PPC64TargetMachine(const Module &M, const std::string &FS);
113
114 static unsigned getJITMatchQuality();
115 static unsigned getModuleMatchQuality(const Module &M);
116};
117
118} // end namespace llvm
119
120#endif