stack_alloc.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:3k
源码类别:

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) 2002 Jean-Marc Valin 
  2.    File: stack_alloc.h
  3.    
  4.    Temporary memory allocation on stack
  5.    Redistribution and use in source and binary forms, with or without
  6.    modification, are permitted provided that the following conditions
  7.    are met:
  8.    
  9.    - Redistributions of source code must retain the above copyright
  10.    notice, this list of conditions and the following disclaimer.
  11.    
  12.    - Redistributions in binary form must reproduce the above copyright
  13.    notice, this list of conditions and the following disclaimer in the
  14.    documentation and/or other materials provided with the distribution.
  15.    
  16.    - Neither the name of the Xiph.org Foundation nor the names of its
  17.    contributors may be used to endorse or promote products derived from
  18.    this software without specific prior written permission.
  19.    
  20.    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21.    ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22.    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23.    A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
  24.    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  25.    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  26.    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  27.    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  28.    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  29.    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  30.    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. */
  32. #ifndef STACK_ALLOC_H
  33. #define STACK_ALLOC_H
  34. #ifdef USE_ALLOCA
  35. #include <alloca.h>
  36. #endif
  37. #ifdef ENABLE_VALGRIND
  38. #include <valgrind/memcheck.h>
  39. /*Aligns the stack to a 'size' boundary */
  40. #define ALIGN(stack, size) ((stack) += ((size) - (long)(stack)) & ((size) - 1))
  41. /* Allocates 'size' elements of type 'type' on the stack */
  42. #define PUSH(stack, size, type) (VALGRIND_MAKE_NOACCESS(stack, 1000),ALIGN((stack),sizeof(type)),VALGRIND_MAKE_WRITABLE(stack, ((size)*sizeof(type))),(stack)+=((size)*sizeof(type)),(type*)((stack)-((size)*sizeof(type))))
  43. /* Allocates a struct stack */
  44. #define PUSHS(stack, type) (VALGRIND_MAKE_NOACCESS(stack, 1000),ALIGN((stack),sizeof(long)),VALGRIND_MAKE_WRITABLE(stack, (sizeof(type))),(stack)+=(sizeof(type)),(type*)((stack)-(sizeof(type))))
  45. #else
  46. /*Aligns the stack to a 'size' boundary */
  47. #define ALIGN(stack, size) ((stack) += ((size) - (long)(stack)) & ((size) - 1))
  48. /* Allocates 'size' elements of type 'type' on the stack */
  49. #define PUSH(stack, size, type) (ALIGN((stack),sizeof(type)),(stack)+=((size)*sizeof(type)),(type*)((stack)-((size)*sizeof(type))))
  50. /* Allocates a struct stack */
  51. #define PUSHS(stack, type) (ALIGN((stack),sizeof(long)),(stack)+=(sizeof(type)),(type*)((stack)-(sizeof(type))))
  52. #endif
  53. #if defined(VAR_ARRAYS)
  54. #define VARDECL(var) 
  55. #define ALLOC(var, size, type) type var[size]
  56. #elif defined(USE_ALLOCA)
  57. #define VARDECL(var) var
  58. #define ALLOC(var, size, type) var = alloca(sizeof(type)*size)
  59. #else
  60. #define VARDECL(var) var
  61. #define ALLOC(var, size, type) var = PUSH(stack, size, type)
  62. #endif
  63. #endif