set executable bit on promote-build.sh (r=cpeyer)
[tamarin-stm.git] / MMgc / AllocationMacros.h
blobd7222ca75e9fefb7663899cd10da9a47046b8e49
1 /* -*- Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 4 -*- */
2 /* vi: set ts=4 sw=4 expandtab: (add to ~/.vimrc: set modeline modelines=5) */
3 /* ***** BEGIN LICENSE BLOCK *****
4 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
6 * The contents of this file are subject to the Mozilla Public License Version
7 * 1.1 (the "License"); you may not use this file except in compliance with
8 * the License. You may obtain a copy of the License at
9 * http://www.mozilla.org/MPL/
11 * Software distributed under the License is distributed on an "AS IS" basis,
12 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 * for the specific language governing rights and limitations under the
14 * License.
16 * The Original Code is [Open Source Virtual Machine.].
18 * The Initial Developer of the Original Code is
19 * Adobe System Incorporated.
20 * Portions created by the Initial Developer are Copyright (C) 2004-2006
21 * the Initial Developer. All Rights Reserved.
23 * Contributor(s):
24 * Adobe AS3 Team
26 * Alternatively, the contents of this file may be used under the terms of
27 * either the GNU General Public License Version 2 or later (the "GPL"), or
28 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
29 * in which case the provisions of the GPL or the LGPL are applicable instead
30 * of those above. If you wish to allow use of your version of this file only
31 * under the terms of either the GPL or the LGPL, and not to allow others to
32 * use your version of this file under the terms of the MPL, indicate your
33 * decision by deleting the provisions above and replace them with the notice
34 * and other provisions required by the GPL or the LGPL. If you do not delete
35 * the provisions above, a recipient may use your version of this file under
36 * the terms of any one of the MPL, the GPL or the LGPL.
38 * ***** END LICENSE BLOCK ***** */
40 #ifndef __ALLOCATIONMACROS__
41 #define __ALLOCATIONMACROS__
43 // The allocation macros. mmfx_? ones will have an alternative implementation of mapping to original new/delete implementations
44 // the others are always on.
46 namespace MMgc
48 enum NewDummyOperand { kUseFixedMalloc };
51 #ifndef MMGC_OVERRIDE_GLOBAL_NEW
53 // Used for allocating/deallocating memory with MMgc's fixed allocator.
54 // The memory allocated using these macros will be released when the MMgc aborts due to
55 // an unrecoverable out of memory situation.
56 #define mmfx_new(new_data) new (MMgc::kUseFixedMalloc) new_data
57 #define mmfx_new0(new_data) new (MMgc::kUseFixedMalloc, MMgc::kZero) new_data
59 #define mmfx_new_array(type, n) ::MMgcConstructTaggedArray((type*)NULL, n, MMgc::kNone)
61 #define mmfx_new_opt(new_data, opts) new (MMgc::kUseFixedMalloc, opts) new_data
62 #define mmfx_new_array_opt(type, n, opts) ::MMgcConstructTaggedArray((type*)NULL, n, opts)
64 #define mmfx_delete(p) ::MMgcDestructTaggedScalarChecked(p)
65 #define mmfx_delete_array(p) ::MMgcDestructTaggedArrayChecked(p)
67 #define mmfx_alloc(_siz) MMgc::AllocCall(_siz)
68 #define mmfx_alloc_opt(_siz, opts) MMgc::AllocCall(_siz, opts)
69 #define mmfx_free(_ptr) MMgc::DeleteCall(_ptr)
71 #else
73 #define mmfx_new(new_data) new new_data
74 #define mmfx_new0(new_data) new (MMgc::kZero) new_data
76 #define mmfx_new_array(type, n) new type[n]
78 #define mmfx_new_opt(new_data, opts) new (opts) new_data
79 #define mmfx_new_array_opt(type, n, opts) new (opts) type[n]
81 #define mmfx_delete(p) delete p
82 #define mmfx_delete_array(p) delete[] p
84 #define mmfx_alloc(_siz) new char[_siz]
85 #define mmfx_alloc_opt(_siz, opts) new (opts) char[_siz]
86 #define mmfx_free(_ptr) delete [] (char*)_ptr
88 #endif // MMGC_OVERRIDE_GLOBAL_NEW
90 // Used to allocate memory from the system default operator new. The lifetime of these
91 // allocations may exceed the lifetime of MMgc.
92 #define system_new(new_data) new new_data
93 #define system_new_array(type, n) new type[n]
94 #define system_delete(p) delete p
95 #define system_delete_array(p) delete[] p
97 #endif // __ALLOCATIONMACROS__