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
|
/* Copyright (C) 2001-2020 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., 1305 Grant Avenue - Suite 200, Novato,
CA 94945, U.S.A., +1(415)492-9861, for further information.
*/
/* Packed array format for Ghostscript */
#ifndef ipacked_INCLUDED
# define ipacked_INCLUDED
/*
In a packed array, an element may either be a 2-byte ref_packed or a
full-size ref (8 or 16 bytes). We carefully arrange the first two bytes,
which are either an entire ref_packed or the type_attrs member of a ref,
so that we can distinguish the 2 forms. The encoding:
00tttttt exrwsfnm full-size ref
010mjjjj jjjjjjjj executable operator (so bind can work)
011mvvvv vvvvvvvv integer (biased by packed_min_intval)
100m---- -------- (not used)
101m---- -------- (not used)
110miiii iiiiiiii literal name
111miiii iiiiiiii executable name
The m bit is the mark bit for the garbage collector.
****** Note for the future: We could get packed tokens into the first-level
****** interpreter dispatch by changing to the following representation:
000ttttt exrwsfnm full-size ref
m0100jjj jjjjjjjj executable operator (so bind can work)
m0101vvv vvvvvvvv integer (biased by packed_min_intval)
m011iiii iiiiiiii literal name
m100iiii iiiiiiii executable name
m101---- -------- (not used)
m11----- -------- (not used)
****** We aren't going to do this for a while.
The jjj index of executable operators is either the index of the operator
in the op_def_table, if the index is less than op_def_count, or the index
of the definition in the op_array_table (subtracting op_def_count first).
The iii index of names is the one that the name machinery already
maintains. A name whose index is larger than will fit in the packed
representation must be represented as a full-size ref.
There are two packed array types, t_mixedarray and t_shortarray. A
t_mixedarray can have a mix of packed and full-size elements; a
t_shortarray has all packed elements. The 'size' of a packed array is the
number of elements, not the number of bytes it occupies.
Packed array elements can be distinguished from full-size elements, so we
allow the interpreter to simply execute all the different kinds of arrays
directly. However, if we really allowed free mixing of packed and
full-size elements, this could lead to unaligned placement of full-size
refs; some machines can't handle unaligned accesses of this kind. To
guarantee that full-size elements in mixed arrays are always properly
aligned, if a full-size ref must be aligned at an address which is 0 mod
N, we convert up to N/2-1 preceding packed elements into full-size
elements, when creating the array, so that the alignment is preserved.
The only code this actually affects is in make_packed_array and in the
code for compacting refs in the garbage collector.
Note that code in zpacked.c and interp.c knows more about the
representation of packed elements than the definitions in this file would
imply. Read the code carefully if you change the representation.
*/
#define r_packed_type_shift 13
#define r_packed_value_bits 12
typedef enum {
pt_full_ref = 0,
#define pt_min_packed 2
pt_executable_operator = 2,
pt_integer = 3,
pt_unused1 = 4,
pt_unused2 = 5,
#define pt_min_name 6
pt_literal_name = 6,
#define pt_min_exec_name 7
pt_executable_name = 7
} packed_type;
#define packed_per_ref (sizeof(ref) / sizeof(ref_packed))
#define align_packed_per_ref\
(ARCH_ALIGN_REF_MOD / ARCH_ALIGN_SHORT_MOD)
#define pt_tag(pt) ((ref_packed)(pt) << r_packed_type_shift)
#define packed_value_mask ((1 << r_packed_value_bits) - 1)
#define packed_max_value packed_value_mask
#define r_is_packed(rp) (*(const ref_packed *)(rp) >= pt_tag(pt_min_packed))
/* Names */
#define r_packed_is_name(prp) (*(prp) >= pt_tag(pt_min_name))
#define r_packed_is_exec_name(prp) (*(prp) >= pt_tag(pt_min_exec_name))
#define packed_name_max_index packed_max_value
#define packed_name_index(prp) (*(prp) & packed_value_mask)
/* Integers */
#define packed_min_intval (-(1 << (r_packed_value_bits - 1)))
#define packed_max_intval ((1 << (r_packed_value_bits - 1)) - 1)
#define packed_int_mask packed_value_mask
/* Packed ref marking */
#define lp_mark_shift 12
#define lp_mark (1 << lp_mark_shift)
#define r_has_pmark(rp) (*(rp) & lp_mark)
#define r_set_pmark(rp) (*(rp) |= lp_mark)
#define r_clear_pmark(rp) (*(rp) &= ~lp_mark)
#define r_store_pmark(rp,pm) (*(rp) = (*(rp) & ~lp_mark) | (pm))
/* Advance to the next element in a packed array. */
#define packed_next(prp)\
(r_is_packed(prp) ? prp + 1 : prp + packed_per_ref)
/* Define the current array packing flag (setpacking/currentpacking) */
/* for operators. */
/* This is a ref so that it can be managed properly by save/restore. */
#define ref_array_packing_container i_ctx_p
#define ref_array_packing (ref_array_packing_container->array_packing)
#endif /* ipacked_INCLUDED */
|