2005-02-05 03:24:26 +01:00
|
|
|
//===-- Alpha.h - Top-level interface for Alpha representation --*- C++ -*-===//
|
2005-04-22 01:13:11 +02:00
|
|
|
//
|
2005-01-23 00:41:55 +01:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-22 01:13:11 +02:00
|
|
|
//
|
2005-01-23 00:41:55 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the entry points for global functions defined in the LLVM
|
|
|
|
// Alpha back-end.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef TARGET_ALPHA_H
|
|
|
|
#define TARGET_ALPHA_H
|
|
|
|
|
|
|
|
#include <iosfwd>
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2006-07-25 22:40:54 +02:00
|
|
|
class AlphaTargetMachine;
|
2005-01-23 00:41:55 +01:00
|
|
|
class FunctionPass;
|
|
|
|
class TargetMachine;
|
2005-07-22 22:52:16 +02:00
|
|
|
class MachineCodeEmitter;
|
2005-01-23 00:41:55 +01:00
|
|
|
|
|
|
|
FunctionPass *createAlphaSimpleInstructionSelector(TargetMachine &TM);
|
2005-10-20 02:28:31 +02:00
|
|
|
FunctionPass *createAlphaISelDag(TargetMachine &TM);
|
2005-01-23 00:41:55 +01:00
|
|
|
FunctionPass *createAlphaCodePrinterPass(std::ostream &OS,
|
|
|
|
TargetMachine &TM);
|
|
|
|
FunctionPass *createAlphaPatternInstructionSelector(TargetMachine &TM);
|
2006-07-25 22:40:54 +02:00
|
|
|
FunctionPass *createAlphaCodeEmitterPass(AlphaTargetMachine &TM,
|
|
|
|
MachineCodeEmitter &MCE);
|
2006-09-18 21:44:29 +02:00
|
|
|
FunctionPass *createAlphaLLRPPass(AlphaTargetMachine &tm);
|
2006-10-31 17:49:55 +01:00
|
|
|
FunctionPass *createAlphaBranchSelectionPass();
|
2006-09-18 21:44:29 +02:00
|
|
|
|
2005-01-23 00:41:55 +01:00
|
|
|
} // end namespace llvm;
|
|
|
|
|
|
|
|
// Defines symbolic names for Alpha registers. This defines a mapping from
|
|
|
|
// register name to register number.
|
|
|
|
//
|
|
|
|
#include "AlphaGenRegisterNames.inc"
|
|
|
|
|
|
|
|
// Defines symbolic names for the Alpha instructions.
|
|
|
|
//
|
|
|
|
#include "AlphaGenInstrNames.inc"
|
|
|
|
|
|
|
|
#endif
|