* src/vmcore/linker.c (build_display): Removed superfluous recursion; return
[cacao.git] / src / vm / jit / dseg.h
1 /* src/vm/jit/dseg.c - data segment handling stuff
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 */
26
27
28 #ifndef _DSEG_H
29 #define _DSEG_H
30
31 /* forward typedefs ***********************************************************/
32
33 typedef struct dsegentry dsegentry;
34
35
36 #include "config.h"
37 #include "vm/types.h"
38
39 #include "toolbox/list.h"
40
41 #include "vm/jit/jit.h"
42 #include "vm/jit/codegen-common.h"
43
44 #include "vmcore/references.h"
45
46
47 /* convenience macros *********************************************************/
48
49 #define dseg_add_functionptr(cd,value) \
50     dseg_add_address((cd), (void *) (ptrint) (value))
51
52
53 /* dataentry ******************************************************************/
54
55 #define DSEG_FLAG_UNIQUE      0x0001
56 #define DSEG_FLAG_READONLY    0x0002
57
58 struct dsegentry {
59         u2         type;
60         u2         flags;
61         s4         disp;
62         imm_union  val;
63         dsegentry *next;
64 };
65
66
67 /* function prototypes ********************************************************/
68
69 void dseg_finish(jitdata *jd);
70
71 s4 dseg_add_unique_s4(codegendata *cd, s4 value);
72 s4 dseg_add_unique_s8(codegendata *cd, s8 value);
73 s4 dseg_add_unique_float(codegendata *cd, float value);
74 s4 dseg_add_unique_double(codegendata *cd, double value);
75 s4 dseg_add_unique_address(codegendata *cd, void *value);
76
77 s4 dseg_add_s4(codegendata *cd, s4 value);
78 s4 dseg_add_s8(codegendata *cd, s8 value);
79 s4 dseg_add_float(codegendata *cd, float value);
80 s4 dseg_add_double(codegendata *cd, double value);
81 s4 dseg_add_address(codegendata *cd, void *value);
82
83 void dseg_add_unique_target(codegendata *cd, basicblock *target);
84 void dseg_add_target(codegendata *cd, basicblock *target);
85
86 #if defined(__I386__) || defined(__X86_64__) || defined(__XDSPCORE__) || defined(__M68K__) || defined(ENABLE_INTRP)
87 void dseg_adddata(codegendata *cd);
88 void dseg_resolve_datareferences(jitdata *jd);
89 #endif
90
91 #if !defined(NDEBUG)
92 void dseg_display(jitdata *jd);
93 #endif
94
95 #endif /* _DSEG_H */
96
97
98 /*
99  * These are local overrides for various environment variables in Emacs.
100  * Please do not remove this and leave it at the end of the file, where
101  * Emacs will automagically detect them.
102  * ---------------------------------------------------------------------
103  * Local variables:
104  * mode: c
105  * indent-tabs-mode: t
106  * c-basic-offset: 4
107  * tab-width: 4
108  * End:
109  * vim:noexpandtab:sw=4:ts=4:
110  */