blob: f7219d265ae405089790f8caead14686d3007c18 [file] [log] [blame]
Thomas G. Lane4a6b7301992-03-17 00:00:00 +00001/*
2 * jmemmgr.c
3 *
DRC5033f3e2014-05-18 18:33:44 +00004 * This file was part of the Independent JPEG Group's software:
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00005 * Copyright (C) 1991-1997, Thomas G. Lane.
DRC5033f3e2014-05-18 18:33:44 +00006 * It was modified by The libjpeg-turbo Project to include only code and
7 * information relevant to libjpeg-turbo.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +00008 * For conditions of distribution and use, see the accompanying README file.
9 *
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000010 * This file contains the JPEG system-independent memory management
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000011 * routines. This code is usable across a wide variety of machines; most
12 * of the system dependencies have been isolated in a separate file.
13 * The major functions provided here are:
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000014 * * pool-based allocation and freeing of memory;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000015 * * policy decisions about how to divide available memory among the
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000016 * virtual arrays;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000017 * * control logic for swapping virtual arrays between main memory and
18 * backing storage.
19 * The separate system-dependent file provides the actual backing-storage
20 * access code, and it contains the policy decision about how much total
21 * main memory to use.
22 * This file is system-dependent in the sense that some of its functions
23 * are unnecessary in some systems. For example, if there is enough virtual
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000024 * memory so that backing storage will never be used, much of the virtual
25 * array control logic could be removed. (Of course, if you have that much
26 * memory then you shouldn't care about a little bit of unused code...)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000027 */
28
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000029#define JPEG_INTERNALS
DRCe5eaf372014-05-09 18:00:32 +000030#define AM_MEMORY_MANAGER /* we define jvirt_Xarray_control structs */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000031#include "jinclude.h"
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000032#include "jpeglib.h"
DRCe5eaf372014-05-09 18:00:32 +000033#include "jmemsys.h" /* import the system-dependent declarations */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000034
Thomas G. Lane88aeed41992-12-10 00:00:00 +000035#ifndef NO_GETENV
DRCe5eaf372014-05-09 18:00:32 +000036#ifndef HAVE_STDLIB_H /* <stdlib.h> should declare getenv() */
DRCbc56b752014-05-16 10:43:44 +000037extern char * getenv (const char * name);
Thomas G. Lane88aeed41992-12-10 00:00:00 +000038#endif
39#endif
40
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000041
DRCa8eabfe2011-03-29 04:58:40 +000042LOCAL(size_t)
43round_up_pow2 (size_t a, size_t b)
44/* a rounded up to the next multiple of b, i.e. ceil(a/b)*b */
45/* Assumes a >= 0, b > 0, and b is a power of 2 */
46{
47 return ((a + b - 1) & (~(b - 1)));
48}
49
50
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000051/*
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000052 * Some important notes:
53 * The allocation routines provided here must never return NULL.
54 * They should exit to error_exit if unsuccessful.
55 *
56 * It's not a good idea to try to merge the sarray and barray routines,
57 * even though they are textually almost the same, because samples are
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000058 * usually stored as bytes while coefficients are shorts or ints. Thus,
59 * in machines where byte pointers have a different representation from
60 * word pointers, the resulting machine code could not be the same.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000061 */
62
63
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000064/*
65 * Many machines require storage alignment: longs must start on 4-byte
66 * boundaries, doubles on 8-byte boundaries, etc. On such machines, malloc()
67 * always returns pointers that are multiples of the worst-case alignment
68 * requirement, and we had better do so too.
69 * There isn't any really portable way to determine the worst-case alignment
70 * requirement. This module assumes that the alignment requirement is
Pierre Ossman5557fd22009-03-09 10:34:53 +000071 * multiples of ALIGN_SIZE.
72 * By default, we define ALIGN_SIZE as sizeof(double). This is necessary on some
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000073 * workstations (where doubles really do need 8-byte alignment) and will work
74 * fine on nearly everything. If your machine has lesser alignment needs,
Pierre Ossman5557fd22009-03-09 10:34:53 +000075 * you can save a few bytes by making ALIGN_SIZE smaller.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000076 * The only place I know of where this will NOT work is certain Macintosh
77 * 680x0 compilers that define double as a 10-byte IEEE extended float.
78 * Doing 10-byte alignment is counterproductive because longwords won't be
Pierre Ossman5557fd22009-03-09 10:34:53 +000079 * aligned well. Put "#define ALIGN_SIZE 4" in jconfig.h if you have
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000080 * such a compiler.
81 */
82
DRCe5eaf372014-05-09 18:00:32 +000083#ifndef ALIGN_SIZE /* so can override from jconfig.h */
Pierre Ossman73118302009-03-09 13:30:47 +000084#ifndef WITH_SIMD
DRC5de454b2014-05-18 19:04:03 +000085#define ALIGN_SIZE sizeof(double)
Pierre Ossman73118302009-03-09 13:30:47 +000086#else
87#define ALIGN_SIZE 16 /* Most SIMD implementations require this */
88#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000089#endif
90
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000091/*
92 * We allocate objects from "pools", where each pool is gotten with a single
93 * request to jpeg_get_small() or jpeg_get_large(). There is no per-object
94 * overhead within a pool, except for alignment padding. Each pool has a
95 * header with a link to the next pool of the same class.
DRC5033f3e2014-05-18 18:33:44 +000096 * Small and large pool headers are identical.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000097 */
98
Pierre Ossman5557fd22009-03-09 10:34:53 +000099typedef struct small_pool_struct * small_pool_ptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000100
Pierre Ossman5557fd22009-03-09 10:34:53 +0000101typedef struct small_pool_struct {
DRCe5eaf372014-05-09 18:00:32 +0000102 small_pool_ptr next; /* next in list of pools */
103 size_t bytes_used; /* how many bytes already used within pool */
104 size_t bytes_left; /* bytes still available in this pool */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000105} small_pool_hdr;
106
DRC5033f3e2014-05-18 18:33:44 +0000107typedef struct large_pool_struct * large_pool_ptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000108
Pierre Ossman5557fd22009-03-09 10:34:53 +0000109typedef struct large_pool_struct {
DRCe5eaf372014-05-09 18:00:32 +0000110 large_pool_ptr next; /* next in list of pools */
111 size_t bytes_used; /* how many bytes already used within pool */
112 size_t bytes_left; /* bytes still available in this pool */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000113} large_pool_hdr;
114
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000115/*
116 * Here is the full definition of a memory manager object.
117 */
118
119typedef struct {
DRCe5eaf372014-05-09 18:00:32 +0000120 struct jpeg_memory_mgr pub; /* public fields */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000121
122 /* Each pool identifier (lifetime class) names a linked list of pools. */
123 small_pool_ptr small_list[JPOOL_NUMPOOLS];
124 large_pool_ptr large_list[JPOOL_NUMPOOLS];
125
126 /* Since we only have one lifetime class of virtual arrays, only one
127 * linked list is necessary (for each datatype). Note that the virtual
128 * array control blocks being linked together are actually stored somewhere
129 * in the small-pool list.
130 */
131 jvirt_sarray_ptr virt_sarray_list;
132 jvirt_barray_ptr virt_barray_list;
133
134 /* This counts total space obtained from jpeg_get_small/large */
DRC04899092010-02-26 23:01:19 +0000135 size_t total_space_allocated;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000136
137 /* alloc_sarray and alloc_barray set this value for use by virtual
138 * array routines.
139 */
DRCe5eaf372014-05-09 18:00:32 +0000140 JDIMENSION last_rowsperchunk; /* from most recent alloc_sarray/barray */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000141} my_memory_mgr;
142
143typedef my_memory_mgr * my_mem_ptr;
144
145
146/*
147 * The control blocks for virtual arrays.
148 * Note that these blocks are allocated in the "small" pool area.
149 * System-dependent info for the associated backing store (if any) is hidden
150 * inside the backing_store_info struct.
151 */
152
153struct jvirt_sarray_control {
DRCe5eaf372014-05-09 18:00:32 +0000154 JSAMPARRAY mem_buffer; /* => the in-memory buffer */
155 JDIMENSION rows_in_array; /* total virtual array height */
156 JDIMENSION samplesperrow; /* width of array (and of memory buffer) */
157 JDIMENSION maxaccess; /* max rows accessed by access_virt_sarray */
158 JDIMENSION rows_in_mem; /* height of memory buffer */
159 JDIMENSION rowsperchunk; /* allocation chunk size in mem_buffer */
160 JDIMENSION cur_start_row; /* first logical row # in the buffer */
161 JDIMENSION first_undef_row; /* row # of first uninitialized row */
162 boolean pre_zero; /* pre-zero mode requested? */
163 boolean dirty; /* do current buffer contents need written? */
164 boolean b_s_open; /* is backing-store data valid? */
165 jvirt_sarray_ptr next; /* link to next virtual sarray control block */
166 backing_store_info b_s_info; /* System-dependent control info */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000167};
168
169struct jvirt_barray_control {
DRCe5eaf372014-05-09 18:00:32 +0000170 JBLOCKARRAY mem_buffer; /* => the in-memory buffer */
171 JDIMENSION rows_in_array; /* total virtual array height */
172 JDIMENSION blocksperrow; /* width of array (and of memory buffer) */
173 JDIMENSION maxaccess; /* max rows accessed by access_virt_barray */
174 JDIMENSION rows_in_mem; /* height of memory buffer */
175 JDIMENSION rowsperchunk; /* allocation chunk size in mem_buffer */
176 JDIMENSION cur_start_row; /* first logical row # in the buffer */
177 JDIMENSION first_undef_row; /* row # of first uninitialized row */
178 boolean pre_zero; /* pre-zero mode requested? */
179 boolean dirty; /* do current buffer contents need written? */
180 boolean b_s_open; /* is backing-store data valid? */
181 jvirt_barray_ptr next; /* link to next virtual barray control block */
182 backing_store_info b_s_info; /* System-dependent control info */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000183};
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000184
185
DRCe5eaf372014-05-09 18:00:32 +0000186#ifdef MEM_STATS /* optional extra stuff for statistics */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000187
Thomas G. Lane489583f1996-02-07 00:00:00 +0000188LOCAL(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000189print_mem_stats (j_common_ptr cinfo, int pool_id)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000190{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000191 my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
192 small_pool_ptr shdr_ptr;
193 large_pool_ptr lhdr_ptr;
194
195 /* Since this is only a debugging stub, we can cheat a little by using
196 * fprintf directly rather than going through the trace message code.
197 * This is helpful because message parm array can't handle longs.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000198 */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000199 fprintf(stderr, "Freeing pool %d, total space = %ld\n",
DRCe5eaf372014-05-09 18:00:32 +0000200 pool_id, mem->total_space_allocated);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000201
202 for (lhdr_ptr = mem->large_list[pool_id]; lhdr_ptr != NULL;
Pierre Ossman5557fd22009-03-09 10:34:53 +0000203 lhdr_ptr = lhdr_ptr->next) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000204 fprintf(stderr, " Large chunk used %ld\n",
DRCe5eaf372014-05-09 18:00:32 +0000205 (long) lhdr_ptr->bytes_used);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000206 }
207
208 for (shdr_ptr = mem->small_list[pool_id]; shdr_ptr != NULL;
Pierre Ossman5557fd22009-03-09 10:34:53 +0000209 shdr_ptr = shdr_ptr->next) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000210 fprintf(stderr, " Small chunk used %ld free %ld\n",
DRCe5eaf372014-05-09 18:00:32 +0000211 (long) shdr_ptr->bytes_used,
212 (long) shdr_ptr->bytes_left);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000213 }
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000214}
215
216#endif /* MEM_STATS */
217
218
Thomas G. Lane489583f1996-02-07 00:00:00 +0000219LOCAL(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000220out_of_memory (j_common_ptr cinfo, int which)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000221/* Report an out-of-memory error and stop execution */
222/* If we compiled MEM_STATS support, report alloc requests before dying */
223{
224#ifdef MEM_STATS
DRCe5eaf372014-05-09 18:00:32 +0000225 cinfo->err->trace_level = 2; /* force self_destruct to report stats */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000226#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000227 ERREXIT1(cinfo, JERR_OUT_OF_MEMORY, which);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000228}
229
230
231/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000232 * Allocation of "small" objects.
233 *
234 * For these, we use pooled storage. When a new pool must be created,
235 * we try to get enough space for the current request plus a "slop" factor,
236 * where the slop will be the amount of leftover space in the new pool.
237 * The speed vs. space tradeoff is largely determined by the slop values.
238 * A different slop value is provided for each pool class (lifetime),
239 * and we also distinguish the first pool of a class from later ones.
240 * NOTE: the values given work fairly well on both 16- and 32-bit-int
241 * machines, but may be too small if longs are 64 bits or more.
Pierre Ossman5557fd22009-03-09 10:34:53 +0000242 *
243 * Since we do not know what alignment malloc() gives us, we have to
244 * allocate ALIGN_SIZE-1 extra space per pool to have room for alignment
245 * adjustment.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000246 */
247
DRCe5eaf372014-05-09 18:00:32 +0000248static const size_t first_pool_slop[JPOOL_NUMPOOLS] =
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000249{
DRCe5eaf372014-05-09 18:00:32 +0000250 1600, /* first PERMANENT pool */
251 16000 /* first IMAGE pool */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000252};
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000253
DRCe5eaf372014-05-09 18:00:32 +0000254static const size_t extra_pool_slop[JPOOL_NUMPOOLS] =
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000255{
DRCe5eaf372014-05-09 18:00:32 +0000256 0, /* additional PERMANENT pools */
257 5000 /* additional IMAGE pools */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000258};
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000259
DRCe5eaf372014-05-09 18:00:32 +0000260#define MIN_SLOP 50 /* greater than 0 to avoid futile looping */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000261
262
Thomas G. Lane489583f1996-02-07 00:00:00 +0000263METHODDEF(void *)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000264alloc_small (j_common_ptr cinfo, int pool_id, size_t sizeofobject)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000265/* Allocate a "small" object */
266{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000267 my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
268 small_pool_ptr hdr_ptr, prev_hdr_ptr;
269 char * data_ptr;
Pierre Ossman5557fd22009-03-09 10:34:53 +0000270 size_t min_request, slop;
271
272 /*
273 * Round up the requested size to a multiple of ALIGN_SIZE in order
274 * to assure alignment for the next object allocated in the same pool
275 * and so that algorithms can straddle outside the proper area up
276 * to the next alignment.
277 */
DRCa8eabfe2011-03-29 04:58:40 +0000278 sizeofobject = round_up_pow2(sizeofobject, ALIGN_SIZE);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000279
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000280 /* Check for unsatisfiable request (do now to ensure no overflow below) */
DRC5de454b2014-05-18 19:04:03 +0000281 if ((sizeof(small_pool_hdr) + sizeofobject + ALIGN_SIZE - 1) > MAX_ALLOC_CHUNK)
DRCe5eaf372014-05-09 18:00:32 +0000282 out_of_memory(cinfo, 1); /* request exceeds malloc's ability */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000283
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000284 /* See if space is available in any existing pool */
285 if (pool_id < 0 || pool_id >= JPOOL_NUMPOOLS)
DRCe5eaf372014-05-09 18:00:32 +0000286 ERREXIT1(cinfo, JERR_BAD_POOL_ID, pool_id); /* safety check */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000287 prev_hdr_ptr = NULL;
288 hdr_ptr = mem->small_list[pool_id];
289 while (hdr_ptr != NULL) {
Pierre Ossman5557fd22009-03-09 10:34:53 +0000290 if (hdr_ptr->bytes_left >= sizeofobject)
DRCe5eaf372014-05-09 18:00:32 +0000291 break; /* found pool with enough space */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000292 prev_hdr_ptr = hdr_ptr;
Pierre Ossman5557fd22009-03-09 10:34:53 +0000293 hdr_ptr = hdr_ptr->next;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000294 }
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000295
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000296 /* Time to make a new pool? */
297 if (hdr_ptr == NULL) {
298 /* min_request is what we need now, slop is what will be leftover */
DRC5de454b2014-05-18 19:04:03 +0000299 min_request = sizeof(small_pool_hdr) + sizeofobject + ALIGN_SIZE - 1;
DRCe5eaf372014-05-09 18:00:32 +0000300 if (prev_hdr_ptr == NULL) /* first pool in class? */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000301 slop = first_pool_slop[pool_id];
302 else
303 slop = extra_pool_slop[pool_id];
304 /* Don't ask for more than MAX_ALLOC_CHUNK */
305 if (slop > (size_t) (MAX_ALLOC_CHUNK-min_request))
306 slop = (size_t) (MAX_ALLOC_CHUNK-min_request);
307 /* Try to get space, if fail reduce slop and try again */
308 for (;;) {
309 hdr_ptr = (small_pool_ptr) jpeg_get_small(cinfo, min_request + slop);
310 if (hdr_ptr != NULL)
DRCe5eaf372014-05-09 18:00:32 +0000311 break;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000312 slop /= 2;
DRCe5eaf372014-05-09 18:00:32 +0000313 if (slop < MIN_SLOP) /* give up when it gets real small */
314 out_of_memory(cinfo, 2); /* jpeg_get_small failed */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000315 }
316 mem->total_space_allocated += min_request + slop;
317 /* Success, initialize the new pool header and add to end of list */
Pierre Ossman5557fd22009-03-09 10:34:53 +0000318 hdr_ptr->next = NULL;
319 hdr_ptr->bytes_used = 0;
320 hdr_ptr->bytes_left = sizeofobject + slop;
DRCe5eaf372014-05-09 18:00:32 +0000321 if (prev_hdr_ptr == NULL) /* first pool in class? */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000322 mem->small_list[pool_id] = hdr_ptr;
323 else
Pierre Ossman5557fd22009-03-09 10:34:53 +0000324 prev_hdr_ptr->next = hdr_ptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000325 }
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000326
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000327 /* OK, allocate the object from the current pool */
Pierre Ossman5557fd22009-03-09 10:34:53 +0000328 data_ptr = (char *) hdr_ptr; /* point to first data byte in pool... */
DRC5de454b2014-05-18 19:04:03 +0000329 data_ptr += sizeof(small_pool_hdr); /* ...by skipping the header... */
DRC04899092010-02-26 23:01:19 +0000330 if ((size_t)data_ptr % ALIGN_SIZE) /* ...and adjust for alignment */
331 data_ptr += ALIGN_SIZE - (size_t)data_ptr % ALIGN_SIZE;
Pierre Ossman5557fd22009-03-09 10:34:53 +0000332 data_ptr += hdr_ptr->bytes_used; /* point to place for object */
333 hdr_ptr->bytes_used += sizeofobject;
334 hdr_ptr->bytes_left -= sizeofobject;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000335
336 return (void *) data_ptr;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000337}
338
339
340/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000341 * Allocation of "large" objects.
342 *
DRC5033f3e2014-05-18 18:33:44 +0000343 * The external semantics of these are the same as "small" objects. However,
344 * the pool management heuristics are quite different. We assume that each
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000345 * request is large enough that it may as well be passed directly to
346 * jpeg_get_large; the pool management just links everything together
347 * so that we can free it all on demand.
348 * Note: the major use of "large" objects is in JSAMPARRAY and JBLOCKARRAY
349 * structures. The routines that create these structures (see below)
350 * deliberately bunch rows together to ensure a large request size.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000351 */
352
DRC5033f3e2014-05-18 18:33:44 +0000353METHODDEF(void *)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000354alloc_large (j_common_ptr cinfo, int pool_id, size_t sizeofobject)
355/* Allocate a "large" object */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000356{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000357 my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
358 large_pool_ptr hdr_ptr;
DRC5033f3e2014-05-18 18:33:44 +0000359 char * data_ptr;
Pierre Ossman5557fd22009-03-09 10:34:53 +0000360
361 /*
362 * Round up the requested size to a multiple of ALIGN_SIZE so that
363 * algorithms can straddle outside the proper area up to the next
364 * alignment.
365 */
DRCa8eabfe2011-03-29 04:58:40 +0000366 sizeofobject = round_up_pow2(sizeofobject, ALIGN_SIZE);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000367
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000368 /* Check for unsatisfiable request (do now to ensure no overflow below) */
DRC5de454b2014-05-18 19:04:03 +0000369 if ((sizeof(large_pool_hdr) + sizeofobject + ALIGN_SIZE - 1) > MAX_ALLOC_CHUNK)
DRCe5eaf372014-05-09 18:00:32 +0000370 out_of_memory(cinfo, 3); /* request exceeds malloc's ability */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000371
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000372 /* Always make a new pool */
373 if (pool_id < 0 || pool_id >= JPOOL_NUMPOOLS)
DRCe5eaf372014-05-09 18:00:32 +0000374 ERREXIT1(cinfo, JERR_BAD_POOL_ID, pool_id); /* safety check */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000375
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000376 hdr_ptr = (large_pool_ptr) jpeg_get_large(cinfo, sizeofobject +
DRC5de454b2014-05-18 19:04:03 +0000377 sizeof(large_pool_hdr) +
DRCe5eaf372014-05-09 18:00:32 +0000378 ALIGN_SIZE - 1);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000379 if (hdr_ptr == NULL)
DRCe5eaf372014-05-09 18:00:32 +0000380 out_of_memory(cinfo, 4); /* jpeg_get_large failed */
DRC5de454b2014-05-18 19:04:03 +0000381 mem->total_space_allocated += sizeofobject + sizeof(large_pool_hdr) + ALIGN_SIZE - 1;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000382
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000383 /* Success, initialize the new pool header and add to list */
Pierre Ossman5557fd22009-03-09 10:34:53 +0000384 hdr_ptr->next = mem->large_list[pool_id];
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000385 /* We maintain space counts in each pool header for statistical purposes,
386 * even though they are not needed for allocation.
387 */
Pierre Ossman5557fd22009-03-09 10:34:53 +0000388 hdr_ptr->bytes_used = sizeofobject;
389 hdr_ptr->bytes_left = 0;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000390 mem->large_list[pool_id] = hdr_ptr;
391
Pierre Ossman5557fd22009-03-09 10:34:53 +0000392 data_ptr = (char *) hdr_ptr; /* point to first data byte in pool... */
DRC5de454b2014-05-18 19:04:03 +0000393 data_ptr += sizeof(small_pool_hdr); /* ...by skipping the header... */
DRC04899092010-02-26 23:01:19 +0000394 if ((size_t)data_ptr % ALIGN_SIZE) /* ...and adjust for alignment */
395 data_ptr += ALIGN_SIZE - (size_t)data_ptr % ALIGN_SIZE;
Pierre Ossman5557fd22009-03-09 10:34:53 +0000396
DRC5033f3e2014-05-18 18:33:44 +0000397 return (void *) data_ptr;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000398}
399
400
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000401/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000402 * Creation of 2-D sample arrays.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000403 *
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000404 * To minimize allocation overhead and to allow I/O of large contiguous
405 * blocks, we allocate the sample rows in groups of as many rows as possible
406 * without exceeding MAX_ALLOC_CHUNK total bytes per allocation request.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000407 * NB: the virtual array control routines, later in this file, know about
408 * this chunking of rows. The rowsperchunk value is left in the mem manager
409 * object so that it can be saved away if this sarray is the workspace for
410 * a virtual array.
Pierre Ossman5557fd22009-03-09 10:34:53 +0000411 *
412 * Since we are often upsampling with a factor 2, we align the size (not
413 * the start) to 2 * ALIGN_SIZE so that the upsampling routines don't have
414 * to be as careful about size.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000415 */
416
Thomas G. Lane489583f1996-02-07 00:00:00 +0000417METHODDEF(JSAMPARRAY)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000418alloc_sarray (j_common_ptr cinfo, int pool_id,
DRCe5eaf372014-05-09 18:00:32 +0000419 JDIMENSION samplesperrow, JDIMENSION numrows)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000420/* Allocate a 2-D sample array */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000421{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000422 my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000423 JSAMPARRAY result;
424 JSAMPROW workspace;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000425 JDIMENSION rowsperchunk, currow, i;
426 long ltemp;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000427
Pierre Ossman5557fd22009-03-09 10:34:53 +0000428 /* Make sure each row is properly aligned */
DRC5de454b2014-05-18 19:04:03 +0000429 if ((ALIGN_SIZE % sizeof(JSAMPLE)) != 0)
DRCe5eaf372014-05-09 18:00:32 +0000430 out_of_memory(cinfo, 5); /* safety check */
DRC5de454b2014-05-18 19:04:03 +0000431 samplesperrow = (JDIMENSION)round_up_pow2(samplesperrow, (2 * ALIGN_SIZE) / sizeof(JSAMPLE));
Pierre Ossman5557fd22009-03-09 10:34:53 +0000432
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000433 /* Calculate max # of rows allowed in one allocation chunk */
DRC5de454b2014-05-18 19:04:03 +0000434 ltemp = (MAX_ALLOC_CHUNK-sizeof(large_pool_hdr)) /
435 ((long) samplesperrow * sizeof(JSAMPLE));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000436 if (ltemp <= 0)
437 ERREXIT(cinfo, JERR_WIDTH_OVERFLOW);
438 if (ltemp < (long) numrows)
439 rowsperchunk = (JDIMENSION) ltemp;
440 else
441 rowsperchunk = numrows;
442 mem->last_rowsperchunk = rowsperchunk;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000443
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000444 /* Get space for row pointers (small object) */
445 result = (JSAMPARRAY) alloc_small(cinfo, pool_id,
DRC5de454b2014-05-18 19:04:03 +0000446 (size_t) (numrows * sizeof(JSAMPROW)));
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000447
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000448 /* Get the rows themselves (large objects) */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000449 currow = 0;
450 while (currow < numrows) {
451 rowsperchunk = MIN(rowsperchunk, numrows - currow);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000452 workspace = (JSAMPROW) alloc_large(cinfo, pool_id,
DRCe5eaf372014-05-09 18:00:32 +0000453 (size_t) ((size_t) rowsperchunk * (size_t) samplesperrow
DRC5de454b2014-05-18 19:04:03 +0000454 * sizeof(JSAMPLE)));
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000455 for (i = rowsperchunk; i > 0; i--) {
456 result[currow++] = workspace;
457 workspace += samplesperrow;
458 }
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000459 }
460
461 return result;
462}
463
464
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000465/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000466 * Creation of 2-D coefficient-block arrays.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000467 * This is essentially the same as the code for sample arrays, above.
468 */
469
Thomas G. Lane489583f1996-02-07 00:00:00 +0000470METHODDEF(JBLOCKARRAY)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000471alloc_barray (j_common_ptr cinfo, int pool_id,
DRCe5eaf372014-05-09 18:00:32 +0000472 JDIMENSION blocksperrow, JDIMENSION numrows)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000473/* Allocate a 2-D coefficient-block array */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000474{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000475 my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000476 JBLOCKARRAY result;
477 JBLOCKROW workspace;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000478 JDIMENSION rowsperchunk, currow, i;
479 long ltemp;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000480
Pierre Ossman5557fd22009-03-09 10:34:53 +0000481 /* Make sure each row is properly aligned */
DRC5de454b2014-05-18 19:04:03 +0000482 if ((sizeof(JBLOCK) % ALIGN_SIZE) != 0)
DRCe5eaf372014-05-09 18:00:32 +0000483 out_of_memory(cinfo, 6); /* safety check */
Pierre Ossman5557fd22009-03-09 10:34:53 +0000484
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000485 /* Calculate max # of rows allowed in one allocation chunk */
DRC5de454b2014-05-18 19:04:03 +0000486 ltemp = (MAX_ALLOC_CHUNK-sizeof(large_pool_hdr)) /
487 ((long) blocksperrow * sizeof(JBLOCK));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000488 if (ltemp <= 0)
489 ERREXIT(cinfo, JERR_WIDTH_OVERFLOW);
490 if (ltemp < (long) numrows)
491 rowsperchunk = (JDIMENSION) ltemp;
492 else
493 rowsperchunk = numrows;
494 mem->last_rowsperchunk = rowsperchunk;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000495
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000496 /* Get space for row pointers (small object) */
497 result = (JBLOCKARRAY) alloc_small(cinfo, pool_id,
DRC5de454b2014-05-18 19:04:03 +0000498 (size_t) (numrows * sizeof(JBLOCKROW)));
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000499
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000500 /* Get the rows themselves (large objects) */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000501 currow = 0;
502 while (currow < numrows) {
503 rowsperchunk = MIN(rowsperchunk, numrows - currow);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000504 workspace = (JBLOCKROW) alloc_large(cinfo, pool_id,
DRCe5eaf372014-05-09 18:00:32 +0000505 (size_t) ((size_t) rowsperchunk * (size_t) blocksperrow
DRC5de454b2014-05-18 19:04:03 +0000506 * sizeof(JBLOCK)));
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000507 for (i = rowsperchunk; i > 0; i--) {
508 result[currow++] = workspace;
509 workspace += blocksperrow;
510 }
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000511 }
512
513 return result;
514}
515
516
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000517/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000518 * About virtual array management:
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000519 *
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000520 * The above "normal" array routines are only used to allocate strip buffers
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000521 * (as wide as the image, but just a few rows high). Full-image-sized buffers
522 * are handled as "virtual" arrays. The array is still accessed a strip at a
523 * time, but the memory manager must save the whole array for repeated
524 * accesses. The intended implementation is that there is a strip buffer in
525 * memory (as high as is possible given the desired memory limit), plus a
526 * backing file that holds the rest of the array.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000527 *
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000528 * The request_virt_array routines are told the total size of the image and
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000529 * the maximum number of rows that will be accessed at once. The in-memory
530 * buffer must be at least as large as the maxaccess value.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000531 *
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000532 * The request routines create control blocks but not the in-memory buffers.
533 * That is postponed until realize_virt_arrays is called. At that time the
534 * total amount of space needed is known (approximately, anyway), so free
535 * memory can be divided up fairly.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000536 *
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000537 * The access_virt_array routines are responsible for making a specific strip
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000538 * area accessible (after reading or writing the backing file, if necessary).
539 * Note that the access routines are told whether the caller intends to modify
540 * the accessed strip; during a read-only pass this saves having to rewrite
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000541 * data to disk. The access routines are also responsible for pre-zeroing
542 * any newly accessed rows, if pre-zeroing was requested.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000543 *
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000544 * In current usage, the access requests are usually for nonoverlapping
545 * strips; that is, successive access start_row numbers differ by exactly
546 * num_rows = maxaccess. This means we can get good performance with simple
547 * buffer dump/reload logic, by making the in-memory buffer be a multiple
548 * of the access height; then there will never be accesses across bufferload
549 * boundaries. The code will still work with overlapping access requests,
550 * but it doesn't handle bufferload overlaps very efficiently.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000551 */
552
553
Thomas G. Lane489583f1996-02-07 00:00:00 +0000554METHODDEF(jvirt_sarray_ptr)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000555request_virt_sarray (j_common_ptr cinfo, int pool_id, boolean pre_zero,
DRCe5eaf372014-05-09 18:00:32 +0000556 JDIMENSION samplesperrow, JDIMENSION numrows,
557 JDIMENSION maxaccess)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000558/* Request a virtual 2-D sample array */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000559{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000560 my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
561 jvirt_sarray_ptr result;
562
563 /* Only IMAGE-lifetime virtual arrays are currently supported */
564 if (pool_id != JPOOL_IMAGE)
DRCe5eaf372014-05-09 18:00:32 +0000565 ERREXIT1(cinfo, JERR_BAD_POOL_ID, pool_id); /* safety check */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000566
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000567 /* get control block */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000568 result = (jvirt_sarray_ptr) alloc_small(cinfo, pool_id,
DRC5de454b2014-05-18 19:04:03 +0000569 sizeof(struct jvirt_sarray_control));
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000570
DRCe5eaf372014-05-09 18:00:32 +0000571 result->mem_buffer = NULL; /* marks array not yet realized */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000572 result->rows_in_array = numrows;
573 result->samplesperrow = samplesperrow;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000574 result->maxaccess = maxaccess;
575 result->pre_zero = pre_zero;
DRCe5eaf372014-05-09 18:00:32 +0000576 result->b_s_open = FALSE; /* no associated backing-store object */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000577 result->next = mem->virt_sarray_list; /* add to list of virtual arrays */
578 mem->virt_sarray_list = result;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000579
580 return result;
581}
582
583
Thomas G. Lane489583f1996-02-07 00:00:00 +0000584METHODDEF(jvirt_barray_ptr)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000585request_virt_barray (j_common_ptr cinfo, int pool_id, boolean pre_zero,
DRCe5eaf372014-05-09 18:00:32 +0000586 JDIMENSION blocksperrow, JDIMENSION numrows,
587 JDIMENSION maxaccess)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000588/* Request a virtual 2-D coefficient-block array */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000589{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000590 my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
591 jvirt_barray_ptr result;
592
593 /* Only IMAGE-lifetime virtual arrays are currently supported */
594 if (pool_id != JPOOL_IMAGE)
DRCe5eaf372014-05-09 18:00:32 +0000595 ERREXIT1(cinfo, JERR_BAD_POOL_ID, pool_id); /* safety check */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000596
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000597 /* get control block */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000598 result = (jvirt_barray_ptr) alloc_small(cinfo, pool_id,
DRC5de454b2014-05-18 19:04:03 +0000599 sizeof(struct jvirt_barray_control));
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000600
DRCe5eaf372014-05-09 18:00:32 +0000601 result->mem_buffer = NULL; /* marks array not yet realized */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000602 result->rows_in_array = numrows;
603 result->blocksperrow = blocksperrow;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000604 result->maxaccess = maxaccess;
605 result->pre_zero = pre_zero;
DRCe5eaf372014-05-09 18:00:32 +0000606 result->b_s_open = FALSE; /* no associated backing-store object */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000607 result->next = mem->virt_barray_list; /* add to list of virtual arrays */
608 mem->virt_barray_list = result;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000609
610 return result;
611}
612
613
Thomas G. Lane489583f1996-02-07 00:00:00 +0000614METHODDEF(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000615realize_virt_arrays (j_common_ptr cinfo)
616/* Allocate the in-memory buffers for any unrealized virtual arrays */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000617{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000618 my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
DRC04899092010-02-26 23:01:19 +0000619 size_t space_per_minheight, maximum_space, avail_mem;
620 size_t minheights, max_minheights;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000621 jvirt_sarray_ptr sptr;
622 jvirt_barray_ptr bptr;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000623
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000624 /* Compute the minimum space needed (maxaccess rows in each buffer)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000625 * and the maximum space needed (full image height in each buffer).
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000626 * These may be of use to the system-dependent jpeg_mem_available routine.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000627 */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000628 space_per_minheight = 0;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000629 maximum_space = 0;
630 for (sptr = mem->virt_sarray_list; sptr != NULL; sptr = sptr->next) {
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000631 if (sptr->mem_buffer == NULL) { /* if not realized yet */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000632 space_per_minheight += (long) sptr->maxaccess *
DRC5de454b2014-05-18 19:04:03 +0000633 (long) sptr->samplesperrow * sizeof(JSAMPLE);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000634 maximum_space += (long) sptr->rows_in_array *
DRC5de454b2014-05-18 19:04:03 +0000635 (long) sptr->samplesperrow * sizeof(JSAMPLE);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000636 }
637 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000638 for (bptr = mem->virt_barray_list; bptr != NULL; bptr = bptr->next) {
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000639 if (bptr->mem_buffer == NULL) { /* if not realized yet */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000640 space_per_minheight += (long) bptr->maxaccess *
DRC5de454b2014-05-18 19:04:03 +0000641 (long) bptr->blocksperrow * sizeof(JBLOCK);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000642 maximum_space += (long) bptr->rows_in_array *
DRC5de454b2014-05-18 19:04:03 +0000643 (long) bptr->blocksperrow * sizeof(JBLOCK);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000644 }
645 }
646
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000647 if (space_per_minheight <= 0)
DRCe5eaf372014-05-09 18:00:32 +0000648 return; /* no unrealized arrays, no work */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000649
650 /* Determine amount of memory to actually use; this is system-dependent. */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000651 avail_mem = jpeg_mem_available(cinfo, space_per_minheight, maximum_space,
DRCe5eaf372014-05-09 18:00:32 +0000652 mem->total_space_allocated);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000653
654 /* If the maximum space needed is available, make all the buffers full
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000655 * height; otherwise parcel it out with the same number of minheights
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000656 * in each buffer.
657 */
658 if (avail_mem >= maximum_space)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000659 max_minheights = 1000000000L;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000660 else {
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000661 max_minheights = avail_mem / space_per_minheight;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000662 /* If there doesn't seem to be enough space, try to get the minimum
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000663 * anyway. This allows a "stub" implementation of jpeg_mem_available().
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000664 */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000665 if (max_minheights <= 0)
666 max_minheights = 1;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000667 }
668
669 /* Allocate the in-memory buffers and initialize backing store as needed. */
670
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000671 for (sptr = mem->virt_sarray_list; sptr != NULL; sptr = sptr->next) {
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000672 if (sptr->mem_buffer == NULL) { /* if not realized yet */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000673 minheights = ((long) sptr->rows_in_array - 1L) / sptr->maxaccess + 1L;
674 if (minheights <= max_minheights) {
DRCe5eaf372014-05-09 18:00:32 +0000675 /* This buffer fits in memory */
676 sptr->rows_in_mem = sptr->rows_in_array;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000677 } else {
DRCe5eaf372014-05-09 18:00:32 +0000678 /* It doesn't fit in memory, create backing store. */
679 sptr->rows_in_mem = (JDIMENSION) (max_minheights * sptr->maxaccess);
680 jpeg_open_backing_store(cinfo, & sptr->b_s_info,
681 (long) sptr->rows_in_array *
682 (long) sptr->samplesperrow *
DRC5de454b2014-05-18 19:04:03 +0000683 (long) sizeof(JSAMPLE));
DRCe5eaf372014-05-09 18:00:32 +0000684 sptr->b_s_open = TRUE;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000685 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000686 sptr->mem_buffer = alloc_sarray(cinfo, JPOOL_IMAGE,
DRCe5eaf372014-05-09 18:00:32 +0000687 sptr->samplesperrow, sptr->rows_in_mem);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000688 sptr->rowsperchunk = mem->last_rowsperchunk;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000689 sptr->cur_start_row = 0;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000690 sptr->first_undef_row = 0;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000691 sptr->dirty = FALSE;
692 }
693 }
694
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000695 for (bptr = mem->virt_barray_list; bptr != NULL; bptr = bptr->next) {
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000696 if (bptr->mem_buffer == NULL) { /* if not realized yet */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000697 minheights = ((long) bptr->rows_in_array - 1L) / bptr->maxaccess + 1L;
698 if (minheights <= max_minheights) {
DRCe5eaf372014-05-09 18:00:32 +0000699 /* This buffer fits in memory */
700 bptr->rows_in_mem = bptr->rows_in_array;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000701 } else {
DRCe5eaf372014-05-09 18:00:32 +0000702 /* It doesn't fit in memory, create backing store. */
703 bptr->rows_in_mem = (JDIMENSION) (max_minheights * bptr->maxaccess);
704 jpeg_open_backing_store(cinfo, & bptr->b_s_info,
705 (long) bptr->rows_in_array *
706 (long) bptr->blocksperrow *
DRC5de454b2014-05-18 19:04:03 +0000707 (long) sizeof(JBLOCK));
DRCe5eaf372014-05-09 18:00:32 +0000708 bptr->b_s_open = TRUE;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000709 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000710 bptr->mem_buffer = alloc_barray(cinfo, JPOOL_IMAGE,
DRCe5eaf372014-05-09 18:00:32 +0000711 bptr->blocksperrow, bptr->rows_in_mem);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000712 bptr->rowsperchunk = mem->last_rowsperchunk;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000713 bptr->cur_start_row = 0;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000714 bptr->first_undef_row = 0;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000715 bptr->dirty = FALSE;
716 }
717 }
718}
719
720
Thomas G. Lane489583f1996-02-07 00:00:00 +0000721LOCAL(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000722do_sarray_io (j_common_ptr cinfo, jvirt_sarray_ptr ptr, boolean writing)
723/* Do backing store read or write of a virtual sample array */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000724{
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000725 long bytesperrow, file_offset, byte_count, rows, thisrow, i;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000726
DRC5de454b2014-05-18 19:04:03 +0000727 bytesperrow = (long) ptr->samplesperrow * sizeof(JSAMPLE);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000728 file_offset = ptr->cur_start_row * bytesperrow;
729 /* Loop to read or write each allocation chunk in mem_buffer */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000730 for (i = 0; i < (long) ptr->rows_in_mem; i += ptr->rowsperchunk) {
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000731 /* One chunk, but check for short chunk at end of buffer */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000732 rows = MIN((long) ptr->rowsperchunk, (long) ptr->rows_in_mem - i);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000733 /* Transfer no more than is currently defined */
734 thisrow = (long) ptr->cur_start_row + i;
735 rows = MIN(rows, (long) ptr->first_undef_row - thisrow);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000736 /* Transfer no more than fits in file */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000737 rows = MIN(rows, (long) ptr->rows_in_array - thisrow);
DRCe5eaf372014-05-09 18:00:32 +0000738 if (rows <= 0) /* this chunk might be past end of file! */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000739 break;
740 byte_count = rows * bytesperrow;
741 if (writing)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000742 (*ptr->b_s_info.write_backing_store) (cinfo, & ptr->b_s_info,
DRC5033f3e2014-05-18 18:33:44 +0000743 (void *) ptr->mem_buffer[i],
DRCe5eaf372014-05-09 18:00:32 +0000744 file_offset, byte_count);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000745 else
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000746 (*ptr->b_s_info.read_backing_store) (cinfo, & ptr->b_s_info,
DRC5033f3e2014-05-18 18:33:44 +0000747 (void *) ptr->mem_buffer[i],
DRCe5eaf372014-05-09 18:00:32 +0000748 file_offset, byte_count);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000749 file_offset += byte_count;
750 }
751}
752
753
Thomas G. Lane489583f1996-02-07 00:00:00 +0000754LOCAL(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000755do_barray_io (j_common_ptr cinfo, jvirt_barray_ptr ptr, boolean writing)
756/* Do backing store read or write of a virtual coefficient-block array */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000757{
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000758 long bytesperrow, file_offset, byte_count, rows, thisrow, i;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000759
DRC5de454b2014-05-18 19:04:03 +0000760 bytesperrow = (long) ptr->blocksperrow * sizeof(JBLOCK);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000761 file_offset = ptr->cur_start_row * bytesperrow;
762 /* Loop to read or write each allocation chunk in mem_buffer */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000763 for (i = 0; i < (long) ptr->rows_in_mem; i += ptr->rowsperchunk) {
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000764 /* One chunk, but check for short chunk at end of buffer */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000765 rows = MIN((long) ptr->rowsperchunk, (long) ptr->rows_in_mem - i);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000766 /* Transfer no more than is currently defined */
767 thisrow = (long) ptr->cur_start_row + i;
768 rows = MIN(rows, (long) ptr->first_undef_row - thisrow);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000769 /* Transfer no more than fits in file */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000770 rows = MIN(rows, (long) ptr->rows_in_array - thisrow);
DRCe5eaf372014-05-09 18:00:32 +0000771 if (rows <= 0) /* this chunk might be past end of file! */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000772 break;
773 byte_count = rows * bytesperrow;
774 if (writing)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000775 (*ptr->b_s_info.write_backing_store) (cinfo, & ptr->b_s_info,
DRC5033f3e2014-05-18 18:33:44 +0000776 (void *) ptr->mem_buffer[i],
DRCe5eaf372014-05-09 18:00:32 +0000777 file_offset, byte_count);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000778 else
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000779 (*ptr->b_s_info.read_backing_store) (cinfo, & ptr->b_s_info,
DRC5033f3e2014-05-18 18:33:44 +0000780 (void *) ptr->mem_buffer[i],
DRCe5eaf372014-05-09 18:00:32 +0000781 file_offset, byte_count);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000782 file_offset += byte_count;
783 }
784}
785
786
Thomas G. Lane489583f1996-02-07 00:00:00 +0000787METHODDEF(JSAMPARRAY)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000788access_virt_sarray (j_common_ptr cinfo, jvirt_sarray_ptr ptr,
DRCe5eaf372014-05-09 18:00:32 +0000789 JDIMENSION start_row, JDIMENSION num_rows,
790 boolean writable)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000791/* Access the part of a virtual sample array starting at start_row */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000792/* and extending for num_rows rows. writable is true if */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000793/* caller intends to modify the accessed area. */
794{
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000795 JDIMENSION end_row = start_row + num_rows;
796 JDIMENSION undef_row;
797
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000798 /* debugging check */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000799 if (end_row > ptr->rows_in_array || num_rows > ptr->maxaccess ||
800 ptr->mem_buffer == NULL)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000801 ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000802
803 /* Make the desired part of the virtual array accessible */
804 if (start_row < ptr->cur_start_row ||
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000805 end_row > ptr->cur_start_row+ptr->rows_in_mem) {
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000806 if (! ptr->b_s_open)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000807 ERREXIT(cinfo, JERR_VIRTUAL_BUG);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000808 /* Flush old buffer contents if necessary */
809 if (ptr->dirty) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000810 do_sarray_io(cinfo, ptr, TRUE);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000811 ptr->dirty = FALSE;
812 }
813 /* Decide what part of virtual array to access.
814 * Algorithm: if target address > current window, assume forward scan,
815 * load starting at target address. If target address < current window,
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000816 * assume backward scan, load so that target area is top of window.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000817 * Note that when switching from forward write to forward read, will have
818 * start_row = 0, so the limiting case applies and we load from 0 anyway.
819 */
820 if (start_row > ptr->cur_start_row) {
821 ptr->cur_start_row = start_row;
822 } else {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000823 /* use long arithmetic here to avoid overflow & unsigned problems */
824 long ltemp;
825
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000826 ltemp = (long) end_row - (long) ptr->rows_in_mem;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000827 if (ltemp < 0)
DRCe5eaf372014-05-09 18:00:32 +0000828 ltemp = 0; /* don't fall off front end of file */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000829 ptr->cur_start_row = (JDIMENSION) ltemp;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000830 }
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000831 /* Read in the selected part of the array.
832 * During the initial write pass, we will do no actual read
833 * because the selected part is all undefined.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000834 */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000835 do_sarray_io(cinfo, ptr, FALSE);
836 }
837 /* Ensure the accessed part of the array is defined; prezero if needed.
838 * To improve locality of access, we only prezero the part of the array
839 * that the caller is about to access, not the entire in-memory array.
840 */
841 if (ptr->first_undef_row < end_row) {
842 if (ptr->first_undef_row < start_row) {
DRCe5eaf372014-05-09 18:00:32 +0000843 if (writable) /* writer skipped over a section of array */
844 ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS);
845 undef_row = start_row; /* but reader is allowed to read ahead */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000846 } else {
847 undef_row = ptr->first_undef_row;
848 }
849 if (writable)
850 ptr->first_undef_row = end_row;
851 if (ptr->pre_zero) {
DRC5de454b2014-05-18 19:04:03 +0000852 size_t bytesperrow = (size_t) ptr->samplesperrow * sizeof(JSAMPLE);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000853 undef_row -= ptr->cur_start_row; /* make indexes relative to buffer */
854 end_row -= ptr->cur_start_row;
855 while (undef_row < end_row) {
DRC5033f3e2014-05-18 18:33:44 +0000856 jzero_far((void *) ptr->mem_buffer[undef_row], bytesperrow);
DRCe5eaf372014-05-09 18:00:32 +0000857 undef_row++;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000858 }
859 } else {
DRCe5eaf372014-05-09 18:00:32 +0000860 if (! writable) /* reader looking at undefined data */
861 ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000862 }
863 }
864 /* Flag the buffer dirty if caller will write in it */
865 if (writable)
866 ptr->dirty = TRUE;
867 /* Return address of proper part of the buffer */
868 return ptr->mem_buffer + (start_row - ptr->cur_start_row);
869}
870
871
Thomas G. Lane489583f1996-02-07 00:00:00 +0000872METHODDEF(JBLOCKARRAY)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000873access_virt_barray (j_common_ptr cinfo, jvirt_barray_ptr ptr,
DRCe5eaf372014-05-09 18:00:32 +0000874 JDIMENSION start_row, JDIMENSION num_rows,
875 boolean writable)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000876/* Access the part of a virtual block array starting at start_row */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000877/* and extending for num_rows rows. writable is true if */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000878/* caller intends to modify the accessed area. */
879{
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000880 JDIMENSION end_row = start_row + num_rows;
881 JDIMENSION undef_row;
882
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000883 /* debugging check */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000884 if (end_row > ptr->rows_in_array || num_rows > ptr->maxaccess ||
885 ptr->mem_buffer == NULL)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000886 ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000887
888 /* Make the desired part of the virtual array accessible */
889 if (start_row < ptr->cur_start_row ||
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000890 end_row > ptr->cur_start_row+ptr->rows_in_mem) {
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000891 if (! ptr->b_s_open)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000892 ERREXIT(cinfo, JERR_VIRTUAL_BUG);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000893 /* Flush old buffer contents if necessary */
894 if (ptr->dirty) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000895 do_barray_io(cinfo, ptr, TRUE);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000896 ptr->dirty = FALSE;
897 }
898 /* Decide what part of virtual array to access.
899 * Algorithm: if target address > current window, assume forward scan,
900 * load starting at target address. If target address < current window,
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000901 * assume backward scan, load so that target area is top of window.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000902 * Note that when switching from forward write to forward read, will have
903 * start_row = 0, so the limiting case applies and we load from 0 anyway.
904 */
905 if (start_row > ptr->cur_start_row) {
906 ptr->cur_start_row = start_row;
907 } else {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000908 /* use long arithmetic here to avoid overflow & unsigned problems */
909 long ltemp;
910
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000911 ltemp = (long) end_row - (long) ptr->rows_in_mem;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000912 if (ltemp < 0)
DRCe5eaf372014-05-09 18:00:32 +0000913 ltemp = 0; /* don't fall off front end of file */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000914 ptr->cur_start_row = (JDIMENSION) ltemp;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000915 }
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000916 /* Read in the selected part of the array.
917 * During the initial write pass, we will do no actual read
918 * because the selected part is all undefined.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000919 */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000920 do_barray_io(cinfo, ptr, FALSE);
921 }
922 /* Ensure the accessed part of the array is defined; prezero if needed.
923 * To improve locality of access, we only prezero the part of the array
924 * that the caller is about to access, not the entire in-memory array.
925 */
926 if (ptr->first_undef_row < end_row) {
927 if (ptr->first_undef_row < start_row) {
DRCe5eaf372014-05-09 18:00:32 +0000928 if (writable) /* writer skipped over a section of array */
929 ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS);
930 undef_row = start_row; /* but reader is allowed to read ahead */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000931 } else {
932 undef_row = ptr->first_undef_row;
933 }
934 if (writable)
935 ptr->first_undef_row = end_row;
936 if (ptr->pre_zero) {
DRC5de454b2014-05-18 19:04:03 +0000937 size_t bytesperrow = (size_t) ptr->blocksperrow * sizeof(JBLOCK);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000938 undef_row -= ptr->cur_start_row; /* make indexes relative to buffer */
939 end_row -= ptr->cur_start_row;
940 while (undef_row < end_row) {
DRC5033f3e2014-05-18 18:33:44 +0000941 jzero_far((void *) ptr->mem_buffer[undef_row], bytesperrow);
DRCe5eaf372014-05-09 18:00:32 +0000942 undef_row++;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000943 }
944 } else {
DRCe5eaf372014-05-09 18:00:32 +0000945 if (! writable) /* reader looking at undefined data */
946 ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000947 }
948 }
949 /* Flag the buffer dirty if caller will write in it */
950 if (writable)
951 ptr->dirty = TRUE;
952 /* Return address of proper part of the buffer */
953 return ptr->mem_buffer + (start_row - ptr->cur_start_row);
954}
955
956
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000957/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000958 * Release all objects belonging to a specified pool.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000959 */
960
Thomas G. Lane489583f1996-02-07 00:00:00 +0000961METHODDEF(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000962free_pool (j_common_ptr cinfo, int pool_id)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000963{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000964 my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
965 small_pool_ptr shdr_ptr;
966 large_pool_ptr lhdr_ptr;
967 size_t space_freed;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000968
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000969 if (pool_id < 0 || pool_id >= JPOOL_NUMPOOLS)
DRCe5eaf372014-05-09 18:00:32 +0000970 ERREXIT1(cinfo, JERR_BAD_POOL_ID, pool_id); /* safety check */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000971
972#ifdef MEM_STATS
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000973 if (cinfo->err->trace_level > 1)
974 print_mem_stats(cinfo, pool_id); /* print pool's memory usage statistics */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000975#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000976
977 /* If freeing IMAGE pool, close any virtual arrays first */
978 if (pool_id == JPOOL_IMAGE) {
979 jvirt_sarray_ptr sptr;
980 jvirt_barray_ptr bptr;
981
982 for (sptr = mem->virt_sarray_list; sptr != NULL; sptr = sptr->next) {
DRCe5eaf372014-05-09 18:00:32 +0000983 if (sptr->b_s_open) { /* there may be no backing store */
984 sptr->b_s_open = FALSE; /* prevent recursive close if error */
985 (*sptr->b_s_info.close_backing_store) (cinfo, & sptr->b_s_info);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000986 }
987 }
988 mem->virt_sarray_list = NULL;
989 for (bptr = mem->virt_barray_list; bptr != NULL; bptr = bptr->next) {
DRCe5eaf372014-05-09 18:00:32 +0000990 if (bptr->b_s_open) { /* there may be no backing store */
991 bptr->b_s_open = FALSE; /* prevent recursive close if error */
992 (*bptr->b_s_info.close_backing_store) (cinfo, & bptr->b_s_info);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000993 }
994 }
995 mem->virt_barray_list = NULL;
996 }
997
998 /* Release large objects */
999 lhdr_ptr = mem->large_list[pool_id];
1000 mem->large_list[pool_id] = NULL;
1001
1002 while (lhdr_ptr != NULL) {
Pierre Ossman5557fd22009-03-09 10:34:53 +00001003 large_pool_ptr next_lhdr_ptr = lhdr_ptr->next;
1004 space_freed = lhdr_ptr->bytes_used +
DRCe5eaf372014-05-09 18:00:32 +00001005 lhdr_ptr->bytes_left +
DRC5de454b2014-05-18 19:04:03 +00001006 sizeof(large_pool_hdr);
DRC5033f3e2014-05-18 18:33:44 +00001007 jpeg_free_large(cinfo, (void *) lhdr_ptr, space_freed);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001008 mem->total_space_allocated -= space_freed;
1009 lhdr_ptr = next_lhdr_ptr;
1010 }
1011
1012 /* Release small objects */
1013 shdr_ptr = mem->small_list[pool_id];
1014 mem->small_list[pool_id] = NULL;
1015
1016 while (shdr_ptr != NULL) {
Pierre Ossman5557fd22009-03-09 10:34:53 +00001017 small_pool_ptr next_shdr_ptr = shdr_ptr->next;
1018 space_freed = shdr_ptr->bytes_used +
DRCe5eaf372014-05-09 18:00:32 +00001019 shdr_ptr->bytes_left +
DRC5de454b2014-05-18 19:04:03 +00001020 sizeof(small_pool_hdr);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001021 jpeg_free_small(cinfo, (void *) shdr_ptr, space_freed);
1022 mem->total_space_allocated -= space_freed;
1023 shdr_ptr = next_shdr_ptr;
1024 }
Thomas G. Lane4a6b7301992-03-17 00:00:00 +00001025}
1026
1027
1028/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001029 * Close up shop entirely.
1030 * Note that this cannot be called unless cinfo->mem is non-NULL.
1031 */
1032
Thomas G. Lane489583f1996-02-07 00:00:00 +00001033METHODDEF(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001034self_destruct (j_common_ptr cinfo)
1035{
1036 int pool;
1037
1038 /* Close all backing store, release all memory.
1039 * Releasing pools in reverse order might help avoid fragmentation
1040 * with some (brain-damaged) malloc libraries.
1041 */
1042 for (pool = JPOOL_NUMPOOLS-1; pool >= JPOOL_PERMANENT; pool--) {
1043 free_pool(cinfo, pool);
1044 }
1045
1046 /* Release the memory manager control block too. */
DRC5de454b2014-05-18 19:04:03 +00001047 jpeg_free_small(cinfo, (void *) cinfo->mem, sizeof(my_memory_mgr));
DRCe5eaf372014-05-09 18:00:32 +00001048 cinfo->mem = NULL; /* ensures I will be called only once */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001049
DRCe5eaf372014-05-09 18:00:32 +00001050 jpeg_mem_term(cinfo); /* system-dependent cleanup */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001051}
1052
1053
1054/*
1055 * Memory manager initialization.
1056 * When this is called, only the error manager pointer is valid in cinfo!
Thomas G. Lane4a6b7301992-03-17 00:00:00 +00001057 */
1058
Thomas G. Lane489583f1996-02-07 00:00:00 +00001059GLOBAL(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001060jinit_memory_mgr (j_common_ptr cinfo)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +00001061{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001062 my_mem_ptr mem;
1063 long max_to_use;
1064 int pool;
1065 size_t test_mac;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +00001066
DRCe5eaf372014-05-09 18:00:32 +00001067 cinfo->mem = NULL; /* for safety if init fails */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +00001068
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001069 /* Check for configuration errors.
DRC5de454b2014-05-18 19:04:03 +00001070 * sizeof(ALIGN_TYPE) should be a power of 2; otherwise, it probably
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001071 * doesn't reflect any real hardware alignment requirement.
1072 * The test is a little tricky: for X>0, X and X-1 have no one-bits
1073 * in common if and only if X is a power of 2, ie has only one one-bit.
1074 * Some compilers may give an "unreachable code" warning here; ignore it.
1075 */
Pierre Ossman5557fd22009-03-09 10:34:53 +00001076 if ((ALIGN_SIZE & (ALIGN_SIZE-1)) != 0)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001077 ERREXIT(cinfo, JERR_BAD_ALIGN_TYPE);
1078 /* MAX_ALLOC_CHUNK must be representable as type size_t, and must be
Pierre Ossman5557fd22009-03-09 10:34:53 +00001079 * a multiple of ALIGN_SIZE.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001080 * Again, an "unreachable code" warning may be ignored here.
1081 * But a "constant too large" warning means you need to fix MAX_ALLOC_CHUNK.
1082 */
1083 test_mac = (size_t) MAX_ALLOC_CHUNK;
1084 if ((long) test_mac != MAX_ALLOC_CHUNK ||
Pierre Ossman5557fd22009-03-09 10:34:53 +00001085 (MAX_ALLOC_CHUNK % ALIGN_SIZE) != 0)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001086 ERREXIT(cinfo, JERR_BAD_ALLOC_CHUNK);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +00001087
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001088 max_to_use = jpeg_mem_init(cinfo); /* system-dependent initialization */
1089
1090 /* Attempt to allocate memory manager's control block */
DRC5de454b2014-05-18 19:04:03 +00001091 mem = (my_mem_ptr) jpeg_get_small(cinfo, sizeof(my_memory_mgr));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001092
1093 if (mem == NULL) {
DRCe5eaf372014-05-09 18:00:32 +00001094 jpeg_mem_term(cinfo); /* system-dependent cleanup */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001095 ERREXIT1(cinfo, JERR_OUT_OF_MEMORY, 0);
1096 }
1097
1098 /* OK, fill in the method pointers */
1099 mem->pub.alloc_small = alloc_small;
1100 mem->pub.alloc_large = alloc_large;
1101 mem->pub.alloc_sarray = alloc_sarray;
1102 mem->pub.alloc_barray = alloc_barray;
1103 mem->pub.request_virt_sarray = request_virt_sarray;
1104 mem->pub.request_virt_barray = request_virt_barray;
1105 mem->pub.realize_virt_arrays = realize_virt_arrays;
1106 mem->pub.access_virt_sarray = access_virt_sarray;
1107 mem->pub.access_virt_barray = access_virt_barray;
1108 mem->pub.free_pool = free_pool;
1109 mem->pub.self_destruct = self_destruct;
1110
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001111 /* Make MAX_ALLOC_CHUNK accessible to other modules */
1112 mem->pub.max_alloc_chunk = MAX_ALLOC_CHUNK;
1113
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001114 /* Initialize working state */
1115 mem->pub.max_memory_to_use = max_to_use;
1116
1117 for (pool = JPOOL_NUMPOOLS-1; pool >= JPOOL_PERMANENT; pool--) {
1118 mem->small_list[pool] = NULL;
1119 mem->large_list[pool] = NULL;
1120 }
1121 mem->virt_sarray_list = NULL;
1122 mem->virt_barray_list = NULL;
1123
DRC5de454b2014-05-18 19:04:03 +00001124 mem->total_space_allocated = sizeof(my_memory_mgr);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001125
1126 /* Declare ourselves open for business */
1127 cinfo->mem = & mem->pub;
Thomas G. Lane88aeed41992-12-10 00:00:00 +00001128
1129 /* Check for an environment variable JPEGMEM; if found, override the
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001130 * default max_memory setting from jpeg_mem_init. Note that the
1131 * surrounding application may again override this value.
Thomas G. Lane88aeed41992-12-10 00:00:00 +00001132 * If your system doesn't support getenv(), define NO_GETENV to disable
1133 * this feature.
1134 */
1135#ifndef NO_GETENV
1136 { char * memenv;
1137
1138 if ((memenv = getenv("JPEGMEM")) != NULL) {
Thomas G. Lane88aeed41992-12-10 00:00:00 +00001139 char ch = 'x';
1140
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001141 if (sscanf(memenv, "%ld%c", &max_to_use, &ch) > 0) {
DRCe5eaf372014-05-09 18:00:32 +00001142 if (ch == 'm' || ch == 'M')
1143 max_to_use *= 1000L;
1144 mem->pub.max_memory_to_use = max_to_use * 1000L;
Thomas G. Lane88aeed41992-12-10 00:00:00 +00001145 }
1146 }
1147 }
1148#endif
1149
Thomas G. Lane4a6b7301992-03-17 00:00:00 +00001150}