diff options
author | 2018-01-04 17:56:19 -0800 | |
---|---|---|
committer | 2018-01-05 11:07:19 -0800 | |
commit | 9e734c7ab4599d7747a05db0dc73c7b668cb6683 (patch) | |
tree | dce1d1993734a947fb2e6f626eb1b425cb72143b | |
parent | b496af808eaf3af5ebac50aef4fbec33323b5016 (diff) |
Create dex subdirectory
Move all the DexFile related source to a common subdirectory dex/ of
runtime.
Bug: 71361973
Test: make -j 50 test-art-host
Change-Id: I59e984ed660b93e0776556308be3d653722f5223
260 files changed, 462 insertions, 462 deletions
diff --git a/compiler/compiler.cc b/compiler/compiler.cc index 47f44ff3bc..60977b6bd5 100644 --- a/compiler/compiler.cc +++ b/compiler/compiler.cc @@ -19,7 +19,7 @@ #include <android-base/logging.h> #include "base/macros.h" -#include "code_item_accessors-inl.h" +#include "dex/code_item_accessors-inl.h" #include "driver/compiler_driver.h" #include "optimizing/optimizing_compiler.h" #include "utils.h" diff --git a/compiler/compiler.h b/compiler/compiler.h index 85abd6654c..b92bff61a9 100644 --- a/compiler/compiler.h +++ b/compiler/compiler.h @@ -18,7 +18,7 @@ #define ART_COMPILER_COMPILER_H_ #include "base/mutex.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "os.h" namespace art { diff --git a/compiler/debug/elf_debug_info_writer.h b/compiler/debug/elf_debug_info_writer.h index 0e11e32987..e2bea8e096 100644 --- a/compiler/debug/elf_debug_info_writer.h +++ b/compiler/debug/elf_debug_info_writer.h @@ -22,14 +22,14 @@ #include <vector> #include "art_field-inl.h" -#include "code_item_accessors-inl.h" #include "debug/dwarf/debug_abbrev_writer.h" #include "debug/dwarf/debug_info_entry_writer.h" #include "debug/elf_compilation_unit.h" #include "debug/elf_debug_loc_writer.h" #include "debug/method_debug_info.h" -#include "dex_file-inl.h" -#include "dex_file.h" +#include "dex/code_item_accessors-inl.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file.h" #include "heap_poisoning.h" #include "linear_alloc.h" #include "linker/elf_builder.h" diff --git a/compiler/debug/elf_debug_line_writer.h b/compiler/debug/elf_debug_line_writer.h index d7fd52448c..9910e7a4ce 100644 --- a/compiler/debug/elf_debug_line_writer.h +++ b/compiler/debug/elf_debug_line_writer.h @@ -24,7 +24,7 @@ #include "debug/dwarf/headers.h" #include "debug/elf_compilation_unit.h" #include "debug/src_map_elem.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "linker/elf_builder.h" #include "oat_file.h" #include "stack_map.h" diff --git a/compiler/debug/method_debug_info.h b/compiler/debug/method_debug_info.h index a8225fa2b4..43c8de26aa 100644 --- a/compiler/debug/method_debug_info.h +++ b/compiler/debug/method_debug_info.h @@ -21,7 +21,7 @@ #include "arch/instruction_set.h" #include "base/array_ref.h" -#include "dex_file.h" +#include "dex/dex_file.h" namespace art { namespace debug { diff --git a/compiler/dex/dex_to_dex_compiler.cc b/compiler/dex/dex_to_dex_compiler.cc index 7e41c53128..52cb217980 100644 --- a/compiler/dex/dex_to_dex_compiler.cc +++ b/compiler/dex/dex_to_dex_compiler.cc @@ -26,8 +26,8 @@ #include "base/mutex.h" #include "bytecode_utils.h" #include "compiled_method.h" -#include "dex_file-inl.h" -#include "dex_instruction-inl.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_instruction-inl.h" #include "driver/compiler_driver.h" #include "driver/dex_compilation_unit.h" #include "mirror/dex_cache.h" diff --git a/compiler/dex/dex_to_dex_compiler.h b/compiler/dex/dex_to_dex_compiler.h index 87ddb395ad..80b94d2dc3 100644 --- a/compiler/dex/dex_to_dex_compiler.h +++ b/compiler/dex/dex_to_dex_compiler.h @@ -17,7 +17,7 @@ #ifndef ART_COMPILER_DEX_DEX_TO_DEX_COMPILER_H_ #define ART_COMPILER_DEX_DEX_TO_DEX_COMPILER_H_ -#include "dex_file.h" +#include "dex/dex_file.h" #include "handle.h" #include "invoke_type.h" diff --git a/compiler/dex/dex_to_dex_decompiler_test.cc b/compiler/dex/dex_to_dex_decompiler_test.cc index 8bccd3b060..19b190093f 100644 --- a/compiler/dex/dex_to_dex_decompiler_test.cc +++ b/compiler/dex/dex_to_dex_decompiler_test.cc @@ -20,7 +20,7 @@ #include "common_compiler_test.h" #include "compiled_method-inl.h" #include "compiler_callbacks.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "driver/compiler_driver.h" #include "driver/compiler_options.h" #include "handle_scope-inl.h" diff --git a/compiler/dex/inline_method_analyser.cc b/compiler/dex/inline_method_analyser.cc index 80677b934b..ce67b85b99 100644 --- a/compiler/dex/inline_method_analyser.cc +++ b/compiler/dex/inline_method_analyser.cc @@ -20,11 +20,11 @@ #include "art_method-inl.h" #include "base/enums.h" #include "class_linker-inl.h" -#include "code_item_accessors-inl.h" -#include "dex_file-inl.h" -#include "dex_instruction-inl.h" -#include "dex_instruction.h" -#include "dex_instruction_utils.h" +#include "dex/code_item_accessors-inl.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_instruction-inl.h" +#include "dex/dex_instruction.h" +#include "dex/dex_instruction_utils.h" #include "mirror/class-inl.h" #include "mirror/dex_cache-inl.h" diff --git a/compiler/dex/inline_method_analyser.h b/compiler/dex/inline_method_analyser.h index cde2147995..837cc85456 100644 --- a/compiler/dex/inline_method_analyser.h +++ b/compiler/dex/inline_method_analyser.h @@ -19,8 +19,8 @@ #include "base/macros.h" #include "base/mutex.h" -#include "dex_file.h" -#include "dex_instruction.h" +#include "dex/dex_file.h" +#include "dex/dex_instruction.h" #include "method_reference.h" /* diff --git a/compiler/dex/verified_method.cc b/compiler/dex/verified_method.cc index 8934201b10..f2da3ffc2f 100644 --- a/compiler/dex/verified_method.cc +++ b/compiler/dex/verified_method.cc @@ -21,9 +21,9 @@ #include <android-base/logging.h> -#include "code_item_accessors-inl.h" -#include "dex_file.h" -#include "dex_instruction-inl.h" +#include "dex/code_item_accessors-inl.h" +#include "dex/dex_file.h" +#include "dex/dex_instruction-inl.h" #include "runtime.h" #include "verifier/method_verifier-inl.h" #include "verifier/reg_type-inl.h" diff --git a/compiler/dex/verified_method.h b/compiler/dex/verified_method.h index 64b3f448e6..2ed17f1dfd 100644 --- a/compiler/dex/verified_method.h +++ b/compiler/dex/verified_method.h @@ -20,7 +20,7 @@ #include <vector> #include "base/mutex.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "method_reference.h" #include "safe_map.h" diff --git a/compiler/driver/compiler_driver.cc b/compiler/driver/compiler_driver.cc index 9e69e5edc5..fe83a66d0f 100644 --- a/compiler/driver/compiler_driver.cc +++ b/compiler/driver/compiler_driver.cc @@ -42,13 +42,13 @@ #include "compiler.h" #include "compiler_callbacks.h" #include "compiler_driver-inl.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_annotations.h" +#include "dex/dex_instruction-inl.h" #include "dex/dex_to_dex_compiler.h" #include "dex/verification_results.h" #include "dex/verified_method.h" #include "dex_compilation_unit.h" -#include "dex_file-inl.h" -#include "dex_file_annotations.h" -#include "dex_instruction-inl.h" #include "driver/compiler_options.h" #include "gc/accounting/card_table-inl.h" #include "gc/accounting/heap_bitmap.h" diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h index bcea8530e4..ef16212fb7 100644 --- a/compiler/driver/compiler_driver.h +++ b/compiler/driver/compiler_driver.h @@ -33,8 +33,8 @@ #include "class_reference.h" #include "class_status.h" #include "compiler.h" -#include "dex_file.h" -#include "dex_file_types.h" +#include "dex/dex_file.h" +#include "dex/dex_file_types.h" #include "driver/compiled_method_storage.h" #include "jit/profile_compilation_info.h" #include "method_reference.h" diff --git a/compiler/driver/compiler_driver_test.cc b/compiler/driver/compiler_driver_test.cc index 2698574084..162904c0e7 100644 --- a/compiler/driver/compiler_driver_test.cc +++ b/compiler/driver/compiler_driver_test.cc @@ -26,8 +26,8 @@ #include "class_linker-inl.h" #include "common_compiler_test.h" #include "compiler_callbacks.h" -#include "dex_file.h" -#include "dex_file_types.h" +#include "dex/dex_file.h" +#include "dex/dex_file_types.h" #include "gc/heap.h" #include "handle_scope-inl.h" #include "jit/profile_compilation_info.h" diff --git a/compiler/driver/dex_compilation_unit.cc b/compiler/driver/dex_compilation_unit.cc index 76e1299cc9..1fe30de355 100644 --- a/compiler/driver/dex_compilation_unit.cc +++ b/compiler/driver/dex_compilation_unit.cc @@ -16,7 +16,7 @@ #include "dex_compilation_unit.h" -#include "code_item_accessors-inl.h" +#include "dex/code_item_accessors-inl.h" #include "mirror/dex_cache.h" #include "utils.h" diff --git a/compiler/driver/dex_compilation_unit.h b/compiler/driver/dex_compilation_unit.h index cdc505fbf5..c1ae3c938b 100644 --- a/compiler/driver/dex_compilation_unit.h +++ b/compiler/driver/dex_compilation_unit.h @@ -20,8 +20,8 @@ #include <stdint.h> #include "base/arena_object.h" -#include "code_item_accessors.h" -#include "dex_file.h" +#include "dex/code_item_accessors.h" +#include "dex/dex_file.h" #include "handle.h" #include "jni.h" diff --git a/compiler/exception_test.cc b/compiler/exception_test.cc index 59d20f8e76..8f7ab05791 100644 --- a/compiler/exception_test.cc +++ b/compiler/exception_test.cc @@ -20,11 +20,11 @@ #include "base/callee_save_type.h" #include "base/enums.h" #include "class_linker.h" -#include "code_item_accessors-inl.h" #include "common_runtime_test.h" -#include "dex_file-inl.h" -#include "dex_file.h" -#include "dex_file_exception_helpers.h" +#include "dex/code_item_accessors-inl.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file.h" +#include "dex/dex_file_exception_helpers.h" #include "gtest/gtest.h" #include "handle_scope-inl.h" #include "leb128.h" diff --git a/compiler/jni/jni_compiler_test.cc b/compiler/jni/jni_compiler_test.cc index d1a42aac0f..f34e9b844b 100644 --- a/compiler/jni/jni_compiler_test.cc +++ b/compiler/jni/jni_compiler_test.cc @@ -24,7 +24,7 @@ #include "class_linker.h" #include "common_compiler_test.h" #include "compiler.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "gtest/gtest.h" #include "indirect_reference_table.h" #include "java_vm_ext.h" diff --git a/compiler/jni/quick/jni_compiler.cc b/compiler/jni/quick/jni_compiler.cc index 136e3db062..fc44927231 100644 --- a/compiler/jni/quick/jni_compiler.cc +++ b/compiler/jni/quick/jni_compiler.cc @@ -30,7 +30,7 @@ #include "calling_convention.h" #include "class_linker.h" #include "debug/dwarf/debug_frame_opcode_writer.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "driver/compiler_driver.h" #include "driver/compiler_options.h" #include "entrypoints/quick/quick_entrypoints.h" diff --git a/compiler/linker/arm/relative_patcher_arm_base.cc b/compiler/linker/arm/relative_patcher_arm_base.cc index 2cb23d1710..cedbe5d97f 100644 --- a/compiler/linker/arm/relative_patcher_arm_base.cc +++ b/compiler/linker/arm/relative_patcher_arm_base.cc @@ -19,7 +19,7 @@ #include "base/stl_util.h" #include "compiled_method-inl.h" #include "debug/method_debug_info.h" -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "linker/linker_patch.h" #include "linker/output_stream.h" #include "oat.h" diff --git a/compiler/optimizing/block_builder.cc b/compiler/optimizing/block_builder.cc index 0c926005d2..2b568bcffd 100644 --- a/compiler/optimizing/block_builder.cc +++ b/compiler/optimizing/block_builder.cc @@ -18,8 +18,8 @@ #include "base/logging.h" // FOR VLOG. #include "bytecode_utils.h" -#include "code_item_accessors-inl.h" -#include "dex_file_exception_helpers.h" +#include "dex/code_item_accessors-inl.h" +#include "dex/dex_file_exception_helpers.h" #include "quicken_info.h" namespace art { diff --git a/compiler/optimizing/block_builder.h b/compiler/optimizing/block_builder.h index e68b95c46f..2c1f034d80 100644 --- a/compiler/optimizing/block_builder.h +++ b/compiler/optimizing/block_builder.h @@ -19,8 +19,8 @@ #include "base/scoped_arena_allocator.h" #include "base/scoped_arena_containers.h" -#include "code_item_accessors.h" -#include "dex_file.h" +#include "dex/code_item_accessors.h" +#include "dex/dex_file.h" #include "nodes.h" namespace art { diff --git a/compiler/optimizing/builder.h b/compiler/optimizing/builder.h index c40e0b4e6a..c16a3a928d 100644 --- a/compiler/optimizing/builder.h +++ b/compiler/optimizing/builder.h @@ -18,9 +18,9 @@ #define ART_COMPILER_OPTIMIZING_BUILDER_H_ #include "base/arena_object.h" -#include "code_item_accessors.h" -#include "dex_file-inl.h" -#include "dex_file.h" +#include "dex/code_item_accessors.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file.h" #include "driver/compiler_driver.h" #include "nodes.h" diff --git a/compiler/optimizing/code_generator.cc b/compiler/optimizing/code_generator.cc index 729b08e92d..07894fd1b1 100644 --- a/compiler/optimizing/code_generator.cc +++ b/compiler/optimizing/code_generator.cc @@ -45,8 +45,8 @@ #include "base/casts.h" #include "bytecode_utils.h" #include "class_linker.h" -#include "code_item_accessors-inl.h" #include "compiled_method.h" +#include "dex/code_item_accessors-inl.h" #include "dex/verified_method.h" #include "driver/compiler_driver.h" #include "graph_visualizer.h" diff --git a/compiler/optimizing/code_generator_arm64.h b/compiler/optimizing/code_generator_arm64.h index e53773c73d..f92c94fda7 100644 --- a/compiler/optimizing/code_generator_arm64.h +++ b/compiler/optimizing/code_generator_arm64.h @@ -20,7 +20,7 @@ #include "arch/arm64/quick_method_frame_info_arm64.h" #include "code_generator.h" #include "common_arm64.h" -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "driver/compiler_options.h" #include "nodes.h" #include "parallel_move_resolver.h" diff --git a/compiler/optimizing/code_generator_mips.h b/compiler/optimizing/code_generator_mips.h index cf8e7a373a..32b3e4221f 100644 --- a/compiler/optimizing/code_generator_mips.h +++ b/compiler/optimizing/code_generator_mips.h @@ -18,7 +18,7 @@ #define ART_COMPILER_OPTIMIZING_CODE_GENERATOR_MIPS_H_ #include "code_generator.h" -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "driver/compiler_options.h" #include "nodes.h" #include "parallel_move_resolver.h" diff --git a/compiler/optimizing/code_generator_x86.h b/compiler/optimizing/code_generator_x86.h index 40b7e3c54f..0082853184 100644 --- a/compiler/optimizing/code_generator_x86.h +++ b/compiler/optimizing/code_generator_x86.h @@ -20,7 +20,7 @@ #include "arch/x86/instruction_set_features_x86.h" #include "base/enums.h" #include "code_generator.h" -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "driver/compiler_options.h" #include "nodes.h" #include "parallel_move_resolver.h" diff --git a/compiler/optimizing/codegen_test.cc b/compiler/optimizing/codegen_test.cc index ba431a5b08..6eda289861 100644 --- a/compiler/optimizing/codegen_test.cc +++ b/compiler/optimizing/codegen_test.cc @@ -20,8 +20,8 @@ #include "base/macros.h" #include "builder.h" #include "codegen_test_utils.h" -#include "dex_file.h" -#include "dex_instruction.h" +#include "dex/dex_file.h" +#include "dex/dex_instruction.h" #include "driver/compiler_options.h" #include "nodes.h" #include "optimizing_unit_test.h" diff --git a/compiler/optimizing/dominator_test.cc b/compiler/optimizing/dominator_test.cc index 6bf3a5943f..572466eec8 100644 --- a/compiler/optimizing/dominator_test.cc +++ b/compiler/optimizing/dominator_test.cc @@ -16,7 +16,7 @@ #include "base/arena_allocator.h" #include "builder.h" -#include "dex_instruction.h" +#include "dex/dex_instruction.h" #include "nodes.h" #include "optimizing_unit_test.h" diff --git a/compiler/optimizing/find_loops_test.cc b/compiler/optimizing/find_loops_test.cc index c91752855b..b799fb4688 100644 --- a/compiler/optimizing/find_loops_test.cc +++ b/compiler/optimizing/find_loops_test.cc @@ -16,8 +16,8 @@ #include "base/arena_allocator.h" #include "builder.h" -#include "dex_file.h" -#include "dex_instruction.h" +#include "dex/dex_file.h" +#include "dex/dex_instruction.h" #include "nodes.h" #include "optimizing_unit_test.h" #include "pretty_printer.h" diff --git a/compiler/optimizing/inliner.h b/compiler/optimizing/inliner.h index 042eee3204..e81d97b0a8 100644 --- a/compiler/optimizing/inliner.h +++ b/compiler/optimizing/inliner.h @@ -17,7 +17,7 @@ #ifndef ART_COMPILER_OPTIMIZING_INLINER_H_ #define ART_COMPILER_OPTIMIZING_INLINER_H_ -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "invoke_type.h" #include "jit/profile_compilation_info.h" #include "optimization.h" diff --git a/compiler/optimizing/instruction_builder.cc b/compiler/optimizing/instruction_builder.cc index 3f5923fa3f..72a93c1f77 100644 --- a/compiler/optimizing/instruction_builder.cc +++ b/compiler/optimizing/instruction_builder.cc @@ -23,7 +23,7 @@ #include "bytecode_utils.h" #include "class_linker.h" #include "data_type-inl.h" -#include "dex_instruction-inl.h" +#include "dex/dex_instruction-inl.h" #include "driver/compiler_driver-inl.h" #include "driver/dex_compilation_unit.h" #include "driver/compiler_options.h" diff --git a/compiler/optimizing/instruction_builder.h b/compiler/optimizing/instruction_builder.h index b4e30516ab..708a09711a 100644 --- a/compiler/optimizing/instruction_builder.h +++ b/compiler/optimizing/instruction_builder.h @@ -19,10 +19,10 @@ #include "base/scoped_arena_allocator.h" #include "base/scoped_arena_containers.h" -#include "code_item_accessors.h" #include "data_type.h" -#include "dex_file.h" -#include "dex_file_types.h" +#include "dex/code_item_accessors.h" +#include "dex/dex_file.h" +#include "dex/dex_file_types.h" #include "handle.h" #include "nodes.h" #include "quicken_info.h" diff --git a/compiler/optimizing/linearize_test.cc b/compiler/optimizing/linearize_test.cc index b2a9c0a8e7..43b63a73ef 100644 --- a/compiler/optimizing/linearize_test.cc +++ b/compiler/optimizing/linearize_test.cc @@ -21,8 +21,8 @@ #include "builder.h" #include "code_generator.h" #include "code_generator_x86.h" -#include "dex_file.h" -#include "dex_instruction.h" +#include "dex/dex_file.h" +#include "dex/dex_instruction.h" #include "driver/compiler_options.h" #include "graph_visualizer.h" #include "nodes.h" diff --git a/compiler/optimizing/live_ranges_test.cc b/compiler/optimizing/live_ranges_test.cc index ddcad5aed8..e45d7c820c 100644 --- a/compiler/optimizing/live_ranges_test.cc +++ b/compiler/optimizing/live_ranges_test.cc @@ -19,8 +19,8 @@ #include "builder.h" #include "code_generator.h" #include "code_generator_x86.h" -#include "dex_file.h" -#include "dex_instruction.h" +#include "dex/dex_file.h" +#include "dex/dex_instruction.h" #include "driver/compiler_options.h" #include "nodes.h" #include "optimizing_unit_test.h" diff --git a/compiler/optimizing/liveness_test.cc b/compiler/optimizing/liveness_test.cc index 3eadc8f8fc..35bc4ff8b3 100644 --- a/compiler/optimizing/liveness_test.cc +++ b/compiler/optimizing/liveness_test.cc @@ -19,8 +19,8 @@ #include "builder.h" #include "code_generator.h" #include "code_generator_x86.h" -#include "dex_file.h" -#include "dex_instruction.h" +#include "dex/dex_file.h" +#include "dex/dex_instruction.h" #include "driver/compiler_options.h" #include "nodes.h" #include "optimizing_unit_test.h" diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index d13f5b42bf..d4382c6b4c 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -30,8 +30,8 @@ #include "base/transform_array_ref.h" #include "data_type.h" #include "deoptimization_kind.h" -#include "dex_file.h" -#include "dex_file_types.h" +#include "dex/dex_file.h" +#include "dex/dex_file_types.h" #include "entrypoints/quick/quick_entrypoints_enum.h" #include "handle.h" #include "handle_scope.h" diff --git a/compiler/optimizing/optimization.cc b/compiler/optimizing/optimization.cc index d8ac696d1e..92b427cafa 100644 --- a/compiler/optimizing/optimization.cc +++ b/compiler/optimizing/optimization.cc @@ -35,11 +35,11 @@ #include "bounds_check_elimination.h" #include "cha_guard_optimization.h" -#include "code_item_accessors-inl.h" #include "code_sinking.h" #include "constant_folding.h" #include "constructor_fence_redundancy_elimination.h" #include "dead_code_elimination.h" +#include "dex/code_item_accessors-inl.h" #include "driver/dex_compilation_unit.h" #include "gvn.h" #include "induction_var_analysis.h" diff --git a/compiler/optimizing/optimizing_compiler.cc b/compiler/optimizing/optimizing_compiler.cc index 9d04dd8343..b64f82caee 100644 --- a/compiler/optimizing/optimizing_compiler.cc +++ b/compiler/optimizing/optimizing_compiler.cc @@ -36,9 +36,9 @@ #include "compiler.h" #include "debug/elf_debug_writer.h" #include "debug/method_debug_info.h" +#include "dex/dex_file_types.h" #include "dex/verification_results.h" #include "dex/verified_method.h" -#include "dex_file_types.h" #include "driver/compiler_driver-inl.h" #include "driver/compiler_options.h" #include "driver/dex_compilation_unit.h" diff --git a/compiler/optimizing/optimizing_unit_test.h b/compiler/optimizing/optimizing_unit_test.h index 7d05262b10..661abb125c 100644 --- a/compiler/optimizing/optimizing_unit_test.h +++ b/compiler/optimizing/optimizing_unit_test.h @@ -19,10 +19,10 @@ #include "base/scoped_arena_allocator.h" #include "builder.h" -#include "code_item_accessors-inl.h" #include "common_compiler_test.h" -#include "dex_file.h" -#include "dex_instruction.h" +#include "dex/code_item_accessors-inl.h" +#include "dex/dex_file.h" +#include "dex/dex_instruction.h" #include "driver/dex_compilation_unit.h" #include "handle_scope-inl.h" #include "mirror/class_loader.h" diff --git a/compiler/optimizing/prepare_for_register_allocation.cc b/compiler/optimizing/prepare_for_register_allocation.cc index 1ed190d328..f843c008d8 100644 --- a/compiler/optimizing/prepare_for_register_allocation.cc +++ b/compiler/optimizing/prepare_for_register_allocation.cc @@ -16,7 +16,7 @@ #include "prepare_for_register_allocation.h" -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "jni_internal.h" #include "optimizing_compiler_stats.h" #include "well_known_classes.h" diff --git a/compiler/optimizing/pretty_printer_test.cc b/compiler/optimizing/pretty_printer_test.cc index 4aec6d3999..4fc7fe9427 100644 --- a/compiler/optimizing/pretty_printer_test.cc +++ b/compiler/optimizing/pretty_printer_test.cc @@ -18,8 +18,8 @@ #include "base/arena_allocator.h" #include "builder.h" -#include "dex_file.h" -#include "dex_instruction.h" +#include "dex/dex_file.h" +#include "dex/dex_instruction.h" #include "nodes.h" #include "optimizing_unit_test.h" diff --git a/compiler/optimizing/register_allocator_test.cc b/compiler/optimizing/register_allocator_test.cc index 69ed8c7fcc..3748d599a3 100644 --- a/compiler/optimizing/register_allocator_test.cc +++ b/compiler/optimizing/register_allocator_test.cc @@ -21,9 +21,9 @@ #include "builder.h" #include "code_generator.h" #include "code_generator_x86.h" -#include "dex_file.h" -#include "dex_file_types.h" -#include "dex_instruction.h" +#include "dex/dex_file.h" +#include "dex/dex_file_types.h" +#include "dex/dex_instruction.h" #include "driver/compiler_options.h" #include "nodes.h" #include "optimizing_unit_test.h" diff --git a/compiler/optimizing/ssa_test.cc b/compiler/optimizing/ssa_test.cc index e08904e84b..77e70d733e 100644 --- a/compiler/optimizing/ssa_test.cc +++ b/compiler/optimizing/ssa_test.cc @@ -18,8 +18,8 @@ #include "base/arena_allocator.h" #include "builder.h" -#include "dex_file.h" -#include "dex_instruction.h" +#include "dex/dex_file.h" +#include "dex/dex_instruction.h" #include "nodes.h" #include "optimizing_unit_test.h" #include "pretty_printer.h" diff --git a/compiler/optimizing/stack_map_stream.cc b/compiler/optimizing/stack_map_stream.cc index 4f43eb374c..7010e3f380 100644 --- a/compiler/optimizing/stack_map_stream.cc +++ b/compiler/optimizing/stack_map_stream.cc @@ -18,7 +18,7 @@ #include "art_method-inl.h" #include "base/stl_util.h" -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "optimizing/optimizing_compiler.h" #include "runtime.h" #include "scoped_thread_state_change-inl.h" diff --git a/compiler/optimizing/suspend_check_test.cc b/compiler/optimizing/suspend_check_test.cc index 88336b0009..7e83f8ce5f 100644 --- a/compiler/optimizing/suspend_check_test.cc +++ b/compiler/optimizing/suspend_check_test.cc @@ -15,7 +15,7 @@ */ #include "builder.h" -#include "dex_instruction.h" +#include "dex/dex_instruction.h" #include "nodes.h" #include "optimizing_unit_test.h" #include "pretty_printer.h" diff --git a/compiler/utils/atomic_dex_ref_map-inl.h b/compiler/utils/atomic_dex_ref_map-inl.h index 00db09a735..203e484fb7 100644 --- a/compiler/utils/atomic_dex_ref_map-inl.h +++ b/compiler/utils/atomic_dex_ref_map-inl.h @@ -21,8 +21,8 @@ #include <type_traits> -#include "dex_file-inl.h" #include "class_reference.h" +#include "dex/dex_file-inl.h" #include "method_reference.h" #include "type_reference.h" diff --git a/compiler/utils/atomic_dex_ref_map.h b/compiler/utils/atomic_dex_ref_map.h index 205543f31d..9ff506d6a4 100644 --- a/compiler/utils/atomic_dex_ref_map.h +++ b/compiler/utils/atomic_dex_ref_map.h @@ -18,7 +18,7 @@ #define ART_COMPILER_UTILS_ATOMIC_DEX_REF_MAP_H_ #include "base/dchecked_vector.h" -#include "dex_file_reference.h" +#include "dex/dex_file_reference.h" #include "safe_map.h" namespace art { diff --git a/compiler/utils/atomic_dex_ref_map_test.cc b/compiler/utils/atomic_dex_ref_map_test.cc index 8fce36f021..d58d60b4f3 100644 --- a/compiler/utils/atomic_dex_ref_map_test.cc +++ b/compiler/utils/atomic_dex_ref_map_test.cc @@ -19,7 +19,7 @@ #include <memory> #include "common_runtime_test.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "method_reference.h" #include "scoped_thread_state_change-inl.h" diff --git a/compiler/utils/string_reference_test.cc b/compiler/utils/string_reference_test.cc index 90335eb048..4b07e65771 100644 --- a/compiler/utils/string_reference_test.cc +++ b/compiler/utils/string_reference_test.cc @@ -18,7 +18,7 @@ #include <memory> -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "gtest/gtest.h" #include "utils/test_dex_file_builder.h" diff --git a/compiler/utils/test_dex_file_builder.h b/compiler/utils/test_dex_file_builder.h index 441ef8e117..04fba51dc1 100644 --- a/compiler/utils/test_dex_file_builder.h +++ b/compiler/utils/test_dex_file_builder.h @@ -27,8 +27,8 @@ #include <android-base/logging.h> #include "base/bit_utils.h" -#include "dex_file_loader.h" -#include "standard_dex_file.h" +#include "dex/dex_file_loader.h" +#include "dex/standard_dex_file.h" namespace art { diff --git a/compiler/utils/test_dex_file_builder_test.cc b/compiler/utils/test_dex_file_builder_test.cc index c76739b3b1..736a17edac 100644 --- a/compiler/utils/test_dex_file_builder_test.cc +++ b/compiler/utils/test_dex_file_builder_test.cc @@ -16,7 +16,7 @@ #include "test_dex_file_builder.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "gtest/gtest.h" #include "utils.h" diff --git a/compiler/verifier_deps_test.cc b/compiler/verifier_deps_test.cc index d77842afe1..76448d819c 100644 --- a/compiler/verifier_deps_test.cc +++ b/compiler/verifier_deps_test.cc @@ -21,10 +21,10 @@ #include "class_linker.h" #include "common_compiler_test.h" #include "compiler_callbacks.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_types.h" #include "dex/verification_results.h" #include "dex/verified_method.h" -#include "dex_file-inl.h" -#include "dex_file_types.h" #include "driver/compiler_driver-inl.h" #include "driver/compiler_options.h" #include "handle_scope-inl.h" diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc index 11c903145f..dabe07f9ce 100644 --- a/dex2oat/dex2oat.cc +++ b/dex2oat/dex2oat.cc @@ -59,11 +59,11 @@ #include "debug/elf_debug_writer.h" #include "debug/method_debug_info.h" #include "dexlayout.h" +#include "dex/dex_file-inl.h" #include "dex/quick_compiler_callbacks.h" #include "dex/verification_results.h" #include "dex2oat_options.h" #include "dex2oat_return_codes.h" -#include "dex_file-inl.h" #include "driver/compiler_driver.h" #include "driver/compiler_options.h" #include "driver/compiler_options_map-inl.h" diff --git a/dex2oat/dex2oat_image_test.cc b/dex2oat/dex2oat_image_test.cc index 035b395300..980363b1bb 100644 --- a/dex2oat/dex2oat_image_test.cc +++ b/dex2oat/dex2oat_image_test.cc @@ -29,8 +29,8 @@ #include "base/file_utils.h" #include "base/macros.h" #include "base/unix_file/fd_file.h" -#include "dex_file-inl.h" -#include "dex_file_loader.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_loader.h" #include "jit/profile_compilation_info.h" #include "method_reference.h" #include "runtime.h" diff --git a/dex2oat/dex2oat_options.h b/dex2oat/dex2oat_options.h index f8198ee08b..ccc85c8951 100644 --- a/dex2oat/dex2oat_options.h +++ b/dex2oat/dex2oat_options.h @@ -22,9 +22,9 @@ #include <vector> #include "base/variant_map.h" -#include "cdex/compact_dex_level.h" #include "cmdline_types.h" // TODO: don't need to include this file here #include "compiler.h" +#include "dex/compact_dex_level.h" #include "driver/compiler_options_map.h" #include "image.h" diff --git a/dex2oat/dex2oat_test.cc b/dex2oat/dex2oat_test.cc index b338d0887e..c91240e19d 100644 --- a/dex2oat/dex2oat_test.cc +++ b/dex2oat/dex2oat_test.cc @@ -30,11 +30,11 @@ #include "base/macros.h" #include "base/mutex-inl.h" #include "bytecode_utils.h" -#include "code_item_accessors-inl.h" +#include "dex/code_item_accessors-inl.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_loader.h" #include "dex2oat_environment_test.h" #include "dex2oat_return_codes.h" -#include "dex_file-inl.h" -#include "dex_file_loader.h" #include "jit/profile_compilation_info.h" #include "oat.h" #include "oat_file.h" diff --git a/dex2oat/linker/image_writer.cc b/dex2oat/linker/image_writer.cc index 363cb8b7fa..73eaad47a1 100644 --- a/dex2oat/linker/image_writer.cc +++ b/dex2oat/linker/image_writer.cc @@ -33,8 +33,8 @@ #include "base/unix_file/fd_file.h" #include "class_linker-inl.h" #include "compiled_method.h" -#include "dex_file-inl.h" -#include "dex_file_types.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_types.h" #include "driver/compiler_driver.h" #include "elf_file.h" #include "elf_utils.h" diff --git a/dex2oat/linker/oat_writer.cc b/dex2oat/linker/oat_writer.cc index 016a1140c2..cb1b80d590 100644 --- a/dex2oat/linker/oat_writer.cc +++ b/dex2oat/linker/oat_writer.cc @@ -33,10 +33,11 @@ #include "class_table-inl.h" #include "compiled_method-inl.h" #include "debug/method_debug_info.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_loader.h" +#include "dex/dex_file_types.h" +#include "dex/standard_dex_file.h" #include "dex/verification_results.h" -#include "dex_file-inl.h" -#include "dex_file_loader.h" -#include "dex_file_types.h" #include "dexlayout.h" #include "driver/compiler_driver-inl.h" #include "driver/compiler_options.h" @@ -54,7 +55,6 @@ #include "mirror/class_loader.h" #include "mirror/dex_cache-inl.h" #include "mirror/object-inl.h" -#include "standard_dex_file.h" #include "oat_quick_method_header.h" #include "os.h" #include "safe_map.h" diff --git a/dex2oat/linker/oat_writer.h b/dex2oat/linker/oat_writer.h index 4055878b55..ba29e3b3a2 100644 --- a/dex2oat/linker/oat_writer.h +++ b/dex2oat/linker/oat_writer.h @@ -24,7 +24,7 @@ #include "base/array_ref.h" #include "base/dchecked_vector.h" -#include "cdex/compact_dex_level.h" +#include "dex/compact_dex_level.h" #include "linker/relative_patcher.h" // For RelativePatcherTargetProvider. #include "mem_map.h" #include "method_reference.h" diff --git a/dex2oat/linker/oat_writer_test.cc b/dex2oat/linker/oat_writer_test.cc index 44c2f89076..488806092b 100644 --- a/dex2oat/linker/oat_writer_test.cc +++ b/dex2oat/linker/oat_writer_test.cc @@ -26,7 +26,7 @@ #include "compiled_method-inl.h" #include "compiler.h" #include "debug/method_debug_info.h" -#include "dex_file_loader.h" +#include "dex/dex_file_loader.h" #include "dex/quick_compiler_callbacks.h" #include "dex/verification_results.h" #include "driver/compiler_driver.h" diff --git a/dexdump/dexdump.cc b/dexdump/dexdump.cc index ba2a9228b6..8a06f44628 100644 --- a/dexdump/dexdump.cc +++ b/dexdump/dexdump.cc @@ -44,12 +44,12 @@ #include "android-base/stringprintf.h" -#include "code_item_accessors-no_art-inl.h" -#include "dex_file-inl.h" -#include "dex_file_loader.h" -#include "dex_file_types.h" -#include "dex_file_exception_helpers.h" -#include "dex_instruction-inl.h" +#include "dex/code_item_accessors-no_art-inl.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_exception_helpers.h" +#include "dex/dex_file_loader.h" +#include "dex/dex_file_types.h" +#include "dex/dex_instruction-inl.h" #include "dexdump_cfg.h" namespace art { diff --git a/dexdump/dexdump_cfg.cc b/dexdump/dexdump_cfg.cc index 7e9f113da3..f08ea746d3 100644 --- a/dexdump/dexdump_cfg.cc +++ b/dexdump/dexdump_cfg.cc @@ -25,10 +25,10 @@ #include <set> #include <sstream> -#include "code_item_accessors-no_art-inl.h" -#include "dex_file-inl.h" -#include "dex_file_exception_helpers.h" -#include "dex_instruction-inl.h" +#include "dex/code_item_accessors-no_art-inl.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_exception_helpers.h" +#include "dex/dex_instruction-inl.h" namespace art { diff --git a/dexlayout/compact_dex_writer.cc b/dexlayout/compact_dex_writer.cc index f44eaefb6e..1c5b16d84b 100644 --- a/dexlayout/compact_dex_writer.cc +++ b/dexlayout/compact_dex_writer.cc @@ -16,7 +16,7 @@ #include "compact_dex_writer.h" -#include "cdex/compact_dex_file.h" +#include "dex/compact_dex_file.h" namespace art { diff --git a/dexlayout/dex_ir.cc b/dexlayout/dex_ir.cc index d4a73951ee..8ed3a79542 100644 --- a/dexlayout/dex_ir.cc +++ b/dexlayout/dex_ir.cc @@ -22,9 +22,9 @@ #include "dex_ir.h" -#include "code_item_accessors-inl.h" -#include "dex_file_exception_helpers.h" -#include "dex_instruction-inl.h" +#include "dex/code_item_accessors-inl.h" +#include "dex/dex_file_exception_helpers.h" +#include "dex/dex_instruction-inl.h" #include "dex_ir_builder.h" namespace art { diff --git a/dexlayout/dex_ir.h b/dexlayout/dex_ir.h index a54c46fdc1..6797fa5dd6 100644 --- a/dexlayout/dex_ir.h +++ b/dexlayout/dex_ir.h @@ -25,8 +25,8 @@ #include <vector> #include "base/stl_util.h" -#include "dex_file-inl.h" -#include "dex_file_types.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_types.h" #include "leb128.h" #include "utf.h" diff --git a/dexlayout/dex_writer.cc b/dexlayout/dex_writer.cc index 41fdcbd8fb..a18a2cfd8a 100644 --- a/dexlayout/dex_writer.cc +++ b/dexlayout/dex_writer.cc @@ -20,12 +20,12 @@ #include <vector> -#include "cdex/compact_dex_file.h" #include "compact_dex_writer.h" -#include "dex_file_layout.h" -#include "dex_file_types.h" +#include "dex/compact_dex_file.h" +#include "dex/dex_file_layout.h" +#include "dex/dex_file_types.h" +#include "dex/standard_dex_file.h" #include "dexlayout.h" -#include "standard_dex_file.h" #include "utf.h" namespace art { diff --git a/dexlayout/dex_writer.h b/dexlayout/dex_writer.h index 39295263f5..92a002edc7 100644 --- a/dexlayout/dex_writer.h +++ b/dexlayout/dex_writer.h @@ -22,7 +22,7 @@ #include <functional> #include "base/unix_file/fd_file.h" -#include "cdex/compact_dex_level.h" +#include "dex/compact_dex_level.h" #include "dex_ir.h" #include "mem_map.h" #include "os.h" diff --git a/dexlayout/dexdiag.cc b/dexlayout/dexdiag.cc index b2507015e9..99b1f38f73 100644 --- a/dexlayout/dexdiag.cc +++ b/dexlayout/dexdiag.cc @@ -29,7 +29,7 @@ #include "base/logging.h" // For InitLogging. #include "base/stringpiece.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "dex_ir.h" #include "dex_ir_builder.h" #ifdef ART_TARGET_ANDROID diff --git a/dexlayout/dexlayout.cc b/dexlayout/dexlayout.cc index f87778a65b..47a3e943a5 100644 --- a/dexlayout/dexlayout.cc +++ b/dexlayout/dexlayout.cc @@ -34,12 +34,12 @@ #include "android-base/stringprintf.h" #include "base/logging.h" // For VLOG_IS_ON. -#include "dex_file-inl.h" -#include "dex_file_layout.h" -#include "dex_file_loader.h" -#include "dex_file_types.h" -#include "dex_file_verifier.h" -#include "dex_instruction-inl.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_layout.h" +#include "dex/dex_file_loader.h" +#include "dex/dex_file_types.h" +#include "dex/dex_file_verifier.h" +#include "dex/dex_instruction-inl.h" #include "dex_ir_builder.h" #include "dex_verify.h" #include "dex_visualize.h" diff --git a/dexlayout/dexlayout.h b/dexlayout/dexlayout.h index 958251e8ac..25afb773bd 100644 --- a/dexlayout/dexlayout.h +++ b/dexlayout/dexlayout.h @@ -27,8 +27,8 @@ #include <stdio.h> #include <unordered_map> -#include "cdex/compact_dex_level.h" -#include "dex_file_layout.h" +#include "dex/compact_dex_level.h" +#include "dex/dex_file_layout.h" #include "dex_ir.h" #include "mem_map.h" diff --git a/dexlayout/dexlayout_test.cc b/dexlayout/dexlayout_test.cc index 360f234110..b8cff6dc59 100644 --- a/dexlayout/dexlayout_test.cc +++ b/dexlayout/dexlayout_test.cc @@ -22,10 +22,10 @@ #include <unistd.h> #include "base/unix_file/fd_file.h" -#include "code_item_accessors-inl.h" #include "common_runtime_test.h" -#include "dex_file-inl.h" -#include "dex_file_loader.h" +#include "dex/code_item_accessors-inl.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_loader.h" #include "exec_utils.h" #include "jit/profile_compilation_info.h" #include "utils.h" diff --git a/dexlist/dexlist.cc b/dexlist/dexlist.cc index 2c910d4018..348f501ef5 100644 --- a/dexlist/dexlist.cc +++ b/dexlist/dexlist.cc @@ -27,9 +27,9 @@ #include <stdlib.h> #include "base/logging.h" // For InitLogging. -#include "code_item_accessors-no_art-inl.h" -#include "dex_file-inl.h" -#include "dex_file_loader.h" +#include "dex/code_item_accessors-no_art-inl.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_loader.h" #include "mem_map.h" #include "runtime.h" diff --git a/dexoptanalyzer/dexoptanalyzer.cc b/dexoptanalyzer/dexoptanalyzer.cc index eead2dcf83..bedc4576d5 100644 --- a/dexoptanalyzer/dexoptanalyzer.cc +++ b/dexoptanalyzer/dexoptanalyzer.cc @@ -23,7 +23,7 @@ #include "base/logging.h" // For InitLogging. #include "compiler_filter.h" #include "class_loader_context.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "noop_compiler_callbacks.h" #include "oat_file_assistant.h" #include "os.h" diff --git a/oatdump/oatdump.cc b/oatdump/oatdump.cc index a97dd2a3dc..6a99c5ab2f 100644 --- a/oatdump/oatdump.cc +++ b/oatdump/oatdump.cc @@ -37,12 +37,12 @@ #include "base/unix_file/fd_file.h" #include "class_linker-inl.h" #include "class_linker.h" -#include "code_item_accessors-inl.h" #include "compiled_method.h" #include "debug/elf_debug_writer.h" #include "debug/method_debug_info.h" -#include "dex_file-inl.h" -#include "dex_instruction-inl.h" +#include "dex/code_item_accessors-inl.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_instruction-inl.h" #include "disassembler.h" #include "gc/accounting/space_bitmap-inl.h" #include "gc/space/image_space.h" diff --git a/openjdkjvmti/deopt_manager.cc b/openjdkjvmti/deopt_manager.cc index f843054681..aced769cb5 100644 --- a/openjdkjvmti/deopt_manager.cc +++ b/openjdkjvmti/deopt_manager.cc @@ -37,7 +37,7 @@ #include "art_method-inl.h" #include "base/enums.h" #include "base/mutex-inl.h" -#include "dex_file_annotations.h" +#include "dex/dex_file_annotations.h" #include "events-inl.h" #include "jni_internal.h" #include "mirror/class-inl.h" diff --git a/openjdkjvmti/events.cc b/openjdkjvmti/events.cc index 330a3de99c..d98fda5f9c 100644 --- a/openjdkjvmti/events.cc +++ b/openjdkjvmti/events.cc @@ -37,7 +37,7 @@ #include "art_jvmti.h" #include "art_method-inl.h" #include "deopt_manager.h" -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "gc/allocation_listener.h" #include "gc/gc_pause_listener.h" #include "gc/heap.h" diff --git a/openjdkjvmti/fixed_up_dex_file.cc b/openjdkjvmti/fixed_up_dex_file.cc index 64dc3a5f02..ad928d9b37 100644 --- a/openjdkjvmti/fixed_up_dex_file.cc +++ b/openjdkjvmti/fixed_up_dex_file.cc @@ -30,8 +30,8 @@ */ #include "fixed_up_dex_file.h" -#include "dex_file_loader.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_loader.h" // Runtime includes. #include "dex_to_dex_decompiler.h" diff --git a/openjdkjvmti/fixed_up_dex_file.h b/openjdkjvmti/fixed_up_dex_file.h index 4cb39cfe93..b8f349cf8c 100644 --- a/openjdkjvmti/fixed_up_dex_file.h +++ b/openjdkjvmti/fixed_up_dex_file.h @@ -39,7 +39,7 @@ #include "jvmti.h" #include "base/mutex.h" -#include "dex_file.h" +#include "dex/dex_file.h" namespace openjdkjvmti { diff --git a/openjdkjvmti/ti_breakpoint.cc b/openjdkjvmti/ti_breakpoint.cc index 7634fa312f..fa7a34401d 100644 --- a/openjdkjvmti/ti_breakpoint.cc +++ b/openjdkjvmti/ti_breakpoint.cc @@ -38,7 +38,7 @@ #include "base/enums.h" #include "base/mutex-inl.h" #include "deopt_manager.h" -#include "dex_file_annotations.h" +#include "dex/dex_file_annotations.h" #include "events-inl.h" #include "jni_internal.h" #include "mirror/class-inl.h" diff --git a/openjdkjvmti/ti_class.cc b/openjdkjvmti/ti_class.cc index 60ab0a50e6..f9eb008af2 100644 --- a/openjdkjvmti/ti_class.cc +++ b/openjdkjvmti/ti_class.cc @@ -42,8 +42,8 @@ #include "class_linker.h" #include "class_table-inl.h" #include "common_throws.h" -#include "dex_file_annotations.h" -#include "dex_file_loader.h" +#include "dex/dex_file_annotations.h" +#include "dex/dex_file_loader.h" #include "events-inl.h" #include "fixed_up_dex_file.h" #include "gc/heap-visit-objects-inl.h" diff --git a/openjdkjvmti/ti_class_definition.cc b/openjdkjvmti/ti_class_definition.cc index c73ef0d31c..6560570136 100644 --- a/openjdkjvmti/ti_class_definition.cc +++ b/openjdkjvmti/ti_class_definition.cc @@ -33,7 +33,7 @@ #include "base/array_slice.h" #include "class_linker-inl.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "fixed_up_dex_file.h" #include "handle.h" #include "handle_scope-inl.h" diff --git a/openjdkjvmti/ti_class_loader.cc b/openjdkjvmti/ti_class_loader.cc index 701ba80fd5..d594d6ee29 100644 --- a/openjdkjvmti/ti_class_loader.cc +++ b/openjdkjvmti/ti_class_loader.cc @@ -38,8 +38,8 @@ #include "art_field-inl.h" #include "art_jvmti.h" -#include "dex_file.h" -#include "dex_file_types.h" +#include "dex/dex_file.h" +#include "dex/dex_file_types.h" #include "events-inl.h" #include "gc/allocation_listener.h" #include "gc/heap.h" diff --git a/openjdkjvmti/ti_class_loader.h b/openjdkjvmti/ti_class_loader.h index 767e258a77..27ea3f5191 100644 --- a/openjdkjvmti/ti_class_loader.h +++ b/openjdkjvmti/ti_class_loader.h @@ -40,7 +40,7 @@ #include "art_method.h" #include "base/array_slice.h" #include "class_linker.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "gc_root-inl.h" #include "globals.h" #include "jni_env_ext-inl.h" diff --git a/openjdkjvmti/ti_field.cc b/openjdkjvmti/ti_field.cc index b8691837eb..db5c31c43d 100644 --- a/openjdkjvmti/ti_field.cc +++ b/openjdkjvmti/ti_field.cc @@ -34,7 +34,7 @@ #include "art_field-inl.h" #include "art_jvmti.h" #include "base/enums.h" -#include "dex_file_annotations.h" +#include "dex/dex_file_annotations.h" #include "jni_internal.h" #include "mirror/object_array-inl.h" #include "modifiers.h" diff --git a/openjdkjvmti/ti_method.cc b/openjdkjvmti/ti_method.cc index 947ba7911f..57fb699435 100644 --- a/openjdkjvmti/ti_method.cc +++ b/openjdkjvmti/ti_method.cc @@ -37,9 +37,9 @@ #include "art_method-inl.h" #include "base/enums.h" #include "base/mutex-inl.h" -#include "code_item_accessors-inl.h" -#include "dex_file_annotations.h" -#include "dex_file_types.h" +#include "dex/code_item_accessors-inl.h" +#include "dex/dex_file_annotations.h" +#include "dex/dex_file_types.h" #include "events-inl.h" #include "jit/jit.h" #include "jni_internal.h" diff --git a/openjdkjvmti/ti_redefine.cc b/openjdkjvmti/ti_redefine.cc index c18b354675..6194d1e42c 100644 --- a/openjdkjvmti/ti_redefine.cc +++ b/openjdkjvmti/ti_redefine.cc @@ -43,9 +43,9 @@ #include "base/stringpiece.h" #include "class_linker-inl.h" #include "debugger.h" -#include "dex_file.h" -#include "dex_file_loader.h" -#include "dex_file_types.h" +#include "dex/dex_file.h" +#include "dex/dex_file_loader.h" +#include "dex/dex_file_types.h" #include "events-inl.h" #include "gc/allocation_listener.h" #include "gc/heap.h" diff --git a/openjdkjvmti/ti_redefine.h b/openjdkjvmti/ti_redefine.h index 528563bd07..b537e1b01c 100644 --- a/openjdkjvmti/ti_redefine.h +++ b/openjdkjvmti/ti_redefine.h @@ -40,7 +40,7 @@ #include "art_method.h" #include "base/array_ref.h" #include "class_linker.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "gc_root-inl.h" #include "globals.h" #include "jni_env_ext-inl.h" diff --git a/openjdkjvmti/ti_search.cc b/openjdkjvmti/ti_search.cc index fe12a25151..9d5f4ea3f9 100644 --- a/openjdkjvmti/ti_search.cc +++ b/openjdkjvmti/ti_search.cc @@ -38,8 +38,8 @@ #include "base/enums.h" #include "base/macros.h" #include "class_linker.h" -#include "dex_file.h" -#include "dex_file_loader.h" +#include "dex/dex_file.h" +#include "dex/dex_file_loader.h" #include "jni_internal.h" #include "mirror/class-inl.h" #include "mirror/object.h" diff --git a/openjdkjvmti/ti_stack.cc b/openjdkjvmti/ti_stack.cc index f7e3b51d26..bc77753f8f 100644 --- a/openjdkjvmti/ti_stack.cc +++ b/openjdkjvmti/ti_stack.cc @@ -44,10 +44,10 @@ #include "base/bit_utils.h" #include "base/enums.h" #include "base/mutex.h" -#include "code_item_accessors-inl.h" -#include "dex_file.h" -#include "dex_file_annotations.h" -#include "dex_file_types.h" +#include "dex/code_item_accessors-inl.h" +#include "dex/dex_file.h" +#include "dex/dex_file_annotations.h" +#include "dex/dex_file_types.h" #include "gc_root.h" #include "handle_scope-inl.h" #include "jni_env_ext.h" diff --git a/openjdkjvmti/transform.cc b/openjdkjvmti/transform.cc index 1d7f137f2b..3a5fcccf35 100644 --- a/openjdkjvmti/transform.cc +++ b/openjdkjvmti/transform.cc @@ -37,8 +37,8 @@ #include "art_method.h" #include "base/array_ref.h" #include "class_linker.h" -#include "dex_file.h" -#include "dex_file_types.h" +#include "dex/dex_file.h" +#include "dex/dex_file_types.h" #include "events-inl.h" #include "gc_root-inl.h" #include "globals.h" diff --git a/profman/boot_image_profile.cc b/profman/boot_image_profile.cc index 48b87c9a6d..a750105e72 100644 --- a/profman/boot_image_profile.cc +++ b/profman/boot_image_profile.cc @@ -18,7 +18,7 @@ #include <set> #include "boot_image_profile.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "method_reference.h" #include "type_reference.h" diff --git a/profman/boot_image_profile.h b/profman/boot_image_profile.h index d02e408cd5..eb43b7ca7f 100644 --- a/profman/boot_image_profile.h +++ b/profman/boot_image_profile.h @@ -21,7 +21,7 @@ #include <memory> #include <vector> -#include "dex_file.h" +#include "dex/dex_file.h" #include "jit/profile_compilation_info.h" namespace art { diff --git a/profman/profman.cc b/profman/profman.cc index 10b9f64b40..71f7f9d669 100644 --- a/profman/profman.cc +++ b/profman/profman.cc @@ -39,10 +39,10 @@ #include "base/unix_file/fd_file.h" #include "boot_image_profile.h" #include "bytecode_utils.h" -#include "code_item_accessors-inl.h" -#include "dex_file.h" -#include "dex_file_loader.h" -#include "dex_file_types.h" +#include "dex/code_item_accessors-inl.h" +#include "dex/dex_file.h" +#include "dex/dex_file_loader.h" +#include "dex/dex_file_types.h" #include "jit/profile_compilation_info.h" #include "profile_assistant.h" #include "runtime.h" diff --git a/runtime/Android.bp b/runtime/Android.bp index 8fe901da26..2657f4fa86 100644 --- a/runtime/Android.bp +++ b/runtime/Android.bp @@ -48,7 +48,6 @@ cc_defaults { "base/timing_logger.cc", "base/unix_file/fd_file.cc", "base/unix_file/random_access_file_utils.cc", - "cdex/compact_dex_file.cc", "cha.cc", "check_jni.cc", "class_linker.cc", @@ -57,14 +56,16 @@ cc_defaults { "common_throws.cc", "compiler_filter.cc", "debugger.cc", - "dex_file.cc", - "dex_file_annotations.cc", - "dex_file_exception_helpers.cc", - "dex_file_loader.cc", - "dex_file_layout.cc", - "dex_file_tracking_registrar.cc", - "dex_file_verifier.cc", - "dex_instruction.cc", + "dex/compact_dex_file.cc", + "dex/dex_file.cc", + "dex/dex_file_annotations.cc", + "dex/dex_file_exception_helpers.cc", + "dex/dex_file_layout.cc", + "dex/dex_file_loader.cc", + "dex/dex_file_tracking_registrar.cc", + "dex/dex_file_verifier.cc", + "dex/dex_instruction.cc", + "dex/standard_dex_file.cc", "dex_to_dex_decompiler.cc", "elf_file.cc", "exec_utils.cc", @@ -214,7 +215,6 @@ cc_defaults { "signal_catcher.cc", "stack.cc", "stack_map.cc", - "standard_dex_file.cc", "thread.cc", "thread_list.cc", "thread_pool.cc", @@ -454,10 +454,10 @@ gensrcs { "debugger.h", "base/unix_file/fd_file.h", "class_status.h", - "dex_file.h", - "dex_file_layout.h", - "dex_instruction.h", - "dex_instruction_utils.h", + "dex/dex_file.h", + "dex/dex_file_layout.h", + "dex/dex_instruction.h", + "dex/dex_instruction_utils.h", "gc_root.h", "gc/allocator_type.h", "gc/allocator/rosalloc.h", @@ -566,16 +566,16 @@ art_cc_test { "base/transform_iterator_test.cc", "base/variant_map_test.cc", "base/unix_file/fd_file_test.cc", - "cdex/compact_dex_file_test.cc", "cha_test.cc", "class_linker_test.cc", "class_loader_context_test.cc", "class_table_test.cc", - "code_item_accessors_test.cc", "compiler_filter_test.cc", - "dex_file_test.cc", - "dex_file_verifier_test.cc", - "dex_instruction_test.cc", + "dex/code_item_accessors_test.cc", + "dex/compact_dex_file_test.cc", + "dex/dex_file_test.cc", + "dex/dex_file_verifier_test.cc", + "dex/dex_instruction_test.cc", "entrypoints/math_entrypoints_test.cc", "entrypoints/quick/quick_trampoline_entrypoints_test.cc", "entrypoints_order_test.cc", diff --git a/runtime/art_field-inl.h b/runtime/art_field-inl.h index 2b18577ed0..99634a067b 100644 --- a/runtime/art_field-inl.h +++ b/runtime/art_field-inl.h @@ -22,7 +22,7 @@ #include <android-base/logging.h> #include "class_linker.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "gc/accounting/card_table-inl.h" #include "gc_root-inl.h" #include "jvalue.h" diff --git a/runtime/art_field.h b/runtime/art_field.h index 8d2f9ff71b..46b013da7e 100644 --- a/runtime/art_field.h +++ b/runtime/art_field.h @@ -19,7 +19,7 @@ #include <jni.h> -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "gc_root.h" #include "modifiers.h" #include "obj_ptr.h" diff --git a/runtime/art_method-inl.h b/runtime/art_method-inl.h index fc7920f7b7..bdebe2d9e9 100644 --- a/runtime/art_method-inl.h +++ b/runtime/art_method-inl.h @@ -22,11 +22,11 @@ #include "art_field.h" #include "base/callee_save_type.h" #include "class_linker-inl.h" -#include "code_item_accessors-inl.h" #include "common_throws.h" -#include "dex_file-inl.h" -#include "dex_file_annotations.h" -#include "dex_file_types.h" +#include "dex/code_item_accessors-inl.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_annotations.h" +#include "dex/dex_file_types.h" #include "gc_root-inl.h" #include "invoke_type.h" #include "jit/profiling_info.h" diff --git a/runtime/art_method.cc b/runtime/art_method.cc index d6e4ce57ff..44a5dde485 100644 --- a/runtime/art_method.cc +++ b/runtime/art_method.cc @@ -25,9 +25,9 @@ #include "base/stringpiece.h" #include "class_linker-inl.h" #include "debugger.h" -#include "dex_file-inl.h" -#include "dex_file_exception_helpers.h" -#include "dex_instruction.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_exception_helpers.h" +#include "dex/dex_instruction.h" #include "entrypoints/runtime_asm_entrypoints.h" #include "gc/accounting/card_table-inl.h" #include "interpreter/interpreter.h" diff --git a/runtime/art_method.h b/runtime/art_method.h index ab90a10f5a..c4a586ed92 100644 --- a/runtime/art_method.h +++ b/runtime/art_method.h @@ -27,9 +27,9 @@ #include "base/iteration_range.h" #include "base/macros.h" #include "base/runtime_debug.h" -#include "code_item_accessors.h" -#include "dex_file.h" -#include "dex_instruction_iterator.h" +#include "dex/code_item_accessors.h" +#include "dex/dex_file.h" +#include "dex/dex_instruction_iterator.h" #include "gc_root.h" #include "modifiers.h" #include "obj_ptr.h" diff --git a/runtime/base/file_magic.cc b/runtime/base/file_magic.cc index ac2e184163..e668699a0b 100644 --- a/runtime/base/file_magic.cc +++ b/runtime/base/file_magic.cc @@ -24,7 +24,7 @@ #include <android-base/stringprintf.h> #include "base/unix_file/fd_file.h" -#include "dex_file.h" +#include "dex/dex_file.h" namespace art { diff --git a/runtime/base/file_utils.cc b/runtime/base/file_utils.cc index db498600d9..63b4ac56d0 100644 --- a/runtime/base/file_utils.cc +++ b/runtime/base/file_utils.cc @@ -47,9 +47,9 @@ #include "base/stl_util.h" #include "base/unix_file/fd_file.h" -#include "dex_file-inl.h" -#include "dex_file_loader.h" -#include "dex_instruction.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_loader.h" +#include "dex/dex_instruction.h" #include "oat_quick_method_header.h" #include "os.h" #include "scoped_thread_state_change-inl.h" diff --git a/runtime/bytecode_utils.h b/runtime/bytecode_utils.h index 815e0baf27..a7e0abf4e3 100644 --- a/runtime/bytecode_utils.h +++ b/runtime/bytecode_utils.h @@ -18,9 +18,9 @@ #define ART_RUNTIME_BYTECODE_UTILS_H_ #include "base/arena_object.h" -#include "dex_file-inl.h" -#include "dex_file.h" -#include "dex_instruction-inl.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file.h" +#include "dex/dex_instruction-inl.h" namespace art { diff --git a/runtime/check_jni.cc b/runtime/check_jni.cc index ce4cee827a..5549122c34 100644 --- a/runtime/check_jni.cc +++ b/runtime/check_jni.cc @@ -31,7 +31,7 @@ #include "base/time_utils.h" #include "class_linker-inl.h" #include "class_linker.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "gc/space/space.h" #include "java_vm_ext.h" #include "jni_internal.h" diff --git a/runtime/check_reference_map_visitor.h b/runtime/check_reference_map_visitor.h index c4a613a942..0c29e257a1 100644 --- a/runtime/check_reference_map_visitor.h +++ b/runtime/check_reference_map_visitor.h @@ -18,8 +18,8 @@ #define ART_RUNTIME_CHECK_REFERENCE_MAP_VISITOR_H_ #include "art_method-inl.h" -#include "code_item_accessors-inl.h" -#include "dex_file_types.h" +#include "dex/code_item_accessors-inl.h" +#include "dex/dex_file_types.h" #include "oat_quick_method_header.h" #include "scoped_thread_state_change-inl.h" #include "stack.h" diff --git a/runtime/class_linker.cc b/runtime/class_linker.cc index d18feae24f..877654247c 100644 --- a/runtime/class_linker.cc +++ b/runtime/class_linker.cc @@ -50,9 +50,9 @@ #include "class_table-inl.h" #include "compiler_callbacks.h" #include "debugger.h" -#include "dex_file-inl.h" -#include "dex_file_exception_helpers.h" -#include "dex_file_loader.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_exception_helpers.h" +#include "dex/dex_file_loader.h" #include "entrypoints/entrypoint_utils.h" #include "entrypoints/runtime_asm_entrypoints.h" #include "experimental_flags.h" diff --git a/runtime/class_linker.h b/runtime/class_linker.h index b4e293772b..3e3425f5ac 100644 --- a/runtime/class_linker.h +++ b/runtime/class_linker.h @@ -27,9 +27,9 @@ #include "base/enums.h" #include "base/macros.h" #include "base/mutex.h" +#include "dex/dex_file.h" +#include "dex/dex_file_types.h" #include "dex_cache_resolved_classes.h" -#include "dex_file.h" -#include "dex_file_types.h" #include "gc_root.h" #include "handle.h" #include "jni.h" diff --git a/runtime/class_linker_test.cc b/runtime/class_linker_test.cc index c386883474..80ef6544e8 100644 --- a/runtime/class_linker_test.cc +++ b/runtime/class_linker_test.cc @@ -26,7 +26,8 @@ #include "base/enums.h" #include "class_linker-inl.h" #include "common_runtime_test.h" -#include "dex_file_types.h" +#include "dex/dex_file_types.h" +#include "dex/standard_dex_file.h" #include "entrypoints/entrypoint_utils-inl.h" #include "experimental_flags.h" #include "gc/heap.h" @@ -50,7 +51,6 @@ #include "mirror/string-inl.h" #include "mirror/var_handle.h" #include "scoped_thread_state_change-inl.h" -#include "standard_dex_file.h" #include "thread-current-inl.h" namespace art { diff --git a/runtime/class_loader_context.cc b/runtime/class_loader_context.cc index 54e75588b9..3ec5335a80 100644 --- a/runtime/class_loader_context.cc +++ b/runtime/class_loader_context.cc @@ -21,8 +21,8 @@ #include "base/stl_util.h" #include "class_linker.h" #include "class_loader_utils.h" -#include "dex_file.h" -#include "dex_file_loader.h" +#include "dex/dex_file.h" +#include "dex/dex_file_loader.h" #include "handle_scope-inl.h" #include "jni_internal.h" #include "oat_file_assistant.h" diff --git a/runtime/class_loader_context_test.cc b/runtime/class_loader_context_test.cc index fc3446c3f9..bc726354a8 100644 --- a/runtime/class_loader_context_test.cc +++ b/runtime/class_loader_context_test.cc @@ -23,7 +23,7 @@ #include "base/stl_util.h" #include "class_linker.h" #include "common_runtime_test.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "handle_scope-inl.h" #include "mirror/class.h" #include "mirror/class_loader.h" diff --git a/runtime/class_reference.h b/runtime/class_reference.h index 2ef9ab8959..e8e668e169 100644 --- a/runtime/class_reference.h +++ b/runtime/class_reference.h @@ -20,7 +20,7 @@ #include <stdint.h> #include <utility> -#include "dex_file_reference.h" +#include "dex/dex_file_reference.h" namespace art { diff --git a/runtime/class_table_test.cc b/runtime/class_table_test.cc index 18c2b827fe..fdf6ad1fea 100644 --- a/runtime/class_table_test.cc +++ b/runtime/class_table_test.cc @@ -20,7 +20,7 @@ #include "art_method-inl.h" #include "class_linker-inl.h" #include "common_runtime_test.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "gc/accounting/card_table-inl.h" #include "gc/heap.h" #include "handle_scope-inl.h" diff --git a/runtime/common_dex_operations.h b/runtime/common_dex_operations.h index 89887022e0..1db25c49f6 100644 --- a/runtime/common_dex_operations.h +++ b/runtime/common_dex_operations.h @@ -23,7 +23,7 @@ #include "base/macros.h" #include "base/mutex.h" #include "class_linker.h" -#include "code_item_accessors.h" +#include "dex/code_item_accessors.h" #include "handle_scope-inl.h" #include "instrumentation.h" #include "interpreter/shadow_frame.h" diff --git a/runtime/common_runtime_test.cc b/runtime/common_runtime_test.cc index 6db4d92708..96d660fd64 100644 --- a/runtime/common_runtime_test.cc +++ b/runtime/common_runtime_test.cc @@ -35,8 +35,8 @@ #include "base/unix_file/fd_file.h" #include "class_linker.h" #include "compiler_callbacks.h" -#include "dex_file-inl.h" -#include "dex_file_loader.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_loader.h" #include "gc/heap.h" #include "gc_root-inl.h" #include "gtest/gtest.h" diff --git a/runtime/common_runtime_test.h b/runtime/common_runtime_test.h index 625884d98d..1c73240eea 100644 --- a/runtime/common_runtime_test.h +++ b/runtime/common_runtime_test.h @@ -26,7 +26,7 @@ #include "arch/instruction_set.h" #include "base/mutex.h" -#include "cdex/compact_dex_level.h" +#include "dex/compact_dex_level.h" #include "globals.h" // TODO: Add inl file and avoid including inl. #include "obj_ptr-inl.h" diff --git a/runtime/common_throws.cc b/runtime/common_throws.cc index 707885c88d..92d86519dc 100644 --- a/runtime/common_throws.cc +++ b/runtime/common_throws.cc @@ -24,8 +24,8 @@ #include "art_field-inl.h" #include "art_method-inl.h" #include "class_linker-inl.h" -#include "dex_file-inl.h" -#include "dex_instruction-inl.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_instruction-inl.h" #include "invoke_type.h" #include "mirror/class-inl.h" #include "mirror/method_type.h" diff --git a/runtime/debugger.cc b/runtime/debugger.cc index f504d86f76..842cd7330c 100644 --- a/runtime/debugger.cc +++ b/runtime/debugger.cc @@ -33,10 +33,10 @@ #include "base/time_utils.h" #include "class_linker-inl.h" #include "class_linker.h" -#include "dex_file-inl.h" -#include "dex_file_annotations.h" -#include "dex_file_types.h" -#include "dex_instruction.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_annotations.h" +#include "dex/dex_file_types.h" +#include "dex/dex_instruction.h" #include "entrypoints/runtime_asm_entrypoints.h" #include "gc/accounting/card_table-inl.h" #include "gc/allocation_record.h" diff --git a/runtime/code_item_accessors-inl.h b/runtime/dex/code_item_accessors-inl.h index f63ea6990f..2fdf262b7d 100644 --- a/runtime/code_item_accessors-inl.h +++ b/runtime/dex/code_item_accessors-inl.h @@ -14,13 +14,13 @@ * limitations under the License. */ -#ifndef ART_RUNTIME_CODE_ITEM_ACCESSORS_INL_H_ -#define ART_RUNTIME_CODE_ITEM_ACCESSORS_INL_H_ +#ifndef ART_RUNTIME_DEX_CODE_ITEM_ACCESSORS_INL_H_ +#define ART_RUNTIME_DEX_CODE_ITEM_ACCESSORS_INL_H_ #include "code_item_accessors-no_art-inl.h" #include "art_method-inl.h" -#include "cdex/compact_dex_file.h" +#include "compact_dex_file.h" #include "dex_file-inl.h" #include "oat_file.h" #include "standard_dex_file.h" @@ -46,4 +46,4 @@ inline CodeItemDebugInfoAccessor::CodeItemDebugInfoAccessor(const DexFile* dex_f } // namespace art -#endif // ART_RUNTIME_CODE_ITEM_ACCESSORS_INL_H_ +#endif // ART_RUNTIME_DEX_CODE_ITEM_ACCESSORS_INL_H_ diff --git a/runtime/code_item_accessors-no_art-inl.h b/runtime/dex/code_item_accessors-no_art-inl.h index 38ce8fb743..016923d035 100644 --- a/runtime/code_item_accessors-no_art-inl.h +++ b/runtime/dex/code_item_accessors-no_art-inl.h @@ -14,12 +14,12 @@ * limitations under the License. */ -#ifndef ART_RUNTIME_CODE_ITEM_ACCESSORS_NO_ART_INL_H_ -#define ART_RUNTIME_CODE_ITEM_ACCESSORS_NO_ART_INL_H_ +#ifndef ART_RUNTIME_DEX_CODE_ITEM_ACCESSORS_NO_ART_INL_H_ +#define ART_RUNTIME_DEX_CODE_ITEM_ACCESSORS_NO_ART_INL_H_ #include "code_item_accessors.h" -#include "cdex/compact_dex_file.h" +#include "compact_dex_file.h" #include "dex_file-inl.h" #include "standard_dex_file.h" @@ -163,4 +163,4 @@ inline bool CodeItemDebugInfoAccessor::DecodeDebugLocalInfo(bool is_static, } // namespace art -#endif // ART_RUNTIME_CODE_ITEM_ACCESSORS_NO_ART_INL_H_ +#endif // ART_RUNTIME_DEX_CODE_ITEM_ACCESSORS_NO_ART_INL_H_ diff --git a/runtime/code_item_accessors.h b/runtime/dex/code_item_accessors.h index 4cbe7a1ba0..65cc0bf996 100644 --- a/runtime/code_item_accessors.h +++ b/runtime/dex/code_item_accessors.h @@ -16,11 +16,11 @@ // TODO: Dex helpers have ART specific APIs, we may want to refactor these for use in dexdump. -#ifndef ART_RUNTIME_CODE_ITEM_ACCESSORS_H_ -#define ART_RUNTIME_CODE_ITEM_ACCESSORS_H_ +#ifndef ART_RUNTIME_DEX_CODE_ITEM_ACCESSORS_H_ +#define ART_RUNTIME_DEX_CODE_ITEM_ACCESSORS_H_ #include "base/mutex.h" -#include "cdex/compact_dex_file.h" +#include "compact_dex_file.h" #include "dex_file.h" #include "dex_instruction_iterator.h" #include "standard_dex_file.h" @@ -167,4 +167,4 @@ class CodeItemDebugInfoAccessor : public CodeItemDataAccessor { } // namespace art -#endif // ART_RUNTIME_CODE_ITEM_ACCESSORS_H_ +#endif // ART_RUNTIME_DEX_CODE_ITEM_ACCESSORS_H_ diff --git a/runtime/code_item_accessors_test.cc b/runtime/dex/code_item_accessors_test.cc index 57a5573d8d..57a5573d8d 100644 --- a/runtime/code_item_accessors_test.cc +++ b/runtime/dex/code_item_accessors_test.cc diff --git a/runtime/cdex/compact_dex_file.cc b/runtime/dex/compact_dex_file.cc index 8f90e098bb..8f90e098bb 100644 --- a/runtime/cdex/compact_dex_file.cc +++ b/runtime/dex/compact_dex_file.cc diff --git a/runtime/cdex/compact_dex_file.h b/runtime/dex/compact_dex_file.h index 4343229962..280c6f70cc 100644 --- a/runtime/cdex/compact_dex_file.h +++ b/runtime/dex/compact_dex_file.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef ART_RUNTIME_CDEX_COMPACT_DEX_FILE_H_ -#define ART_RUNTIME_CDEX_COMPACT_DEX_FILE_H_ +#ifndef ART_RUNTIME_DEX_COMPACT_DEX_FILE_H_ +#define ART_RUNTIME_DEX_COMPACT_DEX_FILE_H_ #include "base/casts.h" #include "dex_file.h" @@ -97,4 +97,4 @@ class CompactDexFile : public DexFile { } // namespace art -#endif // ART_RUNTIME_CDEX_COMPACT_DEX_FILE_H_ +#endif // ART_RUNTIME_DEX_COMPACT_DEX_FILE_H_ diff --git a/runtime/cdex/compact_dex_file_test.cc b/runtime/dex/compact_dex_file_test.cc index b43b35d69a..d665dc994b 100644 --- a/runtime/cdex/compact_dex_file_test.cc +++ b/runtime/dex/compact_dex_file_test.cc @@ -14,9 +14,9 @@ * limitations under the License. */ -#include "cdex/compact_dex_file.h" -#include "dex_file_loader.h" #include "common_runtime_test.h" +#include "compact_dex_file.h" +#include "dex_file_loader.h" namespace art { diff --git a/runtime/cdex/compact_dex_level.h b/runtime/dex/compact_dex_level.h index 5aec00195d..de9ca3c783 100644 --- a/runtime/cdex/compact_dex_level.h +++ b/runtime/dex/compact_dex_level.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef ART_RUNTIME_CDEX_COMPACT_DEX_LEVEL_H_ -#define ART_RUNTIME_CDEX_COMPACT_DEX_LEVEL_H_ +#ifndef ART_RUNTIME_DEX_COMPACT_DEX_LEVEL_H_ +#define ART_RUNTIME_DEX_COMPACT_DEX_LEVEL_H_ #include <string> @@ -47,4 +47,4 @@ static constexpr CompactDexLevel kDefaultCompactDexLevel = ART_DEFAULT_COMPACT_D } // namespace art -#endif // ART_RUNTIME_CDEX_COMPACT_DEX_LEVEL_H_ +#endif // ART_RUNTIME_DEX_COMPACT_DEX_LEVEL_H_ diff --git a/runtime/dex_file-inl.h b/runtime/dex/dex_file-inl.h index 90b3c8d34a..9b56328a71 100644 --- a/runtime/dex_file-inl.h +++ b/runtime/dex/dex_file-inl.h @@ -14,13 +14,13 @@ * limitations under the License. */ -#ifndef ART_RUNTIME_DEX_FILE_INL_H_ -#define ART_RUNTIME_DEX_FILE_INL_H_ +#ifndef ART_RUNTIME_DEX_DEX_FILE_INL_H_ +#define ART_RUNTIME_DEX_DEX_FILE_INL_H_ #include "base/bit_utils.h" #include "base/casts.h" #include "base/stringpiece.h" -#include "cdex/compact_dex_file.h" +#include "compact_dex_file.h" #include "dex_file.h" #include "invoke_type.h" #include "leb128.h" @@ -518,4 +518,4 @@ inline const uint8_t* DexFile::GetCatchHandlerData(const DexInstructionIterator& } // namespace art -#endif // ART_RUNTIME_DEX_FILE_INL_H_ +#endif // ART_RUNTIME_DEX_DEX_FILE_INL_H_ diff --git a/runtime/dex_file.cc b/runtime/dex/dex_file.cc index 16325b83f6..16325b83f6 100644 --- a/runtime/dex_file.cc +++ b/runtime/dex/dex_file.cc diff --git a/runtime/dex_file.h b/runtime/dex/dex_file.h index 6e11f09549..c2a36ce01a 100644 --- a/runtime/dex_file.h +++ b/runtime/dex/dex_file.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef ART_RUNTIME_DEX_FILE_H_ -#define ART_RUNTIME_DEX_FILE_H_ +#ifndef ART_RUNTIME_DEX_DEX_FILE_H_ +#define ART_RUNTIME_DEX_DEX_FILE_H_ #include <memory> #include <string> @@ -1456,4 +1456,4 @@ std::ostream& operator<<(std::ostream& os, const CallSiteArrayValueIterator::Val } // namespace art -#endif // ART_RUNTIME_DEX_FILE_H_ +#endif // ART_RUNTIME_DEX_DEX_FILE_H_ diff --git a/runtime/dex_file_annotations.cc b/runtime/dex/dex_file_annotations.cc index 72b18fb420..72b18fb420 100644 --- a/runtime/dex_file_annotations.cc +++ b/runtime/dex/dex_file_annotations.cc diff --git a/runtime/dex_file_annotations.h b/runtime/dex/dex_file_annotations.h index 9ff0929176..26773729c2 100644 --- a/runtime/dex_file_annotations.h +++ b/runtime/dex/dex_file_annotations.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef ART_RUNTIME_DEX_FILE_ANNOTATIONS_H_ -#define ART_RUNTIME_DEX_FILE_ANNOTATIONS_H_ +#ifndef ART_RUNTIME_DEX_DEX_FILE_ANNOTATIONS_H_ +#define ART_RUNTIME_DEX_DEX_FILE_ANNOTATIONS_H_ #include "dex_file.h" @@ -141,4 +141,4 @@ class RuntimeEncodedStaticFieldValueIterator : public EncodedStaticFieldValueIte } // namespace art -#endif // ART_RUNTIME_DEX_FILE_ANNOTATIONS_H_ +#endif // ART_RUNTIME_DEX_DEX_FILE_ANNOTATIONS_H_ diff --git a/runtime/dex_file_exception_helpers.cc b/runtime/dex/dex_file_exception_helpers.cc index ad56eb0a0b..ad56eb0a0b 100644 --- a/runtime/dex_file_exception_helpers.cc +++ b/runtime/dex/dex_file_exception_helpers.cc diff --git a/runtime/dex_file_exception_helpers.h b/runtime/dex/dex_file_exception_helpers.h index 739ed1fdd1..bd6cb7e747 100644 --- a/runtime/dex_file_exception_helpers.h +++ b/runtime/dex/dex_file_exception_helpers.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef ART_RUNTIME_DEX_FILE_EXCEPTION_HELPERS_H_ -#define ART_RUNTIME_DEX_FILE_EXCEPTION_HELPERS_H_ +#ifndef ART_RUNTIME_DEX_DEX_FILE_EXCEPTION_HELPERS_H_ +#define ART_RUNTIME_DEX_DEX_FILE_EXCEPTION_HELPERS_H_ #include "dex_file.h" @@ -65,4 +65,4 @@ class CatchHandlerIterator { } // namespace art -#endif // ART_RUNTIME_DEX_FILE_EXCEPTION_HELPERS_H_ +#endif // ART_RUNTIME_DEX_DEX_FILE_EXCEPTION_HELPERS_H_ diff --git a/runtime/dex_file_layout.cc b/runtime/dex/dex_file_layout.cc index 1973440d55..1973440d55 100644 --- a/runtime/dex_file_layout.cc +++ b/runtime/dex/dex_file_layout.cc diff --git a/runtime/dex_file_layout.h b/runtime/dex/dex_file_layout.h index 9fac5f8458..a7b9051f24 100644 --- a/runtime/dex_file_layout.h +++ b/runtime/dex/dex_file_layout.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef ART_RUNTIME_DEX_FILE_LAYOUT_H_ -#define ART_RUNTIME_DEX_FILE_LAYOUT_H_ +#ifndef ART_RUNTIME_DEX_DEX_FILE_LAYOUT_H_ +#define ART_RUNTIME_DEX_DEX_FILE_LAYOUT_H_ #include <algorithm> #include <cstdint> @@ -121,4 +121,4 @@ std::ostream& operator<<(std::ostream& os, const DexLayoutSections& sections); } // namespace art -#endif // ART_RUNTIME_DEX_FILE_LAYOUT_H_ +#endif // ART_RUNTIME_DEX_DEX_FILE_LAYOUT_H_ diff --git a/runtime/dex_file_loader.cc b/runtime/dex/dex_file_loader.cc index bc9276985b..fafd69889d 100644 --- a/runtime/dex_file_loader.cc +++ b/runtime/dex/dex_file_loader.cc @@ -25,7 +25,7 @@ #include "base/stl_util.h" #include "base/systrace.h" #include "base/unix_file/fd_file.h" -#include "cdex/compact_dex_file.h" +#include "compact_dex_file.h" #include "dex_file.h" #include "dex_file_verifier.h" #include "standard_dex_file.h" diff --git a/runtime/dex_file_loader.h b/runtime/dex/dex_file_loader.h index 17631234b3..7db8d8e08e 100644 --- a/runtime/dex_file_loader.h +++ b/runtime/dex/dex_file_loader.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef ART_RUNTIME_DEX_FILE_LOADER_H_ -#define ART_RUNTIME_DEX_FILE_LOADER_H_ +#ifndef ART_RUNTIME_DEX_DEX_FILE_LOADER_H_ +#define ART_RUNTIME_DEX_DEX_FILE_LOADER_H_ #include <cstdint> #include <memory> @@ -202,4 +202,4 @@ class DexFileLoader { } // namespace art -#endif // ART_RUNTIME_DEX_FILE_LOADER_H_ +#endif // ART_RUNTIME_DEX_DEX_FILE_LOADER_H_ diff --git a/runtime/dex_file_reference.h b/runtime/dex/dex_file_reference.h index 01a64257a8..6f882900c6 100644 --- a/runtime/dex_file_reference.h +++ b/runtime/dex/dex_file_reference.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef ART_RUNTIME_DEX_FILE_REFERENCE_H_ -#define ART_RUNTIME_DEX_FILE_REFERENCE_H_ +#ifndef ART_RUNTIME_DEX_DEX_FILE_REFERENCE_H_ +#define ART_RUNTIME_DEX_DEX_FILE_REFERENCE_H_ #include <cstdint> @@ -49,4 +49,4 @@ inline bool operator==(const DexFileReference& a, const DexFileReference& b) { } // namespace art -#endif // ART_RUNTIME_DEX_FILE_REFERENCE_H_ +#endif // ART_RUNTIME_DEX_DEX_FILE_REFERENCE_H_ diff --git a/runtime/dex_file_test.cc b/runtime/dex/dex_file_test.cc index 87eec571f1..87eec571f1 100644 --- a/runtime/dex_file_test.cc +++ b/runtime/dex/dex_file_test.cc diff --git a/runtime/dex_file_tracking_registrar.cc b/runtime/dex/dex_file_tracking_registrar.cc index bffca5599a..bffca5599a 100644 --- a/runtime/dex_file_tracking_registrar.cc +++ b/runtime/dex/dex_file_tracking_registrar.cc diff --git a/runtime/dex_file_tracking_registrar.h b/runtime/dex/dex_file_tracking_registrar.h index 5c0e0f50ab..71b8ed7bde 100644 --- a/runtime/dex_file_tracking_registrar.h +++ b/runtime/dex/dex_file_tracking_registrar.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef ART_RUNTIME_DEX_FILE_TRACKING_REGISTRAR_H_ -#define ART_RUNTIME_DEX_FILE_TRACKING_REGISTRAR_H_ +#ifndef ART_RUNTIME_DEX_DEX_FILE_TRACKING_REGISTRAR_H_ +#define ART_RUNTIME_DEX_DEX_FILE_TRACKING_REGISTRAR_H_ #include <deque> #include <tuple> @@ -78,4 +78,4 @@ void RegisterDexFile(const DexFile* dex_file); } // namespace dex } // namespace art -#endif // ART_RUNTIME_DEX_FILE_TRACKING_REGISTRAR_H_ +#endif // ART_RUNTIME_DEX_DEX_FILE_TRACKING_REGISTRAR_H_ diff --git a/runtime/dex_file_types.h b/runtime/dex/dex_file_types.h index acca7c055b..2c508f9c99 100644 --- a/runtime/dex_file_types.h +++ b/runtime/dex/dex_file_types.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef ART_RUNTIME_DEX_FILE_TYPES_H_ -#define ART_RUNTIME_DEX_FILE_TYPES_H_ +#ifndef ART_RUNTIME_DEX_DEX_FILE_TYPES_H_ +#define ART_RUNTIME_DEX_DEX_FILE_TYPES_H_ #include <limits> #include <ostream> @@ -114,4 +114,4 @@ template<> struct hash<art::dex::TypeIndex> { } // namespace std -#endif // ART_RUNTIME_DEX_FILE_TYPES_H_ +#endif // ART_RUNTIME_DEX_DEX_FILE_TYPES_H_ diff --git a/runtime/dex_file_verifier.cc b/runtime/dex/dex_file_verifier.cc index d6f685a595..d6f685a595 100644 --- a/runtime/dex_file_verifier.cc +++ b/runtime/dex/dex_file_verifier.cc diff --git a/runtime/dex_file_verifier.h b/runtime/dex/dex_file_verifier.h index 23089fa215..6cb5d4c629 100644 --- a/runtime/dex_file_verifier.h +++ b/runtime/dex/dex_file_verifier.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef ART_RUNTIME_DEX_FILE_VERIFIER_H_ -#define ART_RUNTIME_DEX_FILE_VERIFIER_H_ +#ifndef ART_RUNTIME_DEX_DEX_FILE_VERIFIER_H_ +#define ART_RUNTIME_DEX_DEX_FILE_VERIFIER_H_ #include <unordered_set> @@ -254,4 +254,4 @@ class DexFileVerifier { } // namespace art -#endif // ART_RUNTIME_DEX_FILE_VERIFIER_H_ +#endif // ART_RUNTIME_DEX_DEX_FILE_VERIFIER_H_ diff --git a/runtime/dex_file_verifier_test.cc b/runtime/dex/dex_file_verifier_test.cc index d4d912cbfb..d4d912cbfb 100644 --- a/runtime/dex_file_verifier_test.cc +++ b/runtime/dex/dex_file_verifier_test.cc diff --git a/runtime/dex_instruction-inl.h b/runtime/dex/dex_instruction-inl.h index f6ed1f03b7..a6b8414e62 100644 --- a/runtime/dex_instruction-inl.h +++ b/runtime/dex/dex_instruction-inl.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef ART_RUNTIME_DEX_INSTRUCTION_INL_H_ -#define ART_RUNTIME_DEX_INSTRUCTION_INL_H_ +#ifndef ART_RUNTIME_DEX_DEX_INSTRUCTION_INL_H_ +#define ART_RUNTIME_DEX_DEX_INSTRUCTION_INL_H_ #include "dex_instruction.h" @@ -555,4 +555,4 @@ inline void Instruction::GetVarArgs(uint32_t arg[kMaxVarArgRegs], uint16_t inst_ } // namespace art -#endif // ART_RUNTIME_DEX_INSTRUCTION_INL_H_ +#endif // ART_RUNTIME_DEX_DEX_INSTRUCTION_INL_H_ diff --git a/runtime/dex_instruction.cc b/runtime/dex/dex_instruction.cc index 6ebe2286e8..6ebe2286e8 100644 --- a/runtime/dex_instruction.cc +++ b/runtime/dex/dex_instruction.cc diff --git a/runtime/dex_instruction.h b/runtime/dex/dex_instruction.h index 3ced6920e2..8b1a5ce670 100644 --- a/runtime/dex_instruction.h +++ b/runtime/dex/dex_instruction.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef ART_RUNTIME_DEX_INSTRUCTION_H_ -#define ART_RUNTIME_DEX_INSTRUCTION_H_ +#ifndef ART_RUNTIME_DEX_DEX_INSTRUCTION_H_ +#define ART_RUNTIME_DEX_DEX_INSTRUCTION_H_ #include <android-base/logging.h> @@ -739,4 +739,4 @@ class VarArgsInstructionOperands FINAL : public InstructionOperands { } // namespace art -#endif // ART_RUNTIME_DEX_INSTRUCTION_H_ +#endif // ART_RUNTIME_DEX_DEX_INSTRUCTION_H_ diff --git a/runtime/dex_instruction_iterator.h b/runtime/dex/dex_instruction_iterator.h index eabe009a0b..c1b3118f85 100644 --- a/runtime/dex_instruction_iterator.h +++ b/runtime/dex/dex_instruction_iterator.h @@ -14,15 +14,15 @@ * limitations under the License. */ -#ifndef ART_RUNTIME_DEX_INSTRUCTION_ITERATOR_H_ -#define ART_RUNTIME_DEX_INSTRUCTION_ITERATOR_H_ +#ifndef ART_RUNTIME_DEX_DEX_INSTRUCTION_ITERATOR_H_ +#define ART_RUNTIME_DEX_DEX_INSTRUCTION_ITERATOR_H_ #include <iterator> #include <android-base/logging.h> -#include "dex_instruction.h" #include "base/macros.h" +#include "dex_instruction.h" namespace art { @@ -234,4 +234,4 @@ class SafeDexInstructionIterator : public DexInstructionIteratorBase { } // namespace art -#endif // ART_RUNTIME_DEX_INSTRUCTION_ITERATOR_H_ +#endif // ART_RUNTIME_DEX_DEX_INSTRUCTION_ITERATOR_H_ diff --git a/runtime/dex_instruction_list.h b/runtime/dex/dex_instruction_list.h index ef83bdc216..aa63fadb66 100644 --- a/runtime/dex_instruction_list.h +++ b/runtime/dex/dex_instruction_list.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef ART_RUNTIME_DEX_INSTRUCTION_LIST_H_ -#define ART_RUNTIME_DEX_INSTRUCTION_LIST_H_ +#ifndef ART_RUNTIME_DEX_DEX_INSTRUCTION_LIST_H_ +#define ART_RUNTIME_DEX_DEX_INSTRUCTION_LIST_H_ // V(opcode, instruction_code, name, format, index, flags, extended_flags, verifier_flags); #define DEX_INSTRUCTION_LIST(V) \ @@ -304,5 +304,5 @@ V(k4rcc) \ V(k51l) -#endif // ART_RUNTIME_DEX_INSTRUCTION_LIST_H_ -#undef ART_RUNTIME_DEX_INSTRUCTION_LIST_H_ // the guard in this file is just for cpplint +#endif // ART_RUNTIME_DEX_DEX_INSTRUCTION_LIST_H_ +#undef ART_RUNTIME_DEX_DEX_INSTRUCTION_LIST_H_ // the guard in this file is just for cpplint diff --git a/runtime/dex_instruction_test.cc b/runtime/dex/dex_instruction_test.cc index c944085b9e..c944085b9e 100644 --- a/runtime/dex_instruction_test.cc +++ b/runtime/dex/dex_instruction_test.cc diff --git a/runtime/dex_instruction_utils.h b/runtime/dex/dex_instruction_utils.h index 72d82442b5..27501927e7 100644 --- a/runtime/dex_instruction_utils.h +++ b/runtime/dex/dex_instruction_utils.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef ART_RUNTIME_DEX_INSTRUCTION_UTILS_H_ -#define ART_RUNTIME_DEX_INSTRUCTION_UTILS_H_ +#ifndef ART_RUNTIME_DEX_DEX_INSTRUCTION_UTILS_H_ +#define ART_RUNTIME_DEX_DEX_INSTRUCTION_UTILS_H_ #include "dex_instruction.h" @@ -216,4 +216,4 @@ constexpr DexMemAccessType AGetOrAPutMemAccessType(Instruction::Code code) { } // namespace art -#endif // ART_RUNTIME_DEX_INSTRUCTION_UTILS_H_ +#endif // ART_RUNTIME_DEX_DEX_INSTRUCTION_UTILS_H_ diff --git a/runtime/standard_dex_file.cc b/runtime/dex/standard_dex_file.cc index 843508d831..843508d831 100644 --- a/runtime/standard_dex_file.cc +++ b/runtime/dex/standard_dex_file.cc diff --git a/runtime/standard_dex_file.h b/runtime/dex/standard_dex_file.h index 74749d249b..fb2f720920 100644 --- a/runtime/standard_dex_file.h +++ b/runtime/dex/standard_dex_file.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef ART_RUNTIME_STANDARD_DEX_FILE_H_ -#define ART_RUNTIME_STANDARD_DEX_FILE_H_ +#ifndef ART_RUNTIME_DEX_STANDARD_DEX_FILE_H_ +#define ART_RUNTIME_DEX_STANDARD_DEX_FILE_H_ #include <iosfwd> @@ -86,4 +86,4 @@ class StandardDexFile : public DexFile { } // namespace art -#endif // ART_RUNTIME_STANDARD_DEX_FILE_H_ +#endif // ART_RUNTIME_DEX_STANDARD_DEX_FILE_H_ diff --git a/runtime/dex2oat_environment_test.h b/runtime/dex2oat_environment_test.h index 5f9b3cf6c4..e459f09e95 100644 --- a/runtime/dex2oat_environment_test.h +++ b/runtime/dex2oat_environment_test.h @@ -27,7 +27,7 @@ #include "base/stl_util.h" #include "common_runtime_test.h" #include "compiler_callbacks.h" -#include "dex_file_loader.h" +#include "dex/dex_file_loader.h" #include "exec_utils.h" #include "gc/heap.h" #include "gc/space/image_space.h" diff --git a/runtime/dex_cache_resolved_classes.h b/runtime/dex_cache_resolved_classes.h index 2278b052ed..ca6afc5b92 100644 --- a/runtime/dex_cache_resolved_classes.h +++ b/runtime/dex_cache_resolved_classes.h @@ -21,7 +21,7 @@ #include <unordered_set> #include <vector> -#include "dex_file_types.h" +#include "dex/dex_file_types.h" namespace art { diff --git a/runtime/dex_to_dex_decompiler.cc b/runtime/dex_to_dex_decompiler.cc index 7f36c4e1ce..f3f2d52cb4 100644 --- a/runtime/dex_to_dex_decompiler.cc +++ b/runtime/dex_to_dex_decompiler.cc @@ -21,9 +21,9 @@ #include "base/macros.h" #include "base/mutex.h" #include "bytecode_utils.h" -#include "code_item_accessors-inl.h" -#include "dex_file-inl.h" -#include "dex_instruction-inl.h" +#include "dex/code_item_accessors-inl.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_instruction-inl.h" #include "quicken_info.h" namespace art { diff --git a/runtime/dex_to_dex_decompiler.h b/runtime/dex_to_dex_decompiler.h index a2e3f28ce9..93711d17db 100644 --- a/runtime/dex_to_dex_decompiler.h +++ b/runtime/dex_to_dex_decompiler.h @@ -18,7 +18,7 @@ #define ART_RUNTIME_DEX_TO_DEX_DECOMPILER_H_ #include "base/array_ref.h" -#include "dex_file.h" +#include "dex/dex_file.h" namespace art { namespace optimizer { diff --git a/runtime/entrypoints/entrypoint_utils-inl.h b/runtime/entrypoints/entrypoint_utils-inl.h index 9e5085067c..3048f45f30 100644 --- a/runtime/entrypoints/entrypoint_utils-inl.h +++ b/runtime/entrypoints/entrypoint_utils-inl.h @@ -24,7 +24,7 @@ #include "base/enums.h" #include "class_linker-inl.h" #include "common_throws.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "entrypoints/quick/callee_save_frame.h" #include "handle_scope-inl.h" #include "imt_conflict_table.h" diff --git a/runtime/entrypoints/entrypoint_utils.cc b/runtime/entrypoints/entrypoint_utils.cc index f3450da306..ffa138d5b1 100644 --- a/runtime/entrypoints/entrypoint_utils.cc +++ b/runtime/entrypoints/entrypoint_utils.cc @@ -21,7 +21,7 @@ #include "base/enums.h" #include "base/mutex.h" #include "class_linker-inl.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "entrypoints/entrypoint_utils-inl.h" #include "entrypoints/quick/callee_save_frame.h" #include "entrypoints/runtime_asm_entrypoints.h" diff --git a/runtime/entrypoints/entrypoint_utils.h b/runtime/entrypoints/entrypoint_utils.h index 830ef84250..eb32153b16 100644 --- a/runtime/entrypoints/entrypoint_utils.h +++ b/runtime/entrypoints/entrypoint_utils.h @@ -23,8 +23,8 @@ #include "base/callee_save_type.h" #include "base/macros.h" #include "base/mutex.h" -#include "dex_file_types.h" -#include "dex_instruction.h" +#include "dex/dex_file_types.h" +#include "dex/dex_instruction.h" #include "gc/allocator_type.h" #include "handle.h" #include "jvalue.h" diff --git a/runtime/entrypoints/quick/quick_alloc_entrypoints.cc b/runtime/entrypoints/quick/quick_alloc_entrypoints.cc index b8d96af3fb..1ab67ec2b9 100644 --- a/runtime/entrypoints/quick/quick_alloc_entrypoints.cc +++ b/runtime/entrypoints/quick/quick_alloc_entrypoints.cc @@ -19,7 +19,7 @@ #include "art_method-inl.h" #include "base/enums.h" #include "callee_save_frame.h" -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "entrypoints/entrypoint_utils-inl.h" #include "mirror/class-inl.h" #include "mirror/object-inl.h" diff --git a/runtime/entrypoints/quick/quick_dexcache_entrypoints.cc b/runtime/entrypoints/quick/quick_dexcache_entrypoints.cc index 98378382c5..cfb427f1ac 100644 --- a/runtime/entrypoints/quick/quick_dexcache_entrypoints.cc +++ b/runtime/entrypoints/quick/quick_dexcache_entrypoints.cc @@ -19,8 +19,8 @@ #include "callee_save_frame.h" #include "class_linker-inl.h" #include "class_table-inl.h" -#include "dex_file-inl.h" -#include "dex_file_types.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_types.h" #include "entrypoints/entrypoint_utils-inl.h" #include "gc/heap.h" #include "mirror/class-inl.h" diff --git a/runtime/entrypoints/quick/quick_field_entrypoints.cc b/runtime/entrypoints/quick/quick_field_entrypoints.cc index 7d34d2402a..62cc9dee27 100644 --- a/runtime/entrypoints/quick/quick_field_entrypoints.cc +++ b/runtime/entrypoints/quick/quick_field_entrypoints.cc @@ -20,7 +20,7 @@ #include "art_method-inl.h" #include "base/callee_save_type.h" #include "callee_save_frame.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "entrypoints/entrypoint_utils-inl.h" #include "gc_root-inl.h" #include "mirror/class-inl.h" diff --git a/runtime/entrypoints/quick/quick_trampoline_entrypoints.cc b/runtime/entrypoints/quick/quick_trampoline_entrypoints.cc index 7192058d2c..f727690c11 100644 --- a/runtime/entrypoints/quick/quick_trampoline_entrypoints.cc +++ b/runtime/entrypoints/quick/quick_trampoline_entrypoints.cc @@ -20,9 +20,9 @@ #include "callee_save_frame.h" #include "common_throws.h" #include "debugger.h" -#include "dex_file-inl.h" -#include "dex_file_types.h" -#include "dex_instruction-inl.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_types.h" +#include "dex/dex_instruction-inl.h" #include "entrypoints/entrypoint_utils-inl.h" #include "entrypoints/runtime_asm_entrypoints.h" #include "gc/accounting/card_table-inl.h" diff --git a/runtime/fault_handler.cc b/runtime/fault_handler.cc index f66836f147..49c2a15e86 100644 --- a/runtime/fault_handler.cc +++ b/runtime/fault_handler.cc @@ -24,7 +24,7 @@ #include "base/logging.h" // For VLOG #include "base/safe_copy.h" #include "base/stl_util.h" -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "mirror/class.h" #include "mirror/object_reference.h" #include "oat_quick_method_header.h" diff --git a/runtime/gc/accounting/space_bitmap.cc b/runtime/gc/accounting/space_bitmap.cc index 280c0b1d69..237ee80ba0 100644 --- a/runtime/gc/accounting/space_bitmap.cc +++ b/runtime/gc/accounting/space_bitmap.cc @@ -19,7 +19,7 @@ #include "android-base/stringprintf.h" #include "art_field-inl.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "mem_map.h" #include "mirror/class-inl.h" #include "mirror/object-inl.h" diff --git a/runtime/gc/heap.cc b/runtime/gc/heap.cc index d2df833c48..9edba96ddd 100644 --- a/runtime/gc/heap.cc +++ b/runtime/gc/heap.cc @@ -38,7 +38,7 @@ #include "common_throws.h" #include "cutils/sched_policy.h" #include "debugger.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "entrypoints/quick/quick_alloc_entrypoints.h" #include "gc/accounting/card_table-inl.h" #include "gc/accounting/heap_bitmap-inl.h" diff --git a/runtime/gc/space/image_space.cc b/runtime/gc/space/image_space.cc index bcfc68c4a6..251d94ca25 100644 --- a/runtime/gc/space/image_space.cc +++ b/runtime/gc/space/image_space.cc @@ -36,7 +36,7 @@ #include "base/stl_util.h" #include "base/systrace.h" #include "base/time_utils.h" -#include "dex_file_loader.h" +#include "dex/dex_file_loader.h" #include "exec_utils.h" #include "gc/accounting/space_bitmap-inl.h" #include "image-inl.h" diff --git a/runtime/hprof/hprof.cc b/runtime/hprof/hprof.cc index f4fc85b8e5..ea8a68405f 100644 --- a/runtime/hprof/hprof.cc +++ b/runtime/hprof/hprof.cc @@ -48,7 +48,7 @@ #include "class_linker.h" #include "common_throws.h" #include "debugger.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "gc/accounting/heap_bitmap.h" #include "gc/allocation_record.h" #include "gc/heap-visit-objects-inl.h" diff --git a/runtime/imtable-inl.h b/runtime/imtable-inl.h index cb85fa6e56..6237cca9e4 100644 --- a/runtime/imtable-inl.h +++ b/runtime/imtable-inl.h @@ -20,7 +20,7 @@ #include "imtable.h" #include "art_method-inl.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "utf.h" namespace art { diff --git a/runtime/instrumentation.cc b/runtime/instrumentation.cc index a4ee21d4aa..4524448916 100644 --- a/runtime/instrumentation.cc +++ b/runtime/instrumentation.cc @@ -25,9 +25,9 @@ #include "base/callee_save_type.h" #include "class_linker.h" #include "debugger.h" -#include "dex_file-inl.h" -#include "dex_file_types.h" -#include "dex_instruction-inl.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_types.h" +#include "dex/dex_instruction-inl.h" #include "entrypoints/quick/quick_alloc_entrypoints.h" #include "entrypoints/quick/quick_entrypoints.h" #include "entrypoints/runtime_asm_entrypoints.h" diff --git a/runtime/instrumentation_test.cc b/runtime/instrumentation_test.cc index 89baa3504f..836bbe711f 100644 --- a/runtime/instrumentation_test.cc +++ b/runtime/instrumentation_test.cc @@ -21,7 +21,7 @@ #include "class_linker-inl.h" #include "common_runtime_test.h" #include "common_throws.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "gc/scoped_gc_critical_section.h" #include "handle_scope-inl.h" #include "jni_internal.h" diff --git a/runtime/interpreter/interpreter.cc b/runtime/interpreter/interpreter.cc index 9b81819da2..54db87297d 100644 --- a/runtime/interpreter/interpreter.cc +++ b/runtime/interpreter/interpreter.cc @@ -20,7 +20,7 @@ #include "common_dex_operations.h" #include "common_throws.h" -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "interpreter_common.h" #include "interpreter_mterp_impl.h" #include "interpreter_switch_impl.h" diff --git a/runtime/interpreter/interpreter.h b/runtime/interpreter/interpreter.h index f9d7774d5b..0d43b9090a 100644 --- a/runtime/interpreter/interpreter.h +++ b/runtime/interpreter/interpreter.h @@ -18,7 +18,7 @@ #define ART_RUNTIME_INTERPRETER_INTERPRETER_H_ #include "base/mutex.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "obj_ptr.h" namespace art { diff --git a/runtime/interpreter/interpreter_common.cc b/runtime/interpreter/interpreter_common.cc index deed16b974..475f93803d 100644 --- a/runtime/interpreter/interpreter_common.cc +++ b/runtime/interpreter/interpreter_common.cc @@ -20,7 +20,7 @@ #include "base/enums.h" #include "debugger.h" -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "entrypoints/runtime_asm_entrypoints.h" #include "intrinsics_enum.h" #include "jit/jit.h" diff --git a/runtime/interpreter/interpreter_common.h b/runtime/interpreter/interpreter_common.h index 269b013caf..8180222e22 100644 --- a/runtime/interpreter/interpreter_common.h +++ b/runtime/interpreter/interpreter_common.h @@ -37,8 +37,8 @@ #include "class_linker-inl.h" #include "common_dex_operations.h" #include "common_throws.h" -#include "dex_file-inl.h" -#include "dex_instruction-inl.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_instruction-inl.h" #include "entrypoints/entrypoint_utils-inl.h" #include "handle_scope-inl.h" #include "jit/jit.h" diff --git a/runtime/interpreter/interpreter_intrinsics.cc b/runtime/interpreter/interpreter_intrinsics.cc index 37593bc728..99a4f763c9 100644 --- a/runtime/interpreter/interpreter_intrinsics.cc +++ b/runtime/interpreter/interpreter_intrinsics.cc @@ -16,7 +16,7 @@ #include "interpreter/interpreter_intrinsics.h" -#include "dex_instruction.h" +#include "dex/dex_instruction.h" #include "intrinsics_enum.h" #include "interpreter/interpreter_common.h" diff --git a/runtime/interpreter/interpreter_mterp_impl.h b/runtime/interpreter/interpreter_mterp_impl.h index 7aa5a34bd4..d8a764f855 100644 --- a/runtime/interpreter/interpreter_mterp_impl.h +++ b/runtime/interpreter/interpreter_mterp_impl.h @@ -19,7 +19,7 @@ #include "base/macros.h" #include "base/mutex.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "jvalue.h" #include "obj_ptr.h" diff --git a/runtime/interpreter/interpreter_switch_impl.cc b/runtime/interpreter/interpreter_switch_impl.cc index 81c1e1deeb..6f9cad848d 100644 --- a/runtime/interpreter/interpreter_switch_impl.cc +++ b/runtime/interpreter/interpreter_switch_impl.cc @@ -17,7 +17,7 @@ #include "interpreter_switch_impl.h" #include "base/enums.h" -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "experimental_flags.h" #include "interpreter_common.h" #include "jit/jit.h" diff --git a/runtime/interpreter/interpreter_switch_impl.h b/runtime/interpreter/interpreter_switch_impl.h index aa0f854bb7..50db337f03 100644 --- a/runtime/interpreter/interpreter_switch_impl.h +++ b/runtime/interpreter/interpreter_switch_impl.h @@ -19,7 +19,7 @@ #include "base/macros.h" #include "base/mutex.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "jvalue.h" #include "obj_ptr.h" diff --git a/runtime/interpreter/shadow_frame.h b/runtime/interpreter/shadow_frame.h index be2c943427..d5451ffded 100644 --- a/runtime/interpreter/shadow_frame.h +++ b/runtime/interpreter/shadow_frame.h @@ -23,7 +23,7 @@ #include "base/macros.h" #include "base/mutex.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "lock_count_data.h" #include "read_barrier.h" #include "stack_reference.h" diff --git a/runtime/interpreter/unstarted_runtime.h b/runtime/interpreter/unstarted_runtime.h index 2e86dea1a9..b38c685d9b 100644 --- a/runtime/interpreter/unstarted_runtime.h +++ b/runtime/interpreter/unstarted_runtime.h @@ -19,7 +19,7 @@ #include "interpreter.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "jvalue.h" namespace art { diff --git a/runtime/interpreter/unstarted_runtime_test.cc b/runtime/interpreter/unstarted_runtime_test.cc index 9db5f88dab..0986005e4b 100644 --- a/runtime/interpreter/unstarted_runtime_test.cc +++ b/runtime/interpreter/unstarted_runtime_test.cc @@ -24,7 +24,7 @@ #include "base/memory_tool.h" #include "class_linker.h" #include "common_runtime_test.h" -#include "dex_instruction.h" +#include "dex/dex_instruction.h" #include "handle.h" #include "handle_scope-inl.h" #include "interpreter/interpreter_common.h" diff --git a/runtime/java_vm_ext.cc b/runtime/java_vm_ext.cc index 579552d6ab..da4c4b2fa4 100644 --- a/runtime/java_vm_ext.cc +++ b/runtime/java_vm_ext.cc @@ -26,7 +26,7 @@ #include "base/stl_util.h" #include "base/systrace.h" #include "check_jni.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "fault_handler.h" #include "gc/allocation_record.h" #include "gc/heap.h" diff --git a/runtime/jit/jit_code_cache.cc b/runtime/jit/jit_code_cache.cc index 6f03a688e6..659c55a289 100644 --- a/runtime/jit/jit_code_cache.cc +++ b/runtime/jit/jit_code_cache.cc @@ -27,7 +27,7 @@ #include "base/time_utils.h" #include "cha.h" #include "debugger_interface.h" -#include "dex_file_loader.h" +#include "dex/dex_file_loader.h" #include "entrypoints/runtime_asm_entrypoints.h" #include "gc/accounting/bitmap-inl.h" #include "gc/scoped_gc_critical_section.h" diff --git a/runtime/jit/profile_compilation_info.cc b/runtime/jit/profile_compilation_info.cc index 7754777eb6..74bf237c31 100644 --- a/runtime/jit/profile_compilation_info.cc +++ b/runtime/jit/profile_compilation_info.cc @@ -42,7 +42,7 @@ #include "base/systrace.h" #include "base/time_utils.h" #include "base/unix_file/fd_file.h" -#include "dex_file_loader.h" +#include "dex/dex_file_loader.h" #include "jit/profiling_info.h" #include "os.h" #include "safe_map.h" diff --git a/runtime/jit/profile_compilation_info.h b/runtime/jit/profile_compilation_info.h index 8dbb43fb53..7c30dee0c0 100644 --- a/runtime/jit/profile_compilation_info.h +++ b/runtime/jit/profile_compilation_info.h @@ -25,8 +25,8 @@ #include "base/arena_object.h" #include "bit_memory_region.h" #include "dex_cache_resolved_classes.h" -#include "dex_file.h" -#include "dex_file_types.h" +#include "dex/dex_file.h" +#include "dex/dex_file_types.h" #include "method_reference.h" #include "safe_map.h" #include "type_reference.h" diff --git a/runtime/jit/profile_compilation_info_test.cc b/runtime/jit/profile_compilation_info_test.cc index f155d7e163..08042cc890 100644 --- a/runtime/jit/profile_compilation_info_test.cc +++ b/runtime/jit/profile_compilation_info_test.cc @@ -20,7 +20,7 @@ #include "base/unix_file/fd_file.h" #include "class_linker-inl.h" #include "common_runtime_test.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "handle_scope-inl.h" #include "jit/profile_compilation_info.h" #include "linear_alloc.h" diff --git a/runtime/jit/profile_saver.cc b/runtime/jit/profile_saver.cc index ee11cfddb0..8f0ac33594 100644 --- a/runtime/jit/profile_saver.cc +++ b/runtime/jit/profile_saver.cc @@ -32,7 +32,7 @@ #include "base/time_utils.h" #include "class_table-inl.h" #include "compiler_filter.h" -#include "dex_file_loader.h" +#include "dex/dex_file_loader.h" #include "dex_reference_collection.h" #include "gc/collector_type.h" #include "gc/gc_cause.h" diff --git a/runtime/jit/profiling_info.cc b/runtime/jit/profiling_info.cc index 01481d1a8d..9126bea7d0 100644 --- a/runtime/jit/profiling_info.cc +++ b/runtime/jit/profiling_info.cc @@ -17,7 +17,7 @@ #include "profiling_info.h" #include "art_method-inl.h" -#include "dex_instruction.h" +#include "dex/dex_instruction.h" #include "jit/jit.h" #include "jit/jit_code_cache.h" #include "scoped_thread_state_change-inl.h" diff --git a/runtime/jni_internal.cc b/runtime/jni_internal.cc index 53ae628a44..b8e6ebe8d8 100644 --- a/runtime/jni_internal.cc +++ b/runtime/jni_internal.cc @@ -32,7 +32,7 @@ #include "base/mutex.h" #include "base/stl_util.h" #include "class_linker-inl.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "fault_handler.h" #include "gc/accounting/card_table-inl.h" #include "gc_root.h" diff --git a/runtime/method_handles-inl.h b/runtime/method_handles-inl.h index 08b8ad937a..2bc71f4b5e 100644 --- a/runtime/method_handles-inl.h +++ b/runtime/method_handles-inl.h @@ -20,7 +20,7 @@ #include "method_handles.h" #include "common_throws.h" -#include "dex_instruction.h" +#include "dex/dex_instruction.h" #include "interpreter/interpreter_common.h" #include "jvalue.h" #include "mirror/class.h" diff --git a/runtime/method_handles.h b/runtime/method_handles.h index bc74bf23d2..6ffd1a81fc 100644 --- a/runtime/method_handles.h +++ b/runtime/method_handles.h @@ -19,7 +19,7 @@ #include <ostream> -#include "dex_instruction.h" +#include "dex/dex_instruction.h" #include "handle.h" #include "interpreter/shadow_frame.h" #include "jvalue.h" diff --git a/runtime/method_reference.h b/runtime/method_reference.h index 31f3b8e84e..50b6d6eb68 100644 --- a/runtime/method_reference.h +++ b/runtime/method_reference.h @@ -19,8 +19,8 @@ #include <stdint.h> #include <string> -#include "dex_file.h" -#include "dex_file_reference.h" +#include "dex/dex_file.h" +#include "dex/dex_file_reference.h" namespace art { diff --git a/runtime/mirror/array.cc b/runtime/mirror/array.cc index 6218dd9c9c..25283bc310 100644 --- a/runtime/mirror/array.cc +++ b/runtime/mirror/array.cc @@ -20,7 +20,7 @@ #include "class.h" #include "class_linker-inl.h" #include "common_throws.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "gc/accounting/card_table-inl.h" #include "handle_scope-inl.h" #include "object-inl.h" diff --git a/runtime/mirror/class-inl.h b/runtime/mirror/class-inl.h index b4f5d81067..302a5e622e 100644 --- a/runtime/mirror/class-inl.h +++ b/runtime/mirror/class-inl.h @@ -27,7 +27,7 @@ #include "class_loader.h" #include "common_throws.h" #include "dex_cache.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "gc/heap-inl.h" #include "iftable.h" #include "invoke_type.h" diff --git a/runtime/mirror/class.cc b/runtime/mirror/class.cc index 6bee3cf950..8a7defd362 100644 --- a/runtime/mirror/class.cc +++ b/runtime/mirror/class.cc @@ -25,9 +25,9 @@ #include "class_ext.h" #include "class_linker-inl.h" #include "class_loader.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_annotations.h" #include "dex_cache.h" -#include "dex_file-inl.h" -#include "dex_file_annotations.h" #include "gc/accounting/card_table-inl.h" #include "handle_scope-inl.h" #include "subtype_check.h" diff --git a/runtime/mirror/class.h b/runtime/mirror/class.h index 95fc35dd35..55c588930e 100644 --- a/runtime/mirror/class.h +++ b/runtime/mirror/class.h @@ -23,8 +23,8 @@ #include "base/iteration_range.h" #include "class_flags.h" #include "class_status.h" -#include "dex_file.h" -#include "dex_file_types.h" +#include "dex/dex_file.h" +#include "dex/dex_file_types.h" #include "gc/allocator_type.h" #include "gc_root.h" #include "imtable.h" diff --git a/runtime/mirror/class_ext.cc b/runtime/mirror/class_ext.cc index 32d49bbc10..c18b219f19 100644 --- a/runtime/mirror/class_ext.cc +++ b/runtime/mirror/class_ext.cc @@ -20,7 +20,7 @@ #include "base/casts.h" #include "base/enums.h" #include "class-inl.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "gc/accounting/card_table-inl.h" #include "object-inl.h" #include "object_array.h" diff --git a/runtime/mirror/dex_cache-inl.h b/runtime/mirror/dex_cache-inl.h index e1d04e291d..573244ef17 100644 --- a/runtime/mirror/dex_cache-inl.h +++ b/runtime/mirror/dex_cache-inl.h @@ -26,7 +26,7 @@ #include "base/casts.h" #include "base/enums.h" #include "class_linker.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "gc/heap-inl.h" #include "gc_root.h" #include "mirror/call_site.h" diff --git a/runtime/mirror/dex_cache.h b/runtime/mirror/dex_cache.h index 509db0292e..b46d80cf15 100644 --- a/runtime/mirror/dex_cache.h +++ b/runtime/mirror/dex_cache.h @@ -20,7 +20,7 @@ #include "array.h" #include "base/bit_utils.h" #include "base/mutex.h" -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "object.h" #include "object_array.h" diff --git a/runtime/mirror/emulated_stack_frame.h b/runtime/mirror/emulated_stack_frame.h index b6aa949ec3..9bfa4d6098 100644 --- a/runtime/mirror/emulated_stack_frame.h +++ b/runtime/mirror/emulated_stack_frame.h @@ -17,7 +17,7 @@ #ifndef ART_RUNTIME_MIRROR_EMULATED_STACK_FRAME_H_ #define ART_RUNTIME_MIRROR_EMULATED_STACK_FRAME_H_ -#include "dex_instruction.h" +#include "dex/dex_instruction.h" #include "method_type.h" #include "object.h" #include "stack.h" diff --git a/runtime/mirror/object.cc b/runtime/mirror/object.cc index 52e6a7e878..3765d0af59 100644 --- a/runtime/mirror/object.cc +++ b/runtime/mirror/object.cc @@ -24,7 +24,7 @@ #include "class-inl.h" #include "class.h" #include "class_linker-inl.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "gc/accounting/card_table-inl.h" #include "gc/heap.h" #include "handle_scope-inl.h" diff --git a/runtime/mirror/object_test.cc b/runtime/mirror/object_test.cc index 1a0fc76190..32a99eb753 100644 --- a/runtime/mirror/object_test.cc +++ b/runtime/mirror/object_test.cc @@ -29,7 +29,7 @@ #include "class_linker-inl.h" #include "class_linker.h" #include "common_runtime_test.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "entrypoints/entrypoint_utils-inl.h" #include "gc/accounting/card_table-inl.h" #include "gc/heap.h" diff --git a/runtime/mirror/throwable.cc b/runtime/mirror/throwable.cc index 077ad50dcc..a7a6d087e1 100644 --- a/runtime/mirror/throwable.cc +++ b/runtime/mirror/throwable.cc @@ -21,7 +21,7 @@ #include "art_method-inl.h" #include "base/enums.h" #include "class-inl.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "gc/accounting/card_table-inl.h" #include "object-inl.h" #include "object_array-inl.h" diff --git a/runtime/monitor.cc b/runtime/monitor.cc index 475ec21ed8..325591fb53 100644 --- a/runtime/monitor.cc +++ b/runtime/monitor.cc @@ -27,9 +27,9 @@ #include "base/systrace.h" #include "base/time_utils.h" #include "class_linker.h" -#include "dex_file-inl.h" -#include "dex_file_types.h" -#include "dex_instruction-inl.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_types.h" +#include "dex/dex_instruction-inl.h" #include "lock_word-inl.h" #include "mirror/class-inl.h" #include "mirror/object-inl.h" diff --git a/runtime/native/dalvik_system_DexFile.cc b/runtime/native/dalvik_system_DexFile.cc index c0de374904..a992b5cb5b 100644 --- a/runtime/native/dalvik_system_DexFile.cc +++ b/runtime/native/dalvik_system_DexFile.cc @@ -27,8 +27,8 @@ #include <class_loader_context.h> #include "common_throws.h" #include "compiler_filter.h" -#include "dex_file-inl.h" -#include "dex_file_loader.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_loader.h" #include "jni_internal.h" #include "mirror/class_loader.h" #include "mirror/object-inl.h" diff --git a/runtime/native/dalvik_system_VMRuntime.cc b/runtime/native/dalvik_system_VMRuntime.cc index 6446e1b4f5..400518df20 100644 --- a/runtime/native/dalvik_system_VMRuntime.cc +++ b/runtime/native/dalvik_system_VMRuntime.cc @@ -32,8 +32,8 @@ extern "C" void android_set_application_target_sdk_version(uint32_t version); #include "class_linker-inl.h" #include "common_throws.h" #include "debugger.h" -#include "dex_file-inl.h" -#include "dex_file_types.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_types.h" #include "gc/accounting/card_table-inl.h" #include "gc/allocator/dlmalloc.h" #include "gc/heap.h" diff --git a/runtime/native/java_lang_Class.cc b/runtime/native/java_lang_Class.cc index da5cee1ddc..7b999c04af 100644 --- a/runtime/native/java_lang_Class.cc +++ b/runtime/native/java_lang_Class.cc @@ -23,8 +23,8 @@ #include "base/enums.h" #include "class_linker-inl.h" #include "common_throws.h" -#include "dex_file-inl.h" -#include "dex_file_annotations.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_annotations.h" #include "jni_internal.h" #include "mirror/class-inl.h" #include "mirror/class_loader.h" diff --git a/runtime/native/java_lang_VMClassLoader.cc b/runtime/native/java_lang_VMClassLoader.cc index 5130ad50e4..6eebff4aca 100644 --- a/runtime/native/java_lang_VMClassLoader.cc +++ b/runtime/native/java_lang_VMClassLoader.cc @@ -17,7 +17,7 @@ #include "java_lang_VMClassLoader.h" #include "class_linker.h" -#include "dex_file_loader.h" +#include "dex/dex_file_loader.h" #include "jni_internal.h" #include "mirror/class_loader.h" #include "mirror/object-inl.h" diff --git a/runtime/native/java_lang_reflect_Array.cc b/runtime/native/java_lang_reflect_Array.cc index 5be317147b..12d400895c 100644 --- a/runtime/native/java_lang_reflect_Array.cc +++ b/runtime/native/java_lang_reflect_Array.cc @@ -20,7 +20,7 @@ #include "class_linker-inl.h" #include "common_throws.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "handle_scope-inl.h" #include "jni_internal.h" #include "mirror/class-inl.h" diff --git a/runtime/native/java_lang_reflect_Constructor.cc b/runtime/native/java_lang_reflect_Constructor.cc index abbb347be6..86124388bc 100644 --- a/runtime/native/java_lang_reflect_Constructor.cc +++ b/runtime/native/java_lang_reflect_Constructor.cc @@ -22,7 +22,7 @@ #include "base/enums.h" #include "class_linker-inl.h" #include "class_linker.h" -#include "dex_file_annotations.h" +#include "dex/dex_file_annotations.h" #include "jni_internal.h" #include "mirror/class-inl.h" #include "mirror/method.h" diff --git a/runtime/native/java_lang_reflect_Executable.cc b/runtime/native/java_lang_reflect_Executable.cc index f209f1d73a..e37c14b41c 100644 --- a/runtime/native/java_lang_reflect_Executable.cc +++ b/runtime/native/java_lang_reflect_Executable.cc @@ -20,7 +20,7 @@ #include "nativehelper/jni_macros.h" #include "art_method-inl.h" -#include "dex_file_annotations.h" +#include "dex/dex_file_annotations.h" #include "handle.h" #include "jni_internal.h" #include "mirror/class-inl.h" diff --git a/runtime/native/java_lang_reflect_Field.cc b/runtime/native/java_lang_reflect_Field.cc index 2e4dd8a599..f990c0421d 100644 --- a/runtime/native/java_lang_reflect_Field.cc +++ b/runtime/native/java_lang_reflect_Field.cc @@ -23,8 +23,8 @@ #include "class_linker-inl.h" #include "class_linker.h" #include "common_throws.h" -#include "dex_file-inl.h" -#include "dex_file_annotations.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_annotations.h" #include "jni_internal.h" #include "mirror/class-inl.h" #include "mirror/field-inl.h" diff --git a/runtime/native/java_lang_reflect_Method.cc b/runtime/native/java_lang_reflect_Method.cc index 18ff9c39bf..b604dc0fa1 100644 --- a/runtime/native/java_lang_reflect_Method.cc +++ b/runtime/native/java_lang_reflect_Method.cc @@ -22,7 +22,7 @@ #include "base/enums.h" #include "class_linker-inl.h" #include "class_linker.h" -#include "dex_file_annotations.h" +#include "dex/dex_file_annotations.h" #include "jni_internal.h" #include "mirror/class-inl.h" #include "mirror/object-inl.h" diff --git a/runtime/native/java_lang_reflect_Parameter.cc b/runtime/native/java_lang_reflect_Parameter.cc index c4ab5d69fc..0b3015bda8 100644 --- a/runtime/native/java_lang_reflect_Parameter.cc +++ b/runtime/native/java_lang_reflect_Parameter.cc @@ -21,8 +21,8 @@ #include "art_method-inl.h" #include "common_throws.h" -#include "dex_file-inl.h" -#include "dex_file_annotations.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_annotations.h" #include "jni_internal.h" #include "native_util.h" #include "scoped_fast_native_object_access-inl.h" diff --git a/runtime/native_bridge_art_interface.cc b/runtime/native_bridge_art_interface.cc index 10d10912f1..7d72805dc6 100644 --- a/runtime/native_bridge_art_interface.cc +++ b/runtime/native_bridge_art_interface.cc @@ -24,7 +24,7 @@ #include "base/enums.h" #include "base/logging.h" // For VLOG. #include "base/macros.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "jni_internal.h" #include "mirror/class-inl.h" #include "scoped_thread_state_change-inl.h" diff --git a/runtime/oat.h b/runtime/oat.h index 7d1bf85a6c..6d4f18bdb1 100644 --- a/runtime/oat.h +++ b/runtime/oat.h @@ -22,7 +22,7 @@ #include "arch/instruction_set.h" #include "base/macros.h" #include "compiler_filter.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "safe_map.h" namespace art { diff --git a/runtime/oat_file.cc b/runtime/oat_file.cc index 7a3014e210..df07a191bc 100644 --- a/runtime/oat_file.cc +++ b/runtime/oat_file.cc @@ -43,8 +43,9 @@ #include "base/stl_util.h" #include "base/systrace.h" #include "base/unix_file/fd_file.h" -#include "dex_file_types.h" -#include "dex_file_loader.h" +#include "dex/dex_file_loader.h" +#include "dex/dex_file_types.h" +#include "dex/standard_dex_file.h" #include "elf_file.h" #include "elf_utils.h" #include "gc_root.h" @@ -57,7 +58,6 @@ #include "oat_file_manager.h" #include "os.h" #include "runtime.h" -#include "standard_dex_file.h" #include "type_lookup_table.h" #include "utf-inl.h" #include "utils.h" diff --git a/runtime/oat_file.h b/runtime/oat_file.h index 2ed1c825c6..02318b68b7 100644 --- a/runtime/oat_file.h +++ b/runtime/oat_file.h @@ -26,8 +26,8 @@ #include "base/stringpiece.h" #include "class_status.h" #include "compiler_filter.h" -#include "dex_file.h" -#include "dex_file_layout.h" +#include "dex/dex_file.h" +#include "dex/dex_file_layout.h" #include "index_bss_mapping.h" #include "mirror/object.h" #include "oat.h" diff --git a/runtime/oat_file_assistant.cc b/runtime/oat_file_assistant.cc index 8707e736bd..240030cf5b 100644 --- a/runtime/oat_file_assistant.cc +++ b/runtime/oat_file_assistant.cc @@ -28,7 +28,7 @@ #include "base/stl_util.h" #include "class_linker.h" #include "compiler_filter.h" -#include "dex_file_loader.h" +#include "dex/dex_file_loader.h" #include "exec_utils.h" #include "gc/heap.h" #include "gc/space/image_space.h" diff --git a/runtime/oat_file_manager.cc b/runtime/oat_file_manager.cc index 91a138a259..29b9bfcf7f 100644 --- a/runtime/oat_file_manager.cc +++ b/runtime/oat_file_manager.cc @@ -31,9 +31,9 @@ #include "base/systrace.h" #include "class_linker.h" #include "class_loader_context.h" -#include "dex_file-inl.h" -#include "dex_file_loader.h" -#include "dex_file_tracking_registrar.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_loader.h" +#include "dex/dex_file_tracking_registrar.h" #include "gc/scoped_gc_critical_section.h" #include "gc/space/image_space.h" #include "handle_scope-inl.h" diff --git a/runtime/oat_quick_method_header.cc b/runtime/oat_quick_method_header.cc index aa28fd8c9b..98238e5600 100644 --- a/runtime/oat_quick_method_header.cc +++ b/runtime/oat_quick_method_header.cc @@ -17,7 +17,7 @@ #include "oat_quick_method_header.h" #include "art_method.h" -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "scoped_thread_state_change-inl.h" #include "thread.h" diff --git a/runtime/quick_exception_handler.cc b/runtime/quick_exception_handler.cc index 06b94c30d2..3a7640fa8b 100644 --- a/runtime/quick_exception_handler.cc +++ b/runtime/quick_exception_handler.cc @@ -20,8 +20,8 @@ #include "art_method-inl.h" #include "base/enums.h" #include "base/logging.h" // For VLOG_IS_ON. -#include "dex_file_types.h" -#include "dex_instruction.h" +#include "dex/dex_file_types.h" +#include "dex/dex_instruction.h" #include "entrypoints/entrypoint_utils.h" #include "entrypoints/quick/quick_entrypoints_enum.h" #include "entrypoints/runtime_asm_entrypoints.h" diff --git a/runtime/quicken_info.h b/runtime/quicken_info.h index 5b72468fcd..ce11f3c19b 100644 --- a/runtime/quicken_info.h +++ b/runtime/quicken_info.h @@ -17,7 +17,7 @@ #ifndef ART_RUNTIME_QUICKEN_INFO_H_ #define ART_RUNTIME_QUICKEN_INFO_H_ -#include "dex_instruction.h" +#include "dex/dex_instruction.h" namespace art { diff --git a/runtime/reflection.cc b/runtime/reflection.cc index cacbe87f71..635a03afe0 100644 --- a/runtime/reflection.cc +++ b/runtime/reflection.cc @@ -21,7 +21,7 @@ #include "base/enums.h" #include "class_linker.h" #include "common_throws.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "indirect_reference_table-inl.h" #include "java_vm_ext.h" #include "jni_internal.h" diff --git a/runtime/runtime.cc b/runtime/runtime.cc index e1610ab533..e8fa572a91 100644 --- a/runtime/runtime.cc +++ b/runtime/runtime.cc @@ -69,7 +69,7 @@ #include "class_linker-inl.h" #include "compiler_callbacks.h" #include "debugger.h" -#include "dex_file_loader.h" +#include "dex/dex_file_loader.h" #include "elf_file.h" #include "entrypoints/runtime_asm_entrypoints.h" #include "experimental_flags.h" diff --git a/runtime/runtime.h b/runtime/runtime.h index ac29ed42c3..c3abfe0d7c 100644 --- a/runtime/runtime.h +++ b/runtime/runtime.h @@ -31,7 +31,7 @@ #include "base/macros.h" #include "base/mutex.h" #include "deoptimization_kind.h" -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "experimental_flags.h" #include "gc_root.h" #include "instrumentation.h" diff --git a/runtime/runtime_callbacks.h b/runtime/runtime_callbacks.h index f405c9fe34..24386ba14a 100644 --- a/runtime/runtime_callbacks.h +++ b/runtime/runtime_callbacks.h @@ -22,7 +22,7 @@ #include "base/array_ref.h" #include "base/macros.h" #include "base/mutex.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "handle.h" namespace art { diff --git a/runtime/stack.cc b/runtime/stack.cc index bbea48b441..dfdea28ae8 100644 --- a/runtime/stack.cc +++ b/runtime/stack.cc @@ -23,7 +23,7 @@ #include "base/callee_save_type.h" #include "base/enums.h" #include "base/hex_dump.h" -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "entrypoints/entrypoint_utils-inl.h" #include "entrypoints/runtime_asm_entrypoints.h" #include "gc/space/image_space.h" diff --git a/runtime/stack_map.h b/runtime/stack_map.h index 85c734ee4c..62fb54fb56 100644 --- a/runtime/stack_map.h +++ b/runtime/stack_map.h @@ -23,8 +23,8 @@ #include "base/bit_utils.h" #include "base/bit_vector.h" #include "bit_memory_region.h" +#include "dex/dex_file_types.h" #include "leb128.h" -#include "dex_file_types.h" #include "memory_region.h" #include "method_info.h" diff --git a/runtime/string_reference.h b/runtime/string_reference.h index 24a425371b..97661c6019 100644 --- a/runtime/string_reference.h +++ b/runtime/string_reference.h @@ -21,9 +21,9 @@ #include <android-base/logging.h> -#include "dex_file-inl.h" -#include "dex_file_reference.h" -#include "dex_file_types.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_reference.h" +#include "dex/dex_file_types.h" #include "utf-inl.h" namespace art { diff --git a/runtime/thread.cc b/runtime/thread.cc index b539fb8cd9..5518611597 100644 --- a/runtime/thread.cc +++ b/runtime/thread.cc @@ -47,9 +47,9 @@ #include "base/to_str.h" #include "class_linker-inl.h" #include "debugger.h" -#include "dex_file-inl.h" -#include "dex_file_annotations.h" -#include "dex_file_types.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_annotations.h" +#include "dex/dex_file_types.h" #include "entrypoints/entrypoint_utils.h" #include "entrypoints/quick/quick_alloc_entrypoints.h" #include "gc/accounting/card_table-inl.h" diff --git a/runtime/trace.cc b/runtime/trace.cc index d9038b238e..f9d22df543 100644 --- a/runtime/trace.cc +++ b/runtime/trace.cc @@ -31,7 +31,7 @@ #include "class_linker.h" #include "common_throws.h" #include "debugger.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "entrypoints/quick/quick_entrypoints.h" #include "gc/scoped_gc_critical_section.h" #include "instrumentation.h" diff --git a/runtime/transaction.h b/runtime/transaction.h index 4e9cde521f..8539ebc1d6 100644 --- a/runtime/transaction.h +++ b/runtime/transaction.h @@ -20,7 +20,7 @@ #include "base/macros.h" #include "base/mutex.h" #include "base/value_object.h" -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "gc_root.h" #include "offsets.h" #include "primitive.h" diff --git a/runtime/transaction_test.cc b/runtime/transaction_test.cc index 0bad548ed8..02e61d76a1 100644 --- a/runtime/transaction_test.cc +++ b/runtime/transaction_test.cc @@ -20,7 +20,7 @@ #include "art_method-inl.h" #include "class_linker-inl.h" #include "common_runtime_test.h" -#include "dex_file.h" +#include "dex/dex_file.h" #include "mirror/array-inl.h" #include "scoped_thread_state_change-inl.h" diff --git a/runtime/type_lookup_table.cc b/runtime/type_lookup_table.cc index 4fab39cd73..6eb3d83631 100644 --- a/runtime/type_lookup_table.cc +++ b/runtime/type_lookup_table.cc @@ -20,7 +20,7 @@ #include <memory> #include "base/bit_utils.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "utf-inl.h" #include "utils.h" diff --git a/runtime/type_lookup_table.h b/runtime/type_lookup_table.h index 780b3804e0..6a6f47fba2 100644 --- a/runtime/type_lookup_table.h +++ b/runtime/type_lookup_table.h @@ -17,7 +17,7 @@ #ifndef ART_RUNTIME_TYPE_LOOKUP_TABLE_H_ #define ART_RUNTIME_TYPE_LOOKUP_TABLE_H_ -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "leb128.h" #include "utf.h" diff --git a/runtime/type_lookup_table_test.cc b/runtime/type_lookup_table_test.cc index 0f8f2880fe..d04652a8e7 100644 --- a/runtime/type_lookup_table_test.cc +++ b/runtime/type_lookup_table_test.cc @@ -19,7 +19,7 @@ #include <memory> #include "common_runtime_test.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "scoped_thread_state_change-inl.h" #include "utf-inl.h" diff --git a/runtime/type_reference.h b/runtime/type_reference.h index 10a67b1798..2b0b99f75e 100644 --- a/runtime/type_reference.h +++ b/runtime/type_reference.h @@ -21,7 +21,7 @@ #include <android-base/logging.h> -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "string_reference.h" namespace art { diff --git a/runtime/utils.cc b/runtime/utils.cc index f6533a7130..bd4175f5fd 100644 --- a/runtime/utils.cc +++ b/runtime/utils.cc @@ -30,7 +30,7 @@ #include "android-base/strings.h" #include "base/file_utils.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "os.h" #include "utf-inl.h" diff --git a/runtime/utils/dex_cache_arrays_layout.h b/runtime/utils/dex_cache_arrays_layout.h index fc0415957d..6f689f334a 100644 --- a/runtime/utils/dex_cache_arrays_layout.h +++ b/runtime/utils/dex_cache_arrays_layout.h @@ -17,8 +17,8 @@ #ifndef ART_RUNTIME_UTILS_DEX_CACHE_ARRAYS_LAYOUT_H_ #define ART_RUNTIME_UTILS_DEX_CACHE_ARRAYS_LAYOUT_H_ -#include "dex_file.h" -#include "dex_file_types.h" +#include "dex/dex_file.h" +#include "dex/dex_file_types.h" namespace art { diff --git a/runtime/vdex_file.cc b/runtime/vdex_file.cc index 6d37d0604e..a53556ffcc 100644 --- a/runtime/vdex_file.cc +++ b/runtime/vdex_file.cc @@ -25,8 +25,8 @@ #include "base/bit_utils.h" #include "base/stl_util.h" #include "base/unix_file/fd_file.h" -#include "dex_file.h" -#include "dex_file_loader.h" +#include "dex/dex_file.h" +#include "dex/dex_file_loader.h" #include "dex_to_dex_decompiler.h" namespace art { diff --git a/runtime/verifier/method_verifier.cc b/runtime/verifier/method_verifier.cc index 5e5e96bc7f..d977f2e4b7 100644 --- a/runtime/verifier/method_verifier.cc +++ b/runtime/verifier/method_verifier.cc @@ -31,10 +31,10 @@ #include "base/time_utils.h" #include "class_linker.h" #include "compiler_callbacks.h" -#include "dex_file-inl.h" -#include "dex_file_exception_helpers.h" -#include "dex_instruction-inl.h" -#include "dex_instruction_utils.h" +#include "dex/dex_file-inl.h" +#include "dex/dex_file_exception_helpers.h" +#include "dex/dex_instruction-inl.h" +#include "dex/dex_instruction_utils.h" #include "experimental_flags.h" #include "gc/accounting/card_table-inl.h" #include "handle_scope-inl.h" diff --git a/runtime/verifier/method_verifier.h b/runtime/verifier/method_verifier.h index b66433c370..cadf4eb0ba 100644 --- a/runtime/verifier/method_verifier.h +++ b/runtime/verifier/method_verifier.h @@ -25,9 +25,9 @@ #include "base/macros.h" #include "base/scoped_arena_containers.h" #include "base/value_object.h" -#include "code_item_accessors.h" -#include "dex_file.h" -#include "dex_file_types.h" +#include "dex/code_item_accessors.h" +#include "dex/dex_file.h" +#include "dex/dex_file_types.h" #include "handle.h" #include "instruction_flags.h" #include "method_reference.h" diff --git a/runtime/verifier/method_verifier_test.cc b/runtime/verifier/method_verifier_test.cc index d9874677e8..97c1b62abe 100644 --- a/runtime/verifier/method_verifier_test.cc +++ b/runtime/verifier/method_verifier_test.cc @@ -23,7 +23,7 @@ #include "class_linker-inl.h" #include "common_runtime_test.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "scoped_thread_state_change-inl.h" #include "utils.h" #include "verifier_enums.h" diff --git a/runtime/verifier/reg_type.cc b/runtime/verifier/reg_type.cc index 309c374fa8..7ebdd90fc0 100644 --- a/runtime/verifier/reg_type.cc +++ b/runtime/verifier/reg_type.cc @@ -22,7 +22,7 @@ #include "base/bit_vector-inl.h" #include "base/casts.h" #include "class_linker-inl.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "method_verifier.h" #include "mirror/class-inl.h" #include "mirror/class.h" diff --git a/runtime/verifier/reg_type_cache.cc b/runtime/verifier/reg_type_cache.cc index c68fa0f0d6..5564684c4f 100644 --- a/runtime/verifier/reg_type_cache.cc +++ b/runtime/verifier/reg_type_cache.cc @@ -25,7 +25,7 @@ #include "base/scoped_arena_allocator.h" #include "base/stl_util.h" #include "class_linker-inl.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "mirror/class-inl.h" #include "mirror/object-inl.h" #include "reg_type-inl.h" diff --git a/runtime/verifier/register_line.cc b/runtime/verifier/register_line.cc index 34c406e5b0..ea30e05487 100644 --- a/runtime/verifier/register_line.cc +++ b/runtime/verifier/register_line.cc @@ -18,7 +18,7 @@ #include "android-base/stringprintf.h" -#include "dex_instruction-inl.h" +#include "dex/dex_instruction-inl.h" #include "method_verifier-inl.h" #include "reg_type-inl.h" #include "register_line-inl.h" diff --git a/runtime/verifier/verifier_deps.cc b/runtime/verifier/verifier_deps.cc index 0481f24c45..7d8c5aae34 100644 --- a/runtime/verifier/verifier_deps.cc +++ b/runtime/verifier/verifier_deps.cc @@ -22,7 +22,7 @@ #include "art_method-inl.h" #include "base/stl_util.h" #include "compiler_callbacks.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "indenter.h" #include "leb128.h" #include "mirror/class-inl.h" diff --git a/runtime/verifier/verifier_deps.h b/runtime/verifier/verifier_deps.h index 4069a1188a..94441da7e2 100644 --- a/runtime/verifier/verifier_deps.h +++ b/runtime/verifier/verifier_deps.h @@ -23,7 +23,7 @@ #include "base/array_ref.h" #include "base/mutex.h" -#include "dex_file_types.h" +#include "dex/dex_file_types.h" #include "handle.h" #include "obj_ptr.h" #include "thread.h" diff --git a/test/117-nopatchoat/nopatchoat.cc b/test/117-nopatchoat/nopatchoat.cc index 2248fc4efd..7c382588a4 100644 --- a/test/117-nopatchoat/nopatchoat.cc +++ b/test/117-nopatchoat/nopatchoat.cc @@ -15,7 +15,7 @@ */ #include "class_linker.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "gc/heap.h" #include "gc/space/image_space.h" #include "mirror/class-inl.h" diff --git a/test/466-get-live-vreg/get_live_vreg_jni.cc b/test/466-get-live-vreg/get_live_vreg_jni.cc index 24792f1eed..aeb9e44541 100644 --- a/test/466-get-live-vreg/get_live_vreg_jni.cc +++ b/test/466-get-live-vreg/get_live_vreg_jni.cc @@ -16,7 +16,7 @@ #include "arch/context.h" #include "art_method-inl.h" -#include "code_item_accessors-inl.h" +#include "dex/code_item_accessors-inl.h" #include "jni.h" #include "oat_quick_method_header.h" #include "scoped_thread_state_change-inl.h" diff --git a/test/595-profile-saving/profile-saving.cc b/test/595-profile-saving/profile-saving.cc index 06e3fb48fc..b2af91e49f 100644 --- a/test/595-profile-saving/profile-saving.cc +++ b/test/595-profile-saving/profile-saving.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "dex_file.h" +#include "dex/dex_file.h" #include "art_method-inl.h" #include "jit/profile_compilation_info.h" diff --git a/test/664-aget-verifier/aget-verifier.cc b/test/664-aget-verifier/aget-verifier.cc index 41372adf02..4a263fae7a 100644 --- a/test/664-aget-verifier/aget-verifier.cc +++ b/test/664-aget-verifier/aget-verifier.cc @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "dex_file.h" +#include "dex/dex_file.h" #include "art_method-inl.h" #include "jni.h" diff --git a/test/983-source-transform-verify/source_transform.cc b/test/983-source-transform-verify/source_transform.cc index 831e01ca32..55dc603c4f 100644 --- a/test/983-source-transform-verify/source_transform.cc +++ b/test/983-source-transform-verify/source_transform.cc @@ -27,10 +27,10 @@ #include "base/macros.h" #include "bytecode_utils.h" -#include "code_item_accessors-inl.h" -#include "dex_file.h" -#include "dex_file_loader.h" -#include "dex_instruction.h" +#include "dex/code_item_accessors-inl.h" +#include "dex/dex_file.h" +#include "dex/dex_file_loader.h" +#include "dex/dex_instruction.h" #include "jit/jit.h" #include "native_stack_dump.h" #include "runtime.h" diff --git a/test/common/runtime_state.cc b/test/common/runtime_state.cc index 1eed80ec91..22c51063fb 100644 --- a/test/common/runtime_state.cc +++ b/test/common/runtime_state.cc @@ -21,7 +21,7 @@ #include "art_method-inl.h" #include "base/enums.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "instrumentation.h" #include "jit/jit.h" #include "jit/jit_code_cache.h" diff --git a/test/common/stack_inspect.cc b/test/common/stack_inspect.cc index 046b1fbcdd..fd6273769b 100644 --- a/test/common/stack_inspect.cc +++ b/test/common/stack_inspect.cc @@ -19,7 +19,7 @@ #include <android-base/logging.h> #include "base/mutex.h" -#include "dex_file-inl.h" +#include "dex/dex_file-inl.h" #include "jni_internal.h" #include "mirror/class-inl.h" #include "nth_caller_visitor.h" diff --git a/tools/titrace/instruction_decoder.cc b/tools/titrace/instruction_decoder.cc index bc4660b497..d8fb713414 100644 --- a/tools/titrace/instruction_decoder.cc +++ b/tools/titrace/instruction_decoder.cc @@ -15,7 +15,7 @@ #include "instruction_decoder.h" -#include "dex_instruction_list.h" +#include "dex/dex_instruction_list.h" #include <android-base/logging.h> |