summaryrefslogtreecommitdiff
path: root/gs/src/zcie.c
blob: 0bf7b7494ba3ff452c33085ea91f7cad00c9947f (plain)
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
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
/* Copyright (C) 1992, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  
  This file is part of Aladdin Ghostscript.
  
  Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  or distributor accepts any responsibility for the consequences of using it,
  or for whether it serves any particular purpose or works at all, unless he
  or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  License (the "License") for full details.
  
  Every copy of Aladdin Ghostscript must include a copy of the License,
  normally in a plain ASCII text file named PUBLIC.  The License grants you
  the right to copy, modify and redistribute Aladdin Ghostscript, but only
  under certain conditions described in the License.  Among other things, the
  License requires that the copyright notice and this notice be preserved on
  all copies.
*/

/* zcie.c */
/* CIE color operators */
#include "math_.h"
#include "memory_.h"
#include "ghost.h"
#include "errors.h"
#include "oper.h"
#include "gsstruct.h"
#include "gxcspace.h"		/* gscolor2.h requires gscspace.h */
#include "gscolor2.h"
#include "gscie.h"
#include "estack.h"
#include "ialloc.h"
#include "idict.h"
#include "idparam.h"
#include "igstate.h"
#include "icie.h"
#include "isave.h"
#include "ivmspace.h"
#include "store.h"		/* for make_null */

/* CIE color dictionaries are so complex that */
/* we handle the CIE case of setcolorspace separately here. */

/* Forward references */
private int cache_common(P4(gs_cie_common *, const ref_cie_procs *,
  void *, const gs_state *));

/* Allocator structure types for CIE structures */
private_st_cie_defg();
private_st_cie_def();
private_st_cie_abc();
private_st_cie_a();

/* Empty procedures */
static ref empty_procs[4];

/* Original CIE color space types. */
/* We use CIExxx rather than CIEBasedxxx in some places because */
/* gcc under VMS only retains 23 characters of procedure names, */
/* and DEC C truncates all identifiers at 31 characters. */
extern const gs_color_space_type
	gs_color_space_type_CIEDEFG,
	gs_color_space_type_CIEDEF,
	gs_color_space_type_CIEABC,
	gs_color_space_type_CIEA;
/* Redefined CIE color space types (that load the cache when installed) */
gs_color_space_type
	cs_type_zCIEDEFG,
	cs_type_zCIEDEF,
	cs_type_zCIEABC,
	cs_type_zCIEA;
private cs_proc_install_cspace(cs_install_zCIEDEFG);
private cs_proc_install_cspace(cs_install_zCIEDEF);
private cs_proc_install_cspace(cs_install_zCIEABC);
private cs_proc_install_cspace(cs_install_zCIEA);

/* Initialization */
private void
zcie_init(void)
{
	/* Make the null (default) transformation procedures. */
	make_empty_const_array(&empty_procs[0], a_readonly + a_executable);
	make_empty_const_array(&empty_procs[1], a_readonly + a_executable);
	make_empty_const_array(&empty_procs[2], a_readonly + a_executable);
	make_empty_const_array(&empty_procs[3], a_readonly + a_executable);

	/* Create the modified color space types. */
	cs_type_zCIEDEFG = gs_color_space_type_CIEDEFG;
	cs_type_zCIEDEFG.install_cspace = cs_install_zCIEDEFG;
	cs_type_zCIEDEF = gs_color_space_type_CIEDEF;
	cs_type_zCIEDEF.install_cspace = cs_install_zCIEDEF;
	cs_type_zCIEABC = gs_color_space_type_CIEABC;
	cs_type_zCIEABC.install_cspace = cs_install_zCIEABC;
	cs_type_zCIEA = gs_color_space_type_CIEA;
	cs_type_zCIEA.install_cspace = cs_install_zCIEA;

}

/* ------ Parameter extraction utilities ------ */

/* Get a range array parameter from a dictionary. */
/* We know that count <= 4. */
int
dict_ranges_param(const ref *pdref, const char _ds *kstr, int count,
  gs_range *prange)
{	int code = dict_float_array_param(pdref, kstr, count * 2,
					  (float *)prange, NULL);
	if ( code < 0 )
	  return code;
	else if ( code == 0 )
	  memcpy(prange, Range4_default.ranges, count * sizeof(gs_range));
	else if ( code != count * 2 )
	  return_error(e_rangecheck);
	return 0;
}

