blob: 8c2b73129e6199899884f0a4e57bea30c2a93f02 [file] [log] [blame]
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001//===-- PowerPCTargetMachine.h - Define TargetMachine for PowerPC -*- C++ -*-=//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file declares the PowerPC specific subclass of TargetMachine.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef POWERPCTARGETMACHINE_H
15#define POWERPCTARGETMACHINE_H
16
17#include "llvm/Target/TargetMachine.h"
18#include "llvm/Target/TargetFrameInfo.h"
19#include "llvm/PassManager.h"
20#include "PowerPCInstrInfo.h"
21#include "PowerPCJITInfo.h"
22
23namespace llvm {
24
25class IntrinsicLowering;
26
27class PowerPCTargetMachine : public TargetMachine {
28 PowerPCInstrInfo InstrInfo;
29 TargetFrameInfo FrameInfo;
30 PowerPCJITInfo JITInfo;
31public:
32 PowerPCTargetMachine(const Module &M, IntrinsicLowering *IL);
33
34 virtual const PowerPCInstrInfo *getInstrInfo() const { return &InstrInfo; }
35 virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; }
36 virtual const MRegisterInfo *getRegisterInfo() const {
37 return &InstrInfo.getRegisterInfo();
38 }
39 virtual TargetJITInfo *getJITInfo() {
40 return &JITInfo;
41 }
42
43 /// addPassesToEmitMachineCode - Add passes to the specified pass manager to
44 /// get machine code emitted. This uses a MachineCodeEmitter object to handle
45 /// actually outputting the machine code and resolving things like the address
46 /// of functions. This method should returns true if machine code emission is
47 /// not supported.
48 ///
49 virtual bool addPassesToEmitMachineCode(FunctionPassManager &PM,
50 MachineCodeEmitter &MCE);
51
52 virtual bool addPassesToEmitAssembly(PassManager &PM, std::ostream &Out);
53};
54
55} // end namespace llvm
56
57#endif