blob: ac9ae2b43fd429a253f1b77fb3604cb77e06b5e1 [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
Dan Gohmanf17a25c2007-07-18 16:29:46 +000060 // Pass Pipeline Configuration
Bill Wendling5ed22ac2009-04-29 23:29:43 +000061 virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
62 virtual bool addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
Bill Wendling5ed22ac2009-04-29 23:29:43 +000063 virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
Daniel Dunbar3e0ad8b2009-07-15 22:33:19 +000064 JITCodeEmitter &JCE);
Dan Gohman62ea18a2007-11-19 20:46:23 +000065 virtual bool getEnableTailMergeDefault() const;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000066};
67
68/// PPC32TargetMachine - PowerPC 32-bit target machine.
69///
70class PPC32TargetMachine : public PPCTargetMachine {
71public:
Daniel Dunbarf5c2b852009-08-02 23:37:13 +000072 PPC32TargetMachine(const Target &T, const std::string &TT,
73 const std::string &FS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000074};
75
76/// PPC64TargetMachine - PowerPC 64-bit target machine.
77///
78class PPC64TargetMachine : public PPCTargetMachine {
79public:
Daniel Dunbarf5c2b852009-08-02 23:37:13 +000080 PPC64TargetMachine(const Target &T, const std::string &TT,
81 const std::string &FS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000082};
83
84} // end namespace llvm
85
86#endif