Xalloca.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:5k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: Xalloca.h,v 1.4 2001/02/09 02:03:22 xorgcvs Exp $ */
  2. /*
  3. Copyright 1995, 1998  The Open Group
  4. Permission to use, copy, modify, distribute, and sell this software and its
  5. documentation for any purpose is hereby granted without fee, provided that
  6. the above copyright notice appear in all copies and that both that
  7. copyright notice and this permission notice appear in supporting
  8. documentation.
  9. The above copyright notice and this permission notice shall be
  10. included in all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  12. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  13. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  14. IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
  15. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  16. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  17. OTHER DEALINGS IN THE SOFTWARE.
  18. Except as contained in this notice, the name of The Open Group shall
  19. not be used in advertising or otherwise to promote the sale, use or
  20. other dealings in this Software without prior written authorization
  21. from The Open Group.
  22. */
  23. /* $XFree86: xc/include/Xalloca.h,v 3.10 2001/12/14 19:53:25 dawes Exp $ */
  24. /*
  25.  * The purpose of this header is to define the macros ALLOCATE_LOCAL and
  26.  * DEALLOCATE_LOCAL appropriately for the platform being compiled on.
  27.  * These macros are used to make fast, function-local memory allocations.
  28.  * Their characteristics are as follows:
  29.  *
  30.  * void *ALLOCATE_LOCAL(int size)
  31.  *    Returns a pointer to size bytes of memory, or NULL if the allocation
  32.  *    failed.  The memory must be freed with DEALLOCATE_LOCAL before the
  33.  *    function that made the allocation returns.  You should not ask for
  34.  *    large blocks of memory with this function, since on many platforms
  35.  *    the memory comes from the stack, which may have limited size.
  36.  *
  37.  * void DEALLOCATE_LOCAL(void *)
  38.  *    Frees the memory allocated by ALLOCATE_LOCAL.  Omission of this
  39.  *    step may be harmless on some platforms, but will result in
  40.  *    memory leaks or worse on others.
  41.  *
  42.  * Before including this file, you should define two macros,
  43.  * ALLOCATE_LOCAL_FALLBACK and DEALLOCATE_LOCAL_FALLBACK, that have the
  44.  * same characteristics as ALLOCATE_LOCAL and DEALLOCATE_LOCAL.  The
  45.  * header uses the fallbacks if it doesn't know a "better" way to define
  46.  * ALLOCATE_LOCAL and DEALLOCATE_LOCAL.  Typical usage would be:
  47.  *
  48.  *    #define ALLOCATE_LOCAL_FALLBACK(_size) malloc(_size)
  49.  *    #define DEALLOCATE_LOCAL_FALLBACK(_ptr) free(_ptr)
  50.  *    #include "Xalloca.h"
  51.  */
  52. #ifndef XALLOCA_H
  53. #define XALLOCA_H 1
  54. #ifndef INCLUDE_ALLOCA_H
  55. /* Need to add more here to match Imake *.cf's */
  56. # if defined(HAVE_ALLOCA_H) || defined(__SUNPRO_C) || defined(__SUNPRO_CC)
  57. #  define INCLUDE_ALLOCA_H
  58. # endif
  59. #endif
  60. #ifdef INCLUDE_ALLOCA_H
  61. #  include <alloca.h>
  62. #endif
  63. #ifndef NO_ALLOCA
  64. /*
  65.  * os-dependent definition of local allocation and deallocation
  66.  * If you want something other than (DE)ALLOCATE_LOCAL_FALLBACK
  67.  * for ALLOCATE/DEALLOCATE_LOCAL then you add that in here.
  68.  */
  69. #  if defined(__HIGHC__)
  70. #    ifndef NCR
  71.        extern char *alloca();
  72. #      if HCVERSION < 21003
  73. #        define ALLOCATE_LOCAL(size) alloca((int)(size))
  74.          pragma on(alloca);
  75. #      else /* HCVERSION >= 21003 */
  76. #        define ALLOCATE_LOCAL(size) _Alloca((int)(size))
  77. #      endif /* HCVERSION < 21003 */
  78. #    else /* NCR */
  79. #      define ALLOCATE_LOCAL(size) alloca(size)
  80. #    endif
  81. #  endif /* defined(__HIGHC__) */
  82. #  ifdef __GNUC__
  83. #    ifndef alloca
  84. #      define alloca __builtin_alloca
  85. #    endif /* !alloca */
  86. #    define ALLOCATE_LOCAL(size) alloca((int)(size))
  87. #  else /* ! __GNUC__ */
  88. /*
  89.  * warning: old mips alloca (pre 2.10) is unusable, new one is built in
  90.  * Test is easy, the new one is named __builtin_alloca and comes
  91.  * from alloca.h which #defines alloca.
  92.  */
  93. #    ifndef NCR
  94. #      if defined(vax) || defined(sun) || defined(apollo) || defined(stellar) || defined(alloca)
  95. /*
  96.  * Some System V boxes extract alloca.o from /lib/libPW.a; if you
  97.  * decide that you don't want to use alloca, you might want to fix it here.
  98.  */
  99. /* alloca might be a macro taking one arg (hi, Sun!), so give it one. */
  100. #        if !defined(__sgi) && !defined(__QNX__) && !defined(__cplusplus)
  101. #          define __Xnullarg /* as nothing */
  102. #          ifndef X_NOT_STDC_ENV
  103.              extern void *alloca(__Xnullarg);
  104. #          else
  105.              extern char *alloca(__Xnullarg);
  106. #          endif
  107. #        endif /* !__sgi && !__QNX && !__cplusplus */
  108. #        define ALLOCATE_LOCAL(size) alloca((int)(size))
  109. #      endif /* who does alloca */
  110. #    endif /* NCR */
  111. #  endif /* __GNUC__ */
  112. #endif /* NO_ALLOCA */
  113. #if !defined(ALLOCATE_LOCAL)
  114. #  if defined(ALLOCATE_LOCAL_FALLBACK) && defined(DEALLOCATE_LOCAL_FALLBACK)
  115. #    define ALLOCATE_LOCAL(_size)  ALLOCATE_LOCAL_FALLBACK(_size)
  116. #    define DEALLOCATE_LOCAL(_ptr) DEALLOCATE_LOCAL_FALLBACK(_ptr)
  117. #  else /* no fallbacks supplied; error */
  118. #    define ALLOCATE_LOCAL(_size)  ALLOCATE_LOCAL_FALLBACK undefined!
  119. #    define DEALLOCATE_LOCAL(_ptr) DEALLOCATE_LOCAL_FALLBACK undefined!
  120. #  endif /* defined(ALLOCATE_LOCAL_FALLBACK && DEALLOCATE_LOCAL_FALLBACK) */
  121. #else
  122. #  if !defined(DEALLOCATE_LOCAL)
  123. #    define DEALLOCATE_LOCAL(_ptr) do {} while(0)
  124. #  endif
  125. #endif /* defined(ALLOCATE_LOCAL) */
  126. #endif /* XALLOCA_H */