blob: 16f163b085ecd99b31797a17a3e4e2d73e69e456 [file] [log] [blame]
David Srbeckyc5bfa972016-02-05 15:49:10 +00001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "elf_debug_writer.h"
18
David Srbeckybe50f9a2018-12-05 10:48:42 +000019#include <type_traits>
David Srbecky56da23c2017-09-08 19:59:15 +010020#include <unordered_map>
David Srbeckybe50f9a2018-12-05 10:48:42 +000021#include <vector>
David Srbeckyc5bfa972016-02-05 15:49:10 +000022
David Brazdild9c90372016-09-14 16:53:55 +010023#include "base/array_ref.h"
David Srbecky0b21e412018-12-05 13:24:06 +000024#include "base/stl_util.h"
David Srbeckyc5bfa972016-02-05 15:49:10 +000025#include "debug/dwarf/dwarf_constants.h"
26#include "debug/elf_compilation_unit.h"
27#include "debug/elf_debug_frame_writer.h"
28#include "debug/elf_debug_info_writer.h"
29#include "debug/elf_debug_line_writer.h"
30#include "debug/elf_debug_loc_writer.h"
David Srbecky0b21e412018-12-05 13:24:06 +000031#include "debug/elf_debug_reader.h"
David Srbeckyc5bfa972016-02-05 15:49:10 +000032#include "debug/elf_symtab_writer.h"
33#include "debug/method_debug_info.h"
David Srbecky154c57f2018-06-03 12:00:27 +010034#include "debug/xz_utils.h"
David Srbeckybe50f9a2018-12-05 10:48:42 +000035#include "elf.h"
Vladimir Marko74527972016-11-29 15:57:32 +000036#include "linker/elf_builder.h"
David Srbeckyc5bfa972016-02-05 15:49:10 +000037#include "linker/vector_output_stream.h"
Andreas Gamped4901292017-05-30 18:41:34 -070038#include "oat.h"
David Srbeckyc5bfa972016-02-05 15:49:10 +000039
40namespace art {
41namespace debug {
42
David Srbeckybe50f9a2018-12-05 10:48:42 +000043using ElfRuntimeTypes = std::conditional<sizeof(void*) == 4, ElfTypes32, ElfTypes64>::type;
44
David Srbeckyc5bfa972016-02-05 15:49:10 +000045template <typename ElfTypes>
Vladimir Marko74527972016-11-29 15:57:32 +000046void WriteDebugInfo(linker::ElfBuilder<ElfTypes>* builder,
David Srbecky32210b92017-12-04 14:39:21 +000047 const DebugInfo& debug_info,
David Srbeckyc5bfa972016-02-05 15:49:10 +000048 dwarf::CFIFormat cfi_format,
49 bool write_oat_patches) {
David Srbecky09c2a6b2016-03-11 17:11:44 +000050 // Write .strtab and .symtab.
Andreas Gampe3db70682018-12-26 15:12:03 -080051 WriteDebugSymbols(builder, /* mini-debug-info= */ false, debug_info);
David Srbeckyc5bfa972016-02-05 15:49:10 +000052
David Srbecky09c2a6b2016-03-11 17:11:44 +000053 // Write .debug_frame.
David Srbecky32210b92017-12-04 14:39:21 +000054 WriteCFISection(builder, debug_info.compiled_methods, cfi_format, write_oat_patches);
David Srbecky09c2a6b2016-03-11 17:11:44 +000055
David Srbecky56da23c2017-09-08 19:59:15 +010056 // Group the methods into compilation units based on class.
Andreas Gampe3f1dcd32018-12-28 09:39:56 -080057 std::unordered_map<const dex::ClassDef*, ElfCompilationUnit> class_to_compilation_unit;
David Srbecky32210b92017-12-04 14:39:21 +000058 for (const MethodDebugInfo& mi : debug_info.compiled_methods) {
David Srbecky09c2a6b2016-03-11 17:11:44 +000059 if (mi.dex_file != nullptr) {
60 auto& dex_class_def = mi.dex_file->GetClassDef(mi.class_def_index);
David Srbecky56da23c2017-09-08 19:59:15 +010061 ElfCompilationUnit& cu = class_to_compilation_unit[&dex_class_def];
David Srbecky09c2a6b2016-03-11 17:11:44 +000062 cu.methods.push_back(&mi);
63 // All methods must have the same addressing mode otherwise the min/max below does not work.
64 DCHECK_EQ(cu.methods.front()->is_code_address_text_relative, mi.is_code_address_text_relative);
65 cu.is_code_address_text_relative = mi.is_code_address_text_relative;
66 cu.code_address = std::min(cu.code_address, mi.code_address);
67 cu.code_end = std::max(cu.code_end, mi.code_address + mi.code_size);
David Srbeckyc5bfa972016-02-05 15:49:10 +000068 }
David Srbeckyc5bfa972016-02-05 15:49:10 +000069 }
70
David Srbecky56da23c2017-09-08 19:59:15 +010071 // Sort compilation units to make the compiler output deterministic.
72 std::vector<ElfCompilationUnit> compilation_units;
73 compilation_units.reserve(class_to_compilation_unit.size());
74 for (auto& it : class_to_compilation_unit) {
75 // The .debug_line section requires the methods to be sorted by code address.
76 std::stable_sort(it.second.methods.begin(),
77 it.second.methods.end(),
78 [](const MethodDebugInfo* a, const MethodDebugInfo* b) {
79 return a->code_address < b->code_address;
80 });
81 compilation_units.push_back(std::move(it.second));
82 }
83 std::sort(compilation_units.begin(),
84 compilation_units.end(),
85 [](ElfCompilationUnit& a, ElfCompilationUnit& b) {
86 // Sort by index of the first method within the method_infos array.
87 // This assumes that the order of method_infos is deterministic.
88 // Code address is not good for sorting due to possible duplicates.
89 return a.methods.front() < b.methods.front();
90 });
91
David Srbeckyc5bfa972016-02-05 15:49:10 +000092 // Write .debug_line section.
93 if (!compilation_units.empty()) {
94 ElfDebugLineWriter<ElfTypes> line_writer(builder);
95 line_writer.Start();
96 for (auto& compilation_unit : compilation_units) {
97 line_writer.WriteCompilationUnit(compilation_unit);
98 }
99 line_writer.End(write_oat_patches);
100 }
101
102 // Write .debug_info section.
103 if (!compilation_units.empty()) {
104 ElfDebugInfoWriter<ElfTypes> info_writer(builder);
105 info_writer.Start();
106 for (const auto& compilation_unit : compilation_units) {
107 ElfCompilationUnitWriter<ElfTypes> cu_writer(&info_writer);
108 cu_writer.Write(compilation_unit);
109 }
110 info_writer.End(write_oat_patches);
111 }
112}
113
David Srbecky154c57f2018-06-03 12:00:27 +0100114template <typename ElfTypes>
115static std::vector<uint8_t> MakeMiniDebugInfoInternal(
116 InstructionSet isa,
117 const InstructionSetFeatures* features,
118 typename ElfTypes::Addr text_section_address,
119 size_t text_section_size,
120 typename ElfTypes::Addr dex_section_address,
121 size_t dex_section_size,
122 const DebugInfo& debug_info) {
123 std::vector<uint8_t> buffer;
124 buffer.reserve(KB);
125 linker::VectorOutputStream out("Mini-debug-info ELF file", &buffer);
126 std::unique_ptr<linker::ElfBuilder<ElfTypes>> builder(
127 new linker::ElfBuilder<ElfTypes>(isa, features, &out));
Andreas Gampe3db70682018-12-26 15:12:03 -0800128 builder->Start(/* write_program_headers= */ false);
David Srbecky154c57f2018-06-03 12:00:27 +0100129 // Mirror ELF sections as NOBITS since the added symbols will reference them.
130 builder->GetText()->AllocateVirtualMemory(text_section_address, text_section_size);
131 if (dex_section_size != 0) {
132 builder->GetDex()->AllocateVirtualMemory(dex_section_address, dex_section_size);
133 }
Andreas Gampe3db70682018-12-26 15:12:03 -0800134 WriteDebugSymbols(builder.get(), /* mini-debug-info= */ true, debug_info);
David Srbecky154c57f2018-06-03 12:00:27 +0100135 WriteCFISection(builder.get(),
136 debug_info.compiled_methods,
137 dwarf::DW_DEBUG_FRAME_FORMAT,
Andreas Gampe3db70682018-12-26 15:12:03 -0800138 /* write_oat_patches= */ false);
David Srbecky154c57f2018-06-03 12:00:27 +0100139 builder->End();
140 CHECK(builder->Good());
141 std::vector<uint8_t> compressed_buffer;
142 compressed_buffer.reserve(buffer.size() / 4);
David Srbeckycf1af732018-12-04 14:31:32 +0000143 XzCompress(ArrayRef<const uint8_t>(buffer), &compressed_buffer);
David Srbecky154c57f2018-06-03 12:00:27 +0100144 return compressed_buffer;
145}
146
David Srbeckyc5bfa972016-02-05 15:49:10 +0000147std::vector<uint8_t> MakeMiniDebugInfo(
148 InstructionSet isa,
David Srbecky5d811202016-03-08 13:21:22 +0000149 const InstructionSetFeatures* features,
David Srbecky32210b92017-12-04 14:39:21 +0000150 uint64_t text_section_address,
151 size_t text_section_size,
152 uint64_t dex_section_address,
153 size_t dex_section_size,
154 const DebugInfo& debug_info) {
David Srbeckyc5bfa972016-02-05 15:49:10 +0000155 if (Is64BitInstructionSet(isa)) {
David Srbecky5d811202016-03-08 13:21:22 +0000156 return MakeMiniDebugInfoInternal<ElfTypes64>(isa,
157 features,
David Srbecky32210b92017-12-04 14:39:21 +0000158 text_section_address,
159 text_section_size,
160 dex_section_address,
161 dex_section_size,
162 debug_info);
David Srbeckyc5bfa972016-02-05 15:49:10 +0000163 } else {
David Srbecky5d811202016-03-08 13:21:22 +0000164 return MakeMiniDebugInfoInternal<ElfTypes32>(isa,
165 features,
David Srbecky32210b92017-12-04 14:39:21 +0000166 text_section_address,
167 text_section_size,
168 dex_section_address,
169 dex_section_size,
170 debug_info);
David Srbeckyc5bfa972016-02-05 15:49:10 +0000171 }
172}
173
David Srbeckybe50f9a2018-12-05 10:48:42 +0000174std::vector<uint8_t> MakeElfFileForJIT(
David Srbeckyfe736b72016-03-09 11:44:44 +0000175 InstructionSet isa,
David Srbecky5d811202016-03-08 13:21:22 +0000176 const InstructionSetFeatures* features,
David Srbeckyf4886df2017-12-11 16:06:29 +0000177 bool mini_debug_info,
David Srbeckybe50f9a2018-12-05 10:48:42 +0000178 const MethodDebugInfo& method_info) {
179 using ElfTypes = ElfRuntimeTypes;
180 CHECK_EQ(sizeof(ElfTypes::Addr), static_cast<size_t>(GetInstructionSetPointerSize(isa)));
181 CHECK_EQ(method_info.is_code_address_text_relative, false);
David Srbecky32210b92017-12-04 14:39:21 +0000182 DebugInfo debug_info{};
David Srbeckybe50f9a2018-12-05 10:48:42 +0000183 debug_info.compiled_methods = ArrayRef<const MethodDebugInfo>(&method_info, 1);
David Srbeckyc5bfa972016-02-05 15:49:10 +0000184 std::vector<uint8_t> buffer;
185 buffer.reserve(KB);
Vladimir Marko74527972016-11-29 15:57:32 +0000186 linker::VectorOutputStream out("Debug ELF file", &buffer);
187 std::unique_ptr<linker::ElfBuilder<ElfTypes>> builder(
188 new linker::ElfBuilder<ElfTypes>(isa, features, &out));
David Srbeckyc5bfa972016-02-05 15:49:10 +0000189 // No program headers since the ELF file is not linked and has no allocated sections.
Andreas Gampe3db70682018-12-26 15:12:03 -0800190 builder->Start(/* write_program_headers= */ false);
David Srbeckybe50f9a2018-12-05 10:48:42 +0000191 builder->GetText()->AllocateVirtualMemory(method_info.code_address, method_info.code_size);
David Srbeckyf4886df2017-12-11 16:06:29 +0000192 if (mini_debug_info) {
David Srbeckybe50f9a2018-12-05 10:48:42 +0000193 // The compression is great help for multiple methods but it is not worth it for a
194 // single method due to the overheads so skip the compression here for performance.
Andreas Gampe3db70682018-12-26 15:12:03 -0800195 WriteDebugSymbols(builder.get(), /* mini-debug-info= */ true, debug_info);
David Srbeckybe50f9a2018-12-05 10:48:42 +0000196 WriteCFISection(builder.get(),
197 debug_info.compiled_methods,
198 dwarf::DW_DEBUG_FRAME_FORMAT,
Andreas Gampe3db70682018-12-26 15:12:03 -0800199 /* write_oat_patches= */ false);
David Srbeckyf4886df2017-12-11 16:06:29 +0000200 } else {
David Srbeckyf4886df2017-12-11 16:06:29 +0000201 WriteDebugInfo(builder.get(),
David Srbecky32210b92017-12-04 14:39:21 +0000202 debug_info,
David Srbeckyf4886df2017-12-11 16:06:29 +0000203 dwarf::DW_DEBUG_FRAME_FORMAT,
Andreas Gampe3db70682018-12-26 15:12:03 -0800204 /* write_oat_patches= */ false);
David Srbeckyf4886df2017-12-11 16:06:29 +0000205 }
David Srbeckyc5bfa972016-02-05 15:49:10 +0000206 builder->End();
207 CHECK(builder->Good());
David Srbecky0b21e412018-12-05 13:24:06 +0000208 // Verify the ELF file by reading it back using the trivial reader.
209 if (kIsDebugBuild) {
210 using Elf_Sym = typename ElfTypes::Sym;
211 using Elf_Addr = typename ElfTypes::Addr;
212 size_t num_syms = 0;
213 size_t num_cfis = 0;
214 ReadElfSymbols<ElfTypes>(
215 buffer.data(),
216 [&](Elf_Sym sym, const char*) {
217 DCHECK_EQ(sym.st_value, method_info.code_address + CompiledMethod::CodeDelta(isa));
218 DCHECK_EQ(sym.st_size, method_info.code_size);
219 num_syms++;
220 },
221 [&](Elf_Addr addr, Elf_Addr size, ArrayRef<const uint8_t> opcodes) {
222 DCHECK_EQ(addr, method_info.code_address);
223 DCHECK_EQ(size, method_info.code_size);
224 DCHECK_GE(opcodes.size(), method_info.cfi.size());
225 DCHECK_EQ(memcmp(opcodes.data(), method_info.cfi.data(), method_info.cfi.size()), 0);
226 num_cfis++;
227 });
228 DCHECK_EQ(num_syms, 1u);
229 DCHECK_EQ(num_cfis, 1u);
230 }
Vladimir Marko93205e32016-04-13 11:59:46 +0100231 return buffer;
David Srbeckyc5bfa972016-02-05 15:49:10 +0000232}
233
David Srbecky0b21e412018-12-05 13:24:06 +0000234// Combine several mini-debug-info ELF files into one, while filtering some symbols.
235std::vector<uint8_t> PackElfFileForJIT(
236 InstructionSet isa,
237 const InstructionSetFeatures* features,
238 std::vector<const uint8_t*>& added_elf_files,
239 std::vector<const void*>& removed_symbols,
240 /*out*/ size_t* num_symbols) {
241 using ElfTypes = ElfRuntimeTypes;
242 using Elf_Addr = typename ElfTypes::Addr;
243 using Elf_Sym = typename ElfTypes::Sym;
244 CHECK_EQ(sizeof(Elf_Addr), static_cast<size_t>(GetInstructionSetPointerSize(isa)));
245 const bool is64bit = Is64BitInstructionSet(isa);
246 auto is_removed_symbol = [&removed_symbols](Elf_Addr addr) {
247 const void* code_ptr = reinterpret_cast<const void*>(addr);
248 return std::binary_search(removed_symbols.begin(), removed_symbols.end(), code_ptr);
249 };
250 uint64_t min_address = std::numeric_limits<uint64_t>::max();
251 uint64_t max_address = 0;
252
253 // Produce the inner ELF file.
254 // It will contain the symbols (.symtab) and unwind information (.debug_frame).
255 std::vector<uint8_t> inner_elf_file;
256 {
257 inner_elf_file.reserve(1 * KB); // Approximate size of ELF file with a single symbol.
258 linker::VectorOutputStream out("Mini-debug-info ELF file for JIT", &inner_elf_file);
259 std::unique_ptr<linker::ElfBuilder<ElfTypes>> builder(
260 new linker::ElfBuilder<ElfTypes>(isa, features, &out));
261 builder->Start(/*write_program_headers=*/ false);
262 auto* text = builder->GetText();
263 auto* strtab = builder->GetStrTab();
264 auto* symtab = builder->GetSymTab();
265 auto* debug_frame = builder->GetDebugFrame();
266 std::deque<Elf_Sym> symbols;
267 std::vector<uint8_t> debug_frame_buffer;
268 WriteCIE(isa, dwarf::DW_DEBUG_FRAME_FORMAT, &debug_frame_buffer);
269
270 // Write symbols names. All other data is buffered.
271 strtab->Start();
272 strtab->Write(""); // strtab should start with empty string.
273 for (const uint8_t* added_elf_file : added_elf_files) {
274 ReadElfSymbols<ElfTypes>(
275 added_elf_file,
276 [&](Elf_Sym sym, const char* name) {
277 if (is_removed_symbol(sym.st_value)) {
278 return;
279 }
280 sym.st_name = strtab->Write(name);
281 symbols.push_back(sym);
282 min_address = std::min<uint64_t>(min_address, sym.st_value);
283 max_address = std::max<uint64_t>(max_address, sym.st_value + sym.st_size);
284 },
285 [&](Elf_Addr addr, Elf_Addr size, ArrayRef<const uint8_t> opcodes) {
286 if (is_removed_symbol(addr)) {
287 return;
288 }
289 WriteFDE(is64bit,
290 /*section_address=*/ 0,
291 /*cie_address=*/ 0,
292 addr,
293 size,
294 opcodes,
295 dwarf::DW_DEBUG_FRAME_FORMAT,
296 debug_frame_buffer.size(),
297 &debug_frame_buffer,
298 /*patch_locations=*/ nullptr);
299 });
300 }
301 strtab->End();
302
303 // Create .text covering the code range. Needed for gdb to find the symbols.
304 if (max_address > min_address) {
305 text->AllocateVirtualMemory(min_address, max_address - min_address);
306 }
307
308 // Add the symbols.
309 *num_symbols = symbols.size();
310 for (; !symbols.empty(); symbols.pop_front()) {
311 symtab->Add(symbols.front(), text);
312 }
313 symtab->WriteCachedSection();
314
315 // Add the CFI/unwind section.
316 debug_frame->Start();
317 debug_frame->WriteFully(debug_frame_buffer.data(), debug_frame_buffer.size());
318 debug_frame->End();
319
320 builder->End();
321 CHECK(builder->Good());
322 }
323
324 // Produce the outer ELF file.
325 // It contains only the inner ELF file compressed as .gnu_debugdata section.
326 // This extra wrapping is not necessary but the compression saves space.
327 std::vector<uint8_t> outer_elf_file;
328 {
329 std::vector<uint8_t> gnu_debugdata;
330 gnu_debugdata.reserve(inner_elf_file.size() / 4);
331 XzCompress(ArrayRef<const uint8_t>(inner_elf_file), &gnu_debugdata);
332
333 outer_elf_file.reserve(KB + gnu_debugdata.size());
334 linker::VectorOutputStream out("Mini-debug-info ELF file for JIT", &outer_elf_file);
335 std::unique_ptr<linker::ElfBuilder<ElfTypes>> builder(
336 new linker::ElfBuilder<ElfTypes>(isa, features, &out));
337 builder->Start(/*write_program_headers=*/ false);
338 if (max_address > min_address) {
339 builder->GetText()->AllocateVirtualMemory(min_address, max_address - min_address);
340 }
341 builder->WriteSection(".gnu_debugdata", &gnu_debugdata);
342 builder->End();
343 CHECK(builder->Good());
344 }
345
346 return outer_elf_file;
347}
348
David Srbeckybe50f9a2018-12-05 10:48:42 +0000349std::vector<uint8_t> WriteDebugElfFileForClasses(
David Srbeckyfe736b72016-03-09 11:44:44 +0000350 InstructionSet isa,
David Srbecky5d811202016-03-08 13:21:22 +0000351 const InstructionSetFeatures* features,
352 const ArrayRef<mirror::Class*>& types)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700353 REQUIRES_SHARED(Locks::mutator_lock_) {
David Srbeckybe50f9a2018-12-05 10:48:42 +0000354 using ElfTypes = ElfRuntimeTypes;
355 CHECK_EQ(sizeof(ElfTypes::Addr), static_cast<size_t>(GetInstructionSetPointerSize(isa)));
David Srbeckyc5bfa972016-02-05 15:49:10 +0000356 std::vector<uint8_t> buffer;
357 buffer.reserve(KB);
Vladimir Marko74527972016-11-29 15:57:32 +0000358 linker::VectorOutputStream out("Debug ELF file", &buffer);
359 std::unique_ptr<linker::ElfBuilder<ElfTypes>> builder(
360 new linker::ElfBuilder<ElfTypes>(isa, features, &out));
David Srbeckyc5bfa972016-02-05 15:49:10 +0000361 // No program headers since the ELF file is not linked and has no allocated sections.
Andreas Gampe3db70682018-12-26 15:12:03 -0800362 builder->Start(/* write_program_headers= */ false);
David Srbeckyc5bfa972016-02-05 15:49:10 +0000363 ElfDebugInfoWriter<ElfTypes> info_writer(builder.get());
364 info_writer.Start();
365 ElfCompilationUnitWriter<ElfTypes> cu_writer(&info_writer);
366 cu_writer.Write(types);
Andreas Gampe3db70682018-12-26 15:12:03 -0800367 info_writer.End(/* write_oat_patches= */ false);
David Srbeckyc5bfa972016-02-05 15:49:10 +0000368
369 builder->End();
370 CHECK(builder->Good());
Vladimir Marko93205e32016-04-13 11:59:46 +0100371 return buffer;
David Srbeckyc5bfa972016-02-05 15:49:10 +0000372}
373
David Srbeckyc5bfa972016-02-05 15:49:10 +0000374// Explicit instantiations
375template void WriteDebugInfo<ElfTypes32>(
Vladimir Marko74527972016-11-29 15:57:32 +0000376 linker::ElfBuilder<ElfTypes32>* builder,
David Srbecky32210b92017-12-04 14:39:21 +0000377 const DebugInfo& debug_info,
David Srbeckyc5bfa972016-02-05 15:49:10 +0000378 dwarf::CFIFormat cfi_format,
379 bool write_oat_patches);
380template void WriteDebugInfo<ElfTypes64>(
Vladimir Marko74527972016-11-29 15:57:32 +0000381 linker::ElfBuilder<ElfTypes64>* builder,
David Srbecky32210b92017-12-04 14:39:21 +0000382 const DebugInfo& debug_info,
David Srbeckyc5bfa972016-02-05 15:49:10 +0000383 dwarf::CFIFormat cfi_format,
384 bool write_oat_patches);
385
386} // namespace debug
387} // namespace art