2004-02-25 19:28:19 +00:00
|
|
|
//===-- SparcV8.h - Top-level interface for SparcV8 representation -*- C++ -*-//
|
2005-04-21 23:30:14 +00:00
|
|
|
//
|
2004-02-25 19:28:19 +00: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-21 23:30:14 +00:00
|
|
|
//
|
2004-02-25 19:28:19 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the entry points for global functions defined in the LLVM
|
|
|
|
// SparcV8 back-end.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef TARGET_SPARCV8_H
|
|
|
|
#define TARGET_SPARCV8_H
|
|
|
|
|
|
|
|
#include <iosfwd>
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2004-02-29 00:27:00 +00:00
|
|
|
class FunctionPass;
|
|
|
|
class TargetMachine;
|
2004-02-25 19:28:19 +00:00
|
|
|
|
2004-02-29 00:27:00 +00:00
|
|
|
FunctionPass *createSparcV8SimpleInstructionSelector(TargetMachine &TM);
|
2005-12-17 07:47:01 +00:00
|
|
|
FunctionPass *createSparcV8ISelDag(TargetMachine &TM);
|
|
|
|
|
2004-03-04 06:00:41 +00:00
|
|
|
FunctionPass *createSparcV8CodePrinterPass(std::ostream &OS,
|
|
|
|
TargetMachine &TM);
|
2004-04-06 23:21:24 +00:00
|
|
|
FunctionPass *createSparcV8DelaySlotFillerPass(TargetMachine &TM);
|
2004-09-29 03:25:39 +00:00
|
|
|
FunctionPass *createSparcV8FPMoverPass(TargetMachine &TM);
|
2004-02-25 19:28:19 +00:00
|
|
|
|
|
|
|
} // end namespace llvm;
|
|
|
|
|
|
|
|
// Defines symbolic names for SparcV8 registers. This defines a mapping from
|
|
|
|
// register name to register number.
|
|
|
|
//
|
|
|
|
#include "SparcV8GenRegisterNames.inc"
|
|
|
|
|
|
|
|
// Defines symbolic names for the SparcV8 instructions.
|
|
|
|
//
|
|
|
|
#include "SparcV8GenInstrNames.inc"
|
|
|
|
|
|
|
|
#endif
|