* src/lib/gnu/java/lang/reflect/Method.java
[cacao.git] / src / vmcore / field.h
1 /* src/vmcore/field.h - field functions header
2
3    Copyright (C) 1996-2005, 2006, 2007 R. Grafl, A. Krall, C. Kruegel,
4    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6    J. Wenninger, 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., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25    $Id: field.h 8249 2007-07-31 12:59:03Z panzi $
26 */
27
28
29 #ifndef _FIELD_H
30 #define _FIELD_H
31
32 /* forward typedefs ***********************************************************/
33
34 typedef struct fieldinfo fieldinfo; 
35
36
37 #include "config.h"
38 #include "vm/types.h"
39
40 #include "vm/global.h"
41
42 #include "vmcore/descriptor.h"
43 #include "vmcore/class.h"
44 #include "vmcore/loader.h"
45 #include "vmcore/references.h"
46 #include "vmcore/utf8.h"
47
48
49 /* fieldinfo ******************************************************************/
50
51 struct fieldinfo {            /* field of a class                                 */
52
53         /* CAUTION: The first field must be a pointer that is never the same      */
54         /*          value as CLASSREF_PSEUDO_VFTBL! This is used to check whether */
55         /*          a constant_FMIref has been resolved.                          */
56
57         classinfo *class;     /* needed by typechecker. Could be optimized        */
58                               /* away by using constant_FMIref instead of         */
59                               /* fieldinfo throughout the compiler.               */
60
61         s4         flags;     /* ACC flags                                        */
62         s4         type;      /* basic data type                                  */
63         utf       *name;      /* name of field                                    */
64         utf       *descriptor;/* JavaVM descriptor string of field                */
65         utf       *signature; /* Signature attribute string                       */
66         typedesc  *parseddesc;/* parsed descriptor                                */
67
68         s4         offset;    /* offset from start of object (instance variables) */
69
70         imm_union  value;     /* storage for static values (class variables)      */
71 };
72
73
74 /* function prototypes ********************************************************/
75
76 bool       field_load(classbuffer *cb, fieldinfo *f, descriptor_pool *descpool);
77 classinfo *field_get_type(fieldinfo *f);
78 void       field_free(fieldinfo *f);
79
80 #if defined(ENABLE_ANNOTATIONS)
81 annotation_bytearray_t *field_get_annotations(fieldinfo *f);
82 #endif
83
84 #if !defined(NDEBUG)
85 void field_printflags(fieldinfo *f);
86 void field_print(fieldinfo *f);
87 void field_println(fieldinfo *f);
88 void field_fieldref_print(constant_FMIref *fr);
89 void field_fieldref_println(constant_FMIref *fr);
90 #endif
91
92 #endif /* _FIELD_H */
93
94
95 /*
96  * These are local overrides for various environment variables in Emacs.
97  * Please do not remove this and leave it at the end of the file, where
98  * Emacs will automagically detect them.
99  * ---------------------------------------------------------------------
100  * Local variables:
101  * mode: c
102  * indent-tabs-mode: t
103  * c-basic-offset: 4
104  * tab-width: 4
105  * End:
106  */