89dc1c131e795b76c26402f40673d848dbf04e8d
[oota-llvm.git] / lib / Target / PowerPC / PPC.h
1 //===-- PPC.h - Top-level interface for PowerPC Target ----------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the entry points for global functions defined in the LLVM
11 // PowerPC back-end.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_TARGET_POWERPC_H
16 #define LLVM_TARGET_POWERPC_H
17
18 // GCC #defines PPC on Linux but we use it as our namespace name
19 #undef PPC
20
21 #include "llvm/Target/TargetMachine.h"
22
23 namespace llvm {
24   class PPCTargetMachine;
25   class FunctionPass;
26   class MachineCodeEmitter;
27   class ObjectCodeEmitter;
28   class formatted_raw_ostream;
29   
30 FunctionPass *createPPCBranchSelectionPass();
31 FunctionPass *createPPCISelDag(PPCTargetMachine &TM);
32 FunctionPass *createPPCAsmPrinterPass(formatted_raw_ostream &OS,
33                                       PPCTargetMachine &TM,
34                                       bool Verbose);
35 FunctionPass *createPPCCodeEmitterPass(PPCTargetMachine &TM,
36                                        MachineCodeEmitter &MCE);
37 FunctionPass *createPPCJITCodeEmitterPass(PPCTargetMachine &TM,
38                                           JITCodeEmitter &MCE);
39 FunctionPass *createPPCObjectCodeEmitterPass(PPCTargetMachine &TM,
40                                              ObjectCodeEmitter &OCE);
41 } // end namespace llvm;
42
43 // Defines symbolic names for PowerPC registers.  This defines a mapping from
44 // register name to register number.
45 //
46 #include "PPCGenRegisterNames.inc"
47
48 // Defines symbolic names for the PowerPC instructions.
49 //
50 #include "PPCGenInstrNames.inc"
51
52 #endif