/* Get an array of procedures from a dictionary. */
/* We know count <= countof(empty_procs). */
int
dict_proc_array_param(const ref *pdict, const char _ds *kstr,
  uint count, ref *pparray)
{	ref *pvalue;
	if ( dict_find_string(pdict, kstr, &pvalue) > 0 )
	{	uint i;
		check_array_only(*pvalue);
		if ( r_size(pvalue) != count )
		  return_error(e_rangecheck);
		for ( i = 0; i < count; i++ )
		{	ref proc;
			array_get(pvalue, (long)i, &proc);
			check_proc_only(proc);
		}
		*pparray = *pvalue;
	}
	else
		make_const_array(pparray, a_readonly | avm_foreign,
				 count, &empty_procs[0]);
	return 0;
}
		
/* Get WhitePoint and BlackPoint values. */
int
cie_points_param(const ref *pdref, gs_cie_wb *pwb)
{	int code;
	if ( (code = dict_float_array_param(pdref, "WhitePoint", 3, (float *)&pwb->WhitePoint, NULL)) != 3 ||
	     (code = dict_float_array_param(pdref, "BlackPoint", 3, (float *)&pwb->BlackPoint, (const float *)&BlackPoint_default)) != 3
	   )
	  return (code < 0 ? code : gs_note_error(e_rangecheck));
	if ( pwb->WhitePoint.u <= 0 ||
	     pwb->WhitePoint.v != 1 ||
	     pwb->WhitePoint.w <= 0 ||
	     pwb->BlackPoint.u < 0 ||
	     pwb->BlackPoint.v < 0 ||
	     pwb->BlackPoint.w < 0
	   )
	  return_error(e_rangecheck);
	return 0;
}

/* Process a 3- or 4-dimensional lookup table from a dictionary. */
/* The caller has set pclt->n and pclt->m. */
/* ptref is known to be a readable array of size at least n+1. */
private int cie_3d_table_param(P4(const ref *ptable, uint count, uint nbytes,
  gs_const_string *strings));
int
cie_table_param(const ref *ptref, gx_color_lookup_table *pclt,
  gs_memory_t *mem)
{	int n = pclt->n, m = pclt->m;
	const ref *pta = ptref->value.const_refs;
	int i;
	uint nbytes;
	int code;
	gs_const_string *table;

	for ( i = 0; i < n; ++i )
	  { check_type_only(pta[i], t_integer);
	    if ( pta[i].value.intval <= 1 || pta[i].value.intval > max_ushort )
	      return_error(e_rangecheck);
	    pclt->dims[i] = (int)pta[i].value.intval;
	  }
	nbytes = m * pclt->dims[n-2] * pclt->dims[n-1];
	if ( n == 3 )
	  { /* gs_alloc_byte_array is ****** WRONG ****** */
	    table =
	      (gs_const_string *)gs_alloc_byte_array(mem, pclt->dims[0],
						     sizeof(gs_const_string),
						     "cie_table_param");
	    if ( table == 0 )
	      return_error(e_VMerror);
	    code = cie_3d_table_param(pta + 3, pclt->dims[0], nbytes,
				      table);
	  }
	else			/* n == 4 */
	  { int d0 = pclt->dims[0], d1 = pclt->dims[1];
	    uint ntables = d0 * d1;
	    const ref *psuba;
	    check_read_type(pta[4], t_array);
	    if ( r_size(pta + 4) != d0 )
	      return_error(e_rangecheck);
	    /* gs_alloc_byte_array is ****** WRONG ****** */
	    table =
	      (gs_const_string *)gs_alloc_byte_array(mem, ntables,
						     sizeof(gs_const_string),
						     "cie_table_param");
	    if ( table == 0 )
	      return_error(e_VMerror);
	    psuba = pta[4].value.const_refs;
	    for ( i = 0; i < d0; ++i )
	      { code = cie_3d_table_param(psuba + i, d1, nbytes,
					  table + d1 * i);
		if ( code < 0 )
		  break;
	      }
	  }
	if ( code < 0 )
	  { gs_free_object(mem, table, "cie_table_param");
	    return code;
	  }
	pclt->table = table;
	return 0;
}
private int
cie_3d_table_param(const ref *ptable, uint count, uint nbytes,
  gs_const_string *strings)
{	const ref *rstrings;
	uint i;

	check_read_type(*ptable, t_array);
	if ( r_size(ptable) != count )
	  return_error(e_rangecheck);
	rstrings = ptable->value.const_refs;
	for ( i = 0; i < count; ++i )
	  { const ref *prt2 = rstrings + i;
	    check_read_type(*prt2, t_string);
	    if ( r_size(prt2) != nbytes )
	      return_error(e_rangecheck);
	    strings[i].data = rstrings[i].value.const_bytes;
	    strings[i].size = nbytes;
	  }
	return 0;
}

