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., 39 Mesa Street, Suite 108A, San Francisco,
CA 94129, USA, for further information.
*/
#include "math_.h"
#include "memory_.h"
#include "ghost.h"
#include "gsutil.h"
#include "gxalloc.h"
#include "stream.h"
#include "strimpl.h"
#include "sfilter.h"
#include "ierrors.h"
#include "ialloc.h"
#include "iddict.h"
#include "dstack.h"
#include "ostack.h"
#include "iname.h"
#include "iscan.h"
#include "iscanbin.h"
#include "iutil.h"
#include "ivmspace.h"
#include "store.h"
#include "btoken.h"
#include "ibnum.h"
typedef enum {
BT_SEQ = 128,
BT_SEQ_IEEE_MSB = 128,
BT_SEQ_IEEE_LSB = 129,
BT_SEQ_NATIVE_MSB = 130,
BT_SEQ_NATIVE_LSB = 131,
#define BT_IS_SEQ(btype) (((btype) & ~3) == BT_SEQ)
BT_INT32_MSB = 132,
BT_INT32_LSB = 133,
BT_INT16_MSB = 134,
BT_INT16_LSB = 135,
BT_INT8 = 136,
BT_FIXED = 137,
BT_FLOAT_IEEE_MSB = 138,
BT_FLOAT_IEEE_LSB = 139,
BT_FLOAT_NATIVE = 140,
BT_BOOLEAN = 141,
BT_STRING_256 = 142,
BT_STRING_64K_MSB = 143,
BT_STRING_64K_LSB = 144,
BT_LITNAME_SYSTEM = 145,
BT_EXECNAME_SYSTEM = 146,
BT_LITNAME_USER = 147,
BT_EXECNAME_USER = 148,
BT_NUM_ARRAY = 149
} bin_token_type_t;
#define MIN_BIN_TOKEN_TYPE 128
#define MAX_BIN_TOKEN_TYPE 159
#define NUM_BIN_TOKEN_TYPES (MAX_BIN_TOKEN_TYPE - MIN_BIN_TOKEN_TYPE + 1)
static const byte bin_token_bytes[NUM_BIN_TOKEN_TYPES] =
{
4, 4, 4, 4, 5, 5, 3, 3, 2, 2, 5, 5, 5,
2, 2, 3, 3, 2, 2, 2, 2, 4,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1
};
static const byte bin_token_num_formats[NUM_BIN_TOKEN_TYPES] =
{
num_msb + num_float_IEEE,
num_lsb + num_float_IEEE,
#if ARCH_FLOATS_ARE_IEEE && BYTE_SWAP_IEEE_NATIVE_REALS
num_msb + num_float_IEEE,
num_lsb + num_float_IEEE,
#else
num_msb + num_float_native,
num_lsb + num_float_native,
#endif
num_msb + num_int32,
num_lsb + num_int32,
num_msb + num_int16,
num_lsb + num_int16,
0,
0,
num_msb + num_float_IEEE,
num_lsb + num_float_IEEE,
num_float_native,
0,
0,
num_msb,
num_lsb
};
typedef enum {
BS_TYPE_NULL = 0,
BS_TYPE_INTEGER = 1,
BS_TYPE_REAL = 2,
BS_TYPE_NAME = 3,
BS_TYPE_BOOLEAN = 4,
BS_TYPE_STRING = 5,
BS_TYPE_EVAL_NAME = 6,
BS_TYPE_ARRAY = 9,
BS_TYPE_MARK = 10,
} bin_seq_type_t;
#define BS_EXECUTABLE 128
#define SIZEOF_BIN_SEQ_OBJ ((uint)8)
static int scan_bos(i_ctx_t *, ref *, scanner_state *);
static void scan_bos_error(scanner_state *, const char *);
static int scan_bin_scalar(i_ctx_t *, ref *, scanner_state *);
static int scan_bin_get_name(scanner_state *, const gs_memory_t *mem, const ref *, int, ref *, const char *);
static int scan_bin_num_array_continue(i_ctx_t *, ref *, scanner_state *);
static int scan_bin_string_continue(i_ctx_t *, ref *, scanner_state *);
static int scan_bos_continue(i_ctx_t *, ref *, scanner_state *);
static byte *scan_bos_resize(i_ctx_t *, scanner_state *, uint, uint);
static int scan_bos_string_continue(i_ctx_t *, ref *, scanner_state *);
int
scan_binary_token(i_ctx_t *i_ctx_p, ref *pref, scanner_state *pstate)
{
stream *const s = pstate->s_file.value.pfile;
scan_binary_state *const pbs = &pstate->s_ss.binary;
s_declare_inline(s, p, rlimit);
int btype, code;
uint wanted;
s_begin_inline(s, p, rlimit);
pbs->token_type = btype = *p;
wanted = bin_token_bytes[btype - MIN_BIN_TOKEN_TYPE] - 1;
if (rlimit - p < wanted) {
s_end_inline(s, p - 1, rlimit);
pstate->s_scan_type = scanning_none;
code = scan_Refill;
} else {
pbs->num_format = bin_token_num_formats[btype - MIN_BIN_TOKEN_TYPE];
if (BT_IS_SEQ(btype))
code = scan_bos(i_ctx_p, pref, pstate);
else
code = scan_bin_scalar(i_ctx_p, pref, pstate);
}
if (code == scan_Refill && s->end_status == EOFC)
code = gs_note_error(gs_error_syntaxerror);
if (code < 0 && pstate->s_error.string[0] == 0)
snprintf(pstate->s_error.string, sizeof(pstate->s_error.string),
"binary token, type=%d", btype);
return code;
}
static int
scan_bos(i_ctx_t *i_ctx_p, ref *pref, scanner_state *pstate)
{
stream *const s = pstate->s_file.value.pfile;
scan_binary_state *const pbs = &pstate->s_ss.binary;
s_declare_inline(s, p, rlimit);
int num_format = pbs->num_format;
int code;
s_begin_inline(s, p, rlimit);
{
uint rcnt = rlimit - p;
uint top_size = p[1];
uint hsize, size;
if (top_size == 0) {
if (rcnt < 7) {
s_end_inline(s, p - 1, rlimit);
pstate->s_scan_type = scanning_none;
return scan_Refill;
}
pbs->top_size = top_size = sdecodeushort(p + 2, num_format);
pbs->lsize = size = sdecodeint32(p + 4, num_format);
hsize = 8;
} else {
pbs->top_size = top_size;
pbs->lsize = size = sdecodeushort(p + 2, num_format);
hsize = 4;
}
if (size < hsize || (size - hsize) >> 3 < top_size) {
scan_bos_error(pstate, "sequence too short");
return_error(gs_error_syntaxerror);
}
{
* memory allocation on junk data. Bug 688833
*/
const unsigned char *q, *rend = p + hsize + top_size*8;
if (rend > rlimit)
rend = rlimit;
for (q = p + hsize + 1; q < rend; q += 8) {
int c = q[-1] & 0x7f;
if (c > 10) {
scan_bos_error(pstate, "invalid object type");
return_error(gs_error_syntaxerror);
}
if (*q != 0) {
scan_bos_error(pstate, "non-zero unused field");
return_error(gs_error_syntaxerror);
}
}
}
* Preallocate an array large enough for the worst case,
* namely, all objects and no strings. Note that we must
* divide size by 8, not sizeof(ref), since array elements
* in binary tokens always occupy 8 bytes regardless of the
* size of a ref.
*/
code = ialloc_ref_array(&pbs->bin_array,
a_all + a_executable, size / 8,
"binary object sequence(objects)");
if (code < 0)
return code;
p += hsize - 1;
size -= hsize;
s_end_inline(s, p, rlimit);
pbs->max_array_index = pbs->top_size = top_size;
pbs->min_string_index = pbs->size = size;
pbs->index = 0;
pstate->s_da.is_dynamic = false;
pstate->s_da.base = pstate->s_da.next =
pstate->s_da.limit = pstate->s_da.buf;
code = scan_bos_continue(i_ctx_p, pref, pstate);
if ((code == scan_Refill || code < 0) && pbs->index < r_size(&pbs->bin_array)) {
uint index = pbs->index;
refset_null(pbs->bin_array.value.refs + index,
r_size(&pbs->bin_array) - index);
}
return code;
}
}
static void
scan_bos_error(scanner_state *pstate, const char *msg)
{
snprintf(pstate->s_error.string, sizeof(pstate->s_error.string),
"bin obj seq, type=%d, elements=%u, size=%lu, %s",
pstate->s_ss.binary.token_type,
pstate->s_ss.binary.top_size,
pstate->s_ss.binary.lsize, msg);
}
static int
scan_bin_scalar(i_ctx_t *i_ctx_p, ref *pref, scanner_state *pstate)
{
stream *const s = pstate->s_file.value.pfile;
scan_binary_state *const pbs = &pstate->s_ss.binary;
s_declare_inline(s, p, rlimit);
int num_format = pbs->num_format, code;
uint wanted, arg;
s_begin_inline(s, p, rlimit);
wanted = bin_token_bytes[*p - MIN_BIN_TOKEN_TYPE] - 1;
switch (*p) {
case BT_INT8:
make_int(pref, (p[1] ^ 128) - 128);
s_end_inline(s, p + 1, rlimit);
return 0;
case BT_FIXED:
num_format = p[1];
if (!num_is_valid(num_format))
return_error(gs_error_syntaxerror);
wanted = 1 + encoded_number_bytes(num_format);
if (rlimit - p < wanted) {
s_end_inline(s, p - 1, rlimit);
pstate->s_scan_type = scanning_none;
return scan_Refill;
}
code = sdecode_number(p + 2, num_format, pref);
goto rnum;
case BT_INT32_MSB:
case BT_INT32_LSB:
case BT_INT16_MSB:
case BT_INT16_LSB:
case BT_FLOAT_IEEE_MSB:
case BT_FLOAT_IEEE_LSB:
case BT_FLOAT_NATIVE:
code = sdecode_number(p + 1, num_format, pref);
rnum:
switch (code) {
case t_integer:
case t_real:
r_set_type(pref, code);
break;
case t_null:
return_error(gs_error_syntaxerror);
default:
return code;
}
s_end_inline(s, p + wanted, rlimit);
return 0;
case BT_BOOLEAN:
arg = p[1];
if (arg & ~1)
return_error(gs_error_syntaxerror);
make_bool(pref, arg);
s_end_inline(s, p + 1, rlimit);
return 0;
case BT_STRING_256:
arg = *++p;
goto str;
case BT_STRING_64K_MSB:
case BT_STRING_64K_LSB:
arg = sdecodeushort(p + 1, num_format);
p += 2;
str:
if (s->foreign && rlimit - p >= arg) {
* Reference the string directly in the buffer. It is
* marked writable for consistency with the non-direct
* case, but since the "buffer" may be data compiled into
* the executable, it is probably actually read-only.
*/
s_end_inline(s, p, rlimit);
make_const_string(pref, a_all | avm_foreign, arg, sbufptr(s));
return sbufskip(s, arg);
} else {
byte *str = ialloc_string(arg, "string token");
if (str == 0)
return_error(gs_error_VMerror);
s_end_inline(s, p, rlimit);
pstate->s_da.base = pstate->s_da.next = str;
pstate->s_da.limit = str + arg;
code = scan_bin_string_continue(i_ctx_p, pref, pstate);
if (code == scan_Refill || code < 0) {
pstate->s_da.is_dynamic = true;
make_null(&pbs->bin_array);
pbs->cont = scan_bin_string_continue;
}
return code;
}
case BT_LITNAME_SYSTEM:
code = scan_bin_get_name(pstate, imemory, system_names_p, p[1],
pref, "system");
goto lname;
case BT_EXECNAME_SYSTEM:
code = scan_bin_get_name(pstate, imemory, system_names_p, p[1],
pref, "system");
goto xname;
case BT_LITNAME_USER:
code = scan_bin_get_name(pstate, imemory, user_names_p, p[1],
pref, "user");
lname:
if (code < 0)
return code;
s_end_inline(s, p + 1, rlimit);
return 0;
case BT_EXECNAME_USER:
code = scan_bin_get_name(pstate, imemory, user_names_p, p[1],
pref, "user");
xname:
if (code < 0)
return code;
r_set_attrs(pref, a_executable);
s_end_inline(s, p + 1, rlimit);
return 0;
case BT_NUM_ARRAY:
num_format = p[1];
if (!num_is_valid(num_format))
return_error(gs_error_syntaxerror);
arg = sdecodeushort(p + 2, num_format);
code = ialloc_ref_array(&pbs->bin_array, a_all, arg,
"number array token");
if (code < 0)
return code;
pbs->num_format = num_format;
pbs->index = 0;
p += 3;
s_end_inline(s, p, rlimit);
code = scan_bin_num_array_continue(i_ctx_p, pref, pstate);
if (code == scan_Refill || code < 0) {
refset_null(pbs->bin_array.value.refs + pbs->index,
arg - pbs->index);
pbs->cont = scan_bin_num_array_continue;
}
return code;
}
return_error(gs_error_syntaxerror);
}
static int
scan_bin_get_name(scanner_state *pstate, const gs_memory_t *mem,
const ref *pnames , int index, ref *pref,
const char *usstring)
{
if (pnames == 0 || array_get(mem, pnames, (long)index, pref) < 0 ||
!r_has_type(pref, t_name)) {
snprintf(pstate->s_error.string,
sizeof(pstate->s_error.string),
"%s%d", usstring, index);
pstate->s_error.is_name = true;
return_error(gs_error_undefined);
}
return 0;
}
static int
scan_bin_string_continue(i_ctx_t *i_ctx_p, ref * pref, scanner_state * pstate)
{
stream *const s = pstate->s_file.value.pfile;
byte *q = pstate->s_da.next;
uint wanted = pstate->s_da.limit - q;
uint rcnt;
If there is an error in sgets, the condition rcnt==wanted
would be false and this function will return scan_Refill.
*/
sgets(s, q, wanted, &rcnt);
if (rcnt == wanted) {
make_string(pref, a_all | icurrent_space,
pstate->s_da.limit - pstate->s_da.base,
pstate->s_da.base);
return 0;
}
pstate->s_da.next = q + rcnt;
pstate->s_scan_type = scanning_binary;
return scan_Refill;
}
static int
scan_bin_num_array_continue(i_ctx_t *i_ctx_p, ref * pref,
scanner_state * pstate)
{
stream *const s = pstate->s_file.value.pfile;
scan_binary_state *const pbs = &pstate->s_ss.binary;
uint index = pbs->index;
ref *np = pbs->bin_array.value.refs + index;
uint wanted = encoded_number_bytes(pbs->num_format);
for (; index < r_size(&pbs->bin_array); index++, np++) {
int code;
if (sbufavailable(s) < wanted) {
pbs->index = index;
pstate->s_scan_type = scanning_binary;
return scan_Refill;
}
code = sdecode_number(sbufptr(s), pbs->num_format, np);
switch (code) {
case t_integer:
case t_real:
r_set_type(np, code);
(void)sbufskip(s, wanted);
break;
case t_null:
scan_bos_error(pstate, "bad number format");
return_error(gs_error_syntaxerror);
default:
return code;
}
}
*pref = pbs->bin_array;
return 0;
}
* Continue scanning a binary object sequence. We preallocated space for
* the largest possible number of objects, but not for strings, since
* the latter would probably be a gross over-estimate. Instead,
* we wait until we see the first string or name, and allocate string space
* based on the hope that its string index is the smallest one we will see.
* If this turns out to be wrong, we may have to reallocate, and adjust
* all the pointers.
*/
static int
scan_bos_continue(i_ctx_t *i_ctx_p, ref * pref, scanner_state * pstate)
{
stream *const s = pstate->s_file.value.pfile;
scan_binary_state *const pbs = &pstate->s_ss.binary;
s_declare_inline(s, p, rlimit);
uint max_array_index = pbs->max_array_index;
uint min_string_index = pbs->min_string_index;
int num_format = pbs->num_format;
uint index = pbs->index;
uint size = pbs->size;
ref *abase = pbs->bin_array.value.refs;
int code;
pbs->cont = scan_bos_continue;
s_begin_inline(s, p, rlimit);
for (; index < max_array_index; p += SIZEOF_BIN_SEQ_OBJ, index++) {
ref *op = abase + index;
uint osize;
int value, atype, attrs;
s_end_inline(s, p, rlimit);
if (rlimit - p < SIZEOF_BIN_SEQ_OBJ) {
pbs->index = index;
pbs->max_array_index = max_array_index;
pbs->min_string_index = min_string_index;
pstate->s_scan_type = scanning_binary;
return scan_Refill;
}
if (p[2] != 0) {
scan_bos_error(pstate, "non-zero unused field");
return_error(gs_error_syntaxerror);
}
attrs = (p[1] & 128 ? a_executable : 0);
* We always decode all 8 bytes of the object, so we can signal
* syntaxerror if any unused field is non-zero (per PLRM).
*/
osize = sdecodeushort(p + 3, num_format);
value = sdecodeint32(p + 5, num_format);
switch (p[1] & 0x7f) {
case BS_TYPE_NULL:
if (osize | value) {
scan_bos_error(pstate, "non-zero unused field");
return_error(gs_error_syntaxerror);
}
make_null(op);
break;
case BS_TYPE_INTEGER:
if (osize) {
scan_bos_error(pstate, "non-zero unused field");
return_error(gs_error_syntaxerror);
}
make_int(op, value);
break;
case BS_TYPE_REAL:{
float vreal;
if (osize != 0) {
if (osize > 31) {
scan_bos_error(pstate, "invalid number format");
return_error(gs_error_syntaxerror);
}
vreal = (float)ldexp((double)value, -(int)osize);
} else {
code = sdecode_float(p + 5, num_format, &vreal);
if (code < 0) {
scan_bos_error(pstate, "invalid real number");
return code;
}
}
make_real(op, vreal);
break;
}
case BS_TYPE_BOOLEAN:
if (osize) {
scan_bos_error(pstate, "non-zero unused field");
return_error(gs_error_syntaxerror);
}
make_bool(op, value != 0);
break;
case BS_TYPE_STRING:
attrs |= a_all;
str:
if (osize == 0) {
make_empty_string(op, attrs);
break;
}
{
const uint beg_ofs = (uint)value;
const uint end_ofs = beg_ofs + osize;
if (beg_ofs < max_array_index * SIZEOF_BIN_SEQ_OBJ || beg_ofs > size) {
scan_bos_error(pstate, "invalid string offset");
return_error(gs_error_syntaxerror);
}
if (end_ofs < beg_ofs || end_ofs > size) {
scan_bos_error(pstate, "invalid string length");
return_error(gs_error_syntaxerror);
}
if (beg_ofs < min_string_index) {
uint str_size = size - beg_ofs;
byte *sbase;
if (pstate->s_da.is_dynamic)
sbase = scan_bos_resize(i_ctx_p, pstate, str_size,
index);
else
sbase = ialloc_string(str_size,
"bos strings");
if (sbase == 0)
return_error(gs_error_VMerror);
pstate->s_da.is_dynamic = true;
pstate->s_da.base = pstate->s_da.next = sbase;
pstate->s_da.limit = sbase + str_size;
min_string_index = beg_ofs;
}
make_string(op, attrs | icurrent_space, osize,
pstate->s_da.base +
(beg_ofs - min_string_index));
}
break;
case BS_TYPE_EVAL_NAME:
attrs |= a_readonly;
case BS_TYPE_NAME:
switch (osize) {
case 0:
code = scan_bin_get_name(pstate, imemory,
user_names_p, value, op,
"user");
goto usn;
case 0xffff:
code = scan_bin_get_name(pstate, imemory,
system_names_p, value, op,
"system");
usn:
if (code < 0)
return code;
r_set_attrs(op, attrs);
break;
default:
goto str;
}
break;
case BS_TYPE_ARRAY:
atype = t_array;
{
const uint beg_ofs = (uint)value;
const uint end_ofs = beg_ofs + osize * SIZEOF_BIN_SEQ_OBJ;
const uint beg_idx = beg_ofs / SIZEOF_BIN_SEQ_OBJ;
const uint end_idx = end_ofs / SIZEOF_BIN_SEQ_OBJ;
if (beg_ofs > min_string_index || beg_ofs & (SIZEOF_BIN_SEQ_OBJ - 1)) {
scan_bos_error(pstate, "bad array offset");
return_error(gs_error_syntaxerror);
}
if (osize > (size / 8) || end_ofs < beg_ofs || end_ofs > min_string_index) {
scan_bos_error(pstate, "bad array length");
return_error(gs_error_syntaxerror);
}
max_array_index = max(max_array_index, end_idx);
make_tasv_new(op, atype,
attrs | a_all | icurrent_space,
osize, refs, abase + beg_idx);
}
break;
case BS_TYPE_MARK:
if (osize | value) {
scan_bos_error(pstate, "non-zero unused field");
return_error(gs_error_syntaxerror);
}
make_mark(op);
break;
default:
scan_bos_error(pstate, "invalid object type");
return_error(gs_error_syntaxerror);
}
}
s_end_inline(s, p, rlimit);
pbs->index = max_array_index;
iresize_ref_array(&pbs->bin_array, max_array_index,
"binary object sequence(objects)");
code = scan_bos_string_continue(i_ctx_p, pref, pstate);
if (code == scan_Refill)
pbs->cont = scan_bos_string_continue;
return code;
}
static byte *
scan_bos_resize(i_ctx_t *i_ctx_p, scanner_state * pstate, uint new_size,
uint index)
{
scan_binary_state *const pbs = &pstate->s_ss.binary;
uint old_size = da_size(&pstate->s_da);
byte *old_base = pstate->s_da.base;
byte *new_base = iresize_string(old_base, old_size, new_size,
"scan_bos_resize");
byte *relocated_base = new_base + (new_size - old_size);
uint i;
ref *aptr = pbs->bin_array.value.refs;
if (new_base == 0)
return 0;
if (relocated_base != old_base)
for (i = index; i != 0; i--, aptr++)
if (r_has_type(aptr, t_string) && r_size(aptr) != 0)
aptr->value.bytes =
aptr->value.bytes - old_base + relocated_base;
return new_base;
}
static int
scan_bos_string_continue(i_ctx_t *i_ctx_p, ref * pref,
scanner_state * pstate)
{
scan_binary_state *const pbs = &pstate->s_ss.binary;
ref rstr;
ref *op;
int code = scan_bin_string_continue(i_ctx_p, &rstr, pstate);
uint space = ialloc_space(idmemory);
uint i;
if (code != 0)
return code;
for (op = pbs->bin_array.value.refs, i = r_size(&pbs->bin_array);
i != 0; i--, op++
)
switch (r_type(op)) {
case t_string:
if (r_has_attr(op, a_write))
break;
{
uint attrs = r_type_attrs(op) & (a_read | a_executable);
code = name_ref(imemory, op->value.bytes, r_size(op), op, 1);
if (code < 0)
return code;
r_set_attrs(op, attrs);
}
case t_name:
if (r_has_attr(op, a_read)) {
ref *defp = dict_find_name(op);
if (defp == 0)
return_error(gs_error_undefined);
store_check_space(space, defp);
ref_assign(op, defp);
}
break;
}
ref_assign(pref, &pbs->bin_array);
r_set_size(pref, pbs->top_size);
return scan_BOS;
}
* Encode a single object for a binary object sequence, for printobject and
* write object. Note that this does not modify the always-unused byte (1),
* but it always write bytes 0 and 2-7.
*/
int
encode_binary_token(i_ctx_t *i_ctx_p, const ref *obj, ps_int *ref_offset,
ps_int *char_offset, byte *str)
{
bin_seq_type_t type;
uint size = 0;
int format = (int)ref_binary_object_format.value.intval;
ps_int value = 0;
ref nstr;
switch (r_type(obj)) {
case t_null:
type = BS_TYPE_NULL;
break;
case t_mark:
type = BS_TYPE_MARK;
break;
case t_integer:
type = BS_TYPE_INTEGER;
value = obj->value.intval;
break;
case t_real:
type = BS_TYPE_REAL;
if (sizeof(obj->value.realval) != sizeof(int)) {
return_error(gs_error_rangecheck);
}
value = *(const ps_int *)&obj->value.realval;
#if !(ARCH_FLOATS_ARE_IEEE && BYTE_SWAP_IEEE_NATIVE_REALS)
if (format >= 3) {
format = 4 - ARCH_IS_BIG_ENDIAN;
}
#endif
break;
case t_boolean:
type = BS_TYPE_BOOLEAN;
value = obj->value.boolval;
break;
case t_array:
type = BS_TYPE_ARRAY;
size = r_size(obj);
value = *ref_offset;
*ref_offset += size * SIZEOF_BIN_SEQ_OBJ;
break;
case t_string:
type = BS_TYPE_STRING;
nos:
size = r_size(obj);
value = *char_offset;
*char_offset += size;
break;
case t_name:
type = BS_TYPE_NAME;
name_string_ref(imemory, obj, &nstr);
r_copy_attrs(&nstr, a_executable, obj);
obj = &nstr;
goto nos;
default:
return_error(gs_error_rangecheck);
}
{
byte s0 = (byte) size, s1 = (byte) (size >> 8);
byte v0 = (byte) value, v1 = (byte) (value >> 8),
v2 = (byte) (value >> 16), v3 = (byte) (value >> 24);
if (format & 1) {
str[2] = s1, str[3] = s0;
str[4] = v3, str[5] = v2, str[6] = v1, str[7] = v0;
} else {
str[2] = s0, str[3] = s1;
str[4] = v0, str[5] = v1, str[6] = v2, str[7] = v3;
}
}
if (r_has_attr(obj, a_executable))
type += BS_EXECUTABLE;
str[0] = (byte) type;
return 0;
}