blob: 46260552db26ee8e662d53448f654c16a7976782 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
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 */
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070016
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_IMAGE_H_
18#define ART_RUNTIME_IMAGE_H_
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070019
20#include <string.h>
21
Andreas Gampe542451c2016-07-26 09:02:02 -070022#include "base/enums.h"
Mathieu Chartier1a842962018-11-13 15:09:51 -080023#include "base/iteration_range.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080024#include "mirror/object.h"
Andreas Gampe5a0430d2019-01-04 14:33:57 -080025#include "runtime_globals.h"
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070026
27namespace art {
28
Mathieu Chartier54d220e2015-07-30 16:20:06 -070029class ArtField;
30class ArtMethod;
Vladimir Markoc13fbd82018-06-04 16:16:28 +010031template <class MirrorType> class ObjPtr;
Mathieu Chartier54d220e2015-07-30 16:20:06 -070032
Vladimir Marko74527972016-11-29 15:57:32 +000033namespace linker {
34class ImageWriter;
35} // namespace linker
36
David Sehra49e0532017-08-25 08:05:29 -070037class ObjectVisitor {
38 public:
39 virtual ~ObjectVisitor() {}
40
41 virtual void Visit(mirror::Object* object) = 0;
42};
43
Mathieu Chartiere401d142015-04-22 13:56:20 -070044class PACKED(4) ImageSection {
45 public:
46 ImageSection() : offset_(0), size_(0) { }
47 ImageSection(uint32_t offset, uint32_t size) : offset_(offset), size_(size) { }
48 ImageSection(const ImageSection& section) = default;
49 ImageSection& operator=(const ImageSection& section) = default;
50
51 uint32_t Offset() const {
52 return offset_;
53 }
54
55 uint32_t Size() const {
56 return size_;
57 }
58
59 uint32_t End() const {
60 return Offset() + Size();
61 }
62
63 bool Contains(uint64_t offset) const {
64 return offset - offset_ < size_;
65 }
66
67 private:
68 uint32_t offset_;
69 uint32_t size_;
70};
71
Mathieu Chartier1a842962018-11-13 15:09:51 -080072// Header of image files written by ImageWriter, read and validated by Space.
73// Packed to object alignment since the first object follows directly after the header.
74static_assert(kObjectAlignment == 8, "Alignment check");
75class PACKED(8) ImageHeader {
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070076 public:
Mathieu Chartierceb07b32015-12-10 09:33:21 -080077 enum StorageMode : uint32_t {
78 kStorageModeUncompressed,
79 kStorageModeLZ4,
Mathieu Chartiera6e81ed2016-02-25 13:52:10 -080080 kStorageModeLZ4HC,
Mathieu Chartierceb07b32015-12-10 09:33:21 -080081 kStorageModeCount, // Number of elements in enum.
82 };
83 static constexpr StorageMode kDefaultStorageMode = kStorageModeUncompressed;
84
Mathieu Chartier1a842962018-11-13 15:09:51 -080085 // Solid block of the image. May be compressed or uncompressed.
86 class PACKED(4) Block final {
87 public:
88 Block(StorageMode storage_mode,
89 uint32_t data_offset,
90 uint32_t data_size,
91 uint32_t image_offset,
92 uint32_t image_size)
93 : storage_mode_(storage_mode),
94 data_offset_(data_offset),
95 data_size_(data_size),
96 image_offset_(image_offset),
97 image_size_(image_size) {}
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070098
Mathieu Chartier1a842962018-11-13 15:09:51 -080099 bool Decompress(uint8_t* out_ptr, const uint8_t* in_ptr, std::string* error_msg) const;
100
101 StorageMode GetStorageMode() const {
102 return storage_mode_;
103 }
104
Mathieu Chartierc6068c72018-11-13 16:00:58 -0800105 uint32_t GetDataSize() const {
106 return data_size_;
107 }
108
109 uint32_t GetImageSize() const {
110 return image_size_;
111 }
112
Mathieu Chartier1a842962018-11-13 15:09:51 -0800113 private:
114 // Storage method for the image, the image may be compressed.
115 StorageMode storage_mode_ = kDefaultStorageMode;
116
117 // Compressed offset and size.
118 uint32_t data_offset_ = 0u;
119 uint32_t data_size_ = 0u;
120
121 // Image offset and size (decompressed or mapped location).
122 uint32_t image_offset_ = 0u;
123 uint32_t image_size_ = 0u;
124 };
125
126 ImageHeader() {}
Vladimir Marko7391c8c2018-11-21 17:58:44 +0000127 ImageHeader(uint32_t image_reservation_size,
128 uint32_t component_count,
129 uint32_t image_begin,
Mathieu Chartier763a31e2015-11-16 16:05:55 -0800130 uint32_t image_size,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700131 ImageSection* sections,
Brian Carlstrome24fa612011-09-29 00:53:55 -0700132 uint32_t image_roots,
133 uint32_t oat_checksum,
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800134 uint32_t oat_file_begin,
135 uint32_t oat_data_begin,
136 uint32_t oat_data_end,
Igor Murashkin46774762014-10-22 11:37:02 -0700137 uint32_t oat_file_end,
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800138 uint32_t boot_image_begin,
139 uint32_t boot_image_size,
Mathieu Chartier1a842962018-11-13 15:09:51 -0800140 uint32_t pointer_size);
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700141
Brian Carlstrom68708f52013-09-03 14:15:31 -0700142 bool IsValid() const;
143 const char* GetMagic() const;
Brian Carlstrom78128a62011-09-15 17:21:19 -0700144
Vladimir Marko7391c8c2018-11-21 17:58:44 +0000145 uint32_t GetImageReservationSize() const {
146 return image_reservation_size_;
147 }
148
149 uint32_t GetComponentCount() const {
150 return component_count_;
151 }
152
Ian Rogers13735952014-10-08 12:43:28 -0700153 uint8_t* GetImageBegin() const {
154 return reinterpret_cast<uint8_t*>(image_begin_);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700155 }
156
Mathieu Chartier31e89252013-08-28 11:29:12 -0700157 size_t GetImageSize() const {
Vladimir Markoc10a0c62018-11-16 11:39:22 +0000158 return image_size_;
159 }
160
161 uint32_t GetImageChecksum() const {
162 return image_checksum_;
163 }
164
165 void SetImageChecksum(uint32_t image_checksum) {
166 image_checksum_ = image_checksum;
Mathieu Chartier31e89252013-08-28 11:29:12 -0700167 }
168
Brian Carlstrome24fa612011-09-29 00:53:55 -0700169 uint32_t GetOatChecksum() const {
170 return oat_checksum_;
171 }
172
Brian Carlstroma85b8372012-10-18 17:00:32 -0700173 void SetOatChecksum(uint32_t oat_checksum) {
174 oat_checksum_ = oat_checksum;
175 }
176
Mathieu Chartier5351da02016-02-17 16:19:53 -0800177 // The location that the oat file was expected to be when the image was created. The actual
178 // oat file may be at a different location for application images.
Ian Rogers13735952014-10-08 12:43:28 -0700179 uint8_t* GetOatFileBegin() const {
180 return reinterpret_cast<uint8_t*>(oat_file_begin_);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700181 }
182
Ian Rogers13735952014-10-08 12:43:28 -0700183 uint8_t* GetOatDataBegin() const {
184 return reinterpret_cast<uint8_t*>(oat_data_begin_);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800185 }
186
Ian Rogers13735952014-10-08 12:43:28 -0700187 uint8_t* GetOatDataEnd() const {
188 return reinterpret_cast<uint8_t*>(oat_data_end_);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800189 }
190
Ian Rogers13735952014-10-08 12:43:28 -0700191 uint8_t* GetOatFileEnd() const {
192 return reinterpret_cast<uint8_t*>(oat_file_end_);
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700193 }
194
Andreas Gampebda1d602016-08-29 17:43:45 -0700195 PointerSize GetPointerSize() const;
Andreas Gampe542451c2016-07-26 09:02:02 -0700196
197 uint32_t GetPointerSizeUnchecked() const {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700198 return pointer_size_;
199 }
200
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000201 static std::string GetOatLocationFromImageLocation(const std::string& image) {
David Brazdil7b49e6c2016-09-01 11:06:18 +0100202 return GetLocationFromImageLocation(image, "oat");
203 }
204
205 static std::string GetVdexLocationFromImageLocation(const std::string& image) {
206 return GetLocationFromImageLocation(image, "vdex");
Nicolas Geoffray9583fbc2014-02-28 15:21:07 +0000207 }
208
Mathieu Chartiere401d142015-04-22 13:56:20 -0700209 enum ImageMethod {
Ian Rogers19846512012-02-24 11:42:47 -0800210 kResolutionMethod,
Jeff Hao88474b42013-10-23 16:24:40 -0700211 kImtConflictMethod,
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700212 kImtUnimplementedMethod,
Vladimir Markofd36f1f2016-08-03 18:49:58 +0100213 kSaveAllCalleeSavesMethod,
214 kSaveRefsOnlyMethod,
215 kSaveRefsAndArgsMethod,
Vladimir Marko952dbb12016-07-28 12:01:51 +0100216 kSaveEverythingMethod,
Mingyao Yang0a87a652017-04-12 13:43:15 -0700217 kSaveEverythingMethodForClinit,
218 kSaveEverythingMethodForSuspendCheck,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700219 kImageMethodsCount, // Number of elements in enum.
220 };
221
222 enum ImageRoot {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700223 kDexCaches,
Brian Carlstrom34f426c2011-10-04 12:58:02 -0700224 kClassRoots,
Vladimir Markof75613c2018-06-05 12:51:04 +0100225 kSpecialRoots, // Different for boot image and app image, see aliases below.
Brian Carlstrom16192862011-09-12 17:50:06 -0700226 kImageRootsMax,
Vladimir Markof75613c2018-06-05 12:51:04 +0100227
228 // Aliases.
229 kAppImageClassLoader = kSpecialRoots, // The class loader used to build the app image.
230 kBootImageLiveObjects = kSpecialRoots, // Array of boot image objects that must be kept live.
Brian Carlstrom16192862011-09-12 17:50:06 -0700231 };
232
Vladimir Marko024d69f2019-06-13 10:52:32 +0100233 enum BootImageLiveObjects {
234 kOomeWhenThrowingException, // Pre-allocated OOME when throwing exception.
235 kOomeWhenThrowingOome, // Pre-allocated OOME when throwing OOME.
236 kOomeWhenHandlingStackOverflow, // Pre-allocated OOME when handling StackOverflowError.
237 kNoClassDefFoundError, // Pre-allocated NoClassDefFoundError.
238 kClearedJniWeakSentinel, // Pre-allocated sentinel for cleared weak JNI references.
239 kIntrinsicObjectsStart
240 };
241
Chris Wailes0c61be42018-09-26 17:27:34 -0700242 /*
243 * This describes the number and ordering of sections inside of Boot
244 * and App Images. It is very important that changes to this struct
245 * are reflected in the compiler and loader.
246 *
247 * See:
248 * - ImageWriter::ImageInfo::CreateImageSections()
249 * - ImageWriter::Write()
250 * - ImageWriter::AllocMemory()
251 */
Mathieu Chartiere401d142015-04-22 13:56:20 -0700252 enum ImageSections {
253 kSectionObjects,
254 kSectionArtFields,
255 kSectionArtMethods,
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700256 kSectionRuntimeMethods,
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +0000257 kSectionImTables,
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700258 kSectionIMTConflictTables,
Vladimir Marko05792b92015-08-03 11:56:49 +0100259 kSectionDexCacheArrays,
Mathieu Chartierd39645e2015-06-09 17:50:29 -0700260 kSectionInternedStrings,
Mathieu Chartier208a5cb2015-12-02 15:44:07 -0800261 kSectionClassTable,
Chris Wailes0c61be42018-09-26 17:27:34 -0700262 kSectionStringReferenceOffsets,
Mathieu Chartier1ca718e2018-10-23 12:55:34 -0700263 kSectionMetadata,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700264 kSectionImageBitmap,
265 kSectionCount, // Number of elements in enum.
266 };
267
Vladimir Markof75613c2018-06-05 12:51:04 +0100268 static size_t NumberOfImageRoots(bool app_image ATTRIBUTE_UNUSED) {
269 // At the moment, boot image and app image have the same number of roots,
270 // though the meaning of the kSpecialRoots is different.
271 return kImageRootsMax;
Vladimir Markoeca3eda2016-11-09 16:26:44 +0000272 }
273
Mathieu Chartiere401d142015-04-22 13:56:20 -0700274 ArtMethod* GetImageMethod(ImageMethod index) const;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700275
Mathieu Chartier1a842962018-11-13 15:09:51 -0800276 ImageSection& GetImageSection(ImageSections index) {
277 DCHECK_LT(static_cast<size_t>(index), kSectionCount);
278 return sections_[index];
279 }
280
Vladimir Markocd87c3e2017-09-05 13:11:57 +0100281 const ImageSection& GetImageSection(ImageSections index) const {
282 DCHECK_LT(static_cast<size_t>(index), kSectionCount);
283 return sections_[index];
284 }
285
286 const ImageSection& GetObjectsSection() const {
287 return GetImageSection(kSectionObjects);
288 }
289
290 const ImageSection& GetFieldsSection() const {
291 return GetImageSection(ImageHeader::kSectionArtFields);
292 }
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700293
Mathieu Chartiere401d142015-04-22 13:56:20 -0700294 const ImageSection& GetMethodsSection() const {
295 return GetImageSection(kSectionArtMethods);
296 }
297
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700298 const ImageSection& GetRuntimeMethodsSection() const {
299 return GetImageSection(kSectionRuntimeMethods);
300 }
301
Vladimir Markocd87c3e2017-09-05 13:11:57 +0100302 const ImageSection& GetImTablesSection() const {
303 return GetImageSection(kSectionImTables);
304 }
305
306 const ImageSection& GetIMTConflictTablesSection() const {
307 return GetImageSection(kSectionIMTConflictTables);
308 }
309
310 const ImageSection& GetDexCacheArraysSection() const {
311 return GetImageSection(kSectionDexCacheArrays);
312 }
313
314 const ImageSection& GetInternedStringsSection() const {
315 return GetImageSection(kSectionInternedStrings);
316 }
317
318 const ImageSection& GetClassTableSection() const {
319 return GetImageSection(kSectionClassTable);
320 }
321
Chris Wailes0c61be42018-09-26 17:27:34 -0700322 const ImageSection& GetImageStringReferenceOffsetsSection() const {
323 return GetImageSection(kSectionStringReferenceOffsets);
324 }
325
Mathieu Chartier1ca718e2018-10-23 12:55:34 -0700326 const ImageSection& GetMetadataSection() const {
327 return GetImageSection(kSectionMetadata);
328 }
329
Vladimir Marko6d3c1812018-10-24 14:00:00 +0100330 const ImageSection& GetImageBitmapSection() const {
331 return GetImageSection(kSectionImageBitmap);
332 }
333
Mathieu Chartier4a26f172016-01-26 14:26:18 -0800334 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Vladimir Markoc13fbd82018-06-04 16:16:28 +0100335 ObjPtr<mirror::Object> GetImageRoot(ImageRoot image_root) const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700336 REQUIRES_SHARED(Locks::mutator_lock_);
Mathieu Chartier4a26f172016-01-26 14:26:18 -0800337
338 template <ReadBarrierOption kReadBarrierOption = kWithReadBarrier>
Vladimir Markoc13fbd82018-06-04 16:16:28 +0100339 ObjPtr<mirror::ObjectArray<mirror::Object>> GetImageRoots() const
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700340 REQUIRES_SHARED(Locks::mutator_lock_);
Brian Carlstromaded5f72011-10-07 17:15:04 -0700341
Vladimir Marko4df2d802018-09-27 16:42:44 +0000342 void RelocateImage(int64_t delta);
343 void RelocateImageMethods(int64_t delta);
344 void RelocateImageObjects(int64_t delta);
Alex Light53cb16b2014-06-12 11:26:29 -0700345
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800346 uint32_t GetBootImageBegin() const {
347 return boot_image_begin_;
348 }
349
350 uint32_t GetBootImageSize() const {
351 return boot_image_size_;
352 }
353
Mathieu Chartierceb07b32015-12-10 09:33:21 -0800354 uint64_t GetDataSize() const {
355 return data_size_;
356 }
357
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800358 bool IsAppImage() const {
359 // App images currently require a boot image, if the size is non zero then it is an app image
360 // header.
361 return boot_image_size_ != 0u;
362 }
363
David Sehra49e0532017-08-25 08:05:29 -0700364 // Visit mirror::Objects in the section starting at base.
365 // TODO: Delete base parameter if it is always equal to GetImageBegin.
366 void VisitObjects(ObjectVisitor* visitor,
367 uint8_t* base,
368 PointerSize pointer_size) const
369 REQUIRES_SHARED(Locks::mutator_lock_);
370
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700371 // Visit ArtMethods in the section starting at base. Includes runtime methods.
372 // TODO: Delete base parameter if it is always equal to GetImageBegin.
Mathieu Chartier9d5956a2019-03-22 11:29:08 -0700373 // NO_THREAD_SAFETY_ANALYSIS for template visitor pattern.
374 template <typename Visitor>
375 void VisitPackedArtMethods(const Visitor& visitor,
Andreas Gampe542451c2016-07-26 09:02:02 -0700376 uint8_t* base,
Mathieu Chartier9d5956a2019-03-22 11:29:08 -0700377 PointerSize pointer_size) const NO_THREAD_SAFETY_ANALYSIS;
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700378
379 // Visit ArtMethods in the section starting at base.
380 // TODO: Delete base parameter if it is always equal to GetImageBegin.
Mathieu Chartier9d5956a2019-03-22 11:29:08 -0700381 // NO_THREAD_SAFETY_ANALYSIS for template visitor pattern.
382 template <typename Visitor>
383 void VisitPackedArtFields(const Visitor& visitor, uint8_t* base) const NO_THREAD_SAFETY_ANALYSIS;
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700384
385 template <typename Visitor>
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +0000386 void VisitPackedImTables(const Visitor& visitor,
387 uint8_t* base,
Andreas Gampe542451c2016-07-26 09:02:02 -0700388 PointerSize pointer_size) const;
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +0000389
390 template <typename Visitor>
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700391 void VisitPackedImtConflictTables(const Visitor& visitor,
392 uint8_t* base,
Andreas Gampe542451c2016-07-26 09:02:02 -0700393 PointerSize pointer_size) const;
Mathieu Chartiere42888f2016-04-14 10:49:19 -0700394
Mathieu Chartier1a842962018-11-13 15:09:51 -0800395 IterationRange<const Block*> GetBlocks() const {
396 return GetBlocks(GetImageBegin());
397 }
398
399 IterationRange<const Block*> GetBlocks(const uint8_t* image_begin) const {
400 const Block* begin = reinterpret_cast<const Block*>(image_begin + blocks_offset_);
401 return {begin, begin + blocks_count_};
402 }
403
404 // Return true if the image has any compressed blocks.
405 bool HasCompressedBlock() const {
406 return blocks_count_ != 0u;
407 }
408
409 uint32_t GetBlockCount() const {
410 return blocks_count_;
411 }
412
Alex Light53cb16b2014-06-12 11:26:29 -0700413 private:
Ian Rogers13735952014-10-08 12:43:28 -0700414 static const uint8_t kImageMagic[4];
415 static const uint8_t kImageVersion[4];
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700416
David Brazdil7b49e6c2016-09-01 11:06:18 +0100417 static std::string GetLocationFromImageLocation(const std::string& image,
418 const std::string& extension) {
419 std::string filename = image;
420 if (filename.length() <= 3) {
421 filename += "." + extension;
422 } else {
423 filename.replace(filename.length() - 3, 3, extension);
424 }
425 return filename;
426 }
427
Ian Rogers13735952014-10-08 12:43:28 -0700428 uint8_t magic_[4];
429 uint8_t version_[4];
Brian Carlstroma663ea52011-08-19 23:33:41 -0700430
Vladimir Marko7391c8c2018-11-21 17:58:44 +0000431 // The total memory reservation size for the image.
432 // For boot image or boot image extension, the primary image includes the reservation
433 // for all image files and oat files, secondary images have the reservation set to 0.
434 // App images have reservation equal to `image_size_` rounded up to page size because
435 // their oat files are mmapped independently.
436 uint32_t image_reservation_size_ = 0u;
437
438 // The number of components.
439 // For boot image or boot image extension, the primary image stores the total number
440 // of images, secondary images have this set to 0.
441 // App images have 1 component.
442 uint32_t component_count_ = 0u;
443
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800444 // Required base address for mapping the image.
Vladimir Marko312f10e2018-11-21 12:35:24 +0000445 uint32_t image_begin_ = 0u;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700446
Mathieu Chartier31e89252013-08-28 11:29:12 -0700447 // Image size, not page aligned.
Vladimir Marko312f10e2018-11-21 12:35:24 +0000448 uint32_t image_size_ = 0u;
Mathieu Chartier31e89252013-08-28 11:29:12 -0700449
Vladimir Markoc10a0c62018-11-16 11:39:22 +0000450 // Image file checksum (calculated with the checksum field set to 0).
Vladimir Marko312f10e2018-11-21 12:35:24 +0000451 uint32_t image_checksum_ = 0u;
Vladimir Markoc10a0c62018-11-16 11:39:22 +0000452
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800453 // Checksum of the oat file we link to for load time sanity check.
Vladimir Marko312f10e2018-11-21 12:35:24 +0000454 uint32_t oat_checksum_ = 0u;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700455
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800456 // Start address for oat file. Will be before oat_data_begin_ for .so files.
Vladimir Marko312f10e2018-11-21 12:35:24 +0000457 uint32_t oat_file_begin_ = 0u;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700458
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800459 // Required oat address expected by image Method::GetCode() pointers.
Vladimir Marko312f10e2018-11-21 12:35:24 +0000460 uint32_t oat_data_begin_ = 0u;
Brian Carlstrom16192862011-09-12 17:50:06 -0700461
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800462 // End of oat data address range for this image file.
Vladimir Marko312f10e2018-11-21 12:35:24 +0000463 uint32_t oat_data_end_ = 0u;
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800464
465 // End of oat file address range. will be after oat_data_end_ for
466 // .so files. Used for positioning a following alloc spaces.
Vladimir Marko312f10e2018-11-21 12:35:24 +0000467 uint32_t oat_file_end_ = 0u;
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800468
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800469 // Boot image begin and end (app image headers only).
Vladimir Marko312f10e2018-11-21 12:35:24 +0000470 uint32_t boot_image_begin_ = 0u;
471 uint32_t boot_image_size_ = 0u; // Includes heap (*.art) and code (.oat).
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800472
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800473 // Absolute address of an Object[] of objects needed to reinitialize from an image.
Vladimir Marko312f10e2018-11-21 12:35:24 +0000474 uint32_t image_roots_ = 0u;
Brian Carlstrom16192862011-09-12 17:50:06 -0700475
Mathieu Chartiere401d142015-04-22 13:56:20 -0700476 // Pointer size, this affects the size of the ArtMethods.
Vladimir Marko312f10e2018-11-21 12:35:24 +0000477 uint32_t pointer_size_ = 0u;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700478
Mathieu Chartier67ad20e2015-12-09 15:41:09 -0800479 // Image section sizes/offsets correspond to the uncompressed form.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700480 ImageSection sections_[kSectionCount];
481
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800482 // Image methods, may be inside of the boot image for app images.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700483 uint64_t image_methods_[kImageMethodsCount];
484
Mathieu Chartierceb07b32015-12-10 09:33:21 -0800485 // Data size for the image data excluding the bitmap and the header. For compressed images, this
486 // is the compressed size in the file.
Vladimir Marko312f10e2018-11-21 12:35:24 +0000487 uint32_t data_size_ = 0u;
Mathieu Chartierceb07b32015-12-10 09:33:21 -0800488
Mathieu Chartier1a842962018-11-13 15:09:51 -0800489 // Image blocks, only used for compressed images.
490 uint32_t blocks_offset_ = 0u;
491 uint32_t blocks_count_ = 0u;
492
Vladimir Marko74527972016-11-29 15:57:32 +0000493 friend class linker::ImageWriter;
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700494};
495
Chris Wailes0c61be42018-09-26 17:27:34 -0700496/*
Chris Wailesfbeef462018-10-19 14:16:35 -0700497 * This type holds the information necessary to fix up AppImage string
498 * references.
499 *
500 * The first element of the pair is an offset into the image space. If the
501 * offset is tagged (testable using HasDexCacheNativeRefTag) it indicates the location
502 * of a DexCache object that has one or more native references to managed
503 * strings that need to be fixed up. In this case the second element has no
504 * meaningful value.
505 *
506 * If the first element isn't tagged then it indicates the location of a
507 * managed object with a field that needs fixing up. In this case the second
508 * element of the pair is an object-relative offset to the field in question.
509 */
510typedef std::pair<uint32_t, uint32_t> AppImageReferenceOffsetInfo;
511
512/*
513 * Tags the last bit. Used by AppImage logic to differentiate between pointers
514 * to managed objects and pointers to native reference arrays.
Chris Wailes0c61be42018-09-26 17:27:34 -0700515 */
516template<typename T>
Mathieu Chartier1ca718e2018-10-23 12:55:34 -0700517T SetDexCacheStringNativeRefTag(T val) {
Chris Wailes0c61be42018-09-26 17:27:34 -0700518 static_assert(std::is_integral<T>::value, "Expected integral type.");
519
520 return val | 1u;
521}
522
523/*
Mathieu Chartier1ca718e2018-10-23 12:55:34 -0700524 * Tags the second last bit. Used by AppImage logic to differentiate between pointers
525 * to managed objects and pointers to native reference arrays.
526 */
527template<typename T>
528T SetDexCachePreResolvedStringNativeRefTag(T val) {
529 static_assert(std::is_integral<T>::value, "Expected integral type.");
530
531 return val | 2u;
532}
533
534/*
Chris Wailes0c61be42018-09-26 17:27:34 -0700535 * Retrieves the value of the last bit. Used by AppImage logic to
Chris Wailesfbeef462018-10-19 14:16:35 -0700536 * differentiate between pointers to managed objects and pointers to native
537 * reference arrays.
Chris Wailes0c61be42018-09-26 17:27:34 -0700538 */
539template<typename T>
Mathieu Chartier1ca718e2018-10-23 12:55:34 -0700540bool HasDexCacheStringNativeRefTag(T val) {
Chris Wailes0c61be42018-09-26 17:27:34 -0700541 static_assert(std::is_integral<T>::value, "Expected integral type.");
542
Mathieu Chartier1ca718e2018-10-23 12:55:34 -0700543 return (val & 1u) != 0u;
544}
545
546/*
547 * Retrieves the value of the second last bit. Used by AppImage logic to
548 * differentiate between pointers to managed objects and pointers to native
549 * reference arrays.
550 */
551template<typename T>
552bool HasDexCachePreResolvedStringNativeRefTag(T val) {
553 static_assert(std::is_integral<T>::value, "Expected integral type.");
554
555 return (val & 2u) != 0u;
Chris Wailes0c61be42018-09-26 17:27:34 -0700556}
557
558/*
559 * Sets the last bit of the value to 0. Used by AppImage logic to
Chris Wailesfbeef462018-10-19 14:16:35 -0700560 * differentiate between pointers to managed objects and pointers to native
561 * reference arrays.
Chris Wailes0c61be42018-09-26 17:27:34 -0700562 */
563template<typename T>
Mathieu Chartier1ca718e2018-10-23 12:55:34 -0700564T ClearDexCacheNativeRefTags(T val) {
Chris Wailes0c61be42018-09-26 17:27:34 -0700565 static_assert(std::is_integral<T>::value, "Expected integral type.");
566
Mathieu Chartier1ca718e2018-10-23 12:55:34 -0700567 return val & ~3u;
Chris Wailes0c61be42018-09-26 17:27:34 -0700568}
569
Mathieu Chartiere401d142015-04-22 13:56:20 -0700570std::ostream& operator<<(std::ostream& os, const ImageHeader::ImageMethod& policy);
571std::ostream& operator<<(std::ostream& os, const ImageHeader::ImageRoot& policy);
572std::ostream& operator<<(std::ostream& os, const ImageHeader::ImageSections& section);
573std::ostream& operator<<(std::ostream& os, const ImageSection& section);
Mathieu Chartierceb07b32015-12-10 09:33:21 -0800574std::ostream& operator<<(std::ostream& os, const ImageHeader::StorageMode& mode);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700575
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700576} // namespace art
577
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700578#endif // ART_RUNTIME_IMAGE_H_