GNU header update.
[cacao.git] / src / vm / jit / alpha / arch.h
1 /* vm/jit/alpha/arch.h - architecture defines for Alpha
2
3    Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4    R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5    C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6    Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23    02111-1307, USA.
24
25    Contact: cacao@complang.tuwien.ac.at
26
27    Authors: Christian Thalinger
28
29    $Id: arch.h 1735 2004-12-07 14:33:27Z twisti $
30
31 */
32
33
34 #ifndef _ARCH_H
35 #define _ARCH_H
36
37
38 /* preallocated registers *****************************************************/
39
40 /* integer registers */
41   
42 #define REG_RESULT      0    /* to deliver method results                     */
43
44 #define REG_RA          26   /* return address                                */
45 #define REG_PV          27   /* procedure vector, must be provided by caller  */
46 #define REG_METHODPTR   28   /* pointer to the place from where the procedure */
47                              /* vector has been fetched                       */
48 #define REG_ITMP1       25   /* temporary register                            */
49 #define REG_ITMP2       28   /* temporary register and method pointer         */
50 #define REG_ITMP3       29   /* temporary register                            */
51
52 #define REG_ITMP1_XPTR  25   /* exception pointer = temporary register 1      */
53 #define REG_ITMP2_XPC   28   /* exception pc = temporary register 2           */
54
55 #define REG_SP          30   /* stack pointer                                 */
56 #define REG_ZERO        31   /* always zero                                   */
57
58 /* floating point registers */
59
60 #define REG_FRESULT     0    /* to deliver floating point method results      */
61
62 #define REG_FTMP1       28   /* temporary floating point register             */
63 #define REG_FTMP2       29   /* temporary floating point register             */
64 #define REG_FTMP3       30   /* temporary floating point register             */
65
66 #define REG_IFTMP       28   /* temporary integer and floating point register */
67
68
69 #define INT_SAV_CNT      7   /* number of int callee saved registers          */
70 #define INT_ARG_CNT      6   /* number of int argument registers              */
71
72 #define FLT_SAV_CNT      8   /* number of flt callee saved registers          */
73 #define FLT_ARG_CNT      6   /* number of flt argument registers              */
74
75
76 #define TRACE_ARGS_NUM  6
77
78
79 /* define architecture features ***********************************************/
80
81 #define POINTERSIZE              8
82 #define WORDS_BIGENDIAN          0
83
84 #define U8_AVAILABLE             1
85
86 #define USE_CODEMMAP             1
87
88 #define SUPPORT_DIVISION         0
89 #define SUPPORT_LONG             1
90 #define SUPPORT_FLOAT            1
91 #define SUPPORT_DOUBLE           1
92
93 /*  #define SUPPORT_IFCVT            1 */
94 /*  #define SUPPORT_FICVT            1 */
95
96 #define SUPPORT_LONG_ADD         1
97 #define SUPPORT_LONG_CMP         1
98 #define SUPPORT_LONG_LOG         1
99 #define SUPPORT_LONG_SHIFT       1
100 #define SUPPORT_LONG_MUL         1
101 #define SUPPORT_LONG_DIV         0
102 #define SUPPORT_LONG_ICVT        1
103 #define SUPPORT_LONG_FCVT        1
104
105 #define SUPPORT_CONST_ASTORE     1      /* do we support const astores        */
106 #define SUPPORT_ONLY_ZERO_ASTORE 1      /* on risc machines we can only store */
107                                         /* REG_ZERO                           */
108
109 /*  #define USEBUILTINTABLE */
110
111 #define CONDITIONAL_LOADCONST
112
113 /*  #define CONSECUTIVE_INTARGS */
114 /*  #define CONSECUTIVE_FLOATARGS */
115
116 #endif /* _ARCH_H */
117
118
119 /*
120  * These are local overrides for various environment variables in Emacs.
121  * Please do not remove this and leave it at the end of the file, where
122  * Emacs will automagically detect them.
123  * ---------------------------------------------------------------------
124  * Local variables:
125  * mode: c
126  * indent-tabs-mode: t
127  * c-basic-offset: 4
128  * tab-width: 4
129  * End:
130  */