cd483587e06aae3a1de6ece3b9f567c35bc0b154
[cacao.git] / src / vm / field.h
1 /* src/vm/field.h - field functions header
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: Reinhard Grafl
28
29    Changes: Christian Thalinger
30
31    $Id: field.h 4335 2006-01-22 14:39:28Z twisti $
32 */
33
34
35 #ifndef _FIELD_H
36 #define _FIELD_H
37
38 /* forward typedefs ***********************************************************/
39
40 typedef struct fieldinfo fieldinfo; 
41
42 #include "config.h"
43 #include "vm/types.h"
44
45 #include "vm/global.h"
46 #include "vm/utf8.h"
47 #include "vm/references.h"
48 #include "vm/descriptor.h"
49 #include "vm/jit/inline/parseXTA.h"
50
51
52 /* fieldinfo ******************************************************************/
53
54 struct fieldinfo {            /* field of a class                                 */
55         s4         flags;     /* ACC flags                                        */
56         s4         type;      /* basic data type                                  */
57         utf       *name;      /* name of field                                    */
58         utf       *descriptor;/* JavaVM descriptor string of field                */
59         typedesc  *parseddesc;/* parsed descriptor                                */
60
61         s4         offset;    /* offset from start of object (instance variables) */
62
63         imm_union  value;     /* storage for static values (class variables)      */
64
65         classinfo *class;     /* needed by typechecker. Could be optimized        */
66                               /* away by using constant_FMIref instead of         */
67                               /* fieldinfo throughout the compiler.               */
68
69         xtafldinfo *xta;
70 };
71
72
73 /* function prototypes ********************************************************/
74
75 void field_free(fieldinfo *f);
76
77 #if !defined(NDEBUG)
78 void field_printflags(fieldinfo *f);
79 void field_print(fieldinfo *f);
80 void field_println(fieldinfo *f);
81 #endif
82
83 #endif /* _FIELD_H */
84
85
86 /*
87  * These are local overrides for various environment variables in Emacs.
88  * Please do not remove this and leave it at the end of the file, where
89  * Emacs will automagically detect them.
90  * ---------------------------------------------------------------------
91  * Local variables:
92  * mode: c
93  * indent-tabs-mode: t
94  * c-basic-offset: 4
95  * tab-width: 4
96  * End:
97  */