diff options
author | Mathieu Chartier <mathieuc@google.com> | 2015-02-18 14:33:14 -0800 |
---|---|---|
committer | Mathieu Chartier <mathieuc@google.com> | 2015-02-19 09:59:50 -0800 |
commit | b666f4805c8ae707ea6fd7f6c7f375e0b000dba8 (patch) | |
tree | a61439a9bcb555dc575286f3e0bb5e50ce185982 /compiler/optimizing/builder.h | |
parent | 39109a06015c91188232e59fa9e60e0915d24cd7 (diff) | |
download | art-b666f4805c8ae707ea6fd7f6c7f375e0b000dba8.tar.gz art-b666f4805c8ae707ea6fd7f6c7f375e0b000dba8.tar.bz2 art-b666f4805c8ae707ea6fd7f6c7f375e0b000dba8.zip |
Move arenas into runtime
Moved arena pool into the runtime.
Motivation:
Allow GC to use arena allocators, recycle arena pool for linear alloc.
Bug: 19264997
Change-Id: I8ddbb6d55ee923a980b28fb656c758c5d7697c2f
Diffstat (limited to 'compiler/optimizing/builder.h')
-rw-r--r-- | compiler/optimizing/builder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/builder.h b/compiler/optimizing/builder.h index c5101363ee..3e4a6169d9 100644 --- a/compiler/optimizing/builder.h +++ b/compiler/optimizing/builder.h @@ -17,13 +17,13 @@ #ifndef ART_COMPILER_OPTIMIZING_BUILDER_H_ #define ART_COMPILER_OPTIMIZING_BUILDER_H_ +#include "base/arena_object.h" #include "dex_file.h" #include "dex_file-inl.h" #include "driver/compiler_driver.h" #include "driver/dex_compilation_unit.h" #include "optimizing_compiler_stats.h" #include "primitive.h" -#include "utils/arena_object.h" #include "utils/growable_array.h" #include "nodes.h" |