summaryrefslogtreecommitdiff
path: root/psi/igcref.c
blob: 4946da76c2b8b23505e640ff4bfa3bd69e5efee6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
/* Copyright (C) 2001-2023 Artifex Software, Inc.
   All Rights Reserved.

   This software is provided AS-IS with no warranty, either express or
   implied.

   This software is distributed under license and may not be copied,
   modified or distributed except as expressly authorized under the terms
   of the license contained in the file LICENSE in this distribution.

   Refer to licensing information at http://www.artifex.com or contact
   Artifex Software, Inc.,  39 Mesa Street, Suite 108A, San Francisco,
   CA 94129, USA, for further information.
*/


/* ref garbage collector for Ghostscript */
#include "memory_.h"
#include "ghost.h"
#include "gsexit.h"
#include "gsstruct.h"		/* for gxalloc.h included by iastate.h */
#include "iname.h"
#include "iastate.h"
#include "idebug.h"
#include "igc.h"
#include "ipacked.h"
#include "store.h"		/* for ref_assign_inline */

/* Define whether to trace every step of relocating ref pointers. */
#if 0
#  define rputc(m,c) dmputc(m,c)
#else
#  define rputc(m,c) DO_NOTHING
#endif

/* Forward references */
ptr_proc_reloc(igc_reloc_ref_ptr, ref_packed);
ptr_proc_reloc(igc_reloc_ref_ptr_nocheck, ref_packed);
refs_proc_reloc(igc_reloc_refs);

/*
 * Define the 'structure' type descriptor for refs.
 * This is special because it has different shared procs.
 */
static gc_proc_clear_reloc(refs_clear_reloc);
static gc_proc_set_reloc(refs_set_reloc);
static gc_proc_compact(refs_compact);
static const struct_shared_procs_t refs_shared_procs =
{refs_clear_reloc, refs_set_reloc, refs_compact};
static struct_proc_clear_marks(refs_clear_marks);
static struct_proc_reloc_ptrs(refs_do_reloc);
const gs_memory_struct_type_t st_refs =
{sizeof(ref), "refs", &refs_shared_procs, refs_clear_marks, 0, refs_do_reloc};

/*
 * Define the GC procedures for structs that actually contain refs.
 * These are special because the shared refs_* procedures
 * are never called.  Instead, we unmark the individual refs in clear_marks,
 * disregard refs_*_reloc (because we will never relocate a ptr_ref_type
 * pointer pointing into the structure), disregard refs_compact (because
 * compaction is never required), and remove the marks in reloc_ptrs.
 * See also the comment about ptr_ref_type in imemory.h.
 */
CLEAR_MARKS_PROC(ref_struct_clear_marks)
{
    ref *pref = (ref *) vptr;
    ref *end = (ref *) ((char *)vptr + size);

    for (; pref < end; pref++)
        r_clear_attrs(pref, l_mark);
}
ENUM_PTRS_BEGIN_PROC(ref_struct_enum_ptrs)
{
    if (index >= size / sizeof(ref))
        return 0;
    pep->ptr = (const ref *)vptr + index;
    return ptr_ref_type;
    ENUM_PTRS_END_PROC
}
RELOC_PTRS_BEGIN(ref_struct_reloc_ptrs)
{
    vm_spaces spaces = gcst->spaces;
    const gs_memory_t *cmem = space_system->stable_memory;

    ref *beg = vptr;
    ref *end = (ref *) ((char *)vptr + size);

    igc_reloc_refs((ref_packed *) beg, (ref_packed *) end, gcst);
    ref_struct_clear_marks(cmem, vptr, size, pstype);
} RELOC_PTRS_END

/* ------ Unmarking phase ------ */

/* Unmark a single ref. */
void
ptr_ref_unmark(enum_ptr_t *pep, gc_state_t * ignored)
{
    ref_packed *rpp = (ref_packed *)pep->ptr;

    if (r_is_packed(rpp))
        r_clear_pmark(rpp);
    else
        r_clear_attrs((ref *)rpp, l_mark);
}

