blob: a65443568454eeb438f1b16f56d9d15bbe81af07 [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"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000022#include "llvm/Target/TargetMachine.h"
23#include "llvm/Target/TargetData.h"
24
25namespace llvm {
26class PassManager;
27class GlobalValue;
28
29/// PPCTargetMachine - Common code between 32-bit and 64-bit PowerPC targets.
30///
31class PPCTargetMachine : public LLVMTargetMachine {
32 PPCSubtarget Subtarget;
33 const TargetData DataLayout; // Calculates type size & alignment
34 PPCInstrInfo InstrInfo;
35 PPCFrameInfo FrameInfo;
36 PPCJITInfo JITInfo;
37 PPCTargetLowering TLInfo;
38 InstrItineraryData InstrItins;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000039
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040public:
Daniel Dunbarf5c2b852009-08-02 23:37:13 +000041 PPCTargetMachine(const Target &T, const std::string &TT,
42 const std::string &FS, bool is64Bit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000043
44 virtual const PPCInstrInfo *getInstrInfo() const { return &InstrInfo; }
Dan Gohmanb41dfba2008-05-14 01:58:56 +000045 virtual const PPCFrameInfo *getFrameInfo() const { return &FrameInfo; }
46 virtual PPCJITInfo *getJITInfo() { return &JITInfo; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000047 virtual PPCTargetLowering *getTargetLowering() const {
48 return const_cast<PPCTargetLowering*>(&TLInfo);
49 }
Dan Gohmanb41dfba2008-05-14 01:58:56 +000050 virtual const PPCRegisterInfo *getRegisterInfo() const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000051 return &InstrInfo.getRegisterInfo();
52 }
53
54 virtual const TargetData *getTargetData() const { return &DataLayout; }
55 virtual const PPCSubtarget *getSubtargetImpl() const { return &Subtarget; }
56 virtual const InstrItineraryData getInstrItineraryData() const {
57 return InstrItins;
58 }
Anton Korobeynikov01c0e9f2008-08-17 13:54:28 +000059
Bill Wendling63104742010-01-18 22:36:35 +000060 /// getLSDAEncoding - Returns the LSDA pointer encoding. The choices are
61 /// 4-byte, 8-byte, and target default. The CIE is hard-coded to indicate that
62 /// the LSDA pointer in the FDE section is an "sdata4", and should be encoded
63 /// as a 4-byte pointer by default. However, some systems may require a
64 /// different size due to bugs or other conditions. We will default to a
65 /// 4-byte encoding unless the system tells us otherwise.
66 ///
67 /// FIXME: This call-back isn't good! We should be using the correct encoding
68 /// regardless of the system. However, there are some systems which have bugs
69 /// that prevent this from occuring.
70 virtual DwarfLSDAEncoding::Encoding getLSDAEncoding() const;
71
Dan Gohmanf17a25c2007-07-18 16:29:46 +000072 // Pass Pipeline Configuration
Bill Wendling5ed22ac2009-04-29 23:29:43 +000073 virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
74 virtual bool addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
Bill Wendling5ed22ac2009-04-29 23:29:43 +000075 virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
Daniel Dunbar3e0ad8b2009-07-15 22:33:19 +000076 JITCodeEmitter &JCE);
Dan Gohman62ea18a2007-11-19 20:46:23 +000077 virtual bool getEnableTailMergeDefault() const;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000078};
79
80/// PPC32TargetMachine - PowerPC 32-bit target machine.
81///
82class PPC32TargetMachine : public PPCTargetMachine {
83public:
Daniel Dunbarf5c2b852009-08-02 23:37:13 +000084 PPC32TargetMachine(const Target &T, const std::string &TT,
85 const std::string &FS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000086};
87
88/// PPC64TargetMachine - PowerPC 64-bit target machine.
89///
90class PPC64TargetMachine : public PPCTargetMachine {
91public:
Daniel Dunbarf5c2b852009-08-02 23:37:13 +000092 PPC64TargetMachine(const Target &T, const std::string &TT,
93 const std::string &FS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000094};
95
96} // end namespace llvm
97
98#endif