blob: 3d08ad31737c31565b13bc20948359130dae658d [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001/*
2 * Copyright (C) 2011 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
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_COMPILER_OAT_WRITER_H_
18#define ART_COMPILER_OAT_WRITER_H_
Brian Carlstrom7940e442013-07-12 13:46:57 -070019
20#include <stdint.h>
Brian Carlstrom7940e442013-07-12 13:46:57 -070021#include <cstddef>
Ian Rogers700a4022014-05-19 16:49:03 -070022#include <memory>
Brian Carlstrom7940e442013-07-12 13:46:57 -070023
David Brazdild9c90372016-09-14 16:53:55 +010024#include "base/array_ref.h"
Vladimir Marko49b0f452015-12-10 13:49:19 +000025#include "base/dchecked_vector.h"
Vladimir Markob163bb72015-03-31 21:49:49 +010026#include "linker/relative_patcher.h" // For linker::RelativePatcherTargetProvider.
Brian Carlstrom7940e442013-07-12 13:46:57 -070027#include "mem_map.h"
Vladimir Markof4da6752014-08-01 19:04:18 +010028#include "method_reference.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070029#include "mirror/class.h"
Artem Udovichenkod9786b02015-10-14 16:36:55 +030030#include "oat.h"
Vladimir Marko9bdf1082016-01-21 12:15:52 +000031#include "os.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070032#include "safe_map.h"
Vladimir Markoaad75c62016-10-03 08:46:48 +000033#include "string_reference.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070034
35namespace art {
36
Brian Carlstromba150c32013-08-27 17:31:03 -070037class BitVector;
Andreas Gampe79273802014-08-05 20:21:05 -070038class CompiledMethod;
Vladimir Marko20f85592015-03-19 10:07:02 +000039class CompilerDriver;
Vladimir Markof4da6752014-08-01 19:04:18 +010040class ImageWriter;
Brian Carlstrom7940e442013-07-12 13:46:57 -070041class OutputStream;
Vladimir Marko20f85592015-03-19 10:07:02 +000042class TimingLogger;
Artem Udovichenkod9786b02015-10-14 16:36:55 +030043class TypeLookupTable;
Vladimir Marko9bdf1082016-01-21 12:15:52 +000044class ZipEntry;
Brian Carlstrom7940e442013-07-12 13:46:57 -070045
David Srbeckyc5bfa972016-02-05 15:49:10 +000046namespace debug {
Vladimir Marko10c13562015-11-25 14:33:36 +000047struct MethodDebugInfo;
David Srbeckyc5bfa972016-02-05 15:49:10 +000048} // namespace debug
Vladimir Marko10c13562015-11-25 14:33:36 +000049
Vladimir Marko944da602016-02-19 12:27:55 +000050namespace linker {
51class MultiOatRelativePatcher;
52} // namespace linker
53
David Brazdil5d5a36b2016-09-14 15:34:10 +010054namespace verifier {
55 class VerifierDeps;
56} // namespace verifier
57
Brian Carlstrom7940e442013-07-12 13:46:57 -070058// OatHeader variable length with count of D OatDexFiles
59//
60// OatDexFile[0] one variable sized OatDexFile with offsets to Dex and OatClasses
61// OatDexFile[1]
62// ...
63// OatDexFile[D]
64//
Artem Udovichenkod9786b02015-10-14 16:36:55 +030065// TypeLookupTable[0] one descriptor to class def index hash table for each OatDexFile.
66// TypeLookupTable[1]
67// ...
68// TypeLookupTable[D]
69//
Vladimir Marko9bdf1082016-01-21 12:15:52 +000070// ClassOffsets[0] one table of OatClass offsets for each class def for each OatDexFile.
71// ClassOffsets[1]
72// ...
73// ClassOffsets[D]
74//
Brian Carlstrom7940e442013-07-12 13:46:57 -070075// OatClass[0] one variable sized OatClass for each of C DexFile::ClassDefs
76// OatClass[1] contains OatClass entries with class status, offsets to code, etc.
77// ...
78// OatClass[C]
79//
Vladimir Marko96c6ab92014-04-08 14:00:50 +010080// GcMap one variable sized blob with GC map.
81// GcMap GC maps are deduplicated.
82// ...
83// GcMap
84//
85// VmapTable one variable sized VmapTable blob (quick compiler only).
86// VmapTable VmapTables are deduplicated.
87// ...
88// VmapTable
89//
90// MappingTable one variable sized blob with MappingTable (quick compiler only).
91// MappingTable MappingTables are deduplicated.
92// ...
93// MappingTable
94//
Brian Carlstrom7940e442013-07-12 13:46:57 -070095// padding if necessary so that the following code will be page aligned
96//
Vladimir Marko96c6ab92014-04-08 14:00:50 +010097// OatMethodHeader fixed size header for a CompiledMethod including the size of the MethodCode.
98// MethodCode one variable sized blob with the code of a CompiledMethod.
99// OatMethodHeader (OatMethodHeader, MethodCode) pairs are deduplicated.
100// MethodCode
Brian Carlstrom7940e442013-07-12 13:46:57 -0700101// ...
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100102// OatMethodHeader
103// MethodCode
Brian Carlstrom7940e442013-07-12 13:46:57 -0700104//
105class OatWriter {
106 public:
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000107 enum class CreateTypeLookupTable {
108 kCreate,
109 kDontCreate,
110 kDefault = kCreate
111 };
112
113 OatWriter(bool compiling_boot_image, TimingLogger* timings);
114
115 // To produce a valid oat file, the user must first add sources with any combination of
116 // - AddDexFileSource(),
117 // - AddZippedDexFilesSource(),
118 // - AddRawDexFileSource().
119 // Then the user must call in order
120 // - WriteAndOpenDexFiles()
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100121 // - Initialize()
122 // - WriteVerifierDeps()
123 // - WriteQuickeningInfo()
124 // - WriteVdexHeader()
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000125 // - PrepareLayout(),
126 // - WriteRodata(),
127 // - WriteCode(),
128 // - WriteHeader().
129
130 // Add dex file source(s) from a file, either a plain dex file or
131 // a zip file with one or more dex files.
132 bool AddDexFileSource(
133 const char* filename,
134 const char* location,
135 CreateTypeLookupTable create_type_lookup_table = CreateTypeLookupTable::kDefault);
136 // Add dex file source(s) from a zip file specified by a file handle.
137 bool AddZippedDexFilesSource(
Andreas Gampe43e10b02016-07-15 17:17:34 -0700138 File&& zip_fd,
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000139 const char* location,
140 CreateTypeLookupTable create_type_lookup_table = CreateTypeLookupTable::kDefault);
141 // Add dex file source from raw memory.
142 bool AddRawDexFileSource(
143 const ArrayRef<const uint8_t>& data,
144 const char* location,
145 uint32_t location_checksum,
146 CreateTypeLookupTable create_type_lookup_table = CreateTypeLookupTable::kDefault);
147 dchecked_vector<const char*> GetSourceLocations() const;
148
David Brazdil7b49e6c2016-09-01 11:06:18 +0100149 // Write raw dex files to the vdex file, mmap the file and open the dex files from it.
150 // Supporting data structures are written into the .rodata section of the oat file.
151 // The `verify` setting dictates whether the dex file verifier should check the dex files.
152 // This is generally the case, and should only be false for tests.
153 bool WriteAndOpenDexFiles(File* vdex_file,
154 OutputStream* oat_rodata,
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000155 InstructionSet instruction_set,
156 const InstructionSetFeatures* instruction_set_features,
157 SafeMap<std::string, std::string>* key_value_store,
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800158 bool verify,
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000159 /*out*/ std::unique_ptr<MemMap>* opened_dex_files_map,
160 /*out*/ std::vector<std::unique_ptr<const DexFile>>* opened_dex_files);
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100161 bool WriteQuickeningInfo(OutputStream* vdex_out);
David Brazdil5d5a36b2016-09-14 15:34:10 +0100162 bool WriteVerifierDeps(OutputStream* vdex_out, verifier::VerifierDeps* verifier_deps);
163 bool WriteVdexHeader(OutputStream* vdex_out);
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100164 // Initialize the writer with the given parameters.
165 void Initialize(const CompilerDriver* compiler,
166 ImageWriter* image_writer,
167 const std::vector<const DexFile*>& dex_files) {
168 compiler_driver_ = compiler;
169 image_writer_ = image_writer;
170 dex_files_ = &dex_files;
171 }
David Brazdil5d5a36b2016-09-14 15:34:10 +0100172
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000173 // Prepare layout of remaining data.
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100174 void PrepareLayout(linker::MultiOatRelativePatcher* relative_patcher);
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000175 // Write the rest of .rodata section (ClassOffsets[], OatClass[], maps).
176 bool WriteRodata(OutputStream* out);
177 // Write the code to the .text section.
178 bool WriteCode(OutputStream* out);
179 // Write the oat header. This finalizes the oat file.
180 bool WriteHeader(OutputStream* out,
181 uint32_t image_file_location_oat_checksum,
182 uintptr_t image_file_location_oat_begin,
183 int32_t image_patch_delta);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700184
Vladimir Marko09d09432015-09-08 13:47:48 +0100185 // Returns whether the oat file has an associated image.
186 bool HasImage() const {
187 // Since the image is being created at the same time as the oat file,
188 // check if there's an image writer.
189 return image_writer_ != nullptr;
190 }
191
Mathieu Chartierda5b28a2015-11-05 08:03:47 -0800192 bool HasBootImage() const {
193 return compiling_boot_image_;
194 }
195
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700196 const OatHeader& GetOatHeader() const {
197 return *oat_header_;
198 }
199
David Brazdil7b49e6c2016-09-01 11:06:18 +0100200 size_t GetOatSize() const {
201 return oat_size_;
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700202 }
203
Vladimir Marko5c42c292015-02-25 12:02:49 +0000204 size_t GetBssSize() const {
205 return bss_size_;
206 }
207
Vladimir Markoaad75c62016-10-03 08:46:48 +0000208 size_t GetBssRootsOffset() const {
209 return bss_roots_offset_;
210 }
211
Vladimir Marko944da602016-02-19 12:27:55 +0000212 size_t GetOatDataOffset() const {
213 return oat_data_offset_;
214 }
215
Vladimir Marko49b0f452015-12-10 13:49:19 +0000216 ArrayRef<const uintptr_t> GetAbsolutePatchLocations() const {
217 return ArrayRef<const uintptr_t>(absolute_patch_locations_);
Vladimir Markof4da6752014-08-01 19:04:18 +0100218 }
219
Brian Carlstrom7940e442013-07-12 13:46:57 -0700220 ~OatWriter();
221
David Srbecky09c2a6b2016-03-11 17:11:44 +0000222 void AddMethodDebugInfos(const std::vector<debug::MethodDebugInfo>& infos) {
223 method_info_.insert(method_info_.end(), infos.begin(), infos.end());
224 }
225
David Srbeckyc5bfa972016-02-05 15:49:10 +0000226 ArrayRef<const debug::MethodDebugInfo> GetMethodDebugInfo() const {
227 return ArrayRef<const debug::MethodDebugInfo>(method_info_);
Mark Mendellae9fd932014-02-10 16:14:35 -0800228 }
229
Vladimir Markob163bb72015-03-31 21:49:49 +0100230 const CompilerDriver* GetCompilerDriver() {
231 return compiler_driver_;
232 }
233
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700234 private:
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000235 class DexFileSource;
Vladimir Marko49b0f452015-12-10 13:49:19 +0000236 class OatClass;
237 class OatDexFile;
238
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100239 // The function VisitDexMethods() below iterates through all the methods in all
240 // the compiled dex files in order of their definitions. The method visitor
241 // classes provide individual bits of processing for each of the passes we need to
242 // first collect the data we want to write to the oat file and then, in later passes,
243 // to actually write it.
244 class DexMethodVisitor;
245 class OatDexMethodVisitor;
246 class InitOatClassesMethodVisitor;
247 class InitCodeMethodVisitor;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100248 class InitMapMethodVisitor;
249 class InitImageMethodVisitor;
250 class WriteCodeMethodVisitor;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100251 class WriteMapMethodVisitor;
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100252 class WriteQuickeningInfoMethodVisitor;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100253
254 // Visit all the methods in all the compiled dex files in their definition order
255 // with a given DexMethodVisitor.
256 bool VisitDexMethods(DexMethodVisitor* visitor);
257
David Brazdil7b49e6c2016-09-01 11:06:18 +0100258 bool WriteDexFiles(OutputStream* out, File* file);
259 bool WriteDexFile(OutputStream* out, File* file, OatDexFile* oat_dex_file);
260 bool SeekToDexFile(OutputStream* out, File* file, OatDexFile* oat_dex_file);
261 bool WriteDexFile(OutputStream* out,
262 File* file,
263 OatDexFile* oat_dex_file,
264 ZipEntry* dex_file);
265 bool WriteDexFile(OutputStream* out,
266 File* file,
267 OatDexFile* oat_dex_file,
268 File* dex_file);
269 bool WriteDexFile(OutputStream* out, OatDexFile* oat_dex_file, const uint8_t* dex_file);
270 bool OpenDexFiles(File* file,
271 bool verify,
272 /*out*/ std::unique_ptr<MemMap>* opened_dex_files_map,
273 /*out*/ std::vector<std::unique_ptr<const DexFile>>* opened_dex_files);
274
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000275 size_t InitOatHeader(InstructionSet instruction_set,
276 const InstructionSetFeatures* instruction_set_features,
277 uint32_t num_dex_files,
278 SafeMap<std::string, std::string>* key_value_store);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700279 size_t InitOatDexFiles(size_t offset);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700280 size_t InitOatClasses(size_t offset);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100281 size_t InitOatMaps(size_t offset);
Vladimir Marko49b0f452015-12-10 13:49:19 +0000282 size_t InitOatCode(size_t offset);
283 size_t InitOatCodeDexFiles(size_t offset);
Vladimir Markoaad75c62016-10-03 08:46:48 +0000284 void InitBssLayout(InstructionSet instruction_set);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700285
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000286 bool WriteClassOffsets(OutputStream* out);
287 bool WriteClasses(OutputStream* out);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100288 size_t WriteMaps(OutputStream* out, const size_t file_offset, size_t relative_offset);
289 size_t WriteCode(OutputStream* out, const size_t file_offset, size_t relative_offset);
Ian Rogers3d504072014-03-01 09:16:49 -0800290 size_t WriteCodeDexFiles(OutputStream* out, const size_t file_offset, size_t relative_offset);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700291
Vladimir Marko944da602016-02-19 12:27:55 +0000292 bool RecordOatDataOffset(OutputStream* out);
David Brazdil7b49e6c2016-09-01 11:06:18 +0100293 bool ReadDexFileHeader(File* oat_file, OatDexFile* oat_dex_file);
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000294 bool ValidateDexFileHeader(const uint8_t* raw_header, const char* location);
David Brazdil7b49e6c2016-09-01 11:06:18 +0100295 bool WriteOatDexFiles(OutputStream* oat_rodata);
296 bool WriteTypeLookupTables(OutputStream* oat_rodata,
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000297 const std::vector<std::unique_ptr<const DexFile>>& opened_dex_files);
Vladimir Markof4da6752014-08-01 19:04:18 +0100298 bool WriteCodeAlignment(OutputStream* out, uint32_t aligned_code_delta);
Vladimir Marko944da602016-02-19 12:27:55 +0000299 void SetMultiOatRelativePatcherAdjustment();
Vladimir Markof4da6752014-08-01 19:04:18 +0100300
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000301 enum class WriteState {
302 kAddingDexFileSources,
303 kPrepareLayout,
304 kWriteRoData,
305 kWriteText,
306 kWriteHeader,
307 kDone
308 };
309
310 WriteState write_state_;
311 TimingLogger* timings_;
312
313 std::vector<std::unique_ptr<File>> raw_dex_files_;
314 std::vector<std::unique_ptr<ZipArchive>> zip_archives_;
315 std::vector<std::unique_ptr<ZipEntry>> zipped_dex_files_;
316
317 // Using std::list<> which doesn't move elements around on push/emplace_back().
318 // We need this because we keep plain pointers to the strings' c_str().
319 std::list<std::string> zipped_dex_file_locations_;
320
David Srbeckyc5bfa972016-02-05 15:49:10 +0000321 dchecked_vector<debug::MethodDebugInfo> method_info_;
Mark Mendellae9fd932014-02-10 16:14:35 -0800322
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000323 const CompilerDriver* compiler_driver_;
324 ImageWriter* image_writer_;
Mathieu Chartierda5b28a2015-11-05 08:03:47 -0800325 const bool compiling_boot_image_;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700326
327 // note OatFile does not take ownership of the DexFiles
328 const std::vector<const DexFile*>* dex_files_;
329
David Brazdil7b49e6c2016-09-01 11:06:18 +0100330 // Size required for Vdex data structures.
331 size_t vdex_size_;
332
333 // Offset of section holding Dex files inside Vdex.
334 size_t vdex_dex_files_offset_;
335
David Brazdil5d5a36b2016-09-14 15:34:10 +0100336 // Offset of section holding VerifierDeps inside Vdex.
337 size_t vdex_verifier_deps_offset_;
338
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100339 // Offset of section holding quickening info inside Vdex.
340 size_t vdex_quickening_info_offset_;
341
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700342 // Size required for Oat data structures.
David Brazdil7b49e6c2016-09-01 11:06:18 +0100343 size_t oat_size_;
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700344
Vladimir Markoaad75c62016-10-03 08:46:48 +0000345 // The start of the required .bss section.
346 size_t bss_start_;
347
348 // The size of the required .bss section holding the DexCache data and GC roots.
Vladimir Marko5c42c292015-02-25 12:02:49 +0000349 size_t bss_size_;
350
Vladimir Markoaad75c62016-10-03 08:46:48 +0000351 // The offset of the GC roots in .bss section.
352 size_t bss_roots_offset_;
353
354 // Map for allocating String entries in .bss. Indexed by StringReference for the source
355 // string in the dex file with the "string value comparator" for deduplication. The value
356 // is the target offset for patching, starting at `bss_start_ + bss_roots_offset_`.
357 SafeMap<StringReference, size_t, StringReferenceValueComparator> bss_string_entries_;
358
Vladimir Marko09d09432015-09-08 13:47:48 +0100359 // Offsets of the dex cache arrays for each app dex file. For the
360 // boot image, this information is provided by the ImageWriter.
Vladimir Marko06d7aaa2015-10-16 11:23:41 +0100361 SafeMap<const DexFile*, size_t> dex_cache_arrays_offsets_; // DexFiles not owned.
Vladimir Marko09d09432015-09-08 13:47:48 +0100362
Vladimir Markof4da6752014-08-01 19:04:18 +0100363 // Offset of the oat data from the start of the mmapped region of the elf file.
364 size_t oat_data_offset_;
365
Brian Carlstrom7940e442013-07-12 13:46:57 -0700366 // data to write
Vladimir Marko49b0f452015-12-10 13:49:19 +0000367 std::unique_ptr<OatHeader> oat_header_;
368 dchecked_vector<OatDexFile> oat_dex_files_;
369 dchecked_vector<OatClass> oat_classes_;
Ian Rogers700a4022014-05-19 16:49:03 -0700370 std::unique_ptr<const std::vector<uint8_t>> jni_dlsym_lookup_;
Ian Rogers700a4022014-05-19 16:49:03 -0700371 std::unique_ptr<const std::vector<uint8_t>> quick_generic_jni_trampoline_;
372 std::unique_ptr<const std::vector<uint8_t>> quick_imt_conflict_trampoline_;
373 std::unique_ptr<const std::vector<uint8_t>> quick_resolution_trampoline_;
374 std::unique_ptr<const std::vector<uint8_t>> quick_to_interpreter_bridge_;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700375
376 // output stats
David Brazdil7b49e6c2016-09-01 11:06:18 +0100377 uint32_t size_vdex_header_;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700378 uint32_t size_dex_file_alignment_;
379 uint32_t size_executable_offset_alignment_;
380 uint32_t size_oat_header_;
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700381 uint32_t size_oat_header_key_value_store_;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700382 uint32_t size_dex_file_;
David Brazdil5d5a36b2016-09-14 15:34:10 +0100383 uint32_t size_verifier_deps_;
384 uint32_t size_verifier_deps_alignment_;
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100385 uint32_t size_quickening_info_;
386 uint32_t size_quickening_info_alignment_;
Ian Rogers468532e2013-08-05 10:56:33 -0700387 uint32_t size_interpreter_to_interpreter_bridge_;
388 uint32_t size_interpreter_to_compiled_code_bridge_;
389 uint32_t size_jni_dlsym_lookup_;
Andreas Gampe2da88232014-02-27 12:26:20 -0800390 uint32_t size_quick_generic_jni_trampoline_;
Jeff Hao88474b42013-10-23 16:24:40 -0700391 uint32_t size_quick_imt_conflict_trampoline_;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700392 uint32_t size_quick_resolution_trampoline_;
Ian Rogers468532e2013-08-05 10:56:33 -0700393 uint32_t size_quick_to_interpreter_bridge_;
394 uint32_t size_trampoline_alignment_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100395 uint32_t size_method_header_;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700396 uint32_t size_code_;
397 uint32_t size_code_alignment_;
Vladimir Markof4da6752014-08-01 19:04:18 +0100398 uint32_t size_relative_call_thunks_;
Vladimir Markoc74658b2015-03-31 10:26:41 +0100399 uint32_t size_misc_thunks_;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700400 uint32_t size_vmap_table_;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700401 uint32_t size_oat_dex_file_location_size_;
402 uint32_t size_oat_dex_file_location_data_;
403 uint32_t size_oat_dex_file_location_checksum_;
404 uint32_t size_oat_dex_file_offset_;
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000405 uint32_t size_oat_dex_file_class_offsets_offset_;
Vladimir Marko49b0f452015-12-10 13:49:19 +0000406 uint32_t size_oat_dex_file_lookup_table_offset_;
Vladimir Marko49b0f452015-12-10 13:49:19 +0000407 uint32_t size_oat_lookup_table_alignment_;
408 uint32_t size_oat_lookup_table_;
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000409 uint32_t size_oat_class_offsets_alignment_;
410 uint32_t size_oat_class_offsets_;
Brian Carlstromba150c32013-08-27 17:31:03 -0700411 uint32_t size_oat_class_type_;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700412 uint32_t size_oat_class_status_;
Brian Carlstromba150c32013-08-27 17:31:03 -0700413 uint32_t size_oat_class_method_bitmaps_;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700414 uint32_t size_oat_class_method_offsets_;
415
Vladimir Marko944da602016-02-19 12:27:55 +0000416 // The helper for processing relative patches is external so that we can patch across oat files.
417 linker::MultiOatRelativePatcher* relative_patcher_;
Vladimir Markof4da6752014-08-01 19:04:18 +0100418
David Srbeckyf8980872015-05-22 17:04:47 +0100419 // The locations of absolute patches relative to the start of the executable section.
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000420 dchecked_vector<uintptr_t> absolute_patch_locations_;
Vladimir Markof4da6752014-08-01 19:04:18 +0100421
Brian Carlstrom7940e442013-07-12 13:46:57 -0700422 DISALLOW_COPY_AND_ASSIGN(OatWriter);
423};
424
425} // namespace art
426
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700427#endif // ART_COMPILER_OAT_WRITER_H_