/* ------ CIE setcolorspace ------ */

/* Common code for the CIEBased* cases of setcolorspace. */
private int
cie_lmnp_param(const ref *pdref, gs_cie_common *pcie, ref_cie_procs *pcprocs)
{	int code;
	if ( (code = dict_range3_param(pdref, "RangeLMN", &pcie->RangeLMN)) < 0 ||
	     (code = dict_proc3_param(pdref, "DecodeLMN", &pcprocs->DecodeLMN)) < 0 ||
	     (code = dict_matrix3_param(pdref, "MatrixLMN", &pcie->MatrixLMN)) != matrix3_ok ||
	     (code = cie_points_param(pdref, &pcie->points)) < 0
	   )
	  return (code < 0 ? code : gs_note_error(e_rangecheck));
	pcie->DecodeLMN = DecodeLMN_default;
	return 0;
}

/* Common code for the CIEBasedABC/DEF[G] cases of setcolorspace. */
private int
cie_abc_param(const ref *pdref, gs_cie_abc_common *pcie,
  ref_cie_procs *pcprocs)
{	int code;
	if ( (code = dict_range3_param(pdref, "RangeABC", &pcie->RangeABC)) < 0 ||
	     (code = dict_proc3_param(pdref, "DecodeABC", &pcprocs->Decode.ABC)) < 0 ||
	     (code = dict_matrix3_param(pdref, "MatrixABC", &pcie->MatrixABC)) != matrix3_ok ||
	     (code = cie_lmnp_param(pdref, &pcie->common, pcprocs)) < 0
	   )
	  return (code < 0 ? code : gs_note_error(e_rangecheck));
	pcie->DecodeABC = DecodeABC_default;
	return 0;
}

/* Finish setting a CIE space. */
private int
set_cie_finish(os_ptr op, gs_color_space *pcs, const ref_cie_procs *pcprocs)
{	ref_colorspace cspace_old;
	uint edepth = ref_stack_count(&e_stack);
	int code;

	/* The color space installation procedure may refer to */
	/* istate->colorspace.procs. */
	cspace_old = istate->colorspace;
	istate->colorspace.procs.cie = *pcprocs;
	code = gs_setcolorspace(igs, pcs);
	if ( code < 0 )
	{	istate->colorspace = cspace_old;
		ref_stack_pop_to(&e_stack, edepth);
		return code;
	}
	pop(1);
	return (ref_stack_count(&e_stack) == edepth ? 0 : o_push_estack);  /* installation will load the caches */
}

#ifdef NEW_CIE			/**************** ****************/

/* <dict> .setciedefgspace - */
private int
zsetciedefgspace(register os_ptr op)
{	gs_memory_t *mem = gs_state_memory(igs);
	gs_color_space cs;
	ref_color_procs procs;
	gs_cie_defg *pcie;
	int code;
	ref *ptref;

	check_type(*op, t_dictionary);
	check_dict_read(*op);
	procs = istate->colorspace.procs;
	rc_alloc_struct_0(pcie, gs_cie_defg, &st_cie_defg, mem,
			  return_error(e_VMerror),
			  "setcolorspace(CIEBasedDEFG)");
	if ( (code = dict_find_string(op, "Table", &ptref)) <= 0 )
	  return (code < 0 ? code : gs_note_error(e_rangecheck));
	check_read_type(*ptref, t_array);
	if ( r_size(ptref) != 5 )
	  return_error(e_rangecheck);
	pcie->Table.n = 4;
	pcie->Table.m = 3;
	if ( (code = dict_ranges_param(op, "RangeDEFG", 4, pcie->RangeDEFG.ranges)) < 0 ||
	     (code = dict_proc_array_param(op, "DecodeDEFG", 4, &procs.cie.PreDecode.DEFG)) < 0 ||
	     (code = dict_ranges_param(op, "RangeHIJK", 4, pcie->RangeHIJK.ranges)) < 0 ||
	     (code = cie_table_param(ptref, &pcie->Table, mem)) < 0 ||
	     (code = cie_abc_param(op, &pcie->abc, &procs.cie)) < 0
	   )
	{	rc_free_struct(pcie, mem, "setcolorspace(CIEBasedDEFG)");
		return code;
	}
	cs.params.defg = pcie;
	cs.type = &cs_type_zCIEDEFG;
	return set_cie_finish(op, &cs, &procs.cie);
}

