make tblgen produce a function that returns the name for a physreg.
[llvm/avr.git] / lib / Target / PowerPC / PPC.h
blob7b98268bd83d0b146a893987d4616727ba5ada84
1 //===-- PPC.h - Top-level interface for PowerPC Target ----------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // 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.
13 //===----------------------------------------------------------------------===//
15 #ifndef LLVM_TARGET_POWERPC_H
16 #define LLVM_TARGET_POWERPC_H
18 // GCC #defines PPC on Linux but we use it as our namespace name
19 #undef PPC
21 #include "llvm/Target/TargetMachine.h"
23 namespace llvm {
24 class PPCTargetMachine;
25 class FunctionPass;
26 class MachineCodeEmitter;
27 class ObjectCodeEmitter;
28 class formatted_raw_ostream;
30 FunctionPass *createPPCBranchSelectionPass();
31 FunctionPass *createPPCISelDag(PPCTargetMachine &TM);
32 FunctionPass *createPPCCodeEmitterPass(PPCTargetMachine &TM,
33 MachineCodeEmitter &MCE);
34 FunctionPass *createPPCJITCodeEmitterPass(PPCTargetMachine &TM,
35 JITCodeEmitter &MCE);
36 FunctionPass *createPPCObjectCodeEmitterPass(PPCTargetMachine &TM,
37 ObjectCodeEmitter &OCE);
39 extern Target ThePPC32Target;
40 extern Target ThePPC64Target;
42 } // end namespace llvm;
44 // Defines symbolic names for PowerPC registers. This defines a mapping from
45 // register name to register number.
47 #include "PPCGenRegisterNames.inc"
49 // Defines symbolic names for the PowerPC instructions.
51 #include "PPCGenInstrNames.inc"
53 #endif