The DarwinAsmPrinter need not check for isDarwin. createPPCAsmPrinterPass
[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 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 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 #include <iosfwd>
19
20 namespace llvm {
21
22 class PPCTargetMachine;
23 class FunctionPassManager;
24 class FunctionPass;
25 class MachineCodeEmitter;
26
27 FunctionPass *createPPCBranchSelectionPass();
28 FunctionPass *createPPCISelDag(PPCTargetMachine &TM);
29 FunctionPass *createPPCAsmPrinterPass(std::ostream &OS,
30                                       PPCTargetMachine &TM);
31 FunctionPass *createPPCCodeEmitterPass(PPCTargetMachine &TM,
32                                        MachineCodeEmitter &MCE);
33 void addPPCMachOObjectWriterPass(FunctionPassManager &FPM, std::ostream &o, 
34                                  PPCTargetMachine &tm);
35 } // end namespace llvm;
36
37 // GCC #defines PPC on Linux but we use it as our namespace name
38 #undef PPC
39
40 // Defines symbolic names for PowerPC registers.  This defines a mapping from
41 // register name to register number.
42 //
43 #include "PPCGenRegisterNames.inc"
44
45 // Defines symbolic names for the PowerPC instructions.
46 //
47 #include "PPCGenInstrNames.inc"
48
49 #endif