/* <dict> .setciedefspace - */
private int
zsetciedefspace(register os_ptr op)
{	gs_memory_t *mem = gs_state_memory(igs);
	gs_color_space cs;
	ref_color_procs procs;
	gs_cie_def *pcie;
	int code;
	ref *ptref;

	check_type(*op, t_dictionary);
	check_dict_read(*op);
	procs = istate->colorspace.procs;
	rc_alloc_struct_0(pcie, gs_cie_def, &st_cie_def, mem,
			  return_error(e_VMerror),
			  "setcolorspace(CIEBasedDEF)");
	if ( (code = dict_find_string(op, "Table", &ptref)) <= 0 )
	  return (code < 0 ? code : gs_note_error(e_rangecheck));
	check_read_type(*ptref, t_array);
	if ( r_size(ptref) != 4 )
	  return_error(e_rangecheck);
	pcie->Table.n = 4;
	pcie->Table.m = 3;
	if ( (code = dict_range3_param(op, "RangeDEF", &pcie->RangeDEF)) < 0 ||
	     (code = dict_proc3_param(op, "DecodeDEF", &procs.cie.PreDecode.DEF)) < 0 ||
	     (code = dict_range3_param(op, "RangeHIJ", &pcie->RangeHIJ)) < 0 ||
	     (code = cie_table_param(ptref, &pcie->Table, mem)) < 0 ||
	     (code = cie_abc_param(op, &pcie->abc, &procs.cie)) < 0
	   )
	{	rc_free_struct(pcie, mem, "setcolorspace(CIEBasedDEF)");
		return code;
	}
	cs.params.def = pcie;
	cs.type = &cs_type_zCIEDEF;
	return set_cie_finish(op, &cs, &procs.cie);
}

#endif /*NEW_CIE*/		/**************** ****************/

/* <dict> .setcieabcspace - */
private int
zsetcieabcspace(register os_ptr op)
{	gs_memory_t *mem = gs_state_memory(igs);
	gs_color_space cs;
	ref_color_procs procs;
	gs_cie_abc *pcie;
	int code;

	check_type(*op, t_dictionary);
	check_dict_read(*op);
	procs = istate->colorspace.procs;
	rc_alloc_struct_0(pcie, gs_cie_abc, &st_cie_abc, mem,
			  return_error(e_VMerror),
			  "setcolorspace(CIEBasedABC)");
	code = cie_abc_param(op, pcie, &procs.cie);
	if ( code < 0 )
	{	rc_free_struct(pcie, "setcolorspace(CIEBasedABC)");
		return code;
	}
	cs.params.abc = pcie;
	cs.type = &cs_type_zCIEABC;
	return set_cie_finish(op, &cs, &procs.cie);
}

/* <dict> .setcieaspace - */
private int
zsetcieaspace(register os_ptr op)
{	gs_memory_t *mem = gs_state_memory(igs);
	gs_color_space cs;
	ref_color_procs procs;
	gs_cie_a *pcie;
	int code;

	check_type(*op, t_dictionary);
	check_dict_read(*op);
	procs = istate->colorspace.procs;
	if ( (code = dict_proc_param(op, "DecodeA", &procs.cie.Decode.A, true)) < 0 )
	  return code;
	rc_alloc_struct_0(pcie, gs_cie_a, &st_cie_a, mem,
			  return_error(e_VMerror),
			  "setcolorspace(CIEBasedA)");
	if ( (code = dict_float_array_param(op, "RangeA", 2, (float *)&pcie->RangeA, (const float *)&RangeA_default)) != 2 ||
	     (code = dict_float_array_param(op, "MatrixA", 3, (float *)&pcie->MatrixA, (const float *)&MatrixA_default)) != 3 ||
	     (code = cie_lmnp_param(op, &pcie->common, &procs.cie)) < 0
	   )
	{	rc_free_struct(pcie, "setcolorspace(CIEBasedA)");
		return (code < 0 ? code : gs_note_error(e_rangecheck));
	}
	pcie->DecodeA = DecodeA_default;
	cs.params.a = pcie;
	cs.type = &cs_type_zCIEA;
	return set_cie_finish(op, &cs, &procs.cie);
}

