blob: 4f7487022837d4bd094cc8656d1599653258bd7b [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.
DRC04dd34c2016-02-04 10:59:21 -06006 * libjpeg-turbo Modifications:
7 * Copyright (C) 2016, D. R. Commander.
DRC7e3acc02015-10-10 10:25:46 -05008 * For conditions of distribution and use, see the accompanying README.ijg
9 * file.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000010 *
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000011 * This file contains the JPEG system-independent memory management
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000012 * routines. This code is usable across a wide variety of machines; most
13 * of the system dependencies have been isolated in a separate file.
14 * The major functions provided here are:
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000015 * * pool-based allocation and freeing of memory;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000016 * * policy decisions about how to divide available memory among the
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000017 * virtual arrays;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000018 * * control logic for swapping virtual arrays between main memory and
19 * backing storage.
20 * The separate system-dependent file provides the actual backing-storage
21 * access code, and it contains the policy decision about how much total
22 * main memory to use.
23 * This file is system-dependent in the sense that some of its functions
24 * are unnecessary in some systems. For example, if there is enough virtual
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000025 * memory so that backing storage will never be used, much of the virtual
26 * array control logic could be removed. (Of course, if you have that much
27 * memory then you shouldn't care about a little bit of unused code...)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000028 */
29
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000030#define JPEG_INTERNALS
DRCe5eaf372014-05-09 18:00:32 +000031#define AM_MEMORY_MANAGER /* we define jvirt_Xarray_control structs */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000032#include "jinclude.h"
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000033#include "jpeglib.h"
DRCe5eaf372014-05-09 18:00:32 +000034#include "jmemsys.h" /* import the system-dependent declarations */
DRCa0047bd2016-10-04 13:25:34 -050035#ifndef _WIN32
DRCa09ba292016-09-07 16:40:10 -050036#include <stdint.h>
DRCa0047bd2016-10-04 13:25:34 -050037#endif
DRCdfefba72016-09-22 14:19:29 -050038#include <limits.h>
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000039
Thomas G. Lane88aeed41992-12-10 00:00:00 +000040#ifndef NO_GETENV
DRCe5eaf372014-05-09 18:00:32 +000041#ifndef HAVE_STDLIB_H /* <stdlib.h> should declare getenv() */
DRCbd498032016-02-19 08:53:33 -060042extern char *getenv (const char *name);
Thomas G. Lane88aeed41992-12-10 00:00:00 +000043#endif
44#endif
45
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000046
DRCa8eabfe2011-03-29 04:58:40 +000047LOCAL(size_t)
48round_up_pow2 (size_t a, size_t b)
49/* a rounded up to the next multiple of b, i.e. ceil(a/b)*b */
50/* Assumes a >= 0, b > 0, and b is a power of 2 */
51{
52 return ((a + b - 1) & (~(b - 1)));
53}
54
55
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000056/*
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000057 * Some important notes:
58 * The allocation routines provided here must never return NULL.
59 * They should exit to error_exit if unsuccessful.
60 *
61 * It's not a good idea to try to merge the sarray and barray routines,
62 * even though they are textually almost the same, because samples are
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000063 * usually stored as bytes while coefficients are shorts or ints. Thus,
64 * in machines where byte pointers have a different representation from
65 * word pointers, the resulting machine code could not be the same.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +000066 */
67
68
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000069/*
70 * Many machines require storage alignment: longs must start on 4-byte
71 * boundaries, doubles on 8-byte boundaries, etc. On such machines, malloc()
72 * always returns pointers that are multiples of the worst-case alignment
73 * requirement, and we had better do so too.
74 * There isn't any really portable way to determine the worst-case alignment
75 * requirement. This module assumes that the alignment requirement is
Pierre Ossman5557fd22009-03-09 10:34:53 +000076 * multiples of ALIGN_SIZE.
DRC271b0bf2016-02-04 10:08:38 -060077 * By default, we define ALIGN_SIZE as sizeof(double). This is necessary on
78 * some workstations (where doubles really do need 8-byte alignment) and will
79 * work fine on nearly everything. If your machine has lesser alignment needs,
Pierre Ossman5557fd22009-03-09 10:34:53 +000080 * you can save a few bytes by making ALIGN_SIZE smaller.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000081 * The only place I know of where this will NOT work is certain Macintosh
82 * 680x0 compilers that define double as a 10-byte IEEE extended float.
83 * Doing 10-byte alignment is counterproductive because longwords won't be
Pierre Ossman5557fd22009-03-09 10:34:53 +000084 * aligned well. Put "#define ALIGN_SIZE 4" in jconfig.h if you have
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000085 * such a compiler.
86 */
87
DRCe5eaf372014-05-09 18:00:32 +000088#ifndef ALIGN_SIZE /* so can override from jconfig.h */
Pierre Ossman73118302009-03-09 13:30:47 +000089#ifndef WITH_SIMD
DRC5de454b2014-05-18 19:04:03 +000090#define ALIGN_SIZE sizeof(double)
Pierre Ossman73118302009-03-09 13:30:47 +000091#else
DRC2cf199c2016-05-20 10:45:32 -050092#define ALIGN_SIZE 32 /* Most of the SIMD instructions we support require
93 16-byte (128-bit) alignment, but AVX2 requires
94 32-byte alignment. */
Pierre Ossman73118302009-03-09 13:30:47 +000095#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000096#endif
97
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +000098/*
99 * We allocate objects from "pools", where each pool is gotten with a single
100 * request to jpeg_get_small() or jpeg_get_large(). There is no per-object
101 * overhead within a pool, except for alignment padding. Each pool has a
102 * header with a link to the next pool of the same class.
DRC5033f3e2014-05-18 18:33:44 +0000103 * Small and large pool headers are identical.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000104 */
105
DRCbd498032016-02-19 08:53:33 -0600106typedef struct small_pool_struct *small_pool_ptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000107
Pierre Ossman5557fd22009-03-09 10:34:53 +0000108typedef struct small_pool_struct {
DRCe5eaf372014-05-09 18:00:32 +0000109 small_pool_ptr next; /* next in list of pools */
110 size_t bytes_used; /* how many bytes already used within pool */
111 size_t bytes_left; /* bytes still available in this pool */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000112} small_pool_hdr;
113
DRCbd498032016-02-19 08:53:33 -0600114typedef struct large_pool_struct *large_pool_ptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000115
Pierre Ossman5557fd22009-03-09 10:34:53 +0000116typedef struct large_pool_struct {
DRCe5eaf372014-05-09 18:00:32 +0000117 large_pool_ptr next; /* next in list of pools */
118 size_t bytes_used; /* how many bytes already used within pool */
119 size_t bytes_left; /* bytes still available in this pool */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000120} large_pool_hdr;
121
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000122/*
123 * Here is the full definition of a memory manager object.
124 */
125
126typedef struct {
DRCe5eaf372014-05-09 18:00:32 +0000127 struct jpeg_memory_mgr pub; /* public fields */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000128
129 /* Each pool identifier (lifetime class) names a linked list of pools. */
130 small_pool_ptr small_list[JPOOL_NUMPOOLS];
131 large_pool_ptr large_list[JPOOL_NUMPOOLS];
132
133 /* Since we only have one lifetime class of virtual arrays, only one
134 * linked list is necessary (for each datatype). Note that the virtual
135 * array control blocks being linked together are actually stored somewhere
136 * in the small-pool list.
137 */
138 jvirt_sarray_ptr virt_sarray_list;
139 jvirt_barray_ptr virt_barray_list;
140
141 /* This counts total space obtained from jpeg_get_small/large */
DRC04899092010-02-26 23:01:19 +0000142 size_t total_space_allocated;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000143
144 /* alloc_sarray and alloc_barray set this value for use by virtual
145 * array routines.
146 */
DRCe5eaf372014-05-09 18:00:32 +0000147 JDIMENSION last_rowsperchunk; /* from most recent alloc_sarray/barray */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000148} my_memory_mgr;
149
DRCbd498032016-02-19 08:53:33 -0600150typedef my_memory_mgr *my_mem_ptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000151
152
153/*
154 * The control blocks for virtual arrays.
155 * Note that these blocks are allocated in the "small" pool area.
156 * System-dependent info for the associated backing store (if any) is hidden
157 * inside the backing_store_info struct.
158 */
159
160struct jvirt_sarray_control {
DRCe5eaf372014-05-09 18:00:32 +0000161 JSAMPARRAY mem_buffer; /* => the in-memory buffer */
162 JDIMENSION rows_in_array; /* total virtual array height */
163 JDIMENSION samplesperrow; /* width of array (and of memory buffer) */
164 JDIMENSION maxaccess; /* max rows accessed by access_virt_sarray */
165 JDIMENSION rows_in_mem; /* height of memory buffer */
166 JDIMENSION rowsperchunk; /* allocation chunk size in mem_buffer */
167 JDIMENSION cur_start_row; /* first logical row # in the buffer */
168 JDIMENSION first_undef_row; /* row # of first uninitialized row */
169 boolean pre_zero; /* pre-zero mode requested? */
170 boolean dirty; /* do current buffer contents need written? */
171 boolean b_s_open; /* is backing-store data valid? */
172 jvirt_sarray_ptr next; /* link to next virtual sarray control block */
173 backing_store_info b_s_info; /* System-dependent control info */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000174};
175
176struct jvirt_barray_control {
DRCe5eaf372014-05-09 18:00:32 +0000177 JBLOCKARRAY mem_buffer; /* => the in-memory buffer */
178 JDIMENSION rows_in_array; /* total virtual array height */
179 JDIMENSION blocksperrow; /* width of array (and of memory buffer) */
180 JDIMENSION maxaccess; /* max rows accessed by access_virt_barray */
181 JDIMENSION rows_in_mem; /* height of memory buffer */
182 JDIMENSION rowsperchunk; /* allocation chunk size in mem_buffer */
183 JDIMENSION cur_start_row; /* first logical row # in the buffer */
184 JDIMENSION first_undef_row; /* row # of first uninitialized row */
185 boolean pre_zero; /* pre-zero mode requested? */
186 boolean dirty; /* do current buffer contents need written? */
187 boolean b_s_open; /* is backing-store data valid? */
188 jvirt_barray_ptr next; /* link to next virtual barray control block */
189 backing_store_info b_s_info; /* System-dependent control info */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000190};
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000191
192
DRCe5eaf372014-05-09 18:00:32 +0000193#ifdef MEM_STATS /* optional extra stuff for statistics */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000194
Thomas G. Lane489583f1996-02-07 00:00:00 +0000195LOCAL(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000196print_mem_stats (j_common_ptr cinfo, int pool_id)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000197{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000198 my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
199 small_pool_ptr shdr_ptr;
200 large_pool_ptr lhdr_ptr;
201
202 /* Since this is only a debugging stub, we can cheat a little by using
203 * fprintf directly rather than going through the trace message code.
204 * This is helpful because message parm array can't handle longs.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000205 */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000206 fprintf(stderr, "Freeing pool %d, total space = %ld\n",
DRCe5eaf372014-05-09 18:00:32 +0000207 pool_id, mem->total_space_allocated);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000208
209 for (lhdr_ptr = mem->large_list[pool_id]; lhdr_ptr != NULL;
Pierre Ossman5557fd22009-03-09 10:34:53 +0000210 lhdr_ptr = lhdr_ptr->next) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000211 fprintf(stderr, " Large chunk used %ld\n",
DRCe5eaf372014-05-09 18:00:32 +0000212 (long) lhdr_ptr->bytes_used);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000213 }
214
215 for (shdr_ptr = mem->small_list[pool_id]; shdr_ptr != NULL;
Pierre Ossman5557fd22009-03-09 10:34:53 +0000216 shdr_ptr = shdr_ptr->next) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000217 fprintf(stderr, " Small chunk used %ld free %ld\n",
DRCe5eaf372014-05-09 18:00:32 +0000218 (long) shdr_ptr->bytes_used,
219 (long) shdr_ptr->bytes_left);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000220 }
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000221}
222
223#endif /* MEM_STATS */
224
225
Thomas G. Lane489583f1996-02-07 00:00:00 +0000226LOCAL(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000227out_of_memory (j_common_ptr cinfo, int which)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000228/* Report an out-of-memory error and stop execution */
229/* If we compiled MEM_STATS support, report alloc requests before dying */
230{
231#ifdef MEM_STATS
DRCe5eaf372014-05-09 18:00:32 +0000232 cinfo->err->trace_level = 2; /* force self_destruct to report stats */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000233#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000234 ERREXIT1(cinfo, JERR_OUT_OF_MEMORY, which);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000235}
236
237
238/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000239 * Allocation of "small" objects.
240 *
241 * For these, we use pooled storage. When a new pool must be created,
242 * we try to get enough space for the current request plus a "slop" factor,
243 * where the slop will be the amount of leftover space in the new pool.
244 * The speed vs. space tradeoff is largely determined by the slop values.
245 * A different slop value is provided for each pool class (lifetime),
246 * and we also distinguish the first pool of a class from later ones.
247 * NOTE: the values given work fairly well on both 16- and 32-bit-int
248 * machines, but may be too small if longs are 64 bits or more.
Pierre Ossman5557fd22009-03-09 10:34:53 +0000249 *
250 * Since we do not know what alignment malloc() gives us, we have to
251 * allocate ALIGN_SIZE-1 extra space per pool to have room for alignment
252 * adjustment.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000253 */
254
DRCe5eaf372014-05-09 18:00:32 +0000255static const size_t first_pool_slop[JPOOL_NUMPOOLS] =
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000256{
DRCe5eaf372014-05-09 18:00:32 +0000257 1600, /* first PERMANENT pool */
258 16000 /* first IMAGE pool */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000259};
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000260
DRCe5eaf372014-05-09 18:00:32 +0000261static const size_t extra_pool_slop[JPOOL_NUMPOOLS] =
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000262{
DRCe5eaf372014-05-09 18:00:32 +0000263 0, /* additional PERMANENT pools */
264 5000 /* additional IMAGE pools */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000265};
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000266
DRCe5eaf372014-05-09 18:00:32 +0000267#define MIN_SLOP 50 /* greater than 0 to avoid futile looping */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000268
269
Thomas G. Lane489583f1996-02-07 00:00:00 +0000270METHODDEF(void *)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000271alloc_small (j_common_ptr cinfo, int pool_id, size_t sizeofobject)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000272/* Allocate a "small" object */
273{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000274 my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
275 small_pool_ptr hdr_ptr, prev_hdr_ptr;
DRCbd498032016-02-19 08:53:33 -0600276 char *data_ptr;
Pierre Ossman5557fd22009-03-09 10:34:53 +0000277 size_t min_request, slop;
278
279 /*
280 * Round up the requested size to a multiple of ALIGN_SIZE in order
281 * to assure alignment for the next object allocated in the same pool
282 * and so that algorithms can straddle outside the proper area up
283 * to the next alignment.
284 */
DRC04dd34c2016-02-04 10:59:21 -0600285 if (sizeofobject > MAX_ALLOC_CHUNK) {
286 /* This prevents overflow/wrap-around in round_up_pow2() if sizeofobject
287 is close to SIZE_MAX. */
288 out_of_memory(cinfo, 7);
289 }
DRCa8eabfe2011-03-29 04:58:40 +0000290 sizeofobject = round_up_pow2(sizeofobject, ALIGN_SIZE);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000291
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000292 /* Check for unsatisfiable request (do now to ensure no overflow below) */
DRC271b0bf2016-02-04 10:08:38 -0600293 if ((sizeof(small_pool_hdr) + sizeofobject + ALIGN_SIZE - 1) >
294 MAX_ALLOC_CHUNK)
DRCe5eaf372014-05-09 18:00:32 +0000295 out_of_memory(cinfo, 1); /* request exceeds malloc's ability */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000296
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000297 /* See if space is available in any existing pool */
298 if (pool_id < 0 || pool_id >= JPOOL_NUMPOOLS)
DRCe5eaf372014-05-09 18:00:32 +0000299 ERREXIT1(cinfo, JERR_BAD_POOL_ID, pool_id); /* safety check */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000300 prev_hdr_ptr = NULL;
301 hdr_ptr = mem->small_list[pool_id];
302 while (hdr_ptr != NULL) {
Pierre Ossman5557fd22009-03-09 10:34:53 +0000303 if (hdr_ptr->bytes_left >= sizeofobject)
DRCe5eaf372014-05-09 18:00:32 +0000304 break; /* found pool with enough space */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000305 prev_hdr_ptr = hdr_ptr;
Pierre Ossman5557fd22009-03-09 10:34:53 +0000306 hdr_ptr = hdr_ptr->next;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000307 }
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000308
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000309 /* Time to make a new pool? */
310 if (hdr_ptr == NULL) {
311 /* min_request is what we need now, slop is what will be leftover */
DRC5de454b2014-05-18 19:04:03 +0000312 min_request = sizeof(small_pool_hdr) + sizeofobject + ALIGN_SIZE - 1;
DRCe5eaf372014-05-09 18:00:32 +0000313 if (prev_hdr_ptr == NULL) /* first pool in class? */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000314 slop = first_pool_slop[pool_id];
315 else
316 slop = extra_pool_slop[pool_id];
317 /* Don't ask for more than MAX_ALLOC_CHUNK */
318 if (slop > (size_t) (MAX_ALLOC_CHUNK-min_request))
319 slop = (size_t) (MAX_ALLOC_CHUNK-min_request);
320 /* Try to get space, if fail reduce slop and try again */
321 for (;;) {
322 hdr_ptr = (small_pool_ptr) jpeg_get_small(cinfo, min_request + slop);
323 if (hdr_ptr != NULL)
DRCe5eaf372014-05-09 18:00:32 +0000324 break;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000325 slop /= 2;
DRCe5eaf372014-05-09 18:00:32 +0000326 if (slop < MIN_SLOP) /* give up when it gets real small */
327 out_of_memory(cinfo, 2); /* jpeg_get_small failed */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000328 }
329 mem->total_space_allocated += min_request + slop;
330 /* Success, initialize the new pool header and add to end of list */
Pierre Ossman5557fd22009-03-09 10:34:53 +0000331 hdr_ptr->next = NULL;
332 hdr_ptr->bytes_used = 0;
333 hdr_ptr->bytes_left = sizeofobject + slop;
DRCe5eaf372014-05-09 18:00:32 +0000334 if (prev_hdr_ptr == NULL) /* first pool in class? */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000335 mem->small_list[pool_id] = hdr_ptr;
336 else
Pierre Ossman5557fd22009-03-09 10:34:53 +0000337 prev_hdr_ptr->next = hdr_ptr;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000338 }
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000339
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000340 /* OK, allocate the object from the current pool */
Pierre Ossman5557fd22009-03-09 10:34:53 +0000341 data_ptr = (char *) hdr_ptr; /* point to first data byte in pool... */
DRC5de454b2014-05-18 19:04:03 +0000342 data_ptr += sizeof(small_pool_hdr); /* ...by skipping the header... */
DRC04899092010-02-26 23:01:19 +0000343 if ((size_t)data_ptr % ALIGN_SIZE) /* ...and adjust for alignment */
344 data_ptr += ALIGN_SIZE - (size_t)data_ptr % ALIGN_SIZE;
Pierre Ossman5557fd22009-03-09 10:34:53 +0000345 data_ptr += hdr_ptr->bytes_used; /* point to place for object */
346 hdr_ptr->bytes_used += sizeofobject;
347 hdr_ptr->bytes_left -= sizeofobject;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000348
349 return (void *) data_ptr;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000350}
351
352
353/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000354 * Allocation of "large" objects.
355 *
DRC5033f3e2014-05-18 18:33:44 +0000356 * The external semantics of these are the same as "small" objects. However,
357 * the pool management heuristics are quite different. We assume that each
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000358 * request is large enough that it may as well be passed directly to
359 * jpeg_get_large; the pool management just links everything together
360 * so that we can free it all on demand.
361 * Note: the major use of "large" objects is in JSAMPARRAY and JBLOCKARRAY
362 * structures. The routines that create these structures (see below)
363 * deliberately bunch rows together to ensure a large request size.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000364 */
365
DRC5033f3e2014-05-18 18:33:44 +0000366METHODDEF(void *)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000367alloc_large (j_common_ptr cinfo, int pool_id, size_t sizeofobject)
368/* Allocate a "large" object */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000369{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000370 my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
371 large_pool_ptr hdr_ptr;
DRCbd498032016-02-19 08:53:33 -0600372 char *data_ptr;
Pierre Ossman5557fd22009-03-09 10:34:53 +0000373
374 /*
375 * Round up the requested size to a multiple of ALIGN_SIZE so that
376 * algorithms can straddle outside the proper area up to the next
377 * alignment.
378 */
DRC04dd34c2016-02-04 10:59:21 -0600379 if (sizeofobject > MAX_ALLOC_CHUNK) {
380 /* This prevents overflow/wrap-around in round_up_pow2() if sizeofobject
381 is close to SIZE_MAX. */
382 out_of_memory(cinfo, 8);
383 }
DRCa8eabfe2011-03-29 04:58:40 +0000384 sizeofobject = round_up_pow2(sizeofobject, ALIGN_SIZE);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000385
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000386 /* Check for unsatisfiable request (do now to ensure no overflow below) */
DRC271b0bf2016-02-04 10:08:38 -0600387 if ((sizeof(large_pool_hdr) + sizeofobject + ALIGN_SIZE - 1) >
388 MAX_ALLOC_CHUNK)
DRCe5eaf372014-05-09 18:00:32 +0000389 out_of_memory(cinfo, 3); /* request exceeds malloc's ability */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000390
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000391 /* Always make a new pool */
392 if (pool_id < 0 || pool_id >= JPOOL_NUMPOOLS)
DRCe5eaf372014-05-09 18:00:32 +0000393 ERREXIT1(cinfo, JERR_BAD_POOL_ID, pool_id); /* safety check */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000394
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000395 hdr_ptr = (large_pool_ptr) jpeg_get_large(cinfo, sizeofobject +
DRC5de454b2014-05-18 19:04:03 +0000396 sizeof(large_pool_hdr) +
DRCe5eaf372014-05-09 18:00:32 +0000397 ALIGN_SIZE - 1);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000398 if (hdr_ptr == NULL)
DRCe5eaf372014-05-09 18:00:32 +0000399 out_of_memory(cinfo, 4); /* jpeg_get_large failed */
DRC271b0bf2016-02-04 10:08:38 -0600400 mem->total_space_allocated += sizeofobject + sizeof(large_pool_hdr) +
401 ALIGN_SIZE - 1;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000402
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000403 /* Success, initialize the new pool header and add to list */
Pierre Ossman5557fd22009-03-09 10:34:53 +0000404 hdr_ptr->next = mem->large_list[pool_id];
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000405 /* We maintain space counts in each pool header for statistical purposes,
406 * even though they are not needed for allocation.
407 */
Pierre Ossman5557fd22009-03-09 10:34:53 +0000408 hdr_ptr->bytes_used = sizeofobject;
409 hdr_ptr->bytes_left = 0;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000410 mem->large_list[pool_id] = hdr_ptr;
411
Pierre Ossman5557fd22009-03-09 10:34:53 +0000412 data_ptr = (char *) hdr_ptr; /* point to first data byte in pool... */
DRC5de454b2014-05-18 19:04:03 +0000413 data_ptr += sizeof(small_pool_hdr); /* ...by skipping the header... */
DRC04899092010-02-26 23:01:19 +0000414 if ((size_t)data_ptr % ALIGN_SIZE) /* ...and adjust for alignment */
415 data_ptr += ALIGN_SIZE - (size_t)data_ptr % ALIGN_SIZE;
Pierre Ossman5557fd22009-03-09 10:34:53 +0000416
DRC5033f3e2014-05-18 18:33:44 +0000417 return (void *) data_ptr;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000418}
419
420
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000421/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000422 * Creation of 2-D sample arrays.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000423 *
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000424 * To minimize allocation overhead and to allow I/O of large contiguous
425 * blocks, we allocate the sample rows in groups of as many rows as possible
426 * without exceeding MAX_ALLOC_CHUNK total bytes per allocation request.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000427 * NB: the virtual array control routines, later in this file, know about
428 * this chunking of rows. The rowsperchunk value is left in the mem manager
429 * object so that it can be saved away if this sarray is the workspace for
430 * a virtual array.
Pierre Ossman5557fd22009-03-09 10:34:53 +0000431 *
432 * Since we are often upsampling with a factor 2, we align the size (not
433 * the start) to 2 * ALIGN_SIZE so that the upsampling routines don't have
434 * to be as careful about size.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000435 */
436
Thomas G. Lane489583f1996-02-07 00:00:00 +0000437METHODDEF(JSAMPARRAY)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000438alloc_sarray (j_common_ptr cinfo, int pool_id,
DRCe5eaf372014-05-09 18:00:32 +0000439 JDIMENSION samplesperrow, JDIMENSION numrows)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000440/* Allocate a 2-D sample array */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000441{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000442 my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000443 JSAMPARRAY result;
444 JSAMPROW workspace;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000445 JDIMENSION rowsperchunk, currow, i;
446 long ltemp;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000447
Pierre Ossman5557fd22009-03-09 10:34:53 +0000448 /* Make sure each row is properly aligned */
DRC5de454b2014-05-18 19:04:03 +0000449 if ((ALIGN_SIZE % sizeof(JSAMPLE)) != 0)
DRCe5eaf372014-05-09 18:00:32 +0000450 out_of_memory(cinfo, 5); /* safety check */
DRC04dd34c2016-02-04 10:59:21 -0600451
452 if (samplesperrow > MAX_ALLOC_CHUNK) {
453 /* This prevents overflow/wrap-around in round_up_pow2() if sizeofobject
454 is close to SIZE_MAX. */
455 out_of_memory(cinfo, 9);
456 }
DRC271b0bf2016-02-04 10:08:38 -0600457 samplesperrow = (JDIMENSION)round_up_pow2(samplesperrow, (2 * ALIGN_SIZE) /
458 sizeof(JSAMPLE));
Pierre Ossman5557fd22009-03-09 10:34:53 +0000459
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000460 /* Calculate max # of rows allowed in one allocation chunk */
DRC5de454b2014-05-18 19:04:03 +0000461 ltemp = (MAX_ALLOC_CHUNK-sizeof(large_pool_hdr)) /
462 ((long) samplesperrow * sizeof(JSAMPLE));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000463 if (ltemp <= 0)
464 ERREXIT(cinfo, JERR_WIDTH_OVERFLOW);
465 if (ltemp < (long) numrows)
466 rowsperchunk = (JDIMENSION) ltemp;
467 else
468 rowsperchunk = numrows;
469 mem->last_rowsperchunk = rowsperchunk;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000470
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000471 /* Get space for row pointers (small object) */
472 result = (JSAMPARRAY) alloc_small(cinfo, pool_id,
DRC5de454b2014-05-18 19:04:03 +0000473 (size_t) (numrows * sizeof(JSAMPROW)));
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000474
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000475 /* Get the rows themselves (large objects) */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000476 currow = 0;
477 while (currow < numrows) {
478 rowsperchunk = MIN(rowsperchunk, numrows - currow);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000479 workspace = (JSAMPROW) alloc_large(cinfo, pool_id,
DRCe5eaf372014-05-09 18:00:32 +0000480 (size_t) ((size_t) rowsperchunk * (size_t) samplesperrow
DRC5de454b2014-05-18 19:04:03 +0000481 * sizeof(JSAMPLE)));
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000482 for (i = rowsperchunk; i > 0; i--) {
483 result[currow++] = workspace;
484 workspace += samplesperrow;
485 }
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000486 }
487
488 return result;
489}
490
491
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000492/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000493 * Creation of 2-D coefficient-block arrays.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000494 * This is essentially the same as the code for sample arrays, above.
495 */
496
Thomas G. Lane489583f1996-02-07 00:00:00 +0000497METHODDEF(JBLOCKARRAY)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000498alloc_barray (j_common_ptr cinfo, int pool_id,
DRCe5eaf372014-05-09 18:00:32 +0000499 JDIMENSION blocksperrow, JDIMENSION numrows)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000500/* Allocate a 2-D coefficient-block array */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000501{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000502 my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000503 JBLOCKARRAY result;
504 JBLOCKROW workspace;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000505 JDIMENSION rowsperchunk, currow, i;
506 long ltemp;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000507
Pierre Ossman5557fd22009-03-09 10:34:53 +0000508 /* Make sure each row is properly aligned */
DRC5de454b2014-05-18 19:04:03 +0000509 if ((sizeof(JBLOCK) % ALIGN_SIZE) != 0)
DRCe5eaf372014-05-09 18:00:32 +0000510 out_of_memory(cinfo, 6); /* safety check */
Pierre Ossman5557fd22009-03-09 10:34:53 +0000511
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000512 /* Calculate max # of rows allowed in one allocation chunk */
DRC5de454b2014-05-18 19:04:03 +0000513 ltemp = (MAX_ALLOC_CHUNK-sizeof(large_pool_hdr)) /
514 ((long) blocksperrow * sizeof(JBLOCK));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000515 if (ltemp <= 0)
516 ERREXIT(cinfo, JERR_WIDTH_OVERFLOW);
517 if (ltemp < (long) numrows)
518 rowsperchunk = (JDIMENSION) ltemp;
519 else
520 rowsperchunk = numrows;
521 mem->last_rowsperchunk = rowsperchunk;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000522
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000523 /* Get space for row pointers (small object) */
524 result = (JBLOCKARRAY) alloc_small(cinfo, pool_id,
DRC5de454b2014-05-18 19:04:03 +0000525 (size_t) (numrows * sizeof(JBLOCKROW)));
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000526
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000527 /* Get the rows themselves (large objects) */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000528 currow = 0;
529 while (currow < numrows) {
530 rowsperchunk = MIN(rowsperchunk, numrows - currow);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000531 workspace = (JBLOCKROW) alloc_large(cinfo, pool_id,
DRCe5eaf372014-05-09 18:00:32 +0000532 (size_t) ((size_t) rowsperchunk * (size_t) blocksperrow
DRC5de454b2014-05-18 19:04:03 +0000533 * sizeof(JBLOCK)));
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000534 for (i = rowsperchunk; i > 0; i--) {
535 result[currow++] = workspace;
536 workspace += blocksperrow;
537 }
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000538 }
539
540 return result;
541}
542
543
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000544/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000545 * About virtual array management:
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000546 *
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000547 * The above "normal" array routines are only used to allocate strip buffers
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000548 * (as wide as the image, but just a few rows high). Full-image-sized buffers
549 * are handled as "virtual" arrays. The array is still accessed a strip at a
550 * time, but the memory manager must save the whole array for repeated
551 * accesses. The intended implementation is that there is a strip buffer in
552 * memory (as high as is possible given the desired memory limit), plus a
553 * backing file that holds the rest of the array.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000554 *
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000555 * The request_virt_array routines are told the total size of the image and
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000556 * the maximum number of rows that will be accessed at once. The in-memory
557 * buffer must be at least as large as the maxaccess value.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000558 *
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000559 * The request routines create control blocks but not the in-memory buffers.
560 * That is postponed until realize_virt_arrays is called. At that time the
561 * total amount of space needed is known (approximately, anyway), so free
562 * memory can be divided up fairly.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000563 *
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000564 * The access_virt_array routines are responsible for making a specific strip
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000565 * area accessible (after reading or writing the backing file, if necessary).
566 * Note that the access routines are told whether the caller intends to modify
567 * the accessed strip; during a read-only pass this saves having to rewrite
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000568 * data to disk. The access routines are also responsible for pre-zeroing
569 * any newly accessed rows, if pre-zeroing was requested.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000570 *
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000571 * In current usage, the access requests are usually for nonoverlapping
572 * strips; that is, successive access start_row numbers differ by exactly
573 * num_rows = maxaccess. This means we can get good performance with simple
574 * buffer dump/reload logic, by making the in-memory buffer be a multiple
575 * of the access height; then there will never be accesses across bufferload
576 * boundaries. The code will still work with overlapping access requests,
577 * but it doesn't handle bufferload overlaps very efficiently.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000578 */
579
580
Thomas G. Lane489583f1996-02-07 00:00:00 +0000581METHODDEF(jvirt_sarray_ptr)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000582request_virt_sarray (j_common_ptr cinfo, int pool_id, boolean pre_zero,
DRCe5eaf372014-05-09 18:00:32 +0000583 JDIMENSION samplesperrow, JDIMENSION numrows,
584 JDIMENSION maxaccess)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000585/* Request a virtual 2-D sample array */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000586{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000587 my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
588 jvirt_sarray_ptr result;
589
590 /* Only IMAGE-lifetime virtual arrays are currently supported */
591 if (pool_id != JPOOL_IMAGE)
DRCe5eaf372014-05-09 18:00:32 +0000592 ERREXIT1(cinfo, JERR_BAD_POOL_ID, pool_id); /* safety check */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000593
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000594 /* get control block */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000595 result = (jvirt_sarray_ptr) alloc_small(cinfo, pool_id,
DRC5de454b2014-05-18 19:04:03 +0000596 sizeof(struct jvirt_sarray_control));
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000597
DRCe5eaf372014-05-09 18:00:32 +0000598 result->mem_buffer = NULL; /* marks array not yet realized */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000599 result->rows_in_array = numrows;
600 result->samplesperrow = samplesperrow;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000601 result->maxaccess = maxaccess;
602 result->pre_zero = pre_zero;
DRCe5eaf372014-05-09 18:00:32 +0000603 result->b_s_open = FALSE; /* no associated backing-store object */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000604 result->next = mem->virt_sarray_list; /* add to list of virtual arrays */
605 mem->virt_sarray_list = result;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000606
607 return result;
608}
609
610
Thomas G. Lane489583f1996-02-07 00:00:00 +0000611METHODDEF(jvirt_barray_ptr)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000612request_virt_barray (j_common_ptr cinfo, int pool_id, boolean pre_zero,
DRCe5eaf372014-05-09 18:00:32 +0000613 JDIMENSION blocksperrow, JDIMENSION numrows,
614 JDIMENSION maxaccess)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000615/* Request a virtual 2-D coefficient-block array */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000616{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000617 my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
618 jvirt_barray_ptr result;
619
620 /* Only IMAGE-lifetime virtual arrays are currently supported */
621 if (pool_id != JPOOL_IMAGE)
DRCe5eaf372014-05-09 18:00:32 +0000622 ERREXIT1(cinfo, JERR_BAD_POOL_ID, pool_id); /* safety check */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000623
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000624 /* get control block */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000625 result = (jvirt_barray_ptr) alloc_small(cinfo, pool_id,
DRC5de454b2014-05-18 19:04:03 +0000626 sizeof(struct jvirt_barray_control));
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000627
DRCe5eaf372014-05-09 18:00:32 +0000628 result->mem_buffer = NULL; /* marks array not yet realized */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000629 result->rows_in_array = numrows;
630 result->blocksperrow = blocksperrow;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000631 result->maxaccess = maxaccess;
632 result->pre_zero = pre_zero;
DRCe5eaf372014-05-09 18:00:32 +0000633 result->b_s_open = FALSE; /* no associated backing-store object */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000634 result->next = mem->virt_barray_list; /* add to list of virtual arrays */
635 mem->virt_barray_list = result;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000636
637 return result;
638}
639
640
Thomas G. Lane489583f1996-02-07 00:00:00 +0000641METHODDEF(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000642realize_virt_arrays (j_common_ptr cinfo)
643/* Allocate the in-memory buffers for any unrealized virtual arrays */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000644{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000645 my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
DRC04899092010-02-26 23:01:19 +0000646 size_t space_per_minheight, maximum_space, avail_mem;
647 size_t minheights, max_minheights;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000648 jvirt_sarray_ptr sptr;
649 jvirt_barray_ptr bptr;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000650
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000651 /* Compute the minimum space needed (maxaccess rows in each buffer)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000652 * and the maximum space needed (full image height in each buffer).
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000653 * These may be of use to the system-dependent jpeg_mem_available routine.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000654 */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000655 space_per_minheight = 0;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000656 maximum_space = 0;
657 for (sptr = mem->virt_sarray_list; sptr != NULL; sptr = sptr->next) {
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000658 if (sptr->mem_buffer == NULL) { /* if not realized yet */
DRCa09ba292016-09-07 16:40:10 -0500659 size_t new_space = (long) sptr->rows_in_array *
660 (long) sptr->samplesperrow * sizeof(JSAMPLE);
661
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000662 space_per_minheight += (long) sptr->maxaccess *
DRC5de454b2014-05-18 19:04:03 +0000663 (long) sptr->samplesperrow * sizeof(JSAMPLE);
DRCa09ba292016-09-07 16:40:10 -0500664 if (SIZE_MAX - maximum_space < new_space)
665 out_of_memory(cinfo, 10);
666 maximum_space += new_space;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000667 }
668 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000669 for (bptr = mem->virt_barray_list; bptr != NULL; bptr = bptr->next) {
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000670 if (bptr->mem_buffer == NULL) { /* if not realized yet */
DRCa09ba292016-09-07 16:40:10 -0500671 size_t new_space = (long) bptr->rows_in_array *
672 (long) bptr->blocksperrow * sizeof(JBLOCK);
673
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000674 space_per_minheight += (long) bptr->maxaccess *
DRC5de454b2014-05-18 19:04:03 +0000675 (long) bptr->blocksperrow * sizeof(JBLOCK);
DRCa09ba292016-09-07 16:40:10 -0500676 if (SIZE_MAX - maximum_space < new_space)
677 out_of_memory(cinfo, 11);
678 maximum_space += new_space;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000679 }
680 }
681
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000682 if (space_per_minheight <= 0)
DRCe5eaf372014-05-09 18:00:32 +0000683 return; /* no unrealized arrays, no work */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000684
685 /* Determine amount of memory to actually use; this is system-dependent. */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000686 avail_mem = jpeg_mem_available(cinfo, space_per_minheight, maximum_space,
DRCe5eaf372014-05-09 18:00:32 +0000687 mem->total_space_allocated);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000688
689 /* If the maximum space needed is available, make all the buffers full
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000690 * height; otherwise parcel it out with the same number of minheights
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000691 * in each buffer.
692 */
693 if (avail_mem >= maximum_space)
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000694 max_minheights = 1000000000L;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000695 else {
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000696 max_minheights = avail_mem / space_per_minheight;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000697 /* If there doesn't seem to be enough space, try to get the minimum
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000698 * anyway. This allows a "stub" implementation of jpeg_mem_available().
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000699 */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000700 if (max_minheights <= 0)
701 max_minheights = 1;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000702 }
703
704 /* Allocate the in-memory buffers and initialize backing store as needed. */
705
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000706 for (sptr = mem->virt_sarray_list; sptr != NULL; sptr = sptr->next) {
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000707 if (sptr->mem_buffer == NULL) { /* if not realized yet */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000708 minheights = ((long) sptr->rows_in_array - 1L) / sptr->maxaccess + 1L;
709 if (minheights <= max_minheights) {
DRCe5eaf372014-05-09 18:00:32 +0000710 /* This buffer fits in memory */
711 sptr->rows_in_mem = sptr->rows_in_array;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000712 } else {
DRCe5eaf372014-05-09 18:00:32 +0000713 /* It doesn't fit in memory, create backing store. */
714 sptr->rows_in_mem = (JDIMENSION) (max_minheights * sptr->maxaccess);
715 jpeg_open_backing_store(cinfo, & sptr->b_s_info,
716 (long) sptr->rows_in_array *
717 (long) sptr->samplesperrow *
DRC5de454b2014-05-18 19:04:03 +0000718 (long) sizeof(JSAMPLE));
DRCe5eaf372014-05-09 18:00:32 +0000719 sptr->b_s_open = TRUE;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000720 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000721 sptr->mem_buffer = alloc_sarray(cinfo, JPOOL_IMAGE,
DRCe5eaf372014-05-09 18:00:32 +0000722 sptr->samplesperrow, sptr->rows_in_mem);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000723 sptr->rowsperchunk = mem->last_rowsperchunk;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000724 sptr->cur_start_row = 0;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000725 sptr->first_undef_row = 0;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000726 sptr->dirty = FALSE;
727 }
728 }
729
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000730 for (bptr = mem->virt_barray_list; bptr != NULL; bptr = bptr->next) {
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000731 if (bptr->mem_buffer == NULL) { /* if not realized yet */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000732 minheights = ((long) bptr->rows_in_array - 1L) / bptr->maxaccess + 1L;
733 if (minheights <= max_minheights) {
DRCe5eaf372014-05-09 18:00:32 +0000734 /* This buffer fits in memory */
735 bptr->rows_in_mem = bptr->rows_in_array;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000736 } else {
DRCe5eaf372014-05-09 18:00:32 +0000737 /* It doesn't fit in memory, create backing store. */
738 bptr->rows_in_mem = (JDIMENSION) (max_minheights * bptr->maxaccess);
739 jpeg_open_backing_store(cinfo, & bptr->b_s_info,
740 (long) bptr->rows_in_array *
741 (long) bptr->blocksperrow *
DRC5de454b2014-05-18 19:04:03 +0000742 (long) sizeof(JBLOCK));
DRCe5eaf372014-05-09 18:00:32 +0000743 bptr->b_s_open = TRUE;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000744 }
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000745 bptr->mem_buffer = alloc_barray(cinfo, JPOOL_IMAGE,
DRCe5eaf372014-05-09 18:00:32 +0000746 bptr->blocksperrow, bptr->rows_in_mem);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000747 bptr->rowsperchunk = mem->last_rowsperchunk;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000748 bptr->cur_start_row = 0;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000749 bptr->first_undef_row = 0;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000750 bptr->dirty = FALSE;
751 }
752 }
753}
754
755
Thomas G. Lane489583f1996-02-07 00:00:00 +0000756LOCAL(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000757do_sarray_io (j_common_ptr cinfo, jvirt_sarray_ptr ptr, boolean writing)
758/* Do backing store read or write of a virtual sample array */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000759{
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000760 long bytesperrow, file_offset, byte_count, rows, thisrow, i;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000761
DRC5de454b2014-05-18 19:04:03 +0000762 bytesperrow = (long) ptr->samplesperrow * sizeof(JSAMPLE);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000763 file_offset = ptr->cur_start_row * bytesperrow;
764 /* Loop to read or write each allocation chunk in mem_buffer */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000765 for (i = 0; i < (long) ptr->rows_in_mem; i += ptr->rowsperchunk) {
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000766 /* One chunk, but check for short chunk at end of buffer */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000767 rows = MIN((long) ptr->rowsperchunk, (long) ptr->rows_in_mem - i);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000768 /* Transfer no more than is currently defined */
769 thisrow = (long) ptr->cur_start_row + i;
770 rows = MIN(rows, (long) ptr->first_undef_row - thisrow);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000771 /* Transfer no more than fits in file */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000772 rows = MIN(rows, (long) ptr->rows_in_array - thisrow);
DRCe5eaf372014-05-09 18:00:32 +0000773 if (rows <= 0) /* this chunk might be past end of file! */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000774 break;
775 byte_count = rows * bytesperrow;
776 if (writing)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000777 (*ptr->b_s_info.write_backing_store) (cinfo, & ptr->b_s_info,
DRC5033f3e2014-05-18 18:33:44 +0000778 (void *) ptr->mem_buffer[i],
DRCe5eaf372014-05-09 18:00:32 +0000779 file_offset, byte_count);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000780 else
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000781 (*ptr->b_s_info.read_backing_store) (cinfo, & ptr->b_s_info,
DRC5033f3e2014-05-18 18:33:44 +0000782 (void *) ptr->mem_buffer[i],
DRCe5eaf372014-05-09 18:00:32 +0000783 file_offset, byte_count);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000784 file_offset += byte_count;
785 }
786}
787
788
Thomas G. Lane489583f1996-02-07 00:00:00 +0000789LOCAL(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000790do_barray_io (j_common_ptr cinfo, jvirt_barray_ptr ptr, boolean writing)
791/* Do backing store read or write of a virtual coefficient-block array */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000792{
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000793 long bytesperrow, file_offset, byte_count, rows, thisrow, i;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000794
DRC5de454b2014-05-18 19:04:03 +0000795 bytesperrow = (long) ptr->blocksperrow * sizeof(JBLOCK);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000796 file_offset = ptr->cur_start_row * bytesperrow;
797 /* Loop to read or write each allocation chunk in mem_buffer */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000798 for (i = 0; i < (long) ptr->rows_in_mem; i += ptr->rowsperchunk) {
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000799 /* One chunk, but check for short chunk at end of buffer */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000800 rows = MIN((long) ptr->rowsperchunk, (long) ptr->rows_in_mem - i);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000801 /* Transfer no more than is currently defined */
802 thisrow = (long) ptr->cur_start_row + i;
803 rows = MIN(rows, (long) ptr->first_undef_row - thisrow);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000804 /* Transfer no more than fits in file */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000805 rows = MIN(rows, (long) ptr->rows_in_array - thisrow);
DRCe5eaf372014-05-09 18:00:32 +0000806 if (rows <= 0) /* this chunk might be past end of file! */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000807 break;
808 byte_count = rows * bytesperrow;
809 if (writing)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000810 (*ptr->b_s_info.write_backing_store) (cinfo, & ptr->b_s_info,
DRC5033f3e2014-05-18 18:33:44 +0000811 (void *) ptr->mem_buffer[i],
DRCe5eaf372014-05-09 18:00:32 +0000812 file_offset, byte_count);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000813 else
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000814 (*ptr->b_s_info.read_backing_store) (cinfo, & ptr->b_s_info,
DRC5033f3e2014-05-18 18:33:44 +0000815 (void *) ptr->mem_buffer[i],
DRCe5eaf372014-05-09 18:00:32 +0000816 file_offset, byte_count);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000817 file_offset += byte_count;
818 }
819}
820
821
Thomas G. Lane489583f1996-02-07 00:00:00 +0000822METHODDEF(JSAMPARRAY)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000823access_virt_sarray (j_common_ptr cinfo, jvirt_sarray_ptr ptr,
DRCe5eaf372014-05-09 18:00:32 +0000824 JDIMENSION start_row, JDIMENSION num_rows,
825 boolean writable)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000826/* Access the part of a virtual sample array starting at start_row */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000827/* and extending for num_rows rows. writable is true if */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000828/* caller intends to modify the accessed area. */
829{
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000830 JDIMENSION end_row = start_row + num_rows;
831 JDIMENSION undef_row;
832
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000833 /* debugging check */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000834 if (end_row > ptr->rows_in_array || num_rows > ptr->maxaccess ||
835 ptr->mem_buffer == NULL)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000836 ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000837
838 /* Make the desired part of the virtual array accessible */
839 if (start_row < ptr->cur_start_row ||
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000840 end_row > ptr->cur_start_row+ptr->rows_in_mem) {
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000841 if (! ptr->b_s_open)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000842 ERREXIT(cinfo, JERR_VIRTUAL_BUG);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000843 /* Flush old buffer contents if necessary */
844 if (ptr->dirty) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000845 do_sarray_io(cinfo, ptr, TRUE);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000846 ptr->dirty = FALSE;
847 }
848 /* Decide what part of virtual array to access.
849 * Algorithm: if target address > current window, assume forward scan,
850 * load starting at target address. If target address < current window,
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000851 * assume backward scan, load so that target area is top of window.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000852 * Note that when switching from forward write to forward read, will have
853 * start_row = 0, so the limiting case applies and we load from 0 anyway.
854 */
855 if (start_row > ptr->cur_start_row) {
856 ptr->cur_start_row = start_row;
857 } else {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000858 /* use long arithmetic here to avoid overflow & unsigned problems */
859 long ltemp;
860
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000861 ltemp = (long) end_row - (long) ptr->rows_in_mem;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000862 if (ltemp < 0)
DRCe5eaf372014-05-09 18:00:32 +0000863 ltemp = 0; /* don't fall off front end of file */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000864 ptr->cur_start_row = (JDIMENSION) ltemp;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000865 }
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000866 /* Read in the selected part of the array.
867 * During the initial write pass, we will do no actual read
868 * because the selected part is all undefined.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000869 */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000870 do_sarray_io(cinfo, ptr, FALSE);
871 }
872 /* Ensure the accessed part of the array is defined; prezero if needed.
873 * To improve locality of access, we only prezero the part of the array
874 * that the caller is about to access, not the entire in-memory array.
875 */
876 if (ptr->first_undef_row < end_row) {
877 if (ptr->first_undef_row < start_row) {
DRCe5eaf372014-05-09 18:00:32 +0000878 if (writable) /* writer skipped over a section of array */
879 ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS);
880 undef_row = start_row; /* but reader is allowed to read ahead */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000881 } else {
882 undef_row = ptr->first_undef_row;
883 }
884 if (writable)
885 ptr->first_undef_row = end_row;
886 if (ptr->pre_zero) {
DRC5de454b2014-05-18 19:04:03 +0000887 size_t bytesperrow = (size_t) ptr->samplesperrow * sizeof(JSAMPLE);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000888 undef_row -= ptr->cur_start_row; /* make indexes relative to buffer */
889 end_row -= ptr->cur_start_row;
890 while (undef_row < end_row) {
DRC5033f3e2014-05-18 18:33:44 +0000891 jzero_far((void *) ptr->mem_buffer[undef_row], bytesperrow);
DRCe5eaf372014-05-09 18:00:32 +0000892 undef_row++;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000893 }
894 } else {
DRCe5eaf372014-05-09 18:00:32 +0000895 if (! writable) /* reader looking at undefined data */
896 ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000897 }
898 }
899 /* Flag the buffer dirty if caller will write in it */
900 if (writable)
901 ptr->dirty = TRUE;
902 /* Return address of proper part of the buffer */
903 return ptr->mem_buffer + (start_row - ptr->cur_start_row);
904}
905
906
Thomas G. Lane489583f1996-02-07 00:00:00 +0000907METHODDEF(JBLOCKARRAY)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000908access_virt_barray (j_common_ptr cinfo, jvirt_barray_ptr ptr,
DRCe5eaf372014-05-09 18:00:32 +0000909 JDIMENSION start_row, JDIMENSION num_rows,
910 boolean writable)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000911/* Access the part of a virtual block array starting at start_row */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000912/* and extending for num_rows rows. writable is true if */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000913/* caller intends to modify the accessed area. */
914{
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000915 JDIMENSION end_row = start_row + num_rows;
916 JDIMENSION undef_row;
917
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000918 /* debugging check */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000919 if (end_row > ptr->rows_in_array || num_rows > ptr->maxaccess ||
920 ptr->mem_buffer == NULL)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000921 ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000922
923 /* Make the desired part of the virtual array accessible */
924 if (start_row < ptr->cur_start_row ||
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000925 end_row > ptr->cur_start_row+ptr->rows_in_mem) {
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000926 if (! ptr->b_s_open)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000927 ERREXIT(cinfo, JERR_VIRTUAL_BUG);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000928 /* Flush old buffer contents if necessary */
929 if (ptr->dirty) {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000930 do_barray_io(cinfo, ptr, TRUE);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000931 ptr->dirty = FALSE;
932 }
933 /* Decide what part of virtual array to access.
934 * Algorithm: if target address > current window, assume forward scan,
935 * load starting at target address. If target address < current window,
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000936 * assume backward scan, load so that target area is top of window.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000937 * Note that when switching from forward write to forward read, will have
938 * start_row = 0, so the limiting case applies and we load from 0 anyway.
939 */
940 if (start_row > ptr->cur_start_row) {
941 ptr->cur_start_row = start_row;
942 } else {
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000943 /* use long arithmetic here to avoid overflow & unsigned problems */
944 long ltemp;
945
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000946 ltemp = (long) end_row - (long) ptr->rows_in_mem;
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000947 if (ltemp < 0)
DRCe5eaf372014-05-09 18:00:32 +0000948 ltemp = 0; /* don't fall off front end of file */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000949 ptr->cur_start_row = (JDIMENSION) ltemp;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000950 }
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000951 /* Read in the selected part of the array.
952 * During the initial write pass, we will do no actual read
953 * because the selected part is all undefined.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000954 */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000955 do_barray_io(cinfo, ptr, FALSE);
956 }
957 /* Ensure the accessed part of the array is defined; prezero if needed.
958 * To improve locality of access, we only prezero the part of the array
959 * that the caller is about to access, not the entire in-memory array.
960 */
961 if (ptr->first_undef_row < end_row) {
962 if (ptr->first_undef_row < start_row) {
DRCe5eaf372014-05-09 18:00:32 +0000963 if (writable) /* writer skipped over a section of array */
964 ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS);
965 undef_row = start_row; /* but reader is allowed to read ahead */
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000966 } else {
967 undef_row = ptr->first_undef_row;
968 }
969 if (writable)
970 ptr->first_undef_row = end_row;
971 if (ptr->pre_zero) {
DRC5de454b2014-05-18 19:04:03 +0000972 size_t bytesperrow = (size_t) ptr->blocksperrow * sizeof(JBLOCK);
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000973 undef_row -= ptr->cur_start_row; /* make indexes relative to buffer */
974 end_row -= ptr->cur_start_row;
975 while (undef_row < end_row) {
DRC5033f3e2014-05-18 18:33:44 +0000976 jzero_far((void *) ptr->mem_buffer[undef_row], bytesperrow);
DRCe5eaf372014-05-09 18:00:32 +0000977 undef_row++;
Thomas G. Lanebc79e061995-08-02 00:00:00 +0000978 }
979 } else {
DRCe5eaf372014-05-09 18:00:32 +0000980 if (! writable) /* reader looking at undefined data */
981 ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000982 }
983 }
984 /* Flag the buffer dirty if caller will write in it */
985 if (writable)
986 ptr->dirty = TRUE;
987 /* Return address of proper part of the buffer */
988 return ptr->mem_buffer + (start_row - ptr->cur_start_row);
989}
990
991
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000992/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000993 * Release all objects belonging to a specified pool.
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000994 */
995
Thomas G. Lane489583f1996-02-07 00:00:00 +0000996METHODDEF(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000997free_pool (j_common_ptr cinfo, int pool_id)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +0000998{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +0000999 my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
1000 small_pool_ptr shdr_ptr;
1001 large_pool_ptr lhdr_ptr;
1002 size_t space_freed;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +00001003
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001004 if (pool_id < 0 || pool_id >= JPOOL_NUMPOOLS)
DRCe5eaf372014-05-09 18:00:32 +00001005 ERREXIT1(cinfo, JERR_BAD_POOL_ID, pool_id); /* safety check */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +00001006
1007#ifdef MEM_STATS
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001008 if (cinfo->err->trace_level > 1)
1009 print_mem_stats(cinfo, pool_id); /* print pool's memory usage statistics */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +00001010#endif
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001011
1012 /* If freeing IMAGE pool, close any virtual arrays first */
1013 if (pool_id == JPOOL_IMAGE) {
1014 jvirt_sarray_ptr sptr;
1015 jvirt_barray_ptr bptr;
1016
1017 for (sptr = mem->virt_sarray_list; sptr != NULL; sptr = sptr->next) {
DRCe5eaf372014-05-09 18:00:32 +00001018 if (sptr->b_s_open) { /* there may be no backing store */
1019 sptr->b_s_open = FALSE; /* prevent recursive close if error */
1020 (*sptr->b_s_info.close_backing_store) (cinfo, & sptr->b_s_info);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001021 }
1022 }
1023 mem->virt_sarray_list = NULL;
1024 for (bptr = mem->virt_barray_list; bptr != NULL; bptr = bptr->next) {
DRCe5eaf372014-05-09 18:00:32 +00001025 if (bptr->b_s_open) { /* there may be no backing store */
1026 bptr->b_s_open = FALSE; /* prevent recursive close if error */
1027 (*bptr->b_s_info.close_backing_store) (cinfo, & bptr->b_s_info);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001028 }
1029 }
1030 mem->virt_barray_list = NULL;
1031 }
1032
1033 /* Release large objects */
1034 lhdr_ptr = mem->large_list[pool_id];
1035 mem->large_list[pool_id] = NULL;
1036
1037 while (lhdr_ptr != NULL) {
Pierre Ossman5557fd22009-03-09 10:34:53 +00001038 large_pool_ptr next_lhdr_ptr = lhdr_ptr->next;
1039 space_freed = lhdr_ptr->bytes_used +
DRCe5eaf372014-05-09 18:00:32 +00001040 lhdr_ptr->bytes_left +
DRC5de454b2014-05-18 19:04:03 +00001041 sizeof(large_pool_hdr);
DRC5033f3e2014-05-18 18:33:44 +00001042 jpeg_free_large(cinfo, (void *) lhdr_ptr, space_freed);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001043 mem->total_space_allocated -= space_freed;
1044 lhdr_ptr = next_lhdr_ptr;
1045 }
1046
1047 /* Release small objects */
1048 shdr_ptr = mem->small_list[pool_id];
1049 mem->small_list[pool_id] = NULL;
1050
1051 while (shdr_ptr != NULL) {
Pierre Ossman5557fd22009-03-09 10:34:53 +00001052 small_pool_ptr next_shdr_ptr = shdr_ptr->next;
1053 space_freed = shdr_ptr->bytes_used +
DRCe5eaf372014-05-09 18:00:32 +00001054 shdr_ptr->bytes_left +
DRC5de454b2014-05-18 19:04:03 +00001055 sizeof(small_pool_hdr);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001056 jpeg_free_small(cinfo, (void *) shdr_ptr, space_freed);
1057 mem->total_space_allocated -= space_freed;
1058 shdr_ptr = next_shdr_ptr;
1059 }
Thomas G. Lane4a6b7301992-03-17 00:00:00 +00001060}
1061
1062
1063/*
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001064 * Close up shop entirely.
1065 * Note that this cannot be called unless cinfo->mem is non-NULL.
1066 */
1067
Thomas G. Lane489583f1996-02-07 00:00:00 +00001068METHODDEF(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001069self_destruct (j_common_ptr cinfo)
1070{
1071 int pool;
1072
1073 /* Close all backing store, release all memory.
1074 * Releasing pools in reverse order might help avoid fragmentation
1075 * with some (brain-damaged) malloc libraries.
1076 */
1077 for (pool = JPOOL_NUMPOOLS-1; pool >= JPOOL_PERMANENT; pool--) {
1078 free_pool(cinfo, pool);
1079 }
1080
1081 /* Release the memory manager control block too. */
DRC5de454b2014-05-18 19:04:03 +00001082 jpeg_free_small(cinfo, (void *) cinfo->mem, sizeof(my_memory_mgr));
DRCe5eaf372014-05-09 18:00:32 +00001083 cinfo->mem = NULL; /* ensures I will be called only once */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001084
DRCe5eaf372014-05-09 18:00:32 +00001085 jpeg_mem_term(cinfo); /* system-dependent cleanup */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001086}
1087
1088
1089/*
1090 * Memory manager initialization.
1091 * When this is called, only the error manager pointer is valid in cinfo!
Thomas G. Lane4a6b7301992-03-17 00:00:00 +00001092 */
1093
Thomas G. Lane489583f1996-02-07 00:00:00 +00001094GLOBAL(void)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001095jinit_memory_mgr (j_common_ptr cinfo)
Thomas G. Lane4a6b7301992-03-17 00:00:00 +00001096{
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001097 my_mem_ptr mem;
1098 long max_to_use;
1099 int pool;
1100 size_t test_mac;
Thomas G. Lane4a6b7301992-03-17 00:00:00 +00001101
DRCe5eaf372014-05-09 18:00:32 +00001102 cinfo->mem = NULL; /* for safety if init fails */
Thomas G. Lane4a6b7301992-03-17 00:00:00 +00001103
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001104 /* Check for configuration errors.
DRC5de454b2014-05-18 19:04:03 +00001105 * sizeof(ALIGN_TYPE) should be a power of 2; otherwise, it probably
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001106 * doesn't reflect any real hardware alignment requirement.
1107 * The test is a little tricky: for X>0, X and X-1 have no one-bits
1108 * in common if and only if X is a power of 2, ie has only one one-bit.
1109 * Some compilers may give an "unreachable code" warning here; ignore it.
1110 */
Pierre Ossman5557fd22009-03-09 10:34:53 +00001111 if ((ALIGN_SIZE & (ALIGN_SIZE-1)) != 0)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001112 ERREXIT(cinfo, JERR_BAD_ALIGN_TYPE);
1113 /* MAX_ALLOC_CHUNK must be representable as type size_t, and must be
Pierre Ossman5557fd22009-03-09 10:34:53 +00001114 * a multiple of ALIGN_SIZE.
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001115 * Again, an "unreachable code" warning may be ignored here.
1116 * But a "constant too large" warning means you need to fix MAX_ALLOC_CHUNK.
1117 */
1118 test_mac = (size_t) MAX_ALLOC_CHUNK;
1119 if ((long) test_mac != MAX_ALLOC_CHUNK ||
Pierre Ossman5557fd22009-03-09 10:34:53 +00001120 (MAX_ALLOC_CHUNK % ALIGN_SIZE) != 0)
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001121 ERREXIT(cinfo, JERR_BAD_ALLOC_CHUNK);
Thomas G. Lane4a6b7301992-03-17 00:00:00 +00001122
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001123 max_to_use = jpeg_mem_init(cinfo); /* system-dependent initialization */
1124
1125 /* Attempt to allocate memory manager's control block */
DRC5de454b2014-05-18 19:04:03 +00001126 mem = (my_mem_ptr) jpeg_get_small(cinfo, sizeof(my_memory_mgr));
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001127
1128 if (mem == NULL) {
DRCe5eaf372014-05-09 18:00:32 +00001129 jpeg_mem_term(cinfo); /* system-dependent cleanup */
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001130 ERREXIT1(cinfo, JERR_OUT_OF_MEMORY, 0);
1131 }
1132
1133 /* OK, fill in the method pointers */
1134 mem->pub.alloc_small = alloc_small;
1135 mem->pub.alloc_large = alloc_large;
1136 mem->pub.alloc_sarray = alloc_sarray;
1137 mem->pub.alloc_barray = alloc_barray;
1138 mem->pub.request_virt_sarray = request_virt_sarray;
1139 mem->pub.request_virt_barray = request_virt_barray;
1140 mem->pub.realize_virt_arrays = realize_virt_arrays;
1141 mem->pub.access_virt_sarray = access_virt_sarray;
1142 mem->pub.access_virt_barray = access_virt_barray;
1143 mem->pub.free_pool = free_pool;
1144 mem->pub.self_destruct = self_destruct;
1145
Thomas G. Lane5ead57a1998-03-27 00:00:00 +00001146 /* Make MAX_ALLOC_CHUNK accessible to other modules */
1147 mem->pub.max_alloc_chunk = MAX_ALLOC_CHUNK;
1148
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001149 /* Initialize working state */
1150 mem->pub.max_memory_to_use = max_to_use;
1151
1152 for (pool = JPOOL_NUMPOOLS-1; pool >= JPOOL_PERMANENT; pool--) {
1153 mem->small_list[pool] = NULL;
1154 mem->large_list[pool] = NULL;
1155 }
1156 mem->virt_sarray_list = NULL;
1157 mem->virt_barray_list = NULL;
1158
DRC5de454b2014-05-18 19:04:03 +00001159 mem->total_space_allocated = sizeof(my_memory_mgr);
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001160
1161 /* Declare ourselves open for business */
1162 cinfo->mem = & mem->pub;
Thomas G. Lane88aeed41992-12-10 00:00:00 +00001163
1164 /* Check for an environment variable JPEGMEM; if found, override the
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001165 * default max_memory setting from jpeg_mem_init. Note that the
1166 * surrounding application may again override this value.
Thomas G. Lane88aeed41992-12-10 00:00:00 +00001167 * If your system doesn't support getenv(), define NO_GETENV to disable
1168 * this feature.
1169 */
1170#ifndef NO_GETENV
DRCbd498032016-02-19 08:53:33 -06001171 { char *memenv;
Thomas G. Lane88aeed41992-12-10 00:00:00 +00001172
1173 if ((memenv = getenv("JPEGMEM")) != NULL) {
Thomas G. Lane88aeed41992-12-10 00:00:00 +00001174 char ch = 'x';
1175
Thomas G. Lane36a4ccc1994-09-24 00:00:00 +00001176 if (sscanf(memenv, "%ld%c", &max_to_use, &ch) > 0) {
DRCe5eaf372014-05-09 18:00:32 +00001177 if (ch == 'm' || ch == 'M')
1178 max_to_use *= 1000L;
1179 mem->pub.max_memory_to_use = max_to_use * 1000L;
Thomas G. Lane88aeed41992-12-10 00:00:00 +00001180 }
1181 }
1182 }
1183#endif
1184
Thomas G. Lane4a6b7301992-03-17 00:00:00 +00001185}