fb64a933a834b8218b89d48530d845387adeae19
[oota-llvm.git] / lib / Target / PowerPC / PPC.h
1 //===-- PowerPC.h - Top-level interface for PowerPC representation -*- 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 TARGET_POWERPC_H
16 #define TARGET_POWERPC_H
17
18 #include <iosfwd>
19
20 namespace llvm {
21
22 class FunctionPass;
23 class PPCTargetMachine;
24 FunctionPass *createPPCBranchSelectionPass();
25 FunctionPass *createPPCISelDag(PPCTargetMachine &TM);
26 FunctionPass *createDarwinAsmPrinter(std::ostream &OS, PPCTargetMachine &TM);
27 FunctionPass *createAIXAsmPrinter(std::ostream &OS, PPCTargetMachine &TM);
28 } // end namespace llvm;
29
30 // GCC #defines PPC on Linux but we use it as our namespace name
31 #undef PPC
32
33 // Defines symbolic names for PowerPC registers.  This defines a mapping from
34 // register name to register number.
35 //
36 #include "PPCGenRegisterNames.inc"
37
38 // Defines symbolic names for the PowerPC instructions.
39 //
40 #include "PPCGenInstrNames.inc"
41
42 #endif