Misha Brukman | 2a8350a | 2005-02-05 02:24:26 +0000 | [diff] [blame] | 1 | //===-- Alpha.h - Top-level interface for Alpha representation --*- C++ -*-===// |
Misha Brukman | 4633f1c | 2005-04-21 23:13:11 +0000 | [diff] [blame] | 2 | // |
Andrew Lenharth | 304d0f3 | 2005-01-22 23:41:55 +0000 | [diff] [blame] | 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. |
Misha Brukman | 4633f1c | 2005-04-21 23:13:11 +0000 | [diff] [blame] | 7 | // |
Andrew Lenharth | 304d0f3 | 2005-01-22 23:41:55 +0000 | [diff] [blame] | 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; |
Andrew Lenharth | 0934ae0 | 2005-07-22 20:52:16 +0000 | [diff] [blame] | 24 | class MachineCodeEmitter; |
Andrew Lenharth | 304d0f3 | 2005-01-22 23:41:55 +0000 | [diff] [blame] | 25 | |
| 26 | FunctionPass *createAlphaSimpleInstructionSelector(TargetMachine &TM); |
Andrew Lenharth | 4907d22 | 2005-10-20 00:28:31 +0000 | [diff] [blame] | 27 | FunctionPass *createAlphaISelDag(TargetMachine &TM); |
Andrew Lenharth | 304d0f3 | 2005-01-22 23:41:55 +0000 | [diff] [blame] | 28 | FunctionPass *createAlphaCodePrinterPass(std::ostream &OS, |
| 29 | TargetMachine &TM); |
| 30 | FunctionPass *createAlphaPatternInstructionSelector(TargetMachine &TM); |
Andrew Lenharth | 0934ae0 | 2005-07-22 20:52:16 +0000 | [diff] [blame] | 31 | FunctionPass *createAlphaCodeEmitterPass(MachineCodeEmitter &MCE); |
Andrew Lenharth | 304d0f3 | 2005-01-22 23:41:55 +0000 | [diff] [blame] | 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 |