/* ------ Install a CIE-based color space. ------ */

/* The new CIEBasedDEF[G] spaces aren't really implemented yet.... */
private int
cs_install_zCIEDEFG(gs_color_space *pcs, gs_state *pgs)
{	return_error(e_undefined);
}
private int
cs_install_zCIEDEF(gs_color_space *pcs, gs_state *pgs)
{	return_error(e_undefined);
}

private int cie_abc_finish(P1(os_ptr));
private int
cs_install_zCIEABC(gs_color_space *pcs, gs_state *pgs)
{	es_ptr ep = esp;
	gs_cie_abc *pcie = pcs->params.abc;
	const int_gstate *pigs = gs_int_gstate(pgs);
	const ref_cie_procs *pcprocs = &pigs->colorspace.procs.cie;
	int code =
	  (*gs_color_space_type_CIEABC.install_cspace)(pcs, pgs);	/* former routine */
	if ( code < 0 ||
	     (code = cie_cache_joint(&pigs->colorrendering.procs, pgs)) < 0 ||	/* do this last */
	     (code = cie_cache_push_finish(cie_abc_finish, pgs, pcie)) < 0 ||
#ifdef NEW_CIE
	     (code = cie_prepare_cache3(&pcie->abc.RangeABC, pcprocs->Decode.ABC.value.const_refs, &pcie->abc.caches.DecodeABC[0], pcie, pgs, "Decode.ABC")) < 0 ||
	     (code = cache_common(&pcie->abc.common, pcprocs, pcie, pgs)) < 0
#else
	     (code = cie_prepare_cache3(&pcie->RangeABC, pcprocs->Decode.ABC.value.const_refs, &pcie->caches.DecodeABC[0], pcie, pgs, "Decode.ABC")) < 0 ||
	     (code = cache_common(&pcie->common, pcprocs, pcie, pgs)) < 0
#endif
	   )
	{	esp = ep;
		return code;
	}
	return o_push_estack;
}
private int
cie_abc_finish(os_ptr op)
{	gs_cie_abc_complete(r_ptr(op, gs_cie_abc));
	pop(1);
	return 0;
}

private int cie_a_finish(P1(os_ptr));
private int
cs_install_zCIEA(gs_color_space *pcs, gs_state *pgs)
{	es_ptr ep = esp;
	gs_cie_a *pcie = pcs->params.a;
	const int_gstate *pigs = gs_int_gstate(pgs);
	const ref_cie_procs *pcprocs = &pigs->colorspace.procs.cie;
	int code =
	  (*gs_color_space_type_CIEA.install_cspace)(pcs, pgs);	/* former routine */
	if ( code < 0 ||
	     (code = cie_cache_joint(&pigs->colorrendering.procs, pgs)) < 0 ||	/* do this last */
	     (code = cie_cache_push_finish(cie_a_finish, pgs, pcie)) < 0 ||
	     (code = cie_prepare_cache(&pcie->RangeA, &pcprocs->Decode.A, &pcie->caches.DecodeA.floats, pcie, pgs, "Decode.A")) < 0 ||
	     (code = cache_common(&pcie->common, pcprocs, pcie, pgs)) < 0
	   )
	{	esp = ep;
		return code;
	}
	return o_push_estack;
}
private int
cie_a_finish(os_ptr op)
{	gs_cie_a_complete(r_ptr(op, gs_cie_a));
	pop(1);
	return 0;
}

/* Common cache code */
private int
cache_common(gs_cie_common *pcie, const ref_cie_procs *pcprocs,
  void *container, const gs_state *pgs)
{	return cie_prepare_cache3(&pcie->RangeLMN,
				  pcprocs->DecodeLMN.value.const_refs,
				  &pcie->caches.DecodeLMN[0], container, pgs,
				  "Decode.LMN");
}

/* ------ Internal routines ------ */

