diff options
author | 2016-02-05 13:34:46 +0000 | |
---|---|---|
committer | 2016-02-08 11:33:50 +0000 | |
commit | 4fda4eb799c95be266f52aaf3461a440ea86b841 (patch) | |
tree | 54a7e56b5633caf2b868f6028010b488eb1923ce /compiler/optimizing/optimizing_compiler.cc | |
parent | 3c258f4d7a6492af733a9351ba430d876a3e5ccf (diff) |
Move code related to debug info generation to its own directory.
debug/dwarf/ contains helper classes which hide the details
of the DWARF file format. It acts as independent DWARF library.
debug/ contains ART-specific code which generates ELF debug
sections (which includes non-DWARF sections like .symtab).
Change-Id: Id351f604e4e64be2ca395a78324ea02e30481497
Diffstat (limited to 'compiler/optimizing/optimizing_compiler.cc')
-rw-r--r-- | compiler/optimizing/optimizing_compiler.cc | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/compiler/optimizing/optimizing_compiler.cc b/compiler/optimizing/optimizing_compiler.cc index bdc664b3eb..c8bef8115f 100644 --- a/compiler/optimizing/optimizing_compiler.cc +++ b/compiler/optimizing/optimizing_compiler.cc @@ -45,15 +45,14 @@ #include "compiler.h" #include "constant_folding.h" #include "dead_code_elimination.h" +#include "debug/elf_writer_debug.h" +#include "debug/method_debug_info.h" #include "dex/quick/dex_file_to_method_inliner_map.h" -#include "dex/verified_method.h" #include "dex/verification_results.h" -#include "driver/compiler_driver.h" +#include "dex/verified_method.h" #include "driver/compiler_driver-inl.h" #include "driver/compiler_options.h" #include "driver/dex_compilation_unit.h" -#include "dwarf/method_debug_info.h" -#include "elf_writer_debug.h" #include "elf_writer_quick.h" #include "graph_checker.h" #include "graph_visualizer.h" @@ -64,20 +63,20 @@ #include "intrinsics.h" #include "jit/debugger_interface.h" #include "jit/jit_code_cache.h" -#include "licm.h" #include "jni/quick/jni_compiler.h" +#include "licm.h" #include "load_store_elimination.h" #include "nodes.h" +#include "oat_quick_method_header.h" #include "prepare_for_register_allocation.h" #include "reference_type_propagation.h" #include "register_allocator.h" -#include "oat_quick_method_header.h" #include "select_generator.h" #include "sharpening.h" #include "side_effects_analysis.h" #include "ssa_builder.h" -#include "ssa_phi_elimination.h" #include "ssa_liveness_analysis.h" +#include "ssa_phi_elimination.h" #include "utils/assembler.h" #include "verifier/method_verifier.h" |