Coverage Report

Created: 2025-12-31 07:31

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/ghostpdl/psi/zpacked.c
Line
Count
Source
1
/* Copyright (C) 2001-2024 Artifex Software, Inc.
2
   All Rights Reserved.
3
4
   This software is provided AS-IS with no warranty, either express or
5
   implied.
6
7
   This software is distributed under license and may not be copied,
8
   modified or distributed except as expressly authorized under the terms
9
   of the license contained in the file LICENSE in this distribution.
10
11
   Refer to licensing information at http://www.artifex.com or contact
12
   Artifex Software, Inc.,  39 Mesa Street, Suite 108A, San Francisco,
13
   CA 94129, USA, for further information.
14
*/
15
16
17
/* Packed array operators */
18
#include "ghost.h"
19
#include "ialloc.h"
20
#include "idict.h"
21
#include "iname.h"
22
#include "istack.h"   /* for iparray.h */
23
#include "ipacked.h"
24
#include "iparray.h"
25
#include "ivmspace.h"
26
#include "oper.h"
27
#include "store.h"
28
#include "gxalloc.h"
29
30
/* - currentpacking <bool> */
31
static int
32
zcurrentpacking(i_ctx_t *i_ctx_p)
33
746k
{
34
746k
    os_ptr op = osp;
35
36
746k
    push(1);
37
746k
    ref_assign(op, &ref_array_packing);
38
746k
    return 0;
39
746k
}
40
41
/* <obj_0> ... <obj_n-1> <n> packedarray <packedarray> */
42
int
43
zpackedarray(i_ctx_t *i_ctx_p)
44
12.6M
{
45
12.6M
    os_ptr op = osp;
46
12.6M
    int code;
47
12.6M
    ref parr;
48
49
12.6M
    check_type(*op, t_integer);
50
51
    /* This avoids a valgrind error */
52
12.6M
    parr.tas.type_attrs = 0;
53
54
12.6M
    if (op->value.intval < 0)
55
5
        return_error(gs_error_rangecheck);
56
12.6M
    if (op->value.intval > op - osbot &&
57
1
        op->value.intval >= ref_stack_count(&o_stack)
58
12.6M
        )
59
1
        return_error(gs_error_stackunderflow);
60
12.6M
    osp--;
61
12.6M
    code = make_packed_array(&parr, &o_stack, (uint) op->value.intval,
62
12.6M
                             idmemory, "packedarray");
63
12.6M
    osp++;
64
12.6M
    if (code >= 0)
65
12.6M
        *osp = parr;
66
12.6M
    return code;
67
12.6M
}
68
69
/* <bool> setpacking - */
70
static int
71
zsetpacking(i_ctx_t *i_ctx_p)
72
1.82M
{
73
1.82M
    os_ptr op = osp;
74
1.82M
    ref cont;
75
1.82M
    check_op(1);
76
1.82M
    check_type(*op, t_boolean);
77
1.82M
    make_struct(&cont, avm_local, ref_array_packing_container);
78
1.82M
    ref_assign_old(&cont, &ref_array_packing, op, "setpacking");
79
1.82M
    pop(1);
80
1.82M
    return 0;
81
1.82M
}
82
83
/* ------ Non-operator routines ------ */
84
85
/* Make a packed array.  See the comment in packed.h about */
86
/* ensuring that refs in mixed arrays are properly aligned. */
87
#undef idmemory     /****** NOTA BENE ******/
88
int
89
make_packed_array(ref * parr, ref_stack_t * pstack, uint size,
90
                  gs_dual_memory_t *idmemory, client_name_t cname)
