LLVM API Documentation

Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

Alpha.h

Go to the documentation of this file.
00001 //===-- Alpha.h - Top-level interface for Alpha representation --*- C++ -*-===//
00002 //
00003 //                     The LLVM Compiler Infrastructure
00004 //
00005 // This file is distributed under the University of Illinois Open Source
00006 // License. See LICENSE.TXT for details.
00007 //
00008 //===----------------------------------------------------------------------===//
00009 //
00010 // This file contains the entry points for global functions defined in the LLVM
00011 // Alpha back-end.
00012 //
00013 //===----------------------------------------------------------------------===//
00014 
00015 #ifndef TARGET_ALPHA_H
00016 #define TARGET_ALPHA_H
00017 
00018 #include <iosfwd>
00019 
00020 namespace llvm {
00021 
00022   class AlphaTargetMachine;
00023   class FunctionPass;
00024   class TargetMachine;
00025   class MachineCodeEmitter;
00026   class raw_ostream;
00027 
00028   FunctionPass *createAlphaISelDag(AlphaTargetMachine &TM);
00029   FunctionPass *createAlphaCodePrinterPass(raw_ostream &OS,
00030                                              TargetMachine &TM);
00031   FunctionPass *createAlphaPatternInstructionSelector(TargetMachine &TM);
00032   FunctionPass *createAlphaCodeEmitterPass(AlphaTargetMachine &TM,
00033                                            MachineCodeEmitter &MCE);
00034   FunctionPass *createAlphaLLRPPass(AlphaTargetMachine &tm);
00035   FunctionPass *createAlphaBranchSelectionPass();
00036 
00037 } // end namespace llvm;
00038 
00039 // Defines symbolic names for Alpha registers.  This defines a mapping from
00040 // register name to register number.
00041 //
00042 #include "AlphaGenRegisterNames.inc"
00043 
00044 // Defines symbolic names for the Alpha instructions.
00045 //
00046 #include "AlphaGenInstrNames.inc"
00047 
00048 #endif



This web site is hosted by the Computer Science Department at the University of Illinois at Urbana-Champaign.