Add 8-bit regclass and pattern for sext_inreg
[llvm/msp430.git] / lib / Target / PowerPC / PPC.h
blob78c970eab47b8a58c66063d46e28d77f72b74fca
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 raw_ostream;
29 FunctionPass *createPPCBranchSelectionPass();
30 FunctionPass *createPPCISelDag(PPCTargetMachine &TM);
31 FunctionPass *createPPCAsmPrinterPass(raw_ostream &OS,
32 PPCTargetMachine &TM,
33 CodeGenOpt::Level OptLevel, bool Verbose);
34 FunctionPass *createPPCCodeEmitterPass(PPCTargetMachine &TM,
35 MachineCodeEmitter &MCE);
36 } // end namespace llvm;
38 // Defines symbolic names for PowerPC registers. This defines a mapping from
39 // register name to register number.
41 #include "PPCGenRegisterNames.inc"
43 // Defines symbolic names for the PowerPC instructions.
45 #include "PPCGenInstrNames.inc"
47 #endif