Breaking up the PowerPC target into 32- and 64-bit subparts, Part III: the rest.
[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 namespace llvm {
19
20 class FunctionPass;
21
22 FunctionPass *createPowerPCPEI();
23 FunctionPass *createPPCBranchSelectionPass();
24
25 } // end namespace llvm;
26
27 // Defines symbolic names for PowerPC registers.  This defines a mapping from
28 // register name to register number.
29 //
30 #include "PowerPCGenRegisterNames.inc"
31
32 // Defines symbolic names for the PowerPC instructions.
33 //
34 #include "PowerPCGenInstrNames.inc"
35
36 #endif