ghostscript 源码分析之iref.h

iref.h有大量的注释,添加了少些不好懂中文注释。

iterp解析函数基本上还是懂了,等一段时间再放上来。如果有兴趣者,可以一起来讨论分享。

 

/* Copyright (C) 2001-2006 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 that license. 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. */ /* $Id: iref.h 9778 2009-06-05 05:55:54Z alexcher $ */ /* 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; //type_attrs可以用来辨别是什么类型,比如array,pro;另外一项重要的任务便是分派,分派实际上就是说遇到这个操作符该以怎样的形式来执行。 ushort rsize; //一般来说是指执行数目 }; //postscript中把所有的看作是对象,也就是这而的ref。这种设计的确可以节省空间。如果用面向对象?我更偏向于这种形式。 //ref字节数为8,毫无疑问:使用这种分派的方法(interp函数),也就是tas_s的运用(主要是type_attrs),大大的加快了解析速度。 //这实际上也可以用递归来做。而interp函数实际上就是递归的展开,在函数中运用goto来形成递归调用。 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 /* type_attrs的类型是ushort,2 bytes,设置属性的时候向左移了8位。 这儿访问的是下标1,相当于向右移了8位,这样还是原来的值。 例入:r_has_type(rp, t_boolean), rp假定是一个对象的指针,且这是一个bool类型对象。 用 #define r_set_type(rp,typ) ((rp)->tas.type_attrs = (typ) << r_type_shift) 设定属性,用r_set_type_attrs(pref, newtype, newattrs),也就是这儿向左移了8位。 */ # 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. */ /* 这儿很重要,用在inter.c的interp()函数中。 offset_of(ref, tas.type_attrs) / sizeof(ushort)] = 0,这样x_type_xe(rp)求的 type_attrs的值 type_xe_value(typ,xe)宏也大量的运用在interp函数中,用来辨别(分派)lit,exec等等。。 lit代表的是压栈,而exec表示执行。而interp函数赋予的意义多得多。 */ #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 */

你可能感兴趣的:(ghostscript 源码分析之iref.h)