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
|
/* Copyright (C) 1989, 1995 Aladdin Enterprises. All rights reserved.
This file is part of GNU Ghostscript.
GNU Ghostscript is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to
anyone for the consequences of using it or for whether it serves any
particular purpose or works at all, unless he says so in writing. Refer
to the GNU Ghostscript General Public License for full details.
*/
/* iinit.c */
/* Initialize internally known objects for Ghostscript interpreter */
#include "string_.h"
#include "ghost.h"
#include "gscdefs.h"
#include "gsexit.h"
#include "gsstruct.h"
#define INCLUDE_ERROR_NAMES /* see errors.h */
#include "errors.h"
#include "ialloc.h"
#include "idict.h"
#include "dstack.h"
#include "ilevel.h"
#include "iname.h"
#include "interp.h"
#include "ipacked.h"
#include "iparray.h"
#include "ivmspace.h"
#include "oper.h"
#include "store.h"
/* Implementation parameters. */
/* The size of systemdict can be set in the makefile. */
/* We want the sizes to be prime numbers large enough to cover */
/* all the operators, plus everything in the init files, */
/* even if all the optional features are selected. */
#ifndef SYSTEMDICT_SIZE
# define SYSTEMDICT_SIZE 479
#endif
#ifndef SYSTEMDICT_LEVEL2_SIZE
# define SYSTEMDICT_LEVEL2_SIZE 631
#endif
/* The size of level2dict, if applicable, can be set in the makefile. */
#ifndef LEVEL2DICT_SIZE
# define LEVEL2DICT_SIZE 161
#endif
/* Ditto the size of filterdict. */
#ifndef FILTERDICT_SIZE
# define FILTERDICT_SIZE 37
#endif
/* Define an arbitrary size for the operator procedure tables. */
#ifndef OP_ARRAY_TABLE_SIZE
# define OP_ARRAY_TABLE_SIZE 100
#endif
#ifndef OP_ARRAY_TABLE_GLOBAL_SIZE
# define OP_ARRAY_TABLE_GLOBAL_SIZE OP_ARRAY_TABLE_SIZE
#endif
#ifndef OP_ARRAY_TABLE_LOCAL_SIZE
# define OP_ARRAY_TABLE_LOCAL_SIZE (OP_ARRAY_TABLE_SIZE / 2)
#endif
#define OP_ARRAY_TABLE_TOTAL_SIZE\
(OP_ARRAY_TABLE_GLOBAL_SIZE + OP_ARRAY_TABLE_LOCAL_SIZE)
/* Set up the .ps file name string array. */
/* We fill in the lengths at initialization time. */
#define ref_(t) struct { struct tas_s tas; t value; }
#define string_(s)\
{ { (t_string<<r_type_shift) + a_readonly + avm_foreign, 0 }, s },
#define psfile_(fns) string_(fns)
ref_(const char *) gs_init_file_array[] = {
#include "gconfig.h"
string_(0)
};
#undef psfile_
/* Set up the emulator name string array similarly. */
#define emulator_(ems) string_(ems)
ref_(const char *) gs_emulator_name_array[] = {
#include "gconfig.h"
string_(0)
};
#undef emulator_
/* The operator tables */
/* Because of a bug in Sun's SC1.0 compiler, */
/* we have to spell out the typedef for op_def_ptr here: */
const op_def **op_def_table;
uint op_def_count;
op_array_table op_array_table_global, op_array_table_local; /* definitions of `operator' procedures */
uint op_array_count;
/* GC roots for the same */
private gs_gc_root_t
op_def_root, op_array_root_global, op_array_root_local,
op_array_nx_root_global, op_array_nx_root_local;
/* Enter a name and value into a dictionary. */
void
initial_enter_name_in(const char *nstr, const ref *pref, ref *pdict)
{ int code = dict_put_string(pdict, nstr, pref);
if ( code < 0 )
{ lprintf4("initial_enter failed (%d), entering /%s in -dict:%u/%u-\n",
code, nstr, dict_length(pdict), dict_maxlength(pdict));
gs_exit(1);
}
}
void
initial_enter_name(const char *nstr, const ref *pref)
{ initial_enter_name_in(nstr, pref, systemdict);
}
/* Create a name. Fatal error if it fails. */
private void
name_enter(const char *str, ref *pref)
{ if ( name_enter_string(str, pref) != 0 )
{ lprintf1("name_enter failed - %s\n", str);
gs_exit(1);
}
}
/* Initialize the operators. */
extern op_def_ptr
/* Initialization operators */
gsmain_op_defs(P0()),
#define oper_(defs) defs(P0()),
#include "gconfig.h"
#undef oper_
/* Interpreter operators */
interp_op_defs(P0());
private op_def_ptr (*(op_defs_all[]))(P0()) = {
/* Initialization operators */
gsmain_op_defs,
#define oper_(defs) defs,
#include "gconfig.h"
#undef oper_
/* Interpreter operators */
interp_op_defs,
/* end marker */
0
};
/* Define the names and sizes of the initial dictionaries. */
/* The names are used to create references in systemdict. */
const struct { const char *name; uint size; bool local; }
initial_dictionaries[] = {
#ifdef INITIAL_DICTIONARIES
INITIAL_DICTIONARIES
#else
/* systemdict is created and named automagically */
{ "level2dict", LEVEL2DICT_SIZE, false },
{ "globaldict", 0, false },
{ "userdict", 0, true },
{ "filterdict", FILTERDICT_SIZE, false }
#endif
};
/* systemdict and globaldict are magically inserted at the bottom */
const char *initial_dstack[] = {
#ifdef INITIAL_DSTACK
INITIAL_DSTACK
#else
"userdict"
#endif
};
#define MIN_DSTACK_SIZE (countof(initial_dstack) + 1) /* +1 for systemdict */
/* Detect whether we have any Level 2 operators. */
/* We export this for gs_init1 in gsmain.c. */
bool
gs_have_level2(void)
{ int i;
for ( i = 0; i < countof(initial_dictionaries); i++ )
if ( !strcmp(initial_dictionaries[i].name, "level2dict") )
return true;
return false;
}
/* Create an initial dictionary if necessary. */
private ref *
make_initial_dict(const char *iname, uint namelen, ref idicts[])
{ int i;
static const char sysname[] = "systemdict";
/*
* We wait to create systemdict until after everything else,
* so we can size it according to whether Level 2 is present.
*/
if ( (namelen == countof(sysname) - 1) &&
!memcmp(iname, sysname, namelen)
)
return 0;
for ( i = 0; i < countof(initial_dictionaries); i++ )
{ const char *dname = initial_dictionaries[i].name;
const int dsize = initial_dictionaries[i].size;
if ( (namelen == strlen(dname)) &&
!memcmp(iname, dname, namelen)
)
{ ref *dref = &idicts[i];
if ( r_has_type(dref, t_null) )
{ int code;
/* Perhaps dict_create should take */
/* the allocator as an argument.... */
uint space = ialloc_space(idmemory);
ialloc_set_space(idmemory,
(initial_dictionaries[i].local ?
avm_local : avm_global));
code = dict_create(dsize, dref);
ialloc_set_space(idmemory, space);
if ( code < 0 ) gs_abort();
}
return dref;
}
}
/*
* Name mentioned in some op_def,
* but not in initial_dictionaries.
*/
gs_abort();
}
/* Initialize objects other than operators. In particular, */
/* initialize the dictionaries that hold operator definitions. */
void
obj_init(void)
{ uint space = ialloc_space(idmemory);
bool level2 = gs_have_level2();
/* Initialize the language level. */
make_int(&ref_language_level, 1);
/* Initialize the interpreter. */
gs_interp_init();
{
#define icount countof(initial_dictionaries)
ref idicts[icount];
int i;
op_def_ptr (**tptr)(P0());
min_dstack_size = MIN_DSTACK_SIZE;
refset_null(idicts, icount);
ialloc_set_space(idmemory, avm_global);
if ( level2 )
{ dsp += 2;
dict_create(SYSTEMDICT_LEVEL2_SIZE, dsp);
/* For the moment, let globaldict be an alias */
/* for systemdict. */
dsp[-1] = *dsp;
min_dstack_size++;
}
else
{ ++dsp;
dict_create(SYSTEMDICT_SIZE, dsp);
}
ref_systemdict = *dsp;
ialloc_set_space(idmemory, space);
/* Create dictionaries which are to be homes for operators. */
for ( tptr = op_defs_all; *tptr != 0; tptr++ )
{ const op_def *def;
for ( def = (*tptr)(); def->oname != 0; def++ )
if ( op_def_is_begin_dict(def) )
make_initial_dict(def->oname, strlen(def->oname), idicts);
}
/* Set up the initial dstack. */
for ( i = 0; i < countof(initial_dstack); i++ )
{ const char *dname = initial_dstack[i];
++dsp;
ref_assign(dsp,
make_initial_dict(dname, strlen(dname), idicts));
}
/* Enter names of referenced initial dictionaries into systemdict. */
initial_enter_name("systemdict", &ref_systemdict);
for (i = 0; i < icount; i++)
{ ref *idict = &idicts[i];
if ( !r_has_type(idict, t_null) )
{ /*
* Note that we enter the dictionary in systemdict
* even if it is in local VM. There is a special
* provision in the garbage collector for this:
* see ivmspace.h for more information.
* In order to do this, we must temporarily
* identify systemdict as local, so that the
* store check in dict_put won't fail.
*/
r_set_space(systemdict, avm_local);
initial_enter_name(initial_dictionaries[i].name,
idict);
r_set_space(systemdict, avm_global);
}
}
#undef icount
}
gs_interp_reset();
{ ref vtemp;
make_null(&vtemp);
initial_enter_name("null", &vtemp);
}
/* Create the error name table */
{ int n = countof(gs_error_names) - 1;
int i;
ref era;
ialloc_ref_array(&era, a_readonly, n, "ErrorNames");
for ( i = 0; i < n; i++ )
name_enter((char *)gs_error_names[i], era.value.refs + i);
dict_put_string(systemdict, "ErrorNames", &era);
}
}
/* Run the initialization procedures of the individual operator files. */
void
zop_init(void)
{ op_def_ptr (**tptr)(P0());
/* Because of a bug in Sun's SC1.0 compiler, */
/* we have to spell out the typedef for op_def_ptr here: */
const op_def *def;
for ( tptr = op_defs_all; *tptr != 0; tptr++ )
{ for ( def = (*tptr)(); def->oname != 0; def++ )
DO_NOTHING;
if ( def->proc != 0 )
((void (*)(P0()))(def->proc))();
}
/* Initialize the predefined names other than operators. */
/* Do this here in case op_init changed any of them. */
{ ref vtemp;
make_const_string(&vtemp, a_readonly | avm_foreign,
strlen(gs_copyright),
(const byte *)gs_copyright);
initial_enter_name("copyright", &vtemp);
make_const_string(&vtemp, a_readonly | avm_foreign,
strlen(gs_product),
(const byte *)gs_product);
initial_enter_name("product", &vtemp);
make_int(&vtemp, gs_revision);
initial_enter_name("revision", &vtemp);
make_int(&vtemp, gs_revisiondate);
initial_enter_name("revisiondate", &vtemp);
}
}
/* Create an op_array table. */
private int
alloc_op_array_table(uint size, uint space, op_array_table *opt)
{ uint save_space = ialloc_space(idmemory);
int code;
ialloc_set_space(idmemory, space);
code = ialloc_ref_array(&opt->table, a_readonly, size,
"op_array table");
ialloc_set_space(idmemory, save_space);
if ( code < 0 )
return code;
refset_null(opt->table.value.refs, size);
opt->nx_table =
(ushort *)ialloc_byte_array(size, sizeof(ushort),
"op_array nx_table");
if ( opt->nx_table == 0 )
return_error(e_VMerror);
opt->count = 0;
opt->root_p = &opt->table;
opt->attrs = space | a_executable;
return 0;
}
/* Initialize the operator table. */
void
op_init(void)
{ int count = 1;
op_def_ptr (**tptr)(P0());
/* Because of a bug in Sun's SC1.0 compiler, */
/* we have to spell out the typedef for op_def_ptr here: */
const op_def *def;
const char _ds *nstr;
/* Do a first pass just to count the operators. */
for ( tptr = op_defs_all; *tptr != 0; tptr ++ )
{ for ( def = (*tptr)(); def->oname != 0; def++ )
if ( !op_def_is_begin_dict(def) )
count++;
}
/* Do a second pass to construct the operator table, */
/* and enter the operators into the appropriate dictionary. */
/* Because of a bug in Sun's SC1.0 compiler, */
/* we have to spell out the typedef for op_def_ptr here: */
op_def_table =
(const op_def **)ialloc_byte_array(count, sizeof(op_def_ptr),
"op_init(op_def_table)");
op_def_count = count;
for (count = 0; count <= gs_interp_num_special_ops; count++)
op_def_table[count] = 0;
count = gs_interp_num_special_ops + 1; /* leave space for magic entries */
for ( tptr = op_defs_all; *tptr != 0; tptr ++ )
{ ref *pdict = systemdict;
for ( def = (*tptr)(); (nstr = def->oname) != 0; def++ )
if ( op_def_is_begin_dict(def) )
{ int code;
ref nref;
code = name_ref((byte *)nstr, strlen(nstr), &nref, -1);
if ( code != 0 ) gs_abort();
if ( !dict_find(systemdict, &nref, &pdict)) gs_abort();
if ( !r_has_type(pdict, t_dictionary) ) gs_abort();
}
else
{ ref oper;
uint opidx;
gs_interp_make_oper(&oper, def->proc, count);
opidx = r_size(&oper);
/* The first character of the name is a digit */
/* giving the minimum acceptable number of operands. */
/* Check to make sure it's within bounds. */
if ( *nstr - '0' > gs_interp_max_op_num_args )
gs_abort();
nstr++;
/* Don't enter internal operators into */
/* the dictionary. */
if ( *nstr != '%' )
initial_enter_name_in(nstr, &oper, pdict);
op_def_table[opidx] = def;
if ( opidx == count )
count++;
}
}
/* All of the built-ins had better be defined somewhere, */
/* or things like op_find_index will choke. */
for ( count = 1; count <= gs_interp_num_special_ops; count++ )
if ( op_def_table[count] == 0 )
gs_abort();
gs_register_struct_root(imemory, &op_def_root,
(void **)&op_def_table, "op_def_table");
/* Allocate the tables for `operator' procedures. */
/* Make one of them local so we can have local operators. */
if ( alloc_op_array_table(OP_ARRAY_TABLE_GLOBAL_SIZE,
avm_global, &op_array_table_global) < 0 )
gs_abort();
op_array_table_global.base_index = op_def_count;
gs_register_ref_root(imemory, &op_array_root_global,
(void **)&op_array_table_global.root_p,
"op_array_table(global)");
gs_register_struct_root(imemory, &op_array_nx_root_global,
(void **)&op_array_table_global.nx_table,
"op_array nx_table(global)");
if ( alloc_op_array_table(OP_ARRAY_TABLE_LOCAL_SIZE,
avm_local, &op_array_table_local) < 0 )
gs_abort();
op_array_table_local.base_index =
op_array_table_global.base_index +
r_size(&op_array_table_global.table);
gs_register_ref_root(imemory, &op_array_root_local,
(void **)&op_array_table_local.root_p,
"op_array_table(local)");
gs_register_struct_root(imemory, &op_array_nx_root_local,
(void **)&op_array_table_local.nx_table,
"op_array nx_table(local)");
}
|