/* Unmarking routine for ref objects. */
static void
refs_clear_marks(const gs_memory_t *cmem,
                 void /*obj_header_t */ *vptr, uint size,
                 const gs_memory_struct_type_t * pstype)
{
    ref_packed *rp = (ref_packed *) vptr;
    ref_packed *end = (ref_packed *) ((byte *) vptr + size);

    /* Since the last ref is full-size, we only need to check for */
    /* the end of the block when we see one of those. */
    for (;;) {
        if (r_is_packed(rp)) {
#ifdef DEBUG
            if (gs_debug_c('8')) {
                dmlprintf1(cmem, "  [8]unmark packed "PRI_INTPTR" ", (intptr_t) rp);
                debug_print_ref(cmem, (const ref *)rp);
                dmputs(cmem, "\n");
            }
#endif
            r_clear_pmark(rp);
            rp++;
        } else {		/* full-size ref */
            ref *const pref = (ref *)rp;

#ifdef DEBUG
            if (gs_debug_c('8')) {
                dmlprintf1(cmem, "  [8]unmark ref "PRI_INTPTR" ", (intptr_t)rp);
                debug_print_ref(cmem, pref);
                dmputs(cmem, "\n");
            }
#endif
            r_clear_attrs(pref, l_mark);
            rp += packed_per_ref;
            if (rp >= (ref_packed *) end)
                break;
        }
    }
}

/* ------ Marking phase ------ */

/* Mark a ref.  Return true if new mark. */
bool
ptr_ref_mark(enum_ptr_t *pep, gc_state_t * ignored)
{
    ref_packed *rpp = (void *)pep->ptr;

    if (r_is_packed(rpp)) {
        if (r_has_pmark(rpp))
            return false;
        r_set_pmark(rpp);
    } else {
        ref *const pref = (ref *)rpp;

        if (r_has_attr(pref, l_mark))
            return false;
        r_set_attrs(pref, l_mark);
    }
    return true;
}

/* ------ Relocation planning phase ------ */

/*
 * We store relocation in the size field of refs that don't use it,
 * so that we don't have to scan all the way to an unmarked object.
 * We must avoid nulls, which sometimes have useful information
 * in their size fields, and the types above t_next_index, which are
 * actually operators in disguise and also use the size field.
 */

/* Clear the relocation for a ref object. */
static void
refs_clear_reloc(obj_header_t *hdr, uint size)
{
    ref_packed *rp = (ref_packed *) (hdr + 1);
    ref_packed *end = (ref_packed *) ((byte *) rp + size);

    while (rp < end) {
        if (r_is_packed(rp))
            rp++;
        else {
            /* Full-size ref.  Store the relocation here if possible. */
            ref *const pref = (ref *)rp;

            if (!ref_type_uses_size_or_null(r_type(pref))) {
                if_debug1('8', "  [8]clearing reloc at "PRI_INTPTR"\n", (intptr_t)rp);
                r_set_size(pref, 0);
            }
            rp += packed_per_ref;
        }
    }
}

