Open64 (mfef90, whirl2f, and IR tools)  TAG: version-openad; SVN changeset: 916
targ_sim.h
Go to the documentation of this file.
00001 /*
00002 
00003   Copyright (C) 2000, 2001 Silicon Graphics, Inc.  All Rights Reserved.
00004 
00005   This program is free software; you can redistribute it and/or modify it
00006   under the terms of version 2 of the GNU General Public License as
00007   published by the Free Software Foundation.
00008 
00009   This program is distributed in the hope that it would be useful, but
00010   WITHOUT ANY WARRANTY; without even the implied warranty of
00011   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
00012 
00013   Further, this software is distributed without any warranty that it is
00014   free of the rightful claim of any third person regarding infringement 
00015   or the like.  Any license provided herein, whether implied or 
00016   otherwise, applies only to this software file.  Patent licenses, if 
00017   any, provided herein do not apply to combinations of this program with 
00018   other software, or any other product whatsoever.  
00019 
00020   You should have received a copy of the GNU General Public License along
00021   with this program; if not, write the Free Software Foundation, Inc., 59
00022   Temple Place - Suite 330, Boston MA 02111-1307, USA.
00023 
00024   Contact information:  Silicon Graphics, Inc., 1600 Amphitheatre Pky,
00025   Mountain View, CA 94043, or:
00026 
00027   http://www.sgi.com
00028 
00029   For further information regarding this notice, see:
00030 
00031   http://oss.sgi.com/projects/GenInfo/NoticeExplan
00032 
00033 */
00034 
00035 
00036 #ifndef targ_sim_INCLUDED
00037 #define targ_sim_INCLUDED
00038 #ifdef __cplusplus
00039 extern "C" {
00040 #endif
00041 
00042 /* some definitions for the dedicated hardware pregs: */
00043 
00044 #define Int_Preg_Min_Offset             1
00045 #define Int_Preg_Max_Offset             127
00046 #define Float_Preg_Min_Offset           128
00047 #define Float_Preg_Max_Offset           255
00048 #define Branch_Preg_Min_Offset          256
00049 #define Branch_Preg_Max_Offset          263
00050 #define Fcc_Preg_Min_Offset             1
00051 #define Fcc_Preg_Max_Offset             0
00052 #define Last_Dedicated_Preg_Offset      Branch_Preg_Max_Offset
00053 
00054 /* The offsets for return registers are fixed: */
00055 #define First_Int_Preg_Return_Offset    8       /* register v0 */
00056 #define Last_Int_Preg_Return_Offset     11      /* register v1 */
00057 #define First_Float_Preg_Return_Offset  136     /* register f0 */
00058 #define Last_Float_Preg_Return_Offset   143     /* register f2 */
00059 #define Stack_Pointer_Preg_Offset       12      /* register sp */
00060 #define Frame_Pointer_Preg_Offset       7       /* register fp */
00061 #define First_Int_Preg_Param_Offset     32      /* register a0 */
00062 #define First_Float_Preg_Param_Offset   136     /* register fa0 */
00063 #define Static_Link_Preg_Offset         14
00064 
00065 #define MAX_NUMBER_OF_REGISTERS_FOR_RETURN 8
00066 #define MAX_NUMBER_OF_REGISTER_PARAMETERS 8
00067 
00068 /* most of the interface is shared between targets */
00069 #include "targ_sim_core.h"
00070 
00071 #ifdef __cplusplus
00072 }
00073 #endif
00074 
00075 RETURN_INFO Get_Return_Info (TY_IDX rtype, Mtype_Return_Level level);
00076 
00077 #endif /* targ_sim_INCLUDED */
00078 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines