JMEMMGR.C
上传用户:wep9318
上传日期:2007-01-07
资源大小:893k
文件大小:39k
源码类别:

图片显示

开发平台:

Visual C++

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