/* Set the relocation for a ref object. */
static bool
refs_set_reloc(obj_header_t * hdr, uint reloc, uint size)
{
    ref_packed *rp = (ref_packed *) (hdr + 1);
    ref_packed *end = (ref_packed *) ((byte *) rp + size);
    uint freed = 0;

    /*
     * We have to be careful to keep refs aligned properly.
     * For the moment, we do this by either keeping or discarding
     * an entire (aligned) block of align_packed_per_ref packed elements
     * as a unit.  We know that align_packed_per_ref <= packed_per_ref,
     * and we also know that packed refs are always allocated in blocks
     * of align_packed_per_ref, so this makes things relatively easy.
     */
    while (rp < end) {
        if (r_is_packed(rp)) {
#if align_packed_per_ref == 1
            if (r_has_pmark(rp)) {
                if_debug1('8',
                          "  [8]packed ref "PRI_INTPTR" is marked\n",
                          (intptr_t)rp);
                rp++;
            } else {
#else
            int i;

            /*
             * Note: align_packed_per_ref is typically
             * 2 or 4 for 32-bit processors.
             */
#define all_marked (align_packed_per_ref * lp_mark)
# if align_packed_per_ref == 2
#  if ARCH_SIZEOF_INT == ARCH_SIZEOF_SHORT * 2
#    undef all_marked
#    define all_marked ( (lp_mark << (sizeof(short) * 8)) + lp_mark )
#    define marked (*(int *)rp & all_marked)
#  else
#    define marked ((*rp & lp_mark) + (rp[1] & lp_mark))
#  endif
# else
#  if align_packed_per_ref == 4
#    define marked ((*rp & lp_mark) + (rp[1] & lp_mark) +\
                    (rp[2] & lp_mark) + (rp[3] & lp_mark))
#  else
            /*
             * The value of marked is logically a uint, not an int:
             * we declare it as int only to avoid a compiler warning
             * message about using a non-int value in a switch statement.
             */
            int marked = *rp & lp_mark;

            for (i = 1; i < align_packed_per_ref; i++)
                marked += rp[i] & lp_mark;
#  endif
# endif
            /*
             * Now marked is lp_mark * the number of marked
             * packed refs in the aligned block, except for
             * a couple of special cases above.
             */
            switch (marked) {
                case all_marked:
                    if_debug2('8',
                              "  [8]packed refs "PRI_INTPTR".."PRI_INTPTR" are marked\n",
                              (intptr_t)rp,
                              (intptr_t)(rp + (align_packed_per_ref - 1)));
                    rp += align_packed_per_ref;
                    break;
                default:
                    /* At least one packed ref in the block */
                    /* is marked: Keep the whole block. */
                    for (i = align_packed_per_ref; i--; rp++) {
                        r_set_pmark(rp);
                        if_debug1('8',
                                  "  [8]packed ref "PRI_INTPTR" is marked\n",
                                  (intptr_t)rp);
                    }
                    break;
                case 0:
#endif
                    if_debug2('8', "  [8]%d packed ref(s) at "PRI_INTPTR" are unmarked\n",
                              align_packed_per_ref, (intptr_t)rp);
                    {
                        uint rel = reloc + freed;

                        /* Change this to an integer so we can */
                        /* store the relocation here. */
                        *rp = pt_tag(pt_integer) +
                            min(rel, packed_max_value);
                    }
                    rp += align_packed_per_ref;
                    freed += sizeof(ref_packed) * align_packed_per_ref;
            }
        } else {		/* full-size ref */
            uint rel = reloc + freed;

            /* The following assignment is logically */
            /* unnecessary; we do it only for convenience */
            /* in debugging. */
            ref *pref = (ref *) rp;

            if (!r_has_attr(pref, l_mark)) {
                if_debug1('8', "  [8]ref "PRI_INTPTR" is unmarked\n",
                          (intptr_t)pref);
                /* Change this to a mark so we can */
                /* store the relocation. */
                r_set_type(pref, t_mark);
                r_set_size(pref, rel);
                freed += sizeof(ref);
            } else {
                if_debug1('8', "  [8]ref "PRI_INTPTR" is marked\n",
                          (intptr_t)pref);
                /* Store the relocation here if possible. */
                if (!ref_type_uses_size_or_null(r_type(pref))) {
                    if_debug2('8', "  [8]storing reloc %u at "PRI_INTPTR"\n",
                              rel, (intptr_t)pref);
                    r_set_size(pref, rel);
                }
            }
            rp += packed_per_ref;
        }
    }
    if_debug3('7', " [7]at end of refs "PRI_INTPTR", size = %u, freed = %u\n",
              (intptr_t)(hdr + 1), size, freed);
    if (freed == size)
        return false;
#if ARCH_SIZEOF_INT > ARCH_SIZEOF_SHORT
    /*
     * If the final relocation can't fit in the r_size field
     * (which can't happen if the object shares a clump with
     * any other objects, so we know reloc = 0 in this case),
     * we have to keep the entire object unless there are no
     * references to any ref in it.
     */
    if (freed <= max_ushort)
        return true;
    /*
     * We have to mark all surviving refs, but we also must
     * overwrite any non-surviving refs with something that
     * doesn't contain any pointers.
     */
    rp = (ref_packed *) (hdr + 1);
    while (rp < end) {
        if (r_is_packed(rp)) {
            if (!r_has_pmark(rp))
                *rp = pt_tag(pt_integer) | lp_mark;
            ++rp;
        } else {		/* The following assignment is logically */
            /* unnecessary; we do it only for convenience */
            /* in debugging. */
            ref *pref = (ref *) rp;

            if (!r_has_attr(pref, l_mark)) {
                r_set_type_attrs(pref, t_mark, l_mark);
                r_set_size(pref, reloc);
            } else {
                if (!ref_type_uses_size_or_null(r_type(pref)))
                    r_set_size(pref, reloc);
            }
            rp += packed_per_ref;
        }
    }
    /* The last ref has to remain unmarked. */
    r_clear_attrs((ref *) rp - 1, l_mark);
#endif
    return true;
}

/* ------ Relocation phase ------ */

/* Relocate all the pointers in a block of refs. */
static void
refs_do_reloc(void /*obj_header_t */ *vptr, uint size,
              const gs_memory_struct_type_t * pstype, gc_state_t * gcst)
{
    igc_reloc_refs((ref_packed *) vptr,
                   (ref_packed *) ((char *)vptr + size),
                   gcst);
}
/* Relocate the contents of a block of refs. */
/* If gcst->relocating_untraced is true, we are relocating pointers from an */
/* untraced space, so relocate all refs, not just marked ones. */
void
igc_reloc_refs(ref_packed * from, ref_packed * to, gc_state_t * gcst)
{
    int min_trace = gcst->min_collect;
    ref_packed *rp = from;
    bool do_all = gcst->relocating_untraced;

    vm_spaces spaces = gcst->spaces;
    const gs_memory_t *cmem = space_system->stable_memory;

    while (rp < to) {
        ref *pref;
#ifdef DEBUG
        const void *before = 0;
        const void *after = 0;
# define DO_RELOC(var, stat)\
    BEGIN before = (var); stat; after = (var); END
# define SET_RELOC(var, expr)\
    BEGIN before = (var); after = (var) = (expr); END
#else
# define DO_RELOC(var, stat) stat
# define SET_RELOC(var, expr) var = expr
#endif

        if (r_is_packed(rp)) {
            rp++;
            continue;
        }
        /* The following assignment is logically unnecessary; */
        /* we do it only for convenience in debugging. */
        pref = (ref *) rp;
        if_debug3m('8', gcst->heap, "  [8]relocating %s %d ref at "PRI_INTPTR"\n",
                   (r_has_attr(pref, l_mark) ? "marked" : "unmarked"),
                   r_btype(pref), (intptr_t)pref);
        if ((r_has_attr(pref, l_mark) || do_all) &&
            r_space(pref) >= min_trace
            ) {
            switch (r_type(pref)) {
                    /* Struct cases */
                case t_file:
                    DO_RELOC(pref->value.pfile, RELOC_VAR(pref->value.pfile));
                    break;
                case t_device:
                    DO_RELOC(pref->value.pdevice,
                             RELOC_VAR(pref->value.pdevice));
                    break;
                case t_fontID:
                case t_struct:
                case t_astruct:
                case t_pdfctx:
                    DO_RELOC(pref->value.pstruct,
                             RELOC_VAR(pref->value.pstruct));
                    break;
                    /* Non-trivial non-struct cases */
                case t_dictionary:
                    rputc(gcst->heap, 'd');
                    SET_RELOC(pref->value.pdict,
                              (dict *)igc_reloc_ref_ptr((ref_packed *)pref->value.pdict, gcst));
                    break;
                case t_array:
                    {
                        uint size = r_size(pref);

                        if (size != 0) {	/* value.refs might be NULL */

                            /*
                             * If the array is large, we allocated it in its
                             * own object (at least originally -- this might
                             * be a pointer to a subarray.)  In this case,
                             * we know it is the only object in its
                             * containing st_refs object, so we know that
                             * the mark containing the relocation appears
                             * just after it.
                             */
                            if (size < max_size_st_refs / sizeof(ref)) {
                                rputc(gcst->heap, 'a');
                                SET_RELOC(pref->value.refs,
                                    (ref *) igc_reloc_ref_ptr(
                                     (ref_packed *) pref->value.refs, gcst));
                            } else {
                                rputc(gcst->heap, 'A');
                                /*
                                 * See the t_shortarray case below for why we
                                 * decrement size.
                                 */
                                --size;
                                SET_RELOC(pref->value.refs,
                                    (ref *) igc_reloc_ref_ptr(
                                   (ref_packed *) (pref->value.refs + size),
                                                               gcst) - size);
                            }
                        }
                    }
                    break;
                case t_mixedarray:
                    if (r_size(pref) != 0) {	/* value.refs might be NULL */
                        rputc(gcst->heap, 'm');
                        SET_RELOC(pref->value.packed,
                                  igc_reloc_ref_ptr(pref->value.packed, gcst));
                    }
                    break;
                case t_shortarray:
                    {
                        uint size = r_size(pref);

                        /*
                         * Since we know that igc_reloc_ref_ptr works by
                         * scanning forward, and we know that all the
                         * elements of this array itself are marked, we can
                         * save some scanning time by relocating the pointer
                         * to the end of the array rather than the
                         * beginning.
                         */
                        if (size != 0) {	/* value.refs might be NULL */
                            rputc(gcst->heap, 's');
                            /*
                             * igc_reloc_ref_ptr has to be able to determine
                             * whether the pointer points into a space that
                             * isn't being collected.  It does this by
                             * checking whether the referent of the pointer
                             * is marked.  For this reason, we have to pass
                             * a pointer to the last real element of the
                             * array, rather than just beyond it.
                             */
                            --size;
                            SET_RELOC(pref->value.packed,
                                igc_reloc_ref_ptr(pref->value.packed + size,
                                                  gcst) - size);
                        }
                    }
                    break;
                case t_name:
                    {
                        void *psub = name_ref_sub_table(cmem, pref);
                        void *rsub = RELOC_OBJ(psub); /* gcst implicit */

                        SET_RELOC(pref->value.pname,
                                  (name *)
                                  ((char *)rsub + ((char *)pref->value.pname -
                                                   (char *)psub)));
                    } break;
                case t_string:
                    {
                        gs_string str;

                        str.data = pref->value.bytes;
                        str.size = r_size(pref);

                        DO_RELOC(str.data, RELOC_STRING_VAR(str));
                        pref->value.bytes = str.data;
                    }
                    break;
                case t_oparray:
                    rputc(gcst->heap, 'o');
                    SET_RELOC(pref->value.const_refs,
                        (const ref *)igc_reloc_ref_ptr((const ref_packed *)pref->value.const_refs, gcst));
                    break;
                default:
                    goto no_reloc; /* don't print trace message */
            }
            if_debug2m('8', gcst->heap, "  [8]relocated "PRI_INTPTR" => "PRI_INTPTR"\n",
                       (intptr_t)before, (intptr_t)after);
        }
no_reloc:
        rp += packed_per_ref;
    }
}

/* Relocate a pointer to a ref. */
/* See gsmemory.h for why the argument is const and the result is not. */
ref_packed *
igc_reloc_ref_ptr_nocheck(const ref_packed * prp, gc_state_t *gcst)
{
    /*
     * Search forward for relocation.  This algorithm is intrinsically very
     * inefficient; we hope eventually to replace it with a better one.
     */
    const ref_packed *rp = prp;
    uint dec = 0;
#ifdef ALIGNMENT_ALIASING_BUG
    const ref *rpref;
# define RP_REF(rp) (rpref = (const ref *)rp, rpref)
#else
# define RP_REF(rp) ((const ref *)rp)
#endif
    for (;;) {

        if (r_is_packed(rp)) {
            /*
             * Normally, an unmarked packed ref will be an
             * integer whose value is the amount of relocation.
             * However, the relocation value might have been
             * too large to fit.  If this is the case, for
             * each such unmarked packed ref we pass over,
             * we have to decrement the final relocation.
             */
            rputc(gcst->heap, (*rp & lp_mark ? '1' : '0'));
            if (!(*rp & lp_mark)) {
                if (*rp != pt_tag(pt_integer) + packed_max_value) {
                    /* This is a stored relocation value. */
                    rputc(gcst->heap, '\n');
                    rp = print_reloc(prp, "ref",
                                     (const ref_packed *)
                                     ((const char *)prp -
                                      (*rp & packed_value_mask) + dec));
                    break;
                }
                /*
                 * We know this is the first of an aligned block
                 * of packed refs.  Skip over the entire block,
                 * decrementing the final relocation.
                 */
                dec += sizeof(ref_packed) * align_packed_per_ref;
                rp += align_packed_per_ref;
            } else
                rp++;
            continue;
        }
        if (!ref_type_uses_size_or_null(r_type(RP_REF(rp)))) {
            /* reloc is in r_size */
            rputc(gcst->heap, '\n');
            rp = print_reloc(prp, "ref",
                             (const ref_packed *)
                             (r_size(RP_REF(rp)) == 0 ? prp :
                              (const ref_packed *)((const char *)prp -
                                                   r_size(RP_REF(rp)) + dec)));
            break;
        }
        rputc(gcst->heap, 'u');
        rp += packed_per_ref;
    }
    /* Use a severely deprecated pun to remove the const property. */
    {
        union { const ref_packed *r; ref_packed *w; } u;

        u.r = rp;
        return u.w;
    }
#undef RP_REF
}
ref_packed *
igc_reloc_ref_ptr(const ref_packed * prp, gc_state_t *gcst)
{
    /*
     * Search forward for relocation.  This algorithm is intrinsically very
     * inefficient; we hope eventually to replace it with a better one.
     */
    const ref_packed *rp = prp;
#ifdef ALIGNMENT_ALIASING_BUG
    const ref *rpref;
# define RP_REF(rp) (rpref = (const ref *)rp, rpref)
#else
# define RP_REF(rp) ((const ref *)rp)
#endif
    /*
     * Iff this pointer points into a space that wasn't traced,
     * the referent won't be marked.  In this case, we shouldn't
     * do any relocation.  Check for this first.
     */
    if (r_is_packed(rp)) {
        if (!r_has_pmark(rp))
            goto ret_rp;
    } else {
        if (!r_has_attr(RP_REF(rp), l_mark))
            goto ret_rp;
    }
    return igc_reloc_ref_ptr_nocheck(prp, gcst);
ret_rp:
    /* Use a severely deprecated pun to remove the const property. */
    {
        union { const ref_packed *r; ref_packed *w; } u;

        u.r = rp;
        return u.w;
    }
}

