Move isLoadFrom/StoreToStackSlot from MRegisterInfo to TargetInstrInfo,a far more...
[oota-llvm.git] / lib / Target / Alpha / Alpha.h
1 //===-- Alpha.h - Top-level interface for Alpha 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 // Alpha back-end.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef TARGET_ALPHA_H
16 #define TARGET_ALPHA_H
17
18 #include <iosfwd>
19
20 namespace llvm {
21
22   class FunctionPass;
23   class TargetMachine;
24   class MachineCodeEmitter;
25
26   FunctionPass *createAlphaSimpleInstructionSelector(TargetMachine &TM);
27   FunctionPass *createAlphaISelDag(TargetMachine &TM);
28   FunctionPass *createAlphaCodePrinterPass(std::ostream &OS,
29                                              TargetMachine &TM);
30   FunctionPass *createAlphaPatternInstructionSelector(TargetMachine &TM);
31   FunctionPass *createAlphaCodeEmitterPass(MachineCodeEmitter &MCE);
32 } // end namespace llvm;
33
34 // Defines symbolic names for Alpha registers.  This defines a mapping from
35 // register name to register number.
36 //
37 #include "AlphaGenRegisterNames.inc"
38
39 // Defines symbolic names for the Alpha instructions.
40 //
41 #include "AlphaGenInstrNames.inc"
42
43 #endif