Update comments.
[llvm/msp430.git] / lib / Target / PowerPC / PPC.h
blob3ffb680fdc018fabe54edf2810a08e92dabd7a85
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 namespace llvm {
22 class PPCTargetMachine;
23 class FunctionPass;
24 class MachineCodeEmitter;
25 class raw_ostream;
27 FunctionPass *createPPCBranchSelectionPass();
28 FunctionPass *createPPCISelDag(PPCTargetMachine &TM);
29 FunctionPass *createPPCAsmPrinterPass(raw_ostream &OS,
30 PPCTargetMachine &TM,
31 bool Fast, bool Verbose);
32 FunctionPass *createPPCCodeEmitterPass(PPCTargetMachine &TM,
33 MachineCodeEmitter &MCE);
34 } // end namespace llvm;
36 // Defines symbolic names for PowerPC registers. This defines a mapping from
37 // register name to register number.
39 #include "PPCGenRegisterNames.inc"
41 // Defines symbolic names for the PowerPC instructions.
43 #include "PPCGenInstrNames.inc"
45 #endif