From c6ea7d00ad069a2736f603daa3d8eaa9a1f8ea11 Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Wed, 1 Feb 2017 16:46:28 -0800 Subject: ART: Clean up art_method.h Clean up the header. Fix up other headers including the -inl file, in an effort to prune the include graph. Fix broken transitive includes by making includes explicit. Introduce new -inl files for method handles and reference visiting. Test: source build/envsetup.sh && lunch aosp_angler-userdebug && mmma art Test: source build/envsetup.sh && lunch aosp_mips64-userdebug && mmma art Change-Id: I8f60f1160c2a702fdf3598149dae38f6fa6bc851 --- compiler/optimizing/code_generator.cc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'compiler/optimizing/code_generator.cc') diff --git a/compiler/optimizing/code_generator.cc b/compiler/optimizing/code_generator.cc index b7c80756b0..c840e70660 100644 --- a/compiler/optimizing/code_generator.cc +++ b/compiler/optimizing/code_generator.cc @@ -42,6 +42,7 @@ #endif #include "bytecode_utils.h" +#include "class_linker.h" #include "compiled_method.h" #include "dex/verified_method.h" #include "driver/compiler_driver.h" @@ -51,9 +52,12 @@ #include "mirror/array-inl.h" #include "mirror/object_array-inl.h" #include "mirror/object_reference.h" +#include "mirror/reference.h" #include "mirror/string.h" #include "parallel_move_resolver.h" #include "ssa_liveness_analysis.h" +#include "scoped_thread_state_change-inl.h" +#include "thread-inl.h" #include "utils/assembler.h" namespace art { -- cgit v1.2.3-59-g8ed1b