blob: 670b76c38ff211d73a1bcf761058bf1c9ddd7357 [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
17#include "image_writer.h"
18
19#include <sys/stat.h>
20
Ian Rogers700a4022014-05-19 16:49:03 -070021#include <memory>
Brian Carlstrom7940e442013-07-12 13:46:57 -070022#include <vector>
23
24#include "base/logging.h"
25#include "base/unix_file/fd_file.h"
26#include "class_linker.h"
27#include "compiled_method.h"
28#include "dex_file-inl.h"
29#include "driver/compiler_driver.h"
Alex Light53cb16b2014-06-12 11:26:29 -070030#include "elf_file.h"
31#include "elf_utils.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070032#include "elf_writer.h"
33#include "gc/accounting/card_table-inl.h"
34#include "gc/accounting/heap_bitmap.h"
Mathieu Chartier31e89252013-08-28 11:29:12 -070035#include "gc/accounting/space_bitmap-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070036#include "gc/heap.h"
37#include "gc/space/large_object_space.h"
38#include "gc/space/space-inl.h"
39#include "globals.h"
40#include "image.h"
41#include "intern_table.h"
Mathieu Chartierad2541a2013-10-25 10:05:23 -070042#include "lock_word.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070043#include "mirror/art_field-inl.h"
44#include "mirror/art_method-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070045#include "mirror/array-inl.h"
46#include "mirror/class-inl.h"
47#include "mirror/class_loader.h"
48#include "mirror/dex_cache-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070049#include "mirror/object-inl.h"
50#include "mirror/object_array-inl.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070051#include "mirror/string-inl.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070052#include "oat.h"
53#include "oat_file.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070054#include "runtime.h"
55#include "scoped_thread_state_change.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070056#include "handle_scope-inl.h"
Igor Murashkinf5b4c502014-11-14 15:01:59 -080057
58#include <numeric>
Brian Carlstrom7940e442013-07-12 13:46:57 -070059
Brian Carlstromea46f952013-07-30 01:26:50 -070060using ::art::mirror::ArtField;
61using ::art::mirror::ArtMethod;
Brian Carlstrom3e3d5912013-07-18 00:19:45 -070062using ::art::mirror::Class;
63using ::art::mirror::DexCache;
64using ::art::mirror::EntryPointFromInterpreter;
Brian Carlstrom3e3d5912013-07-18 00:19:45 -070065using ::art::mirror::Object;
66using ::art::mirror::ObjectArray;
67using ::art::mirror::String;
Brian Carlstrom7940e442013-07-12 13:46:57 -070068
69namespace art {
70
Igor Murashkinf5b4c502014-11-14 15:01:59 -080071// Separate objects into multiple bins to optimize dirty memory use.
72static constexpr bool kBinObjects = true;
73
Vladimir Markof4da6752014-08-01 19:04:18 +010074bool ImageWriter::PrepareImageAddressSpace() {
Mathieu Chartier2d721012014-11-10 11:08:06 -080075 target_ptr_size_ = InstructionSetPointerSize(compiler_driver_.GetInstructionSet());
Vladimir Markof4da6752014-08-01 19:04:18 +010076 {
77 Thread::Current()->TransitionFromSuspendedToRunnable();
78 PruneNonImageClasses(); // Remove junk
79 ComputeLazyFieldsForImageClasses(); // Add useful information
Vladimir Marko3389ca72014-12-03 14:35:54 +000080 ProcessStrings();
Vladimir Markof4da6752014-08-01 19:04:18 +010081 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
82 }
83 gc::Heap* heap = Runtime::Current()->GetHeap();
84 heap->CollectGarbage(false); // Remove garbage.
85
86 if (!AllocMemory()) {
87 return false;
88 }
89
90 if (kIsDebugBuild) {
91 ScopedObjectAccess soa(Thread::Current());
92 CheckNonImageClassesRemoved();
93 }
94
95 Thread::Current()->TransitionFromSuspendedToRunnable();
96 CalculateNewObjectOffsets();
97 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
98
99 return true;
100}
101
Brian Carlstrom7940e442013-07-12 13:46:57 -0700102bool ImageWriter::Write(const std::string& image_filename,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700103 const std::string& oat_filename,
104 const std::string& oat_location) {
105 CHECK(!image_filename.empty());
106
Brian Carlstrom7940e442013-07-12 13:46:57 -0700107 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700108
Ian Rogers700a4022014-05-19 16:49:03 -0700109 std::unique_ptr<File> oat_file(OS::OpenFileReadWrite(oat_filename.c_str()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700110 if (oat_file.get() == NULL) {
Andreas Gampe88ec7f42014-11-05 10:18:32 -0800111 PLOG(ERROR) << "Failed to open oat file " << oat_filename << " for " << oat_location;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700112 return false;
113 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700114 std::string error_msg;
Alex Lighta59dd802014-07-02 16:28:08 -0700115 oat_file_ = OatFile::OpenReadable(oat_file.get(), oat_location, &error_msg);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700116 if (oat_file_ == nullptr) {
Andreas Gampe88ec7f42014-11-05 10:18:32 -0800117 PLOG(ERROR) << "Failed to open writable oat file " << oat_filename << " for " << oat_location
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700118 << ": " << error_msg;
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700119 return false;
120 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700121 CHECK_EQ(class_linker->RegisterOatFile(oat_file_), oat_file_);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700122
Ian Rogers848871b2013-08-05 10:56:33 -0700123 interpreter_to_interpreter_bridge_offset_ =
124 oat_file_->GetOatHeader().GetInterpreterToInterpreterBridgeOffset();
125 interpreter_to_compiled_code_bridge_offset_ =
126 oat_file_->GetOatHeader().GetInterpreterToCompiledCodeBridgeOffset();
127
128 jni_dlsym_lookup_offset_ = oat_file_->GetOatHeader().GetJniDlsymLookupOffset();
129
Andreas Gampe2da88232014-02-27 12:26:20 -0800130 quick_generic_jni_trampoline_offset_ =
131 oat_file_->GetOatHeader().GetQuickGenericJniTrampolineOffset();
Jeff Hao88474b42013-10-23 16:24:40 -0700132 quick_imt_conflict_trampoline_offset_ =
133 oat_file_->GetOatHeader().GetQuickImtConflictTrampolineOffset();
Ian Rogers848871b2013-08-05 10:56:33 -0700134 quick_resolution_trampoline_offset_ =
135 oat_file_->GetOatHeader().GetQuickResolutionTrampolineOffset();
136 quick_to_interpreter_bridge_offset_ =
137 oat_file_->GetOatHeader().GetQuickToInterpreterBridgeOffset();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700138
Brian Carlstrom7940e442013-07-12 13:46:57 -0700139 size_t oat_loaded_size = 0;
140 size_t oat_data_offset = 0;
141 ElfWriter::GetOatElfInformation(oat_file.get(), oat_loaded_size, oat_data_offset);
Alex Light53cb16b2014-06-12 11:26:29 -0700142
Vladimir Markof4da6752014-08-01 19:04:18 +0100143 Thread::Current()->TransitionFromSuspendedToRunnable();
144 CreateHeader(oat_loaded_size, oat_data_offset);
145 CopyAndFixupObjects();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700146 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
147
Vladimir Markof4da6752014-08-01 19:04:18 +0100148 SetOatChecksumFromElfFile(oat_file.get());
149
Andreas Gampe4303ba92014-11-06 01:00:46 -0800150 if (oat_file->FlushCloseOrErase() != 0) {
151 LOG(ERROR) << "Failed to flush and close oat file " << oat_filename << " for " << oat_location;
152 return false;
153 }
154
Ian Rogers700a4022014-05-19 16:49:03 -0700155 std::unique_ptr<File> image_file(OS::CreateEmptyFile(image_filename.c_str()));
Mathieu Chartier31e89252013-08-28 11:29:12 -0700156 ImageHeader* image_header = reinterpret_cast<ImageHeader*>(image_->Begin());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700157 if (image_file.get() == NULL) {
158 LOG(ERROR) << "Failed to open image file " << image_filename;
159 return false;
160 }
161 if (fchmod(image_file->Fd(), 0644) != 0) {
162 PLOG(ERROR) << "Failed to make image file world readable: " << image_filename;
Andreas Gampe4303ba92014-11-06 01:00:46 -0800163 image_file->Erase();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700164 return EXIT_FAILURE;
165 }
Mathieu Chartier31e89252013-08-28 11:29:12 -0700166
167 // Write out the image.
168 CHECK_EQ(image_end_, image_header->GetImageSize());
169 if (!image_file->WriteFully(image_->Begin(), image_end_)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700170 PLOG(ERROR) << "Failed to write image file " << image_filename;
Andreas Gampe4303ba92014-11-06 01:00:46 -0800171 image_file->Erase();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700172 return false;
173 }
Mathieu Chartier31e89252013-08-28 11:29:12 -0700174
175 // Write out the image bitmap at the page aligned start of the image end.
176 CHECK_ALIGNED(image_header->GetImageBitmapOffset(), kPageSize);
177 if (!image_file->Write(reinterpret_cast<char*>(image_bitmap_->Begin()),
178 image_header->GetImageBitmapSize(),
179 image_header->GetImageBitmapOffset())) {
180 PLOG(ERROR) << "Failed to write image file " << image_filename;
Andreas Gampe4303ba92014-11-06 01:00:46 -0800181 image_file->Erase();
Mathieu Chartier31e89252013-08-28 11:29:12 -0700182 return false;
183 }
184
Andreas Gampe4303ba92014-11-06 01:00:46 -0800185 if (image_file->FlushCloseOrErase() != 0) {
186 PLOG(ERROR) << "Failed to flush and close image file " << image_filename;
187 return false;
188 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700189 return true;
190}
191
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800192void ImageWriter::SetImageOffset(mirror::Object* object,
193 ImageWriter::BinSlot bin_slot,
194 size_t offset) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700195 DCHECK(object != nullptr);
196 DCHECK_NE(offset, 0U);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700197 mirror::Object* obj = reinterpret_cast<mirror::Object*>(image_->Begin() + offset);
198 DCHECK_ALIGNED(obj, kObjectAlignment);
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800199
200 image_bitmap_->Set(obj); // Mark the obj as mutated, since we will end up changing it.
201 {
202 // Remember the object-inside-of-the-image's hash code so we can restore it after the copy.
203 auto hash_it = saved_hashes_map_.find(bin_slot);
204 if (hash_it != saved_hashes_map_.end()) {
205 std::pair<BinSlot, uint32_t> slot_hash = *hash_it;
206 saved_hashes_.push_back(std::make_pair(obj, slot_hash.second));
207 saved_hashes_map_.erase(hash_it);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700208 }
Mathieu Chartier31e89252013-08-28 11:29:12 -0700209 }
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800210 // The object is already deflated from when we set the bin slot. Just overwrite the lock word.
Mathieu Chartier4d7f61d2014-04-17 14:43:39 -0700211 object->SetLockWord(LockWord::FromForwardingAddress(offset), false);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700212 DCHECK(IsImageOffsetAssigned(object));
213}
214
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800215void ImageWriter::AssignImageOffset(mirror::Object* object, ImageWriter::BinSlot bin_slot) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700216 DCHECK(object != nullptr);
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800217 DCHECK_NE(image_objects_offset_begin_, 0u);
218
219 size_t previous_bin_sizes = GetBinSizeSum(bin_slot.GetBin()); // sum sizes in [0..bin#)
220 size_t new_offset = image_objects_offset_begin_ + previous_bin_sizes + bin_slot.GetIndex();
221 DCHECK_ALIGNED(new_offset, kObjectAlignment);
222
223 SetImageOffset(object, bin_slot, new_offset);
224 DCHECK_LT(new_offset, image_end_);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700225}
226
Ian Rogersef7d42f2014-01-06 12:55:46 -0800227bool ImageWriter::IsImageOffsetAssigned(mirror::Object* object) const {
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800228 // Will also return true if the bin slot was assigned since we are reusing the lock word.
Mathieu Chartier590fee92013-09-13 13:46:47 -0700229 DCHECK(object != nullptr);
Mathieu Chartier4d7f61d2014-04-17 14:43:39 -0700230 return object->GetLockWord(false).GetState() == LockWord::kForwardingAddress;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700231}
232
Ian Rogersef7d42f2014-01-06 12:55:46 -0800233size_t ImageWriter::GetImageOffset(mirror::Object* object) const {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700234 DCHECK(object != nullptr);
235 DCHECK(IsImageOffsetAssigned(object));
Mathieu Chartier4d7f61d2014-04-17 14:43:39 -0700236 LockWord lock_word = object->GetLockWord(false);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700237 size_t offset = lock_word.ForwardingAddress();
238 DCHECK_LT(offset, image_end_);
239 return offset;
Mathieu Chartier31e89252013-08-28 11:29:12 -0700240}
241
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800242void ImageWriter::SetImageBinSlot(mirror::Object* object, BinSlot bin_slot) {
243 DCHECK(object != nullptr);
244 DCHECK(!IsImageOffsetAssigned(object));
245 DCHECK(!IsImageBinSlotAssigned(object));
246
247 // Before we stomp over the lock word, save the hash code for later.
248 Monitor::Deflate(Thread::Current(), object);;
249 LockWord lw(object->GetLockWord(false));
250 switch (lw.GetState()) {
251 case LockWord::kFatLocked: {
252 LOG(FATAL) << "Fat locked object " << object << " found during object copy";
253 break;
254 }
255 case LockWord::kThinLocked: {
256 LOG(FATAL) << "Thin locked object " << object << " found during object copy";
257 break;
258 }
259 case LockWord::kUnlocked:
260 // No hash, don't need to save it.
261 break;
262 case LockWord::kHashCode:
263 saved_hashes_map_[bin_slot] = lw.GetHashCode();
264 break;
265 default:
266 LOG(FATAL) << "Unreachable.";
267 UNREACHABLE();
268 }
269 object->SetLockWord(LockWord::FromForwardingAddress(static_cast<uint32_t>(bin_slot)),
270 false);
271 DCHECK(IsImageBinSlotAssigned(object));
272}
273
274void ImageWriter::AssignImageBinSlot(mirror::Object* object) {
275 DCHECK(object != nullptr);
Jeff Haoc7d11882015-02-03 15:08:39 -0800276 size_t object_size = object->SizeOf();
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800277
278 // The magic happens here. We segregate objects into different bins based
279 // on how likely they are to get dirty at runtime.
280 //
281 // Likely-to-dirty objects get packed together into the same bin so that
282 // at runtime their page dirtiness ratio (how many dirty objects a page has) is
283 // maximized.
284 //
285 // This means more pages will stay either clean or shared dirty (with zygote) and
286 // the app will use less of its own (private) memory.
287 Bin bin = kBinRegular;
288
289 if (kBinObjects) {
290 //
291 // Changing the bin of an object is purely a memory-use tuning.
292 // It has no change on runtime correctness.
293 //
294 // Memory analysis has determined that the following types of objects get dirtied
295 // the most:
296 //
297 // * Class'es which are verified [their clinit runs only at runtime]
298 // - classes in general [because their static fields get overwritten]
299 // - initialized classes with all-final statics are unlikely to be ever dirty,
300 // so bin them separately
301 // * Art Methods that are:
302 // - native [their native entry point is not looked up until runtime]
303 // - have declaring classes that aren't initialized
304 // [their interpreter/quick entry points are trampolines until the class
305 // becomes initialized]
306 //
307 // We also assume the following objects get dirtied either never or extremely rarely:
308 // * Strings (they are immutable)
309 // * Art methods that aren't native and have initialized declared classes
310 //
311 // We assume that "regular" bin objects are highly unlikely to become dirtied,
312 // so packing them together will not result in a noticeably tighter dirty-to-clean ratio.
313 //
314 if (object->IsClass()) {
315 bin = kBinClassVerified;
316 mirror::Class* klass = object->AsClass();
317
318 if (klass->GetStatus() == Class::kStatusInitialized) {
319 bin = kBinClassInitialized;
320
321 // If the class's static fields are all final, put it into a separate bin
322 // since it's very likely it will stay clean.
323 uint32_t num_static_fields = klass->NumStaticFields();
324 if (num_static_fields == 0) {
325 bin = kBinClassInitializedFinalStatics;
326 } else {
327 // Maybe all the statics are final?
328 bool all_final = true;
329 for (uint32_t i = 0; i < num_static_fields; ++i) {
330 ArtField* field = klass->GetStaticField(i);
331 if (!field->IsFinal()) {
332 all_final = false;
333 break;
334 }
335 }
336
337 if (all_final) {
338 bin = kBinClassInitializedFinalStatics;
339 }
340 }
341 }
342 } else if (object->IsArtMethod<kVerifyNone>()) {
343 mirror::ArtMethod* art_method = down_cast<ArtMethod*>(object);
344 if (art_method->IsNative()) {
345 bin = kBinArtMethodNative;
346 } else {
347 mirror::Class* declaring_class = art_method->GetDeclaringClass();
348 if (declaring_class->GetStatus() != Class::kStatusInitialized) {
349 bin = kBinArtMethodNotInitialized;
350 } else {
351 // This is highly unlikely to dirty since there's no entry points to mutate.
352 bin = kBinArtMethodsManagedInitialized;
353 }
354 }
355 } else if (object->GetClass<kVerifyNone>()->IsStringClass()) {
356 bin = kBinString; // Strings are almost always immutable (except for object header).
357 } // else bin = kBinRegular
358 }
359
360 size_t current_offset = bin_slot_sizes_[bin]; // How many bytes the current bin is at (aligned).
361 // Move the current bin size up to accomodate the object we just assigned a bin slot.
362 size_t offset_delta = RoundUp(object_size, kObjectAlignment); // 64-bit alignment
363 bin_slot_sizes_[bin] += offset_delta;
364
365 BinSlot new_bin_slot(bin, current_offset);
366 SetImageBinSlot(object, new_bin_slot);
367
368 ++bin_slot_count_[bin];
369
370 DCHECK_LT(GetBinSizeSum(), image_->Size());
371
372 // Grow the image closer to the end by the object we just assigned.
373 image_end_ += offset_delta;
374 DCHECK_LT(image_end_, image_->Size());
375}
376
377bool ImageWriter::IsImageBinSlotAssigned(mirror::Object* object) const {
378 DCHECK(object != nullptr);
379
380 // We always stash the bin slot into a lockword, in the 'forwarding address' state.
381 // If it's in some other state, then we haven't yet assigned an image bin slot.
382 if (object->GetLockWord(false).GetState() != LockWord::kForwardingAddress) {
383 return false;
384 } else if (kIsDebugBuild) {
385 LockWord lock_word = object->GetLockWord(false);
386 size_t offset = lock_word.ForwardingAddress();
387 BinSlot bin_slot(offset);
388 DCHECK_LT(bin_slot.GetIndex(), bin_slot_sizes_[bin_slot.GetBin()])
389 << "bin slot offset should not exceed the size of that bin";
390 }
391 return true;
392}
393
394ImageWriter::BinSlot ImageWriter::GetImageBinSlot(mirror::Object* object) const {
395 DCHECK(object != nullptr);
396 DCHECK(IsImageBinSlotAssigned(object));
397
398 LockWord lock_word = object->GetLockWord(false);
399 size_t offset = lock_word.ForwardingAddress(); // TODO: ForwardingAddress should be uint32_t
400 DCHECK_LE(offset, std::numeric_limits<uint32_t>::max());
401
402 BinSlot bin_slot(static_cast<uint32_t>(offset));
403 DCHECK_LT(bin_slot.GetIndex(), bin_slot_sizes_[bin_slot.GetBin()]);
404
405 return bin_slot;
406}
407
Brian Carlstrom7940e442013-07-12 13:46:57 -0700408bool ImageWriter::AllocMemory() {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700409 size_t length = RoundUp(Runtime::Current()->GetHeap()->GetTotalMemory(), kPageSize);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700410 std::string error_msg;
Mathieu Chartier590fee92013-09-13 13:46:47 -0700411 image_.reset(MemMap::MapAnonymous("image writer image", NULL, length, PROT_READ | PROT_WRITE,
Ian Rogers3cd86d62014-08-14 08:53:12 -0700412 false, &error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700413 if (UNLIKELY(image_.get() == nullptr)) {
414 LOG(ERROR) << "Failed to allocate memory for image file generation: " << error_msg;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700415 return false;
416 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700417
418 // Create the image bitmap.
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700419 image_bitmap_.reset(gc::accounting::ContinuousSpaceBitmap::Create("image bitmap", image_->Begin(),
420 length));
Mathieu Chartier590fee92013-09-13 13:46:47 -0700421 if (image_bitmap_.get() == nullptr) {
422 LOG(ERROR) << "Failed to allocate memory for image bitmap";
423 return false;
424 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700425 return true;
426}
427
428void ImageWriter::ComputeLazyFieldsForImageClasses() {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700429 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700430 class_linker->VisitClassesWithoutClassesLock(ComputeLazyFieldsForClassesVisitor, NULL);
431}
432
433bool ImageWriter::ComputeLazyFieldsForClassesVisitor(Class* c, void* /*arg*/) {
Mathieu Chartierf8322842014-05-16 10:59:25 -0700434 Thread* self = Thread::Current();
435 StackHandleScope<1> hs(self);
436 mirror::Class::ComputeName(hs.NewHandle(c));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700437 return true;
438}
439
Mathieu Chartierfd04b6f2014-11-14 19:34:18 -0800440// Count the number of strings in the heap and put the result in arg as a size_t pointer.
441static void CountStringsCallback(Object* obj, void* arg)
442 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
443 if (obj->GetClass()->IsStringClass()) {
444 ++*reinterpret_cast<size_t*>(arg);
445 }
446}
447
448// Collect all the java.lang.String in the heap and put them in the output strings_ array.
449class StringCollector {
450 public:
451 StringCollector(Handle<mirror::ObjectArray<mirror::String>> strings, size_t index)
452 : strings_(strings), index_(index) {
453 }
454 static void Callback(Object* obj, void* arg) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
455 auto* collector = reinterpret_cast<StringCollector*>(arg);
456 if (obj->GetClass()->IsStringClass()) {
457 collector->strings_->SetWithoutChecks<false>(collector->index_++, obj->AsString());
458 }
459 }
460 size_t GetIndex() const {
461 return index_;
462 }
463
464 private:
465 Handle<mirror::ObjectArray<mirror::String>> strings_;
466 size_t index_;
467};
468
469// Compare strings based on length, used for sorting strings by length / reverse length.
Vladimir Markofaeda182014-12-04 14:52:25 +0000470class LexicographicalStringComparator {
Mathieu Chartierfd04b6f2014-11-14 19:34:18 -0800471 public:
Vladimir Markofaeda182014-12-04 14:52:25 +0000472 bool operator()(const mirror::HeapReference<mirror::String>& lhs,
473 const mirror::HeapReference<mirror::String>& rhs) const
474 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
475 mirror::String* lhs_s = lhs.AsMirrorPtr();
476 mirror::String* rhs_s = rhs.AsMirrorPtr();
477 uint16_t* lhs_begin = lhs_s->GetCharArray()->GetData() + lhs_s->GetOffset();
478 uint16_t* rhs_begin = rhs_s->GetCharArray()->GetData() + rhs_s->GetOffset();
479 return std::lexicographical_compare(lhs_begin, lhs_begin + lhs_s->GetLength(),
480 rhs_begin, rhs_begin + rhs_s->GetLength());
Mathieu Chartierfd04b6f2014-11-14 19:34:18 -0800481 }
Mathieu Chartierfd04b6f2014-11-14 19:34:18 -0800482};
483
Vladimir Markofaeda182014-12-04 14:52:25 +0000484static bool IsPrefix(mirror::String* pref, mirror::String* full)
485 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
486 if (pref->GetLength() > full->GetLength()) {
487 return false;
Mathieu Chartierfd04b6f2014-11-14 19:34:18 -0800488 }
Vladimir Markofaeda182014-12-04 14:52:25 +0000489 uint16_t* pref_begin = pref->GetCharArray()->GetData() + pref->GetOffset();
490 uint16_t* full_begin = full->GetCharArray()->GetData() + full->GetOffset();
491 return std::equal(pref_begin, pref_begin + pref->GetLength(), full_begin);
492}
Mathieu Chartierfd04b6f2014-11-14 19:34:18 -0800493
494void ImageWriter::ProcessStrings() {
495 size_t total_strings = 0;
496 gc::Heap* heap = Runtime::Current()->GetHeap();
497 ClassLinker* cl = Runtime::Current()->GetClassLinker();
Hiroshi Yamauchi0c8c3032015-01-16 16:54:35 -0800498 // Count the strings.
499 heap->VisitObjects(CountStringsCallback, &total_strings);
Mathieu Chartierfd04b6f2014-11-14 19:34:18 -0800500 Thread* self = Thread::Current();
501 StackHandleScope<1> hs(self);
502 auto strings = hs.NewHandle(cl->AllocStringArray(self, total_strings));
503 StringCollector string_collector(strings, 0U);
Hiroshi Yamauchi0c8c3032015-01-16 16:54:35 -0800504 // Read strings into the array.
505 heap->VisitObjects(StringCollector::Callback, &string_collector);
Mathieu Chartierfd04b6f2014-11-14 19:34:18 -0800506 // Some strings could have gotten freed if AllocStringArray caused a GC.
507 CHECK_LE(string_collector.GetIndex(), total_strings);
508 total_strings = string_collector.GetIndex();
Vladimir Markofaeda182014-12-04 14:52:25 +0000509 auto* strings_begin = reinterpret_cast<mirror::HeapReference<mirror::String>*>(
510 strings->GetRawData(sizeof(mirror::HeapReference<mirror::String>), 0));
511 std::sort(strings_begin, strings_begin + total_strings, LexicographicalStringComparator());
Mathieu Chartierfd04b6f2014-11-14 19:34:18 -0800512 // Characters of strings which are non equal prefix of another string (not the same string).
513 // We don't count the savings from equal strings since these would get interned later anyways.
514 size_t prefix_saved_chars = 0;
Vladimir Markofaeda182014-12-04 14:52:25 +0000515 // Count characters needed for the strings.
516 size_t num_chars = 0u;
517 mirror::String* prev_s = nullptr;
518 for (size_t idx = 0; idx != total_strings; ++idx) {
519 mirror::String* s = strings->GetWithoutChecks(idx);
Mathieu Chartierfd04b6f2014-11-14 19:34:18 -0800520 size_t length = s->GetLength();
Vladimir Markofaeda182014-12-04 14:52:25 +0000521 num_chars += length;
522 if (prev_s != nullptr && IsPrefix(prev_s, s)) {
523 size_t prev_length = prev_s->GetLength();
524 num_chars -= prev_length;
525 if (prev_length != length) {
526 prefix_saved_chars += prev_length;
Mathieu Chartierfd04b6f2014-11-14 19:34:18 -0800527 }
Mathieu Chartierfd04b6f2014-11-14 19:34:18 -0800528 }
Vladimir Markofaeda182014-12-04 14:52:25 +0000529 prev_s = s;
Mathieu Chartierfd04b6f2014-11-14 19:34:18 -0800530 }
Vladimir Markofaeda182014-12-04 14:52:25 +0000531 // Create character array, copy characters and point the strings there.
532 mirror::CharArray* array = mirror::CharArray::Alloc(self, num_chars);
Andreas Gampe245ee002014-12-04 21:25:04 -0800533 string_data_array_ = array;
Vladimir Markofaeda182014-12-04 14:52:25 +0000534 uint16_t* array_data = array->GetData();
535 size_t pos = 0u;
536 prev_s = nullptr;
537 for (size_t idx = 0; idx != total_strings; ++idx) {
538 mirror::String* s = strings->GetWithoutChecks(idx);
539 uint16_t* s_data = s->GetCharArray()->GetData() + s->GetOffset();
540 int32_t s_length = s->GetLength();
541 int32_t prefix_length = 0u;
542 if (idx != 0u && IsPrefix(prev_s, s)) {
543 prefix_length = prev_s->GetLength();
544 }
545 memcpy(array_data + pos, s_data + prefix_length, (s_length - prefix_length) * sizeof(*s_data));
546 s->SetOffset(pos - prefix_length);
547 s->SetArray(array);
548 pos += s_length - prefix_length;
549 prev_s = s;
Mathieu Chartierfd04b6f2014-11-14 19:34:18 -0800550 }
Vladimir Markofaeda182014-12-04 14:52:25 +0000551 CHECK_EQ(pos, num_chars);
552
Andreas Gampedc843012015-01-20 16:17:19 -0800553 if (kIsDebugBuild || VLOG_IS_ON(compiler)) {
554 LOG(INFO) << "Total # image strings=" << total_strings << " combined length="
555 << num_chars << " prefix saved chars=" << prefix_saved_chars;
556 }
Mathieu Chartierfd04b6f2014-11-14 19:34:18 -0800557 ComputeEagerResolvedStrings();
558}
559
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700560void ImageWriter::ComputeEagerResolvedStringsCallback(Object* obj, void* arg ATTRIBUTE_UNUSED) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700561 if (!obj->GetClass()->IsStringClass()) {
562 return;
563 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700564 mirror::String* string = obj->AsString();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700565 const uint16_t* utf16_string = string->GetCharArray()->GetData() + string->GetOffset();
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -0700566 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
567 ReaderMutexLock mu(Thread::Current(), *class_linker->DexLock());
568 size_t dex_cache_count = class_linker->GetDexCacheCount();
569 for (size_t i = 0; i < dex_cache_count; ++i) {
570 DexCache* dex_cache = class_linker->GetDexCache(i);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700571 const DexFile& dex_file = *dex_cache->GetDexFile();
Ian Rogers24c534d2013-11-14 00:15:00 -0800572 const DexFile::StringId* string_id;
573 if (UNLIKELY(string->GetLength() == 0)) {
574 string_id = dex_file.FindStringId("");
575 } else {
576 string_id = dex_file.FindStringId(utf16_string);
577 }
Mathieu Chartier590fee92013-09-13 13:46:47 -0700578 if (string_id != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700579 // This string occurs in this dex file, assign the dex cache entry.
580 uint32_t string_idx = dex_file.GetIndexForStringId(*string_id);
581 if (dex_cache->GetResolvedString(string_idx) == NULL) {
582 dex_cache->SetResolvedString(string_idx, string);
583 }
584 }
585 }
586}
587
Mathieu Chartierfd04b6f2014-11-14 19:34:18 -0800588void ImageWriter::ComputeEagerResolvedStrings() {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700589 Runtime::Current()->GetHeap()->VisitObjects(ComputeEagerResolvedStringsCallback, this);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700590}
591
Ian Rogersef7d42f2014-01-06 12:55:46 -0800592bool ImageWriter::IsImageClass(Class* klass) {
Ian Rogers1ff3c982014-08-12 02:30:58 -0700593 std::string temp;
594 return compiler_driver_.IsImageClass(klass->GetDescriptor(&temp));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700595}
596
597struct NonImageClasses {
598 ImageWriter* image_writer;
599 std::set<std::string>* non_image_classes;
600};
601
602void ImageWriter::PruneNonImageClasses() {
603 if (compiler_driver_.GetImageClasses() == NULL) {
604 return;
605 }
606 Runtime* runtime = Runtime::Current();
607 ClassLinker* class_linker = runtime->GetClassLinker();
608
609 // Make a list of classes we would like to prune.
610 std::set<std::string> non_image_classes;
611 NonImageClasses context;
612 context.image_writer = this;
613 context.non_image_classes = &non_image_classes;
614 class_linker->VisitClasses(NonImageClassesVisitor, &context);
615
616 // Remove the undesired classes from the class roots.
Mathieu Chartier02e25112013-08-14 16:14:24 -0700617 for (const std::string& it : non_image_classes) {
Mathieu Chartierc2e20622014-11-03 11:41:47 -0800618 bool result = class_linker->RemoveClass(it.c_str(), NULL);
619 DCHECK(result);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700620 }
621
622 // Clear references to removed classes from the DexCaches.
Brian Carlstromea46f952013-07-30 01:26:50 -0700623 ArtMethod* resolution_method = runtime->GetResolutionMethod();
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -0700624 ReaderMutexLock mu(Thread::Current(), *class_linker->DexLock());
625 size_t dex_cache_count = class_linker->GetDexCacheCount();
626 for (size_t idx = 0; idx < dex_cache_count; ++idx) {
627 DexCache* dex_cache = class_linker->GetDexCache(idx);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700628 for (size_t i = 0; i < dex_cache->NumResolvedTypes(); i++) {
629 Class* klass = dex_cache->GetResolvedType(i);
630 if (klass != NULL && !IsImageClass(klass)) {
631 dex_cache->SetResolvedType(i, NULL);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700632 }
633 }
634 for (size_t i = 0; i < dex_cache->NumResolvedMethods(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700635 ArtMethod* method = dex_cache->GetResolvedMethod(i);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700636 if (method != NULL && !IsImageClass(method->GetDeclaringClass())) {
637 dex_cache->SetResolvedMethod(i, resolution_method);
638 }
639 }
640 for (size_t i = 0; i < dex_cache->NumResolvedFields(); i++) {
Brian Carlstromea46f952013-07-30 01:26:50 -0700641 ArtField* field = dex_cache->GetResolvedField(i);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700642 if (field != NULL && !IsImageClass(field->GetDeclaringClass())) {
643 dex_cache->SetResolvedField(i, NULL);
644 }
645 }
646 }
647}
648
649bool ImageWriter::NonImageClassesVisitor(Class* klass, void* arg) {
650 NonImageClasses* context = reinterpret_cast<NonImageClasses*>(arg);
651 if (!context->image_writer->IsImageClass(klass)) {
Ian Rogers1ff3c982014-08-12 02:30:58 -0700652 std::string temp;
653 context->non_image_classes->insert(klass->GetDescriptor(&temp));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700654 }
655 return true;
656}
657
Mathieu Chartierfd04b6f2014-11-14 19:34:18 -0800658void ImageWriter::CheckNonImageClassesRemoved() {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700659 if (compiler_driver_.GetImageClasses() != nullptr) {
660 gc::Heap* heap = Runtime::Current()->GetHeap();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700661 heap->VisitObjects(CheckNonImageClassesRemovedCallback, this);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700662 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700663}
664
665void ImageWriter::CheckNonImageClassesRemovedCallback(Object* obj, void* arg) {
666 ImageWriter* image_writer = reinterpret_cast<ImageWriter*>(arg);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700667 if (obj->IsClass()) {
668 Class* klass = obj->AsClass();
669 if (!image_writer->IsImageClass(klass)) {
670 image_writer->DumpImageClasses();
Ian Rogers1ff3c982014-08-12 02:30:58 -0700671 std::string temp;
672 CHECK(image_writer->IsImageClass(klass)) << klass->GetDescriptor(&temp)
Mathieu Chartier590fee92013-09-13 13:46:47 -0700673 << " " << PrettyDescriptor(klass);
674 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700675 }
676}
677
678void ImageWriter::DumpImageClasses() {
Ian Rogers1ff3c982014-08-12 02:30:58 -0700679 const std::set<std::string>* image_classes = compiler_driver_.GetImageClasses();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700680 CHECK(image_classes != NULL);
Mathieu Chartier02e25112013-08-14 16:14:24 -0700681 for (const std::string& image_class : *image_classes) {
682 LOG(INFO) << " " << image_class;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700683 }
684}
685
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800686void ImageWriter::CalculateObjectBinSlots(Object* obj) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700687 DCHECK(obj != NULL);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700688 // if it is a string, we want to intern it if its not interned.
689 if (obj->GetClass()->IsStringClass()) {
690 // we must be an interned string that was forward referenced and already assigned
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800691 if (IsImageBinSlotAssigned(obj)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700692 DCHECK_EQ(obj, obj->AsString()->Intern());
693 return;
694 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700695 mirror::String* const interned = obj->AsString()->Intern();
696 if (obj != interned) {
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800697 if (!IsImageBinSlotAssigned(interned)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700698 // interned obj is after us, allocate its location early
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800699 AssignImageBinSlot(interned);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700700 }
701 // point those looking for this object to the interned version.
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800702 SetImageBinSlot(obj, GetImageBinSlot(interned));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700703 return;
704 }
705 // else (obj == interned), nothing to do but fall through to the normal case
706 }
707
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800708 AssignImageBinSlot(obj);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700709}
710
711ObjectArray<Object>* ImageWriter::CreateImageRoots() const {
712 Runtime* runtime = Runtime::Current();
713 ClassLinker* class_linker = runtime->GetClassLinker();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700714 Thread* self = Thread::Current();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700715 StackHandleScope<3> hs(self);
716 Handle<Class> object_array_class(hs.NewHandle(
717 class_linker->FindSystemClass(self, "[Ljava/lang/Object;")));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700718
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -0700719 // build an Object[] of all the DexCaches used in the source_space_.
720 // Since we can't hold the dex lock when allocating the dex_caches
721 // ObjectArray, we lock the dex lock twice, first to get the number
722 // of dex caches first and then lock it again to copy the dex
723 // caches. We check that the number of dex caches does not change.
724 size_t dex_cache_count;
725 {
726 ReaderMutexLock mu(Thread::Current(), *class_linker->DexLock());
727 dex_cache_count = class_linker->GetDexCacheCount();
728 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700729 Handle<ObjectArray<Object>> dex_caches(
730 hs.NewHandle(ObjectArray<Object>::Alloc(self, object_array_class.Get(),
Hiroshi Yamauchie9e3e692014-06-24 14:31:37 -0700731 dex_cache_count)));
732 CHECK(dex_caches.Get() != nullptr) << "Failed to allocate a dex cache array.";
733 {
734 ReaderMutexLock mu(Thread::Current(), *class_linker->DexLock());
735 CHECK_EQ(dex_cache_count, class_linker->GetDexCacheCount())
736 << "The number of dex caches changed.";
737 for (size_t i = 0; i < dex_cache_count; ++i) {
738 dex_caches->Set<false>(i, class_linker->GetDexCache(i));
739 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700740 }
741
742 // build an Object[] of the roots needed to restore the runtime
Ian Rogers700a4022014-05-19 16:49:03 -0700743 Handle<ObjectArray<Object>> image_roots(hs.NewHandle(
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700744 ObjectArray<Object>::Alloc(self, object_array_class.Get(), ImageHeader::kImageRootsMax)));
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100745 image_roots->Set<false>(ImageHeader::kResolutionMethod, runtime->GetResolutionMethod());
746 image_roots->Set<false>(ImageHeader::kImtConflictMethod, runtime->GetImtConflictMethod());
Mathieu Chartier2d2621a2014-10-23 16:48:06 -0700747 image_roots->Set<false>(ImageHeader::kImtUnimplementedMethod,
748 runtime->GetImtUnimplementedMethod());
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100749 image_roots->Set<false>(ImageHeader::kDefaultImt, runtime->GetDefaultImt());
750 image_roots->Set<false>(ImageHeader::kCalleeSaveMethod,
751 runtime->GetCalleeSaveMethod(Runtime::kSaveAll));
752 image_roots->Set<false>(ImageHeader::kRefsOnlySaveMethod,
753 runtime->GetCalleeSaveMethod(Runtime::kRefsOnly));
754 image_roots->Set<false>(ImageHeader::kRefsAndArgsSaveMethod,
755 runtime->GetCalleeSaveMethod(Runtime::kRefsAndArgs));
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700756 image_roots->Set<false>(ImageHeader::kDexCaches, dex_caches.Get());
Sebastien Hertzd2fe10a2014-01-15 10:20:56 +0100757 image_roots->Set<false>(ImageHeader::kClassRoots, class_linker->GetClassRoots());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700758 for (int i = 0; i < ImageHeader::kImageRootsMax; i++) {
759 CHECK(image_roots->Get(i) != NULL);
760 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700761 return image_roots.Get();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700762}
763
Mathieu Chartier590fee92013-09-13 13:46:47 -0700764// Walk instance fields of the given Class. Separate function to allow recursion on the super
765// class.
766void ImageWriter::WalkInstanceFields(mirror::Object* obj, mirror::Class* klass) {
767 // Visit fields of parent classes first.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700768 StackHandleScope<1> hs(Thread::Current());
769 Handle<mirror::Class> h_class(hs.NewHandle(klass));
770 mirror::Class* super = h_class->GetSuperClass();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700771 if (super != nullptr) {
772 WalkInstanceFields(obj, super);
773 }
774 //
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700775 size_t num_reference_fields = h_class->NumReferenceInstanceFields();
Vladimir Marko76649e82014-11-10 18:32:59 +0000776 MemberOffset field_offset = h_class->GetFirstReferenceInstanceFieldOffset();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700777 for (size_t i = 0; i < num_reference_fields; ++i) {
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700778 mirror::Object* value = obj->GetFieldObject<mirror::Object>(field_offset);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700779 if (value != nullptr) {
780 WalkFieldsInOrder(value);
781 }
Vladimir Marko76649e82014-11-10 18:32:59 +0000782 field_offset = MemberOffset(field_offset.Uint32Value() +
783 sizeof(mirror::HeapReference<mirror::Object>));
Mathieu Chartier590fee92013-09-13 13:46:47 -0700784 }
785}
786
787// For an unvisited object, visit it then all its children found via fields.
788void ImageWriter::WalkFieldsInOrder(mirror::Object* obj) {
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800789 // Use our own visitor routine (instead of GC visitor) to get better locality between
790 // an object and its fields
791 if (!IsImageBinSlotAssigned(obj)) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700792 // Walk instance fields of all objects
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700793 StackHandleScope<2> hs(Thread::Current());
794 Handle<mirror::Object> h_obj(hs.NewHandle(obj));
795 Handle<mirror::Class> klass(hs.NewHandle(obj->GetClass()));
Mathieu Chartier590fee92013-09-13 13:46:47 -0700796 // visit the object itself.
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800797 CalculateObjectBinSlots(h_obj.Get());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700798 WalkInstanceFields(h_obj.Get(), klass.Get());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700799 // Walk static fields of a Class.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700800 if (h_obj->IsClass()) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700801 size_t num_static_fields = klass->NumReferenceStaticFields();
Vladimir Marko76649e82014-11-10 18:32:59 +0000802 MemberOffset field_offset = klass->GetFirstReferenceStaticFieldOffset();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700803 for (size_t i = 0; i < num_static_fields; ++i) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700804 mirror::Object* value = h_obj->GetFieldObject<mirror::Object>(field_offset);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700805 if (value != nullptr) {
806 WalkFieldsInOrder(value);
807 }
Vladimir Marko76649e82014-11-10 18:32:59 +0000808 field_offset = MemberOffset(field_offset.Uint32Value() +
809 sizeof(mirror::HeapReference<mirror::Object>));
Mathieu Chartier590fee92013-09-13 13:46:47 -0700810 }
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700811 } else if (h_obj->IsObjectArray()) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700812 // Walk elements of an object array.
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700813 int32_t length = h_obj->AsObjectArray<mirror::Object>()->GetLength();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700814 for (int32_t i = 0; i < length; i++) {
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700815 mirror::ObjectArray<mirror::Object>* obj_array = h_obj->AsObjectArray<mirror::Object>();
Mathieu Chartier590fee92013-09-13 13:46:47 -0700816 mirror::Object* value = obj_array->Get(i);
817 if (value != nullptr) {
818 WalkFieldsInOrder(value);
819 }
820 }
821 }
822 }
823}
824
825void ImageWriter::WalkFieldsCallback(mirror::Object* obj, void* arg) {
826 ImageWriter* writer = reinterpret_cast<ImageWriter*>(arg);
827 DCHECK(writer != nullptr);
828 writer->WalkFieldsInOrder(obj);
829}
830
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800831void ImageWriter::UnbinObjectsIntoOffsetCallback(mirror::Object* obj, void* arg) {
832 ImageWriter* writer = reinterpret_cast<ImageWriter*>(arg);
833 DCHECK(writer != nullptr);
834 writer->UnbinObjectsIntoOffset(obj);
835}
836
837void ImageWriter::UnbinObjectsIntoOffset(mirror::Object* obj) {
838 CHECK(obj != nullptr);
839
840 // We know the bin slot, and the total bin sizes for all objects by now,
841 // so calculate the object's final image offset.
842
843 DCHECK(IsImageBinSlotAssigned(obj));
844 BinSlot bin_slot = GetImageBinSlot(obj);
845 // Change the lockword from a bin slot into an offset
846 AssignImageOffset(obj, bin_slot);
847}
848
Vladimir Markof4da6752014-08-01 19:04:18 +0100849void ImageWriter::CalculateNewObjectOffsets() {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700850 Thread* self = Thread::Current();
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700851 StackHandleScope<1> hs(self);
852 Handle<ObjectArray<Object>> image_roots(hs.NewHandle(CreateImageRoots()));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700853
854 gc::Heap* heap = Runtime::Current()->GetHeap();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700855 DCHECK_EQ(0U, image_end_);
856
Mathieu Chartier31e89252013-08-28 11:29:12 -0700857 // Leave space for the header, but do not write it yet, we need to
Brian Carlstrom7940e442013-07-12 13:46:57 -0700858 // know where image_roots is going to end up
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800859 image_end_ += RoundUp(sizeof(ImageHeader), kObjectAlignment); // 64-bit-alignment
Brian Carlstrom7940e442013-07-12 13:46:57 -0700860
Hiroshi Yamauchi0c8c3032015-01-16 16:54:35 -0800861 // TODO: Image spaces only?
862 DCHECK_LT(image_end_, image_->Size());
863 image_objects_offset_begin_ = image_end_;
864 // Clear any pre-existing monitors which may have been in the monitor words, assign bin slots.
865 heap->VisitObjects(WalkFieldsCallback, this);
866 // Transform each object's bin slot into an offset which will be used to do the final copy.
867 heap->VisitObjects(UnbinObjectsIntoOffsetCallback, this);
868 DCHECK(saved_hashes_map_.empty()); // All binslot hashes should've been put into vector by now.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700869
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800870 DCHECK_GT(image_end_, GetBinSizeSum());
871
Vladimir Markof4da6752014-08-01 19:04:18 +0100872 image_roots_address_ = PointerToLowMemUInt32(GetImageAddress(image_roots.Get()));
873
874 // Note that image_end_ is left at end of used space
875}
876
877void ImageWriter::CreateHeader(size_t oat_loaded_size, size_t oat_data_offset) {
878 CHECK_NE(0U, oat_loaded_size);
Ian Rogers13735952014-10-08 12:43:28 -0700879 const uint8_t* oat_file_begin = GetOatFileBegin();
880 const uint8_t* oat_file_end = oat_file_begin + oat_loaded_size;
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800881
Brian Carlstrom7940e442013-07-12 13:46:57 -0700882 oat_data_begin_ = oat_file_begin + oat_data_offset;
Ian Rogers13735952014-10-08 12:43:28 -0700883 const uint8_t* oat_data_end = oat_data_begin_ + oat_file_->Size();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700884
Mathieu Chartier31e89252013-08-28 11:29:12 -0700885 // Return to write header at start of image with future location of image_roots. At this point,
886 // image_end_ is the size of the image (excluding bitmaps).
Mathieu Chartiera8e8f9c2014-04-09 14:51:05 -0700887 const size_t heap_bytes_per_bitmap_byte = kBitsPerByte * kObjectAlignment;
Mathieu Chartier12aeccd2013-11-13 15:52:06 -0800888 const size_t bitmap_bytes = RoundUp(image_end_, heap_bytes_per_bitmap_byte) /
889 heap_bytes_per_bitmap_byte;
Vladimir Markof4da6752014-08-01 19:04:18 +0100890 new (image_->Begin()) ImageHeader(PointerToLowMemUInt32(image_begin_),
891 static_cast<uint32_t>(image_end_),
892 RoundUp(image_end_, kPageSize),
893 RoundUp(bitmap_bytes, kPageSize),
894 image_roots_address_,
895 oat_file_->GetOatHeader().GetChecksum(),
896 PointerToLowMemUInt32(oat_file_begin),
897 PointerToLowMemUInt32(oat_data_begin_),
898 PointerToLowMemUInt32(oat_data_end),
Igor Murashkin46774762014-10-22 11:37:02 -0700899 PointerToLowMemUInt32(oat_file_end),
900 compile_pic_);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700901}
902
Mathieu Chartierfd04b6f2014-11-14 19:34:18 -0800903void ImageWriter::CopyAndFixupObjects() {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700904 gc::Heap* heap = Runtime::Current()->GetHeap();
905 // TODO: heap validation can't handle this fix up pass
906 heap->DisableObjectValidation();
907 // TODO: Image spaces only?
Mathieu Chartier590fee92013-09-13 13:46:47 -0700908 heap->VisitObjects(CopyAndFixupObjectsCallback, this);
909 // Fix up the object previously had hash codes.
910 for (const std::pair<mirror::Object*, uint32_t>& hash_pair : saved_hashes_) {
Mathieu Chartier4d7f61d2014-04-17 14:43:39 -0700911 hash_pair.first->SetLockWord(LockWord::FromHashCode(hash_pair.second), false);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700912 }
913 saved_hashes_.clear();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700914}
915
Mathieu Chartier590fee92013-09-13 13:46:47 -0700916void ImageWriter::CopyAndFixupObjectsCallback(Object* obj, void* arg) {
Mathieu Chartier4d7f61d2014-04-17 14:43:39 -0700917 DCHECK(obj != nullptr);
918 DCHECK(arg != nullptr);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700919 ImageWriter* image_writer = reinterpret_cast<ImageWriter*>(arg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700920 // see GetLocalAddress for similar computation
921 size_t offset = image_writer->GetImageOffset(obj);
Ian Rogers13735952014-10-08 12:43:28 -0700922 uint8_t* dst = image_writer->image_->Begin() + offset;
923 const uint8_t* src = reinterpret_cast<const uint8_t*>(obj);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800924 size_t n;
925 if (obj->IsArtMethod()) {
926 // Size without pointer fields since we don't want to overrun the buffer if target art method
927 // is 32 bits but source is 64 bits.
Jeff Haoc7d11882015-02-03 15:08:39 -0800928 n = mirror::ArtMethod::SizeWithoutPointerFields(image_writer->target_ptr_size_);
Mathieu Chartier2d721012014-11-10 11:08:06 -0800929 } else {
930 n = obj->SizeOf();
931 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700932 DCHECK_LT(offset + n, image_writer->image_->Size());
933 memcpy(dst, src, n);
934 Object* copy = reinterpret_cast<Object*>(dst);
Mathieu Chartierad2541a2013-10-25 10:05:23 -0700935 // Write in a hash code of objects which have inflated monitors or a hash code in their monitor
936 // word.
Mathieu Chartier4d7f61d2014-04-17 14:43:39 -0700937 copy->SetLockWord(LockWord(), false);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700938 image_writer->FixupObject(obj, copy);
939}
940
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800941// Rewrite all the references in the copied object to point to their image address equivalent
Mathieu Chartierb7ea3ac2014-03-24 16:54:46 -0700942class FixupVisitor {
943 public:
944 FixupVisitor(ImageWriter* image_writer, Object* copy) : image_writer_(image_writer), copy_(copy) {
945 }
946
947 void operator()(Object* obj, MemberOffset offset, bool /*is_static*/) const
948 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
Hiroshi Yamauchi6e83c172014-05-01 21:25:41 -0700949 Object* ref = obj->GetFieldObject<Object, kVerifyNone>(offset);
Mathieu Chartierb7ea3ac2014-03-24 16:54:46 -0700950 // Use SetFieldObjectWithoutWriteBarrier to avoid card marking since we are writing to the
951 // image.
952 copy_->SetFieldObjectWithoutWriteBarrier<false, true, kVerifyNone>(
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700953 offset, image_writer_->GetImageAddress(ref));
Mathieu Chartierb7ea3ac2014-03-24 16:54:46 -0700954 }
955
956 // java.lang.ref.Reference visitor.
957 void operator()(mirror::Class* /*klass*/, mirror::Reference* ref) const
958 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
959 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
960 copy_->SetFieldObjectWithoutWriteBarrier<false, true, kVerifyNone>(
Ian Rogersb0fa5dc2014-04-28 16:47:08 -0700961 mirror::Reference::ReferentOffset(), image_writer_->GetImageAddress(ref->GetReferent()));
Mathieu Chartierb7ea3ac2014-03-24 16:54:46 -0700962 }
963
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700964 protected:
Mathieu Chartierb7ea3ac2014-03-24 16:54:46 -0700965 ImageWriter* const image_writer_;
966 mirror::Object* const copy_;
967};
968
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700969class FixupClassVisitor FINAL : public FixupVisitor {
970 public:
971 FixupClassVisitor(ImageWriter* image_writer, Object* copy) : FixupVisitor(image_writer, copy) {
972 }
973
974 void operator()(Object* obj, MemberOffset offset, bool /*is_static*/) const
975 EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_, Locks::heap_bitmap_lock_) {
976 DCHECK(obj->IsClass());
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800977 FixupVisitor::operator()(obj, offset, /*is_static*/false);
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700978
Igor Murashkinf5b4c502014-11-14 15:01:59 -0800979 // TODO: Remove dead code
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700980 if (offset.Uint32Value() < mirror::Class::EmbeddedVTableOffset().Uint32Value()) {
981 return;
982 }
983 }
984
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700985 void operator()(mirror::Class* klass ATTRIBUTE_UNUSED,
986 mirror::Reference* ref ATTRIBUTE_UNUSED) const
Mingyao Yang98d1cc82014-05-15 17:02:16 -0700987 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_)
988 EXCLUSIVE_LOCKS_REQUIRED(Locks::heap_bitmap_lock_) {
989 LOG(FATAL) << "Reference not expected here.";
990 }
991};
992
Ian Rogersef7d42f2014-01-06 12:55:46 -0800993void ImageWriter::FixupObject(Object* orig, Object* copy) {
Mathieu Chartierb7ea3ac2014-03-24 16:54:46 -0700994 DCHECK(orig != nullptr);
995 DCHECK(copy != nullptr);
Hiroshi Yamauchi624468c2014-03-31 15:14:47 -0700996 if (kUseBakerOrBrooksReadBarrier) {
997 orig->AssertReadBarrierPointer();
998 if (kUseBrooksReadBarrier) {
999 // Note the address 'copy' isn't the same as the image address of 'orig'.
1000 copy->SetReadBarrierPointer(GetImageAddress(orig));
1001 DCHECK_EQ(copy->GetReadBarrierPointer(), GetImageAddress(orig));
1002 }
Hiroshi Yamauchi9d04a202014-01-31 13:35:49 -08001003 }
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001004 if (orig->IsClass() && orig->AsClass()->ShouldHaveEmbeddedImtAndVTable()) {
1005 FixupClassVisitor visitor(this, copy);
1006 orig->VisitReferences<true /*visit class*/>(visitor, visitor);
1007 } else {
1008 FixupVisitor visitor(this, copy);
1009 orig->VisitReferences<true /*visit class*/>(visitor, visitor);
1010 }
Mathieu Chartierb7ea3ac2014-03-24 16:54:46 -07001011 if (orig->IsArtMethod<kVerifyNone>()) {
Mathieu Chartier4e305412014-02-19 10:54:44 -08001012 FixupMethod(orig->AsArtMethod<kVerifyNone>(), down_cast<ArtMethod*>(copy));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001013 }
1014}
1015
Ian Rogers13735952014-10-08 12:43:28 -07001016const uint8_t* ImageWriter::GetQuickCode(mirror::ArtMethod* method, bool* quick_is_interpreted) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001017 DCHECK(!method->IsResolutionMethod() && !method->IsImtConflictMethod() &&
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07001018 !method->IsImtUnimplementedMethod() && !method->IsAbstract()) << PrettyMethod(method);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001019
1020 // Use original code if it exists. Otherwise, set the code pointer to the resolution
1021 // trampoline.
1022
1023 // Quick entrypoint:
Jeff Haoc7d11882015-02-03 15:08:39 -08001024 uint32_t quick_oat_code_offset = PointerToLowMemUInt32(
1025 method->GetEntryPointFromQuickCompiledCodePtrSize(target_ptr_size_));
1026 const uint8_t* quick_code = GetOatAddress(quick_oat_code_offset);
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001027 *quick_is_interpreted = false;
1028 if (quick_code != nullptr &&
1029 (!method->IsStatic() || method->IsConstructor() || method->GetDeclaringClass()->IsInitialized())) {
1030 // We have code for a non-static or initialized method, just use the code.
1031 } else if (quick_code == nullptr && method->IsNative() &&
1032 (!method->IsStatic() || method->GetDeclaringClass()->IsInitialized())) {
1033 // Non-static or initialized native method missing compiled code, use generic JNI version.
1034 quick_code = GetOatAddress(quick_generic_jni_trampoline_offset_);
1035 } else if (quick_code == nullptr && !method->IsNative()) {
1036 // We don't have code at all for a non-native method, use the interpreter.
1037 quick_code = GetOatAddress(quick_to_interpreter_bridge_offset_);
1038 *quick_is_interpreted = true;
1039 } else {
1040 CHECK(!method->GetDeclaringClass()->IsInitialized());
1041 // We have code for a static method, but need to go through the resolution stub for class
1042 // initialization.
1043 quick_code = GetOatAddress(quick_resolution_trampoline_offset_);
1044 }
1045 return quick_code;
1046}
1047
Ian Rogers13735952014-10-08 12:43:28 -07001048const uint8_t* ImageWriter::GetQuickEntryPoint(mirror::ArtMethod* method) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001049 // Calculate the quick entry point following the same logic as FixupMethod() below.
1050 // The resolution method has a special trampoline to call.
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07001051 Runtime* runtime = Runtime::Current();
1052 if (UNLIKELY(method == runtime->GetResolutionMethod())) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001053 return GetOatAddress(quick_resolution_trampoline_offset_);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07001054 } else if (UNLIKELY(method == runtime->GetImtConflictMethod() ||
1055 method == runtime->GetImtUnimplementedMethod())) {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001056 return GetOatAddress(quick_imt_conflict_trampoline_offset_);
1057 } else {
1058 // We assume all methods have code. If they don't currently then we set them to the use the
1059 // resolution trampoline. Abstract methods never have code and so we need to make sure their
1060 // use results in an AbstractMethodError. We use the interpreter to achieve this.
1061 if (UNLIKELY(method->IsAbstract())) {
1062 return GetOatAddress(quick_to_interpreter_bridge_offset_);
1063 } else {
1064 bool quick_is_interpreted;
1065 return GetQuickCode(method, &quick_is_interpreted);
1066 }
1067 }
1068}
1069
Ian Rogersef7d42f2014-01-06 12:55:46 -08001070void ImageWriter::FixupMethod(ArtMethod* orig, ArtMethod* copy) {
Ian Rogers848871b2013-08-05 10:56:33 -07001071 // OatWriter replaces the code_ with an offset value. Here we re-adjust to a pointer relative to
1072 // oat_begin_
Mathieu Chartier2d721012014-11-10 11:08:06 -08001073 // For 64 bit targets we need to repack the current runtime pointer sized fields to the right
1074 // locations.
1075 // Copy all of the fields from the runtime methods to the target methods first since we did a
1076 // bytewise copy earlier.
Jeff Haoc7d11882015-02-03 15:08:39 -08001077 copy->SetEntryPointFromInterpreterPtrSize<kVerifyNone>(
1078 orig->GetEntryPointFromInterpreterPtrSize(target_ptr_size_), target_ptr_size_);
1079 copy->SetEntryPointFromJniPtrSize<kVerifyNone>(
1080 orig->GetEntryPointFromJniPtrSize(target_ptr_size_), target_ptr_size_);
Mathieu Chartier2d721012014-11-10 11:08:06 -08001081 copy->SetEntryPointFromQuickCompiledCodePtrSize<kVerifyNone>(
Jeff Haoc7d11882015-02-03 15:08:39 -08001082 orig->GetEntryPointFromQuickCompiledCodePtrSize(target_ptr_size_), target_ptr_size_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001083
Ian Rogers848871b2013-08-05 10:56:33 -07001084 // The resolution method has a special trampoline to call.
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07001085 Runtime* runtime = Runtime::Current();
1086 if (UNLIKELY(orig == runtime->GetResolutionMethod())) {
Mathieu Chartier2d721012014-11-10 11:08:06 -08001087 copy->SetEntryPointFromQuickCompiledCodePtrSize<kVerifyNone>(
1088 GetOatAddress(quick_resolution_trampoline_offset_), target_ptr_size_);
Mathieu Chartier2d2621a2014-10-23 16:48:06 -07001089 } else if (UNLIKELY(orig == runtime->GetImtConflictMethod() ||
1090 orig == runtime->GetImtUnimplementedMethod())) {
Mathieu Chartier2d721012014-11-10 11:08:06 -08001091 copy->SetEntryPointFromQuickCompiledCodePtrSize<kVerifyNone>(
1092 GetOatAddress(quick_imt_conflict_trampoline_offset_), target_ptr_size_);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001093 } else {
Ian Rogers848871b2013-08-05 10:56:33 -07001094 // We assume all methods have code. If they don't currently then we set them to the use the
1095 // resolution trampoline. Abstract methods never have code and so we need to make sure their
1096 // use results in an AbstractMethodError. We use the interpreter to achieve this.
1097 if (UNLIKELY(orig->IsAbstract())) {
Mathieu Chartier2d721012014-11-10 11:08:06 -08001098 copy->SetEntryPointFromQuickCompiledCodePtrSize<kVerifyNone>(
1099 GetOatAddress(quick_to_interpreter_bridge_offset_), target_ptr_size_);
1100 copy->SetEntryPointFromInterpreterPtrSize<kVerifyNone>(
1101 reinterpret_cast<EntryPointFromInterpreter*>(const_cast<uint8_t*>(
1102 GetOatAddress(interpreter_to_interpreter_bridge_offset_))), target_ptr_size_);
Ian Rogers848871b2013-08-05 10:56:33 -07001103 } else {
Mingyao Yang98d1cc82014-05-15 17:02:16 -07001104 bool quick_is_interpreted;
Ian Rogers13735952014-10-08 12:43:28 -07001105 const uint8_t* quick_code = GetQuickCode(orig, &quick_is_interpreted);
Mathieu Chartier2d721012014-11-10 11:08:06 -08001106 copy->SetEntryPointFromQuickCompiledCodePtrSize<kVerifyNone>(quick_code, target_ptr_size_);
Sebastien Hertze1d07812014-05-21 15:44:09 +02001107
Sebastien Hertze1d07812014-05-21 15:44:09 +02001108 // JNI entrypoint:
Ian Rogers848871b2013-08-05 10:56:33 -07001109 if (orig->IsNative()) {
1110 // The native method's pointer is set to a stub to lookup via dlsym.
1111 // Note this is not the code_ pointer, that is handled above.
Mathieu Chartier2d721012014-11-10 11:08:06 -08001112 copy->SetEntryPointFromJniPtrSize<kVerifyNone>(GetOatAddress(jni_dlsym_lookup_offset_),
1113 target_ptr_size_);
Ian Rogers848871b2013-08-05 10:56:33 -07001114 }
Sebastien Hertze1d07812014-05-21 15:44:09 +02001115
1116 // Interpreter entrypoint:
1117 // Set the interpreter entrypoint depending on whether there is compiled code or not.
Elliott Hughes956af0f2014-12-11 14:34:28 -08001118 uint32_t interpreter_code = (quick_is_interpreted)
Sebastien Hertze1d07812014-05-21 15:44:09 +02001119 ? interpreter_to_interpreter_bridge_offset_
1120 : interpreter_to_compiled_code_bridge_offset_;
Mathieu Chartier2d721012014-11-10 11:08:06 -08001121 EntryPointFromInterpreter* interpreter_entrypoint =
Sebastien Hertze1d07812014-05-21 15:44:09 +02001122 reinterpret_cast<EntryPointFromInterpreter*>(
Mathieu Chartier2d721012014-11-10 11:08:06 -08001123 const_cast<uint8_t*>(GetOatAddress(interpreter_code)));
1124 copy->SetEntryPointFromInterpreterPtrSize<kVerifyNone>(
1125 interpreter_entrypoint, target_ptr_size_);
Ian Rogers848871b2013-08-05 10:56:33 -07001126 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001127 }
1128}
1129
Alex Lighta59dd802014-07-02 16:28:08 -07001130static OatHeader* GetOatHeaderFromElf(ElfFile* elf) {
Tong Shen62d1ca32014-09-03 17:24:56 -07001131 uint64_t data_sec_offset;
1132 bool has_data_sec = elf->GetSectionOffsetAndSize(".rodata", &data_sec_offset, nullptr);
1133 if (!has_data_sec) {
Alex Lighta59dd802014-07-02 16:28:08 -07001134 return nullptr;
1135 }
Tong Shen62d1ca32014-09-03 17:24:56 -07001136 return reinterpret_cast<OatHeader*>(elf->Begin() + data_sec_offset);
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001137}
1138
Vladimir Markof4da6752014-08-01 19:04:18 +01001139void ImageWriter::SetOatChecksumFromElfFile(File* elf_file) {
Alex Lighta59dd802014-07-02 16:28:08 -07001140 std::string error_msg;
1141 std::unique_ptr<ElfFile> elf(ElfFile::Open(elf_file, PROT_READ|PROT_WRITE,
1142 MAP_SHARED, &error_msg));
1143 if (elf.get() == nullptr) {
Vladimir Markof4da6752014-08-01 19:04:18 +01001144 LOG(FATAL) << "Unable open oat file: " << error_msg;
Alex Lighta59dd802014-07-02 16:28:08 -07001145 return;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001146 }
Alex Lighta59dd802014-07-02 16:28:08 -07001147 OatHeader* oat_header = GetOatHeaderFromElf(elf.get());
1148 CHECK(oat_header != nullptr);
1149 CHECK(oat_header->IsValid());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001150
Brian Carlstrom7940e442013-07-12 13:46:57 -07001151 ImageHeader* image_header = reinterpret_cast<ImageHeader*>(image_->Begin());
Alex Lighta59dd802014-07-02 16:28:08 -07001152 image_header->SetOatChecksum(oat_header->GetChecksum());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001153}
1154
Igor Murashkinf5b4c502014-11-14 15:01:59 -08001155size_t ImageWriter::GetBinSizeSum(ImageWriter::Bin up_to) const {
1156 DCHECK_LE(up_to, kBinSize);
1157 return std::accumulate(&bin_slot_sizes_[0], &bin_slot_sizes_[up_to], /*init*/0);
1158}
1159
1160ImageWriter::BinSlot::BinSlot(uint32_t lockword) : lockword_(lockword) {
1161 // These values may need to get updated if more bins are added to the enum Bin
1162 static_assert(kBinBits == 3, "wrong number of bin bits");
1163 static_assert(kBinShift == 29, "wrong number of shift");
1164 static_assert(sizeof(BinSlot) == sizeof(LockWord), "BinSlot/LockWord must have equal sizes");
1165
1166 DCHECK_LT(GetBin(), kBinSize);
1167 DCHECK_ALIGNED(GetIndex(), kObjectAlignment);
1168}
1169
1170ImageWriter::BinSlot::BinSlot(Bin bin, uint32_t index)
1171 : BinSlot(index | (static_cast<uint32_t>(bin) << kBinShift)) {
1172 DCHECK_EQ(index, GetIndex());
1173}
1174
1175ImageWriter::Bin ImageWriter::BinSlot::GetBin() const {
1176 return static_cast<Bin>((lockword_ & kBinMask) >> kBinShift);
1177}
1178
1179uint32_t ImageWriter::BinSlot::GetIndex() const {
1180 return lockword_ & ~kBinMask;
1181}
1182
Andreas Gampe245ee002014-12-04 21:25:04 -08001183void ImageWriter::FreeStringDataArray() {
1184 if (string_data_array_ != nullptr) {
1185 gc::space::LargeObjectSpace* los = Runtime::Current()->GetHeap()->GetLargeObjectsSpace();
1186 if (los != nullptr) {
1187 los->Free(Thread::Current(), reinterpret_cast<mirror::Object*>(string_data_array_));
1188 }
1189 }
1190}
1191
Brian Carlstrom7940e442013-07-12 13:46:57 -07001192} // namespace art