blob: 4081ff893428983df395266e84f2f9bbb9abe5f8 [file] [log] [blame]
Austin Schuh745610d2015-09-06 18:19:50 -07001// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*-
2/* Copyright (c) 2006, Google Inc.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met:
8 *
9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * * Redistributions in binary form must reproduce the above
12 * copyright notice, this list of conditions and the following disclaimer
13 * in the documentation and/or other materials provided with the
14 * distribution.
15 * * Neither the name of Google Inc. nor the names of its
16 * contributors may be used to endorse or promote products derived from
17 * this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */
31
32#if !defined(_BASE_LOW_LEVEL_ALLOC_H_)
33#define _BASE_LOW_LEVEL_ALLOC_H_
34
35// A simple thread-safe memory allocator that does not depend on
36// mutexes or thread-specific data. It is intended to be used
37// sparingly, and only when malloc() would introduce an unwanted
38// dependency, such as inside the heap-checker.
39
40#include <config.h>
41#include <stddef.h> // for size_t
42#include "base/basictypes.h"
43
44class LowLevelAlloc {
45 public:
46 struct Arena; // an arena from which memory may be allocated
47
48 // Returns a pointer to a block of at least "request" bytes
49 // that have been newly allocated from the specific arena.
50 // for Alloc() call the DefaultArena() is used.
51 // Returns 0 if passed request==0.
52 // Does not return 0 under other circumstances; it crashes if memory
53 // is not available.
54 static void *Alloc(size_t request)
55 ATTRIBUTE_SECTION(malloc_hook);
56 static void *AllocWithArena(size_t request, Arena *arena)
57 ATTRIBUTE_SECTION(malloc_hook);
58
59 // Deallocates a region of memory that was previously allocated with
60 // Alloc(). Does nothing if passed 0. "s" must be either 0,
61 // or must have been returned from a call to Alloc() and not yet passed to
62 // Free() since that call to Alloc(). The space is returned to the arena
63 // from which it was allocated.
64 static void Free(void *s) ATTRIBUTE_SECTION(malloc_hook);
65
66 // ATTRIBUTE_SECTION(malloc_hook) for Alloc* and Free
67 // are to put all callers of MallocHook::Invoke* in this module
68 // into special section,
69 // so that MallocHook::GetCallerStackTrace can function accurately.
70
71 // Create a new arena.
72 // The root metadata for the new arena is allocated in the
73 // meta_data_arena; the DefaultArena() can be passed for meta_data_arena.
74 // These values may be ored into flags:
75 enum {
76 // Report calls to Alloc() and Free() via the MallocHook interface.
77 // Set in the DefaultArena.
78 kCallMallocHook = 0x0001,
79
80 // Make calls to Alloc(), Free() be async-signal-safe. Not set in
81 // DefaultArena().
82 kAsyncSignalSafe = 0x0002,
83
84 // When used with DefaultArena(), the NewArena() and DeleteArena() calls
85 // obey the flags given explicitly in the NewArena() call, even if those
86 // flags differ from the settings in DefaultArena(). So the call
87 // NewArena(kAsyncSignalSafe, DefaultArena()) is itself async-signal-safe,
88 // as well as generatating an arena that provides async-signal-safe
89 // Alloc/Free.
90 };
91 static Arena *NewArena(int32 flags, Arena *meta_data_arena);
92
93 // Destroys an arena allocated by NewArena and returns true,
94 // provided no allocated blocks remain in the arena.
95 // If allocated blocks remain in the arena, does nothing and
96 // returns false.
97 // It is illegal to attempt to destroy the DefaultArena().
98 static bool DeleteArena(Arena *arena);
99
100 // The default arena that always exists.
101 static Arena *DefaultArena();
102
103 private:
104 LowLevelAlloc(); // no instances
105};
106
107#endif