Coverage Report

Created: 2026-02-14 07:09

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/ghostpdl/psi/zarray.c
Line
Count
Source
1
/* Copyright (C) 2001-2023 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
/* Array operators */
18
#include "memory_.h"
19
#include "ghost.h"
20
#include "ialloc.h"
21
#include "ipacked.h"
22
#include "oper.h"
23
#include "store.h"
24
25
/* The generic operators (copy, get, put, getinterval, putinterval, */
26
/* length, and forall) are implemented in zgeneric.c. */
27
28
/* <int> array <array> */
29
int
30
zarray(i_ctx_t *i_ctx_p)
31
828M
{
32
828M
    os_ptr op = osp;
33
828M
    uint size;
34
828M
    int code;
35
36
828M
    check_op(1);
37
828M
    check_type(*op, t_integer);
38
828M
    if (op->value.intval < 0)
39
58
        return_error(gs_error_rangecheck);
40
828M
    if (op->value.intval > max_array_size)
41
11
        return_error(gs_error_limitcheck);
42
828M
    size = op->value.intval;
43
828M
    code = ialloc_ref_array((ref *)op, a_all, size, "array");
44
828M
    if (code < 0)
45
0
        return code;
46
828M
    refset_null(op->value.refs, size);
47
828M
    return 0;
48
828M
}
49
50
/* <array> aload <obj_0> ... <obj_n-1> <array> */
51
static int
52
zaload(i_ctx_t *i_ctx_p)
53
227M
{
54
227M
    os_ptr op = osp;
55
227M
    ref aref;
56
227M
    uint asize;
57
58
227M
    check_op(1);
59
227M
    ref_assign(&aref, op);
60
227M
    if (!r_is_array(&aref))
61
227M
        return_op_typecheck(op);
62
227M
    check_read(aref);
63
227M
    asize = r_size(&aref);
64
227M
    if (asize > ostop - op) { /* Use the slow, general algorithm. */
65
2.21k
        int code = ref_stack_push(&o_stack, asize);
66
2.21k
        uint i;
67
2.21k
        const ref_packed *packed = aref.value.packed;
68
69
2.21k
        if (code < 0)
70
0
            return code;
71
19.9M
        for (i = asize; i > 0; i--, packed = packed_next(packed)) {
72
19.9M
            ref *o = ref_stack_index(&o_stack, i);
73
19.9M
            if (o == NULL)
74
0
                continue;
75
19.9M
            packed_get(imemory, packed, o);
76
19.9M
        }
77
2.21k
        *osp = aref;
78
2.21k
        return 0;
79
2.21k
    }
80
227M
    if (r_has_type(&aref, t_array))
81
225M
        memcpy(op, aref.value.refs, asize * sizeof(ref));
82
2.03M
    else {
83
2.03M
        uint i;
84
2.03M
        const ref_packed *packed = aref.value.packed;
85
2.03M
        os_ptr pdest = op;
86
87
41.9M
        for (i = 0; i < asize; i++, pdest++, packed = packed_next(packed))
88
39.9M
            packed_get(imemory, packed, pdest);
89
2.03M
    }
90
227M
    push(asize);
91
227M
    ref_assign(op, &aref);
92
227M
    return 0;
93
227M
}
94
95
/* <obj_0> ... <obj_n-1> <array> astore <array> */
96
static int
97
zastore(i_ctx_t *i_ctx_p)
98
800M
{
99
800M
    os_ptr op = osp;
100
800M
    uint size;
101
800M
    int code;
102
103
800M
    check_op(1);
104
800M
    if (!r_is_array(op))
105
800M
        return_op_typecheck(op);
106
800M
    size = r_size(op);
107
    /* Amazingly, the following is valid: 0 array noaccess astore */
108
800M
    if (size == 0)
109
4.16M
        return 0;
110
795M
    if (!r_has_type_attrs(op, t_array, a_write))
111
0
        return_error(gs_error_invalidaccess);
112
795M
    if (size > op - osbot) {
113
        /* The store operation might involve other stack segments. */
114
203k
        ref arr, *o;
115
116
203k
        if (size >= ref_stack_count(&o_stack))
117
12
            return_error(gs_error_stackunderflow);
118
203k
        arr = *op;
119
203k
        code = ref_stack_store(&o_stack, &arr, size, 1, 0, true, idmemory,
120
203k
                               "astore");
121
203k
        if (code < 0)
122
0
            return code;
123
203k
        ref_stack_pop(&o_stack, size);
124
203k
        o = ref_stack_index(&o_stack, 0);
125
203k
        if (o == NULL)
126
0
            return_error(gs_error_stackunderflow);
127
203k
        *o = arr;
128
795M
    } else {
129
795M
        code = refcpy_to_old(op, 0, op - size, size, idmemory, "astore");
130
795M
        if (code < 0)
131
0
            return code;
132
795M
        op[-(int)size] = *op;
133
795M
        pop(size);
134
795M
    }
135
795M
    return 0;
136
795M
}
137
138
/* ------ Initialization procedure ------ */
139
140
const op_def zarray_op_defs[] =
141
{
142
    {"1aload", zaload},
143
    {"1array", zarray},
144
    {"1astore", zastore},
145
    op_def_end(0)
146
};