JMEMMGR.c
上传用户:qiutianh
上传日期:2022-08-08
资源大小:939k
文件大小:42k
源码类别:

图形图象

开发平台:

Visual C++

  1. ////////////////////////////////////////////////////////////////////////
  2. //
  3. // Note : this file is included as part of the Smaller Animals Software
  4. // JpegFile package. Though this file has not been modified from it's 
  5. // original IJG 6a form, it is not the responsibility on the Independent
  6. // JPEG Group to answer questions regarding this code.
  7. //
  8. // Any questions you have about this code should be addressed to :
  9. //
  10. // CHRISDL@PAGESZ.NET - the distributor of this package.
  11. //
  12. // Remember, by including this code in the JpegFile package, Smaller 
  13. // Animals Software assumes all responsibilities for answering questions
  14. // about it. If we (SA Software) can't answer your questions ourselves, we 
  15. // will direct you to people who can.
  16. //
  17. // Thanks, CDL.
  18. //
  19. ////////////////////////////////////////////////////////////////////////
  20. /*
  21.  * jmemmgr.c
  22.  *
  23.  * Copyright (C) 1991-1996, Thomas G. Lane.
  24.  * This file is part of the Independent JPEG Group's software.
  25.  * For conditions of distribution and use, see the accompanying README file.
  26.  *
  27.  * This file contains the JPEG system-independent memory management
  28.  * routines.  This code is usable across a wide variety of machines; most
  29.  * of the system dependencies have been isolated in a separate file.
  30.  * The major functions provided here are:
  31.  *   * pool-based allocation and freeing of memory;
  32.  *   * policy decisions about how to divide available memory among the
  33.  *     virtual arrays;
  34.  *   * control logic for swapping virtual arrays between main memory and
  35.  *     backing storage.
  36.  * The separate system-dependent file provides the actual backing-storage
  37.  * access code, and it contains the policy decision about how much total
  38.  * main memory to use.
  39.  * This file is system-dependent in the sense that some of its functions
  40.  * are unnecessary in some systems.  For example, if there is enough virtual
  41.  * memory so that backing storage will never be used, much of the virtual
  42.  * array control logic could be removed.  (Of course, if you have that much
  43.  * memory then you shouldn't care about a little bit of unused code...)
  44.  */
  45. #define JPEG_INTERNALS
  46. #define AM_MEMORY_MANAGER /* we define jvirt_Xarray_control structs */
  47. #include "jinclude.h"
  48. #include "jpeglib.h"
  49. #include "jmemsys.h" /* import the system-dependent declarations */
  50. #ifndef NO_GETENV
  51. #ifndef HAVE_STDLIB_H /* <stdlib.h> should declare getenv() */
  52. extern char * getenv JPP((const char * name));
  53. #endif
  54. #endif
  55. /*
  56.  * Some important notes:
  57.  *   The allocation routines provided here must never return NULL.
  58.  *   They should exit to error_exit if unsuccessful.
  59.  *
  60.  *   It's not a good idea to try to merge the sarray and barray routines,
  61.  *   even though they are textually almost the same, because samples are
  62.  *   usually stored as bytes while coefficients are shorts or ints.  Thus,
  63.  *   in machines where byte pointers have a different representation from
  64.  *   word pointers, the resulting machine code could not be the same.
  65.  */
  66. /*
  67.  * Many machines require storage alignment: longs must start on 4-byte
  68.  * boundaries, doubles on 8-byte boundaries, etc.  On such machines, malloc()
  69.  * always returns pointers that are multiples of the worst-case alignment
  70.  * requirement, and we had better do so too.
  71.  * There isn't any really portable way to determine the worst-case alignment
  72.  * requirement.  This module assumes that the alignment requirement is
  73.  * multiples of sizeof(ALIGN_TYPE).
  74.  * By default, we define ALIGN_TYPE as double.  This is necessary on some
  75.  * workstations (where doubles really do need 8-byte alignment) and will work
  76.  * fine on nearly everything.  If your machine has lesser alignment needs,
  77.  * you can save a few bytes by making ALIGN_TYPE smaller.
  78.  * The only place I know of where this will NOT work is certain Macintosh
  79.  * 680x0 compilers that define double as a 10-byte IEEE extended float.
  80.  * Doing 10-byte alignment is counterproductive because longwords won't be
  81.  * aligned well.  Put "#define ALIGN_TYPE long" in jconfig.h if you have
  82.  * such a compiler.
  83.  */
  84. #ifndef ALIGN_TYPE /* so can override from jconfig.h */
  85. #define ALIGN_TYPE  double
  86. #endif
  87. /*
  88.  * We allocate objects from "pools", where each pool is gotten with a single
  89.  * request to jpeg_get_small() or jpeg_get_large().  There is no per-object
  90.  * overhead within a pool, except for alignment padding.  Each pool has a
  91.  * header with a link to the next pool of the same class.
  92.  * Small and large pool headers are identical except that the latter's
  93.  * link pointer must be FAR on 80x86 machines.
  94.  * Notice that the "real" header fields are union'ed with a dummy ALIGN_TYPE
  95.  * field.  This forces the compiler to make SIZEOF(small_pool_hdr) a multiple
  96.  * of the alignment requirement of ALIGN_TYPE.
  97.  */
  98. typedef union small_pool_struct * small_pool_ptr;
  99. typedef union small_pool_struct {
  100.   struct {
  101.     small_pool_ptr next; /* next in list of pools */
  102.     size_t bytes_used; /* how many bytes already used within pool */
  103.     size_t bytes_left; /* bytes still available in this pool */
  104.   } hdr;
  105.   ALIGN_TYPE dummy; /* included in union to ensure alignment */
  106. } small_pool_hdr;
  107. typedef union large_pool_struct FAR * large_pool_ptr;
  108. typedef union large_pool_struct {
  109.   struct {
  110.     large_pool_ptr next; /* next in list of pools */
  111.     size_t bytes_used; /* how many bytes already used within pool */
  112.     size_t bytes_left; /* bytes still available in this pool */
  113.   } hdr;
  114.   ALIGN_TYPE dummy; /* included in union to ensure alignment */
  115. } large_pool_hdr;
  116. /*
  117.  * Here is the full definition of a memory manager object.
  118.  */
  119. typedef struct {
  120.   struct jpeg_memory_mgr pub; /* public fields */
  121.   /* Each pool identifier (lifetime class) names a linked list of pools. */
  122.   small_pool_ptr small_list[JPOOL_NUMPOOLS];
  123.   large_pool_ptr large_list[JPOOL_NUMPOOLS];
  124.   /* Since we only have one lifetime class of virtual arrays, only one
  125.    * linked list is necessary (for each datatype).  Note that the virtual
  126.    * array control blocks being linked together are actually stored somewhere
  127.    * in the small-pool list.
  128.    */
  129.   jvirt_sarray_ptr virt_sarray_list;
  130.   jvirt_barray_ptr virt_barray_list;
  131.   /* This counts total space obtained from jpeg_get_small/large */
  132.   long total_space_allocated;
  133.   /* alloc_sarray and alloc_barray set this value for use by virtual
  134.    * array routines.
  135.    */
  136.   JDIMENSION last_rowsperchunk; /* from most recent alloc_sarray/barray */
  137. } my_memory_mgr;
  138. typedef my_memory_mgr * my_mem_ptr;
  139. /*
  140.  * The control blocks for virtual arrays.
  141.  * Note that these blocks are allocated in the "small" pool area.
  142.  * System-dependent info for the associated backing store (if any) is hidden
  143.  * inside the backing_store_info struct.
  144.  */
  145. struct jvirt_sarray_control {
  146.   JSAMPARRAY mem_buffer; /* => the in-memory buffer */
  147.   JDIMENSION rows_in_array; /* total virtual array height */
  148.   JDIMENSION samplesperrow; /* width of array (and of memory buffer) */
  149.   JDIMENSION maxaccess; /* max rows accessed by access_virt_sarray */
  150.   JDIMENSION rows_in_mem; /* height of memory buffer */
  151.   JDIMENSION rowsperchunk; /* allocation chunk size in mem_buffer */
  152.   JDIMENSION cur_start_row; /* first logical row # in the buffer */
  153.   JDIMENSION first_undef_row; /* row # of first uninitialized row */
  154.   boolean pre_zero; /* pre-zero mode requested? */
  155.   boolean dirty; /* do current buffer contents need written? */
  156.   boolean b_s_open; /* is backing-store data valid? */
  157.   jvirt_sarray_ptr next; /* link to next virtual sarray control block */
  158.   backing_store_info b_s_info; /* System-dependent control info */
  159. };
  160. struct jvirt_barray_control {
  161.   JBLOCKARRAY mem_buffer; /* => the in-memory buffer */
  162.   JDIMENSION rows_in_array; /* total virtual array height */
  163.   JDIMENSION blocksperrow; /* width of array (and of memory buffer) */
  164.   JDIMENSION maxaccess; /* max rows accessed by access_virt_barray */
  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_barray_ptr next; /* link to next virtual barray control block */
  173.   backing_store_info b_s_info; /* System-dependent control info */
  174. };
  175. #ifdef MEM_STATS /* optional extra stuff for statistics */
  176. LOCAL(void)
  177. print_mem_stats (j_common_ptr cinfo, int pool_id)
  178. {
  179.   my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
  180.   small_pool_ptr shdr_ptr;
  181.   large_pool_ptr lhdr_ptr;
  182.   /* Since this is only a debugging stub, we can cheat a little by using
  183.    * fprintf directly rather than going through the trace message code.
  184.    * This is helpful because message parm array can't handle longs.
  185.    */
  186.   fprintf(stderr, "Freeing pool %d, total space = %ldn",
  187.   pool_id, mem->total_space_allocated);
  188.   for (lhdr_ptr = mem->large_list[pool_id]; lhdr_ptr != NULL;
  189.        lhdr_ptr = lhdr_ptr->hdr.next) {
  190.     fprintf(stderr, "  Large chunk used %ldn",
  191.     (long) lhdr_ptr->hdr.bytes_used);
  192.   }
  193.   for (shdr_ptr = mem->small_list[pool_id]; shdr_ptr != NULL;
  194.        shdr_ptr = shdr_ptr->hdr.next) {
  195.     fprintf(stderr, "  Small chunk used %ld free %ldn",
  196.     (long) shdr_ptr->hdr.bytes_used,
  197.     (long) shdr_ptr->hdr.bytes_left);
  198.   }
  199. }
  200. #endif /* MEM_STATS */
  201. LOCAL(void)
  202. out_of_memory (j_common_ptr cinfo, int which)
  203. /* Report an out-of-memory error and stop execution */
  204. /* If we compiled MEM_STATS support, report alloc requests before dying */
  205. {
  206. #ifdef MEM_STATS
  207.   cinfo->err->trace_level = 2; /* force self_destruct to report stats */
  208. #endif
  209.   ERREXIT1(cinfo, JERR_OUT_OF_MEMORY, which);
  210. }
  211. /*
  212.  * Allocation of "small" objects.
  213.  *
  214.  * For these, we use pooled storage.  When a new pool must be created,
  215.  * we try to get enough space for the current request plus a "slop" factor,
  216.  * where the slop will be the amount of leftover space in the new pool.
  217.  * The speed vs. space tradeoff is largely determined by the slop values.
  218.  * A different slop value is provided for each pool class (lifetime),
  219.  * and we also distinguish the first pool of a class from later ones.
  220.  * NOTE: the values given work fairly well on both 16- and 32-bit-int
  221.  * machines, but may be too small if longs are 64 bits or more.
  222.  */
  223. static const size_t first_pool_slop[JPOOL_NUMPOOLS] = 
  224. {
  225. 1600, /* first PERMANENT pool */
  226. 16000 /* first IMAGE pool */
  227. };
  228. static const size_t extra_pool_slop[JPOOL_NUMPOOLS] = 
  229. {
  230. 0, /* additional PERMANENT pools */
  231. 5000 /* additional IMAGE pools */
  232. };
  233. #define MIN_SLOP  50 /* greater than 0 to avoid futile looping */
  234. METHODDEF(void *)
  235. alloc_small (j_common_ptr cinfo, int pool_id, size_t sizeofobject)
  236. /* Allocate a "small" object */
  237. {
  238.   my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
  239.   small_pool_ptr hdr_ptr, prev_hdr_ptr;
  240.   char * data_ptr;
  241.   size_t odd_bytes, min_request, slop;
  242.   /* Check for unsatisfiable request (do now to ensure no overflow below) */
  243.   if (sizeofobject > (size_t) (MAX_ALLOC_CHUNK-SIZEOF(small_pool_hdr)))
  244.     out_of_memory(cinfo, 1); /* request exceeds malloc's ability */
  245.   /* Round up the requested size to a multiple of SIZEOF(ALIGN_TYPE) */
  246.   odd_bytes = sizeofobject % SIZEOF(ALIGN_TYPE);
  247.   if (odd_bytes > 0)
  248.     sizeofobject += SIZEOF(ALIGN_TYPE) - odd_bytes;
  249.   /* See if space is available in any existing pool */
  250.   if (pool_id < 0 || pool_id >= JPOOL_NUMPOOLS)
  251.     ERREXIT1(cinfo, JERR_BAD_POOL_ID, pool_id); /* safety check */
  252.   prev_hdr_ptr = NULL;
  253.   hdr_ptr = mem->small_list[pool_id];
  254.   while (hdr_ptr != NULL) {
  255.     if (hdr_ptr->hdr.bytes_left >= sizeofobject)
  256.       break; /* found pool with enough space */
  257.     prev_hdr_ptr = hdr_ptr;
  258.     hdr_ptr = hdr_ptr->hdr.next;
  259.   }
  260.   /* Time to make a new pool? */
  261.   if (hdr_ptr == NULL) {
  262.     /* min_request is what we need now, slop is what will be leftover */
  263.     min_request = sizeofobject + SIZEOF(small_pool_hdr);
  264.     if (prev_hdr_ptr == NULL) /* first pool in class? */
  265.       slop = first_pool_slop[pool_id];
  266.     else
  267.       slop = extra_pool_slop[pool_id];
  268.     /* Don't ask for more than MAX_ALLOC_CHUNK */
  269.     if (slop > (size_t) (MAX_ALLOC_CHUNK-min_request))
  270.       slop = (size_t) (MAX_ALLOC_CHUNK-min_request);
  271.     /* Try to get space, if fail reduce slop and try again */
  272.     for (;;) {
  273.       hdr_ptr = (small_pool_ptr) jpeg_get_small(cinfo, min_request + slop);
  274.       if (hdr_ptr != NULL)
  275. break;
  276.       slop /= 2;
  277.       if (slop < MIN_SLOP) /* give up when it gets real small */
  278. out_of_memory(cinfo, 2); /* jpeg_get_small failed */
  279.     }
  280.     mem->total_space_allocated += min_request + slop;
  281.     /* Success, initialize the new pool header and add to end of list */
  282.     hdr_ptr->hdr.next = NULL;
  283.     hdr_ptr->hdr.bytes_used = 0;
  284.     hdr_ptr->hdr.bytes_left = sizeofobject + slop;
  285.     if (prev_hdr_ptr == NULL) /* first pool in class? */
  286.       mem->small_list[pool_id] = hdr_ptr;
  287.     else
  288.       prev_hdr_ptr->hdr.next = hdr_ptr;
  289.   }
  290.   /* OK, allocate the object from the current pool */
  291.   data_ptr = (char *) (hdr_ptr + 1); /* point to first data byte in pool */
  292.   data_ptr += hdr_ptr->hdr.bytes_used; /* point to place for object */
  293.   hdr_ptr->hdr.bytes_used += sizeofobject;
  294.   hdr_ptr->hdr.bytes_left -= sizeofobject;
  295.   return (void *) data_ptr;
  296. }
  297. /*
  298.  * Allocation of "large" objects.
  299.  *
  300.  * The external semantics of these are the same as "small" objects,
  301.  * except that FAR pointers are used on 80x86.  However the pool
  302.  * management heuristics are quite different.  We assume that each
  303.  * request is large enough that it may as well be passed directly to
  304.  * jpeg_get_large; the pool management just links everything together
  305.  * so that we can free it all on demand.
  306.  * Note: the major use of "large" objects is in JSAMPARRAY and JBLOCKARRAY
  307.  * structures.  The routines that create these structures (see below)
  308.  * deliberately bunch rows together to ensure a large request size.
  309.  */
  310. METHODDEF(void FAR *)
  311. alloc_large (j_common_ptr cinfo, int pool_id, size_t sizeofobject)
  312. /* Allocate a "large" object */
  313. {
  314.   my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
  315.   large_pool_ptr hdr_ptr;
  316.   size_t odd_bytes;
  317.   /* Check for unsatisfiable request (do now to ensure no overflow below) */
  318.   if (sizeofobject > (size_t) (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)))
  319.     out_of_memory(cinfo, 3); /* request exceeds malloc's ability */
  320.   /* Round up the requested size to a multiple of SIZEOF(ALIGN_TYPE) */
  321.   odd_bytes = sizeofobject % SIZEOF(ALIGN_TYPE);
  322.   if (odd_bytes > 0)
  323.     sizeofobject += SIZEOF(ALIGN_TYPE) - odd_bytes;
  324.   /* Always make a new pool */
  325.   if (pool_id < 0 || pool_id >= JPOOL_NUMPOOLS)
  326.     ERREXIT1(cinfo, JERR_BAD_POOL_ID, pool_id); /* safety check */
  327.   hdr_ptr = (large_pool_ptr) jpeg_get_large(cinfo, sizeofobject +
  328.     SIZEOF(large_pool_hdr));
  329.   if (hdr_ptr == NULL)
  330.     out_of_memory(cinfo, 4); /* jpeg_get_large failed */
  331.   mem->total_space_allocated += sizeofobject + SIZEOF(large_pool_hdr);
  332.   /* Success, initialize the new pool header and add to list */
  333.   hdr_ptr->hdr.next = mem->large_list[pool_id];
  334.   /* We maintain space counts in each pool header for statistical purposes,
  335.    * even though they are not needed for allocation.
  336.    */
  337.   hdr_ptr->hdr.bytes_used = sizeofobject;
  338.   hdr_ptr->hdr.bytes_left = 0;
  339.   mem->large_list[pool_id] = hdr_ptr;
  340.   return (void FAR *) (hdr_ptr + 1); /* point to first data byte in pool */
  341. }
  342. /*
  343.  * Creation of 2-D sample arrays.
  344.  * The pointers are in near heap, the samples themselves in FAR heap.
  345.  *
  346.  * To minimize allocation overhead and to allow I/O of large contiguous
  347.  * blocks, we allocate the sample rows in groups of as many rows as possible
  348.  * without exceeding MAX_ALLOC_CHUNK total bytes per allocation request.
  349.  * NB: the virtual array control routines, later in this file, know about
  350.  * this chunking of rows.  The rowsperchunk value is left in the mem manager
  351.  * object so that it can be saved away if this sarray is the workspace for
  352.  * a virtual array.
  353.  */
  354. METHODDEF(JSAMPARRAY)
  355. alloc_sarray (j_common_ptr cinfo, int pool_id,
  356.       JDIMENSION samplesperrow, JDIMENSION numrows)
  357. /* Allocate a 2-D sample array */
  358. {
  359.   my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
  360.   JSAMPARRAY result;
  361.   JSAMPROW workspace;
  362.   JDIMENSION rowsperchunk, currow, i;
  363.   long ltemp;
  364.   /* Calculate max # of rows allowed in one allocation chunk */
  365.   ltemp = (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)) /
  366.   ((long) samplesperrow * SIZEOF(JSAMPLE));
  367.   if (ltemp <= 0)
  368.     ERREXIT(cinfo, JERR_WIDTH_OVERFLOW);
  369.   if (ltemp < (long) numrows)
  370.     rowsperchunk = (JDIMENSION) ltemp;
  371.   else
  372.     rowsperchunk = numrows;
  373.   mem->last_rowsperchunk = rowsperchunk;
  374.   /* Get space for row pointers (small object) */
  375.   result = (JSAMPARRAY) alloc_small(cinfo, pool_id,
  376.     (size_t) (numrows * SIZEOF(JSAMPROW)));
  377.   /* Get the rows themselves (large objects) */
  378.   currow = 0;
  379.   while (currow < numrows) {
  380.     rowsperchunk = MIN(rowsperchunk, numrows - currow);
  381.     workspace = (JSAMPROW) alloc_large(cinfo, pool_id,
  382. (size_t) ((size_t) rowsperchunk * (size_t) samplesperrow
  383.   * SIZEOF(JSAMPLE)));
  384.     for (i = rowsperchunk; i > 0; i--) {
  385.       result[currow++] = workspace;
  386.       workspace += samplesperrow;
  387.     }
  388.   }
  389.   return result;
  390. }
  391. /*
  392.  * Creation of 2-D coefficient-block arrays.
  393.  * This is essentially the same as the code for sample arrays, above.
  394.  */
  395. METHODDEF(JBLOCKARRAY)
  396. alloc_barray (j_common_ptr cinfo, int pool_id,
  397.       JDIMENSION blocksperrow, JDIMENSION numrows)
  398. /* Allocate a 2-D coefficient-block array */
  399. {
  400.   my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
  401.   JBLOCKARRAY result;
  402.   JBLOCKROW workspace;
  403.   JDIMENSION rowsperchunk, currow, i;
  404.   long ltemp;
  405.   /* Calculate max # of rows allowed in one allocation chunk */
  406.   ltemp = (MAX_ALLOC_CHUNK-SIZEOF(large_pool_hdr)) /
  407.   ((long) blocksperrow * SIZEOF(JBLOCK));
  408.   if (ltemp <= 0)
  409.     ERREXIT(cinfo, JERR_WIDTH_OVERFLOW);
  410.   if (ltemp < (long) numrows)
  411.     rowsperchunk = (JDIMENSION) ltemp;
  412.   else
  413.     rowsperchunk = numrows;
  414.   mem->last_rowsperchunk = rowsperchunk;
  415.   /* Get space for row pointers (small object) */
  416.   result = (JBLOCKARRAY) alloc_small(cinfo, pool_id,
  417.      (size_t) (numrows * SIZEOF(JBLOCKROW)));
  418.   /* Get the rows themselves (large objects) */
  419.   currow = 0;
  420.   while (currow < numrows) {
  421.     rowsperchunk = MIN(rowsperchunk, numrows - currow);
  422.     workspace = (JBLOCKROW) alloc_large(cinfo, pool_id,
  423. (size_t) ((size_t) rowsperchunk * (size_t) blocksperrow
  424.   * SIZEOF(JBLOCK)));
  425.     for (i = rowsperchunk; i > 0; i--) {
  426.       result[currow++] = workspace;
  427.       workspace += blocksperrow;
  428.     }
  429.   }
  430.   return result;
  431. }
  432. /*
  433.  * About virtual array management:
  434.  *
  435.  * The above "normal" array routines are only used to allocate strip buffers
  436.  * (as wide as the image, but just a few rows high).  Full-image-sized buffers
  437.  * are handled as "virtual" arrays.  The array is still accessed a strip at a
  438.  * time, but the memory manager must save the whole array for repeated
  439.  * accesses.  The intended implementation is that there is a strip buffer in
  440.  * memory (as high as is possible given the desired memory limit), plus a
  441.  * backing file that holds the rest of the array.
  442.  *
  443.  * The request_virt_array routines are told the total size of the image and
  444.  * the maximum number of rows that will be accessed at once.  The in-memory
  445.  * buffer must be at least as large as the maxaccess value.
  446.  *
  447.  * The request routines create control blocks but not the in-memory buffers.
  448.  * That is postponed until realize_virt_arrays is called.  At that time the
  449.  * total amount of space needed is known (approximately, anyway), so free
  450.  * memory can be divided up fairly.
  451.  *
  452.  * The access_virt_array routines are responsible for making a specific strip
  453.  * area accessible (after reading or writing the backing file, if necessary).
  454.  * Note that the access routines are told whether the caller intends to modify
  455.  * the accessed strip; during a read-only pass this saves having to rewrite
  456.  * data to disk.  The access routines are also responsible for pre-zeroing
  457.  * any newly accessed rows, if pre-zeroing was requested.
  458.  *
  459.  * In current usage, the access requests are usually for nonoverlapping
  460.  * strips; that is, successive access start_row numbers differ by exactly
  461.  * num_rows = maxaccess.  This means we can get good performance with simple
  462.  * buffer dump/reload logic, by making the in-memory buffer be a multiple
  463.  * of the access height; then there will never be accesses across bufferload
  464.  * boundaries.  The code will still work with overlapping access requests,
  465.  * but it doesn't handle bufferload overlaps very efficiently.
  466.  */
  467. METHODDEF(jvirt_sarray_ptr)
  468. request_virt_sarray (j_common_ptr cinfo, int pool_id, boolean pre_zero,
  469.      JDIMENSION samplesperrow, JDIMENSION numrows,
  470.      JDIMENSION maxaccess)
  471. /* Request a virtual 2-D sample array */
  472. {
  473.   my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
  474.   jvirt_sarray_ptr result;
  475.   /* Only IMAGE-lifetime virtual arrays are currently supported */
  476.   if (pool_id != JPOOL_IMAGE)
  477.     ERREXIT1(cinfo, JERR_BAD_POOL_ID, pool_id); /* safety check */
  478.   /* get control block */
  479.   result = (jvirt_sarray_ptr) alloc_small(cinfo, pool_id,
  480.   SIZEOF(struct jvirt_sarray_control));
  481.   result->mem_buffer = NULL; /* marks array not yet realized */
  482.   result->rows_in_array = numrows;
  483.   result->samplesperrow = samplesperrow;
  484.   result->maxaccess = maxaccess;
  485.   result->pre_zero = pre_zero;
  486.   result->b_s_open = FALSE; /* no associated backing-store object */
  487.   result->next = mem->virt_sarray_list; /* add to list of virtual arrays */
  488.   mem->virt_sarray_list = result;
  489.   return result;
  490. }
  491. METHODDEF(jvirt_barray_ptr)
  492. request_virt_barray (j_common_ptr cinfo, int pool_id, boolean pre_zero,
  493.      JDIMENSION blocksperrow, JDIMENSION numrows,
  494.      JDIMENSION maxaccess)
  495. /* Request a virtual 2-D coefficient-block array */
  496. {
  497.   my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
  498.   jvirt_barray_ptr result;
  499.   /* Only IMAGE-lifetime virtual arrays are currently supported */
  500.   if (pool_id != JPOOL_IMAGE)
  501.     ERREXIT1(cinfo, JERR_BAD_POOL_ID, pool_id); /* safety check */
  502.   /* get control block */
  503.   result = (jvirt_barray_ptr) alloc_small(cinfo, pool_id,
  504.   SIZEOF(struct jvirt_barray_control));
  505.   result->mem_buffer = NULL; /* marks array not yet realized */
  506.   result->rows_in_array = numrows;
  507.   result->blocksperrow = blocksperrow;
  508.   result->maxaccess = maxaccess;
  509.   result->pre_zero = pre_zero;
  510.   result->b_s_open = FALSE; /* no associated backing-store object */
  511.   result->next = mem->virt_barray_list; /* add to list of virtual arrays */
  512.   mem->virt_barray_list = result;
  513.   return result;
  514. }
  515. METHODDEF(void)
  516. realize_virt_arrays (j_common_ptr cinfo)
  517. /* Allocate the in-memory buffers for any unrealized virtual arrays */
  518. {
  519.   my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
  520.   long space_per_minheight, maximum_space, avail_mem;
  521.   long minheights, max_minheights;
  522.   jvirt_sarray_ptr sptr;
  523.   jvirt_barray_ptr bptr;
  524.   /* Compute the minimum space needed (maxaccess rows in each buffer)
  525.    * and the maximum space needed (full image height in each buffer).
  526.    * These may be of use to the system-dependent jpeg_mem_available routine.
  527.    */
  528.   space_per_minheight = 0;
  529.   maximum_space = 0;
  530.   for (sptr = mem->virt_sarray_list; sptr != NULL; sptr = sptr->next) {
  531.     if (sptr->mem_buffer == NULL) { /* if not realized yet */
  532.       space_per_minheight += (long) sptr->maxaccess *
  533.      (long) sptr->samplesperrow * SIZEOF(JSAMPLE);
  534.       maximum_space += (long) sptr->rows_in_array *
  535.        (long) sptr->samplesperrow * SIZEOF(JSAMPLE);
  536.     }
  537.   }
  538.   for (bptr = mem->virt_barray_list; bptr != NULL; bptr = bptr->next) {
  539.     if (bptr->mem_buffer == NULL) { /* if not realized yet */
  540.       space_per_minheight += (long) bptr->maxaccess *
  541.      (long) bptr->blocksperrow * SIZEOF(JBLOCK);
  542.       maximum_space += (long) bptr->rows_in_array *
  543.        (long) bptr->blocksperrow * SIZEOF(JBLOCK);
  544.     }
  545.   }
  546.   if (space_per_minheight <= 0)
  547.     return; /* no unrealized arrays, no work */
  548.   /* Determine amount of memory to actually use; this is system-dependent. */
  549.   avail_mem = jpeg_mem_available(cinfo, space_per_minheight, maximum_space,
  550.  mem->total_space_allocated);
  551.   /* If the maximum space needed is available, make all the buffers full
  552.    * height; otherwise parcel it out with the same number of minheights
  553.    * in each buffer.
  554.    */
  555.   if (avail_mem >= maximum_space)
  556.     max_minheights = 1000000000L;
  557.   else {
  558.     max_minheights = avail_mem / space_per_minheight;
  559.     /* If there doesn't seem to be enough space, try to get the minimum
  560.      * anyway.  This allows a "stub" implementation of jpeg_mem_available().
  561.      */
  562.     if (max_minheights <= 0)
  563.       max_minheights = 1;
  564.   }
  565.   /* Allocate the in-memory buffers and initialize backing store as needed. */
  566.   for (sptr = mem->virt_sarray_list; sptr != NULL; sptr = sptr->next) {
  567.     if (sptr->mem_buffer == NULL) { /* if not realized yet */
  568.       minheights = ((long) sptr->rows_in_array - 1L) / sptr->maxaccess + 1L;
  569.       if (minheights <= max_minheights) {
  570. /* This buffer fits in memory */
  571. sptr->rows_in_mem = sptr->rows_in_array;
  572.       } else {
  573. /* It doesn't fit in memory, create backing store. */
  574. sptr->rows_in_mem = (JDIMENSION) (max_minheights * sptr->maxaccess);
  575. jpeg_open_backing_store(cinfo, & sptr->b_s_info,
  576. (long) sptr->rows_in_array *
  577. (long) sptr->samplesperrow *
  578. (long) SIZEOF(JSAMPLE));
  579. sptr->b_s_open = TRUE;
  580.       }
  581.       sptr->mem_buffer = alloc_sarray(cinfo, JPOOL_IMAGE,
  582.       sptr->samplesperrow, sptr->rows_in_mem);
  583.       sptr->rowsperchunk = mem->last_rowsperchunk;
  584.       sptr->cur_start_row = 0;
  585.       sptr->first_undef_row = 0;
  586.       sptr->dirty = FALSE;
  587.     }
  588.   }
  589.   for (bptr = mem->virt_barray_list; bptr != NULL; bptr = bptr->next) {
  590.     if (bptr->mem_buffer == NULL) { /* if not realized yet */
  591.       minheights = ((long) bptr->rows_in_array - 1L) / bptr->maxaccess + 1L;
  592.       if (minheights <= max_minheights) {
  593. /* This buffer fits in memory */
  594. bptr->rows_in_mem = bptr->rows_in_array;
  595.       } else {
  596. /* It doesn't fit in memory, create backing store. */
  597. bptr->rows_in_mem = (JDIMENSION) (max_minheights * bptr->maxaccess);
  598. jpeg_open_backing_store(cinfo, & bptr->b_s_info,
  599. (long) bptr->rows_in_array *
  600. (long) bptr->blocksperrow *
  601. (long) SIZEOF(JBLOCK));
  602. bptr->b_s_open = TRUE;
  603.       }
  604.       bptr->mem_buffer = alloc_barray(cinfo, JPOOL_IMAGE,
  605.       bptr->blocksperrow, bptr->rows_in_mem);
  606.       bptr->rowsperchunk = mem->last_rowsperchunk;
  607.       bptr->cur_start_row = 0;
  608.       bptr->first_undef_row = 0;
  609.       bptr->dirty = FALSE;
  610.     }
  611.   }
  612. }
  613. LOCAL(void)
  614. do_sarray_io (j_common_ptr cinfo, jvirt_sarray_ptr ptr, boolean writing)
  615. /* Do backing store read or write of a virtual sample array */
  616. {
  617.   long bytesperrow, file_offset, byte_count, rows, thisrow, i;
  618.   bytesperrow = (long) ptr->samplesperrow * SIZEOF(JSAMPLE);
  619.   file_offset = ptr->cur_start_row * bytesperrow;
  620.   /* Loop to read or write each allocation chunk in mem_buffer */
  621.   for (i = 0; i < (long) ptr->rows_in_mem; i += ptr->rowsperchunk) {
  622.     /* One chunk, but check for short chunk at end of buffer */
  623.     rows = MIN((long) ptr->rowsperchunk, (long) ptr->rows_in_mem - i);
  624.     /* Transfer no more than is currently defined */
  625.     thisrow = (long) ptr->cur_start_row + i;
  626.     rows = MIN(rows, (long) ptr->first_undef_row - thisrow);
  627.     /* Transfer no more than fits in file */
  628.     rows = MIN(rows, (long) ptr->rows_in_array - thisrow);
  629.     if (rows <= 0) /* this chunk might be past end of file! */
  630.       break;
  631.     byte_count = rows * bytesperrow;
  632.     if (writing)
  633.       (*ptr->b_s_info.write_backing_store) (cinfo, & ptr->b_s_info,
  634.     (void FAR *) ptr->mem_buffer[i],
  635.     file_offset, byte_count);
  636.     else
  637.       (*ptr->b_s_info.read_backing_store) (cinfo, & ptr->b_s_info,
  638.    (void FAR *) ptr->mem_buffer[i],
  639.    file_offset, byte_count);
  640.     file_offset += byte_count;
  641.   }
  642. }
  643. LOCAL(void)
  644. do_barray_io (j_common_ptr cinfo, jvirt_barray_ptr ptr, boolean writing)
  645. /* Do backing store read or write of a virtual coefficient-block array */
  646. {
  647.   long bytesperrow, file_offset, byte_count, rows, thisrow, i;
  648.   bytesperrow = (long) ptr->blocksperrow * SIZEOF(JBLOCK);
  649.   file_offset = ptr->cur_start_row * bytesperrow;
  650.   /* Loop to read or write each allocation chunk in mem_buffer */
  651.   for (i = 0; i < (long) ptr->rows_in_mem; i += ptr->rowsperchunk) {
  652.     /* One chunk, but check for short chunk at end of buffer */
  653.     rows = MIN((long) ptr->rowsperchunk, (long) ptr->rows_in_mem - i);
  654.     /* Transfer no more than is currently defined */
  655.     thisrow = (long) ptr->cur_start_row + i;
  656.     rows = MIN(rows, (long) ptr->first_undef_row - thisrow);
  657.     /* Transfer no more than fits in file */
  658.     rows = MIN(rows, (long) ptr->rows_in_array - thisrow);
  659.     if (rows <= 0) /* this chunk might be past end of file! */
  660.       break;
  661.     byte_count = rows * bytesperrow;
  662.     if (writing)
  663.       (*ptr->b_s_info.write_backing_store) (cinfo, & ptr->b_s_info,
  664.     (void FAR *) ptr->mem_buffer[i],
  665.     file_offset, byte_count);
  666.     else
  667.       (*ptr->b_s_info.read_backing_store) (cinfo, & ptr->b_s_info,
  668.    (void FAR *) ptr->mem_buffer[i],
  669.    file_offset, byte_count);
  670.     file_offset += byte_count;
  671.   }
  672. }
  673. METHODDEF(JSAMPARRAY)
  674. access_virt_sarray (j_common_ptr cinfo, jvirt_sarray_ptr ptr,
  675.     JDIMENSION start_row, JDIMENSION num_rows,
  676.     boolean writable)
  677. /* Access the part of a virtual sample array starting at start_row */
  678. /* and extending for num_rows rows.  writable is true if  */
  679. /* caller intends to modify the accessed area. */
  680. {
  681.   JDIMENSION end_row = start_row + num_rows;
  682.   JDIMENSION undef_row;
  683.   /* debugging check */
  684.   if (end_row > ptr->rows_in_array || num_rows > ptr->maxaccess ||
  685.       ptr->mem_buffer == NULL)
  686.     ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS);
  687.   /* Make the desired part of the virtual array accessible */
  688.   if (start_row < ptr->cur_start_row ||
  689.       end_row > ptr->cur_start_row+ptr->rows_in_mem) {
  690.     if (! ptr->b_s_open)
  691.       ERREXIT(cinfo, JERR_VIRTUAL_BUG);
  692.     /* Flush old buffer contents if necessary */
  693.     if (ptr->dirty) {
  694.       do_sarray_io(cinfo, ptr, TRUE);
  695.       ptr->dirty = FALSE;
  696.     }
  697.     /* Decide what part of virtual array to access.
  698.      * Algorithm: if target address > current window, assume forward scan,
  699.      * load starting at target address.  If target address < current window,
  700.      * assume backward scan, load so that target area is top of window.
  701.      * Note that when switching from forward write to forward read, will have
  702.      * start_row = 0, so the limiting case applies and we load from 0 anyway.
  703.      */
  704.     if (start_row > ptr->cur_start_row) {
  705.       ptr->cur_start_row = start_row;
  706.     } else {
  707.       /* use long arithmetic here to avoid overflow & unsigned problems */
  708.       long ltemp;
  709.       ltemp = (long) end_row - (long) ptr->rows_in_mem;
  710.       if (ltemp < 0)
  711. ltemp = 0; /* don't fall off front end of file */
  712.       ptr->cur_start_row = (JDIMENSION) ltemp;
  713.     }
  714.     /* Read in the selected part of the array.
  715.      * During the initial write pass, we will do no actual read
  716.      * because the selected part is all undefined.
  717.      */
  718.     do_sarray_io(cinfo, ptr, FALSE);
  719.   }
  720.   /* Ensure the accessed part of the array is defined; prezero if needed.
  721.    * To improve locality of access, we only prezero the part of the array
  722.    * that the caller is about to access, not the entire in-memory array.
  723.    */
  724.   if (ptr->first_undef_row < end_row) {
  725.     if (ptr->first_undef_row < start_row) {
  726.       if (writable) /* writer skipped over a section of array */
  727. ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS);
  728.       undef_row = start_row; /* but reader is allowed to read ahead */
  729.     } else {
  730.       undef_row = ptr->first_undef_row;
  731.     }
  732.     if (writable)
  733.       ptr->first_undef_row = end_row;
  734.     if (ptr->pre_zero) {
  735.       size_t bytesperrow = (size_t) ptr->samplesperrow * SIZEOF(JSAMPLE);
  736.       undef_row -= ptr->cur_start_row; /* make indexes relative to buffer */
  737.       end_row -= ptr->cur_start_row;
  738.       while (undef_row < end_row) {
  739. jzero_far((void FAR *) ptr->mem_buffer[undef_row], bytesperrow);
  740. undef_row++;
  741.       }
  742.     } else {
  743.       if (! writable) /* reader looking at undefined data */
  744. ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS);
  745.     }
  746.   }
  747.   /* Flag the buffer dirty if caller will write in it */
  748.   if (writable)
  749.     ptr->dirty = TRUE;
  750.   /* Return address of proper part of the buffer */
  751.   return ptr->mem_buffer + (start_row - ptr->cur_start_row);
  752. }
  753. METHODDEF(JBLOCKARRAY)
  754. access_virt_barray (j_common_ptr cinfo, jvirt_barray_ptr ptr,
  755.     JDIMENSION start_row, JDIMENSION num_rows,
  756.     boolean writable)
  757. /* Access the part of a virtual block array starting at start_row */
  758. /* and extending for num_rows rows.  writable is true if  */
  759. /* caller intends to modify the accessed area. */
  760. {
  761.   JDIMENSION end_row = start_row + num_rows;
  762.   JDIMENSION undef_row;
  763.   /* debugging check */
  764.   if (end_row > ptr->rows_in_array || num_rows > ptr->maxaccess ||
  765.       ptr->mem_buffer == NULL)
  766.     ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS);
  767.   /* Make the desired part of the virtual array accessible */
  768.   if (start_row < ptr->cur_start_row ||
  769.       end_row > ptr->cur_start_row+ptr->rows_in_mem) {
  770.     if (! ptr->b_s_open)
  771.       ERREXIT(cinfo, JERR_VIRTUAL_BUG);
  772.     /* Flush old buffer contents if necessary */
  773.     if (ptr->dirty) {
  774.       do_barray_io(cinfo, ptr, TRUE);
  775.       ptr->dirty = FALSE;
  776.     }
  777.     /* Decide what part of virtual array to access.
  778.      * Algorithm: if target address > current window, assume forward scan,
  779.      * load starting at target address.  If target address < current window,
  780.      * assume backward scan, load so that target area is top of window.
  781.      * Note that when switching from forward write to forward read, will have
  782.      * start_row = 0, so the limiting case applies and we load from 0 anyway.
  783.      */
  784.     if (start_row > ptr->cur_start_row) {
  785.       ptr->cur_start_row = start_row;
  786.     } else {
  787.       /* use long arithmetic here to avoid overflow & unsigned problems */
  788.       long ltemp;
  789.       ltemp = (long) end_row - (long) ptr->rows_in_mem;
  790.       if (ltemp < 0)
  791. ltemp = 0; /* don't fall off front end of file */
  792.       ptr->cur_start_row = (JDIMENSION) ltemp;
  793.     }
  794.     /* Read in the selected part of the array.
  795.      * During the initial write pass, we will do no actual read
  796.      * because the selected part is all undefined.
  797.      */
  798.     do_barray_io(cinfo, ptr, FALSE);
  799.   }
  800.   /* Ensure the accessed part of the array is defined; prezero if needed.
  801.    * To improve locality of access, we only prezero the part of the array
  802.    * that the caller is about to access, not the entire in-memory array.
  803.    */
  804.   if (ptr->first_undef_row < end_row) {
  805.     if (ptr->first_undef_row < start_row) {
  806.       if (writable) /* writer skipped over a section of array */
  807. ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS);
  808.       undef_row = start_row; /* but reader is allowed to read ahead */
  809.     } else {
  810.       undef_row = ptr->first_undef_row;
  811.     }
  812.     if (writable)
  813.       ptr->first_undef_row = end_row;
  814.     if (ptr->pre_zero) {
  815.       size_t bytesperrow = (size_t) ptr->blocksperrow * SIZEOF(JBLOCK);
  816.       undef_row -= ptr->cur_start_row; /* make indexes relative to buffer */
  817.       end_row -= ptr->cur_start_row;
  818.       while (undef_row < end_row) {
  819. jzero_far((void FAR *) ptr->mem_buffer[undef_row], bytesperrow);
  820. undef_row++;
  821.       }
  822.     } else {
  823.       if (! writable) /* reader looking at undefined data */
  824. ERREXIT(cinfo, JERR_BAD_VIRTUAL_ACCESS);
  825.     }
  826.   }
  827.   /* Flag the buffer dirty if caller will write in it */
  828.   if (writable)
  829.     ptr->dirty = TRUE;
  830.   /* Return address of proper part of the buffer */
  831.   return ptr->mem_buffer + (start_row - ptr->cur_start_row);
  832. }
  833. /*
  834.  * Release all objects belonging to a specified pool.
  835.  */
  836. METHODDEF(void)
  837. free_pool (j_common_ptr cinfo, int pool_id)
  838. {
  839.   my_mem_ptr mem = (my_mem_ptr) cinfo->mem;
  840.   small_pool_ptr shdr_ptr;
  841.   large_pool_ptr lhdr_ptr;
  842.   size_t space_freed;
  843.   if (pool_id < 0 || pool_id >= JPOOL_NUMPOOLS)
  844.     ERREXIT1(cinfo, JERR_BAD_POOL_ID, pool_id); /* safety check */
  845. #ifdef MEM_STATS
  846.   if (cinfo->err->trace_level > 1)
  847.     print_mem_stats(cinfo, pool_id); /* print pool's memory usage statistics */
  848. #endif
  849.   /* If freeing IMAGE pool, close any virtual arrays first */
  850.   if (pool_id == JPOOL_IMAGE) {
  851.     jvirt_sarray_ptr sptr;
  852.     jvirt_barray_ptr bptr;
  853.     for (sptr = mem->virt_sarray_list; sptr != NULL; sptr = sptr->next) {
  854.       if (sptr->b_s_open) { /* there may be no backing store */
  855. sptr->b_s_open = FALSE; /* prevent recursive close if error */
  856. (*sptr->b_s_info.close_backing_store) (cinfo, & sptr->b_s_info);
  857.       }
  858.     }
  859.     mem->virt_sarray_list = NULL;
  860.     for (bptr = mem->virt_barray_list; bptr != NULL; bptr = bptr->next) {
  861.       if (bptr->b_s_open) { /* there may be no backing store */
  862. bptr->b_s_open = FALSE; /* prevent recursive close if error */
  863. (*bptr->b_s_info.close_backing_store) (cinfo, & bptr->b_s_info);
  864.       }
  865.     }
  866.     mem->virt_barray_list = NULL;
  867.   }
  868.   /* Release large objects */
  869.   lhdr_ptr = mem->large_list[pool_id];
  870.   mem->large_list[pool_id] = NULL;
  871.   while (lhdr_ptr != NULL) {
  872.     large_pool_ptr next_lhdr_ptr = lhdr_ptr->hdr.next;
  873.     space_freed = lhdr_ptr->hdr.bytes_used +
  874.   lhdr_ptr->hdr.bytes_left +
  875.   SIZEOF(large_pool_hdr);
  876.     jpeg_free_large(cinfo, (void FAR *) lhdr_ptr, space_freed);
  877.     mem->total_space_allocated -= space_freed;
  878.     lhdr_ptr = next_lhdr_ptr;
  879.   }
  880.   /* Release small objects */
  881.   shdr_ptr = mem->small_list[pool_id];
  882.   mem->small_list[pool_id] = NULL;
  883.   while (shdr_ptr != NULL) {
  884.     small_pool_ptr next_shdr_ptr = shdr_ptr->hdr.next;
  885.     space_freed = shdr_ptr->hdr.bytes_used +
  886.   shdr_ptr->hdr.bytes_left +
  887.   SIZEOF(small_pool_hdr);
  888.     jpeg_free_small(cinfo, (void *) shdr_ptr, space_freed);
  889.     mem->total_space_allocated -= space_freed;
  890.     shdr_ptr = next_shdr_ptr;
  891.   }
  892. }
  893. /*
  894.  * Close up shop entirely.
  895.  * Note that this cannot be called unless cinfo->mem is non-NULL.
  896.  */
  897. METHODDEF(void)
  898. self_destruct (j_common_ptr cinfo)
  899. {
  900.   int pool;
  901.   /* Close all backing store, release all memory.
  902.    * Releasing pools in reverse order might help avoid fragmentation
  903.    * with some (brain-damaged) malloc libraries.
  904.    */
  905.   for (pool = JPOOL_NUMPOOLS-1; pool >= JPOOL_PERMANENT; pool--) {
  906.     free_pool(cinfo, pool);
  907.   }
  908.   /* Release the memory manager control block too. */
  909.   jpeg_free_small(cinfo, (void *) cinfo->mem, SIZEOF(my_memory_mgr));
  910.   cinfo->mem = NULL; /* ensures I will be called only once */
  911.   jpeg_mem_term(cinfo); /* system-dependent cleanup */
  912. }
  913. /*
  914.  * Memory manager initialization.
  915.  * When this is called, only the error manager pointer is valid in cinfo!
  916.  */
  917. GLOBAL(void)
  918. jinit_memory_mgr (j_common_ptr cinfo)
  919. {
  920.   my_mem_ptr mem;
  921.   long max_to_use;
  922.   int pool;
  923.   size_t test_mac;
  924.   cinfo->mem = NULL; /* for safety if init fails */
  925.   /* Check for configuration errors.
  926.    * SIZEOF(ALIGN_TYPE) should be a power of 2; otherwise, it probably
  927.    * doesn't reflect any real hardware alignment requirement.
  928.    * The test is a little tricky: for X>0, X and X-1 have no one-bits
  929.    * in common if and only if X is a power of 2, ie has only one one-bit.
  930.    * Some compilers may give an "unreachable code" warning here; ignore it.
  931.    */
  932.   if ((SIZEOF(ALIGN_TYPE) & (SIZEOF(ALIGN_TYPE)-1)) != 0)
  933.     ERREXIT(cinfo, JERR_BAD_ALIGN_TYPE);
  934.   /* MAX_ALLOC_CHUNK must be representable as type size_t, and must be
  935.    * a multiple of SIZEOF(ALIGN_TYPE).
  936.    * Again, an "unreachable code" warning may be ignored here.
  937.    * But a "constant too large" warning means you need to fix MAX_ALLOC_CHUNK.
  938.    */
  939.   test_mac = (size_t) MAX_ALLOC_CHUNK;
  940.   if ((long) test_mac != MAX_ALLOC_CHUNK ||
  941.       (MAX_ALLOC_CHUNK % SIZEOF(ALIGN_TYPE)) != 0)
  942.     ERREXIT(cinfo, JERR_BAD_ALLOC_CHUNK);
  943.   max_to_use = jpeg_mem_init(cinfo); /* system-dependent initialization */
  944.   /* Attempt to allocate memory manager's control block */
  945.   mem = (my_mem_ptr) jpeg_get_small(cinfo, SIZEOF(my_memory_mgr));
  946.   if (mem == NULL) {
  947.     jpeg_mem_term(cinfo); /* system-dependent cleanup */
  948.     ERREXIT1(cinfo, JERR_OUT_OF_MEMORY, 0);
  949.   }
  950.   /* OK, fill in the method pointers */
  951.   mem->pub.alloc_small = alloc_small;
  952.   mem->pub.alloc_large = alloc_large;
  953.   mem->pub.alloc_sarray = alloc_sarray;
  954.   mem->pub.alloc_barray = alloc_barray;
  955.   mem->pub.request_virt_sarray = request_virt_sarray;
  956.   mem->pub.request_virt_barray = request_virt_barray;
  957.   mem->pub.realize_virt_arrays = realize_virt_arrays;
  958.   mem->pub.access_virt_sarray = access_virt_sarray;
  959.   mem->pub.access_virt_barray = access_virt_barray;
  960.   mem->pub.free_pool = free_pool;
  961.   mem->pub.self_destruct = self_destruct;
  962.   /* Initialize working state */
  963.   mem->pub.max_memory_to_use = max_to_use;
  964.   for (pool = JPOOL_NUMPOOLS-1; pool >= JPOOL_PERMANENT; pool--) {
  965.     mem->small_list[pool] = NULL;
  966.     mem->large_list[pool] = NULL;
  967.   }
  968.   mem->virt_sarray_list = NULL;
  969.   mem->virt_barray_list = NULL;
  970.   mem->total_space_allocated = SIZEOF(my_memory_mgr);
  971.   /* Declare ourselves open for business */
  972.   cinfo->mem = & mem->pub;
  973.   /* Check for an environment variable JPEGMEM; if found, override the
  974.    * default max_memory setting from jpeg_mem_init.  Note that the
  975.    * surrounding application may again override this value.
  976.    * If your system doesn't support getenv(), define NO_GETENV to disable
  977.    * this feature.
  978.    */
  979. #ifndef NO_GETENV
  980.   { char * memenv;
  981.     if ((memenv = getenv("JPEGMEM")) != NULL) {
  982.       char ch = 'x';
  983.       if (sscanf(memenv, "%ld%c", &max_to_use, &ch) > 0) {
  984. if (ch == 'm' || ch == 'M')
  985.   max_to_use *= 1000L;
  986. mem->pub.max_memory_to_use = max_to_use * 1000L;
  987.       }
  988.     }
  989.   }
  990. #endif
  991. }