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