blob: e9af25f293697efde27bfde6fa45e66523cca55c [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
Nicolas Geoffrayf9b87b12014-09-02 08:12:09 +000077template <typename Elf_Word, typename Elf_Sword, typename Elf_Addr,
78 typename Elf_Dyn, typename Elf_Sym, typename Elf_Ehdr,
79 typename Elf_Phdr, typename Elf_Shdr>
80bool ElfWriterQuick<Elf_Word, Elf_Sword, Elf_Addr, Elf_Dyn,
81 Elf_Sym, Elf_Ehdr, Elf_Phdr, Elf_Shdr>::Write(OatWriter* oat_writer,
Ian Rogers6a3c1fc2014-10-31 00:33:20 -070082 const std::vector<const DexFile*>& dex_files_unused ATTRIBUTE_UNUSED,
83 const std::string& android_root_unused ATTRIBUTE_UNUSED,
84 bool is_host_unused ATTRIBUTE_UNUSED) {
Andreas Gampe79273802014-08-05 20:21:05 -070085 constexpr bool debug = false;
Brian Carlstromb12f3472014-06-11 14:54:46 -070086 const OatHeader& oat_header = oat_writer->GetOatHeader();
Nicolas Geoffrayf9b87b12014-09-02 08:12:09 +000087 Elf_Word oat_data_size = oat_header.GetExecutableOffset();
Brian Carlstromb12f3472014-06-11 14:54:46 -070088 uint32_t oat_exec_size = oat_writer->GetSize() - oat_data_size;
Vladimir Marko5c42c292015-02-25 12:02:49 +000089 uint32_t oat_bss_size = oat_writer->GetBssSize();
Brian Carlstromb12f3472014-06-11 14:54:46 -070090
Andreas Gampe54fc26c2014-09-04 21:47:42 -070091 OatWriterWrapper wrapper(oat_writer);
92
93 std::unique_ptr<ElfBuilder<Elf_Word, Elf_Sword, Elf_Addr, Elf_Dyn,
94 Elf_Sym, Elf_Ehdr, Elf_Phdr, Elf_Shdr> > builder(
95 new ElfBuilder<Elf_Word, Elf_Sword, Elf_Addr, Elf_Dyn,
96 Elf_Sym, Elf_Ehdr, Elf_Phdr, Elf_Shdr>(
97 &wrapper,
98 elf_file_,
99 compiler_driver_->GetInstructionSet(),
100 0,
101 oat_data_size,
102 oat_data_size,
103 oat_exec_size,
Vladimir Marko5c42c292015-02-25 12:02:49 +0000104 RoundUp(oat_data_size + oat_exec_size, kPageSize),
105 oat_bss_size,
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700106 compiler_driver_->GetCompilerOptions().GetIncludeDebugSymbols(),
107 debug));
Alex Light78382fa2014-06-06 15:45:32 -0700108
Brian Carlstrom18a49cc2014-08-29 16:20:48 -0700109 if (!builder->Init()) {
Yevgeny Roubane3ea8382014-08-08 16:29:38 +0700110 return false;
111 }
112
David Srbecky3b9d57a2015-04-10 00:22:14 +0100113 if (compiler_driver_->GetCompilerOptions().GetIncludeDebugSymbols() &&
114 !oat_writer->GetMethodDebugInfo().empty()) {
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700115 WriteDebugSymbols(compiler_driver_, builder.get(), oat_writer);
Brian Carlstromb12f3472014-06-11 14:54:46 -0700116 }
117
Alex Light53cb16b2014-06-12 11:26:29 -0700118 if (compiler_driver_->GetCompilerOptions().GetIncludePatchInformation()) {
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700119 ElfRawSectionBuilder<Elf_Word, Elf_Sword, Elf_Shdr> oat_patches(
120 ".oat_patches", SHT_OAT_PATCH, 0, NULL, 0, sizeof(uintptr_t), sizeof(uintptr_t));
Vladimir Markof4da6752014-08-01 19:04:18 +0100121 const std::vector<uintptr_t>& locations = oat_writer->GetAbsolutePatchLocations();
122 const uint8_t* begin = reinterpret_cast<const uint8_t*>(&locations[0]);
123 const uint8_t* end = begin + locations.size() * sizeof(locations[0]);
124 oat_patches.GetBuffer()->assign(begin, end);
125 if (debug) {
126 LOG(INFO) << "Prepared .oat_patches for " << locations.size() << " patches.";
127 }
Brian Carlstrom18a49cc2014-08-29 16:20:48 -0700128 builder->RegisterRawSection(oat_patches);
Alex Light53cb16b2014-06-12 11:26:29 -0700129 }
130
Brian Carlstrom18a49cc2014-08-29 16:20:48 -0700131 return builder->Write();
Brian Carlstromb12f3472014-06-11 14:54:46 -0700132}
Mark Mendellae9fd932014-02-10 16:14:35 -0800133
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700134template <typename Elf_Word, typename Elf_Sword, typename Elf_Addr,
135 typename Elf_Dyn, typename Elf_Sym, typename Elf_Ehdr,
136 typename Elf_Phdr, typename Elf_Shdr>
Andreas Gampe86830382014-12-12 21:41:29 -0800137// Do not inline to avoid Clang stack frame problems. b/18738594
138NO_INLINE
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700139static void WriteDebugSymbols(const CompilerDriver* compiler_driver,
140 ElfBuilder<Elf_Word, Elf_Sword, Elf_Addr, Elf_Dyn,
141 Elf_Sym, Elf_Ehdr, Elf_Phdr, Elf_Shdr>* builder,
142 OatWriter* oat_writer) {
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700143 // Iterate over the compiled methods.
David Srbecky3b9d57a2015-04-10 00:22:14 +0100144 const std::vector<OatWriter::DebugInfo>& method_info = oat_writer->GetMethodDebugInfo();
Ian Rogers0279ebb2014-10-08 17:27:48 -0700145 ElfSymtabBuilder<Elf_Word, Elf_Sword, Elf_Addr, Elf_Sym, Elf_Shdr>* symtab =
146 builder->GetSymtabBuilder();
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700147 for (auto it = method_info.begin(); it != method_info.end(); ++it) {
David Srbecky0df9e1f2015-04-07 19:02:58 +0100148 std::string name = PrettyMethod(it->dex_method_index_, *it->dex_file_, true);
149 if (it->deduped_) {
150 // TODO We should place the DEDUPED tag on the first instance of a deduplicated symbol
151 // so that it will show up in a debuggerd crash report.
152 name += " [ DEDUPED ]";
153 }
154
David Srbecky6f715892015-03-30 14:21:42 +0100155 uint32_t low_pc = it->low_pc_;
156 // Add in code delta, e.g., thumb bit 0 for Thumb2 code.
157 low_pc += it->compiled_method_->CodeDelta();
David Srbecky0df9e1f2015-04-07 19:02:58 +0100158 symtab->AddSymbol(name, &builder->GetTextBuilder(), low_pc,
David Srbecky6f715892015-03-30 14:21:42 +0100159 true, it->high_pc_ - it->low_pc_, STB_GLOBAL, STT_FUNC);
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700160
Ningsheng Jianf9734552014-10-27 14:56:34 +0800161 // Conforming to aaelf, add $t mapping symbol to indicate start of a sequence of thumb2
162 // instructions, so that disassembler tools can correctly disassemble.
163 if (it->compiled_method_->GetInstructionSet() == kThumb2) {
164 symtab->AddSymbol("$t", &builder->GetTextBuilder(), it->low_pc_ & ~1, true,
165 0, STB_LOCAL, STT_NOTYPE);
166 }
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700167 }
168
David Srbecky3b9d57a2015-04-10 00:22:14 +0100169 typedef ElfRawSectionBuilder<Elf_Word, Elf_Sword, Elf_Shdr> Section;
170 Section eh_frame(".eh_frame", SHT_PROGBITS, SHF_ALLOC, nullptr, 0, 4, 0);
171 Section debug_info(".debug_info", SHT_PROGBITS, 0, nullptr, 0, 1, 0);
172 Section debug_abbrev(".debug_abbrev", SHT_PROGBITS, 0, nullptr, 0, 1, 0);
173 Section debug_str(".debug_str", SHT_PROGBITS, 0, nullptr, 0, 1, 0);
174 Section debug_line(".debug_line", SHT_PROGBITS, 0, nullptr, 0, 1, 0);
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700175
David Srbecky3b9d57a2015-04-10 00:22:14 +0100176 dwarf::WriteDebugSections(compiler_driver,
177 oat_writer,
178 builder->GetTextBuilder().GetSection()->sh_addr,
179 eh_frame.GetBuffer(),
180 debug_info.GetBuffer(),
181 debug_abbrev.GetBuffer(),
182 debug_str.GetBuffer(),
183 debug_line.GetBuffer());
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700184
David Srbecky3b9d57a2015-04-10 00:22:14 +0100185 builder->RegisterRawSection(eh_frame);
186 builder->RegisterRawSection(debug_info);
187 builder->RegisterRawSection(debug_abbrev);
188 builder->RegisterRawSection(debug_str);
189 builder->RegisterRawSection(debug_line);
Andreas Gampe54fc26c2014-09-04 21:47:42 -0700190}
191
Nicolas Geoffrayf9b87b12014-09-02 08:12:09 +0000192// Explicit instantiations
193template class ElfWriterQuick<Elf32_Word, Elf32_Sword, Elf32_Addr, Elf32_Dyn,
194 Elf32_Sym, Elf32_Ehdr, Elf32_Phdr, Elf32_Shdr>;
195template class ElfWriterQuick<Elf64_Word, Elf64_Sword, Elf64_Addr, Elf64_Dyn,
196 Elf64_Sym, Elf64_Ehdr, Elf64_Phdr, Elf64_Shdr>;
197
Brian Carlstrom7940e442013-07-12 13:46:57 -0700198} // namespace art