91
851M
{
92
851M
    uint i;
93
851M
    const ref *pref;
94
851M
    uint idest = 0, ishort = 0;
95
851M
    ref_packed *pbody;
96
851M
    ref_packed *pdest;
97
851M
    ref_packed *pshort;   /* points to start of */
98
                                /* last run of short elements */
99
851M
    gs_ref_memory_t *imem = idmemory->current;
100
851M
    uint space = imemory_space(imem);
101
851M
    int skip = 0, pad;
102
851M
    ref rtemp;
103
851M
    int code;
104
105
    /* Do a first pass to calculate the size of the array, */
106
    /* and to detect local-into-global stores. */
107
108
7.40G
    for (i = size; i != 0; i--) {
109
6.55G
        pref = ref_stack_index(pstack, i - 1);
110
6.55G
        if (pref == NULL)
111
0
            return_error(gs_error_stackunderflow);
112
113
6.55G
        switch (r_btype(pref)) { /* not r_type, opers are special */
114
4.73G
            case t_name:
115
4.73G
              if (name_index(imem, pref) >= packed_name_max_index)
116
426M
                    break;  /* can't pack */
117
4.30G
                idest++;
118
4.30G
                continue;
119
785M
            case t_integer:
120
785M
                if (pref->value.intval < packed_min_intval ||
121
785M
                    pref->value.intval > packed_max_intval
122
785M
                    )
123
17.0M
                    break;
124
768M
                idest++;
125
768M
                continue;
126
7.68M
            case t_oparray:
127
                /* Check for local-into-global store. */
128
7.68M
                store_check_space(space, pref);
129
                /* falls through */
130
25.4M
            case t_operator:
131
25.4M
                {
132
25.4M
                    uint oidx;
133
134
25.4M
                    if (!r_has_attr(pref, a_executable))
135
0
                        break;
136
25.4M
                    oidx = op_index(pref);
137
25.4M
                    if (oidx == 0 || oidx > packed_int_mask)
138
0
                        break;
139
25.4M
                }
140
25.4M
                idest++;
141
25.4M
                continue;
142
1.01G
            default:
143
                /* Check for local-into-global store. */
144
1.01G
                store_check_space(space, pref);
145
6.55G
        }
146
        /* Can't pack this element, use a full ref. */
147
        /* We may have to unpack up to align_packed_per_ref - 1 */
148
        /* preceding short elements. */
149
        /* If we are at the beginning of the array, however, */
150
        /* we can just move the elements up. */
151
1.45G
        {
152
1.45G
            int i = (idest - ishort) & (align_packed_per_ref - 1);
153
154
1.45G
            if (ishort == 0)  /* first time */
155
565M
                idest += skip = -i & (align_packed_per_ref - 1);
156
891M
            else
157
891M
                idest += (packed_per_ref - 1) * i;
158
1.45G
        }
159
1.45G
        ishort = idest += packed_per_ref;
160
1.45G
    }
161
851M
    pad = (packed_per_ref - idest % packed_per_ref) % packed_per_ref; /* padding at end */
162
163
    /* Now we can allocate the array. */
164
165
851M
    code = gs_alloc_ref_array(imem, &rtemp, 0, (idest + pad) / packed_per_ref,
166
851M
                              cname);
167
851M
    if (code < 0)
168
0
        return code;
169
851M
    pbody = (ref_packed *) rtemp.value.refs;
170
171
    /* Make sure any initial skipped elements contain legal packed */
172
    /* refs, so that the garbage collector can scan storage. */
173
174
851M
    pshort = pbody;
175
1.51G
    for (; skip; skip--)
176
665M
        *pbody++ = pt_tag(pt_integer);
177
851M
    pdest = pbody;
178
179
7.40G
    for (i = size; i != 0; i--) {
180
6.55G
        pref = ref_stack_index(pstack, i - 1);
181
6.55G
        if (pref == NULL)
182
0
            return_error(gs_error_stackunderflow);
183
184
6.55G
        switch (r_btype(pref)) { /* not r_type, opers are special */
185
4.73G
            case t_name:
186
4.73G
                {
187
4.73G
                    uint nidx = name_index(imem, pref);
188
189
4.73G
                    if (nidx >= packed_name_max_index)
190
426M
                        break;  /* can't pack */
191
4.30G
                    *pdest++ = nidx +
192
4.30G
                        (r_has_attr(pref, a_executable) ?
193
3.50G
                         pt_tag(pt_executable_name) :
194
4.30G
                         pt_tag(pt_literal_name));
195
4.30G
                }
196
0
                continue;
197
785M
            case t_integer:
198
785M
                if (pref->value.intval < packed_min_intval ||
199
785M
                    pref->value.intval > packed_max_intval
200
785M
                    )
201
17.0M
                    break;
202
768M
                *pdest++ = pt_tag(pt_integer) +
203
768M
                    ((short)pref->value.intval - packed_min_intval);
204
768M
                continue;
205
7.68M
            case t_oparray:
206
25.4M
            case t_operator:
207
25.4M
                {
208
25.4M
                    uint oidx;
209
210
25.4M
                    if (!r_has_attr(pref, a_executable))
211
0
                        break;
212
25.4M
                    oidx = op_index(pref);
213
25.4M
                    if (oidx == 0 || oidx > packed_int_mask)
214
0
                        break;
215
25.4M
                    *pdest++ = pt_tag(pt_executable_operator) + oidx;
216
25.4M
                }
217
0
                continue;
218
6.55G
        }
219
        /* Can't pack this element, use a full ref. */
220
        /* We may have to unpack up to align_packed_per_ref - 1 */
221
        /* preceding short elements. */
222
        /* Note that if we are at the beginning of the array, */
223
        /* 'skip' already ensures that we don't need to do this. */
224
1.45G
        {
225
1.45G
            int i = (pdest - pshort) & (align_packed_per_ref - 1);
226
1.45G
            const ref_packed *psrc = pdest;
227
1.45G
            ref *pmove =
228
1.45G
            (ref *) (pdest += (packed_per_ref - 1) * i);
229
230
1.45G
            ref_assign_new(pmove, pref);
231
2.28G
            while (--i >= 0) {
232
829M
                --psrc;
233
829M
                --pmove;
234
829M
                packed_get(imem->non_gc_memory, psrc, pmove);
235
829M
            }
236
1.45G
        }
237
1.45G
        pshort = pdest += packed_per_ref;
238
1.45G
    }
239
240
851M
    {
241
851M
        int atype =
242
851M
        (pdest == pbody + size ? t_shortarray : t_mixedarray);
243
244
        /* Pad with legal packed refs so that the garbage collector */
245
        /* can scan storage. */
246
247
4.37G
        for (; pad; pad--)
248
3.51G
            *pdest++ = pt_tag(pt_integer);
249
250
        /* Finally, make the array. */
251
252
851M
        ref_stack_pop(pstack, size);
253
851M
        make_tasv_new(parr, atype, a_readonly | space, size,
254
851M
                      packed, pbody + skip);
255
851M
    }
256
851M
    return 0;
257
851M
}
258
259
/* ------ Initialization procedure ------ */
260
261
const op_def zpacked_op_defs[] =
262
{
263
    {"0currentpacking", zcurrentpacking},
264
    {"1packedarray", zpackedarray},
265
    {"1setpacking", zsetpacking},
266
    op_def_end(0)
267
};