| Brian Gaeke | e785e53 | 2004-02-25 19:28:19 +0000 | [diff] [blame] | 1 | //===-- SparcV8.h - Top-level interface for SparcV8 representation -*- C++ -*-// | 
| Misha Brukman | b5f662f | 2005-04-21 23:30:14 +0000 | [diff] [blame] | 2 | // | 
| Brian Gaeke | e785e53 | 2004-02-25 19:28:19 +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 | b5f662f | 2005-04-21 23:30:14 +0000 | [diff] [blame] | 7 | // | 
| Brian Gaeke | e785e53 | 2004-02-25 19:28:19 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// | 
|  | 9 | // | 
|  | 10 | // This file contains the entry points for global functions defined in the LLVM | 
|  | 11 | // SparcV8 back-end. | 
|  | 12 | // | 
|  | 13 | //===----------------------------------------------------------------------===// | 
|  | 14 |  | 
|  | 15 | #ifndef TARGET_SPARCV8_H | 
|  | 16 | #define TARGET_SPARCV8_H | 
|  | 17 |  | 
|  | 18 | #include <iosfwd> | 
|  | 19 |  | 
|  | 20 | namespace llvm { | 
|  | 21 |  | 
| Chris Lattner | 1c809c5 | 2004-02-29 00:27:00 +0000 | [diff] [blame] | 22 | class FunctionPass; | 
|  | 23 | class TargetMachine; | 
| Brian Gaeke | e785e53 | 2004-02-25 19:28:19 +0000 | [diff] [blame] | 24 |  | 
| Chris Lattner | 6c18b10 | 2005-12-17 07:47:01 +0000 | [diff] [blame] | 25 | FunctionPass *createSparcV8ISelDag(TargetMachine &TM); | 
|  | 26 |  | 
| Brian Gaeke | 4acfd03 | 2004-03-04 06:00:41 +0000 | [diff] [blame] | 27 | FunctionPass *createSparcV8CodePrinterPass(std::ostream &OS, | 
|  | 28 | TargetMachine &TM); | 
| Brian Gaeke | 86a8790 | 2004-04-06 23:21:24 +0000 | [diff] [blame] | 29 | FunctionPass *createSparcV8DelaySlotFillerPass(TargetMachine &TM); | 
| Brian Gaeke | 1162ed2 | 2004-09-29 03:25:39 +0000 | [diff] [blame] | 30 | FunctionPass *createSparcV8FPMoverPass(TargetMachine &TM); | 
| Brian Gaeke | e785e53 | 2004-02-25 19:28:19 +0000 | [diff] [blame] | 31 |  | 
|  | 32 | } // end namespace llvm; | 
|  | 33 |  | 
|  | 34 | // Defines symbolic names for SparcV8 registers.  This defines a mapping from | 
|  | 35 | // register name to register number. | 
|  | 36 | // | 
|  | 37 | #include "SparcV8GenRegisterNames.inc" | 
|  | 38 |  | 
|  | 39 | // Defines symbolic names for the SparcV8 instructions. | 
|  | 40 | // | 
|  | 41 | #include "SparcV8GenInstrNames.inc" | 
|  | 42 |  | 
|  | 43 | #endif |