Remove 64 bit simple ISel, it never worked correctly
[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 FunctionPass *createPPCBranchSelectionPass();
26 FunctionPass *createPPC32ISelSimple(TargetMachine &TM);
27 FunctionPass *createPPC32ISelPattern(TargetMachine &TM);
28 FunctionPass *createPPC64ISelPattern(TargetMachine &TM);
29 FunctionPass *createDarwinAsmPrinter(std::ostream &OS, TargetMachine &TM);
30 FunctionPass *createAIXAsmPrinter(std::ostream &OS, TargetMachine &TM);
31
32 } // end namespace llvm;
33
34 // GCC #defines PPC on Linux but we use it as our namespace name
35 #undef PPC
36
37 // Defines symbolic names for PowerPC registers.  This defines a mapping from
38 // register name to register number.
39 //
40 #include "PowerPCGenRegisterNames.inc"
41
42 // Defines symbolic names for the PowerPC instructions.
43 //
44 #include "PowerPCGenInstrNames.inc"
45
46 #endif