home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gdb-4.16-base.tgz / gdb-4.16-base.tar / fsf / gdb / mmalloc / mmprivate.h < prev    next >
C/C++ Source or Header  |  1995-11-06  |  11KB  |  350 lines

  1. /* Declarations for `mmalloc' and friends.
  2.    Copyright 1990, 1991, 1992 Free Software Foundation
  3.  
  4.    Written May 1989 by Mike Haertel.
  5.    Heavily modified Mar 1992 by Fred Fish. (fnf@cygnus.com)
  6.  
  7. The GNU C Library is free software; you can redistribute it and/or
  8. modify it under the terms of the GNU Library General Public License as
  9. published by the Free Software Foundation; either version 2 of the
  10. License, or (at your option) any later version.
  11.  
  12. The GNU C Library is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15. Library General Public License for more details.
  16.  
  17. You should have received a copy of the GNU Library General Public
  18. License along with the GNU C Library; see the file COPYING.LIB.  If
  19. not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  20. Boston, MA 02111-1307, USA.
  21.  
  22.    The author may be reached (Email) at the address mike@ai.mit.edu,
  23.    or (US mail) as Mike Haertel c/o Free Software Foundation. */
  24.  
  25.  
  26. #ifndef __MMPRIVATE_H
  27. #define __MMPRIVATE_H 1
  28.  
  29. #include "mmalloc.h"
  30.  
  31. #ifdef HAVE_LIMITS_H
  32. #  include <limits.h>
  33. #else
  34. #  ifndef CHAR_BIT
  35. #    define CHAR_BIT 8
  36. #  endif
  37. #endif
  38.  
  39. #ifdef HAVE_STDDEF_H
  40. #  include <stddef.h>
  41. #else
  42. #  include <sys/types.h>   /* hope for the best -- ANSI C is your friend */
  43. #endif
  44.  
  45. #ifndef MIN
  46. #  define MIN(A, B) ((A) < (B) ? (A) : (B))
  47. #endif
  48.  
  49. #define MMALLOC_MAGIC        "mmalloc"    /* Mapped file magic number */
  50. #define MMALLOC_MAGIC_SIZE    8        /* Size of magic number buf */
  51. #define MMALLOC_VERSION        1        /* Current mmalloc version */
  52. #define MMALLOC_KEYS        16        /* Keys for application use */
  53.  
  54. /* The allocator divides the heap into blocks of fixed size; large
  55.    requests receive one or more whole blocks, and small requests
  56.    receive a fragment of a block.  Fragment sizes are powers of two,
  57.    and all fragments of a block are the same size.  When all the
  58.    fragments in a block have been freed, the block itself is freed.  */
  59.  
  60. #define INT_BIT        (CHAR_BIT * sizeof(int))
  61. #define BLOCKLOG    (INT_BIT > 16 ? 12 : 9)
  62. #define BLOCKSIZE    ((unsigned int) 1 << BLOCKLOG)
  63. #define BLOCKIFY(SIZE)    (((SIZE) + BLOCKSIZE - 1) / BLOCKSIZE)
  64.  
  65. /* The difference between two pointers is a signed int.  On machines where
  66.    the data addresses have the high bit set, we need to ensure that the
  67.    difference becomes an unsigned int when we are using the address as an
  68.    integral value.  In addition, when using with the '%' operator, the
  69.    sign of the result is machine dependent for negative values, so force
  70.    it to be treated as an unsigned int. */
  71.  
  72. #define ADDR2UINT(addr)    ((unsigned int) ((char *) (addr) - (char *) NULL))
  73. #define RESIDUAL(addr,bsize) ((unsigned int) (ADDR2UINT (addr) % (bsize)))
  74.  
  75. /* Determine the amount of memory spanned by the initial heap table
  76.    (not an absolute limit).  */
  77.  
  78. #define HEAP        (INT_BIT > 16 ? 4194304 : 65536)
  79.  
  80. /* Number of contiguous free blocks allowed to build up at the end of
  81.    memory before they will be returned to the system.  */
  82.  
  83. #define FINAL_FREE_BLOCKS    8
  84.  
  85. /* Where to start searching the free list when looking for new memory.
  86.    The two possible values are 0 and heapindex.  Starting at 0 seems
  87.    to reduce total memory usage, while starting at heapindex seems to
  88.    run faster.  */
  89.  
  90. #define MALLOC_SEARCH_START    mdp -> heapindex
  91.  
  92. /* Address to block number and vice versa.  */
  93.  
  94. #define BLOCK(A) (((char *) (A) - mdp -> heapbase) / BLOCKSIZE + 1)
  95.  
  96. #define ADDRESS(B) ((PTR) (((B) - 1) * BLOCKSIZE + mdp -> heapbase))
  97.  
  98. /* Data structure giving per-block information.  */
  99.  
  100. typedef union
  101.   {
  102.     /* Heap information for a busy block.  */
  103.     struct
  104.       {
  105.     /* Zero for a large block, or positive giving the
  106.        logarithm to the base two of the fragment size.  */
  107.     int type;
  108.     union
  109.       {
  110.         struct
  111.           {
  112.         size_t nfree;    /* Free fragments in a fragmented block.  */
  113.         size_t first;    /* First free fragment of the block.  */
  114.           } frag;
  115.         /* Size (in blocks) of a large cluster.  */
  116.         size_t size;
  117.       } info;
  118.       } busy;
  119.     /* Heap information for a free block (that may be the first of
  120.        a free cluster).  */
  121.     struct
  122.       {
  123.     size_t size;        /* Size (in blocks) of a free cluster.  */
  124.     size_t next;        /* Index of next free cluster.  */
  125.     size_t prev;        /* Index of previous free cluster.  */
  126.       } free;
  127.   } malloc_info;
  128.  
  129. /* List of blocks allocated with `mmemalign' (or `mvalloc').  */
  130.  
  131. struct alignlist
  132.   {
  133.     struct alignlist *next;
  134.     PTR aligned;        /* The address that mmemaligned returned.  */
  135.     PTR exact;            /* The address that malloc returned.  */
  136.   };
  137.  
  138. /* Doubly linked lists of free fragments.  */
  139.  
  140. struct list
  141.   {
  142.     struct list *next;
  143.     struct list *prev;
  144.   };
  145.  
  146. /* Statistics available to the user.
  147.    FIXME:  By design, the internals of the malloc package are no longer
  148.    exported to the user via an include file, so access to this data needs
  149.    to be via some other mechanism, such as mmstat_<something> where the
  150.    return value is the <something> the user is interested in. */
  151.  
  152. struct mstats
  153.   {
  154.     size_t bytes_total;        /* Total size of the heap. */
  155.     size_t chunks_used;        /* Chunks allocated by the user. */
  156.     size_t bytes_used;        /* Byte total of user-allocated chunks. */
  157.     size_t chunks_free;        /* Chunks in the free list. */
  158.     size_t bytes_free;        /* Byte total of chunks in the free list. */
  159.   };
  160.  
  161. /* Internal structure that defines the format of the malloc-descriptor.
  162.    This gets written to the base address of the region that mmalloc is
  163.    managing, and thus also becomes the file header for the mapped file,
  164.    if such a file exists. */
  165.  
  166. struct mdesc
  167. {
  168.   /* The "magic number" for an mmalloc file. */
  169.  
  170.   char magic[MMALLOC_MAGIC_SIZE];
  171.  
  172.   /* The size in bytes of this structure, used as a sanity check when reusing
  173.      a previously created mapped file. */
  174.  
  175.   unsigned int headersize;
  176.  
  177.   /* The version number of the mmalloc package that created this file. */
  178.  
  179.   unsigned char version;
  180.  
  181.   /* Some flag bits to keep track of various internal things. */
  182.  
  183.   unsigned int flags;
  184.  
  185.   /* If a system call made by the mmalloc package fails, the errno is
  186.      preserved for future examination. */
  187.  
  188.   int saved_errno;
  189.  
  190.   /* Pointer to the function that is used to get more core, or return core
  191.      to the system, for requests using this malloc descriptor.  For memory
  192.      mapped regions, this is the mmap() based routine.  There may also be
  193.      a single malloc descriptor that points to an sbrk() based routine
  194.      for systems without mmap() or for applications that call the mmalloc()
  195.      package with a NULL malloc descriptor.
  196.  
  197.      FIXME:  For mapped regions shared by more than one process, this
  198.      needs to be maintained on a per-process basis. */
  199.  
  200.   PTR (*morecore) PARAMS ((struct mdesc *, int));
  201.      
  202.   /* Pointer to the function that causes an abort when the memory checking
  203.      features are activated.  By default this is set to abort(), but can
  204.      be set to another function by the application using mmalloc().
  205.  
  206.      FIXME:  For mapped regions shared by more than one process, this
  207.      needs to be maintained on a per-process basis. */
  208.  
  209.   void (*abortfunc) PARAMS ((void));
  210.  
  211.   /* Debugging hook for free.
  212.  
  213.      FIXME:  For mapped regions shared by more than one process, this
  214.      needs to be maintained on a per-process basis. */
  215.  
  216.   void (*mfree_hook) PARAMS ((PTR, PTR));
  217.  
  218.   /* Debugging hook for `malloc'.
  219.  
  220.      FIXME:  For mapped regions shared by more than one process, this
  221.      needs to be maintained on a per-process basis. */
  222.  
  223.   PTR (*mmalloc_hook) PARAMS ((PTR, size_t));
  224.  
  225.   /* Debugging hook for realloc.
  226.  
  227.      FIXME:  For mapped regions shared by more than one process, this
  228.      needs to be maintained on a per-process basis. */
  229.  
  230.   PTR (*mrealloc_hook) PARAMS ((PTR, PTR, size_t));
  231.  
  232.   /* Number of info entries.  */
  233.  
  234.   size_t heapsize;
  235.  
  236.   /* Pointer to first block of the heap (base of the first block).  */
  237.  
  238.   char *heapbase;
  239.  
  240.   /* Current search index for the heap table.  */
  241.   /* Search index in the info table.  */
  242.  
  243.   size_t heapindex;
  244.  
  245.   /* Limit of valid info table indices.  */
  246.  
  247.   size_t heaplimit;
  248.  
  249.   /* Block information table.
  250.      Allocated with malign/__mmalloc_free (not mmalloc/mfree).  */
  251.   /* Table indexed by block number giving per-block information.  */
  252.  
  253.   malloc_info *heapinfo;
  254.  
  255.   /* Instrumentation.  */
  256.  
  257.   struct mstats heapstats;
  258.  
  259.   /* Free list headers for each fragment size.  */
  260.   /* Free lists for each fragment size.  */
  261.  
  262.   struct list fraghead[BLOCKLOG];
  263.  
  264.   /* List of blocks allocated by memalign.  */
  265.  
  266.   struct alignlist *aligned_blocks;
  267.  
  268.   /* The base address of the memory region for this malloc heap.  This
  269.      is the location where the bookkeeping data for mmap and for malloc
  270.      begins. */
  271.  
  272.   char *base;
  273.  
  274.   /* The current location in the memory region for this malloc heap which
  275.      represents the end of memory in use. */
  276.  
  277.   char *breakval;
  278.  
  279.   /* The end of the current memory region for this malloc heap.  This is
  280.      the first location past the end of mapped memory. */
  281.  
  282.   char *top;
  283.  
  284.   /* Open file descriptor for the file to which this malloc heap is mapped.
  285.      This will always be a valid file descriptor, since /dev/zero is used
  286.      by default if no open file is supplied by the client.  Also note that
  287.      it may change each time the region is mapped and unmapped. */
  288.  
  289.   int fd;
  290.  
  291.   /* An array of keys to data within the mapped region, for use by the
  292.      application.  */
  293.  
  294.   PTR keys[MMALLOC_KEYS];
  295.  
  296. };
  297.  
  298. /* Bits to look at in the malloc descriptor flags word */
  299.  
  300. #define MMALLOC_DEVZERO        (1 << 0)    /* Have mapped to /dev/zero */
  301. #define MMALLOC_INITIALIZED    (1 << 1)    /* Initialized mmalloc */
  302. #define MMALLOC_MMCHECK_USED    (1 << 2)    /* mmcheck() called already */
  303.  
  304. /* Internal version of `mfree' used in `morecore'. */
  305.  
  306. extern void __mmalloc_free PARAMS ((struct mdesc *, PTR));
  307.  
  308. /* Hooks for debugging versions.  */
  309.  
  310. extern void (*__mfree_hook) PARAMS ((PTR, PTR));
  311. extern PTR (*__mmalloc_hook) PARAMS ((PTR, size_t));
  312. extern PTR (*__mrealloc_hook) PARAMS ((PTR, PTR, size_t));
  313.  
  314. /* A default malloc descriptor for the single sbrk() managed region. */
  315.  
  316. extern struct mdesc *__mmalloc_default_mdp;
  317.  
  318. /* Initialize the first use of the default malloc descriptor, which uses
  319.    an sbrk() region. */
  320.  
  321. extern struct mdesc *__mmalloc_sbrk_init PARAMS ((void));
  322.  
  323. /* Grow or shrink a contiguous mapped region using mmap().
  324.    Works much like sbrk() */
  325.  
  326. #if defined(HAVE_MMAP)
  327.  
  328. extern PTR __mmalloc_mmap_morecore PARAMS ((struct mdesc *, int));
  329.  
  330. #endif
  331.  
  332. /* Remap a mmalloc region that was previously mapped. */
  333.  
  334. extern PTR __mmalloc_remap_core PARAMS ((struct mdesc *));
  335.  
  336. /* Macro to convert from a user supplied malloc descriptor to pointer to the
  337.    internal malloc descriptor.  If the user supplied descriptor is NULL, then
  338.    use the default internal version, initializing it if necessary.  Otherwise
  339.    just cast the user supplied version (which is void *) to the proper type
  340.    (struct mdesc *). */
  341.  
  342. #define MD_TO_MDP(md) \
  343.   ((md) == NULL \
  344.    ? (__mmalloc_default_mdp == NULL \
  345.       ? __mmalloc_sbrk_init () \
  346.       : __mmalloc_default_mdp) \
  347.    : (struct mdesc *) (md))
  348.  
  349. #endif  /* __MMPRIVATE_H */
  350.