alloc.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /* Copyright (C) 2005-2022 Free Software Foundation, Inc.
  2. Contributed by Richard Henderson <rth@redhat.com>.
  3. This file is part of the GNU Offloading and Multi Processing Library
  4. (libgomp).
  5. Libgomp is free software; you can redistribute it and/or modify it
  6. under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 3, or (at your option)
  8. any later version.
  9. Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  11. FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. more details.
  13. Under Section 7 of GPL version 3, you are granted additional
  14. permissions described in the GCC Runtime Library Exception, version
  15. 3.1, as published by the Free Software Foundation.
  16. You should have received a copy of the GNU General Public License and
  17. a copy of the GCC Runtime Library Exception along with this program;
  18. see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
  19. <http://www.gnu.org/licenses/>. */
  20. /* This file contains wrappers for the system allocation routines. Most
  21. places in the OpenMP API do not make any provision for failure, so in
  22. general we cannot allow memory allocation to fail. */
  23. #define _GNU_SOURCE
  24. #include "libgomp.h"
  25. #include <stdlib.h>
  26. void *
  27. gomp_malloc (size_t size)
  28. {
  29. void *ret = malloc (size);
  30. if (ret == NULL)
  31. gomp_fatal ("Out of memory allocating %lu bytes", (unsigned long) size);
  32. return ret;
  33. }
  34. void *
  35. gomp_malloc_cleared (size_t size)
  36. {
  37. void *ret = calloc (1, size);
  38. if (ret == NULL)
  39. gomp_fatal ("Out of memory allocating %lu bytes", (unsigned long) size);
  40. return ret;
  41. }
  42. void *
  43. gomp_realloc (void *old, size_t size)
  44. {
  45. void *ret = realloc (old, size);
  46. if (ret == NULL)
  47. gomp_fatal ("Out of memory allocating %lu bytes", (unsigned long) size);
  48. return ret;
  49. }
  50. void *
  51. gomp_aligned_alloc (size_t al, size_t size)
  52. {
  53. void *ret;
  54. if (al < sizeof (void *))
  55. al = sizeof (void *);
  56. #ifdef HAVE__ALIGNED_MALLOC
  57. ret = _aligned_malloc (size, al);
  58. #elif defined(HAVE_MEMALIGN)
  59. {
  60. extern void *memalign (size_t, size_t);
  61. ret = memalign (al, size);
  62. }
  63. #elif defined(HAVE_POSIX_MEMALIGN)
  64. if (posix_memalign (&ret, al, size) != 0)
  65. ret = NULL;
  66. #elif defined(HAVE_ALIGNED_ALLOC)
  67. {
  68. size_t sz = (size + al - 1) & ~(al - 1);
  69. if (__builtin_expect (sz >= size, 1))
  70. ret = aligned_alloc (al, sz);
  71. else
  72. ret = NULL;
  73. }
  74. #else
  75. ret = NULL;
  76. if ((al & (al - 1)) == 0 && size)
  77. {
  78. void *p = malloc (size + al);
  79. if (p)
  80. {
  81. void *ap = (void *) (((uintptr_t) p + al) & -al);
  82. ((void **) ap)[-1] = p;
  83. ret = ap;
  84. }
  85. }
  86. #endif
  87. if (ret == NULL)
  88. gomp_fatal ("Out of memory allocating %lu bytes", (unsigned long) size);
  89. return ret;
  90. }
  91. void
  92. gomp_aligned_free (void *ptr)
  93. {
  94. #ifdef GOMP_HAVE_EFFICIENT_ALIGNED_ALLOC
  95. free (ptr);
  96. #else
  97. if (ptr)
  98. free (((void **) ptr)[-1]);
  99. #endif
  100. }