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
|
/* Copyright (C) 2001-2012 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., 7 Mt. Lassen Drive - Suite A-134, San Rafael,
CA 94903, U.S.A., +1(415)492-9861, for further information.
*/
/* Object structure and type definitions for Ghostscript */
#ifndef iref_INCLUDED
# define iref_INCLUDED
/*
* Note: this file defines a large number of macros. Many of these are
* only used for internal purposes within this file, to help in the
* definition of other macros or data structures, and should never be
* referenced outside this file. It is intended that all such internal
* macros have names beginning with an underscore (_).
*/
/* The typedef for object references */
#ifndef ref_DEFINED
typedef struct ref_s ref;
# define ref_DEFINED
#endif
/*
* Define the type for packed object references. This is opaque here:
* the details are in ipacked.h.
*/
typedef ushort ref_packed;
#define log2_sizeof_ref_packed arch_log2_sizeof_short
#define sizeof_ref_packed (1 << log2_sizeof_ref_packed)
/*
* Define the object types.
* The types marked with @ are composite and hence use the a_space field;
* objects of all other types must have a_space cleared.
* The types marked with ! behave differently in the interpreter
* depending on whether they are executable or literal.
* The types marked with + use the read/write/execute
* attributes; the rest only use the executable attribute.
* The types marked with # use the size field.
*
* Note that for the object types that support getinterval (array and
* string types), there is no way to tell whether a given reference
* designates an original object or a sub-interval. This is a deliberate
* design decision.
*/
typedef enum {
/*
* Type 0 must be left unassigned, so that the type (and type_attrs)
* of a valid ref will never be zero. This speeds up simultaneous
* type/space checking in def (see dstack.h for details) and a similar
* check in ref_save (see store.h for details). We may as well use
* type 0 for t__invalid, which will never appear in a real ref.
*
* The "invalid" type is only used in a few special places: the guard
* entries at the bottom of the o-stack that detect stack underflow, and
* (perhaps eventually) the ref that the cached value pointer in names
* points to if the binding isn't known. It never appears on a stack or in
* a program-visible data structure.
*/
t__invalid, /* (no value) */
t_boolean, /* value.boolval */
t_dictionary, /* @ + value.pdict */
t_file, /* @!+# value.pfile, uses size for id */
/*
* The 4 array types must be kept together, and must start at
* a multiple of 4, for the sake of r_is_array and r_is_proc (see below).
*/
#define _REF_T_ARRAY_SPAN 4
t_array, /* @!+# value.refs */
/*
* The following are the two implementations of packed arrays.
* See ipacked.h for details.
*/
t_mixedarray, /* @!+# value.packed */
t_shortarray, /* @!+# value.packed */
t_unused_array_, /* (an unused array type) */
/*
* t_[a]struct is an "umbrella" for other types that are represented by
* allocated objects (structures). Objects of these types are composite
* and hence use the a_local attribute. The type name is taken from
* the allocator template for the structure. t_astruct objects use the
* access attributes; t_struct objects do not. Neither t_struct nor
* t_astruct objects use the size.
*
* t_struct is currently used for the following PostScript types:
* condition, lock.
* We could use it for fontIDs, except that they may have subclasses.
* Eventually it will also be used for the new 'device' type.
* t_astruct is currently used for the following PostScript types:
* gstate.
*
* The 2 structure types must be kept together, and must start at
* a multiple of 2, for the sake of r_has_stype (see below).
*/
#define _REF_T_STRUCT_SPAN 2
t_struct, /* @ value.pstruct */
t_astruct, /* @ + value.pstruct */
/*
* We now continue with individual types.
*/
t_fontID, /* @ value.pstruct */
t_integer, /* value.intval */
t_mark, /* (no value) */
/*
* Name objects use the a_space field because they really are composite
* objects internally.
*/
t_name, /* @! # value.pname, uses size for index */
t_null, /* ! # (value.opproc, uses size for mark */
/* type, on e-stack only) */
/*
* Operator objects use the a_space field because they may actually be
* disguised procedures. (Real operators always have a_space = 0.)
*/
t_operator, /* @! # value.opproc, uses size for index */
t_real, /* value.realval */
t_save, /* value.saveid, see isave.h for why */
/* this isn't a t_struct */
t_string, /* @!+# value.bytes */
/*
* The following are extensions to the PostScript type set.
* If you add new types, be sure to edit:
* - REF_TYPE_*STRINGS* and REF_TYPE_PROPERTIES_DATA below;
* - the table in gs_init.ps (==only operator);
* - the printing routine in idebug.c;
* - the dispatches in igc.c, igcref.c, and interp.c;
* - obj_cvs, obj_cvp, and obj_eq in iutil.c;
* - restore_check_stack in zvmem.c.
*/
t_device, /* @ + value.pdevice */
t_oparray, /* @! # value.const_refs, uses size */
/* for index */
t_next_index /*** first available index ***/
} ref_type;
/*
* The interpreter uses types starting at t_next_index for representing
* a few high-frequency operators.
* Since there are no operations specifically on operators,
* there is no need for any operators to check specifically for these
* types. The r_btype macro takes care of the conversion when required.
*/
/*extern const int tx_next_index; *//* in interp.c */
/*
* Define a table giving properties of types, similar to the table used
* by the isxxx functions (macros) in <ctype.h>.
*/
#define _REF_TYPE_USES_ACCESS 1 /* type uses w/r/x attributes ("+" above) */
#define _REF_TYPE_USES_SIZE 2 /* type uses size attribute ("#" above) */
#define _REF_TYPE_IS_NULL 4 /* type is t_null */
#define _REF_TYPE_IS_DICTIONARY 8 /* type is t_dictionary */
extern const byte ref_type_properties[1 << 6]; /* r_type_bits */
#define REF_TYPE_PROPERTIES_DATA\
0, /* t__invalid */\
0, /* t_boolean */\
_REF_TYPE_USES_ACCESS | _REF_TYPE_IS_DICTIONARY, /* t_dictionary */\
_REF_TYPE_USES_ACCESS | _REF_TYPE_USES_SIZE, /* t_file */\
_REF_TYPE_USES_ACCESS | _REF_TYPE_USES_SIZE, /* t_array */\
_REF_TYPE_USES_ACCESS | _REF_TYPE_USES_SIZE, /* t_mixedarray */\
_REF_TYPE_USES_ACCESS | _REF_TYPE_USES_SIZE, /* t_shortarray */\
_REF_TYPE_USES_ACCESS | _REF_TYPE_USES_SIZE, /* (unused array type) */\
0, /* t_struct */\
_REF_TYPE_USES_ACCESS, /* t_astruct */\
0, /* t_fontID */\
0, /* t_integer */\
0, /* t_mark */\
_REF_TYPE_USES_SIZE, /* t_name */\
_REF_TYPE_IS_NULL, /* t_null, uses size only on e-stack */\
_REF_TYPE_USES_SIZE, /* t_operator */\
0, /* t_real */\
0, /* t_save */\
_REF_TYPE_USES_ACCESS | _REF_TYPE_USES_SIZE, /* t_string */\
_REF_TYPE_USES_ACCESS, /* t_device */\
_REF_TYPE_USES_SIZE, /* t_oparray */\
/*\
* The remaining types are the extended pseudo-types used by the\
* interpreter for operators. We need to fill up the table.\
*/\
_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE, /*24*/\
_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE, /*28*/\
_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE, /*32*/\
_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE, /*36*/\
_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE, /*40*/\
_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE, /*44*/\
_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE, /*48*/\
_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE, /*52*/\
_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE, /*56*/\
_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE, /*60*/\
_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE,_REF_TYPE_USES_SIZE /*64 */
#define _REF_TYPE_HAS(rtype,props)\
((ref_type_properties[rtype] & (props)) != 0)
#define ref_type_uses_access(rtype)\
_REF_TYPE_HAS(rtype, _REF_TYPE_USES_ACCESS)
#define ref_type_uses_size(rtype)\
_REF_TYPE_HAS(rtype, _REF_TYPE_USES_SIZE)
#define ref_type_uses_size_or_null(rtype)\
_REF_TYPE_HAS(rtype, _REF_TYPE_USES_SIZE | _REF_TYPE_IS_NULL)
/*
* Define the type names for debugging printout.
* All names must be the same length, so that columns will line up.
*/
#define REF_TYPE_DEBUG_PRINT_STRINGS\
"INVL","bool","dict","file",\
"arry","mpry","spry","u?ry",\
"STRC","ASTR",\
"font","int ","mark","name","null",\
"oper","real","save","str ",\
"devc","opry"
/*
* Define the type names for the type operator.
*/
#define REF_TYPE_NAME_STRINGS\
0,"booleantype","dicttype","filetype",\
"arraytype","packedarraytype","packedarraytype","arraytype",\
0,0,\
"fonttype","integertype","marktype","nametype","nulltype",\
"operatortype","realtype","savetype","stringtype",\
"devicetype","operatortype"
/*
* Define the type names for obj_cvp (the == operator). We only need these
* for types that obj_cvp and obj_cvs don't handle specially.
*/
#define REF_TYPE_PRINT_STRINGS\
0,0,"-dict-","-file-",\
"-array-","-packedarray-","-packedarray-","-array-",\
0,0,\
"-fontID-",0,"-mark-",0,0,\
0,0,"-save-","-string-",\
"-device-",0
/*
* The following factors affect the encoding of attributes:
*
* - The packed array format requires the high-order bits of the
* type/attributes field to be 0. (see packed.h)
*
* - The interpreter wants the type, executable bit, and execute
* permission to be adjacent, and in that order from high to low.
*
* - Type testing is most efficient if the type is in a byte by itself.
*
* The layout given below results in the most efficient code overall.
*/
/*
* A few of the fields of a ref are associated with the *location*;
* most are associated with the ref that is *stored* in that location.
* When a ref is copied from one location to another, the former are
* preserved in the destination, the latter are copied.
*/
/*
* The following are the attributes associated with the location:
*/
#define l_mark 1 /* mark for garbage collector */
#define l_new 2 /* stored into since last save */
/*
* The following are attributes associated with the ref itself (the
* contents of the location). These are visible to PostScript code.
*/
/*
* Reserve bits for VM space information (defined in ivmspace.h). Note that
* These bits refer to the VM space of the pointer in the ref, if any, not
* the location in which the ref itself is stored. For scalars, these bits
* are always zero.
*/
#define r_space_bits 2
#define r_space_shift 2
/*
* Define the protection attributes. Only 4 combinations are legal:
* 0, execute, execute + read, execute + read + write. Note that some
* refs (such as scalars) do not use these: in such refs, they are
* always zero.
*/
#define a_write 0x10
#define a_read 0x20
#define a_execute 0x40
#define a_readonly (a_read + a_execute)
#define a_all (a_write + a_read+a_execute)
/*
* Define the executable attribute. All refs use this.
*/
#define a_executable 0x80
/*
* Define the bits used for the ref type. See ipacked.h for more
* information about the possible values of the type byte.
*/
#define r_type_shift 8
#define r_type_bits 6
/*
* Define the attribute names for debugging printout.
* Each entry has the form <mask, value, character>.
*/
typedef struct ref_attr_print_mask_s {
ushort mask;
ushort value;
char print;
} ref_attr_print_mask_t;
#define _REF_ATTR_PRINT_FLAG(m,c)\
{m,m,c},{m,0,'-'}
#define _REF_ATTR_PRINT_SPACE(v,c)\
{((1<<r_space_bits)-1)<<r_space_shift,v,c}
#define REF_ATTR_PRINT_MASKS\
_REF_ATTR_PRINT_FLAG(l_mark,'m'),\
_REF_ATTR_PRINT_FLAG(l_new,'n'),\
_REF_ATTR_PRINT_SPACE(avm_foreign,'F'),\
_REF_ATTR_PRINT_SPACE(avm_system,'S'),\
_REF_ATTR_PRINT_SPACE(avm_global,'G'),\
_REF_ATTR_PRINT_SPACE(avm_local,'L'),\
_REF_ATTR_PRINT_FLAG(a_write,'w'),\
_REF_ATTR_PRINT_FLAG(a_read,'r'),\
_REF_ATTR_PRINT_FLAG(a_execute,'x'),\
_REF_ATTR_PRINT_FLAG(a_executable,'e'),\
_REF_ATTR_PRINT_FLAG(0x4000,'?'),\
_REF_ATTR_PRINT_FLAG(0x8000,'?')
/* Abstract types */
typedef struct dict_s dict;
typedef struct name_s name;
#ifndef stream_DEFINED
# define stream_DEFINED
typedef struct stream_s stream;
#endif
#ifndef gx_device_DEFINED
# define gx_device_DEFINED
typedef struct gx_device_s gx_device;
#endif
#ifndef obj_header_DEFINED
# define obj_header_DEFINED
typedef struct obj_header_s obj_header_t;
#endif
/*
* Define the argument type for operator procedures. Note that the
* argument name is not arbitrary: it is used in access macros, so all
* operator procedures must use it.
*/
#ifndef i_ctx_t_DEFINED
# define i_ctx_t_DEFINED
typedef struct gs_context_state_s i_ctx_t;
#endif
typedef int (*op_proc_t)(i_ctx_t *i_ctx_p);
/* real_opproc is a holdover.... */
#define real_opproc(pref) ((pref)->value.opproc)
/* Object reference */
/*
* Note that because of the way packed arrays are represented,
* the type_attrs member must be the first one in the ref structure.
*/
struct tas_s {
/* type_attrs is a single element for fast dispatching in the interpreter */
ushort type_attrs;
ushort rsize;
};
struct ref_s {
struct tas_s tas;
union v { /* name the union to keep gdb happy */
int intval;
ushort boolval;
float realval;
ulong saveid;
byte *bytes;
const byte *const_bytes;
ref *refs;
const ref *const_refs;
name *pname;
const name *const_pname;
dict *pdict;
const dict *const_pdict;
/*
* packed is the normal variant for referring to packed arrays,
* but we need a writable variant for memory management and for
* storing into packed dictionary key arrays.
*/
const ref_packed *packed;
ref_packed *writable_packed;
op_proc_t opproc;
struct stream_s *pfile;
struct gx_device_s *pdevice;
obj_header_t *pstruct;
} value;
};
/* ---------------- Private ref macros ---------------- */
/*
* Test whether a ref has a type within a given span, and also has all of a
* given set of attributes.
*/
#define _REF_HAS_MASKED_TYPE_ATTRS(rp,typ,tspan,mask)\
(((rp)->tas.type_attrs &\
((((1 << r_type_bits) - (tspan)) << r_type_shift) + (mask))) ==\
(((typ) << r_type_shift) + (mask)))
/* ---------------- Public ref macros ---------------- */
/*
* All of these macros take an argument "rp" which is a pointer to a ref.
* Unless otherwise specified, they only apply to full-size (not packed)
* refs.
*/
/*
* Read, set, increment, and decrement the size field of a ref.
*/
#define r_size(rp) ((rp)->tas.rsize)
#define r_inc_size(rp,inc) ((rp)->tas.rsize += (inc))
#define r_dec_size(rp,dec) ((rp)->tas.rsize -= (dec))
#define r_set_size(rp,siz) ((rp)->tas.rsize = (siz))
/*
* Get the type of a ref; test whether a ref has a given type. The
* difference between r_type and r_btype is that for refs with types greater
* than or equal to t_next_index, r_type returns that type, but r_btype
* returns t_operator (since those types just encode specific operators for
* faster dispatch in the interpreter -- see interp.h for more information).
*/
#if r_type_shift == 8
# if arch_is_big_endian
# define r_type(rp) (((const byte *)&((rp)->tas.type_attrs))[sizeof(ushort)-2])
# else
# define r_type(rp) (((const byte *)&((rp)->tas.type_attrs))[1])
# endif
# define r_has_type(rp,typ) (r_type(rp) == (typ))
#else
# define r_type(rp) ((rp)->tas.type_attrs >> r_type_shift)
# define r_has_type(rp,typ) r_has_type_attrs(rp,typ,0) /* see below */
#endif
#define r_btype(rp)\
((rp)->tas.type_attrs >= (t_next_index << r_type_shift) ?\
t_operator : r_type(rp))
/*
* Test whether a ref is an array, or a procedure, or a(n) [a]struct.
*/
#define r_is_array(rp)\
_REF_HAS_MASKED_TYPE_ATTRS(rp,t_array,_REF_T_ARRAY_SPAN,0)
#define r_is_proc(rp)\
_REF_HAS_MASKED_TYPE_ATTRS(rp,t_array,_REF_T_ARRAY_SPAN,a_execute+a_executable)
#define r_is_struct(rp)\
_REF_HAS_MASKED_TYPE_ATTRS(rp,t_struct,_REF_T_STRUCT_SPAN,0)
/*
* Test whether a ref is a struct or astruct with a specific structure type
* (GC descriptor).
*/
#define r_has_stype(rp,mem,styp)\
(r_is_struct(rp) && gs_object_type(mem, (rp)->value.pstruct) == &styp)
/*
* Set the type of a ref. This is only used in a few very special places.
* Normally the type of a ref is set when the ref is created (by one of
* the make_xxx macros in store.h) and never changed.
*/
#define r_set_type(rp,typ) ((rp)->tas.type_attrs = (typ) << r_type_shift)
/*
* Get, test, or set the type and attributes of a ref together as a single
* value. This too is only used in a few special places.
*/
#define r_type_attrs(rp) ((rp)->tas.type_attrs) /* reading only */
#define r_has_type_attrs(rp,typ,mask)\
_REF_HAS_MASKED_TYPE_ATTRS(rp,typ,1,mask)
#define r_set_type_attrs(rp,typ,mask)\
((rp)->tas.type_attrs = ((typ) << r_type_shift) + (mask))
/*
* Get the combined type, a_executable, and a_execute bits of a ref,
* for fast dispatching in the interpreter.
*/
/*
* The r_type_xe macro is used in (and only in) the main interpreter loop,
* where its rp operand may be a ref_packed, not necessarily aligned as
* strictly as a full-size ref. The DEC C compiler, and possibly others,
* may compile code assuming that rp is ref-aligned. Therefore, we
* explicitly cast the pointer to a less-strictly-aligned type.
* In order to convince the compiler, we have to do the cast before
* indexing into the structure.
*/
#define _REF_TYPE_XE_SHIFT (r_type_shift - 2)
#define _REF_TAS_TYPE_XE(tas) ((tas) >> _REF_TYPE_XE_SHIFT)
#define r_type_xe(rp)\
_REF_TAS_TYPE_XE(((const ushort *)(rp))[offset_of(ref, tas.type_attrs) / sizeof(ushort)])
#define type_xe_value(typ,xe) _REF_TAS_TYPE_XE(((typ) << r_type_shift) + (xe))
/*
* Test whether a ref has a given attribute, or all the given attributes.
*/
#define r_has_attr(rp,mask1) /* optimize 1-bit case */\
(r_type_attrs(rp) & (mask1))
#define r_has_attrs(rp,mask) !(~r_type_attrs(rp) & (mask))
/*
* Test whether those attributes of a ref selected by a mask have a
* given value.
*/
#define r_has_masked_attrs(rp,attrs,mask)\
((r_type_attrs(rp) & (mask)) == (attrs))
/*
* Set, clear, store, or copy the attributes of a ref. These are rarely
* needed. Note that, unfortunately, the attrs and mask parameters of
* r_store_attrs are reversed from r_has_masked_attrs.
*/
#define r_set_attrs(rp,mask) ((rp)->tas.type_attrs |= (mask))
#define r_clear_attrs(rp,mask) ((rp)->tas.type_attrs &= ~(mask))
#define r_store_attrs(rp,mask,attrs)\
((rp)->tas.type_attrs = ((rp)->tas.type_attrs & ~(mask)) | (attrs))
#define r_copy_attrs(rp,mask,sp)\
r_store_attrs(rp,mask,(sp)->tas.type_attrs & (mask))
/*
* Get or set the pointer field of a struct or astruct ref. The typ
* argument of r_ptr is the (C) type of the structure.
*/
#define r_ptr(rp,typ) ((typ *)((rp)->value.pstruct))
#define r_set_ptr(rp,ptr) ((rp)->value.pstruct = (obj_header_t *)(ptr))
/* ---------------- End of ref macros ---------------- */
/* Define data for initializing an empty array or string. */
#define empty_ref_data(type, attrs)\
{ /*tas*/ { /*type_attrs*/ ((type) << r_type_shift) | (attrs),\
/*rsize*/ 0 } }
/* Define the size of a ref. */
#define arch_sizeof_ref sizeof(ref)
/* Define the required alignment for refs. */
/* We assume all alignment values are powers of 2. */
#define ARCH_ALIGN_REF_MOD\
(((ARCH_ALIGN_LONG_MOD - 1) | (ARCH_ALIGN_FLOAT_MOD - 1) |\
(ARCH_ALIGN_PTR_MOD - 1)) + 1)
/* Define the maximum size of an array or a string. */
/* The maximum array size is determined by the fact that */
/* the allocator cannot allocate a block larger than max_uint. */
#define max_array_size (max_ushort & (max_uint / (uint)arch_sizeof_ref))
#define max_string_size max_ushort
#endif /* iref_INCLUDED */
|