nuclear@2: /* nuclear@2: * jmemmgr.c nuclear@2: * nuclear@2: * Copyright (C) 1991-1997, Thomas G. Lane. nuclear@2: * This file is part of the Independent JPEG Group's software. nuclear@2: * For conditions of distribution and use, see the accompanying README file. nuclear@2: * nuclear@2: * This file contains the JPEG system-independent memory management nuclear@2: * routines. This code is usable across a wide variety of machines; most nuclear@2: * of the system dependencies have been isolated in a separate file. nuclear@2: * The major functions provided here are: nuclear@2: * * pool-based allocation and freeing of memory; nuclear@2: * * policy decisions about how to divide available memory among the nuclear@2: * virtual arrays; nuclear@2: * * control logic for swapping virtual arrays between main memory and nuclear@2: * backing storage. nuclear@2: * The separate system-dependent file provides the actual backing-storage nuclear@2: * access code, and it contains the policy decision about how much total nuclear@2: * main memory to use. nuclear@2: * This file is system-dependent in the sense that some of its functions nuclear@2: * are unnecessary in some systems. For example, if there is enough virtual nuclear@2: * memory so that backing storage will never be used, much of the virtual nuclear@2: * array control logic could be removed. (Of course, if you have that much nuclear@2: * memory then you shouldn't care about a little bit of unused code...) nuclear@2: */ nuclear@2: nuclear@2: #define JPEG_INTERNALS nuclear@2: #define AM_MEMORY_MANAGER /* we define jvirt_Xarray_control structs */ nuclear@2: #include "jinclude.h" nuclear@2: #include "jpeglib.h" nuclear@2: #include "jmemsys.h" /* import the system-dependent declarations */ nuclear@2: nuclear@2: #ifndef NO_GETENV nuclear@2: #ifndef HAVE_STDLIB_H /* should declare getenv() */ nuclear@2: extern char * getenv JPP((const char * name)); nuclear@2: #endif nuclear@2: #endif nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * Some important notes: nuclear@2: * The allocation routines provided here must never return NULL. nuclear@2: * They should exit to error_exit if unsuccessful. nuclear@2: * nuclear@2: * It's not a good idea to try to merge the sarray and barray routines, nuclear@2: * even though they are textually almost the same, because samples are nuclear@2: * usually stored as bytes while coefficients are shorts or ints. Thus, nuclear@2: * in machines where byte pointers have a different representation from nuclear@2: * word pointers, the resulting machine code could not be the same. nuclear@2: */ nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * Many machines require storage alignment: longs must start on 4-byte nuclear@2: * boundaries, doubles on 8-byte boundaries, etc. On such machines, malloc() nuclear@2: * always returns pointers that are multiples of the worst-case alignment nuclear@2: * requirement, and we had better do so too. nuclear@2: * There isn't any really portable way to determine the worst-case alignment nuclear@2: * requirement. This module assumes that the alignment requirement is nuclear@2: * multiples of sizeof(ALIGN_TYPE). nuclear@2: * By default, we define ALIGN_TYPE as double. This is necessary on some nuclear@2: * workstations (where doubles really do need 8-byte alignment) and will work nuclear@2: * fine on nearly everything. If your machine has lesser alignment needs, nuclear@2: * you can save a few bytes by making ALIGN_TYPE smaller. nuclear@2: * The only place I know of where this will NOT work is certain Macintosh nuclear@2: * 680x0 compilers that define double as a 10-byte IEEE extended float. nuclear@2: * Doing 10-byte alignment is counterproductive because longwords won't be nuclear@2: * aligned well. Put "#define ALIGN_TYPE long" in jconfig.h if you have nuclear@2: * such a compiler. nuclear@2: */ nuclear@2: nuclear@2: #ifndef ALIGN_TYPE /* so can override from jconfig.h */ nuclear@2: #define ALIGN_TYPE double nuclear@2: #endif nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * We allocate objects from "pools", where each pool is gotten with a single nuclear@2: * request to jpeg_get_small() or jpeg_get_large(). There is no per-object nuclear@2: * overhead within a pool, except for alignment padding. Each pool has a nuclear@2: * header with a link to the next pool of the same class. nuclear@2: * Small and large pool headers are identical except that the latter's nuclear@2: * link pointer must be FAR on 80x86 machines. nuclear@2: * Notice that the "real" header fields are union'ed with a dummy ALIGN_TYPE nuclear@2: * field. This forces the compiler to make SIZEOF(small_pool_hdr) a multiple nuclear@2: * of the alignment requirement of ALIGN_TYPE. nuclear@2: */ nuclear@2: nuclear@2: typedef union small_pool_struct * small_pool_ptr; nuclear@2: nuclear@2: typedef union small_pool_struct { nuclear@2: struct { nuclear@2: small_pool_ptr next; /* next in list of pools */ nuclear@2: size_t bytes_used; /* how many bytes already used within pool */ nuclear@2: size_t bytes_left; /* bytes still available in this pool */ nuclear@2: } hdr; nuclear@2: ALIGN_TYPE dummy; /* included in union to ensure alignment */ nuclear@2: } small_pool_hdr; nuclear@2: nuclear@2: typedef union large_pool_struct FAR * large_pool_ptr; nuclear@2: nuclear@2: typedef union large_pool_struct { nuclear@2: struct { nuclear@2: large_pool_ptr next; /* next in list of pools */ nuclear@2: size_t bytes_used; /* how many bytes already used within pool */ nuclear@2: size_t bytes_left; /* bytes still available in this pool */ nuclear@2: } hdr; nuclear@2: ALIGN_TYPE dummy; /* included in union to ensure alignment */ nuclear@2: } large_pool_hdr; nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * Here is the full definition of a memory manager object. nuclear@2: */ nuclear@2: nuclear@2: typedef struct { nuclear@2: struct jpeg_memory_mgr pub; /* public fields */ nuclear@2: nuclear@2: /* Each pool identifier (lifetime class) names a linked list of pools. */ nuclear@2: small_pool_ptr small_list[JPOOL_NUMPOOLS]; nuclear@2: large_pool_ptr large_list[JPOOL_NUMPOOLS]; nuclear@2: nuclear@2: /* Since we only have one lifetime class of virtual arrays, only one nuclear@2: * linked list is necessary (for each datatype). Note that the virtual nuclear@2: * array control blocks being linked together are actually stored somewhere nuclear@2: * in the small-pool list. nuclear@2: */ nuclear@2: jvirt_sarray_ptr virt_sarray_list; nuclear@2: jvirt_barray_ptr virt_barray_list; nuclear@2: nuclear@2: /* This counts total space obtained from jpeg_get_small/large */ nuclear@2: long total_space_allocated; nuclear@2: nuclear@2: /* alloc_sarray and alloc_barray set this value for use by virtual nuclear@2: * array routines. nuclear@2: */ nuclear@2: JDIMENSION last_rowsperchunk; /* from most recent alloc_sarray/barray */ nuclear@2: } my_memory_mgr; nuclear@2: nuclear@2: typedef my_memory_mgr * my_mem_ptr; nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * The control blocks for virtual arrays. nuclear@2: * Note that these blocks are allocated in the "small" pool area. nuclear@2: * System-dependent info for the associated backing store (if any) is hidden nuclear@2: * inside the backing_store_info struct. nuclear@2: */ nuclear@2: nuclear@2: struct jvirt_sarray_control { nuclear@2: JSAMPARRAY mem_buffer; /* => the in-memory buffer */ nuclear@2: JDIMENSION rows_in_array; /* total virtual array height */ nuclear@2: JDIMENSION samplesperrow; /* width of array (and of memory buffer) */ nuclear@2: JDIMENSION maxaccess; /* max rows accessed by access_virt_sarray */ nuclear@2: JDIMENSION rows_in_mem; /* height of memory buffer */ nuclear@2: JDIMENSION rowsperchunk; /* allocation chunk size in mem_buffer */ nuclear@2: JDIMENSION cur_start_row; /* first logical row # in the buffer */ nuclear@2: JDIMENSION first_undef_row; /* row # of first uninitialized row */ nuclear@2: boolean pre_zero; /* pre-zero mode requested? */ nuclear@2: boolean dirty; /* do current buffer contents need written? */ nuclear@2: boolean b_s_open; /* is backing-store data valid? */ nuclear@2: jvirt_sarray_ptr next; /* link to next virtual sarray control block */ nuclear@2: backing_store_info b_s_info; /* System-dependent control info */ nuclear@2: }; nuclear@2: nuclear@2: struct jvirt_barray_control { nuclear@2: JBLOCKARRAY mem_buffer; /* => the in-memory buffer */ nuclear@2: JDIMENSION rows_in_array; /* total virtual array height */ nuclear@2: JDIMENSION blocksperrow; /* width of array (and of memory buffer) */ nuclear@2: JDIMENSION maxaccess; /* max rows accessed by access_virt_barray */ nuclear@2: JDIMENSION rows_in_mem; /* height of memory buffer */ nuclear@2: JDIMENSION rowsperchunk; /* allocation chunk size in mem_buffer */ nuclear@2: JDIMENSION cur_start_row; /* first logical row # in the buffer */ nuclear@2: JDIMENSION first_undef_row; /* row # of first uninitialized row */ nuclear@2: boolean pre_zero; /* pre-zero mode requested? */ nuclear@2: boolean dirty; /* do current buffer contents need written? */ nuclear@2: boolean b_s_open; /* is backing-store data valid? */ nuclear@2: jvirt_barray_ptr next; /* link to next virtual barray control block */ nuclear@2: backing_store_info b_s_info; /* System-dependent control info */ nuclear@2: }; nuclear@2: nuclear@2: nuclear@2: #ifdef MEM_STATS /* optional extra stuff for statistics */ nuclear@2: nuclear@2: LOCAL(void) nuclear@2: print_mem_stats (j_common_ptr cinfo, int pool_id) nuclear@2: { nuclear@2: my_mem_ptr mem = (my_mem_ptr) cinfo->mem; nuclear@2: small_pool_ptr shdr_ptr; nuclear@2: large_pool_ptr lhdr_ptr; nuclear@2: nuclear@2: /* Since this is only a debugging stub, we can cheat a little by using nuclear@2: * fprintf directly rather than going through the trace message code. nuclear@2: * This is helpful because message parm array can't handle longs. nuclear@2: */ nuclear@2: fprintf(stderr, "Freeing pool %d, total space = %ld\n", nuclear@2: pool_id, mem->total_space_allocated); nuclear@2: nuclear@2: for (lhdr_ptr = mem->large_list[pool_id]; lhdr_ptr != NULL; nuclear@2: lhdr_ptr = lhdr_ptr->hdr.next) { nuclear@2: fprintf(stderr, " Large chunk used %ld\n", nuclear@2: (long) lhdr_ptr->hdr.bytes_used); nuclear@2: } nuclear@2: nuclear@2: for (shdr_ptr = mem->small_list[pool_id]; shdr_ptr != NULL; nuclear@2: shdr_ptr = shdr_ptr->hdr.next) { nuclear@2: fprintf(stderr, " Small chunk used %ld free %ld\n", nuclear@2: (long) shdr_ptr->hdr.bytes_used, nuclear@2: (long) shdr_ptr->hdr.bytes_left); nuclear@2: } nuclear@2: } nuclear@2: nuclear@2: #endif /* MEM_STATS */ nuclear@2: nuclear@2: nuclear@2: LOCAL(void) nuclear@2: out_of_memory (j_common_ptr cinfo, int which) nuclear@2: /* Report an out-of-memory error and stop execution */ nuclear@2: /* If we compiled MEM_STATS support, report alloc requests before dying */ nuclear@2: { nuclear@2: #ifdef MEM_STATS nuclear@2: cinfo->err->trace_level = 2; /* force self_destruct to report stats */ nuclear@2: #endif nuclear@2: ERREXIT1(cinfo, JERR_OUT_OF_MEMORY, which); nuclear@2: } nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * Allocation of "small" objects. nuclear@2: * nuclear@2: * For these, we use pooled storage. When a new pool must be created, nuclear@2: * we try to get enough space for the current request plus a "slop" factor, nuclear@2: * where the slop will be the amount of leftover space in the new pool. nuclear@2: * The speed vs. space tradeoff is largely determined by the slop values. nuclear@2: * A different slop value is provided for each pool class (lifetime), nuclear@2: * and we also distinguish the first pool of a class from later ones. nuclear@2: * NOTE: the values given work fairly well on both 16- and 32-bit-int nuclear@2: * machines, but may be too small if longs are 64 bits or more. nuclear@2: */ nuclear@2: nuclear@2: static const size_t first_pool_slop[JPOOL_NUMPOOLS] = nuclear@2: { nuclear@2: 1600, /* first PERMANENT pool */ nuclear@2: 16000 /* first IMAGE pool */ nuclear@2: }; nuclear@2: nuclear@2: static const size_t extra_pool_slop[JPOOL_NUMPOOLS] = nuclear@2: { nuclear@2: 0, /* additional PERMANENT pools */ nuclear@2: 5000 /* additional IMAGE pools */ nuclear@2: }; nuclear@2: nuclear@2: #define MIN_SLOP 50 /* greater than 0 to avoid futile looping */ nuclear@2: nuclear@2: nuclear@2: METHODDEF(void *) nuclear@2: alloc_small (j_common_ptr cinfo, int pool_id, size_t sizeofobject) nuclear@2: /* Allocate a "small" object */ nuclear@2: { nuclear@2: my_mem_ptr mem = (my_mem_ptr) cinfo->mem; nuclear@2: small_pool_ptr hdr_ptr, prev_hdr_ptr; nuclear@2: char * data_ptr; nuclear@2: size_t odd_bytes, min_request, slop; nuclear@2: nuclear@2: /* Check for unsatisfiable request (do now to ensure no overflow below) */ nuclear@2: if (sizeofobject > (size_t) (MAX_ALLOC_CHUNK-SIZEOF(small_pool_hdr))) nuclear@2: out_of_memory(cinfo, 1); /* request exceeds malloc's ability */ nuclear@2: nuclear@2: /* Round up the requested size to a multiple of SIZEOF(ALIGN_TYPE) */ nuclear@2: odd_bytes = sizeofobject % SIZEOF(ALIGN_TYPE); nuclear@2: if (odd_bytes > 0) nuclear@2: sizeofobject += SIZEOF(ALIGN_TYPE) - odd_bytes; nuclear@2: nuclear@2: /* See if space is available in any existing pool */ nuclear@2: if (pool_id < 0 || pool_id >= JPOOL_NUMPOOLS) nuclear@2: ERREXIT1(cinfo, JERR_BAD_POOL_ID, pool_id); /* safety check */ nuclear@2: prev_hdr_ptr = NULL; nuclear@2: hdr_ptr = mem->small_list[pool_id]; nuclear@2: while (hdr_ptr != NULL) { nuclear@2: if (hdr_ptr->hdr.bytes_left >= sizeofobject) nuclear@2: break; /* found pool with enough space */ nuclear@2: prev_hdr_ptr = hdr_ptr; nuclear@2: hdr_ptr = hdr_ptr->hdr.next; nuclear@2: } nuclear@2: nuclear@2: /* Time to make a new pool? */ nuclear@2: if (hdr_ptr == NULL) { nuclear@2: /* min_request is what we need now, slop is what will be leftover */ nuclear@2: min_request = sizeofobject + SIZEOF(small_pool_hdr); nuclear@2: if (prev_hdr_ptr == NULL) /* first pool in class? */ nuclear@2: slop = first_pool_slop[pool_id]; nuclear@2: else nuclear@2: slop = extra_pool_slop[pool_id]; nuclear@2: /* Don't ask for more than MAX_ALLOC_CHUNK */ nuclear@2: if (slop > (size_t) (MAX_ALLOC_CHUNK-min_request)) nuclear@2: slop = (size_t) (MAX_ALLOC_CHUNK-min_request); nuclear@2: /* Try to get space, if fail reduce slop and try again */ nuclear@2: for (;;) { nuclear@2: hdr_ptr = (small_pool_ptr) jpeg_get_small(cinfo, min_request + slop); nuclear@2: if (hdr_ptr != NULL) nuclear@2: break; nuclear@2: slop /= 2; nuclear@2: if (slop < MIN_SLOP) /* give up when it gets real small */ nuclear@2: out_of_memory(cinfo, 2); /* jpeg_get_small failed */ nuclear@2: } nuclear@2: mem->total_space_allocated += min_request + slop; nuclear@2: /* Success, initialize the new pool header and add to end of list */ nuclear@2: hdr_ptr->hdr.next = NULL; nuclear@2: hdr_ptr->hdr.bytes_used = 0; nuclear@2: hdr_ptr->hdr.bytes_left = sizeofobject + slop; nuclear@2: if (prev_hdr_ptr == NULL) /* first pool in class? */ nuclear@2: mem->small_list[pool_id] = hdr_ptr; nuclear@2: else nuclear@2: prev_hdr_ptr->hdr.next = hdr_ptr; nuclear@2: } nuclear@2: nuclear@2: /* OK, allocate the object from the current pool */ nuclear@2: data_ptr = (char *) (hdr_ptr + 1); /* point to first data byte in pool */ nuclear@2: data_ptr += hdr_ptr->hdr.bytes_used; /* point to place for object */ nuclear@2: hdr_ptr->hdr.bytes_used += sizeofobject; nuclear@2: hdr_ptr->hdr.bytes_left -= sizeofobject; nuclear@2: nuclear@2: return (void *) data_ptr; nuclear@2: } nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * Allocation of "large" objects. nuclear@2: * nuclear@2: * The external semantics of these are the same as "small" objects, nuclear@2: * except that FAR pointers are used on 80x86. However the pool nuclear@2: * management heuristics are quite different. We assume that each nuclear@2: * request is large enough that it may as well be passed directly to nuclear@2: * jpeg_get_large; the pool management just links everything together nuclear@2: * so that we can free it all on demand. nuclear@2: * Note: the major use of "large" objects is in JSAMPARRAY and JBLOCKARRAY nuclear@2: * structures. The routines that create these structures (see below) nuclear@2: * deliberately bunch rows together to ensure a large request size. nuclear@2: */ nuclear@2: nuclear@2: METHODDEF(void FAR *) nuclear@2: alloc_large (j_common_ptr cinfo, int pool_id, size_t sizeofobject) nuclear@2: /* Allocate a "large" object */ nuclear@2: { nuclear@2: my_mem_ptr mem = (my_mem_ptr) cinfo->mem; nuclear@2: large_pool_ptr hdr_ptr; nuclear@2: size_t odd_bytes; nuclear@2: nuclear@2: /* Check for unsatisfiable request (do now to ensure no overflow below) */ nuclear@2: if (sizeofobject > (size_t) (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr))) nuclear@2: out_of_memory(cinfo, 3); /* request exceeds malloc's ability */ nuclear@2: nuclear@2: /* Round up the requested size to a multiple of SIZEOF(ALIGN_TYPE) */ nuclear@2: odd_bytes = sizeofobject % SIZEOF(ALIGN_TYPE); nuclear@2: if (odd_bytes > 0) nuclear@2: sizeofobject += SIZEOF(ALIGN_TYPE) - odd_bytes; nuclear@2: nuclear@2: /* Always make a new pool */ nuclear@2: if (pool_id < 0 || pool_id >= JPOOL_NUMPOOLS) nuclear@2: ERREXIT1(cinfo, JERR_BAD_POOL_ID, pool_id); /* safety check */ nuclear@2: nuclear@2: hdr_ptr = (large_pool_ptr) jpeg_get_large(cinfo, sizeofobject + nuclear@2: SIZEOF(large_pool_hdr)); nuclear@2: if (hdr_ptr == NULL) nuclear@2: out_of_memory(cinfo, 4); /* jpeg_get_large failed */ nuclear@2: mem->total_space_allocated += sizeofobject + SIZEOF(large_pool_hdr); nuclear@2: nuclear@2: /* Success, initialize the new pool header and add to list */ nuclear@2: hdr_ptr->hdr.next = mem->large_list[pool_id]; nuclear@2: /* We maintain space counts in each pool header for statistical purposes, nuclear@2: * even though they are not needed for allocation. nuclear@2: */ nuclear@2: hdr_ptr->hdr.bytes_used = sizeofobject; nuclear@2: hdr_ptr->hdr.bytes_left = 0; nuclear@2: mem->large_list[pool_id] = hdr_ptr; nuclear@2: nuclear@2: return (void FAR *) (hdr_ptr + 1); /* point to first data byte in pool */ nuclear@2: } nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * Creation of 2-D sample arrays. nuclear@2: * The pointers are in near heap, the samples themselves in FAR heap. nuclear@2: * nuclear@2: * To minimize allocation overhead and to allow I/O of large contiguous nuclear@2: * blocks, we allocate the sample rows in groups of as many rows as possible nuclear@2: * without exceeding MAX_ALLOC_CHUNK total bytes per allocation request. nuclear@2: * NB: the virtual array control routines, later in this file, know about nuclear@2: * this chunking of rows. The rowsperchunk value is left in the mem manager nuclear@2: * object so that it can be saved away if this sarray is the workspace for nuclear@2: * a virtual array. nuclear@2: */ nuclear@2: nuclear@2: METHODDEF(JSAMPARRAY) nuclear@2: alloc_sarray (j_common_ptr cinfo, int pool_id, nuclear@2: JDIMENSION samplesperrow, JDIMENSION numrows) nuclear@2: /* Allocate a 2-D sample array */ nuclear@2: { nuclear@2: my_mem_ptr mem = (my_mem_ptr) cinfo->mem; nuclear@2: JSAMPARRAY result; nuclear@2: JSAMPROW workspace; nuclear@2: JDIMENSION rowsperchunk, currow, i; nuclear@2: long ltemp; nuclear@2: nuclear@2: /* Calculate max # of rows allowed in one allocation chunk */ nuclear@2: ltemp = (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)) / nuclear@2: ((long) samplesperrow * SIZEOF(JSAMPLE)); nuclear@2: if (ltemp <= 0) nuclear@2: ERREXIT(cinfo, JERR_WIDTH_OVERFLOW); nuclear@2: if (ltemp < (long) numrows) nuclear@2: rowsperchunk = (JDIMENSION) ltemp; nuclear@2: else nuclear@2: rowsperchunk = numrows; nuclear@2: mem->last_rowsperchunk = rowsperchunk; nuclear@2: nuclear@2: /* Get space for row pointers (small object) */ nuclear@2: result = (JSAMPARRAY) alloc_small(cinfo, pool_id, nuclear@2: (size_t) (numrows * SIZEOF(JSAMPROW))); nuclear@2: nuclear@2: /* Get the rows themselves (large objects) */ nuclear@2: currow = 0; nuclear@2: while (currow < numrows) { nuclear@2: rowsperchunk = MIN(rowsperchunk, numrows - currow); nuclear@2: workspace = (JSAMPROW) alloc_large(cinfo, pool_id, nuclear@2: (size_t) ((size_t) rowsperchunk * (size_t) samplesperrow nuclear@2: * SIZEOF(JSAMPLE))); nuclear@2: for (i = rowsperchunk; i > 0; i--) { nuclear@2: result[currow++] = workspace; nuclear@2: workspace += samplesperrow; nuclear@2: } nuclear@2: } nuclear@2: nuclear@2: return result; nuclear@2: } nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * Creation of 2-D coefficient-block arrays. nuclear@2: * This is essentially the same as the code for sample arrays, above. nuclear@2: */ nuclear@2: nuclear@2: METHODDEF(JBLOCKARRAY) nuclear@2: alloc_barray (j_common_ptr cinfo, int pool_id, nuclear@2: JDIMENSION blocksperrow, JDIMENSION numrows) nuclear@2: /* Allocate a 2-D coefficient-block array */ nuclear@2: { nuclear@2: my_mem_ptr mem = (my_mem_ptr) cinfo->mem; nuclear@2: JBLOCKARRAY result; nuclear@2: JBLOCKROW workspace; nuclear@2: JDIMENSION rowsperchunk, currow, i; nuclear@2: long ltemp; nuclear@2: nuclear@2: /* Calculate max # of rows allowed in one allocation chunk */ nuclear@2: ltemp = (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)) / nuclear@2: ((long) blocksperrow * SIZEOF(JBLOCK)); nuclear@2: if (ltemp <= 0) nuclear@2: ERREXIT(cinfo, JERR_WIDTH_OVERFLOW); nuclear@2: if (ltemp < (long) numrows) nuclear@2: rowsperchunk = (JDIMENSION) ltemp; nuclear@2: else nuclear@2: rowsperchunk = numrows; nuclear@2: mem->last_rowsperchunk = rowsperchunk; nuclear@2: nuclear@2: /* Get space for row pointers (small object) */ nuclear@2: result = (JBLOCKARRAY) alloc_small(cinfo, pool_id, nuclear@2: (size_t) (numrows * SIZEOF(JBLOCKROW))); nuclear@2: nuclear@2: /* Get the rows themselves (large objects) */ nuclear@2: currow = 0; nuclear@2: while (currow < numrows) { nuclear@2: rowsperchunk = MIN(rowsperchunk, numrows - currow); nuclear@2: workspace = (JBLOCKROW) alloc_large(cinfo, pool_id, nuclear@2: (size_t) ((size_t) rowsperchunk * (size_t) blocksperrow nuclear@2: * SIZEOF(JBLOCK))); nuclear@2: for (i = rowsperchunk; i > 0; i--) { nuclear@2: result[currow++] = workspace; nuclear@2: workspace += blocksperrow; nuclear@2: } nuclear@2: } nuclear@2: nuclear@2: return result; nuclear@2: } nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * About virtual array management: nuclear@2: * nuclear@2: * The above "normal" array routines are only used to allocate strip buffers nuclear@2: * (as wide as the image, but just a few rows high). Full-image-sized buffers nuclear@2: * are handled as "virtual" arrays. The array is still accessed a strip at a nuclear@2: * time, but the memory manager must save the whole array for repeated nuclear@2: * accesses. The intended implementation is that there is a strip buffer in nuclear@2: * memory (as high as is possible given the desired memory limit), plus a nuclear@2: * backing file that holds the rest of the array. nuclear@2: * nuclear@2: * The request_virt_array routines are told the total size of the image and nuclear@2: * the maximum number of rows that will be accessed at once. The in-memory nuclear@2: * buffer must be at least as large as the maxaccess value. nuclear@2: * nuclear@2: * The request routines create control blocks but not the in-memory buffers. nuclear@2: * That is postponed until realize_virt_arrays is called. At that time the nuclear@2: * total amount of space needed is known (approximately, anyway), so free nuclear@2: * memory can be divided up fairly. nuclear@2: * nuclear@2: * The access_virt_array routines are responsible for making a specific strip nuclear@2: * area accessible (after reading or writing the backing file, if necessary). nuclear@2: * Note that the access routines are told whether the caller intends to modify nuclear@2: * the accessed strip; during a read-only pass this saves having to rewrite nuclear@2: * data to disk. The access routines are also responsible for pre-zeroing nuclear@2: * any newly accessed rows, if pre-zeroing was requested. nuclear@2: * nuclear@2: * In current usage, the access requests are usually for nonoverlapping nuclear@2: * strips; that is, successive access start_row numbers differ by exactly nuclear@2: * num_rows = maxaccess. This means we can get good performance with simple nuclear@2: * buffer dump/reload logic, by making the in-memory buffer be a multiple nuclear@2: * of the access height; then there will never be accesses across bufferload nuclear@2: * boundaries. The code will still work with overlapping access requests, nuclear@2: * but it doesn't handle bufferload overlaps very efficiently. nuclear@2: */ nuclear@2: nuclear@2: nuclear@2: METHODDEF(jvirt_sarray_ptr) nuclear@2: request_virt_sarray (j_common_ptr cinfo, int pool_id, boolean pre_zero, nuclear@2: JDIMENSION samplesperrow, JDIMENSION numrows, nuclear@2: JDIMENSION maxaccess) nuclear@2: /* Request a virtual 2-D sample array */ nuclear@2: { nuclear@2: my_mem_ptr mem = (my_mem_ptr) cinfo->mem; nuclear@2: jvirt_sarray_ptr result; nuclear@2: nuclear@2: /* Only IMAGE-lifetime virtual arrays are currently supported */ nuclear@2: if (pool_id != JPOOL_IMAGE) nuclear@2: ERREXIT1(cinfo, JERR_BAD_POOL_ID, pool_id); /* safety check */ nuclear@2: nuclear@2: /* get control block */ nuclear@2: result = (jvirt_sarray_ptr) alloc_small(cinfo, pool_id, nuclear@2: SIZEOF(struct jvirt_sarray_control)); nuclear@2: nuclear@2: result->mem_buffer = NULL; /* marks array not yet realized */ nuclear@2: result->rows_in_array = numrows; nuclear@2: result->samplesperrow = samplesperrow; nuclear@2: result->maxaccess = maxaccess; nuclear@2: result->pre_zero = pre_zero; nuclear@2: result->b_s_open = FALSE; /* no associated backing-store object */ nuclear@2: result->next = mem->virt_sarray_list; /* add to list of virtual arrays */ nuclear@2: mem->virt_sarray_list = result; nuclear@2: nuclear@2: return result; nuclear@2: } nuclear@2: nuclear@2: nuclear@2: METHODDEF(jvirt_barray_ptr) nuclear@2: request_virt_barray (j_common_ptr cinfo, int pool_id, boolean pre_zero, nuclear@2: JDIMENSION blocksperrow, JDIMENSION numrows, nuclear@2: JDIMENSION maxaccess) nuclear@2: /* Request a virtual 2-D coefficient-block array */ nuclear@2: { nuclear@2: my_mem_ptr mem = (my_mem_ptr) cinfo->mem; nuclear@2: jvirt_barray_ptr result; nuclear@2: nuclear@2: /* Only IMAGE-lifetime virtual arrays are currently supported */ nuclear@2: if (pool_id != JPOOL_IMAGE) nuclear@2: ERREXIT1(cinfo, JERR_BAD_POOL_ID, pool_id); /* safety check */ nuclear@2: nuclear@2: /* get control block */ nuclear@2: result = (jvirt_barray_ptr) alloc_small(cinfo, pool_id, nuclear@2: SIZEOF(struct jvirt_barray_control)); nuclear@2: nuclear@2: result->mem_buffer = NULL; /* marks array not yet realized */ nuclear@2: result->rows_in_array = numrows; nuclear@2: result->blocksperrow = blocksperrow; nuclear@2: result->maxaccess = maxaccess; nuclear@2: result->pre_zero = pre_zero; nuclear@2: result->b_s_open = FALSE; /* no associated backing-store object */ nuclear@2: result->next = mem->virt_barray_list; /* add to list of virtual arrays */ nuclear@2: mem->virt_barray_list = result; nuclear@2: nuclear@2: return result; nuclear@2: } nuclear@2: nuclear@2: nuclear@2: METHODDEF(void) nuclear@2: realize_virt_arrays (j_common_ptr cinfo) nuclear@2: /* Allocate the in-memory buffers for any unrealized virtual arrays */ nuclear@2: { nuclear@2: my_mem_ptr mem = (my_mem_ptr) cinfo->mem; nuclear@2: long space_per_minheight, maximum_space, avail_mem; nuclear@2: long minheights, max_minheights; nuclear@2: jvirt_sarray_ptr sptr; nuclear@2: jvirt_barray_ptr bptr; nuclear@2: nuclear@2: /* Compute the minimum space needed (maxaccess rows in each buffer) nuclear@2: * and the maximum space needed (full image height in each buffer). nuclear@2: * These may be of use to the system-dependent jpeg_mem_available routine. nuclear@2: */ nuclear@2: space_per_minheight = 0; nuclear@2: maximum_space = 0; nuclear@2: for (sptr = mem->virt_sarray_list; sptr != NULL; sptr = sptr->next) { nuclear@2: if (sptr->mem_buffer == NULL) { /* if not realized yet */ nuclear@2: space_per_minheight += (long) sptr->maxaccess * nuclear@2: (long) sptr->samplesperrow * SIZEOF(JSAMPLE); nuclear@2: maximum_space += (long) sptr->rows_in_array * nuclear@2: (long) sptr->samplesperrow * SIZEOF(JSAMPLE); nuclear@2: } nuclear@2: } nuclear@2: for (bptr = mem->virt_barray_list; bptr != NULL; bptr = bptr->next) { nuclear@2: if (bptr->mem_buffer == NULL) { /* if not realized yet */ nuclear@2: space_per_minheight += (long) bptr->maxaccess * nuclear@2: (long) bptr->blocksperrow * SIZEOF(JBLOCK); nuclear@2: maximum_space += (long) bptr->rows_in_array * nuclear@2: (long) bptr->blocksperrow * SIZEOF(JBLOCK); nuclear@2: } nuclear@2: } nuclear@2: nuclear@2: if (space_per_minheight <= 0) nuclear@2: return; /* no unrealized arrays, no work */ nuclear@2: nuclear@2: /* Determine amount of memory to actually use; this is system-dependent. */ nuclear@2: avail_mem = jpeg_mem_available(cinfo, space_per_minheight, maximum_space, nuclear@2: mem->total_space_allocated); nuclear@2: nuclear@2: /* If the maximum space needed is available, make all the buffers full nuclear@2: * height; otherwise parcel it out with the same number of minheights nuclear@2: * in each buffer. nuclear@2: */ nuclear@2: if (avail_mem >= maximum_space) nuclear@2: max_minheights = 1000000000L; nuclear@2: else { nuclear@2: max_minheights = avail_mem / space_per_minheight; nuclear@2: /* If there doesn't seem to be enough space, try to get the minimum nuclear@2: * anyway. This allows a "stub" implementation of jpeg_mem_available(). nuclear@2: */ nuclear@2: if (max_minheights <= 0) nuclear@2: max_minheights = 1; nuclear@2: } nuclear@2: nuclear@2: /* Allocate the in-memory buffers and initialize backing store as needed. */ nuclear@2: nuclear@2: for (sptr = mem->virt_sarray_list; sptr != NULL; sptr = sptr->next) { nuclear@2: if (sptr->mem_buffer == NULL) { /* if not realized yet */ nuclear@2: minheights = ((long) sptr->rows_in_array - 1L) / sptr->maxaccess + 1L; nuclear@2: if (minheights <= max_minheights) { nuclear@2: /* This buffer fits in memory */ nuclear@2: sptr->rows_in_mem = sptr->rows_in_array; nuclear@2: } else { nuclear@2: /* It doesn't fit in memory, create backing store. */ nuclear@2: sptr->rows_in_mem = (JDIMENSION) (max_minheights * sptr->maxaccess); nuclear@2: jpeg_open_backing_store(cinfo, & sptr->b_s_info, nuclear@2: (long) sptr->rows_in_array * nuclear@2: (long) sptr->samplesperrow * nuclear@2: (long) SIZEOF(JSAMPLE)); nuclear@2: sptr->b_s_open = TRUE; nuclear@2: } nuclear@2: sptr->mem_buffer = alloc_sarray(cinfo, JPOOL_IMAGE, nuclear@2: sptr->samplesperrow, sptr->rows_in_mem); nuclear@2: sptr->rowsperchunk = mem->last_rowsperchunk; nuclear@2: sptr->cur_start_row = 0; nuclear@2: sptr->first_undef_row = 0; nuclear@2: sptr->dirty = FALSE; nuclear@2: } nuclear@2: } nuclear@2: nuclear@2: for (bptr = mem->virt_barray_list; bptr != NULL; bptr = bptr->next) { nuclear@2: if (bptr->mem_buffer == NULL) { /* if not realized yet */ nuclear@2: minheights = ((long) bptr->rows_in_array - 1L) / bptr->maxaccess + 1L; nuclear@2: if (minheights <= max_minheights) { nuclear@2: /* This buffer fits in memory */ nuclear@2: bptr->rows_in_mem = bptr->rows_in_array; nuclear@2: } else { nuclear@2: /* It doesn't fit in memory, create backing store. */ nuclear@2: bptr->rows_in_mem = (JDIMENSION) (max_minheights * bptr->maxaccess); nuclear@2: jpeg_open_backing_store(cinfo, & bptr->b_s_info, nuclear@2: (long) bptr->rows_in_array * nuclear@2: (long) bptr->blocksperrow * nuclear@2: (long) SIZEOF(JBLOCK)); nuclear@2: bptr->b_s_open = TRUE; nuclear@2: } nuclear@2: bptr->mem_buffer = alloc_barray(cinfo, JPOOL_IMAGE, nuclear@2: bptr->blocksperrow, bptr->rows_in_mem); nuclear@2: bptr->rowsperchunk = mem->last_rowsperchunk; nuclear@2: bptr->cur_start_row = 0; nuclear@2: bptr->first_undef_row = 0; nuclear@2: bptr->dirty = FALSE; nuclear@2: } nuclear@2: } nuclear@2: } nuclear@2: nuclear@2: nuclear@2: LOCAL(void) nuclear@2: do_sarray_io (j_common_ptr cinfo, jvirt_sarray_ptr ptr, boolean writing) nuclear@2: /* Do backing store read or write of a virtual sample array */ nuclear@2: { nuclear@2: long bytesperrow, file_offset, byte_count, rows, thisrow, i; nuclear@2: nuclear@2: bytesperrow = (long) ptr->samplesperrow * SIZEOF(JSAMPLE); nuclear@2: file_offset = ptr->cur_start_row * bytesperrow; nuclear@2: /* Loop to read or write each allocation chunk in mem_buffer */ nuclear@2: for (i = 0; i < (long) ptr->rows_in_mem; i += ptr->rowsperchunk) { nuclear@2: /* One chunk, but check for short chunk at end of buffer */ nuclear@2: rows = MIN((long) ptr->rowsperchunk, (long) ptr->rows_in_mem - i); nuclear@2: /* Transfer no more than is currently defined */ nuclear@2: thisrow = (long) ptr->cur_start_row + i; nuclear@2: rows = MIN(rows, (long) ptr->first_undef_row - thisrow); nuclear@2: /* Transfer no more than fits in file */ nuclear@2: rows = MIN(rows, (long) ptr->rows_in_array - thisrow); nuclear@2: if (rows <= 0) /* this chunk might be past end of file! */ nuclear@2: break; nuclear@2: byte_count = rows * bytesperrow; nuclear@2: if (writing) nuclear@2: (*ptr->b_s_info.write_backing_store) (cinfo, & ptr->b_s_info, nuclear@2: (void FAR *) ptr->mem_buffer[i], nuclear@2: file_offset, byte_count); nuclear@2: else nuclear@2: (*ptr->b_s_info.read_backing_store) (cinfo, & ptr->b_s_info, nuclear@2: (void FAR *) ptr->mem_buffer[i], nuclear@2: file_offset, byte_count); nuclear@2: file_offset += byte_count; nuclear@2: } nuclear@2: } nuclear@2: nuclear@2: nuclear@2: LOCAL(void) nuclear@2: do_barray_io (j_common_ptr cinfo, jvirt_barray_ptr ptr, boolean writing) nuclear@2: /* Do backing store read or write of a virtual coefficient-block array */ nuclear@2: { nuclear@2: long bytesperrow, file_offset, byte_count, rows, thisrow, i; nuclear@2: nuclear@2: bytesperrow = (long) ptr->blocksperrow * SIZEOF(JBLOCK); nuclear@2: file_offset = ptr->cur_start_row * bytesperrow; nuclear@2: /* Loop to read or write each allocation chunk in mem_buffer */ nuclear@2: for (i = 0; i < (long) ptr->rows_in_mem; i += ptr->rowsperchunk) { nuclear@2: /* One chunk, but check for short chunk at end of buffer */ nuclear@2: rows = MIN((long) ptr->rowsperchunk, (long) ptr->rows_in_mem - i); nuclear@2: /* Transfer no more than is currently defined */ nuclear@2: thisrow = (long) ptr->cur_start_row + i; nuclear@2: rows = MIN(rows, (long) ptr->first_undef_row - thisrow); nuclear@2: /* Transfer no more than fits in file */ nuclear@2: rows = MIN(rows, (long) ptr->rows_in_array - thisrow); nuclear@2: if (rows <= 0) /* this chunk might be past end of file! */ nuclear@2: break; nuclear@2: byte_count = rows * bytesperrow; nuclear@2: if (writing) nuclear@2: (*ptr->b_s_info.write_backing_store) (cinfo, & ptr->b_s_info, nuclear@2: (void FAR *) ptr->mem_buffer[i], nuclear@2: file_offset, byte_count); nuclear@2: else nuclear@2: (*ptr->b_s_info.read_backing_store) (cinfo, & ptr->b_s_info, nuclear@2: (void FAR *) ptr->mem_buffer[i], nuclear@2: file_offset, byte_count); nuclear@2: file_offset += byte_count; nuclear@2: } nuclear@2: } nuclear@2: nuclear@2: nuclear@2: METHODDEF(JSAMPARRAY) nuclear@2: access_virt_sarray (j_common_ptr cinfo, jvirt_sarray_ptr ptr, nuclear@2: JDIMENSION start_row, JDIMENSION num_rows, nuclear@2: boolean writable) nuclear@2: /* Access the part of a virtual sample array starting at start_row */ nuclear@2: /* and extending for num_rows rows. writable is true if */ nuclear@2: /* caller intends to modify the accessed area. */ nuclear@2: { nuclear@2: JDIMENSION end_row = start_row + num_rows; nuclear@2: JDIMENSION undef_row; nuclear@2: nuclear@2: /* debugging check */ nuclear@2: if (end_row > ptr->rows_in_array || num_rows > ptr->maxaccess || nuclear@2: ptr->mem_buffer == NULL) nuclear@2: ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS); nuclear@2: nuclear@2: /* Make the desired part of the virtual array accessible */ nuclear@2: if (start_row < ptr->cur_start_row || nuclear@2: end_row > ptr->cur_start_row+ptr->rows_in_mem) { nuclear@2: if (! ptr->b_s_open) nuclear@2: ERREXIT(cinfo, JERR_VIRTUAL_BUG); nuclear@2: /* Flush old buffer contents if necessary */ nuclear@2: if (ptr->dirty) { nuclear@2: do_sarray_io(cinfo, ptr, TRUE); nuclear@2: ptr->dirty = FALSE; nuclear@2: } nuclear@2: /* Decide what part of virtual array to access. nuclear@2: * Algorithm: if target address > current window, assume forward scan, nuclear@2: * load starting at target address. If target address < current window, nuclear@2: * assume backward scan, load so that target area is top of window. nuclear@2: * Note that when switching from forward write to forward read, will have nuclear@2: * start_row = 0, so the limiting case applies and we load from 0 anyway. nuclear@2: */ nuclear@2: if (start_row > ptr->cur_start_row) { nuclear@2: ptr->cur_start_row = start_row; nuclear@2: } else { nuclear@2: /* use long arithmetic here to avoid overflow & unsigned problems */ nuclear@2: long ltemp; nuclear@2: nuclear@2: ltemp = (long) end_row - (long) ptr->rows_in_mem; nuclear@2: if (ltemp < 0) nuclear@2: ltemp = 0; /* don't fall off front end of file */ nuclear@2: ptr->cur_start_row = (JDIMENSION) ltemp; nuclear@2: } nuclear@2: /* Read in the selected part of the array. nuclear@2: * During the initial write pass, we will do no actual read nuclear@2: * because the selected part is all undefined. nuclear@2: */ nuclear@2: do_sarray_io(cinfo, ptr, FALSE); nuclear@2: } nuclear@2: /* Ensure the accessed part of the array is defined; prezero if needed. nuclear@2: * To improve locality of access, we only prezero the part of the array nuclear@2: * that the caller is about to access, not the entire in-memory array. nuclear@2: */ nuclear@2: if (ptr->first_undef_row < end_row) { nuclear@2: if (ptr->first_undef_row < start_row) { nuclear@2: if (writable) /* writer skipped over a section of array */ nuclear@2: ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS); nuclear@2: undef_row = start_row; /* but reader is allowed to read ahead */ nuclear@2: } else { nuclear@2: undef_row = ptr->first_undef_row; nuclear@2: } nuclear@2: if (writable) nuclear@2: ptr->first_undef_row = end_row; nuclear@2: if (ptr->pre_zero) { nuclear@2: size_t bytesperrow = (size_t) ptr->samplesperrow * SIZEOF(JSAMPLE); nuclear@2: undef_row -= ptr->cur_start_row; /* make indexes relative to buffer */ nuclear@2: end_row -= ptr->cur_start_row; nuclear@2: while (undef_row < end_row) { nuclear@2: jzero_far((void FAR *) ptr->mem_buffer[undef_row], bytesperrow); nuclear@2: undef_row++; nuclear@2: } nuclear@2: } else { nuclear@2: if (! writable) /* reader looking at undefined data */ nuclear@2: ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS); nuclear@2: } nuclear@2: } nuclear@2: /* Flag the buffer dirty if caller will write in it */ nuclear@2: if (writable) nuclear@2: ptr->dirty = TRUE; nuclear@2: /* Return address of proper part of the buffer */ nuclear@2: return ptr->mem_buffer + (start_row - ptr->cur_start_row); nuclear@2: } nuclear@2: nuclear@2: nuclear@2: METHODDEF(JBLOCKARRAY) nuclear@2: access_virt_barray (j_common_ptr cinfo, jvirt_barray_ptr ptr, nuclear@2: JDIMENSION start_row, JDIMENSION num_rows, nuclear@2: boolean writable) nuclear@2: /* Access the part of a virtual block array starting at start_row */ nuclear@2: /* and extending for num_rows rows. writable is true if */ nuclear@2: /* caller intends to modify the accessed area. */ nuclear@2: { nuclear@2: JDIMENSION end_row = start_row + num_rows; nuclear@2: JDIMENSION undef_row; nuclear@2: nuclear@2: /* debugging check */ nuclear@2: if (end_row > ptr->rows_in_array || num_rows > ptr->maxaccess || nuclear@2: ptr->mem_buffer == NULL) nuclear@2: ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS); nuclear@2: nuclear@2: /* Make the desired part of the virtual array accessible */ nuclear@2: if (start_row < ptr->cur_start_row || nuclear@2: end_row > ptr->cur_start_row+ptr->rows_in_mem) { nuclear@2: if (! ptr->b_s_open) nuclear@2: ERREXIT(cinfo, JERR_VIRTUAL_BUG); nuclear@2: /* Flush old buffer contents if necessary */ nuclear@2: if (ptr->dirty) { nuclear@2: do_barray_io(cinfo, ptr, TRUE); nuclear@2: ptr->dirty = FALSE; nuclear@2: } nuclear@2: /* Decide what part of virtual array to access. nuclear@2: * Algorithm: if target address > current window, assume forward scan, nuclear@2: * load starting at target address. If target address < current window, nuclear@2: * assume backward scan, load so that target area is top of window. nuclear@2: * Note that when switching from forward write to forward read, will have nuclear@2: * start_row = 0, so the limiting case applies and we load from 0 anyway. nuclear@2: */ nuclear@2: if (start_row > ptr->cur_start_row) { nuclear@2: ptr->cur_start_row = start_row; nuclear@2: } else { nuclear@2: /* use long arithmetic here to avoid overflow & unsigned problems */ nuclear@2: long ltemp; nuclear@2: nuclear@2: ltemp = (long) end_row - (long) ptr->rows_in_mem; nuclear@2: if (ltemp < 0) nuclear@2: ltemp = 0; /* don't fall off front end of file */ nuclear@2: ptr->cur_start_row = (JDIMENSION) ltemp; nuclear@2: } nuclear@2: /* Read in the selected part of the array. nuclear@2: * During the initial write pass, we will do no actual read nuclear@2: * because the selected part is all undefined. nuclear@2: */ nuclear@2: do_barray_io(cinfo, ptr, FALSE); nuclear@2: } nuclear@2: /* Ensure the accessed part of the array is defined; prezero if needed. nuclear@2: * To improve locality of access, we only prezero the part of the array nuclear@2: * that the caller is about to access, not the entire in-memory array. nuclear@2: */ nuclear@2: if (ptr->first_undef_row < end_row) { nuclear@2: if (ptr->first_undef_row < start_row) { nuclear@2: if (writable) /* writer skipped over a section of array */ nuclear@2: ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS); nuclear@2: undef_row = start_row; /* but reader is allowed to read ahead */ nuclear@2: } else { nuclear@2: undef_row = ptr->first_undef_row; nuclear@2: } nuclear@2: if (writable) nuclear@2: ptr->first_undef_row = end_row; nuclear@2: if (ptr->pre_zero) { nuclear@2: size_t bytesperrow = (size_t) ptr->blocksperrow * SIZEOF(JBLOCK); nuclear@2: undef_row -= ptr->cur_start_row; /* make indexes relative to buffer */ nuclear@2: end_row -= ptr->cur_start_row; nuclear@2: while (undef_row < end_row) { nuclear@2: jzero_far((void FAR *) ptr->mem_buffer[undef_row], bytesperrow); nuclear@2: undef_row++; nuclear@2: } nuclear@2: } else { nuclear@2: if (! writable) /* reader looking at undefined data */ nuclear@2: ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS); nuclear@2: } nuclear@2: } nuclear@2: /* Flag the buffer dirty if caller will write in it */ nuclear@2: if (writable) nuclear@2: ptr->dirty = TRUE; nuclear@2: /* Return address of proper part of the buffer */ nuclear@2: return ptr->mem_buffer + (start_row - ptr->cur_start_row); nuclear@2: } nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * Release all objects belonging to a specified pool. nuclear@2: */ nuclear@2: nuclear@2: METHODDEF(void) nuclear@2: free_pool (j_common_ptr cinfo, int pool_id) nuclear@2: { nuclear@2: my_mem_ptr mem = (my_mem_ptr) cinfo->mem; nuclear@2: small_pool_ptr shdr_ptr; nuclear@2: large_pool_ptr lhdr_ptr; nuclear@2: size_t space_freed; nuclear@2: nuclear@2: if (pool_id < 0 || pool_id >= JPOOL_NUMPOOLS) nuclear@2: ERREXIT1(cinfo, JERR_BAD_POOL_ID, pool_id); /* safety check */ nuclear@2: nuclear@2: #ifdef MEM_STATS nuclear@2: if (cinfo->err->trace_level > 1) nuclear@2: print_mem_stats(cinfo, pool_id); /* print pool's memory usage statistics */ nuclear@2: #endif nuclear@2: nuclear@2: /* If freeing IMAGE pool, close any virtual arrays first */ nuclear@2: if (pool_id == JPOOL_IMAGE) { nuclear@2: jvirt_sarray_ptr sptr; nuclear@2: jvirt_barray_ptr bptr; nuclear@2: nuclear@2: for (sptr = mem->virt_sarray_list; sptr != NULL; sptr = sptr->next) { nuclear@2: if (sptr->b_s_open) { /* there may be no backing store */ nuclear@2: sptr->b_s_open = FALSE; /* prevent recursive close if error */ nuclear@2: (*sptr->b_s_info.close_backing_store) (cinfo, & sptr->b_s_info); nuclear@2: } nuclear@2: } nuclear@2: mem->virt_sarray_list = NULL; nuclear@2: for (bptr = mem->virt_barray_list; bptr != NULL; bptr = bptr->next) { nuclear@2: if (bptr->b_s_open) { /* there may be no backing store */ nuclear@2: bptr->b_s_open = FALSE; /* prevent recursive close if error */ nuclear@2: (*bptr->b_s_info.close_backing_store) (cinfo, & bptr->b_s_info); nuclear@2: } nuclear@2: } nuclear@2: mem->virt_barray_list = NULL; nuclear@2: } nuclear@2: nuclear@2: /* Release large objects */ nuclear@2: lhdr_ptr = mem->large_list[pool_id]; nuclear@2: mem->large_list[pool_id] = NULL; nuclear@2: nuclear@2: while (lhdr_ptr != NULL) { nuclear@2: large_pool_ptr next_lhdr_ptr = lhdr_ptr->hdr.next; nuclear@2: space_freed = lhdr_ptr->hdr.bytes_used + nuclear@2: lhdr_ptr->hdr.bytes_left + nuclear@2: SIZEOF(large_pool_hdr); nuclear@2: jpeg_free_large(cinfo, (void FAR *) lhdr_ptr, space_freed); nuclear@2: mem->total_space_allocated -= space_freed; nuclear@2: lhdr_ptr = next_lhdr_ptr; nuclear@2: } nuclear@2: nuclear@2: /* Release small objects */ nuclear@2: shdr_ptr = mem->small_list[pool_id]; nuclear@2: mem->small_list[pool_id] = NULL; nuclear@2: nuclear@2: while (shdr_ptr != NULL) { nuclear@2: small_pool_ptr next_shdr_ptr = shdr_ptr->hdr.next; nuclear@2: space_freed = shdr_ptr->hdr.bytes_used + nuclear@2: shdr_ptr->hdr.bytes_left + nuclear@2: SIZEOF(small_pool_hdr); nuclear@2: jpeg_free_small(cinfo, (void *) shdr_ptr, space_freed); nuclear@2: mem->total_space_allocated -= space_freed; nuclear@2: shdr_ptr = next_shdr_ptr; nuclear@2: } nuclear@2: } nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * Close up shop entirely. nuclear@2: * Note that this cannot be called unless cinfo->mem is non-NULL. nuclear@2: */ nuclear@2: nuclear@2: METHODDEF(void) nuclear@2: self_destruct (j_common_ptr cinfo) nuclear@2: { nuclear@2: int pool; nuclear@2: nuclear@2: /* Close all backing store, release all memory. nuclear@2: * Releasing pools in reverse order might help avoid fragmentation nuclear@2: * with some (brain-damaged) malloc libraries. nuclear@2: */ nuclear@2: for (pool = JPOOL_NUMPOOLS-1; pool >= JPOOL_PERMANENT; pool--) { nuclear@2: free_pool(cinfo, pool); nuclear@2: } nuclear@2: nuclear@2: /* Release the memory manager control block too. */ nuclear@2: jpeg_free_small(cinfo, (void *) cinfo->mem, SIZEOF(my_memory_mgr)); nuclear@2: cinfo->mem = NULL; /* ensures I will be called only once */ nuclear@2: nuclear@2: jpeg_mem_term(cinfo); /* system-dependent cleanup */ nuclear@2: } nuclear@2: nuclear@2: nuclear@2: /* nuclear@2: * Memory manager initialization. nuclear@2: * When this is called, only the error manager pointer is valid in cinfo! nuclear@2: */ nuclear@2: nuclear@2: GLOBAL(void) nuclear@2: jinit_memory_mgr (j_common_ptr cinfo) nuclear@2: { nuclear@2: my_mem_ptr mem; nuclear@2: long max_to_use; nuclear@2: int pool; nuclear@2: size_t test_mac; nuclear@2: nuclear@2: cinfo->mem = NULL; /* for safety if init fails */ nuclear@2: nuclear@2: /* Check for configuration errors. nuclear@2: * SIZEOF(ALIGN_TYPE) should be a power of 2; otherwise, it probably nuclear@2: * doesn't reflect any real hardware alignment requirement. nuclear@2: * The test is a little tricky: for X>0, X and X-1 have no one-bits nuclear@2: * in common if and only if X is a power of 2, ie has only one one-bit. nuclear@2: * Some compilers may give an "unreachable code" warning here; ignore it. nuclear@2: */ nuclear@2: if ((SIZEOF(ALIGN_TYPE) & (SIZEOF(ALIGN_TYPE)-1)) != 0) nuclear@2: ERREXIT(cinfo, JERR_BAD_ALIGN_TYPE); nuclear@2: /* MAX_ALLOC_CHUNK must be representable as type size_t, and must be nuclear@2: * a multiple of SIZEOF(ALIGN_TYPE). nuclear@2: * Again, an "unreachable code" warning may be ignored here. nuclear@2: * But a "constant too large" warning means you need to fix MAX_ALLOC_CHUNK. nuclear@2: */ nuclear@2: test_mac = (size_t) MAX_ALLOC_CHUNK; nuclear@2: if ((long) test_mac != MAX_ALLOC_CHUNK || nuclear@2: (MAX_ALLOC_CHUNK % SIZEOF(ALIGN_TYPE)) != 0) nuclear@2: ERREXIT(cinfo, JERR_BAD_ALLOC_CHUNK); nuclear@2: nuclear@2: max_to_use = jpeg_mem_init(cinfo); /* system-dependent initialization */ nuclear@2: nuclear@2: /* Attempt to allocate memory manager's control block */ nuclear@2: mem = (my_mem_ptr) jpeg_get_small(cinfo, SIZEOF(my_memory_mgr)); nuclear@2: nuclear@2: if (mem == NULL) { nuclear@2: jpeg_mem_term(cinfo); /* system-dependent cleanup */ nuclear@2: ERREXIT1(cinfo, JERR_OUT_OF_MEMORY, 0); nuclear@2: } nuclear@2: nuclear@2: /* OK, fill in the method pointers */ nuclear@2: mem->pub.alloc_small = alloc_small; nuclear@2: mem->pub.alloc_large = alloc_large; nuclear@2: mem->pub.alloc_sarray = alloc_sarray; nuclear@2: mem->pub.alloc_barray = alloc_barray; nuclear@2: mem->pub.request_virt_sarray = request_virt_sarray; nuclear@2: mem->pub.request_virt_barray = request_virt_barray; nuclear@2: mem->pub.realize_virt_arrays = realize_virt_arrays; nuclear@2: mem->pub.access_virt_sarray = access_virt_sarray; nuclear@2: mem->pub.access_virt_barray = access_virt_barray; nuclear@2: mem->pub.free_pool = free_pool; nuclear@2: mem->pub.self_destruct = self_destruct; nuclear@2: nuclear@2: /* Make MAX_ALLOC_CHUNK accessible to other modules */ nuclear@2: mem->pub.max_alloc_chunk = MAX_ALLOC_CHUNK; nuclear@2: nuclear@2: /* Initialize working state */ nuclear@2: mem->pub.max_memory_to_use = max_to_use; nuclear@2: nuclear@2: for (pool = JPOOL_NUMPOOLS-1; pool >= JPOOL_PERMANENT; pool--) { nuclear@2: mem->small_list[pool] = NULL; nuclear@2: mem->large_list[pool] = NULL; nuclear@2: } nuclear@2: mem->virt_sarray_list = NULL; nuclear@2: mem->virt_barray_list = NULL; nuclear@2: nuclear@2: mem->total_space_allocated = SIZEOF(my_memory_mgr); nuclear@2: nuclear@2: /* Declare ourselves open for business */ nuclear@2: cinfo->mem = & mem->pub; nuclear@2: nuclear@2: /* Check for an environment variable JPEGMEM; if found, override the nuclear@2: * default max_memory setting from jpeg_mem_init. Note that the nuclear@2: * surrounding application may again override this value. nuclear@2: * If your system doesn't support getenv(), define NO_GETENV to disable nuclear@2: * this feature. nuclear@2: */ nuclear@2: #ifndef NO_GETENV nuclear@2: { char * memenv; nuclear@2: nuclear@2: if ((memenv = getenv("JPEGMEM")) != NULL) { nuclear@2: char ch = 'x'; nuclear@2: nuclear@2: if (sscanf(memenv, "%ld%c", &max_to_use, &ch) > 0) { nuclear@2: if (ch == 'm' || ch == 'M') nuclear@2: max_to_use *= 1000L; nuclear@2: mem->pub.max_memory_to_use = max_to_use * 1000L; nuclear@2: } nuclear@2: } nuclear@2: } nuclear@2: #endif nuclear@2: nuclear@2: }