tal-notreent.c
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:4k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* Stack allocation routines.  This is intended for machines without support
  2.    for the `alloca' function.
  3. Copyright 1996, 1997, 1999, 2000, 2001, 2006 Free Software Foundation, Inc.
  4. This file is part of the GNU MP Library.
  5. The GNU MP Library is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU Lesser General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or (at your
  8. option) any later version.
  9. The GNU MP Library is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. License for more details.
  13. You should have received a copy of the GNU Lesser General Public License
  14. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  15. #include "gmp.h"
  16. #include "gmp-impl.h"
  17. struct tmp_stack
  18. {
  19.   void *end;
  20.   void *alloc_point;
  21.   struct tmp_stack *prev;
  22. };
  23. typedef struct tmp_stack tmp_stack;
  24. static unsigned long max_total_allocation = 0;
  25. static unsigned long current_total_allocation = 0;
  26. static tmp_stack xxx = {&xxx, &xxx, 0};
  27. static tmp_stack *current = &xxx;
  28. /* The rounded size of the header of each allocation block.  */
  29. #define HSIZ   ROUND_UP_MULTIPLE (sizeof (tmp_stack), __TMP_ALIGN)
  30. /* Allocate a block of exactly <size> bytes.  This should only be called
  31.    through the TMP_ALLOC macro, which takes care of rounding/alignment.  */
  32. void *
  33. __gmp_tmp_alloc (unsigned long size)
  34. {
  35.   void *that;
  36.   ASSERT ((size % __TMP_ALIGN) == 0);
  37.   ASSERT (((unsigned) current->alloc_point % __TMP_ALIGN) == 0);
  38.   if (size > (char *) current->end - (char *) current->alloc_point)
  39.     {
  40.       void *chunk;
  41.       tmp_stack *header;
  42.       unsigned long chunk_size;
  43.       unsigned long now;
  44.       /* Allocate a chunk that makes the total current allocation somewhat
  45.  larger than the maximum allocation ever.  If size is very large, we
  46.  allocate that much.  */
  47.       now = current_total_allocation + size;
  48.       if (now > max_total_allocation)
  49. {
  50.   /* We need more temporary memory than ever before.  Increase
  51.      for future needs.  */
  52.   now = (now * 3 / 2 + __TMP_ALIGN - 1) & -__TMP_ALIGN;
  53.   chunk_size = now - current_total_allocation + HSIZ;
  54.   current_total_allocation = now;
  55.   max_total_allocation = current_total_allocation;
  56. }
  57.       else
  58. {
  59.   chunk_size = max_total_allocation - current_total_allocation + HSIZ;
  60.   current_total_allocation = max_total_allocation;
  61. }
  62.       chunk = (*__gmp_allocate_func) (chunk_size);
  63.       header = (tmp_stack *) chunk;
  64.       header->end = (char *) chunk + chunk_size;
  65.       header->alloc_point = (char *) chunk + HSIZ;
  66.       header->prev = current;
  67.       current = header;
  68.     }
  69.   that = current->alloc_point;
  70.   current->alloc_point = (char *) that + size;
  71.   ASSERT (((unsigned) that % __TMP_ALIGN) == 0);
  72.   return that;
  73. }
  74. /* Typically called at function entry.  <mark> is assigned so that
  75.    __gmp_tmp_free can later be used to reclaim all subsequently allocated
  76.    storage.  */
  77. void
  78. __gmp_tmp_mark (struct tmp_marker *mark)
  79. {
  80.   mark->which_chunk = current;
  81.   mark->alloc_point = current->alloc_point;
  82. }
  83. /* Free everything allocated since <mark> was assigned by __gmp_tmp_mark */
  84. void
  85. __gmp_tmp_free (struct tmp_marker *mark)
  86. {
  87.   while (mark->which_chunk != current)
  88.     {
  89.       tmp_stack *tmp;
  90.       tmp = current;
  91.       current = tmp->prev;
  92.       current_total_allocation -= (((char *) (tmp->end) - (char *) tmp) - HSIZ);
  93.       (*__gmp_free_func) (tmp, (char *) tmp->end - (char *) tmp);
  94.     }
  95.   current->alloc_point = mark->alloc_point;
  96. }