From c5bfa97c47d656b76f297af8abcd5f7502987399 Mon Sep 17 00:00:00 2001 From: David Srbecky Date: Fri, 5 Feb 2016 15:49:10 +0000 Subject: Split elf_writer_debug.cc to several files. Refactoring only. The file has grown significantly over time, and it is time to split it so it can be better managed. Change-Id: Idce0231718add722292f4701df353d5baf31de5f --- compiler/optimizing/optimizing_compiler.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'compiler/optimizing/optimizing_compiler.cc') diff --git a/compiler/optimizing/optimizing_compiler.cc b/compiler/optimizing/optimizing_compiler.cc index d9f993db61..dcd8e7d216 100644 --- a/compiler/optimizing/optimizing_compiler.cc +++ b/compiler/optimizing/optimizing_compiler.cc @@ -45,7 +45,7 @@ #include "compiler.h" #include "constant_folding.h" #include "dead_code_elimination.h" -#include "debug/elf_writer_debug.h" +#include "debug/elf_debug_writer.h" #include "debug/method_debug_info.h" #include "dex/quick/dex_file_to_method_inliner_map.h" #include "dex/verification_results.h" @@ -932,7 +932,7 @@ bool OptimizingCompiler::JitCompile(Thread* self, ArrayRef(), // native_gc_map. ArrayRef(*codegen->GetAssembler()->cfi().data()), ArrayRef()); - dwarf::MethodDebugInfo method_debug_info { + debug::MethodDebugInfo method_debug_info { dex_file, class_def_idx, method_idx, @@ -943,7 +943,7 @@ bool OptimizingCompiler::JitCompile(Thread* self, code_address + code_allocator.GetSize(), &compiled_method }; - ArrayRef elf_file = dwarf::WriteDebugElfFileForMethod(method_debug_info); + ArrayRef elf_file = debug::WriteDebugElfFileForMethod(method_debug_info); CreateJITCodeEntryForAddress(code_address, std::unique_ptr(elf_file.data()), elf_file.size()); -- cgit v1.2.3-59-g8ed1b