/* ------ Compaction phase ------ */

/* Compact a ref object. */
/* Remove the marks at the same time. */
static void
refs_compact(const gs_memory_t *mem, obj_header_t * pre, obj_header_t * dpre, uint size)
{
    ref_packed *dest;
    ref_packed *src;
    ref_packed *end;
    uint new_size;

   /* The next switch controls an optimization
      for the loop termination condition.
      It was useful during the development,
      when some assumptions were temporary wrong.
      We keep it for records. */

    src = (ref_packed *) (pre + 1);
    end = (ref_packed *) ((byte *) src + size);
    /*
     * We know that a block of refs always ends with a
     * full-size ref, so we only need to check for reaching the end
     * of the block when we see one of those.
     */
    if (dpre == pre)		/* Loop while we don't need to copy. */
        for (;;) {
            if (r_is_packed(src)) {
                if (!r_has_pmark(src))
                    break;
                if_debug1m('8', mem, "  [8]packed ref "PRI_INTPTR" \"copied\"\n",
                          (intptr_t)src);
                *src &= ~lp_mark;
                src++;
            } else {		/* full-size ref */
                ref *const pref = (ref *)src;

                if (!r_has_attr(pref, l_mark))
                    break;
                if_debug1m('8', mem, "  [8]ref "PRI_INTPTR" \"copied\"\n", (intptr_t)src);
                r_clear_attrs(pref, l_mark);
                src += packed_per_ref;
            }
    } else
        *dpre = *pre;
    dest = (ref_packed *) ((char *)dpre + ((char *)src - (char *)pre));
    for (;;) {
        if (r_is_packed(src)) {
            if (r_has_pmark(src)) {
                if_debug2m('8', mem, "  [8]packed ref "PRI_INTPTR" copied to "PRI_INTPTR"\n",
                          (intptr_t)src, (intptr_t)dest);
                *dest++ = *src & ~lp_mark;
            }
            src++;
        } else {		/* full-size ref */
            if (r_has_attr((ref *) src, l_mark)) {
                ref rtemp;

                if_debug2m('8', mem, "  [8]ref "PRI_INTPTR" copied to "PRI_INTPTR"\n",
                           (intptr_t)src, (intptr_t)dest);
                /* We can't just use ref_assign_inline, */
                /* because the source and destination */
                /* might overlap! */
                ref_assign_inline(&rtemp, (ref *) src);
                r_clear_attrs(&rtemp, l_mark);
                ref_assign_inline((ref *) dest, &rtemp);
                src += packed_per_ref;
                dest += packed_per_ref;
            } else {		/* check for end of block */
                src += packed_per_ref;
                if (src >= end)
                    break;
            }
        }
    }
    new_size = (byte *) dest - (byte *) (dpre + 1) + sizeof(ref);
#ifdef DEBUG
    /* Check that the relocation came out OK. */
    /* NOTE: this check only works within a single clump. */
    if ((byte *) src - (byte *) dest != r_size((ref *) src - 1) + sizeof(ref)) {
        mlprintf3(mem, "Reloc error for refs "PRI_INTPTR": reloc = %lu, stored = %u\n",
                 (intptr_t) dpre, (ulong) ((byte *) src - (byte *) dest),
                 (uint) r_size((ref *) src - 1));
        gs_abort(mem);
    }
#endif
    /* Pad to a multiple of sizeof(ref). */
    while (new_size % sizeof(ref))
        *dest++ = pt_tag(pt_integer),
            new_size += sizeof(ref_packed);
    /* We want to make the newly freed space into a free block, */
    /* but we can only do this if we have enough room. */
    if (size - new_size < sizeof(obj_header_t)) {	/* Not enough room.  Pad to original size. */
        while (new_size < size)
            *dest++ = pt_tag(pt_integer),
                new_size += sizeof(ref_packed);
    } else {
        obj_header_t *pfree = (obj_header_t *) ((ref *) dest + 1);

        pfree->o_pad = 0;
        pfree->o_alone = 0;
        pfree->o_size = size - new_size - sizeof(obj_header_t);
        pfree->o_type = &st_bytes;
    }
    /* Re-create the final ref. */
    r_set_type((ref *) dest, t_integer);
    dpre->o_size = new_size;
}