summaryrefslogtreecommitdiff
path: root/runtime/linear_alloc.h
diff options
context:
space:
mode:
author Vladimir Marko <vmarko@google.com> 2016-12-08 11:39:42 +0000
committer Vladimir Marko <vmarko@google.com> 2017-03-10 12:59:37 +0000
commit1aea3510b8dd0c512cec61c91c5ef1f1e5d53d64 (patch)
tree94cbab7c3097ce7d3a1feb1a69f28406644af085 /runtime/linear_alloc.h
parentd1d4530ffa97729aa8944932a7ac2009ae51c7e3 (diff)
Hash-based DexCache field array.
Test: m test-art-host, both AOT and interpreter Test: m test-art-target, both AOT and interpreter Test: m valgrind-test-art-host Bug: 30627598 Change-Id: If992f091aadd862d17b09928d21659573dd285a0
Diffstat (limited to 'runtime/linear_alloc.h')
-rw-r--r--runtime/linear_alloc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/linear_alloc.h b/runtime/linear_alloc.h
index df7f17dd7a..384b2e3243 100644
--- a/runtime/linear_alloc.h
+++ b/runtime/linear_alloc.h
@@ -29,6 +29,7 @@ class LinearAlloc {
explicit LinearAlloc(ArenaPool* pool);
void* Alloc(Thread* self, size_t size) REQUIRES(!lock_);
+ void* AllocAlign16(Thread* self, size_t size) REQUIRES(!lock_);
// Realloc never frees the input pointer, it is the caller's job to do this if necessary.
void* Realloc(Thread* self, void* ptr, size_t old_size, size_t new_size) REQUIRES(!lock_);