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/dex/mir_graph.h | |
parent | 39109a06015c91188232e59fa9e60e0915d24cd7 (diff) | |
download | android_art-b666f4805c8ae707ea6fd7f6c7f375e0b000dba8.tar.gz android_art-b666f4805c8ae707ea6fd7f6c7f375e0b000dba8.tar.bz2 android_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/dex/mir_graph.h')
-rw-r--r-- | compiler/dex/mir_graph.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/dex/mir_graph.h b/compiler/dex/mir_graph.h index 020136c3d8..8e5f6ac901 100644 --- a/compiler/dex/mir_graph.h +++ b/compiler/dex/mir_graph.h @@ -19,17 +19,17 @@ #include <stdint.h> +#include "base/arena_containers.h" +#include "base/scoped_arena_containers.h" #include "dex_file.h" #include "dex_instruction.h" #include "dex_types.h" #include "invoke_type.h" #include "mir_field_info.h" #include "mir_method_info.h" -#include "utils/arena_bit_vector.h" -#include "utils/arena_containers.h" -#include "utils/scoped_arena_containers.h" #include "reg_location.h" #include "reg_storage.h" +#include "utils/arena_bit_vector.h" namespace art { |