2 * Copyright (c) 1991-1994 by Xerox Corporation. All rights reserved.
4 * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
5 * OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
7 * Permission is hereby granted to use or copy this program
8 * for any purpose, provided the above notices are retained on all copies.
9 * Permission to modify the code and to distribute modified code is granted,
10 * provided the above notices are retained, and a notice that the code was
11 * modified is included with the above copyright notice.
14 /* Boehm, July 31, 1995 5:02 pm PDT */
18 * Some simple primitives for allocation with explicit type information.
19 * Simple objects are allocated such that they contain a GC_descr at the
20 * end (in the last allocated word). This descriptor may be a procedure
21 * which then examines an extended descriptor passed as its environment.
23 * Arrays are treated as simple objects if they have sufficiently simple
24 * structure. Otherwise they are allocated from an array kind that supplies
25 * a special mark procedure. These arrays contain a pointer to a
26 * complex_descriptor as their last word.
27 * This is done because the environment field is too small, and the collector
28 * must trace the complex_descriptor.
30 * Note that descriptors inside objects may appear cleared, if we encounter a
31 * false refrence to an object on a free list. In the GC_descr case, this
32 * is OK, since a 0 descriptor corresponds to examining no fields.
33 * In the complex_descriptor case, we explicitly check for that case.
35 * MAJOR PARTS OF THIS CODE HAVE NOT BEEN TESTED AT ALL and are not testable,
36 * since they are not accessible through the current interface.
43 # ifdef ADD_BYTE_AT_END
44 # define EXTRA_BYTES (sizeof(word) - 1)
46 # define EXTRA_BYTES (sizeof(word))
49 GC_bool GC_explicit_typing_initialized
= FALSE
;
51 int GC_explicit_kind
; /* Object kind for objects with indirect */
52 /* (possibly extended) descriptors. */
54 int GC_array_kind
; /* Object kind for objects with complex */
55 /* descriptors and GC_array_mark_proc. */
57 /* Extended descriptors. GC_typed_mark_proc understands these. */
58 /* These are used for simple objects that are larger than what */
59 /* can be described by a BITMAP_BITS sized bitmap. */
61 word ed_bitmap
; /* lsb corresponds to first word. */
62 GC_bool ed_continued
; /* next entry is continuation. */
65 /* Array descriptors. GC_array_mark_proc understands these. */
66 /* We may eventually need to add provisions for headers and */
67 /* trailers. Hence we provide for tree structured descriptors, */
68 /* though we don't really use them currently. */
69 typedef union ComplexDescriptor
{
70 struct LeafDescriptor
{ /* Describes simple array */
73 word ld_size
; /* bytes per element */
74 /* multiple of ALIGNMENT */
75 word ld_nelements
; /* Number of elements. */
76 GC_descr ld_descriptor
; /* A simple length, bitmap, */
77 /* or procedure descriptor. */
79 struct ComplexArrayDescriptor
{
83 union ComplexDescriptor
* ad_element_descr
;
85 struct SequenceDescriptor
{
87 # define SEQUENCE_TAG 3
88 union ComplexDescriptor
* sd_first
;
89 union ComplexDescriptor
* sd_second
;
94 ext_descr
* GC_ext_descriptors
; /* Points to array of extended */
97 word GC_ed_size
= 0; /* Current size of above arrays. */
98 # define ED_INITIAL_SIZE 100;
100 word GC_avail_descr
= 0; /* Next available slot. */
102 int GC_typed_mark_proc_index
; /* Indices of my mark */
103 int GC_array_mark_proc_index
; /* procedures. */
105 /* Add a multiword bitmap to GC_ext_descriptors arrays. Return */
106 /* starting index. */
107 /* Returns -1 on failure. */
108 /* Caller does not hold allocation lock. */
109 signed_word
GC_add_ext_descriptor(bm
, nbits
)
113 register size_t nwords
= divWORDSZ(nbits
+ WORDSZ
-1);
114 register signed_word result
;
116 register word last_part
;
117 register int extra_bits
;
122 while (GC_avail_descr
+ nwords
>= GC_ed_size
) {
125 word ed_size
= GC_ed_size
;
130 new_size
= ED_INITIAL_SIZE
;
132 new_size
= 2 * ed_size
;
133 if (new_size
> MAX_ENV
) return(-1);
135 new = (ext_descr
*) GC_malloc_atomic(new_size
* sizeof(ext_descr
));
136 if (new == 0) return(-1);
139 if (ed_size
== GC_ed_size
) {
140 if (GC_avail_descr
!= 0) {
141 BCOPY(GC_ext_descriptors
, new,
142 GC_avail_descr
* sizeof(ext_descr
));
144 GC_ed_size
= new_size
;
145 GC_ext_descriptors
= new;
146 } /* else another thread already resized it in the meantime */
148 result
= GC_avail_descr
;
149 for (i
= 0; i
< nwords
-1; i
++) {
150 GC_ext_descriptors
[result
+ i
].ed_bitmap
= bm
[i
];
151 GC_ext_descriptors
[result
+ i
].ed_continued
= TRUE
;
154 /* Clear irrelevant bits. */
155 extra_bits
= nwords
* WORDSZ
- nbits
;
156 last_part
<<= extra_bits
;
157 last_part
>>= extra_bits
;
158 GC_ext_descriptors
[result
+ i
].ed_bitmap
= last_part
;
159 GC_ext_descriptors
[result
+ i
].ed_continued
= FALSE
;
160 GC_avail_descr
+= nwords
;
166 /* Table of bitmap descriptors for n word long all pointer objects. */
167 GC_descr GC_bm_table
[WORDSZ
/2];
169 /* Return a descriptor for the concatenation of 2 nwords long objects, */
170 /* each of which is described by descriptor. */
171 /* The result is known to be short enough to fit into a bitmap */
173 /* Descriptor is a DS_LENGTH or DS_BITMAP descriptor. */
174 GC_descr
GC_double_descr(descriptor
, nwords
)
175 register GC_descr descriptor
;
176 register word nwords
;
178 if (descriptor
& DS_TAGS
== DS_LENGTH
) {
179 descriptor
= GC_bm_table
[BYTES_TO_WORDS((word
)descriptor
)];
181 descriptor
|= (descriptor
& ~DS_TAGS
) >> nwords
;
185 complex_descriptor
* GC_make_sequence_descriptor();
187 /* Build a descriptor for an array with nelements elements, */
188 /* each of which can be described by a simple descriptor. */
189 /* We try to optimize some common cases. */
190 /* If the result is COMPLEX, then a complex_descr* is returned */
192 /* If the result is LEAF, then we built a LeafDescriptor in */
193 /* the structure pointed to by leaf. */
194 /* The tag in the leaf structure is not set. */
195 /* If the result is SIMPLE, then a GC_descr */
196 /* is returned in *simple_d. */
197 /* If the result is NO_MEM, then */
198 /* we failed to allocate the descriptor. */
199 /* The implementation knows that DS_LENGTH is 0. */
200 /* *leaf, *complex_d, and *simple_d may be used as temporaries */
201 /* during the construction. */
206 int GC_make_array_descriptor(nelements
, size
, descriptor
,
207 simple_d
, complex_d
, leaf
)
212 complex_descriptor
**complex_d
;
213 struct LeafDescriptor
* leaf
;
215 # define OPT_THRESHOLD 50
216 /* For larger arrays, we try to combine descriptors of adjacent */
217 /* descriptors to speed up marking, and to reduce the amount */
218 /* of space needed on the mark stack. */
219 if ((descriptor
& DS_TAGS
) == DS_LENGTH
) {
220 if ((word
)descriptor
== size
) {
221 *simple_d
= nelements
* descriptor
;
223 } else if ((word
)descriptor
== 0) {
224 *simple_d
= (GC_descr
)0;
228 if (nelements
<= OPT_THRESHOLD
) {
229 if (nelements
<= 1) {
230 if (nelements
== 1) {
231 *simple_d
= descriptor
;
234 *simple_d
= (GC_descr
)0;
238 } else if (size
<= BITMAP_BITS
/2
239 && (descriptor
& DS_TAGS
) != DS_PROC
240 && (size
& (sizeof(word
)-1)) == 0) {
242 GC_make_array_descriptor(nelements
/2, 2*size
,
243 GC_double_descr(descriptor
,
244 BYTES_TO_WORDS(size
)),
245 simple_d
, complex_d
, leaf
);
246 if ((nelements
& 1) == 0) {
249 struct LeafDescriptor
* one_element
=
250 (struct LeafDescriptor
*)
251 GC_malloc_atomic(sizeof(struct LeafDescriptor
));
253 if (result
== NO_MEM
|| one_element
== 0) return(NO_MEM
);
254 one_element
-> ld_tag
= LEAF_TAG
;
255 one_element
-> ld_size
= size
;
256 one_element
-> ld_nelements
= 1;
257 one_element
-> ld_descriptor
= descriptor
;
261 struct LeafDescriptor
* beginning
=
262 (struct LeafDescriptor
*)
263 GC_malloc_atomic(sizeof(struct LeafDescriptor
));
264 if (beginning
== 0) return(NO_MEM
);
265 beginning
-> ld_tag
= LEAF_TAG
;
266 beginning
-> ld_size
= size
;
267 beginning
-> ld_nelements
= 1;
268 beginning
-> ld_descriptor
= *simple_d
;
269 *complex_d
= GC_make_sequence_descriptor(
270 (complex_descriptor
*)beginning
,
271 (complex_descriptor
*)one_element
);
276 struct LeafDescriptor
* beginning
=
277 (struct LeafDescriptor
*)
278 GC_malloc_atomic(sizeof(struct LeafDescriptor
));
279 if (beginning
== 0) return(NO_MEM
);
280 beginning
-> ld_tag
= LEAF_TAG
;
281 beginning
-> ld_size
= leaf
-> ld_size
;
282 beginning
-> ld_nelements
= leaf
-> ld_nelements
;
283 beginning
-> ld_descriptor
= leaf
-> ld_descriptor
;
284 *complex_d
= GC_make_sequence_descriptor(
285 (complex_descriptor
*)beginning
,
286 (complex_descriptor
*)one_element
);
290 *complex_d
= GC_make_sequence_descriptor(
292 (complex_descriptor
*)one_element
);
299 leaf
-> ld_size
= size
;
300 leaf
-> ld_nelements
= nelements
;
301 leaf
-> ld_descriptor
= descriptor
;
306 complex_descriptor
* GC_make_sequence_descriptor(first
, second
)
307 complex_descriptor
* first
;
308 complex_descriptor
* second
;
310 struct SequenceDescriptor
* result
=
311 (struct SequenceDescriptor
*)
312 GC_malloc(sizeof(struct SequenceDescriptor
));
313 /* Can't result in overly conservative marking, since tags are */
314 /* very small integers. Probably faster than maintaining type */
317 result
-> sd_tag
= SEQUENCE_TAG
;
318 result
-> sd_first
= first
;
319 result
-> sd_second
= second
;
321 return((complex_descriptor
*)result
);
325 complex_descriptor
* GC_make_complex_array_descriptor(nelements
, descr
)
327 complex_descriptor
* descr
;
329 struct ComplexArrayDescriptor
* result
=
330 (struct ComplexArrayDescriptor
*)
331 GC_malloc(sizeof(struct ComplexArrayDescriptor
));
334 result
-> ad_tag
= ARRAY_TAG
;
335 result
-> ad_nelements
= nelements
;
336 result
-> ad_element_descr
= descr
;
338 return((complex_descriptor
*)result
);
342 ptr_t
* GC_eobjfreelist
;
344 ptr_t
* GC_arobjfreelist
;
346 mse
* GC_typed_mark_proc();
348 mse
* GC_array_mark_proc();
350 GC_descr GC_generic_array_descr
;
352 /* Caller does not hold allocation lock. */
353 void GC_init_explicit_typing()
360 if (sizeof(struct LeafDescriptor
) % sizeof(word
) != 0)
361 ABORT("Bad leaf descriptor size");
365 if (GC_explicit_typing_initialized
) {
370 GC_explicit_typing_initialized
= TRUE
;
371 /* Set up object kind with simple indirect descriptor. */
372 GC_eobjfreelist
= (ptr_t
*)
373 GC_generic_malloc_inner((MAXOBJSZ
+1)*sizeof(ptr_t
), PTRFREE
);
374 if (GC_eobjfreelist
== 0) ABORT("Couldn't allocate GC_eobjfreelist");
375 BZERO(GC_eobjfreelist
, (MAXOBJSZ
+1)*sizeof(ptr_t
));
376 GC_explicit_kind
= GC_n_kinds
++;
377 GC_obj_kinds
[GC_explicit_kind
].ok_freelist
= GC_eobjfreelist
;
378 GC_obj_kinds
[GC_explicit_kind
].ok_reclaim_list
= 0;
379 GC_obj_kinds
[GC_explicit_kind
].ok_descriptor
=
380 (((word
)WORDS_TO_BYTES(-1)) | DS_PER_OBJECT
);
381 GC_obj_kinds
[GC_explicit_kind
].ok_relocate_descr
= TRUE
;
382 GC_obj_kinds
[GC_explicit_kind
].ok_init
= TRUE
;
383 /* Descriptors are in the last word of the object. */
384 GC_typed_mark_proc_index
= GC_n_mark_procs
;
385 GC_mark_procs
[GC_typed_mark_proc_index
] = GC_typed_mark_proc
;
387 /* Moving this up breaks DEC AXP compiler. */
388 /* Set up object kind with array descriptor. */
389 GC_arobjfreelist
= (ptr_t
*)
390 GC_generic_malloc_inner((MAXOBJSZ
+1)*sizeof(ptr_t
), PTRFREE
);
391 if (GC_arobjfreelist
== 0) ABORT("Couldn't allocate GC_arobjfreelist");
392 BZERO(GC_arobjfreelist
, (MAXOBJSZ
+1)*sizeof(ptr_t
));
393 if (GC_n_mark_procs
>= MAX_MARK_PROCS
)
394 ABORT("No slot for array mark proc");
395 GC_array_mark_proc_index
= GC_n_mark_procs
++;
396 if (GC_n_kinds
>= MAXOBJKINDS
)
397 ABORT("No kind available for array objects");
398 GC_array_kind
= GC_n_kinds
++;
399 GC_obj_kinds
[GC_array_kind
].ok_freelist
= GC_arobjfreelist
;
400 GC_obj_kinds
[GC_array_kind
].ok_reclaim_list
= 0;
401 GC_obj_kinds
[GC_array_kind
].ok_descriptor
=
402 MAKE_PROC(GC_array_mark_proc_index
, 0);;
403 GC_obj_kinds
[GC_array_kind
].ok_relocate_descr
= FALSE
;
404 GC_obj_kinds
[GC_array_kind
].ok_init
= TRUE
;
405 /* Descriptors are in the last word of the object. */
406 GC_mark_procs
[GC_array_mark_proc_index
] = GC_array_mark_proc
;
407 for (i
= 0; i
< WORDSZ
/2; i
++) {
408 GC_descr d
= (((word
)(-1)) >> (WORDSZ
- i
)) << (WORDSZ
- i
);
412 GC_generic_array_descr
= MAKE_PROC(GC_array_mark_proc_index
, 0);
417 mse
* GC_typed_mark_proc(addr
, mark_stack_ptr
, mark_stack_limit
, env
)
418 register word
* addr
;
419 register mse
* mark_stack_ptr
;
420 mse
* mark_stack_limit
;
423 register word bm
= GC_ext_descriptors
[env
].ed_bitmap
;
424 register word
* current_p
= addr
;
425 register word current
;
426 register ptr_t greatest_ha
= GC_greatest_plausible_heap_addr
;
427 register ptr_t least_ha
= GC_least_plausible_heap_addr
;
429 for (; bm
!= 0; bm
>>= 1, current_p
++) {
431 current
= *current_p
;
432 if ((ptr_t
)current
>= least_ha
&& (ptr_t
)current
<= greatest_ha
) {
433 PUSH_CONTENTS((ptr_t
)current
, mark_stack_ptr
,
434 mark_stack_limit
, current_p
, exit1
);
438 if (GC_ext_descriptors
[env
].ed_continued
) {
439 /* Push an entry with the rest of the descriptor back onto the */
440 /* stack. Thus we never do too much work at once. Note that */
441 /* we also can't overflow the mark stack unless we actually */
442 /* mark something. */
444 if (mark_stack_ptr
>= mark_stack_limit
) {
445 mark_stack_ptr
= GC_signal_mark_stack_overflow(mark_stack_ptr
);
447 mark_stack_ptr
-> mse_start
= addr
+ WORDSZ
;
448 mark_stack_ptr
-> mse_descr
=
449 MAKE_PROC(GC_typed_mark_proc_index
, env
+1);
451 return(mark_stack_ptr
);
454 /* Return the size of the object described by d. It would be faster to */
455 /* store this directly, or to compute it as part of */
456 /* GC_push_complex_descriptor, but hopefully it doesn't matter. */
457 word
GC_descr_obj_size(d
)
458 register complex_descriptor
*d
;
462 return(d
-> ld
.ld_nelements
* d
-> ld
.ld_size
);
464 return(d
-> ad
.ad_nelements
465 * GC_descr_obj_size(d
-> ad
.ad_element_descr
));
467 return(GC_descr_obj_size(d
-> sd
.sd_first
)
468 + GC_descr_obj_size(d
-> sd
.sd_second
));
470 ABORT("Bad complex descriptor");
471 /*NOTREACHED*/ return 0; /*NOTREACHED*/
475 /* Push descriptors for the object at addr with complex descriptor d */
476 /* onto the mark stack. Return 0 if the mark stack overflowed. */
477 mse
* GC_push_complex_descriptor(addr
, d
, msp
, msl
)
479 register complex_descriptor
*d
;
483 register ptr_t current
= (ptr_t
) addr
;
484 register word nelements
;
491 register GC_descr descr
= d
-> ld
.ld_descriptor
;
493 nelements
= d
-> ld
.ld_nelements
;
494 if (msl
- msp
<= (ptrdiff_t)nelements
) return(0);
495 sz
= d
-> ld
.ld_size
;
496 for (i
= 0; i
< nelements
; i
++) {
498 msp
-> mse_start
= (word
*)current
;
499 msp
-> mse_descr
= descr
;
506 register complex_descriptor
*descr
= d
-> ad
.ad_element_descr
;
508 nelements
= d
-> ad
.ad_nelements
;
509 sz
= GC_descr_obj_size(descr
);
510 for (i
= 0; i
< nelements
; i
++) {
511 msp
= GC_push_complex_descriptor((word
*)current
, descr
,
513 if (msp
== 0) return(0);
520 sz
= GC_descr_obj_size(d
-> sd
.sd_first
);
521 msp
= GC_push_complex_descriptor((word
*)current
, d
-> sd
.sd_first
,
523 if (msp
== 0) return(0);
525 msp
= GC_push_complex_descriptor((word
*)current
, d
-> sd
.sd_second
,
530 ABORT("Bad complex descriptor");
531 /*NOTREACHED*/ return 0; /*NOTREACHED*/
536 mse
* GC_array_mark_proc(addr
, mark_stack_ptr
, mark_stack_limit
, env
)
537 register word
* addr
;
538 register mse
* mark_stack_ptr
;
539 mse
* mark_stack_limit
;
542 register hdr
* hhdr
= HDR(addr
);
543 register word sz
= hhdr
-> hb_sz
;
544 register complex_descriptor
* descr
= (complex_descriptor
*)(addr
[sz
-1]);
545 mse
* orig_mark_stack_ptr
= mark_stack_ptr
;
546 mse
* new_mark_stack_ptr
;
549 /* Found a reference to a free list entry. Ignore it. */
550 return(orig_mark_stack_ptr
);
552 /* In use counts were already updated when array descriptor was */
553 /* pushed. Here we only replace it by subobject descriptors, so */
554 /* no update is necessary. */
555 new_mark_stack_ptr
= GC_push_complex_descriptor(addr
, descr
,
558 if (new_mark_stack_ptr
== 0) {
559 /* Doesn't fit. Conservatively push the whole array as a unit */
560 /* and request a mark stack expansion. */
561 /* This cannot cause a mark stack overflow, since it replaces */
562 /* the original array entry. */
563 GC_mark_stack_too_small
= TRUE
;
564 new_mark_stack_ptr
= orig_mark_stack_ptr
+ 1;
565 new_mark_stack_ptr
-> mse_start
= addr
;
566 new_mark_stack_ptr
-> mse_descr
= WORDS_TO_BYTES(sz
) | DS_LENGTH
;
568 /* Push descriptor itself */
569 new_mark_stack_ptr
++;
570 new_mark_stack_ptr
-> mse_start
= addr
+ sz
- 1;
571 new_mark_stack_ptr
-> mse_descr
= sizeof(word
) | DS_LENGTH
;
573 return(new_mark_stack_ptr
);
576 #if defined(__STDC__) || defined(__cplusplus)
577 GC_descr
GC_make_descriptor(GC_bitmap bm
, size_t len
)
579 GC_descr
GC_make_descriptor(bm
, len
)
584 register signed_word last_set_bit
= len
- 1;
585 register word result
;
587 # define HIGH_BIT (((word)1) << (WORDSZ - 1))
589 if (!GC_explicit_typing_initialized
) GC_init_explicit_typing();
590 while (last_set_bit
>= 0 && !GC_get_bit(bm
, last_set_bit
)) last_set_bit
--;
591 if (last_set_bit
< 0) return(0 /* no pointers */);
592 # if ALIGNMENT == CPP_WORDSZ/8
594 register GC_bool all_bits_set
= TRUE
;
595 for (i
= 0; i
< last_set_bit
; i
++) {
596 if (!GC_get_bit(bm
, i
)) {
597 all_bits_set
= FALSE
;
602 /* An initial section contains all pointers. Use length descriptor. */
603 return(WORDS_TO_BYTES(last_set_bit
+1) | DS_LENGTH
);
607 if (last_set_bit
< BITMAP_BITS
) {
608 /* Hopefully the common case. */
609 /* Build bitmap descriptor (with bits reversed) */
611 for (i
= last_set_bit
- 1; i
>= 0; i
--) {
613 if (GC_get_bit(bm
, i
)) result
|= HIGH_BIT
;
620 index
= GC_add_ext_descriptor(bm
, (word
)last_set_bit
+1);
621 if (index
== -1) return(WORDS_TO_BYTES(last_set_bit
+1) | DS_LENGTH
);
622 /* Out of memory: use conservative */
624 result
= MAKE_PROC(GC_typed_mark_proc_index
, (word
)index
);
629 ptr_t
GC_clear_stack();
631 #define GENERAL_MALLOC(lb,k) \
632 (GC_PTR)GC_clear_stack(GC_generic_malloc((word)lb, k))
634 #define GENERAL_MALLOC_IOP(lb,k) \
635 (GC_PTR)GC_clear_stack(GC_generic_malloc_ignore_off_page(lb, k))
637 #if defined(__STDC__) || defined(__cplusplus)
638 void * GC_malloc_explicitly_typed(size_t lb
, GC_descr d
)
640 char * GC_malloc_explicitly_typed(lb
, d
)
646 register ptr_t
* opp
;
651 if( SMALL_OBJ(lb
) ) {
653 lw
= GC_size_map
[lb
];
655 lw
= ALIGNED_WORDS(lb
);
657 opp
= &(GC_eobjfreelist
[lw
]);
659 if( !FASTLOCK_SUCCEEDED() || (op
= *opp
) == 0 ) {
661 op
= (ptr_t
)GENERAL_MALLOC((word
)lb
, GC_explicit_kind
);
662 if (0 == op
) return(0);
664 lw
= GC_size_map
[lb
]; /* May have been uninitialized. */
669 GC_words_allocd
+= lw
;
673 op
= (ptr_t
)GENERAL_MALLOC((word
)lb
, GC_explicit_kind
);
675 lw
= BYTES_TO_WORDS(GC_size(op
));
678 ((word
*)op
)[lw
- 1] = d
;
682 #if defined(__STDC__) || defined(__cplusplus)
683 void * GC_malloc_explicitly_typed_ignore_off_page(size_t lb
, GC_descr d
)
685 char * GC_malloc_explicitly_typed_ignore_off_page(lb
, d
)
691 register ptr_t
* opp
;
696 if( SMALL_OBJ(lb
) ) {
698 lw
= GC_size_map
[lb
];
700 lw
= ALIGNED_WORDS(lb
);
702 opp
= &(GC_eobjfreelist
[lw
]);
704 if( !FASTLOCK_SUCCEEDED() || (op
= *opp
) == 0 ) {
706 op
= (ptr_t
)GENERAL_MALLOC_IOP(lb
, GC_explicit_kind
);
708 lw
= GC_size_map
[lb
]; /* May have been uninitialized. */
713 GC_words_allocd
+= lw
;
717 op
= (ptr_t
)GENERAL_MALLOC_IOP(lb
, GC_explicit_kind
);
719 lw
= BYTES_TO_WORDS(GC_size(op
));
722 ((word
*)op
)[lw
- 1] = d
;
726 #if defined(__STDC__) || defined(__cplusplus)
727 void * GC_calloc_explicitly_typed(size_t n
,
731 char * GC_calloc_explicitly_typed(n
, lb
, d
)
738 register ptr_t
* opp
;
740 GC_descr simple_descr
;
741 complex_descriptor
*complex_descr
;
742 register int descr_type
;
743 struct LeafDescriptor leaf
;
746 descr_type
= GC_make_array_descriptor((word
)n
, (word
)lb
, d
,
747 &simple_descr
, &complex_descr
, &leaf
);
749 case NO_MEM
: return(0);
750 case SIMPLE
: return(GC_malloc_explicitly_typed(n
*lb
, simple_descr
));
753 lb
+= sizeof(struct LeafDescriptor
) + EXTRA_BYTES
;
760 if( SMALL_OBJ(lb
) ) {
762 lw
= GC_size_map
[lb
];
764 lw
= ALIGNED_WORDS(lb
);
766 opp
= &(GC_arobjfreelist
[lw
]);
768 if( !FASTLOCK_SUCCEEDED() || (op
= *opp
) == 0 ) {
770 op
= (ptr_t
)GENERAL_MALLOC((word
)lb
, GC_array_kind
);
771 if (0 == op
) return(0);
773 lw
= GC_size_map
[lb
]; /* May have been uninitialized. */
778 GC_words_allocd
+= lw
;
782 op
= (ptr_t
)GENERAL_MALLOC((word
)lb
, GC_array_kind
);
783 if (0 == op
) return(0);
784 lw
= BYTES_TO_WORDS(GC_size(op
));
786 if (descr_type
== LEAF
) {
787 /* Set up the descriptor inside the object itself. */
788 VOLATILE
struct LeafDescriptor
* lp
=
789 (struct LeafDescriptor
*)
791 + lw
- (BYTES_TO_WORDS(sizeof(struct LeafDescriptor
)) + 1));
793 lp
-> ld_tag
= LEAF_TAG
;
794 lp
-> ld_size
= leaf
.ld_size
;
795 lp
-> ld_nelements
= leaf
.ld_nelements
;
796 lp
-> ld_descriptor
= leaf
.ld_descriptor
;
797 ((VOLATILE word
*)op
)[lw
- 1] = (word
)lp
;
799 extern unsigned GC_finalization_failures
;
800 unsigned ff
= GC_finalization_failures
;
802 ((word
*)op
)[lw
- 1] = (word
)complex_descr
;
803 /* Make sure the descriptor is cleared once there is any danger */
804 /* it may have been collected. */
806 GC_general_register_disappearing_link((GC_PTR
*)
809 if (ff
!= GC_finalization_failures
) {
810 /* Couldn't register it due to lack of memory. Punt. */
811 /* This will probably fail too, but gives the recovery code */
813 return(GC_malloc(n
*lb
));