blob: 737b9d613eb3923a9ca74cfb84e4e60fc03b11a4 [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001/*
2 * Copyright (C) 2012 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_writer_quick.h"
18
Yevgeny Roubane3ea8382014-08-08 16:29:38 +070019#include <unordered_map>
20
Brian Carlstrom7940e442013-07-12 13:46:57 -070021#include "base/logging.h"
22#include "base/unix_file/fd_file.h"
Brian Carlstromc6dfdac2013-08-26 18:57:31 -070023#include "buffered_output_stream.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000024#include "compiled_method.h"
David Srbecky0df9e1f2015-04-07 19:02:58 +010025#include "dex_file-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070026#include "driver/compiler_driver.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000027#include "driver/compiler_options.h"
Andreas Gampe54fc26c2014-09-04 21:47:42 -070028#include "elf_builder.h"
Yevgeny Roubane3ea8382014-08-08 16:29:38 +070029#include "elf_file.h"
Nicolas Geoffray50cfe742014-02-19 13:27:42 +000030#include "elf_utils.h"
David Srbecky3b9d57a2015-04-10 00:22:14 +010031#include "elf_writer_debug.h"
Brian Carlstromc50d8e12013-07-23 22:35:16 -070032#include "file_output_stream.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070033#include "globals.h"
Andreas Gampe79273802014-08-05 20:21:05 -070034#include "leb128.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070035#include "oat.h"
Brian Carlstromc50d8e12013-07-23 22:35:16 -070036#include "oat_writer.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070037#include "utils.h"
38
39namespace art {
40
Nicolas Geoffrayf9b87b12014-09-02 08:12:09 +000041template <typename Elf_Word, typename Elf_Sword, typename Elf_Addr,
42 typename Elf_Dyn, typename Elf_Sym, typename Elf_Ehdr,
43 typename Elf_Phdr, typename Elf_Shdr>
44bool ElfWriterQuick<Elf_Word, Elf_Sword, Elf_Addr, Elf_Dyn,
Nicolas Geoffrayf9b87b12014-09-02 08:12:09 +000045 Elf_Sym, Elf_Ehdr, Elf_Phdr, Elf_Shdr>::Create(File* elf_file,
Brian Carlstromb12f3472014-06-11 14:54:46 -070046 OatWriter* oat_writer,
47 const std::vector<const DexFile*>& dex_files,
48 const std::string& android_root,
49 bool is_host,
50 const CompilerDriver& driver) {
51 ElfWriterQuick elf_writer(driver, elf_file);
52 return elf_writer.Write(oat_writer, dex_files, android_root, is_host);
53}
54
Ian Rogers0279ebb2014-10-08 17:27:48 -070055class OatWriterWrapper FINAL : public CodeOutput {
Andreas Gampe54fc26c2014-09-04 21:47:42 -070056 public:
57 explicit OatWriterWrapper(OatWriter* oat_writer) : oat_writer_(oat_writer) {}
58
Vladimir Markof4da6752014-08-01 19:04:18 +010059 void SetCodeOffset(size_t offset) {
60 oat_writer_->SetOatDataOffset(offset);
61 }
Andreas Gampe54fc26c2014-09-04 21:47:42 -070062 bool Write(OutputStream* out) OVERRIDE {
63 return oat_writer_->Write(out);
64 }
65 private:
Ian Rogers0279ebb2014-10-08 17:27:48 -070066 OatWriter* const oat_writer_;
Andreas Gampe54fc26c2014-09-04 21:47:42 -070067};
68
69template <typename Elf_Word, typename Elf_Sword, typename Elf_Addr,
70 typename Elf_Dyn, typename Elf_Sym, typename Elf_Ehdr,
71 typename Elf_Phdr, typename Elf_Shdr>
72static void WriteDebugSymbols(const CompilerDriver* compiler_driver,
73 ElfBuilder<Elf_Word, Elf_Sword, Elf_Addr, Elf_Dyn,
74 Elf_Sym, Elf_Ehdr, Elf_Phdr, Elf_Shdr>* builder,
75 OatWriter* oat_writer);
76
David Srbecky2f6cdb02015-04-11 00:17:53 +010077// Encode patch locations in .oat_patches format.
78template <typename Elf_Word, typename Elf_Sword, typename Elf_Addr,
79 typename Elf_Dyn, typename Elf_Sym, typename Elf_Ehdr,
80 typename Elf_Phdr, typename Elf_Shdr>
81void ElfWriterQuick<Elf_Word, Elf_Sword, Elf_Addr, Elf_Dyn, Elf_Sym, Elf_Ehdr,
82 Elf_Phdr, Elf_Shdr>::EncodeOatPatches(const OatWriter::PatchLocationsMap& sections,
83 std::vector<uint8_t>* buffer) {
84 for (const auto& section : sections) {
85 const std::string& name = section.first;
86 std::vector<uintptr_t>* locations = section.second.get();
87 DCHECK(!name.empty());
88 std::sort(locations->begin(), locations->end());
89 // Reserve buffer space - guess 2 bytes per ULEB128.
90 buffer->reserve(buffer->size() + name.size() + locations->size() * 2);
91 // Write null-terminated section name.
92 const uint8_t* name_data = reinterpret_cast<const uint8_t*>(name.c_str());
93 buffer->insert(buffer->end(), name_data, name_data + name.size() + 1);
94 // Write placeholder for data length.
95 size_t length_pos = buffer->size();
96 EncodeUnsignedLeb128(buffer, UINT32_MAX);
97 // Write LEB128 encoded list of advances (deltas between consequtive addresses).
98 size_t data_pos = buffer->size();
99 uintptr_t address = 0; // relative to start of section.
100 for (uintptr_t location : *locations) {
101 DCHECK_LT(location - address, UINT32_MAX) << "Large gap between patch locations";
102 EncodeUnsignedLeb128(buffer, location - address);
103 address = location;
104 }
105 // Update length.
106 UpdateUnsignedLeb128(buffer->data() + length_pos, buffer->size() - data_pos);
107 }
108 buffer->push_back(0); // End of sections.
109}
110
Nicolas Geoffrayf9b87b12014-09-02 08:12:09 +0000111template <typename Elf_Word, typename Elf_Sword, typename Elf_Addr,
112 typename Elf_Dyn, typename Elf_Sym, typename Elf_Ehdr,
113 typename Elf_Phdr, typename Elf_Shdr>
114bool ElfWriterQuick<Elf_Word, Elf_Sword, Elf_Addr, Elf_Dyn,
115 Elf_Sym, Elf_Ehdr, Elf_Phdr, Elf_Shdr>::Write(OatWriter* oat_writer,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700116 const std::vector<const DexFile*>& dex_files_unused ATTRIBUTE_UNUSED,
117 const std::string& android_root_unused ATTRIBUTE_UNUSED,
118 bool is_host_unused ATTRIBUTE_UNUSED) {
Andreas Gampe79273802014-08-05 20:21:05 -0700119 constexpr bool debug = false;
Brian Carlstromb12f3472014-06-11 14:54:46 -0700120 const OatHeader& oat_header = oat_writer->GetOatHeader();
Nicolas Geoffrayf9b87b12014-09-02 08:12:09 +0000121 Elf_Word oat_data_size = oat_header.GetExecutableOffset();
Brian Carlstromb12f3472014-06-11 14:54:46 -0700122 uint32_t oat_exec_size = oat_writer->GetSize() - oat_data_size;
Vladimir Marko5c42c292015-02-25 12:02:49 +0000123 uint32_t oat_bss_size = oat_writer->GetBssSize();
Brian Carlstromb12f3472014-06-11 14:54:46 -0700124
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700125 OatWriterWrapper wrapper(oat_writer);
126
127 std::unique_ptr<ElfBuilder<Elf_Word, Elf_Sword, Elf_Addr, Elf_Dyn,
128 Elf_Sym, Elf_Ehdr, Elf_Phdr, Elf_Shdr> > builder(
129 new ElfBuilder<Elf_Word, Elf_Sword, Elf_Addr, Elf_Dyn,
130 Elf_Sym, Elf_Ehdr, Elf_Phdr, Elf_Shdr>(
131 &wrapper,
132 elf_file_,
133 compiler_driver_->GetInstructionSet(),
134 0,
135 oat_data_size,
136 oat_data_size,
137 oat_exec_size,
Vladimir Marko5c42c292015-02-25 12:02:49 +0000138 RoundUp(oat_data_size + oat_exec_size, kPageSize),
139 oat_bss_size,
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700140 compiler_driver_->GetCompilerOptions().GetIncludeDebugSymbols(),
141 debug));
Alex Light78382fa2014-06-06 15:45:32 -0700142
Brian Carlstrom18a49cc2014-08-29 16:20:48 -0700143 if (!builder->Init()) {
Yevgeny Roubane3ea8382014-08-08 16:29:38 +0700144 return false;
145 }
146
David Srbecky8dc73242015-04-12 11:40:39 +0100147 if (compiler_driver_->GetCompilerOptions().GetIncludeCFI() &&
148 !oat_writer->GetMethodDebugInfo().empty()) {
149 ElfRawSectionBuilder<Elf_Word, Elf_Sword, Elf_Shdr> eh_frame(
150 ".eh_frame", SHT_PROGBITS, SHF_ALLOC, nullptr, 0, 4, 0);
151 dwarf::WriteEhFrame(compiler_driver_, oat_writer,
152 builder->GetTextBuilder().GetSection()->sh_addr,
153 eh_frame.GetBuffer());
154 builder->RegisterRawSection(eh_frame);
155 }
156
David Srbecky3b9d57a2015-04-10 00:22:14 +0100157 if (compiler_driver_->GetCompilerOptions().GetIncludeDebugSymbols() &&
158 !oat_writer->GetMethodDebugInfo().empty()) {
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700159 WriteDebugSymbols(compiler_driver_, builder.get(), oat_writer);
Brian Carlstromb12f3472014-06-11 14:54:46 -0700160 }
161
David Srbecky2f6cdb02015-04-11 00:17:53 +0100162 if (compiler_driver_->GetCompilerOptions().GetIncludePatchInformation() ||
163 // ElfWriter::Fixup will be called regardless and it needs to be able
164 // to patch debug sections so we have to include patches for them.
165 compiler_driver_->GetCompilerOptions().GetIncludeDebugSymbols()) {
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700166 ElfRawSectionBuilder<Elf_Word, Elf_Sword, Elf_Shdr> oat_patches(
David Srbecky2f6cdb02015-04-11 00:17:53 +0100167 ".oat_patches", SHT_OAT_PATCH, 0, NULL, 0, 1, 0);
168 EncodeOatPatches(oat_writer->GetAbsolutePatchLocations(), oat_patches.GetBuffer());
Brian Carlstrom18a49cc2014-08-29 16:20:48 -0700169 builder->RegisterRawSection(oat_patches);
Alex Light53cb16b2014-06-12 11:26:29 -0700170 }
171
Brian Carlstrom18a49cc2014-08-29 16:20:48 -0700172 return builder->Write();
Brian Carlstromb12f3472014-06-11 14:54:46 -0700173}
Mark Mendellae9fd932014-02-10 16:14:35 -0800174
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700175template <typename Elf_Word, typename Elf_Sword, typename Elf_Addr,
176 typename Elf_Dyn, typename Elf_Sym, typename Elf_Ehdr,
177 typename Elf_Phdr, typename Elf_Shdr>
Andreas Gampe86830382014-12-12 21:41:29 -0800178// Do not inline to avoid Clang stack frame problems. b/18738594
179NO_INLINE
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700180static void WriteDebugSymbols(const CompilerDriver* compiler_driver,
181 ElfBuilder<Elf_Word, Elf_Sword, Elf_Addr, Elf_Dyn,
182 Elf_Sym, Elf_Ehdr, Elf_Phdr, Elf_Shdr>* builder,
183 OatWriter* oat_writer) {
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700184 // Iterate over the compiled methods.
David Srbecky3b9d57a2015-04-10 00:22:14 +0100185 const std::vector<OatWriter::DebugInfo>& method_info = oat_writer->GetMethodDebugInfo();
Ian Rogers0279ebb2014-10-08 17:27:48 -0700186 ElfSymtabBuilder<Elf_Word, Elf_Sword, Elf_Addr, Elf_Sym, Elf_Shdr>* symtab =
187 builder->GetSymtabBuilder();
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700188 for (auto it = method_info.begin(); it != method_info.end(); ++it) {
David Srbecky0df9e1f2015-04-07 19:02:58 +0100189 std::string name = PrettyMethod(it->dex_method_index_, *it->dex_file_, true);
190 if (it->deduped_) {
191 // TODO We should place the DEDUPED tag on the first instance of a deduplicated symbol
192 // so that it will show up in a debuggerd crash report.
193 name += " [ DEDUPED ]";
194 }
195
David Srbecky6f715892015-03-30 14:21:42 +0100196 uint32_t low_pc = it->low_pc_;
197 // Add in code delta, e.g., thumb bit 0 for Thumb2 code.
198 low_pc += it->compiled_method_->CodeDelta();
David Srbecky0df9e1f2015-04-07 19:02:58 +0100199 symtab->AddSymbol(name, &builder->GetTextBuilder(), low_pc,
David Srbecky6f715892015-03-30 14:21:42 +0100200 true, it->high_pc_ - it->low_pc_, STB_GLOBAL, STT_FUNC);
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700201
Ningsheng Jianf9734552014-10-27 14:56:34 +0800202 // Conforming to aaelf, add $t mapping symbol to indicate start of a sequence of thumb2
203 // instructions, so that disassembler tools can correctly disassemble.
204 if (it->compiled_method_->GetInstructionSet() == kThumb2) {
205 symtab->AddSymbol("$t", &builder->GetTextBuilder(), it->low_pc_ & ~1, true,
206 0, STB_LOCAL, STT_NOTYPE);
207 }
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700208 }
209
David Srbecky3b9d57a2015-04-10 00:22:14 +0100210 typedef ElfRawSectionBuilder<Elf_Word, Elf_Sword, Elf_Shdr> Section;
David Srbecky3b9d57a2015-04-10 00:22:14 +0100211 Section debug_info(".debug_info", SHT_PROGBITS, 0, nullptr, 0, 1, 0);
212 Section debug_abbrev(".debug_abbrev", SHT_PROGBITS, 0, nullptr, 0, 1, 0);
213 Section debug_str(".debug_str", SHT_PROGBITS, 0, nullptr, 0, 1, 0);
214 Section debug_line(".debug_line", SHT_PROGBITS, 0, nullptr, 0, 1, 0);
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700215
David Srbecky3b9d57a2015-04-10 00:22:14 +0100216 dwarf::WriteDebugSections(compiler_driver,
217 oat_writer,
218 builder->GetTextBuilder().GetSection()->sh_addr,
David Srbecky3b9d57a2015-04-10 00:22:14 +0100219 debug_info.GetBuffer(),
220 debug_abbrev.GetBuffer(),
221 debug_str.GetBuffer(),
222 debug_line.GetBuffer());
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700223
David Srbecky3b9d57a2015-04-10 00:22:14 +0100224 builder->RegisterRawSection(debug_info);
225 builder->RegisterRawSection(debug_abbrev);
226 builder->RegisterRawSection(debug_str);
227 builder->RegisterRawSection(debug_line);
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700228}
229
Nicolas Geoffrayf9b87b12014-09-02 08:12:09 +0000230// Explicit instantiations
231template class ElfWriterQuick<Elf32_Word, Elf32_Sword, Elf32_Addr, Elf32_Dyn,
232 Elf32_Sym, Elf32_Ehdr, Elf32_Phdr, Elf32_Shdr>;
233template class ElfWriterQuick<Elf64_Word, Elf64_Sword, Elf64_Addr, Elf64_Dyn,
234 Elf64_Sym, Elf64_Ehdr, Elf64_Phdr, Elf64_Shdr>;
235
Brian Carlstrom7940e442013-07-12 13:46:57 -0700236} // namespace art