1146cdf327adff0384e931817948f1662b368428
[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 TargetMachine;
24
25 enum PPCTargetEnum {
26   TargetDefault, TargetAIX, TargetDarwin
27 };
28
29 FunctionPass *createPPCBranchSelectionPass();
30 FunctionPass *createPPCISelDag(TargetMachine &TM);
31 FunctionPass *createDarwinAsmPrinter(std::ostream &OS, TargetMachine &TM);
32 FunctionPass *createAIXAsmPrinter(std::ostream &OS, TargetMachine &TM);
33
34 extern bool PPCGenerateStaticCode;
35 extern PPCTargetEnum PPCTarget;
36 } // end namespace llvm;
37
38 // GCC #defines PPC on Linux but we use it as our namespace name
39 #undef PPC
40
41 // Defines symbolic names for PowerPC registers.  This defines a mapping from
42 // register name to register number.
43 //
44 #include "PPCGenRegisterNames.inc"
45
46 // Defines symbolic names for the PowerPC instructions.
47 //
48 #include "PPCGenInstrNames.inc"
49
50 #endif