2 * Copyright (c) 1991-1994 by Xerox Corporation. All rights reserved.
3 * Copyright (c) 1999 by Hewlett-Packard Company. All rights reserved.
5 * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
6 * OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
8 * Permission is hereby granted to use or copy this program
9 * for any purpose, provided the above notices are retained on all copies.
10 * Permission to modify the code and to distribute modified code is granted,
11 * provided the above notices are retained, and a notice that the code was
12 * modified is included with the above copyright notice.
15 /* Boehm, July 31, 1995 5:02 pm PDT */
20 * This is an allocator interface tuned for gcj (the GNU static
23 * Each allocated object has a pointer in its first word to a vtable,
24 * which for our purposes is simply a structure describing the type of
26 * This descriptor structure contains a GC marking descriptor at offset
29 * It is hoped that this interface may also be useful for other systems,
30 * possibly with some tuning of the constants. But the immediate goal
31 * is to get better gcj performance.
34 * 1) We have an ANSI conforming C compiler.
35 * 2) Counting on explicit initialization of this interface is OK.
36 * 3) FASTLOCK is not a significant win.
39 #include "private/gc_pmark.h"
41 #include "private/dbg_mlc.h"
43 GC_bool GC_gcj_malloc_initialized
= FALSE
;
45 int GC_gcj_kind
; /* Object kind for objects with descriptors */
47 int GC_gcj_debug_kind
; /* The kind of objects that is always marked */
48 /* with a mark proc call. */
50 ptr_t
* GC_gcjobjfreelist
;
51 ptr_t
* GC_gcjdebugobjfreelist
;
53 /* Caller does not hold allocation lock. */
54 void GC_init_gcj_malloc(int mp_index
, void * /* really GC_mark_proc */mp
)
59 GC_init(); /* In case it's not already done. */
62 if (GC_gcj_malloc_initialized
) {
67 GC_gcj_malloc_initialized
= TRUE
;
68 GC_mark_procs
[mp_index
] = (GC_mark_proc
)mp
;
69 if (mp_index
>= GC_n_mark_procs
) ABORT("GC_init_gcj_malloc: bad index");
70 /* Set up object kind gcj-style indirect descriptor. */
71 GC_gcjobjfreelist
= (ptr_t
*)
72 GC_INTERNAL_MALLOC((MAXOBJSZ
+1)*sizeof(ptr_t
), PTRFREE
);
73 if (GC_gcjobjfreelist
== 0) ABORT("Couldn't allocate GC_gcjobjfreelist");
74 BZERO(GC_gcjobjfreelist
, (MAXOBJSZ
+1)*sizeof(ptr_t
));
75 GC_gcj_kind
= GC_n_kinds
++;
76 GC_obj_kinds
[GC_gcj_kind
].ok_freelist
= GC_gcjobjfreelist
;
77 GC_obj_kinds
[GC_gcj_kind
].ok_reclaim_list
= 0;
78 GC_obj_kinds
[GC_gcj_kind
].ok_descriptor
=
79 (((word
)(-MARK_DESCR_OFFSET
- GC_INDIR_PER_OBJ_BIAS
)) | GC_DS_PER_OBJECT
);
80 GC_obj_kinds
[GC_gcj_kind
].ok_relocate_descr
= FALSE
;
81 GC_obj_kinds
[GC_gcj_kind
].ok_init
= TRUE
;
82 /* Set up object kind for objects that require mark proc call. */
83 GC_gcjdebugobjfreelist
= (ptr_t
*)
84 GC_INTERNAL_MALLOC((MAXOBJSZ
+1)*sizeof(ptr_t
), PTRFREE
);
85 if (GC_gcjdebugobjfreelist
== 0)
86 ABORT("Couldn't allocate GC_gcjdebugobjfreelist");
87 BZERO(GC_gcjdebugobjfreelist
, (MAXOBJSZ
+1)*sizeof(ptr_t
));
88 GC_gcj_debug_kind
= GC_n_kinds
++;
89 GC_obj_kinds
[GC_gcj_debug_kind
].ok_freelist
= GC_gcjdebugobjfreelist
;
90 GC_obj_kinds
[GC_gcj_debug_kind
].ok_reclaim_list
= 0;
91 GC_obj_kinds
[GC_gcj_debug_kind
].ok_descriptor
=
92 GC_MAKE_PROC(mp_index
, 1 /* allocated with debug info */);
93 GC_obj_kinds
[GC_gcj_debug_kind
].ok_relocate_descr
= FALSE
;
94 GC_obj_kinds
[GC_gcj_debug_kind
].ok_init
= TRUE
;
99 ptr_t
GC_clear_stack();
101 #define GENERAL_MALLOC(lb,k) \
102 (GC_PTR)GC_clear_stack(GC_generic_malloc_inner((word)lb, k))
104 #define GENERAL_MALLOC_IOP(lb,k) \
105 (GC_PTR)GC_clear_stack(GC_generic_malloc_inner_ignore_off_page(lb, k))
107 /* Allocate an object, clear it, and store the pointer to the */
108 /* type structure (vtable in gcj). */
109 /* This adds a byte at the end of the object if GC_malloc would.*/
110 void * GC_gcj_malloc(size_t lb
, void * ptr_to_struct_containing_descr
)
113 register ptr_t
* opp
;
117 if( EXPECT(SMALL_OBJ(lb
), 1) ) {
119 lw
= GC_size_map
[lb
];
121 lw
= ALIGNED_WORDS(lb
);
123 opp
= &(GC_gcjobjfreelist
[lw
]);
126 if( EXPECT(op
== 0, 0)) {
127 op
= (ptr_t
)GENERAL_MALLOC((word
)lb
, GC_gcj_kind
);
130 return(GC_oom_fn(lb
));
133 lw
= GC_size_map
[lb
]; /* May have been uninitialized. */
137 GC_words_allocd
+= lw
;
139 *(void **)op
= ptr_to_struct_containing_descr
;
143 op
= (ptr_t
)GENERAL_MALLOC((word
)lb
, GC_gcj_kind
);
146 return(GC_oom_fn(lb
));
148 *(void **)op
= ptr_to_struct_containing_descr
;
154 /* Similar to GC_gcj_malloc, but add debug info. This is allocated */
155 /* with GC_gcj_debug_kind. */
156 GC_PTR
GC_debug_gcj_malloc(size_t lb
, void * ptr_to_struct_containing_descr
,
161 /* We clone the code from GC_debug_gcj_malloc, so that we */
162 /* dont end up with extra frames on the stack, which could */
163 /* confuse the backtrace. */
165 result
= GC_generic_malloc_inner(lb
+ DEBUG_BYTES
, GC_gcj_debug_kind
);
168 GC_err_printf2("GC_debug_gcj_malloc(%ld, 0x%lx) returning NIL (",
170 (unsigned long) ptr_to_struct_containing_descr
);
172 GC_err_printf1(":%ld)\n", (unsigned long)i
);
173 return(GC_oom_fn(lb
));
175 *((void **)((ptr_t
)result
+ sizeof(oh
))) = ptr_to_struct_containing_descr
;
177 if (!GC_debugging_started
) {
178 GC_start_debugging();
180 ADD_CALL_CHAIN(result
, ra
);
181 return (GC_store_debug_info(result
, (word
)lb
, s
, (word
)i
));
184 /* Similar to GC_gcj_malloc, but the size is in words, and we don't */
185 /* adjust it. The size is assumed to be such that it can be */
186 /* allocated as a small object. */
187 void * GC_gcj_fast_malloc(size_t lw
, void * ptr_to_struct_containing_descr
)
193 opp
= &(GC_gcjobjfreelist
[lw
]);
196 if( EXPECT(op
== 0, 0) ) {
197 op
= (ptr_t
)GC_clear_stack(
198 GC_generic_malloc_words_small_inner(lw
, GC_gcj_kind
));
201 return GC_oom_fn(WORDS_TO_BYTES(lw
));
205 GC_words_allocd
+= lw
;
207 *(void **)op
= ptr_to_struct_containing_descr
;
212 /* And a debugging version of the above: */
213 void * GC_debug_gcj_fast_malloc(size_t lw
,
214 void * ptr_to_struct_containing_descr
,
218 size_t lb
= WORDS_TO_BYTES(lw
);
220 /* We clone the code from GC_debug_gcj_malloc, so that we */
221 /* dont end up with extra frames on the stack, which could */
222 /* confuse the backtrace. */
224 result
= GC_generic_malloc_inner(lb
+ DEBUG_BYTES
, GC_gcj_debug_kind
);
227 GC_err_printf2("GC_debug_gcj_fast_malloc(%ld, 0x%lx) returning NIL (",
229 (unsigned long) ptr_to_struct_containing_descr
);
231 GC_err_printf1(":%ld)\n", (unsigned long)i
);
232 return GC_oom_fn(WORDS_TO_BYTES(lw
));
234 *((void **)((ptr_t
)result
+ sizeof(oh
))) = ptr_to_struct_containing_descr
;
236 if (!GC_debugging_started
) {
237 GC_start_debugging();
239 ADD_CALL_CHAIN(result
, ra
);
240 return (GC_store_debug_info(result
, (word
)lb
, s
, (word
)i
));
243 void * GC_gcj_malloc_ignore_off_page(size_t lb
,
244 void * ptr_to_struct_containing_descr
)
247 register ptr_t
* opp
;
251 if( SMALL_OBJ(lb
) ) {
253 lw
= GC_size_map
[lb
];
255 lw
= ALIGNED_WORDS(lb
);
257 opp
= &(GC_gcjobjfreelist
[lw
]);
259 if( (op
= *opp
) == 0 ) {
260 op
= (ptr_t
)GENERAL_MALLOC_IOP(lb
, GC_gcj_kind
);
262 lw
= GC_size_map
[lb
]; /* May have been uninitialized. */
266 GC_words_allocd
+= lw
;
268 *(void **)op
= ptr_to_struct_containing_descr
;
271 op
= (ptr_t
)GENERAL_MALLOC_IOP(lb
, GC_gcj_kind
);
273 *(void **)op
= ptr_to_struct_containing_descr
;
282 char GC_no_gcj_support
;
284 #endif /* GC_GCJ_SUPPORT */