/* Prepare to cache the values for one or more procedures. */
private int cie_cache_finish(P1(os_ptr));
int
cie_prepare_cache(const gs_range *domain, const ref *proc,
  cie_cache_floats *pcache, void *container, const gs_state *pgs,
  client_name_t cname)
{	int space = imemory_space((gs_ref_memory_t *)gs_state_memory(pgs));
	gs_for_loop_params flp;
	register es_ptr ep;

	check_estack(9);
	ep = esp;
	gs_cie_cache_init(&pcache->params, &flp, domain, cname);
	pcache->params.is_identity = r_size(proc) == 0;
	make_real(ep + 9, flp.init);
	make_real(ep + 8, flp.step);
	make_real(ep + 7, flp.limit);
	ep[6] = *proc;
	r_clear_attrs(ep + 6, a_executable);
	make_op_estack(ep + 5, zcvx);
	make_op_estack(ep + 4, zfor);
	make_op_estack(ep + 3, cie_cache_finish);
	/*
	 * The caches are embedded in the middle of other
	 * structures, so we represent the pointer to the cache
	 * as a pointer to the container plus an offset.
	 */
	make_int(ep + 2, (char *)pcache - (char *)container);
	make_struct(ep + 1, space, container);
	esp += 9;
	return o_push_estack;
}
private int
cie_prepare_caches(const gs_range *domains, const ref *procs,
  cie_cache_floats **ppc, int count, void *container, const gs_state *pgs,
  client_name_t cname)
{	int i, code = 0;
	for ( i = 0; i < count; ++i )
	  if ( (code = cie_prepare_cache(domains + i, procs + i, ppc[i],
					 container, pgs, cname)) < 0
	     )
	    return code;
	return code;
}
int
cie_prepare_caches_3(const gs_range3 *domains, const ref *procs,
  cie_cache_floats *pc0, cie_cache_floats *pc1, cie_cache_floats *pc2,
  void *container, const gs_state *pgs, client_name_t cname)
{	cie_cache_floats *pc3[3];
	pc3[0] = pc0, pc3[1] = pc1, pc3[2] = pc2;
	return cie_prepare_caches((const gs_range *)domains, procs, pc3, 3,
				  container, pgs, cname);
}

/* Store the result of caching one procedure. */
private int
cie_cache_finish(os_ptr op)
{	cie_cache_floats *pcache;
	int code;
	check_esp(2);
	/* See above for the container + offset representation of */
	/* the pointer to the cache. */
	pcache = (cie_cache_floats *)(r_ptr(esp - 1, char) + esp->value.intval);
	code = float_params(op, gx_cie_cache_size, &pcache->values[0]);
	if_debug3('c', "[c]cache 0x%lx base=%g, factor=%g:\n",
		  (ulong)pcache, pcache->params.base, pcache->params.factor);
	if ( code < 0 )
	  {	/* We might have underflowed the current stack block. */
		/* Handle the parameters one-by-one. */
		uint i;
		for ( i = 0; i < gx_cie_cache_size; i++ )
		  {	code = float_param(ref_stack_index(&o_stack,
						gx_cie_cache_size - 1 - i),
					  &pcache->values[i]);
			if ( code < 0 )
			  return code;
		  }
	  }
#ifdef DEBUG
	if ( gs_debug_c('c') )
	{	int i;
		for ( i = 0; i < gx_cie_cache_size; i += 4 )
		  dprintf5("[c]  cache[%3d]=%g, %g, %g, %g\n", i,
			   pcache->values[i], pcache->values[i + 1],
			   pcache->values[i + 2], pcache->values[i + 3]);
	}
#endif
	ref_stack_pop(&o_stack, gx_cie_cache_size);
	esp -= 2;			/* pop pointer to cache */
	return o_pop_estack;
}

/* Push a finishing procedure on the e-stack. */
/* ptr will be the top element of the o-stack. */
int
cie_cache_push_finish(int (*proc)(P1(os_ptr)), gs_state *pgs, void *ptr)
{	check_estack(2);
	push_op_estack(proc);
	++esp;
	make_struct(esp, imemory_space((gs_ref_memory_t *)gs_state_memory(pgs)), ptr);
	return o_push_estack;
}

/* ------ Initialization procedure ------ */

BEGIN_OP_DEFS(zcie_l2_op_defs) {
		op_def_begin_level2(),
	{"1.setcieaspace", zsetcieaspace},
	{"1.setcieabcspace", zsetcieabcspace},
#ifdef NEW_CIE
	{"1.setciedefspace", zsetciedefspace},
	{"1.setciedefgspace", zsetciedefgspace},
#endif
		/* Internal operators */
	{"1%cie_abc_finish", cie_abc_finish},
	{"1%cie_a_finish", cie_a_finish},
	{"0%cie_cache_finish", cie_cache_finish},
END_OP_DEFS(zcie_init) }