8ca4780a8a7fdbf9eba6d45e1a09ab29f660368f
[cacao.git] / src / vm / jit / alpha / asmoffsets.h
1 /* vm/jit/alpha/asmoffsets.h - data segment offsets for Alpha
2
3    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
4    Institut f. Computersprachen, TU Wien
5    R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser, M. Probst,
6    S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich,
7    J. Wenninger
8
9    This file is part of CACAO.
10
11    This program is free software; you can redistribute it and/or
12    modify it under the terms of the GNU General Public License as
13    published by the Free Software Foundation; either version 2, or (at
14    your option) any later version.
15
16    This program is distributed in the hope that it will be useful, but
17    WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19    General Public License for more details.
20
21    You should have received a copy of the GNU General Public License
22    along with this program; if not, write to the Free Software
23    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
24    02111-1307, USA.
25
26    Contact: cacao@complang.tuwien.ac.at
27
28    Authors: Joseph Wenninger
29
30    $Id: asmoffsets.h 1700 2004-12-06 14:31:01Z twisti $
31
32 */
33
34
35 #ifndef _ASMOFFSETS_H
36 #define _ASMOFFSETS_H
37
38 /* data segment offsets *******************************************************/
39
40 #define MethodPointer           -8
41 #define FrameSize               -12
42 #define IsSync                  -16
43 #define IsLeaf                  -20
44 #define IntSave                 -24
45 #define FltSave                 -28
46 #define LineNumberTableSize     -40
47 #define LineNumberTableStart    -48
48 /* DEFINE LINE NUMBER STUFF HERE */
49 #define ExTableSize             -56
50 #define ExTableStart            -56
51        
52 #define ExEntrySize             -32
53 #define ExStartPC               -8
54 #define ExEndPC                 -16
55 #define ExHandlerPC             -24
56 #define ExCatchType             -32
57
58 #endif /* _ASMOFFSETS_H */
59
60
61 /*
62  * These are local overrides for various environment variables in Emacs.
63  * Please do not remove this and leave it at the end of the file, where
64  * Emacs will automagically detect them.
65  * ---------------------------------------------------------------------
66  * Local variables:
67  * mode: c
68  * indent-tabs-mode: t
69  * c-basic-offset: 4
70  * tab-width: 4
71  * End:
72  */