blob: 78c02b64f07d5cb5b4b8616b5079e3ff8425fc6f [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 Srbecky7370d922019-02-12 14:00:30 +000047 const DebugInfo& debug_info) {
David Srbecky09c2a6b2016-03-11 17:11:44 +000048 // Write .strtab and .symtab.
Andreas Gampe3db70682018-12-26 15:12:03 -080049 WriteDebugSymbols(builder, /* mini-debug-info= */ false, debug_info);
David Srbeckyc5bfa972016-02-05 15:49:10 +000050
David Srbecky09c2a6b2016-03-11 17:11:44 +000051 // Write .debug_frame.
David Srbecky7370d922019-02-12 14:00:30 +000052 WriteCFISection(builder, debug_info.compiled_methods);
David Srbecky09c2a6b2016-03-11 17:11:44 +000053
David Srbecky56da23c2017-09-08 19:59:15 +010054 // Group the methods into compilation units based on class.
Andreas Gampe3f1dcd32018-12-28 09:39:56 -080055 std::unordered_map<const dex::ClassDef*, ElfCompilationUnit> class_to_compilation_unit;
David Srbecky32210b92017-12-04 14:39:21 +000056 for (const MethodDebugInfo& mi : debug_info.compiled_methods) {
David Srbecky09c2a6b2016-03-11 17:11:44 +000057 if (mi.dex_file != nullptr) {
58 auto& dex_class_def = mi.dex_file->GetClassDef(mi.class_def_index);
David Srbecky56da23c2017-09-08 19:59:15 +010059 ElfCompilationUnit& cu = class_to_compilation_unit[&dex_class_def];
David Srbecky09c2a6b2016-03-11 17:11:44 +000060 cu.methods.push_back(&mi);
61 // All methods must have the same addressing mode otherwise the min/max below does not work.
62 DCHECK_EQ(cu.methods.front()->is_code_address_text_relative, mi.is_code_address_text_relative);
63 cu.is_code_address_text_relative = mi.is_code_address_text_relative;
64 cu.code_address = std::min(cu.code_address, mi.code_address);
65 cu.code_end = std::max(cu.code_end, mi.code_address + mi.code_size);
David Srbeckyc5bfa972016-02-05 15:49:10 +000066 }
David Srbeckyc5bfa972016-02-05 15:49:10 +000067 }
68
David Srbecky56da23c2017-09-08 19:59:15 +010069 // Sort compilation units to make the compiler output deterministic.
70 std::vector<ElfCompilationUnit> compilation_units;
71 compilation_units.reserve(class_to_compilation_unit.size());
72 for (auto& it : class_to_compilation_unit) {
73 // The .debug_line section requires the methods to be sorted by code address.
74 std::stable_sort(it.second.methods.begin(),
75 it.second.methods.end(),
76 [](const MethodDebugInfo* a, const MethodDebugInfo* b) {
77 return a->code_address < b->code_address;
78 });
79 compilation_units.push_back(std::move(it.second));
80 }
81 std::sort(compilation_units.begin(),
82 compilation_units.end(),
83 [](ElfCompilationUnit& a, ElfCompilationUnit& b) {
84 // Sort by index of the first method within the method_infos array.
85 // This assumes that the order of method_infos is deterministic.
86 // Code address is not good for sorting due to possible duplicates.
87 return a.methods.front() < b.methods.front();
88 });
89
David Srbeckyc5bfa972016-02-05 15:49:10 +000090 // Write .debug_line section.
91 if (!compilation_units.empty()) {
92 ElfDebugLineWriter<ElfTypes> line_writer(builder);
93 line_writer.Start();
94 for (auto& compilation_unit : compilation_units) {
95 line_writer.WriteCompilationUnit(compilation_unit);
96 }
David Srbecky7370d922019-02-12 14:00:30 +000097 line_writer.End();
David Srbeckyc5bfa972016-02-05 15:49:10 +000098 }
99
100 // Write .debug_info section.
101 if (!compilation_units.empty()) {
102 ElfDebugInfoWriter<ElfTypes> info_writer(builder);
103 info_writer.Start();
104 for (const auto& compilation_unit : compilation_units) {
105 ElfCompilationUnitWriter<ElfTypes> cu_writer(&info_writer);
106 cu_writer.Write(compilation_unit);
107 }
David Srbecky7370d922019-02-12 14:00:30 +0000108 info_writer.End();
David Srbeckyc5bfa972016-02-05 15:49:10 +0000109 }
110}
111
David Srbecky154c57f2018-06-03 12:00:27 +0100112template <typename ElfTypes>
113static std::vector<uint8_t> MakeMiniDebugInfoInternal(
114 InstructionSet isa,
115 const InstructionSetFeatures* features,
116 typename ElfTypes::Addr text_section_address,
117 size_t text_section_size,
118 typename ElfTypes::Addr dex_section_address,
119 size_t dex_section_size,
120 const DebugInfo& debug_info) {
121 std::vector<uint8_t> buffer;
122 buffer.reserve(KB);
123 linker::VectorOutputStream out("Mini-debug-info ELF file", &buffer);
124 std::unique_ptr<linker::ElfBuilder<ElfTypes>> builder(
125 new linker::ElfBuilder<ElfTypes>(isa, features, &out));
Andreas Gampe3db70682018-12-26 15:12:03 -0800126 builder->Start(/* write_program_headers= */ false);
David Srbecky154c57f2018-06-03 12:00:27 +0100127 // Mirror ELF sections as NOBITS since the added symbols will reference them.
David Srbecky49b2b202019-02-01 13:35:48 +0000128 if (text_section_size != 0) {
129 builder->GetText()->AllocateVirtualMemory(text_section_address, text_section_size);
130 }
David Srbecky154c57f2018-06-03 12:00:27 +0100131 if (dex_section_size != 0) {
132 builder->GetDex()->AllocateVirtualMemory(dex_section_address, dex_section_size);
133 }
David Srbecky49b2b202019-02-01 13:35:48 +0000134 if (!debug_info.Empty()) {
135 WriteDebugSymbols(builder.get(), /* mini-debug-info= */ true, debug_info);
136 }
137 if (!debug_info.compiled_methods.empty()) {
David Srbecky7370d922019-02-12 14:00:30 +0000138 WriteCFISection(builder.get(), debug_info.compiled_methods);
David Srbecky49b2b202019-02-01 13:35:48 +0000139 }
David Srbecky154c57f2018-06-03 12:00:27 +0100140 builder->End();
141 CHECK(builder->Good());
142 std::vector<uint8_t> compressed_buffer;
143 compressed_buffer.reserve(buffer.size() / 4);
David Srbeckycf1af732018-12-04 14:31:32 +0000144 XzCompress(ArrayRef<const uint8_t>(buffer), &compressed_buffer);
David Srbecky154c57f2018-06-03 12:00:27 +0100145 return compressed_buffer;
146}
147
David Srbeckyc5bfa972016-02-05 15:49:10 +0000148std::vector<uint8_t> MakeMiniDebugInfo(
149 InstructionSet isa,
David Srbecky5d811202016-03-08 13:21:22 +0000150 const InstructionSetFeatures* features,
David Srbecky32210b92017-12-04 14:39:21 +0000151 uint64_t text_section_address,
152 size_t text_section_size,
153 uint64_t dex_section_address,
154 size_t dex_section_size,
155 const DebugInfo& debug_info) {
David Srbeckyc5bfa972016-02-05 15:49:10 +0000156 if (Is64BitInstructionSet(isa)) {
David Srbecky5d811202016-03-08 13:21:22 +0000157 return MakeMiniDebugInfoInternal<ElfTypes64>(isa,
158 features,
David Srbecky32210b92017-12-04 14:39:21 +0000159 text_section_address,
160 text_section_size,
161 dex_section_address,
162 dex_section_size,
163 debug_info);
David Srbeckyc5bfa972016-02-05 15:49:10 +0000164 } else {
David Srbecky5d811202016-03-08 13:21:22 +0000165 return MakeMiniDebugInfoInternal<ElfTypes32>(isa,
166 features,
David Srbecky32210b92017-12-04 14:39:21 +0000167 text_section_address,
168 text_section_size,
169 dex_section_address,
170 dex_section_size,
171 debug_info);
David Srbeckyc5bfa972016-02-05 15:49:10 +0000172 }
173}
174
David Srbeckybe50f9a2018-12-05 10:48:42 +0000175std::vector<uint8_t> MakeElfFileForJIT(
David Srbeckyfe736b72016-03-09 11:44:44 +0000176 InstructionSet isa,
David Srbecky5d811202016-03-08 13:21:22 +0000177 const InstructionSetFeatures* features,
David Srbeckyf4886df2017-12-11 16:06:29 +0000178 bool mini_debug_info,
David Srbeckybe50f9a2018-12-05 10:48:42 +0000179 const MethodDebugInfo& method_info) {
180 using ElfTypes = ElfRuntimeTypes;
181 CHECK_EQ(sizeof(ElfTypes::Addr), static_cast<size_t>(GetInstructionSetPointerSize(isa)));
182 CHECK_EQ(method_info.is_code_address_text_relative, false);
David Srbecky32210b92017-12-04 14:39:21 +0000183 DebugInfo debug_info{};
David Srbeckybe50f9a2018-12-05 10:48:42 +0000184 debug_info.compiled_methods = ArrayRef<const MethodDebugInfo>(&method_info, 1);
David Srbeckyc5bfa972016-02-05 15:49:10 +0000185 std::vector<uint8_t> buffer;
186 buffer.reserve(KB);
Vladimir Marko74527972016-11-29 15:57:32 +0000187 linker::VectorOutputStream out("Debug ELF file", &buffer);
188 std::unique_ptr<linker::ElfBuilder<ElfTypes>> builder(
189 new linker::ElfBuilder<ElfTypes>(isa, features, &out));
David Srbeckyc5bfa972016-02-05 15:49:10 +0000190 // No program headers since the ELF file is not linked and has no allocated sections.
Andreas Gampe3db70682018-12-26 15:12:03 -0800191 builder->Start(/* write_program_headers= */ false);
David Srbeckybe50f9a2018-12-05 10:48:42 +0000192 builder->GetText()->AllocateVirtualMemory(method_info.code_address, method_info.code_size);
David Srbeckyf4886df2017-12-11 16:06:29 +0000193 if (mini_debug_info) {
David Srbeckybe50f9a2018-12-05 10:48:42 +0000194 // The compression is great help for multiple methods but it is not worth it for a
195 // single method due to the overheads so skip the compression here for performance.
Andreas Gampe3db70682018-12-26 15:12:03 -0800196 WriteDebugSymbols(builder.get(), /* mini-debug-info= */ true, debug_info);
David Srbecky7370d922019-02-12 14:00:30 +0000197 WriteCFISection(builder.get(), debug_info.compiled_methods);
David Srbeckyf4886df2017-12-11 16:06:29 +0000198 } else {
David Srbecky7370d922019-02-12 14:00:30 +0000199 WriteDebugInfo(builder.get(), debug_info);
David Srbeckyf4886df2017-12-11 16:06:29 +0000200 }
David Srbeckyc5bfa972016-02-05 15:49:10 +0000201 builder->End();
202 CHECK(builder->Good());
David Srbecky0b21e412018-12-05 13:24:06 +0000203 // Verify the ELF file by reading it back using the trivial reader.
204 if (kIsDebugBuild) {
205 using Elf_Sym = typename ElfTypes::Sym;
206 using Elf_Addr = typename ElfTypes::Addr;
207 size_t num_syms = 0;
208 size_t num_cfis = 0;
209 ReadElfSymbols<ElfTypes>(
210 buffer.data(),
211 [&](Elf_Sym sym, const char*) {
212 DCHECK_EQ(sym.st_value, method_info.code_address + CompiledMethod::CodeDelta(isa));
213 DCHECK_EQ(sym.st_size, method_info.code_size);
214 num_syms++;
215 },
216 [&](Elf_Addr addr, Elf_Addr size, ArrayRef<const uint8_t> opcodes) {
217 DCHECK_EQ(addr, method_info.code_address);
218 DCHECK_EQ(size, method_info.code_size);
219 DCHECK_GE(opcodes.size(), method_info.cfi.size());
220 DCHECK_EQ(memcmp(opcodes.data(), method_info.cfi.data(), method_info.cfi.size()), 0);
221 num_cfis++;
222 });
223 DCHECK_EQ(num_syms, 1u);
David Srbecky51bc7522019-01-05 15:41:06 +0000224 // CFI might be missing. TODO: Ensure we have CFI for all methods.
225 DCHECK_LE(num_cfis, 1u);
David Srbecky0b21e412018-12-05 13:24:06 +0000226 }
Vladimir Marko93205e32016-04-13 11:59:46 +0100227 return buffer;
David Srbeckyc5bfa972016-02-05 15:49:10 +0000228}
229
David Srbecky0b21e412018-12-05 13:24:06 +0000230// Combine several mini-debug-info ELF files into one, while filtering some symbols.
231std::vector<uint8_t> PackElfFileForJIT(
232 InstructionSet isa,
233 const InstructionSetFeatures* features,
234 std::vector<const uint8_t*>& added_elf_files,
235 std::vector<const void*>& removed_symbols,
236 /*out*/ size_t* num_symbols) {
237 using ElfTypes = ElfRuntimeTypes;
238 using Elf_Addr = typename ElfTypes::Addr;
239 using Elf_Sym = typename ElfTypes::Sym;
240 CHECK_EQ(sizeof(Elf_Addr), static_cast<size_t>(GetInstructionSetPointerSize(isa)));
241 const bool is64bit = Is64BitInstructionSet(isa);
242 auto is_removed_symbol = [&removed_symbols](Elf_Addr addr) {
243 const void* code_ptr = reinterpret_cast<const void*>(addr);
244 return std::binary_search(removed_symbols.begin(), removed_symbols.end(), code_ptr);
245 };
246 uint64_t min_address = std::numeric_limits<uint64_t>::max();
247 uint64_t max_address = 0;
248
249 // Produce the inner ELF file.
250 // It will contain the symbols (.symtab) and unwind information (.debug_frame).
251 std::vector<uint8_t> inner_elf_file;
252 {
253 inner_elf_file.reserve(1 * KB); // Approximate size of ELF file with a single symbol.
254 linker::VectorOutputStream out("Mini-debug-info ELF file for JIT", &inner_elf_file);
255 std::unique_ptr<linker::ElfBuilder<ElfTypes>> builder(
256 new linker::ElfBuilder<ElfTypes>(isa, features, &out));
257 builder->Start(/*write_program_headers=*/ false);
258 auto* text = builder->GetText();
259 auto* strtab = builder->GetStrTab();
260 auto* symtab = builder->GetSymTab();
261 auto* debug_frame = builder->GetDebugFrame();
262 std::deque<Elf_Sym> symbols;
263 std::vector<uint8_t> debug_frame_buffer;
David Srbecky91b29002019-02-08 15:51:31 +0000264 WriteCIE(isa, &debug_frame_buffer);
David Srbecky0b21e412018-12-05 13:24:06 +0000265
266 // Write symbols names. All other data is buffered.
267 strtab->Start();
268 strtab->Write(""); // strtab should start with empty string.
269 for (const uint8_t* added_elf_file : added_elf_files) {
270 ReadElfSymbols<ElfTypes>(
271 added_elf_file,
272 [&](Elf_Sym sym, const char* name) {
273 if (is_removed_symbol(sym.st_value)) {
274 return;
275 }
276 sym.st_name = strtab->Write(name);
277 symbols.push_back(sym);
278 min_address = std::min<uint64_t>(min_address, sym.st_value);
279 max_address = std::max<uint64_t>(max_address, sym.st_value + sym.st_size);
280 },
281 [&](Elf_Addr addr, Elf_Addr size, ArrayRef<const uint8_t> opcodes) {
282 if (is_removed_symbol(addr)) {
283 return;
284 }
David Srbecky91b29002019-02-08 15:51:31 +0000285 dwarf::WriteFDE(is64bit,
David Srbecky7370d922019-02-12 14:00:30 +0000286 /* cie_pointer= */ 0,
David Srbecky91b29002019-02-08 15:51:31 +0000287 addr,
288 size,
289 opcodes,
David Srbecky7370d922019-02-12 14:00:30 +0000290 &debug_frame_buffer);
David Srbecky0b21e412018-12-05 13:24:06 +0000291 });
292 }
293 strtab->End();
294
295 // Create .text covering the code range. Needed for gdb to find the symbols.
296 if (max_address > min_address) {
297 text->AllocateVirtualMemory(min_address, max_address - min_address);
298 }
299
300 // Add the symbols.
301 *num_symbols = symbols.size();
302 for (; !symbols.empty(); symbols.pop_front()) {
303 symtab->Add(symbols.front(), text);
304 }
305 symtab->WriteCachedSection();
306
307 // Add the CFI/unwind section.
308 debug_frame->Start();
309 debug_frame->WriteFully(debug_frame_buffer.data(), debug_frame_buffer.size());
310 debug_frame->End();
311
312 builder->End();
313 CHECK(builder->Good());
314 }
315
316 // Produce the outer ELF file.
317 // It contains only the inner ELF file compressed as .gnu_debugdata section.
318 // This extra wrapping is not necessary but the compression saves space.
319 std::vector<uint8_t> outer_elf_file;
320 {
321 std::vector<uint8_t> gnu_debugdata;
322 gnu_debugdata.reserve(inner_elf_file.size() / 4);
323 XzCompress(ArrayRef<const uint8_t>(inner_elf_file), &gnu_debugdata);
324
325 outer_elf_file.reserve(KB + gnu_debugdata.size());
326 linker::VectorOutputStream out("Mini-debug-info ELF file for JIT", &outer_elf_file);
327 std::unique_ptr<linker::ElfBuilder<ElfTypes>> builder(
328 new linker::ElfBuilder<ElfTypes>(isa, features, &out));
329 builder->Start(/*write_program_headers=*/ false);
330 if (max_address > min_address) {
331 builder->GetText()->AllocateVirtualMemory(min_address, max_address - min_address);
332 }
333 builder->WriteSection(".gnu_debugdata", &gnu_debugdata);
334 builder->End();
335 CHECK(builder->Good());
336 }
337
338 return outer_elf_file;
339}
340
David Srbeckybe50f9a2018-12-05 10:48:42 +0000341std::vector<uint8_t> WriteDebugElfFileForClasses(
David Srbeckyfe736b72016-03-09 11:44:44 +0000342 InstructionSet isa,
David Srbecky5d811202016-03-08 13:21:22 +0000343 const InstructionSetFeatures* features,
344 const ArrayRef<mirror::Class*>& types)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700345 REQUIRES_SHARED(Locks::mutator_lock_) {
David Srbeckybe50f9a2018-12-05 10:48:42 +0000346 using ElfTypes = ElfRuntimeTypes;
347 CHECK_EQ(sizeof(ElfTypes::Addr), static_cast<size_t>(GetInstructionSetPointerSize(isa)));
David Srbeckyc5bfa972016-02-05 15:49:10 +0000348 std::vector<uint8_t> buffer;
349 buffer.reserve(KB);
Vladimir Marko74527972016-11-29 15:57:32 +0000350 linker::VectorOutputStream out("Debug ELF file", &buffer);
351 std::unique_ptr<linker::ElfBuilder<ElfTypes>> builder(
352 new linker::ElfBuilder<ElfTypes>(isa, features, &out));
David Srbeckyc5bfa972016-02-05 15:49:10 +0000353 // No program headers since the ELF file is not linked and has no allocated sections.
Andreas Gampe3db70682018-12-26 15:12:03 -0800354 builder->Start(/* write_program_headers= */ false);
David Srbeckyc5bfa972016-02-05 15:49:10 +0000355 ElfDebugInfoWriter<ElfTypes> info_writer(builder.get());
356 info_writer.Start();
357 ElfCompilationUnitWriter<ElfTypes> cu_writer(&info_writer);
358 cu_writer.Write(types);
David Srbecky7370d922019-02-12 14:00:30 +0000359 info_writer.End();
David Srbeckyc5bfa972016-02-05 15:49:10 +0000360
361 builder->End();
362 CHECK(builder->Good());
Vladimir Marko93205e32016-04-13 11:59:46 +0100363 return buffer;
David Srbeckyc5bfa972016-02-05 15:49:10 +0000364}
365
David Srbeckyc5bfa972016-02-05 15:49:10 +0000366// Explicit instantiations
367template void WriteDebugInfo<ElfTypes32>(
Vladimir Marko74527972016-11-29 15:57:32 +0000368 linker::ElfBuilder<ElfTypes32>* builder,
David Srbecky7370d922019-02-12 14:00:30 +0000369 const DebugInfo& debug_info);
David Srbeckyc5bfa972016-02-05 15:49:10 +0000370template void WriteDebugInfo<ElfTypes64>(
Vladimir Marko74527972016-11-29 15:57:32 +0000371 linker::ElfBuilder<ElfTypes64>* builder,
David Srbecky7370d922019-02-12 14:00:30 +0000372 const DebugInfo& debug_info);
David Srbeckyc5bfa972016-02-05 15:49:10 +0000373
374} // namespace debug
375} // namespace art