Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1 | /* |
| 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> |
Mathieu Chartier | ceb07b3 | 2015-12-10 09:33:21 -0800 | [diff] [blame] | 20 | #include <lz4.h> |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 21 | |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 22 | #include <memory> |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 23 | #include <numeric> |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 24 | #include <unordered_set> |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 25 | #include <vector> |
| 26 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 27 | #include "art_field-inl.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 28 | #include "art_method-inl.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 29 | #include "base/logging.h" |
| 30 | #include "base/unix_file/fd_file.h" |
Vladimir Marko | 3481ba2 | 2015-04-13 12:22:36 +0100 | [diff] [blame] | 31 | #include "class_linker-inl.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 32 | #include "compiled_method.h" |
| 33 | #include "dex_file-inl.h" |
| 34 | #include "driver/compiler_driver.h" |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 35 | #include "elf_file.h" |
| 36 | #include "elf_utils.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 37 | #include "elf_writer.h" |
| 38 | #include "gc/accounting/card_table-inl.h" |
| 39 | #include "gc/accounting/heap_bitmap.h" |
Mathieu Chartier | 31e8925 | 2013-08-28 11:29:12 -0700 | [diff] [blame] | 40 | #include "gc/accounting/space_bitmap-inl.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 41 | #include "gc/heap.h" |
| 42 | #include "gc/space/large_object_space.h" |
| 43 | #include "gc/space/space-inl.h" |
| 44 | #include "globals.h" |
| 45 | #include "image.h" |
| 46 | #include "intern_table.h" |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 47 | #include "linear_alloc.h" |
Mathieu Chartier | ad2541a | 2013-10-25 10:05:23 -0700 | [diff] [blame] | 48 | #include "lock_word.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 49 | #include "mirror/abstract_method.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 50 | #include "mirror/array-inl.h" |
| 51 | #include "mirror/class-inl.h" |
| 52 | #include "mirror/class_loader.h" |
| 53 | #include "mirror/dex_cache-inl.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 54 | #include "mirror/method.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 55 | #include "mirror/object-inl.h" |
| 56 | #include "mirror/object_array-inl.h" |
Ian Rogers | b0fa5dc | 2014-04-28 16:47:08 -0700 | [diff] [blame] | 57 | #include "mirror/string-inl.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 58 | #include "oat.h" |
| 59 | #include "oat_file.h" |
Mathieu Chartier | f9c6fc6 | 2015-10-07 11:44:05 -0700 | [diff] [blame] | 60 | #include "oat_file_manager.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 61 | #include "runtime.h" |
| 62 | #include "scoped_thread_state_change.h" |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 63 | #include "handle_scope-inl.h" |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 64 | #include "utils/dex_cache_arrays_layout-inl.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 65 | |
Brian Carlstrom | 3e3d591 | 2013-07-18 00:19:45 -0700 | [diff] [blame] | 66 | using ::art::mirror::Class; |
| 67 | using ::art::mirror::DexCache; |
Brian Carlstrom | 3e3d591 | 2013-07-18 00:19:45 -0700 | [diff] [blame] | 68 | using ::art::mirror::Object; |
| 69 | using ::art::mirror::ObjectArray; |
| 70 | using ::art::mirror::String; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 71 | |
| 72 | namespace art { |
| 73 | |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 74 | // Separate objects into multiple bins to optimize dirty memory use. |
| 75 | static constexpr bool kBinObjects = true; |
| 76 | |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 77 | // Return true if an object is already in an image space. |
| 78 | bool ImageWriter::IsInBootImage(const void* obj) const { |
Mathieu Chartier | e467cea | 2016-01-07 18:36:19 -0800 | [diff] [blame] | 79 | gc::Heap* const heap = Runtime::Current()->GetHeap(); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 80 | if (!compile_app_image_) { |
Mathieu Chartier | e467cea | 2016-01-07 18:36:19 -0800 | [diff] [blame] | 81 | DCHECK(heap->GetBootImageSpaces().empty()); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 82 | return false; |
| 83 | } |
Mathieu Chartier | e467cea | 2016-01-07 18:36:19 -0800 | [diff] [blame] | 84 | for (gc::space::ImageSpace* boot_image_space : heap->GetBootImageSpaces()) { |
| 85 | const uint8_t* image_begin = boot_image_space->Begin(); |
| 86 | // Real image end including ArtMethods and ArtField sections. |
| 87 | const uint8_t* image_end = image_begin + boot_image_space->GetImageHeader().GetImageSize(); |
| 88 | if (image_begin <= obj && obj < image_end) { |
| 89 | return true; |
| 90 | } |
| 91 | } |
| 92 | return false; |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | bool ImageWriter::IsInBootOatFile(const void* ptr) const { |
Mathieu Chartier | e467cea | 2016-01-07 18:36:19 -0800 | [diff] [blame] | 96 | gc::Heap* const heap = Runtime::Current()->GetHeap(); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 97 | if (!compile_app_image_) { |
Mathieu Chartier | e467cea | 2016-01-07 18:36:19 -0800 | [diff] [blame] | 98 | DCHECK(heap->GetBootImageSpaces().empty()); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 99 | return false; |
| 100 | } |
Mathieu Chartier | e467cea | 2016-01-07 18:36:19 -0800 | [diff] [blame] | 101 | for (gc::space::ImageSpace* boot_image_space : heap->GetBootImageSpaces()) { |
| 102 | const ImageHeader& image_header = boot_image_space->GetImageHeader(); |
| 103 | if (image_header.GetOatFileBegin() <= ptr && ptr < image_header.GetOatFileEnd()) { |
| 104 | return true; |
| 105 | } |
| 106 | } |
| 107 | return false; |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 108 | } |
| 109 | |
Andreas Gampe | dd9d055 | 2015-03-09 12:57:41 -0700 | [diff] [blame] | 110 | static void CheckNoDexObjectsCallback(Object* obj, void* arg ATTRIBUTE_UNUSED) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 111 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Andreas Gampe | dd9d055 | 2015-03-09 12:57:41 -0700 | [diff] [blame] | 112 | Class* klass = obj->GetClass(); |
| 113 | CHECK_NE(PrettyClass(klass), "com.android.dex.Dex"); |
| 114 | } |
| 115 | |
| 116 | static void CheckNoDexObjects() { |
| 117 | ScopedObjectAccess soa(Thread::Current()); |
| 118 | Runtime::Current()->GetHeap()->VisitObjects(CheckNoDexObjectsCallback, nullptr); |
| 119 | } |
| 120 | |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 121 | bool ImageWriter::PrepareImageAddressSpace() { |
Mathieu Chartier | 2d72101 | 2014-11-10 11:08:06 -0800 | [diff] [blame] | 122 | target_ptr_size_ = InstructionSetPointerSize(compiler_driver_.GetInstructionSet()); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 123 | gc::Heap* const heap = Runtime::Current()->GetHeap(); |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 124 | { |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 125 | ScopedObjectAccess soa(Thread::Current()); |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 126 | PruneNonImageClasses(); // Remove junk |
| 127 | ComputeLazyFieldsForImageClasses(); // Add useful information |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 128 | } |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 129 | heap->CollectGarbage(false); // Remove garbage. |
| 130 | |
Andreas Gampe | dd9d055 | 2015-03-09 12:57:41 -0700 | [diff] [blame] | 131 | // Dex caches must not have their dex fields set in the image. These are memory buffers of mapped |
| 132 | // dex files. |
| 133 | // |
| 134 | // We may open them in the unstarted-runtime code for class metadata. Their fields should all be |
| 135 | // reset in PruneNonImageClasses and the objects reclaimed in the GC. Make sure that's actually |
| 136 | // true. |
| 137 | if (kIsDebugBuild) { |
| 138 | CheckNoDexObjects(); |
| 139 | } |
| 140 | |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 141 | if (kIsDebugBuild) { |
| 142 | ScopedObjectAccess soa(Thread::Current()); |
| 143 | CheckNonImageClassesRemoved(); |
| 144 | } |
| 145 | |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 146 | { |
| 147 | ScopedObjectAccess soa(Thread::Current()); |
| 148 | CalculateNewObjectOffsets(); |
| 149 | } |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 150 | |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 151 | // This needs to happen after CalculateNewObjectOffsets since it relies on intern_table_bytes_ and |
| 152 | // bin size sums being calculated. |
| 153 | if (!AllocMemory()) { |
| 154 | return false; |
| 155 | } |
| 156 | |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 157 | return true; |
| 158 | } |
| 159 | |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 160 | bool ImageWriter::Write(int image_fd, |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 161 | const std::vector<const char*>& image_filenames, |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 162 | int oat_fd, |
| 163 | const std::vector<const char*>& oat_filenames, |
| 164 | const std::string& oat_location) { |
| 165 | // If image_fd or oat_fd are not kInvalidFd then we may have empty strings in image_filenames or |
| 166 | // oat_filenames. |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 167 | CHECK(!image_filenames.empty()); |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 168 | if (image_fd != kInvalidFd) { |
| 169 | CHECK_EQ(image_filenames.size(), 1u); |
| 170 | } |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 171 | CHECK(!oat_filenames.empty()); |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 172 | if (oat_fd != kInvalidFd) { |
| 173 | CHECK_EQ(oat_filenames.size(), 1u); |
| 174 | } |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 175 | CHECK_EQ(image_filenames.size(), oat_filenames.size()); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 176 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 177 | size_t oat_file_offset = 0; |
| 178 | |
| 179 | for (size_t i = 0; i < oat_filenames.size(); ++i) { |
| 180 | const char* oat_filename = oat_filenames[i]; |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 181 | std::unique_ptr<File> oat_file; |
| 182 | |
| 183 | if (oat_fd != -1) { |
| 184 | if (strlen(oat_filename) == 0u) { |
| 185 | oat_file.reset(new File(oat_fd, false)); |
| 186 | } else { |
| 187 | oat_file.reset(new File(oat_fd, oat_filename, false)); |
| 188 | } |
| 189 | int length = oat_file->GetLength(); |
| 190 | if (length < 0) { |
| 191 | PLOG(ERROR) << "Oat file has negative length " << length; |
| 192 | return false; |
| 193 | } else { |
| 194 | // Leave the fd open since dex2oat still needs to write out the oat file with the fd. |
| 195 | oat_file->DisableAutoClose(); |
| 196 | } |
| 197 | } else { |
| 198 | oat_file.reset(OS::OpenFileReadWrite(oat_filename)); |
| 199 | } |
| 200 | if (oat_file == nullptr) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 201 | PLOG(ERROR) << "Failed to open oat file " << oat_filename; |
| 202 | return false; |
| 203 | } |
| 204 | std::string error_msg; |
| 205 | oat_file_ = OatFile::OpenReadable(oat_file.get(), oat_filename, nullptr, &error_msg); |
| 206 | if (oat_file_ == nullptr) { |
| 207 | PLOG(ERROR) << "Failed to open writable oat file " << oat_filename; |
| 208 | oat_file->Erase(); |
| 209 | return false; |
| 210 | } |
| 211 | Runtime::Current()->GetOatFileManager().RegisterOatFile( |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 212 | std::unique_ptr<const OatFile>(oat_file_)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 213 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 214 | const OatHeader& oat_header = oat_file_->GetOatHeader(); |
| 215 | ImageInfo& image_info = GetImageInfo(oat_filename); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 216 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 217 | size_t oat_loaded_size = 0; |
| 218 | size_t oat_data_offset = 0; |
| 219 | ElfWriter::GetOatElfInformation(oat_file.get(), &oat_loaded_size, &oat_data_offset); |
| 220 | |
| 221 | DCHECK_EQ(image_info.oat_offset_, oat_file_offset); |
| 222 | oat_file_offset += oat_loaded_size; |
| 223 | |
| 224 | if (i == 0) { |
| 225 | // Primary oat file, read the trampolines. |
| 226 | image_info.oat_address_offsets_[kOatAddressInterpreterToInterpreterBridge] = |
| 227 | oat_header.GetInterpreterToInterpreterBridgeOffset(); |
| 228 | image_info.oat_address_offsets_[kOatAddressInterpreterToCompiledCodeBridge] = |
| 229 | oat_header.GetInterpreterToCompiledCodeBridgeOffset(); |
| 230 | image_info.oat_address_offsets_[kOatAddressJNIDlsymLookup] = |
| 231 | oat_header.GetJniDlsymLookupOffset(); |
| 232 | image_info.oat_address_offsets_[kOatAddressQuickGenericJNITrampoline] = |
| 233 | oat_header.GetQuickGenericJniTrampolineOffset(); |
| 234 | image_info.oat_address_offsets_[kOatAddressQuickIMTConflictTrampoline] = |
| 235 | oat_header.GetQuickImtConflictTrampolineOffset(); |
| 236 | image_info.oat_address_offsets_[kOatAddressQuickResolutionTrampoline] = |
| 237 | oat_header.GetQuickResolutionTrampolineOffset(); |
| 238 | image_info.oat_address_offsets_[kOatAddressQuickToInterpreterBridge] = |
| 239 | oat_header.GetQuickToInterpreterBridgeOffset(); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 240 | } |
| 241 | |
| 242 | |
| 243 | { |
| 244 | ScopedObjectAccess soa(Thread::Current()); |
| 245 | CreateHeader(oat_loaded_size, oat_data_offset); |
| 246 | CopyAndFixupNativeData(); |
| 247 | } |
| 248 | |
| 249 | SetOatChecksumFromElfFile(oat_file.get()); |
| 250 | |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 251 | if (oat_fd != -1) { |
| 252 | // Leave fd open for caller. |
| 253 | if (oat_file->Flush() != 0) { |
| 254 | LOG(ERROR) << "Failed to flush oat file " << oat_filename << " for " << oat_location; |
| 255 | return false; |
| 256 | } |
| 257 | } else if (oat_file->FlushCloseOrErase() != 0) { |
| 258 | LOG(ERROR) << "Failed to flush and close oat file " << oat_filename |
| 259 | << " for " << oat_location; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 260 | return false; |
| 261 | } |
| 262 | } |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 263 | |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 264 | { |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 265 | // TODO: heap validation can't handle these fix up passes. |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 266 | ScopedObjectAccess soa(Thread::Current()); |
Mathieu Chartier | f1d666e | 2015-09-03 16:13:34 -0700 | [diff] [blame] | 267 | Runtime::Current()->GetHeap()->DisableObjectValidation(); |
| 268 | CopyAndFixupObjects(); |
| 269 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 270 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 271 | for (size_t i = 0; i < image_filenames.size(); ++i) { |
| 272 | const char* image_filename = image_filenames[i]; |
| 273 | const char* oat_filename = oat_filenames[i]; |
| 274 | ImageInfo& image_info = GetImageInfo(oat_filename); |
| 275 | std::unique_ptr<File> image_file; |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 276 | if (image_fd != kInvalidFd) { |
| 277 | if (strlen(image_filename) == 0u) { |
| 278 | image_file.reset(new File(image_fd, unix_file::kCheckSafeUsage)); |
Mathieu Chartier | 784bb09 | 2016-01-28 12:02:00 -0800 | [diff] [blame] | 279 | // Empty the file in case it already exists. |
| 280 | if (image_file != nullptr) { |
| 281 | TEMP_FAILURE_RETRY(image_file->SetLength(0)); |
| 282 | TEMP_FAILURE_RETRY(image_file->Flush()); |
| 283 | } |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 284 | } else { |
| 285 | LOG(ERROR) << "image fd " << image_fd << " name " << image_filename; |
| 286 | } |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 287 | } else { |
| 288 | image_file.reset(OS::CreateEmptyFile(image_filename)); |
Mathieu Chartier | ceb07b3 | 2015-12-10 09:33:21 -0800 | [diff] [blame] | 289 | } |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 290 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 291 | if (image_file == nullptr) { |
| 292 | LOG(ERROR) << "Failed to open image file " << image_filename; |
| 293 | return false; |
Mathieu Chartier | ceb07b3 | 2015-12-10 09:33:21 -0800 | [diff] [blame] | 294 | } |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 295 | |
| 296 | if (!compile_app_image_ && fchmod(image_file->Fd(), 0644) != 0) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 297 | PLOG(ERROR) << "Failed to make image file world readable: " << image_filename; |
| 298 | image_file->Erase(); |
| 299 | return EXIT_FAILURE; |
Mathieu Chartier | ceb07b3 | 2015-12-10 09:33:21 -0800 | [diff] [blame] | 300 | } |
Mathieu Chartier | ceb07b3 | 2015-12-10 09:33:21 -0800 | [diff] [blame] | 301 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 302 | std::unique_ptr<char[]> compressed_data; |
| 303 | // Image data size excludes the bitmap and the header. |
| 304 | ImageHeader* const image_header = reinterpret_cast<ImageHeader*>(image_info.image_->Begin()); |
| 305 | const size_t image_data_size = image_header->GetImageSize() - sizeof(ImageHeader); |
| 306 | char* image_data = reinterpret_cast<char*>(image_info.image_->Begin()) + sizeof(ImageHeader); |
| 307 | size_t data_size; |
| 308 | const char* image_data_to_write; |
Nicolas Geoffray | 83d4d72 | 2015-12-10 08:26:32 +0000 | [diff] [blame] | 309 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 310 | CHECK_EQ(image_header->storage_mode_, image_storage_mode_); |
| 311 | switch (image_storage_mode_) { |
| 312 | case ImageHeader::kStorageModeLZ4: { |
| 313 | size_t compressed_max_size = LZ4_compressBound(image_data_size); |
| 314 | compressed_data.reset(new char[compressed_max_size]); |
| 315 | data_size = LZ4_compress( |
| 316 | reinterpret_cast<char*>(image_info.image_->Begin()) + sizeof(ImageHeader), |
| 317 | &compressed_data[0], |
| 318 | image_data_size); |
| 319 | image_data_to_write = &compressed_data[0]; |
| 320 | VLOG(compiler) << "Compressed from " << image_data_size << " to " << data_size; |
| 321 | break; |
| 322 | } |
| 323 | case ImageHeader::kStorageModeUncompressed: { |
| 324 | data_size = image_data_size; |
| 325 | image_data_to_write = image_data; |
| 326 | break; |
| 327 | } |
| 328 | default: { |
| 329 | LOG(FATAL) << "Unsupported"; |
| 330 | UNREACHABLE(); |
| 331 | } |
| 332 | } |
Mathieu Chartier | ceb07b3 | 2015-12-10 09:33:21 -0800 | [diff] [blame] | 333 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 334 | // Write header first, as uncompressed. |
| 335 | image_header->data_size_ = data_size; |
| 336 | if (!image_file->WriteFully(image_info.image_->Begin(), sizeof(ImageHeader))) { |
| 337 | PLOG(ERROR) << "Failed to write image file header " << image_filename; |
| 338 | image_file->Erase(); |
| 339 | return false; |
| 340 | } |
| 341 | |
| 342 | // Write out the image + fields + methods. |
| 343 | const bool is_compressed = compressed_data != nullptr; |
| 344 | if (!image_file->WriteFully(image_data_to_write, data_size)) { |
| 345 | PLOG(ERROR) << "Failed to write image file data " << image_filename; |
| 346 | image_file->Erase(); |
| 347 | return false; |
| 348 | } |
| 349 | |
| 350 | // Write out the image bitmap at the page aligned start of the image end, also uncompressed for |
| 351 | // convenience. |
| 352 | const ImageSection& bitmap_section = image_header->GetImageSection( |
| 353 | ImageHeader::kSectionImageBitmap); |
| 354 | // Align up since data size may be unaligned if the image is compressed. |
| 355 | size_t bitmap_position_in_file = RoundUp(sizeof(ImageHeader) + data_size, kPageSize); |
| 356 | if (!is_compressed) { |
| 357 | CHECK_EQ(bitmap_position_in_file, bitmap_section.Offset()); |
| 358 | } |
| 359 | if (!image_file->Write(reinterpret_cast<char*>(image_info.image_bitmap_->Begin()), |
| 360 | bitmap_section.Size(), |
| 361 | bitmap_position_in_file)) { |
| 362 | PLOG(ERROR) << "Failed to write image file " << image_filename; |
| 363 | image_file->Erase(); |
| 364 | return false; |
| 365 | } |
| 366 | CHECK_EQ(bitmap_position_in_file + bitmap_section.Size(), |
| 367 | static_cast<size_t>(image_file->GetLength())); |
| 368 | if (image_file->FlushCloseOrErase() != 0) { |
| 369 | PLOG(ERROR) << "Failed to flush and close image file " << image_filename; |
| 370 | return false; |
| 371 | } |
Andreas Gampe | 4303ba9 | 2014-11-06 01:00:46 -0800 | [diff] [blame] | 372 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 373 | return true; |
| 374 | } |
| 375 | |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 376 | void ImageWriter::SetImageOffset(mirror::Object* object, size_t offset) { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 377 | DCHECK(object != nullptr); |
| 378 | DCHECK_NE(offset, 0U); |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 379 | |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 380 | // The object is already deflated from when we set the bin slot. Just overwrite the lock word. |
Mathieu Chartier | 4d7f61d | 2014-04-17 14:43:39 -0700 | [diff] [blame] | 381 | object->SetLockWord(LockWord::FromForwardingAddress(offset), false); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 382 | DCHECK_EQ(object->GetLockWord(false).ReadBarrierState(), 0u); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 383 | DCHECK(IsImageOffsetAssigned(object)); |
| 384 | } |
| 385 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 386 | void ImageWriter::UpdateImageOffset(mirror::Object* obj, uintptr_t offset) { |
| 387 | DCHECK(IsImageOffsetAssigned(obj)) << obj << " " << offset; |
| 388 | obj->SetLockWord(LockWord::FromForwardingAddress(offset), false); |
| 389 | DCHECK_EQ(obj->GetLockWord(false).ReadBarrierState(), 0u); |
| 390 | } |
| 391 | |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 392 | void ImageWriter::AssignImageOffset(mirror::Object* object, ImageWriter::BinSlot bin_slot) { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 393 | DCHECK(object != nullptr); |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 394 | DCHECK_NE(image_objects_offset_begin_, 0u); |
| 395 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 396 | const char* oat_filename = GetOatFilename(object); |
| 397 | ImageInfo& image_info = GetImageInfo(oat_filename); |
| 398 | size_t bin_slot_offset = image_info.bin_slot_offsets_[bin_slot.GetBin()]; |
Vladimir Marko | cf36d49 | 2015-08-12 19:27:26 +0100 | [diff] [blame] | 399 | size_t new_offset = bin_slot_offset + bin_slot.GetIndex(); |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 400 | DCHECK_ALIGNED(new_offset, kObjectAlignment); |
| 401 | |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 402 | SetImageOffset(object, new_offset); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 403 | DCHECK_LT(new_offset, image_info.image_end_); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 404 | } |
| 405 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 406 | bool ImageWriter::IsImageOffsetAssigned(mirror::Object* object) const { |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 407 | // Will also return true if the bin slot was assigned since we are reusing the lock word. |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 408 | DCHECK(object != nullptr); |
Mathieu Chartier | 4d7f61d | 2014-04-17 14:43:39 -0700 | [diff] [blame] | 409 | return object->GetLockWord(false).GetState() == LockWord::kForwardingAddress; |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 410 | } |
| 411 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 412 | size_t ImageWriter::GetImageOffset(mirror::Object* object) const { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 413 | DCHECK(object != nullptr); |
| 414 | DCHECK(IsImageOffsetAssigned(object)); |
Mathieu Chartier | 4d7f61d | 2014-04-17 14:43:39 -0700 | [diff] [blame] | 415 | LockWord lock_word = object->GetLockWord(false); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 416 | size_t offset = lock_word.ForwardingAddress(); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 417 | const char* oat_filename = GetOatFilename(object); |
| 418 | const ImageInfo& image_info = GetConstImageInfo(oat_filename); |
| 419 | DCHECK_LT(offset, image_info.image_end_); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 420 | return offset; |
Mathieu Chartier | 31e8925 | 2013-08-28 11:29:12 -0700 | [diff] [blame] | 421 | } |
| 422 | |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 423 | void ImageWriter::SetImageBinSlot(mirror::Object* object, BinSlot bin_slot) { |
| 424 | DCHECK(object != nullptr); |
| 425 | DCHECK(!IsImageOffsetAssigned(object)); |
| 426 | DCHECK(!IsImageBinSlotAssigned(object)); |
| 427 | |
| 428 | // Before we stomp over the lock word, save the hash code for later. |
| 429 | Monitor::Deflate(Thread::Current(), object);; |
| 430 | LockWord lw(object->GetLockWord(false)); |
| 431 | switch (lw.GetState()) { |
| 432 | case LockWord::kFatLocked: { |
| 433 | LOG(FATAL) << "Fat locked object " << object << " found during object copy"; |
| 434 | break; |
| 435 | } |
| 436 | case LockWord::kThinLocked: { |
| 437 | LOG(FATAL) << "Thin locked object " << object << " found during object copy"; |
| 438 | break; |
| 439 | } |
| 440 | case LockWord::kUnlocked: |
| 441 | // No hash, don't need to save it. |
| 442 | break; |
| 443 | case LockWord::kHashCode: |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 444 | DCHECK(saved_hashcode_map_.find(object) == saved_hashcode_map_.end()); |
| 445 | saved_hashcode_map_.emplace(object, lw.GetHashCode()); |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 446 | break; |
| 447 | default: |
| 448 | LOG(FATAL) << "Unreachable."; |
| 449 | UNREACHABLE(); |
| 450 | } |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 451 | object->SetLockWord(LockWord::FromForwardingAddress(bin_slot.Uint32Value()), false); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 452 | DCHECK_EQ(object->GetLockWord(false).ReadBarrierState(), 0u); |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 453 | DCHECK(IsImageBinSlotAssigned(object)); |
| 454 | } |
| 455 | |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 456 | void ImageWriter::PrepareDexCacheArraySlots() { |
Vladimir Marko | f60c7e2 | 2015-11-23 18:05:08 +0000 | [diff] [blame] | 457 | // Prepare dex cache array starts based on the ordering specified in the CompilerDriver. |
Vladimir Marko | f60c7e2 | 2015-11-23 18:05:08 +0000 | [diff] [blame] | 458 | // Set the slot size early to avoid DCHECK() failures in IsImageBinSlotAssigned() |
| 459 | // when AssignImageBinSlot() assigns their indexes out or order. |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 460 | for (const DexFile* dex_file : compiler_driver_.GetDexFilesForOatFile()) { |
| 461 | auto it = dex_file_oat_filename_map_.find(dex_file); |
| 462 | DCHECK(it != dex_file_oat_filename_map_.end()) << dex_file->GetLocation(); |
| 463 | ImageInfo& image_info = GetImageInfo(it->second); |
| 464 | image_info.dex_cache_array_starts_.Put(dex_file, image_info.bin_slot_sizes_[kBinDexCacheArray]); |
| 465 | DexCacheArraysLayout layout(target_ptr_size_, dex_file); |
| 466 | image_info.bin_slot_sizes_[kBinDexCacheArray] += layout.Size(); |
| 467 | } |
Vladimir Marko | f60c7e2 | 2015-11-23 18:05:08 +0000 | [diff] [blame] | 468 | |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 469 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 470 | Thread* const self = Thread::Current(); |
| 471 | ReaderMutexLock mu(self, *class_linker->DexLock()); |
Hiroshi Yamauchi | 04302db | 2015-11-11 23:45:34 -0800 | [diff] [blame] | 472 | for (const ClassLinker::DexCacheData& data : class_linker->GetDexCachesData()) { |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 473 | mirror::DexCache* dex_cache = |
Hiroshi Yamauchi | 04302db | 2015-11-11 23:45:34 -0800 | [diff] [blame] | 474 | down_cast<mirror::DexCache*>(self->DecodeJObject(data.weak_root)); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 475 | if (dex_cache == nullptr || IsInBootImage(dex_cache)) { |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 476 | continue; |
| 477 | } |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 478 | const DexFile* dex_file = dex_cache->GetDexFile(); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 479 | DexCacheArraysLayout layout(target_ptr_size_, dex_file); |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 480 | DCHECK(layout.Valid()); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 481 | const char* oat_filename = GetOatFilenameForDexCache(dex_cache); |
| 482 | ImageInfo& image_info = GetImageInfo(oat_filename); |
| 483 | uint32_t start = image_info.dex_cache_array_starts_.Get(dex_file); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 484 | DCHECK_EQ(dex_file->NumTypeIds() != 0u, dex_cache->GetResolvedTypes() != nullptr); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 485 | AddDexCacheArrayRelocation(dex_cache->GetResolvedTypes(), |
| 486 | start + layout.TypesOffset(), |
| 487 | dex_cache); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 488 | DCHECK_EQ(dex_file->NumMethodIds() != 0u, dex_cache->GetResolvedMethods() != nullptr); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 489 | AddDexCacheArrayRelocation(dex_cache->GetResolvedMethods(), |
| 490 | start + layout.MethodsOffset(), |
| 491 | dex_cache); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 492 | DCHECK_EQ(dex_file->NumFieldIds() != 0u, dex_cache->GetResolvedFields() != nullptr); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 493 | AddDexCacheArrayRelocation(dex_cache->GetResolvedFields(), |
| 494 | start + layout.FieldsOffset(), |
| 495 | dex_cache); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 496 | DCHECK_EQ(dex_file->NumStringIds() != 0u, dex_cache->GetStrings() != nullptr); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 497 | AddDexCacheArrayRelocation(dex_cache->GetStrings(), start + layout.StringsOffset(), dex_cache); |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 498 | } |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 499 | } |
| 500 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 501 | void ImageWriter::AddDexCacheArrayRelocation(void* array, size_t offset, DexCache* dex_cache) { |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 502 | if (array != nullptr) { |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 503 | DCHECK(!IsInBootImage(array)); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 504 | const char* oat_filename = GetOatFilenameForDexCache(dex_cache); |
| 505 | native_object_relocations_.emplace(array, |
| 506 | NativeObjectRelocation { oat_filename, offset, kNativeObjectRelocationTypeDexCacheArray }); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 507 | } |
| 508 | } |
| 509 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 510 | void ImageWriter::AddMethodPointerArray(mirror::PointerArray* arr) { |
| 511 | DCHECK(arr != nullptr); |
| 512 | if (kIsDebugBuild) { |
| 513 | for (size_t i = 0, len = arr->GetLength(); i < len; i++) { |
Mathieu Chartier | a808bac | 2015-11-05 16:33:15 -0800 | [diff] [blame] | 514 | ArtMethod* method = arr->GetElementPtrSize<ArtMethod*>(i, target_ptr_size_); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 515 | if (method != nullptr && !method->IsRuntimeMethod()) { |
Mathieu Chartier | a808bac | 2015-11-05 16:33:15 -0800 | [diff] [blame] | 516 | mirror::Class* klass = method->GetDeclaringClass(); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 517 | CHECK(klass == nullptr || KeepClass(klass)) |
| 518 | << PrettyClass(klass) << " should be a kept class"; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 519 | } |
| 520 | } |
| 521 | } |
| 522 | // kBinArtMethodClean picked arbitrarily, just required to differentiate between ArtFields and |
| 523 | // ArtMethods. |
| 524 | pointer_arrays_.emplace(arr, kBinArtMethodClean); |
| 525 | } |
| 526 | |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 527 | void ImageWriter::AssignImageBinSlot(mirror::Object* object) { |
| 528 | DCHECK(object != nullptr); |
Jeff Hao | c7d1188 | 2015-02-03 15:08:39 -0800 | [diff] [blame] | 529 | size_t object_size = object->SizeOf(); |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 530 | |
| 531 | // The magic happens here. We segregate objects into different bins based |
| 532 | // on how likely they are to get dirty at runtime. |
| 533 | // |
| 534 | // Likely-to-dirty objects get packed together into the same bin so that |
| 535 | // at runtime their page dirtiness ratio (how many dirty objects a page has) is |
| 536 | // maximized. |
| 537 | // |
| 538 | // This means more pages will stay either clean or shared dirty (with zygote) and |
| 539 | // the app will use less of its own (private) memory. |
| 540 | Bin bin = kBinRegular; |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 541 | size_t current_offset = 0u; |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 542 | |
| 543 | if (kBinObjects) { |
| 544 | // |
| 545 | // Changing the bin of an object is purely a memory-use tuning. |
| 546 | // It has no change on runtime correctness. |
| 547 | // |
| 548 | // Memory analysis has determined that the following types of objects get dirtied |
| 549 | // the most: |
| 550 | // |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 551 | // * Dex cache arrays are stored in a special bin. The arrays for each dex cache have |
| 552 | // a fixed layout which helps improve generated code (using PC-relative addressing), |
| 553 | // so we pre-calculate their offsets separately in PrepareDexCacheArraySlots(). |
| 554 | // Since these arrays are huge, most pages do not overlap other objects and it's not |
| 555 | // really important where they are for the clean/dirty separation. Due to their |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 556 | // special PC-relative addressing, we arbitrarily keep them at the end. |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 557 | // * Class'es which are verified [their clinit runs only at runtime] |
| 558 | // - classes in general [because their static fields get overwritten] |
| 559 | // - initialized classes with all-final statics are unlikely to be ever dirty, |
| 560 | // so bin them separately |
| 561 | // * Art Methods that are: |
| 562 | // - native [their native entry point is not looked up until runtime] |
| 563 | // - have declaring classes that aren't initialized |
| 564 | // [their interpreter/quick entry points are trampolines until the class |
| 565 | // becomes initialized] |
| 566 | // |
| 567 | // We also assume the following objects get dirtied either never or extremely rarely: |
| 568 | // * Strings (they are immutable) |
| 569 | // * Art methods that aren't native and have initialized declared classes |
| 570 | // |
| 571 | // We assume that "regular" bin objects are highly unlikely to become dirtied, |
| 572 | // so packing them together will not result in a noticeably tighter dirty-to-clean ratio. |
| 573 | // |
| 574 | if (object->IsClass()) { |
| 575 | bin = kBinClassVerified; |
| 576 | mirror::Class* klass = object->AsClass(); |
| 577 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 578 | // Add non-embedded vtable to the pointer array table if there is one. |
| 579 | auto* vtable = klass->GetVTable(); |
| 580 | if (vtable != nullptr) { |
| 581 | AddMethodPointerArray(vtable); |
| 582 | } |
| 583 | auto* iftable = klass->GetIfTable(); |
| 584 | if (iftable != nullptr) { |
| 585 | for (int32_t i = 0; i < klass->GetIfTableCount(); ++i) { |
| 586 | if (iftable->GetMethodArrayCount(i) > 0) { |
| 587 | AddMethodPointerArray(iftable->GetMethodArray(i)); |
| 588 | } |
| 589 | } |
| 590 | } |
| 591 | |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 592 | if (klass->GetStatus() == Class::kStatusInitialized) { |
| 593 | bin = kBinClassInitialized; |
| 594 | |
| 595 | // If the class's static fields are all final, put it into a separate bin |
| 596 | // since it's very likely it will stay clean. |
| 597 | uint32_t num_static_fields = klass->NumStaticFields(); |
| 598 | if (num_static_fields == 0) { |
| 599 | bin = kBinClassInitializedFinalStatics; |
| 600 | } else { |
| 601 | // Maybe all the statics are final? |
| 602 | bool all_final = true; |
| 603 | for (uint32_t i = 0; i < num_static_fields; ++i) { |
| 604 | ArtField* field = klass->GetStaticField(i); |
| 605 | if (!field->IsFinal()) { |
| 606 | all_final = false; |
| 607 | break; |
| 608 | } |
| 609 | } |
| 610 | |
| 611 | if (all_final) { |
| 612 | bin = kBinClassInitializedFinalStatics; |
| 613 | } |
| 614 | } |
| 615 | } |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 616 | } else if (object->GetClass<kVerifyNone>()->IsStringClass()) { |
| 617 | bin = kBinString; // Strings are almost always immutable (except for object header). |
| 618 | } // else bin = kBinRegular |
| 619 | } |
| 620 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 621 | const char* oat_filename = GetOatFilename(object); |
| 622 | ImageInfo& image_info = GetImageInfo(oat_filename); |
| 623 | |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 624 | size_t offset_delta = RoundUp(object_size, kObjectAlignment); // 64-bit alignment |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 625 | current_offset = image_info.bin_slot_sizes_[bin]; // How many bytes the current bin is at (aligned). |
| 626 | // Move the current bin size up to accommodate the object we just assigned a bin slot. |
| 627 | image_info.bin_slot_sizes_[bin] += offset_delta; |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 628 | |
| 629 | BinSlot new_bin_slot(bin, current_offset); |
| 630 | SetImageBinSlot(object, new_bin_slot); |
| 631 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 632 | ++image_info.bin_slot_count_[bin]; |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 633 | |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 634 | // Grow the image closer to the end by the object we just assigned. |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 635 | image_info.image_end_ += offset_delta; |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 636 | } |
| 637 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 638 | bool ImageWriter::WillMethodBeDirty(ArtMethod* m) const { |
| 639 | if (m->IsNative()) { |
| 640 | return true; |
| 641 | } |
| 642 | mirror::Class* declaring_class = m->GetDeclaringClass(); |
| 643 | // Initialized is highly unlikely to dirty since there's no entry points to mutate. |
| 644 | return declaring_class == nullptr || declaring_class->GetStatus() != Class::kStatusInitialized; |
| 645 | } |
| 646 | |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 647 | bool ImageWriter::IsImageBinSlotAssigned(mirror::Object* object) const { |
| 648 | DCHECK(object != nullptr); |
| 649 | |
| 650 | // We always stash the bin slot into a lockword, in the 'forwarding address' state. |
| 651 | // If it's in some other state, then we haven't yet assigned an image bin slot. |
| 652 | if (object->GetLockWord(false).GetState() != LockWord::kForwardingAddress) { |
| 653 | return false; |
| 654 | } else if (kIsDebugBuild) { |
| 655 | LockWord lock_word = object->GetLockWord(false); |
| 656 | size_t offset = lock_word.ForwardingAddress(); |
| 657 | BinSlot bin_slot(offset); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 658 | const char* oat_filename = GetOatFilename(object); |
| 659 | const ImageInfo& image_info = GetConstImageInfo(oat_filename); |
| 660 | DCHECK_LT(bin_slot.GetIndex(), image_info.bin_slot_sizes_[bin_slot.GetBin()]) |
Mathieu Chartier | a808bac | 2015-11-05 16:33:15 -0800 | [diff] [blame] | 661 | << "bin slot offset should not exceed the size of that bin"; |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 662 | } |
| 663 | return true; |
| 664 | } |
| 665 | |
| 666 | ImageWriter::BinSlot ImageWriter::GetImageBinSlot(mirror::Object* object) const { |
| 667 | DCHECK(object != nullptr); |
| 668 | DCHECK(IsImageBinSlotAssigned(object)); |
| 669 | |
| 670 | LockWord lock_word = object->GetLockWord(false); |
| 671 | size_t offset = lock_word.ForwardingAddress(); // TODO: ForwardingAddress should be uint32_t |
| 672 | DCHECK_LE(offset, std::numeric_limits<uint32_t>::max()); |
| 673 | |
| 674 | BinSlot bin_slot(static_cast<uint32_t>(offset)); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 675 | const char* oat_filename = GetOatFilename(object); |
| 676 | const ImageInfo& image_info = GetConstImageInfo(oat_filename); |
| 677 | DCHECK_LT(bin_slot.GetIndex(), image_info.bin_slot_sizes_[bin_slot.GetBin()]); |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 678 | |
| 679 | return bin_slot; |
| 680 | } |
| 681 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 682 | bool ImageWriter::AllocMemory() { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 683 | for (const char* oat_filename : oat_filenames_) { |
| 684 | ImageInfo& image_info = GetImageInfo(oat_filename); |
Mathieu Chartier | a06ba05 | 2016-01-06 13:51:52 -0800 | [diff] [blame] | 685 | ImageSection unused_sections[ImageHeader::kSectionCount]; |
| 686 | const size_t length = RoundUp( |
| 687 | image_info.CreateImageSections(target_ptr_size_, unused_sections), |
| 688 | kPageSize); |
| 689 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 690 | std::string error_msg; |
| 691 | image_info.image_.reset(MemMap::MapAnonymous("image writer image", |
| 692 | nullptr, |
| 693 | length, |
| 694 | PROT_READ | PROT_WRITE, |
| 695 | false, |
| 696 | false, |
| 697 | &error_msg)); |
| 698 | if (UNLIKELY(image_info.image_.get() == nullptr)) { |
| 699 | LOG(ERROR) << "Failed to allocate memory for image file generation: " << error_msg; |
| 700 | return false; |
| 701 | } |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 702 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 703 | // Create the image bitmap, only needs to cover mirror object section which is up to image_end_. |
| 704 | CHECK_LE(image_info.image_end_, length); |
| 705 | image_info.image_bitmap_.reset(gc::accounting::ContinuousSpaceBitmap::Create( |
| 706 | "image bitmap", image_info.image_->Begin(), RoundUp(image_info.image_end_, kPageSize))); |
| 707 | if (image_info.image_bitmap_.get() == nullptr) { |
| 708 | LOG(ERROR) << "Failed to allocate memory for image bitmap"; |
| 709 | return false; |
| 710 | } |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 711 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 712 | return true; |
| 713 | } |
| 714 | |
Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 715 | class ComputeLazyFieldsForClassesVisitor : public ClassVisitor { |
| 716 | public: |
Mathieu Chartier | 1aa8ec2 | 2016-02-01 10:34:47 -0800 | [diff] [blame] | 717 | bool operator()(Class* c) OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 718 | StackHandleScope<1> hs(Thread::Current()); |
| 719 | mirror::Class::ComputeName(hs.NewHandle(c)); |
| 720 | return true; |
| 721 | } |
| 722 | }; |
| 723 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 724 | void ImageWriter::ComputeLazyFieldsForImageClasses() { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 725 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 726 | ComputeLazyFieldsForClassesVisitor visitor; |
| 727 | class_linker->VisitClassesWithoutClassesLock(&visitor); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 728 | } |
| 729 | |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 730 | static bool IsBootClassLoaderClass(mirror::Class* klass) SHARED_REQUIRES(Locks::mutator_lock_) { |
| 731 | return klass->GetClassLoader() == nullptr; |
| 732 | } |
| 733 | |
| 734 | bool ImageWriter::IsBootClassLoaderNonImageClass(mirror::Class* klass) { |
| 735 | return IsBootClassLoaderClass(klass) && !IsInBootImage(klass); |
| 736 | } |
| 737 | |
| 738 | bool ImageWriter::ContainsBootClassLoaderNonImageClass(mirror::Class* klass) { |
Mathieu Chartier | 945c1c1 | 2015-11-24 15:37:12 -0800 | [diff] [blame] | 739 | bool early_exit = false; |
| 740 | std::unordered_set<mirror::Class*> visited; |
| 741 | return ContainsBootClassLoaderNonImageClassInternal(klass, &early_exit, &visited); |
| 742 | } |
| 743 | |
| 744 | bool ImageWriter::ContainsBootClassLoaderNonImageClassInternal( |
| 745 | mirror::Class* klass, |
| 746 | bool* early_exit, |
| 747 | std::unordered_set<mirror::Class*>* visited) { |
| 748 | DCHECK(early_exit != nullptr); |
| 749 | DCHECK(visited != nullptr); |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 750 | DCHECK(compile_app_image_); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 751 | if (klass == nullptr) { |
| 752 | return false; |
| 753 | } |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 754 | auto found = prune_class_memo_.find(klass); |
| 755 | if (found != prune_class_memo_.end()) { |
| 756 | // Already computed, return the found value. |
| 757 | return found->second; |
| 758 | } |
Mathieu Chartier | 945c1c1 | 2015-11-24 15:37:12 -0800 | [diff] [blame] | 759 | // Circular dependencies, return false but do not store the result in the memoization table. |
| 760 | if (visited->find(klass) != visited->end()) { |
| 761 | *early_exit = true; |
| 762 | return false; |
| 763 | } |
| 764 | visited->emplace(klass); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 765 | bool result = IsBootClassLoaderNonImageClass(klass); |
Mathieu Chartier | 945c1c1 | 2015-11-24 15:37:12 -0800 | [diff] [blame] | 766 | bool my_early_exit = false; // Only for ourselves, ignore caller. |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 767 | // Remove classes that failed to verify since we don't want to have java.lang.VerifyError in the |
| 768 | // app image. |
| 769 | if (klass->GetStatus() == mirror::Class::kStatusError) { |
| 770 | result = true; |
| 771 | } else { |
| 772 | CHECK(klass->GetVerifyError() == nullptr) << PrettyClass(klass); |
| 773 | } |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 774 | if (!result) { |
| 775 | // Check interfaces since these wont be visited through VisitReferences.) |
| 776 | mirror::IfTable* if_table = klass->GetIfTable(); |
| 777 | for (size_t i = 0, num_interfaces = klass->GetIfTableCount(); i < num_interfaces; ++i) { |
Mathieu Chartier | 945c1c1 | 2015-11-24 15:37:12 -0800 | [diff] [blame] | 778 | result = result || ContainsBootClassLoaderNonImageClassInternal( |
| 779 | if_table->GetInterface(i), |
| 780 | &my_early_exit, |
| 781 | visited); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 782 | } |
| 783 | } |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 784 | if (klass->IsObjectArrayClass()) { |
| 785 | result = result || ContainsBootClassLoaderNonImageClassInternal( |
| 786 | klass->GetComponentType(), |
| 787 | &my_early_exit, |
| 788 | visited); |
| 789 | } |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 790 | // Check static fields and their classes. |
| 791 | size_t num_static_fields = klass->NumReferenceStaticFields(); |
| 792 | if (num_static_fields != 0 && klass->IsResolved()) { |
| 793 | // Presumably GC can happen when we are cross compiling, it should not cause performance |
| 794 | // problems to do pointer size logic. |
| 795 | MemberOffset field_offset = klass->GetFirstReferenceStaticFieldOffset( |
| 796 | Runtime::Current()->GetClassLinker()->GetImagePointerSize()); |
| 797 | for (size_t i = 0u; i < num_static_fields; ++i) { |
| 798 | mirror::Object* ref = klass->GetFieldObject<mirror::Object>(field_offset); |
| 799 | if (ref != nullptr) { |
| 800 | if (ref->IsClass()) { |
Mathieu Chartier | 945c1c1 | 2015-11-24 15:37:12 -0800 | [diff] [blame] | 801 | result = result || |
| 802 | ContainsBootClassLoaderNonImageClassInternal( |
| 803 | ref->AsClass(), |
| 804 | &my_early_exit, |
| 805 | visited); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 806 | } |
Mathieu Chartier | 945c1c1 | 2015-11-24 15:37:12 -0800 | [diff] [blame] | 807 | result = result || |
| 808 | ContainsBootClassLoaderNonImageClassInternal( |
| 809 | ref->GetClass(), |
| 810 | &my_early_exit, |
| 811 | visited); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 812 | } |
| 813 | field_offset = MemberOffset(field_offset.Uint32Value() + |
| 814 | sizeof(mirror::HeapReference<mirror::Object>)); |
| 815 | } |
| 816 | } |
Mathieu Chartier | 945c1c1 | 2015-11-24 15:37:12 -0800 | [diff] [blame] | 817 | result = result || |
| 818 | ContainsBootClassLoaderNonImageClassInternal( |
| 819 | klass->GetSuperClass(), |
| 820 | &my_early_exit, |
| 821 | visited); |
| 822 | // Erase the element we stored earlier since we are exiting the function. |
| 823 | auto it = visited->find(klass); |
| 824 | DCHECK(it != visited->end()); |
| 825 | visited->erase(it); |
| 826 | // Only store result if it is true or none of the calls early exited due to circular |
| 827 | // dependencies. If visited is empty then we are the root caller, in this case the cycle was in |
| 828 | // a child call and we can remember the result. |
| 829 | if (result == true || !my_early_exit || visited->empty()) { |
| 830 | prune_class_memo_[klass] = result; |
| 831 | } |
| 832 | *early_exit |= my_early_exit; |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 833 | return result; |
| 834 | } |
| 835 | |
| 836 | bool ImageWriter::KeepClass(Class* klass) { |
| 837 | if (klass == nullptr) { |
| 838 | return false; |
| 839 | } |
| 840 | if (compile_app_image_) { |
| 841 | // For app images, we need to prune boot loader classes that are not in the boot image since |
| 842 | // these may have already been loaded when the app image is loaded. |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 843 | // Keep classes in the boot image space since we don't want to re-resolve these. |
| 844 | return Runtime::Current()->GetHeap()->ObjectIsInBootImageSpace(klass) || |
| 845 | !ContainsBootClassLoaderNonImageClass(klass); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 846 | } |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 847 | std::string temp; |
| 848 | return compiler_driver_.IsImageClass(klass->GetDescriptor(&temp)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 849 | } |
| 850 | |
Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 851 | class NonImageClassesVisitor : public ClassVisitor { |
| 852 | public: |
| 853 | explicit NonImageClassesVisitor(ImageWriter* image_writer) : image_writer_(image_writer) {} |
| 854 | |
Mathieu Chartier | 1aa8ec2 | 2016-02-01 10:34:47 -0800 | [diff] [blame] | 855 | bool operator()(Class* klass) OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 856 | if (!image_writer_->KeepClass(klass)) { |
| 857 | classes_to_prune_.insert(klass); |
Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 858 | } |
| 859 | return true; |
| 860 | } |
| 861 | |
Mathieu Chartier | 9b1c9b7 | 2016-02-02 10:09:58 -0800 | [diff] [blame] | 862 | std::unordered_set<mirror::Class*> classes_to_prune_; |
Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 863 | ImageWriter* const image_writer_; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 864 | }; |
| 865 | |
| 866 | void ImageWriter::PruneNonImageClasses() { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 867 | Runtime* runtime = Runtime::Current(); |
| 868 | ClassLinker* class_linker = runtime->GetClassLinker(); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 869 | Thread* self = Thread::Current(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 870 | |
| 871 | // Make a list of classes we would like to prune. |
Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 872 | NonImageClassesVisitor visitor(this); |
| 873 | class_linker->VisitClasses(&visitor); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 874 | |
| 875 | // Remove the undesired classes from the class roots. |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 876 | for (mirror::Class* klass : visitor.classes_to_prune_) { |
| 877 | std::string temp; |
| 878 | const char* name = klass->GetDescriptor(&temp); |
| 879 | VLOG(compiler) << "Pruning class " << name; |
| 880 | if (!compile_app_image_) { |
| 881 | DCHECK(IsBootClassLoaderClass(klass)); |
| 882 | } |
| 883 | bool result = class_linker->RemoveClass(name, klass->GetClassLoader()); |
Mathieu Chartier | c2e2062 | 2014-11-03 11:41:47 -0800 | [diff] [blame] | 884 | DCHECK(result); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 885 | } |
| 886 | |
| 887 | // Clear references to removed classes from the DexCaches. |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 888 | ArtMethod* resolution_method = runtime->GetResolutionMethod(); |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 889 | |
| 890 | ScopedAssertNoThreadSuspension sa(self, __FUNCTION__); |
| 891 | ReaderMutexLock mu(self, *Locks::classlinker_classes_lock_); // For ClassInClassTable |
| 892 | ReaderMutexLock mu2(self, *class_linker->DexLock()); |
Hiroshi Yamauchi | 04302db | 2015-11-11 23:45:34 -0800 | [diff] [blame] | 893 | for (const ClassLinker::DexCacheData& data : class_linker->GetDexCachesData()) { |
| 894 | mirror::DexCache* dex_cache = down_cast<mirror::DexCache*>(self->DecodeJObject(data.weak_root)); |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 895 | if (dex_cache == nullptr) { |
| 896 | continue; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 897 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 898 | for (size_t i = 0; i < dex_cache->NumResolvedTypes(); i++) { |
| 899 | Class* klass = dex_cache->GetResolvedType(i); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 900 | if (klass != nullptr && !KeepClass(klass)) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 901 | dex_cache->SetResolvedType(i, nullptr); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 902 | } |
| 903 | } |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 904 | ArtMethod** resolved_methods = dex_cache->GetResolvedMethods(); |
| 905 | for (size_t i = 0, num = dex_cache->NumResolvedMethods(); i != num; ++i) { |
| 906 | ArtMethod* method = |
| 907 | mirror::DexCache::GetElementPtrSize(resolved_methods, i, target_ptr_size_); |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 908 | DCHECK(method != nullptr) << "Expected resolution method instead of null method"; |
| 909 | mirror::Class* declaring_class = method->GetDeclaringClass(); |
Alex Light | d07e1b3 | 2016-02-17 11:59:05 -0800 | [diff] [blame^] | 910 | // Copied methods may be held live by a class which was not an image class but have a |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 911 | // declaring class which is an image class. Set it to the resolution method to be safe and |
| 912 | // prevent dangling pointers. |
Alex Light | d07e1b3 | 2016-02-17 11:59:05 -0800 | [diff] [blame^] | 913 | if (method->MightBeCopied() || !KeepClass(declaring_class)) { |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 914 | mirror::DexCache::SetElementPtrSize(resolved_methods, |
| 915 | i, |
| 916 | resolution_method, |
| 917 | target_ptr_size_); |
| 918 | } else { |
| 919 | // Check that the class is still in the classes table. |
| 920 | DCHECK(class_linker->ClassInClassTable(declaring_class)) << "Class " |
| 921 | << PrettyClass(declaring_class) << " not in class linker table"; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 922 | } |
| 923 | } |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 924 | ArtField** resolved_fields = dex_cache->GetResolvedFields(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 925 | for (size_t i = 0; i < dex_cache->NumResolvedFields(); i++) { |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 926 | ArtField* field = mirror::DexCache::GetElementPtrSize(resolved_fields, i, target_ptr_size_); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 927 | if (field != nullptr && !KeepClass(field->GetDeclaringClass())) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 928 | dex_cache->SetResolvedField(i, nullptr, target_ptr_size_); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 929 | } |
| 930 | } |
Andreas Gampe | dd9d055 | 2015-03-09 12:57:41 -0700 | [diff] [blame] | 931 | // Clean the dex field. It might have been populated during the initialization phase, but |
| 932 | // contains data only valid during a real run. |
| 933 | dex_cache->SetFieldObject<false>(mirror::DexCache::DexOffset(), nullptr); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 934 | } |
Andreas Gampe | 8ac7595 | 2015-06-02 21:01:45 -0700 | [diff] [blame] | 935 | |
| 936 | // Drop the array class cache in the ClassLinker, as these are roots holding those classes live. |
| 937 | class_linker->DropFindArrayClassCache(); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 938 | |
| 939 | // Clear to save RAM. |
| 940 | prune_class_memo_.clear(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 941 | } |
| 942 | |
Mathieu Chartier | fd04b6f | 2014-11-14 19:34:18 -0800 | [diff] [blame] | 943 | void ImageWriter::CheckNonImageClassesRemoved() { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 944 | if (compiler_driver_.GetImageClasses() != nullptr) { |
| 945 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 946 | heap->VisitObjects(CheckNonImageClassesRemovedCallback, this); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 947 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 948 | } |
| 949 | |
| 950 | void ImageWriter::CheckNonImageClassesRemovedCallback(Object* obj, void* arg) { |
| 951 | ImageWriter* image_writer = reinterpret_cast<ImageWriter*>(arg); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 952 | if (obj->IsClass() && !image_writer->IsInBootImage(obj)) { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 953 | Class* klass = obj->AsClass(); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 954 | if (!image_writer->KeepClass(klass)) { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 955 | image_writer->DumpImageClasses(); |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 956 | std::string temp; |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 957 | CHECK(image_writer->KeepClass(klass)) << klass->GetDescriptor(&temp) |
| 958 | << " " << PrettyDescriptor(klass); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 959 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 960 | } |
| 961 | } |
| 962 | |
| 963 | void ImageWriter::DumpImageClasses() { |
Andreas Gampe | b1fcead | 2015-04-20 18:53:51 -0700 | [diff] [blame] | 964 | auto image_classes = compiler_driver_.GetImageClasses(); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 965 | CHECK(image_classes != nullptr); |
Mathieu Chartier | 02e2511 | 2013-08-14 16:14:24 -0700 | [diff] [blame] | 966 | for (const std::string& image_class : *image_classes) { |
| 967 | LOG(INFO) << " " << image_class; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 968 | } |
| 969 | } |
| 970 | |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 971 | mirror::String* ImageWriter::FindInternedString(mirror::String* string) { |
| 972 | Thread* const self = Thread::Current(); |
| 973 | for (auto& pair : image_info_map_) { |
| 974 | const ImageInfo& image_info = pair.second; |
| 975 | mirror::String* const found = image_info.intern_table_->LookupStrong(self, string); |
| 976 | DCHECK(image_info.intern_table_->LookupWeak(self, string) == nullptr) |
| 977 | << string->ToModifiedUtf8(); |
| 978 | if (found != nullptr) { |
| 979 | return found; |
| 980 | } |
| 981 | } |
| 982 | if (compile_app_image_) { |
| 983 | Runtime* const runtime = Runtime::Current(); |
| 984 | mirror::String* found = runtime->GetInternTable()->LookupStrong(self, string); |
| 985 | // If we found it in the runtime intern table it could either be in the boot image or interned |
| 986 | // during app image compilation. If it was in the boot image return that, otherwise return null |
| 987 | // since it belongs to another image space. |
| 988 | if (found != nullptr && runtime->GetHeap()->ObjectIsInBootImageSpace(found)) { |
| 989 | return found; |
| 990 | } |
| 991 | DCHECK(runtime->GetInternTable()->LookupWeak(self, string) == nullptr) |
| 992 | << string->ToModifiedUtf8(); |
| 993 | } |
| 994 | return nullptr; |
| 995 | } |
| 996 | |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 997 | void ImageWriter::CalculateObjectBinSlots(Object* obj) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 998 | DCHECK(obj != nullptr); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 999 | // if it is a string, we want to intern it if its not interned. |
| 1000 | if (obj->GetClass()->IsStringClass()) { |
Mathieu Chartier | ea0831f | 2015-12-29 13:17:37 -0800 | [diff] [blame] | 1001 | const char* oat_filename = GetOatFilename(obj); |
| 1002 | ImageInfo& image_info = GetImageInfo(oat_filename); |
| 1003 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1004 | // we must be an interned string that was forward referenced and already assigned |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 1005 | if (IsImageBinSlotAssigned(obj)) { |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 1006 | DCHECK_EQ(obj, FindInternedString(obj->AsString())); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1007 | return; |
| 1008 | } |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 1009 | // Need to check if the string is already interned in another image info so that we don't have |
| 1010 | // the intern tables of two different images contain the same string. |
| 1011 | mirror::String* interned = FindInternedString(obj->AsString()); |
| 1012 | if (interned == nullptr) { |
| 1013 | // Not in another image space, insert to our table. |
| 1014 | interned = image_info.intern_table_->InternStrongImageString(obj->AsString()); |
| 1015 | } |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1016 | if (obj != interned) { |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 1017 | if (!IsImageBinSlotAssigned(interned)) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1018 | // interned obj is after us, allocate its location early |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 1019 | AssignImageBinSlot(interned); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1020 | } |
| 1021 | // point those looking for this object to the interned version. |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 1022 | SetImageBinSlot(obj, GetImageBinSlot(interned)); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1023 | return; |
| 1024 | } |
| 1025 | // else (obj == interned), nothing to do but fall through to the normal case |
| 1026 | } |
| 1027 | |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 1028 | AssignImageBinSlot(obj); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1029 | } |
| 1030 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1031 | ObjectArray<Object>* ImageWriter::CreateImageRoots(const char* oat_filename) const { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1032 | Runtime* runtime = Runtime::Current(); |
| 1033 | ClassLinker* class_linker = runtime->GetClassLinker(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1034 | Thread* self = Thread::Current(); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1035 | StackHandleScope<3> hs(self); |
| 1036 | Handle<Class> object_array_class(hs.NewHandle( |
| 1037 | class_linker->FindSystemClass(self, "[Ljava/lang/Object;"))); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1038 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1039 | std::unordered_set<const DexFile*> image_dex_files; |
| 1040 | for (auto& pair : dex_file_oat_filename_map_) { |
| 1041 | const DexFile* image_dex_file = pair.first; |
| 1042 | const char* image_oat_filename = pair.second; |
| 1043 | if (strcmp(oat_filename, image_oat_filename) == 0) { |
| 1044 | image_dex_files.insert(image_dex_file); |
| 1045 | } |
| 1046 | } |
| 1047 | |
Hiroshi Yamauchi | e9e3e69 | 2014-06-24 14:31:37 -0700 | [diff] [blame] | 1048 | // build an Object[] of all the DexCaches used in the source_space_. |
| 1049 | // Since we can't hold the dex lock when allocating the dex_caches |
| 1050 | // ObjectArray, we lock the dex lock twice, first to get the number |
| 1051 | // of dex caches first and then lock it again to copy the dex |
| 1052 | // caches. We check that the number of dex caches does not change. |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1053 | size_t dex_cache_count = 0; |
Hiroshi Yamauchi | e9e3e69 | 2014-06-24 14:31:37 -0700 | [diff] [blame] | 1054 | { |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1055 | ReaderMutexLock mu(self, *class_linker->DexLock()); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1056 | // Count number of dex caches not in the boot image. |
Hiroshi Yamauchi | 04302db | 2015-11-11 23:45:34 -0800 | [diff] [blame] | 1057 | for (const ClassLinker::DexCacheData& data : class_linker->GetDexCachesData()) { |
| 1058 | mirror::DexCache* dex_cache = |
| 1059 | down_cast<mirror::DexCache*>(self->DecodeJObject(data.weak_root)); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1060 | const DexFile* dex_file = dex_cache->GetDexFile(); |
| 1061 | if (!IsInBootImage(dex_cache)) { |
| 1062 | dex_cache_count += image_dex_files.find(dex_file) != image_dex_files.end() ? 1u : 0u; |
| 1063 | } |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1064 | } |
Hiroshi Yamauchi | e9e3e69 | 2014-06-24 14:31:37 -0700 | [diff] [blame] | 1065 | } |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1066 | Handle<ObjectArray<Object>> dex_caches( |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1067 | hs.NewHandle(ObjectArray<Object>::Alloc(self, object_array_class.Get(), dex_cache_count))); |
Hiroshi Yamauchi | e9e3e69 | 2014-06-24 14:31:37 -0700 | [diff] [blame] | 1068 | CHECK(dex_caches.Get() != nullptr) << "Failed to allocate a dex cache array."; |
| 1069 | { |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1070 | ReaderMutexLock mu(self, *class_linker->DexLock()); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1071 | size_t non_image_dex_caches = 0; |
| 1072 | // Re-count number of non image dex caches. |
Hiroshi Yamauchi | 04302db | 2015-11-11 23:45:34 -0800 | [diff] [blame] | 1073 | for (const ClassLinker::DexCacheData& data : class_linker->GetDexCachesData()) { |
| 1074 | mirror::DexCache* dex_cache = |
| 1075 | down_cast<mirror::DexCache*>(self->DecodeJObject(data.weak_root)); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1076 | const DexFile* dex_file = dex_cache->GetDexFile(); |
| 1077 | if (!IsInBootImage(dex_cache)) { |
| 1078 | non_image_dex_caches += image_dex_files.find(dex_file) != image_dex_files.end() ? 1u : 0u; |
| 1079 | } |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1080 | } |
| 1081 | CHECK_EQ(dex_cache_count, non_image_dex_caches) |
| 1082 | << "The number of non-image dex caches changed."; |
Mathieu Chartier | 673ed3d | 2015-08-28 14:56:43 -0700 | [diff] [blame] | 1083 | size_t i = 0; |
Hiroshi Yamauchi | 04302db | 2015-11-11 23:45:34 -0800 | [diff] [blame] | 1084 | for (const ClassLinker::DexCacheData& data : class_linker->GetDexCachesData()) { |
| 1085 | mirror::DexCache* dex_cache = |
| 1086 | down_cast<mirror::DexCache*>(self->DecodeJObject(data.weak_root)); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1087 | const DexFile* dex_file = dex_cache->GetDexFile(); |
| 1088 | if (!IsInBootImage(dex_cache) && image_dex_files.find(dex_file) != image_dex_files.end()) { |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1089 | dex_caches->Set<false>(i, dex_cache); |
| 1090 | ++i; |
| 1091 | } |
Hiroshi Yamauchi | e9e3e69 | 2014-06-24 14:31:37 -0700 | [diff] [blame] | 1092 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1093 | } |
| 1094 | |
| 1095 | // build an Object[] of the roots needed to restore the runtime |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1096 | auto image_roots(hs.NewHandle( |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1097 | ObjectArray<Object>::Alloc(self, object_array_class.Get(), ImageHeader::kImageRootsMax))); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1098 | image_roots->Set<false>(ImageHeader::kDexCaches, dex_caches.Get()); |
Sebastien Hertz | d2fe10a | 2014-01-15 10:20:56 +0100 | [diff] [blame] | 1099 | image_roots->Set<false>(ImageHeader::kClassRoots, class_linker->GetClassRoots()); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1100 | for (int i = 0; i < ImageHeader::kImageRootsMax; i++) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 1101 | CHECK(image_roots->Get(i) != nullptr); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1102 | } |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1103 | return image_roots.Get(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1104 | } |
| 1105 | |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1106 | // Walk instance fields of the given Class. Separate function to allow recursion on the super |
| 1107 | // class. |
| 1108 | void ImageWriter::WalkInstanceFields(mirror::Object* obj, mirror::Class* klass) { |
| 1109 | // Visit fields of parent classes first. |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1110 | StackHandleScope<1> hs(Thread::Current()); |
| 1111 | Handle<mirror::Class> h_class(hs.NewHandle(klass)); |
| 1112 | mirror::Class* super = h_class->GetSuperClass(); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1113 | if (super != nullptr) { |
| 1114 | WalkInstanceFields(obj, super); |
| 1115 | } |
| 1116 | // |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1117 | size_t num_reference_fields = h_class->NumReferenceInstanceFields(); |
Vladimir Marko | 76649e8 | 2014-11-10 18:32:59 +0000 | [diff] [blame] | 1118 | MemberOffset field_offset = h_class->GetFirstReferenceInstanceFieldOffset(); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1119 | for (size_t i = 0; i < num_reference_fields; ++i) { |
Ian Rogers | b0fa5dc | 2014-04-28 16:47:08 -0700 | [diff] [blame] | 1120 | mirror::Object* value = obj->GetFieldObject<mirror::Object>(field_offset); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1121 | if (value != nullptr) { |
| 1122 | WalkFieldsInOrder(value); |
| 1123 | } |
Vladimir Marko | 76649e8 | 2014-11-10 18:32:59 +0000 | [diff] [blame] | 1124 | field_offset = MemberOffset(field_offset.Uint32Value() + |
| 1125 | sizeof(mirror::HeapReference<mirror::Object>)); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1126 | } |
| 1127 | } |
| 1128 | |
| 1129 | // For an unvisited object, visit it then all its children found via fields. |
| 1130 | void ImageWriter::WalkFieldsInOrder(mirror::Object* obj) { |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1131 | if (IsInBootImage(obj)) { |
| 1132 | // Object is in the image, don't need to fix it up. |
| 1133 | return; |
| 1134 | } |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 1135 | // Use our own visitor routine (instead of GC visitor) to get better locality between |
| 1136 | // an object and its fields |
| 1137 | if (!IsImageBinSlotAssigned(obj)) { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1138 | // Walk instance fields of all objects |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1139 | StackHandleScope<2> hs(Thread::Current()); |
| 1140 | Handle<mirror::Object> h_obj(hs.NewHandle(obj)); |
| 1141 | Handle<mirror::Class> klass(hs.NewHandle(obj->GetClass())); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1142 | // visit the object itself. |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 1143 | CalculateObjectBinSlots(h_obj.Get()); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1144 | WalkInstanceFields(h_obj.Get(), klass.Get()); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1145 | // Walk static fields of a Class. |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1146 | if (h_obj->IsClass()) { |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1147 | size_t num_reference_static_fields = klass->NumReferenceStaticFields(); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1148 | MemberOffset field_offset = klass->GetFirstReferenceStaticFieldOffset(target_ptr_size_); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1149 | for (size_t i = 0; i < num_reference_static_fields; ++i) { |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1150 | mirror::Object* value = h_obj->GetFieldObject<mirror::Object>(field_offset); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1151 | if (value != nullptr) { |
| 1152 | WalkFieldsInOrder(value); |
| 1153 | } |
Vladimir Marko | 76649e8 | 2014-11-10 18:32:59 +0000 | [diff] [blame] | 1154 | field_offset = MemberOffset(field_offset.Uint32Value() + |
| 1155 | sizeof(mirror::HeapReference<mirror::Object>)); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1156 | } |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1157 | // Visit and assign offsets for fields and field arrays. |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1158 | auto* as_klass = h_obj->AsClass(); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1159 | mirror::DexCache* dex_cache = as_klass->GetDexCache(); |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 1160 | DCHECK_NE(klass->GetStatus(), mirror::Class::kStatusError); |
| 1161 | if (compile_app_image_) { |
| 1162 | // Extra sanity, no boot loader classes should be left! |
| 1163 | CHECK(!IsBootClassLoaderClass(as_klass)) << PrettyClass(as_klass); |
| 1164 | } |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1165 | LengthPrefixedArray<ArtField>* fields[] = { |
| 1166 | as_klass->GetSFieldsPtr(), as_klass->GetIFieldsPtr(), |
| 1167 | }; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1168 | const char* oat_file = GetOatFilenameForDexCache(dex_cache); |
| 1169 | ImageInfo& image_info = GetImageInfo(oat_file); |
Mathieu Chartier | 1f47b67 | 2016-01-07 16:29:01 -0800 | [diff] [blame] | 1170 | { |
| 1171 | // Note: This table is only accessed from the image writer, so the lock is technically |
| 1172 | // unnecessary. |
| 1173 | WriterMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_); |
| 1174 | // Insert in the class table for this iamge. |
| 1175 | image_info.class_table_->Insert(as_klass); |
| 1176 | } |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1177 | for (LengthPrefixedArray<ArtField>* cur_fields : fields) { |
| 1178 | // Total array length including header. |
| 1179 | if (cur_fields != nullptr) { |
| 1180 | const size_t header_size = LengthPrefixedArray<ArtField>::ComputeSize(0); |
| 1181 | // Forward the entire array at once. |
| 1182 | auto it = native_object_relocations_.find(cur_fields); |
| 1183 | CHECK(it == native_object_relocations_.end()) << "Field array " << cur_fields |
| 1184 | << " already forwarded"; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1185 | size_t& offset = image_info.bin_slot_sizes_[kBinArtField]; |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1186 | DCHECK(!IsInBootImage(cur_fields)); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1187 | native_object_relocations_.emplace(cur_fields, |
| 1188 | NativeObjectRelocation {oat_file, offset, kNativeObjectRelocationTypeArtFieldArray }); |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1189 | offset += header_size; |
| 1190 | // Forward individual fields so that we can quickly find where they belong. |
Vladimir Marko | 35831e8 | 2015-09-11 11:59:18 +0100 | [diff] [blame] | 1191 | for (size_t i = 0, count = cur_fields->size(); i < count; ++i) { |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1192 | // Need to forward arrays separate of fields. |
| 1193 | ArtField* field = &cur_fields->At(i); |
| 1194 | auto it2 = native_object_relocations_.find(field); |
| 1195 | CHECK(it2 == native_object_relocations_.end()) << "Field at index=" << i |
| 1196 | << " already assigned " << PrettyField(field) << " static=" << field->IsStatic(); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1197 | DCHECK(!IsInBootImage(field)); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1198 | native_object_relocations_.emplace(field, |
| 1199 | NativeObjectRelocation {oat_file, offset, kNativeObjectRelocationTypeArtField }); |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1200 | offset += sizeof(ArtField); |
| 1201 | } |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1202 | } |
| 1203 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1204 | // Visit and assign offsets for methods. |
Alex Light | e64300b | 2015-12-15 15:02:47 -0800 | [diff] [blame] | 1205 | size_t num_methods = as_klass->NumMethods(); |
| 1206 | if (num_methods != 0) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1207 | bool any_dirty = false; |
Alex Light | e64300b | 2015-12-15 15:02:47 -0800 | [diff] [blame] | 1208 | for (auto& m : as_klass->GetMethods(target_ptr_size_)) { |
| 1209 | if (WillMethodBeDirty(&m)) { |
| 1210 | any_dirty = true; |
| 1211 | break; |
| 1212 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1213 | } |
Mathieu Chartier | a808bac | 2015-11-05 16:33:15 -0800 | [diff] [blame] | 1214 | NativeObjectRelocationType type = any_dirty |
| 1215 | ? kNativeObjectRelocationTypeArtMethodDirty |
| 1216 | : kNativeObjectRelocationTypeArtMethodClean; |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1217 | Bin bin_type = BinTypeForNativeRelocationType(type); |
| 1218 | // Forward the entire array at once, but header first. |
Alex Light | e64300b | 2015-12-15 15:02:47 -0800 | [diff] [blame] | 1219 | const size_t method_alignment = ArtMethod::Alignment(target_ptr_size_); |
| 1220 | const size_t method_size = ArtMethod::Size(target_ptr_size_); |
Vladimir Marko | cf36d49 | 2015-08-12 19:27:26 +0100 | [diff] [blame] | 1221 | const size_t header_size = LengthPrefixedArray<ArtMethod>::ComputeSize(0, |
| 1222 | method_size, |
| 1223 | method_alignment); |
Alex Light | e64300b | 2015-12-15 15:02:47 -0800 | [diff] [blame] | 1224 | LengthPrefixedArray<ArtMethod>* array = as_klass->GetMethodsPtr(); |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1225 | auto it = native_object_relocations_.find(array); |
Alex Light | e64300b | 2015-12-15 15:02:47 -0800 | [diff] [blame] | 1226 | CHECK(it == native_object_relocations_.end()) |
| 1227 | << "Method array " << array << " already forwarded"; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1228 | size_t& offset = image_info.bin_slot_sizes_[bin_type]; |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1229 | DCHECK(!IsInBootImage(array)); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1230 | native_object_relocations_.emplace(array, |
| 1231 | NativeObjectRelocation { |
| 1232 | oat_file, |
| 1233 | offset, |
| 1234 | any_dirty ? kNativeObjectRelocationTypeArtMethodArrayDirty |
| 1235 | : kNativeObjectRelocationTypeArtMethodArrayClean }); |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1236 | offset += header_size; |
Alex Light | e64300b | 2015-12-15 15:02:47 -0800 | [diff] [blame] | 1237 | for (auto& m : as_klass->GetMethods(target_ptr_size_)) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1238 | AssignMethodOffset(&m, type, oat_file); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1239 | } |
Alex Light | e64300b | 2015-12-15 15:02:47 -0800 | [diff] [blame] | 1240 | (any_dirty ? dirty_methods_ : clean_methods_) += num_methods; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1241 | } |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1242 | } else if (h_obj->IsObjectArray()) { |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1243 | // Walk elements of an object array. |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1244 | int32_t length = h_obj->AsObjectArray<mirror::Object>()->GetLength(); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1245 | for (int32_t i = 0; i < length; i++) { |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 1246 | mirror::ObjectArray<mirror::Object>* obj_array = h_obj->AsObjectArray<mirror::Object>(); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1247 | mirror::Object* value = obj_array->Get(i); |
| 1248 | if (value != nullptr) { |
| 1249 | WalkFieldsInOrder(value); |
| 1250 | } |
| 1251 | } |
Mathieu Chartier | 208a5cb | 2015-12-02 15:44:07 -0800 | [diff] [blame] | 1252 | } else if (h_obj->IsClassLoader()) { |
| 1253 | // Register the class loader if it has a class table. |
| 1254 | // The fake boot class loader should not get registered and we should end up with only one |
| 1255 | // class loader. |
| 1256 | mirror::ClassLoader* class_loader = h_obj->AsClassLoader(); |
| 1257 | if (class_loader->GetClassTable() != nullptr) { |
| 1258 | class_loaders_.insert(class_loader); |
| 1259 | } |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1260 | } |
| 1261 | } |
| 1262 | } |
| 1263 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1264 | void ImageWriter::AssignMethodOffset(ArtMethod* method, |
| 1265 | NativeObjectRelocationType type, |
| 1266 | const char* oat_filename) { |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1267 | DCHECK(!IsInBootImage(method)); |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1268 | auto it = native_object_relocations_.find(method); |
| 1269 | CHECK(it == native_object_relocations_.end()) << "Method " << method << " already assigned " |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1270 | << PrettyMethod(method); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1271 | ImageInfo& image_info = GetImageInfo(oat_filename); |
| 1272 | size_t& offset = image_info.bin_slot_sizes_[BinTypeForNativeRelocationType(type)]; |
| 1273 | native_object_relocations_.emplace(method, NativeObjectRelocation { oat_filename, offset, type }); |
Vladimir Marko | 1463285 | 2015-08-17 12:07:23 +0100 | [diff] [blame] | 1274 | offset += ArtMethod::Size(target_ptr_size_); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1275 | } |
| 1276 | |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1277 | void ImageWriter::WalkFieldsCallback(mirror::Object* obj, void* arg) { |
| 1278 | ImageWriter* writer = reinterpret_cast<ImageWriter*>(arg); |
| 1279 | DCHECK(writer != nullptr); |
| 1280 | writer->WalkFieldsInOrder(obj); |
| 1281 | } |
| 1282 | |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 1283 | void ImageWriter::UnbinObjectsIntoOffsetCallback(mirror::Object* obj, void* arg) { |
| 1284 | ImageWriter* writer = reinterpret_cast<ImageWriter*>(arg); |
| 1285 | DCHECK(writer != nullptr); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1286 | if (!writer->IsInBootImage(obj)) { |
| 1287 | writer->UnbinObjectsIntoOffset(obj); |
| 1288 | } |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 1289 | } |
| 1290 | |
| 1291 | void ImageWriter::UnbinObjectsIntoOffset(mirror::Object* obj) { |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1292 | DCHECK(!IsInBootImage(obj)); |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 1293 | CHECK(obj != nullptr); |
| 1294 | |
| 1295 | // We know the bin slot, and the total bin sizes for all objects by now, |
| 1296 | // so calculate the object's final image offset. |
| 1297 | |
| 1298 | DCHECK(IsImageBinSlotAssigned(obj)); |
| 1299 | BinSlot bin_slot = GetImageBinSlot(obj); |
| 1300 | // Change the lockword from a bin slot into an offset |
| 1301 | AssignImageOffset(obj, bin_slot); |
| 1302 | } |
| 1303 | |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 1304 | void ImageWriter::CalculateNewObjectOffsets() { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1305 | Thread* const self = Thread::Current(); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1306 | StackHandleScopeCollection handles(self); |
| 1307 | std::vector<Handle<ObjectArray<Object>>> image_roots; |
| 1308 | for (const char* oat_filename : oat_filenames_) { |
| 1309 | std::string image_filename = oat_filename; |
| 1310 | image_roots.push_back(handles.NewHandle(CreateImageRoots(image_filename.c_str()))); |
| 1311 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1312 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1313 | auto* runtime = Runtime::Current(); |
| 1314 | auto* heap = runtime->GetHeap(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1315 | |
Mathieu Chartier | 31e8925 | 2013-08-28 11:29:12 -0700 | [diff] [blame] | 1316 | // Leave space for the header, but do not write it yet, we need to |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1317 | // know where image_roots is going to end up |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1318 | image_objects_offset_begin_ = RoundUp(sizeof(ImageHeader), kObjectAlignment); // 64-bit-alignment |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1319 | |
Hiroshi Yamauchi | 0c8c303 | 2015-01-16 16:54:35 -0800 | [diff] [blame] | 1320 | // Clear any pre-existing monitors which may have been in the monitor words, assign bin slots. |
| 1321 | heap->VisitObjects(WalkFieldsCallback, this); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1322 | // Write the image runtime methods. |
| 1323 | image_methods_[ImageHeader::kResolutionMethod] = runtime->GetResolutionMethod(); |
| 1324 | image_methods_[ImageHeader::kImtConflictMethod] = runtime->GetImtConflictMethod(); |
| 1325 | image_methods_[ImageHeader::kImtUnimplementedMethod] = runtime->GetImtUnimplementedMethod(); |
| 1326 | image_methods_[ImageHeader::kCalleeSaveMethod] = runtime->GetCalleeSaveMethod(Runtime::kSaveAll); |
| 1327 | image_methods_[ImageHeader::kRefsOnlySaveMethod] = |
| 1328 | runtime->GetCalleeSaveMethod(Runtime::kRefsOnly); |
| 1329 | image_methods_[ImageHeader::kRefsAndArgsSaveMethod] = |
| 1330 | runtime->GetCalleeSaveMethod(Runtime::kRefsAndArgs); |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1331 | |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1332 | // Add room for fake length prefixed array for holding the image methods. |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1333 | const auto image_method_type = kNativeObjectRelocationTypeArtMethodArrayClean; |
| 1334 | auto it = native_object_relocations_.find(&image_method_array_); |
| 1335 | CHECK(it == native_object_relocations_.end()); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1336 | ImageInfo& default_image_info = GetImageInfo(default_oat_filename_); |
| 1337 | size_t& offset = |
| 1338 | default_image_info.bin_slot_sizes_[BinTypeForNativeRelocationType(image_method_type)]; |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1339 | if (!compile_app_image_) { |
| 1340 | native_object_relocations_.emplace(&image_method_array_, |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1341 | NativeObjectRelocation { default_oat_filename_, offset, image_method_type }); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1342 | } |
Vladimir Marko | 1463285 | 2015-08-17 12:07:23 +0100 | [diff] [blame] | 1343 | size_t method_alignment = ArtMethod::Alignment(target_ptr_size_); |
Mathieu Chartier | c0fe56a | 2015-08-11 13:01:23 -0700 | [diff] [blame] | 1344 | const size_t array_size = LengthPrefixedArray<ArtMethod>::ComputeSize( |
Vladimir Marko | 1463285 | 2015-08-17 12:07:23 +0100 | [diff] [blame] | 1345 | 0, ArtMethod::Size(target_ptr_size_), method_alignment); |
Vladimir Marko | cf36d49 | 2015-08-12 19:27:26 +0100 | [diff] [blame] | 1346 | CHECK_ALIGNED_PARAM(array_size, method_alignment); |
Mathieu Chartier | c0fe56a | 2015-08-11 13:01:23 -0700 | [diff] [blame] | 1347 | offset += array_size; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1348 | for (auto* m : image_methods_) { |
| 1349 | CHECK(m != nullptr); |
| 1350 | CHECK(m->IsRuntimeMethod()); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1351 | DCHECK_EQ(compile_app_image_, IsInBootImage(m)) << "Trampolines should be in boot image"; |
| 1352 | if (!IsInBootImage(m)) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1353 | AssignMethodOffset(m, kNativeObjectRelocationTypeArtMethodClean, default_oat_filename_); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1354 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1355 | } |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 1356 | // Calculate size of the dex cache arrays slot and prepare offsets. |
| 1357 | PrepareDexCacheArraySlots(); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1358 | |
Mathieu Chartier | 1f47b67 | 2016-01-07 16:29:01 -0800 | [diff] [blame] | 1359 | // Calculate the sizes of the intern tables and class tables. |
Mathieu Chartier | ea0831f | 2015-12-29 13:17:37 -0800 | [diff] [blame] | 1360 | for (const char* oat_filename : oat_filenames_) { |
| 1361 | ImageInfo& image_info = GetImageInfo(oat_filename); |
| 1362 | // Calculate how big the intern table will be after being serialized. |
| 1363 | InternTable* const intern_table = image_info.intern_table_.get(); |
| 1364 | CHECK_EQ(intern_table->WeakSize(), 0u) << " should have strong interned all the strings"; |
| 1365 | image_info.intern_table_bytes_ = intern_table->WriteToMemory(nullptr); |
Mathieu Chartier | 1f47b67 | 2016-01-07 16:29:01 -0800 | [diff] [blame] | 1366 | // Calculate the size of the class table. |
| 1367 | ReaderMutexLock mu(self, *Locks::classlinker_classes_lock_); |
| 1368 | image_info.class_table_bytes_ += image_info.class_table_->WriteToMemory(nullptr); |
Mathieu Chartier | ea0831f | 2015-12-29 13:17:37 -0800 | [diff] [blame] | 1369 | } |
| 1370 | |
Vladimir Marko | cf36d49 | 2015-08-12 19:27:26 +0100 | [diff] [blame] | 1371 | // Calculate bin slot offsets. |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1372 | for (const char* oat_filename : oat_filenames_) { |
| 1373 | ImageInfo& image_info = GetImageInfo(oat_filename); |
| 1374 | size_t bin_offset = image_objects_offset_begin_; |
| 1375 | for (size_t i = 0; i != kBinSize; ++i) { |
| 1376 | image_info.bin_slot_offsets_[i] = bin_offset; |
| 1377 | bin_offset += image_info.bin_slot_sizes_[i]; |
| 1378 | if (i == kBinArtField) { |
| 1379 | static_assert(kBinArtField + 1 == kBinArtMethodClean, "Methods follow fields."); |
| 1380 | static_assert(alignof(ArtField) == 4u, "ArtField alignment is 4."); |
| 1381 | DCHECK_ALIGNED(bin_offset, 4u); |
| 1382 | DCHECK(method_alignment == 4u || method_alignment == 8u); |
| 1383 | bin_offset = RoundUp(bin_offset, method_alignment); |
| 1384 | } |
Vladimir Marko | cf36d49 | 2015-08-12 19:27:26 +0100 | [diff] [blame] | 1385 | } |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1386 | // NOTE: There may be additional padding between the bin slots and the intern table. |
| 1387 | DCHECK_EQ(image_info.image_end_, |
| 1388 | GetBinSizeSum(image_info, kBinMirrorCount) + image_objects_offset_begin_); |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 1389 | } |
Vladimir Marko | cf36d49 | 2015-08-12 19:27:26 +0100 | [diff] [blame] | 1390 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1391 | // Calculate image offsets. |
| 1392 | size_t image_offset = 0; |
| 1393 | for (const char* oat_filename : oat_filenames_) { |
| 1394 | ImageInfo& image_info = GetImageInfo(oat_filename); |
| 1395 | image_info.image_begin_ = global_image_begin_ + image_offset; |
| 1396 | image_info.image_offset_ = image_offset; |
Mathieu Chartier | a06ba05 | 2016-01-06 13:51:52 -0800 | [diff] [blame] | 1397 | ImageSection unused_sections[ImageHeader::kSectionCount]; |
| 1398 | image_info.image_size_ = RoundUp( |
| 1399 | image_info.CreateImageSections(target_ptr_size_, unused_sections), |
| 1400 | kPageSize); |
| 1401 | // There should be no gaps until the next image. |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1402 | image_offset += image_info.image_size_; |
| 1403 | } |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1404 | |
Hiroshi Yamauchi | 0c8c303 | 2015-01-16 16:54:35 -0800 | [diff] [blame] | 1405 | // Transform each object's bin slot into an offset which will be used to do the final copy. |
| 1406 | heap->VisitObjects(UnbinObjectsIntoOffsetCallback, this); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1407 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1408 | // DCHECK_EQ(image_end_, GetBinSizeSum(kBinMirrorCount) + image_objects_offset_begin_); |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 1409 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1410 | size_t i = 0; |
| 1411 | for (const char* oat_filename : oat_filenames_) { |
| 1412 | ImageInfo& image_info = GetImageInfo(oat_filename); |
| 1413 | image_info.image_roots_address_ = PointerToLowMemUInt32(GetImageAddress(image_roots[i].Get())); |
| 1414 | i++; |
| 1415 | } |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 1416 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1417 | // Update the native relocations by adding their bin sums. |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1418 | for (auto& pair : native_object_relocations_) { |
| 1419 | NativeObjectRelocation& relocation = pair.second; |
| 1420 | Bin bin_type = BinTypeForNativeRelocationType(relocation.type); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1421 | ImageInfo& image_info = GetImageInfo(relocation.oat_filename); |
| 1422 | relocation.offset += image_info.bin_slot_offsets_[bin_type]; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1423 | } |
| 1424 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1425 | // Note that image_info.image_end_ is left at end of used mirror object section. |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 1426 | } |
| 1427 | |
Mathieu Chartier | a06ba05 | 2016-01-06 13:51:52 -0800 | [diff] [blame] | 1428 | size_t ImageWriter::ImageInfo::CreateImageSections(size_t target_ptr_size, |
| 1429 | ImageSection* out_sections) const { |
| 1430 | DCHECK(out_sections != nullptr); |
| 1431 | // Objects section |
| 1432 | auto* objects_section = &out_sections[ImageHeader::kSectionObjects]; |
| 1433 | *objects_section = ImageSection(0u, image_end_); |
| 1434 | size_t cur_pos = objects_section->End(); |
| 1435 | // Add field section. |
| 1436 | auto* field_section = &out_sections[ImageHeader::kSectionArtFields]; |
| 1437 | *field_section = ImageSection(cur_pos, bin_slot_sizes_[kBinArtField]); |
| 1438 | CHECK_EQ(bin_slot_offsets_[kBinArtField], field_section->Offset()); |
| 1439 | cur_pos = field_section->End(); |
| 1440 | // Round up to the alignment the required by the method section. |
| 1441 | cur_pos = RoundUp(cur_pos, ArtMethod::Alignment(target_ptr_size)); |
| 1442 | // Add method section. |
| 1443 | auto* methods_section = &out_sections[ImageHeader::kSectionArtMethods]; |
| 1444 | *methods_section = ImageSection(cur_pos, |
| 1445 | bin_slot_sizes_[kBinArtMethodClean] + |
| 1446 | bin_slot_sizes_[kBinArtMethodDirty]); |
| 1447 | CHECK_EQ(bin_slot_offsets_[kBinArtMethodClean], methods_section->Offset()); |
| 1448 | cur_pos = methods_section->End(); |
| 1449 | // Add dex cache arrays section. |
| 1450 | auto* dex_cache_arrays_section = &out_sections[ImageHeader::kSectionDexCacheArrays]; |
| 1451 | *dex_cache_arrays_section = ImageSection(cur_pos, bin_slot_sizes_[kBinDexCacheArray]); |
| 1452 | CHECK_EQ(bin_slot_offsets_[kBinDexCacheArray], dex_cache_arrays_section->Offset()); |
| 1453 | cur_pos = dex_cache_arrays_section->End(); |
| 1454 | // Round up to the alignment the string table expects. See HashSet::WriteToMemory. |
| 1455 | cur_pos = RoundUp(cur_pos, sizeof(uint64_t)); |
| 1456 | // Calculate the size of the interned strings. |
| 1457 | auto* interned_strings_section = &out_sections[ImageHeader::kSectionInternedStrings]; |
| 1458 | *interned_strings_section = ImageSection(cur_pos, intern_table_bytes_); |
| 1459 | cur_pos = interned_strings_section->End(); |
| 1460 | // Round up to the alignment the class table expects. See HashSet::WriteToMemory. |
| 1461 | cur_pos = RoundUp(cur_pos, sizeof(uint64_t)); |
| 1462 | // Calculate the size of the class table section. |
| 1463 | auto* class_table_section = &out_sections[ImageHeader::kSectionClassTable]; |
Mathieu Chartier | 1f47b67 | 2016-01-07 16:29:01 -0800 | [diff] [blame] | 1464 | *class_table_section = ImageSection(cur_pos, class_table_bytes_); |
Mathieu Chartier | a06ba05 | 2016-01-06 13:51:52 -0800 | [diff] [blame] | 1465 | cur_pos = class_table_section->End(); |
| 1466 | // Image end goes right before the start of the image bitmap. |
| 1467 | return cur_pos; |
| 1468 | } |
| 1469 | |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 1470 | void ImageWriter::CreateHeader(size_t oat_loaded_size, size_t oat_data_offset) { |
| 1471 | CHECK_NE(0U, oat_loaded_size); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1472 | const char* oat_filename = oat_file_->GetLocation().c_str(); |
| 1473 | ImageInfo& image_info = GetImageInfo(oat_filename); |
| 1474 | const uint8_t* oat_file_begin = GetOatFileBegin(oat_filename); |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 1475 | const uint8_t* oat_file_end = oat_file_begin + oat_loaded_size; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1476 | image_info.oat_data_begin_ = const_cast<uint8_t*>(oat_file_begin) + oat_data_offset; |
| 1477 | const uint8_t* oat_data_end = image_info.oat_data_begin_ + oat_file_->Size(); |
| 1478 | image_info.oat_size_ = oat_file_->Size(); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1479 | |
| 1480 | // Create the image sections. |
| 1481 | ImageSection sections[ImageHeader::kSectionCount]; |
Mathieu Chartier | a06ba05 | 2016-01-06 13:51:52 -0800 | [diff] [blame] | 1482 | const size_t image_end = image_info.CreateImageSections(target_ptr_size_, sections); |
| 1483 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1484 | // Finally bitmap section. |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1485 | const size_t bitmap_bytes = image_info.image_bitmap_->Size(); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1486 | auto* bitmap_section = §ions[ImageHeader::kSectionImageBitmap]; |
Mathieu Chartier | a06ba05 | 2016-01-06 13:51:52 -0800 | [diff] [blame] | 1487 | *bitmap_section = ImageSection(RoundUp(image_end, kPageSize), RoundUp(bitmap_bytes, kPageSize)); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1488 | if (VLOG_IS_ON(compiler)) { |
| 1489 | LOG(INFO) << "Creating header for " << oat_filename; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1490 | size_t idx = 0; |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 1491 | for (const ImageSection& section : sections) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1492 | LOG(INFO) << static_cast<ImageHeader::ImageSections>(idx) << " " << section; |
| 1493 | ++idx; |
| 1494 | } |
| 1495 | LOG(INFO) << "Methods: clean=" << clean_methods_ << " dirty=" << dirty_methods_; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1496 | LOG(INFO) << "Image roots address=" << std::hex << image_info.image_roots_address_ << std::dec; |
| 1497 | LOG(INFO) << "Image begin=" << std::hex << reinterpret_cast<uintptr_t>(global_image_begin_) |
| 1498 | << " Image offset=" << image_info.image_offset_ << std::dec; |
| 1499 | LOG(INFO) << "Oat file begin=" << std::hex << reinterpret_cast<uintptr_t>(oat_file_begin) |
| 1500 | << " Oat data begin=" << reinterpret_cast<uintptr_t>(image_info.oat_data_begin_) |
| 1501 | << " Oat data end=" << reinterpret_cast<uintptr_t>(oat_data_end) |
| 1502 | << " Oat file end=" << reinterpret_cast<uintptr_t>(oat_file_end); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1503 | } |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 1504 | // Store boot image info for app image so that we can relocate. |
| 1505 | uint32_t boot_image_begin = 0; |
| 1506 | uint32_t boot_image_end = 0; |
| 1507 | uint32_t boot_oat_begin = 0; |
| 1508 | uint32_t boot_oat_end = 0; |
| 1509 | gc::Heap* const heap = Runtime::Current()->GetHeap(); |
| 1510 | heap->GetBootImagesSize(&boot_image_begin, &boot_image_end, &boot_oat_begin, &boot_oat_end); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1511 | |
Mathieu Chartier | ceb07b3 | 2015-12-10 09:33:21 -0800 | [diff] [blame] | 1512 | // Create the header, leave 0 for data size since we will fill this in as we are writing the |
| 1513 | // image. |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1514 | new (image_info.image_->Begin()) ImageHeader(PointerToLowMemUInt32(image_info.image_begin_), |
| 1515 | image_end, |
| 1516 | sections, |
| 1517 | image_info.image_roots_address_, |
| 1518 | oat_file_->GetOatHeader().GetChecksum(), |
| 1519 | PointerToLowMemUInt32(oat_file_begin), |
| 1520 | PointerToLowMemUInt32(image_info.oat_data_begin_), |
| 1521 | PointerToLowMemUInt32(oat_data_end), |
| 1522 | PointerToLowMemUInt32(oat_file_end), |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 1523 | boot_image_begin, |
| 1524 | boot_image_end - boot_image_begin, |
| 1525 | boot_oat_begin, |
| 1526 | boot_oat_end - boot_oat_begin, |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1527 | target_ptr_size_, |
| 1528 | compile_pic_, |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 1529 | /*is_pic*/compile_app_image_, |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1530 | image_storage_mode_, |
| 1531 | /*data_size*/0u); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1532 | } |
| 1533 | |
| 1534 | ArtMethod* ImageWriter::GetImageMethodAddress(ArtMethod* method) { |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1535 | auto it = native_object_relocations_.find(method); |
| 1536 | CHECK(it != native_object_relocations_.end()) << PrettyMethod(method) << " @ " << method; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1537 | const char* oat_filename = GetOatFilename(method->GetDexCache()); |
| 1538 | ImageInfo& image_info = GetImageInfo(oat_filename); |
| 1539 | CHECK_GE(it->second.offset, image_info.image_end_) << "ArtMethods should be after Objects"; |
| 1540 | return reinterpret_cast<ArtMethod*>(image_info.image_begin_ + it->second.offset); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1541 | } |
| 1542 | |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 1543 | class FixupRootVisitor : public RootVisitor { |
| 1544 | public: |
| 1545 | explicit FixupRootVisitor(ImageWriter* image_writer) : image_writer_(image_writer) { |
| 1546 | } |
| 1547 | |
| 1548 | void VisitRoots(mirror::Object*** roots, size_t count, const RootInfo& info ATTRIBUTE_UNUSED) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1549 | OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 1550 | for (size_t i = 0; i < count; ++i) { |
Mathieu Chartier | ea0831f | 2015-12-29 13:17:37 -0800 | [diff] [blame] | 1551 | *roots[i] = image_writer_->GetImageAddress(*roots[i]); |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 1552 | } |
| 1553 | } |
| 1554 | |
| 1555 | void VisitRoots(mirror::CompressedReference<mirror::Object>** roots, size_t count, |
| 1556 | const RootInfo& info ATTRIBUTE_UNUSED) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1557 | OVERRIDE SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 1558 | for (size_t i = 0; i < count; ++i) { |
Mathieu Chartier | ea0831f | 2015-12-29 13:17:37 -0800 | [diff] [blame] | 1559 | roots[i]->Assign(image_writer_->GetImageAddress(roots[i]->AsMirrorPtr())); |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 1560 | } |
| 1561 | } |
| 1562 | |
| 1563 | private: |
| 1564 | ImageWriter* const image_writer_; |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 1565 | }; |
| 1566 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1567 | void ImageWriter::CopyAndFixupNativeData() { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1568 | const char* oat_filename = oat_file_->GetLocation().c_str(); |
| 1569 | ImageInfo& image_info = GetImageInfo(oat_filename); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1570 | // Copy ArtFields and methods to their locations and update the array for convenience. |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1571 | for (auto& pair : native_object_relocations_) { |
| 1572 | NativeObjectRelocation& relocation = pair.second; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1573 | // Only work with fields and methods that are in the current oat file. |
| 1574 | if (strcmp(relocation.oat_filename, oat_filename) != 0) { |
| 1575 | continue; |
| 1576 | } |
| 1577 | auto* dest = image_info.image_->Begin() + relocation.offset; |
| 1578 | DCHECK_GE(dest, image_info.image_->Begin() + image_info.image_end_); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1579 | DCHECK(!IsInBootImage(pair.first)); |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1580 | switch (relocation.type) { |
| 1581 | case kNativeObjectRelocationTypeArtField: { |
| 1582 | memcpy(dest, pair.first, sizeof(ArtField)); |
| 1583 | reinterpret_cast<ArtField*>(dest)->SetDeclaringClass( |
| 1584 | GetImageAddress(reinterpret_cast<ArtField*>(pair.first)->GetDeclaringClass())); |
| 1585 | break; |
| 1586 | } |
| 1587 | case kNativeObjectRelocationTypeArtMethodClean: |
| 1588 | case kNativeObjectRelocationTypeArtMethodDirty: { |
| 1589 | CopyAndFixupMethod(reinterpret_cast<ArtMethod*>(pair.first), |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1590 | reinterpret_cast<ArtMethod*>(dest), |
| 1591 | image_info); |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1592 | break; |
| 1593 | } |
| 1594 | // For arrays, copy just the header since the elements will get copied by their corresponding |
| 1595 | // relocations. |
| 1596 | case kNativeObjectRelocationTypeArtFieldArray: { |
| 1597 | memcpy(dest, pair.first, LengthPrefixedArray<ArtField>::ComputeSize(0)); |
| 1598 | break; |
| 1599 | } |
| 1600 | case kNativeObjectRelocationTypeArtMethodArrayClean: |
| 1601 | case kNativeObjectRelocationTypeArtMethodArrayDirty: { |
Vladimir Marko | cf36d49 | 2015-08-12 19:27:26 +0100 | [diff] [blame] | 1602 | memcpy(dest, pair.first, LengthPrefixedArray<ArtMethod>::ComputeSize( |
| 1603 | 0, |
Vladimir Marko | 1463285 | 2015-08-17 12:07:23 +0100 | [diff] [blame] | 1604 | ArtMethod::Size(target_ptr_size_), |
| 1605 | ArtMethod::Alignment(target_ptr_size_))); |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1606 | break; |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 1607 | case kNativeObjectRelocationTypeDexCacheArray: |
| 1608 | // Nothing to copy here, everything is done in FixupDexCache(). |
| 1609 | break; |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1610 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1611 | } |
| 1612 | } |
| 1613 | // Fixup the image method roots. |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1614 | auto* image_header = reinterpret_cast<ImageHeader*>(image_info.image_->Begin()); |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 1615 | const ImageSection& methods_section = image_header->GetMethodsSection(); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1616 | for (size_t i = 0; i < ImageHeader::kImageMethodsCount; ++i) { |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1617 | ArtMethod* method = image_methods_[i]; |
| 1618 | CHECK(method != nullptr); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1619 | // Only place runtime methods in the image of the default oat file. |
| 1620 | if (method->IsRuntimeMethod() && strcmp(default_oat_filename_, oat_filename) != 0) { |
| 1621 | continue; |
| 1622 | } |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1623 | if (!IsInBootImage(method)) { |
| 1624 | auto it = native_object_relocations_.find(method); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1625 | CHECK(it != native_object_relocations_.end()) << "No forwarding for " << PrettyMethod(method); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1626 | NativeObjectRelocation& relocation = it->second; |
| 1627 | CHECK(methods_section.Contains(relocation.offset)) << relocation.offset << " not in " |
| 1628 | << methods_section; |
| 1629 | CHECK(relocation.IsArtMethodRelocation()) << relocation.type; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1630 | method = reinterpret_cast<ArtMethod*>(global_image_begin_ + it->second.offset); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1631 | } |
| 1632 | image_header->SetImageMethod(static_cast<ImageHeader::ImageMethod>(i), method); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1633 | } |
Mathieu Chartier | 208a5cb | 2015-12-02 15:44:07 -0800 | [diff] [blame] | 1634 | FixupRootVisitor root_visitor(this); |
| 1635 | |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 1636 | // Write the intern table into the image. |
Mathieu Chartier | ea0831f | 2015-12-29 13:17:37 -0800 | [diff] [blame] | 1637 | if (image_info.intern_table_bytes_ > 0) { |
| 1638 | const ImageSection& intern_table_section = image_header->GetImageSection( |
| 1639 | ImageHeader::kSectionInternedStrings); |
| 1640 | InternTable* const intern_table = image_info.intern_table_.get(); |
| 1641 | uint8_t* const intern_table_memory_ptr = |
| 1642 | image_info.image_->Begin() + intern_table_section.Offset(); |
| 1643 | const size_t intern_table_bytes = intern_table->WriteToMemory(intern_table_memory_ptr); |
| 1644 | CHECK_EQ(intern_table_bytes, image_info.intern_table_bytes_); |
| 1645 | // Fixup the pointers in the newly written intern table to contain image addresses. |
| 1646 | InternTable temp_intern_table; |
| 1647 | // Note that we require that ReadFromMemory does not make an internal copy of the elements so that |
| 1648 | // the VisitRoots() will update the memory directly rather than the copies. |
| 1649 | // This also relies on visit roots not doing any verification which could fail after we update |
| 1650 | // the roots to be the image addresses. |
| 1651 | temp_intern_table.AddTableFromMemory(intern_table_memory_ptr); |
| 1652 | CHECK_EQ(temp_intern_table.Size(), intern_table->Size()); |
| 1653 | temp_intern_table.VisitRoots(&root_visitor, kVisitRootFlagAllRoots); |
| 1654 | } |
Mathieu Chartier | 67ad20e | 2015-12-09 15:41:09 -0800 | [diff] [blame] | 1655 | // Write the class table(s) into the image. class_table_bytes_ may be 0 if there are multiple |
| 1656 | // class loaders. Writing multiple class tables into the image is currently unsupported. |
Mathieu Chartier | 1f47b67 | 2016-01-07 16:29:01 -0800 | [diff] [blame] | 1657 | if (image_info.class_table_bytes_ > 0u) { |
Mathieu Chartier | 67ad20e | 2015-12-09 15:41:09 -0800 | [diff] [blame] | 1658 | const ImageSection& class_table_section = image_header->GetImageSection( |
| 1659 | ImageHeader::kSectionClassTable); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1660 | uint8_t* const class_table_memory_ptr = |
| 1661 | image_info.image_->Begin() + class_table_section.Offset(); |
Mathieu Chartier | 67ad20e | 2015-12-09 15:41:09 -0800 | [diff] [blame] | 1662 | ReaderMutexLock mu(Thread::Current(), *Locks::classlinker_classes_lock_); |
Mathieu Chartier | 1f47b67 | 2016-01-07 16:29:01 -0800 | [diff] [blame] | 1663 | |
| 1664 | ClassTable* table = image_info.class_table_.get(); |
| 1665 | CHECK(table != nullptr); |
| 1666 | const size_t class_table_bytes = table->WriteToMemory(class_table_memory_ptr); |
| 1667 | CHECK_EQ(class_table_bytes, image_info.class_table_bytes_); |
| 1668 | // Fixup the pointers in the newly written class table to contain image addresses. See |
| 1669 | // above comment for intern tables. |
| 1670 | ClassTable temp_class_table; |
| 1671 | temp_class_table.ReadFromMemory(class_table_memory_ptr); |
| 1672 | CHECK_EQ(temp_class_table.NumZygoteClasses(), table->NumNonZygoteClasses() + |
| 1673 | table->NumZygoteClasses()); |
| 1674 | BufferedRootVisitor<kDefaultBufferedRootCount> buffered_visitor(&root_visitor, |
| 1675 | RootInfo(kRootUnknown)); |
| 1676 | temp_class_table.VisitRoots(buffered_visitor); |
Mathieu Chartier | 208a5cb | 2015-12-02 15:44:07 -0800 | [diff] [blame] | 1677 | } |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1678 | } |
| 1679 | |
Mathieu Chartier | fd04b6f | 2014-11-14 19:34:18 -0800 | [diff] [blame] | 1680 | void ImageWriter::CopyAndFixupObjects() { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1681 | gc::Heap* heap = Runtime::Current()->GetHeap(); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1682 | heap->VisitObjects(CopyAndFixupObjectsCallback, this); |
| 1683 | // Fix up the object previously had hash codes. |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 1684 | for (const auto& hash_pair : saved_hashcode_map_) { |
Hiroshi Yamauchi | e15ea08 | 2015-02-09 17:11:42 -0800 | [diff] [blame] | 1685 | Object* obj = hash_pair.first; |
Andreas Gampe | 3b45ef2 | 2015-05-26 21:34:09 -0700 | [diff] [blame] | 1686 | DCHECK_EQ(obj->GetLockWord<kVerifyNone>(false).ReadBarrierState(), 0U); |
| 1687 | obj->SetLockWord<kVerifyNone>(LockWord::FromHashCode(hash_pair.second, 0U), false); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1688 | } |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 1689 | saved_hashcode_map_.clear(); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1690 | } |
| 1691 | |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 1692 | void ImageWriter::CopyAndFixupObjectsCallback(Object* obj, void* arg) { |
Mathieu Chartier | 4d7f61d | 2014-04-17 14:43:39 -0700 | [diff] [blame] | 1693 | DCHECK(obj != nullptr); |
| 1694 | DCHECK(arg != nullptr); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1695 | reinterpret_cast<ImageWriter*>(arg)->CopyAndFixupObject(obj); |
| 1696 | } |
| 1697 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1698 | void ImageWriter::FixupPointerArray(mirror::Object* dst, mirror::PointerArray* arr, |
| 1699 | mirror::Class* klass, Bin array_type) { |
| 1700 | CHECK(klass->IsArrayClass()); |
| 1701 | CHECK(arr->IsIntArray() || arr->IsLongArray()) << PrettyClass(klass) << " " << arr; |
| 1702 | // Fixup int and long pointers for the ArtMethod or ArtField arrays. |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1703 | const size_t num_elements = arr->GetLength(); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1704 | dst->SetClass(GetImageAddress(arr->GetClass())); |
| 1705 | auto* dest_array = down_cast<mirror::PointerArray*>(dst); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1706 | for (size_t i = 0, count = num_elements; i < count; ++i) { |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1707 | void* elem = arr->GetElementPtrSize<void*>(i, target_ptr_size_); |
| 1708 | if (elem != nullptr && !IsInBootImage(elem)) { |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1709 | auto it = native_object_relocations_.find(elem); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 1710 | if (UNLIKELY(it == native_object_relocations_.end())) { |
Mathieu Chartier | c0fe56a | 2015-08-11 13:01:23 -0700 | [diff] [blame] | 1711 | if (it->second.IsArtMethodRelocation()) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1712 | auto* method = reinterpret_cast<ArtMethod*>(elem); |
| 1713 | LOG(FATAL) << "No relocation entry for ArtMethod " << PrettyMethod(method) << " @ " |
| 1714 | << method << " idx=" << i << "/" << num_elements << " with declaring class " |
| 1715 | << PrettyClass(method->GetDeclaringClass()); |
| 1716 | } else { |
| 1717 | CHECK_EQ(array_type, kBinArtField); |
| 1718 | auto* field = reinterpret_cast<ArtField*>(elem); |
| 1719 | LOG(FATAL) << "No relocation entry for ArtField " << PrettyField(field) << " @ " |
| 1720 | << field << " idx=" << i << "/" << num_elements << " with declaring class " |
| 1721 | << PrettyClass(field->GetDeclaringClass()); |
| 1722 | } |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 1723 | UNREACHABLE(); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1724 | } else { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1725 | ImageInfo& image_info = GetImageInfo(it->second.oat_filename); |
| 1726 | elem = image_info.image_begin_ + it->second.offset; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1727 | } |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1728 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1729 | dest_array->SetElementPtrSize<false, true>(i, elem, target_ptr_size_); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1730 | } |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1731 | } |
| 1732 | |
| 1733 | void ImageWriter::CopyAndFixupObject(Object* obj) { |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1734 | if (IsInBootImage(obj)) { |
| 1735 | return; |
| 1736 | } |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1737 | size_t offset = GetImageOffset(obj); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1738 | const char* oat_filename = GetOatFilename(obj); |
| 1739 | ImageInfo& image_info = GetImageInfo(oat_filename); |
| 1740 | auto* dst = reinterpret_cast<Object*>(image_info.image_->Begin() + offset); |
| 1741 | DCHECK_LT(offset, image_info.image_end_); |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 1742 | const auto* src = reinterpret_cast<const uint8_t*>(obj); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1743 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1744 | image_info.image_bitmap_->Set(dst); // Mark the obj as live. |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 1745 | |
| 1746 | const size_t n = obj->SizeOf(); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1747 | DCHECK_LE(offset + n, image_info.image_->Size()); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1748 | memcpy(dst, src, n); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1749 | |
Mathieu Chartier | ad2541a | 2013-10-25 10:05:23 -0700 | [diff] [blame] | 1750 | // Write in a hash code of objects which have inflated monitors or a hash code in their monitor |
| 1751 | // word. |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 1752 | const auto it = saved_hashcode_map_.find(obj); |
| 1753 | dst->SetLockWord(it != saved_hashcode_map_.end() ? |
| 1754 | LockWord::FromHashCode(it->second, 0u) : LockWord::Default(), false); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1755 | FixupObject(obj, dst); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1756 | } |
| 1757 | |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 1758 | // Rewrite all the references in the copied object to point to their image address equivalent |
Mathieu Chartier | b7ea3ac | 2014-03-24 16:54:46 -0700 | [diff] [blame] | 1759 | class FixupVisitor { |
| 1760 | public: |
| 1761 | FixupVisitor(ImageWriter* image_writer, Object* copy) : image_writer_(image_writer), copy_(copy) { |
| 1762 | } |
| 1763 | |
Mathieu Chartier | da7c650 | 2015-07-23 16:01:26 -0700 | [diff] [blame] | 1764 | // Ignore class roots since we don't have a way to map them to the destination. These are handled |
| 1765 | // with other logic. |
| 1766 | void VisitRootIfNonNull(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED) |
| 1767 | const {} |
| 1768 | void VisitRoot(mirror::CompressedReference<mirror::Object>* root ATTRIBUTE_UNUSED) const {} |
| 1769 | |
| 1770 | |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 1771 | void operator()(Object* obj, MemberOffset offset, bool is_static ATTRIBUTE_UNUSED) const |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1772 | REQUIRES(Locks::mutator_lock_, Locks::heap_bitmap_lock_) { |
Hiroshi Yamauchi | 6e83c17 | 2014-05-01 21:25:41 -0700 | [diff] [blame] | 1773 | Object* ref = obj->GetFieldObject<Object, kVerifyNone>(offset); |
Mathieu Chartier | b7ea3ac | 2014-03-24 16:54:46 -0700 | [diff] [blame] | 1774 | // Use SetFieldObjectWithoutWriteBarrier to avoid card marking since we are writing to the |
| 1775 | // image. |
| 1776 | copy_->SetFieldObjectWithoutWriteBarrier<false, true, kVerifyNone>( |
Mathieu Chartier | a808bac | 2015-11-05 16:33:15 -0800 | [diff] [blame] | 1777 | offset, |
| 1778 | image_writer_->GetImageAddress(ref)); |
Mathieu Chartier | b7ea3ac | 2014-03-24 16:54:46 -0700 | [diff] [blame] | 1779 | } |
| 1780 | |
| 1781 | // java.lang.ref.Reference visitor. |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 1782 | void operator()(mirror::Class* klass ATTRIBUTE_UNUSED, mirror::Reference* ref) const |
Mathieu Chartier | da7c650 | 2015-07-23 16:01:26 -0700 | [diff] [blame] | 1783 | SHARED_REQUIRES(Locks::mutator_lock_) REQUIRES(Locks::heap_bitmap_lock_) { |
Mathieu Chartier | b7ea3ac | 2014-03-24 16:54:46 -0700 | [diff] [blame] | 1784 | copy_->SetFieldObjectWithoutWriteBarrier<false, true, kVerifyNone>( |
Mathieu Chartier | a808bac | 2015-11-05 16:33:15 -0800 | [diff] [blame] | 1785 | mirror::Reference::ReferentOffset(), |
| 1786 | image_writer_->GetImageAddress(ref->GetReferent())); |
Mathieu Chartier | b7ea3ac | 2014-03-24 16:54:46 -0700 | [diff] [blame] | 1787 | } |
| 1788 | |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 1789 | protected: |
Mathieu Chartier | b7ea3ac | 2014-03-24 16:54:46 -0700 | [diff] [blame] | 1790 | ImageWriter* const image_writer_; |
| 1791 | mirror::Object* const copy_; |
| 1792 | }; |
| 1793 | |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 1794 | class FixupClassVisitor FINAL : public FixupVisitor { |
| 1795 | public: |
| 1796 | FixupClassVisitor(ImageWriter* image_writer, Object* copy) : FixupVisitor(image_writer, copy) { |
| 1797 | } |
| 1798 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1799 | void operator()(Object* obj, MemberOffset offset, bool is_static ATTRIBUTE_UNUSED) const |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 1800 | REQUIRES(Locks::mutator_lock_, Locks::heap_bitmap_lock_) { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 1801 | DCHECK(obj->IsClass()); |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 1802 | FixupVisitor::operator()(obj, offset, /*is_static*/false); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 1803 | } |
| 1804 | |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 1805 | void operator()(mirror::Class* klass ATTRIBUTE_UNUSED, |
| 1806 | mirror::Reference* ref ATTRIBUTE_UNUSED) const |
Mathieu Chartier | da7c650 | 2015-07-23 16:01:26 -0700 | [diff] [blame] | 1807 | SHARED_REQUIRES(Locks::mutator_lock_) REQUIRES(Locks::heap_bitmap_lock_) { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 1808 | LOG(FATAL) << "Reference not expected here."; |
| 1809 | } |
| 1810 | }; |
| 1811 | |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 1812 | uintptr_t ImageWriter::NativeOffsetInImage(void* obj) { |
| 1813 | DCHECK(obj != nullptr); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1814 | DCHECK(!IsInBootImage(obj)); |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1815 | auto it = native_object_relocations_.find(obj); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 1816 | CHECK(it != native_object_relocations_.end()) << obj << " spaces " |
| 1817 | << Runtime::Current()->GetHeap()->DumpSpaces(); |
Mathieu Chartier | c0fe56a | 2015-08-11 13:01:23 -0700 | [diff] [blame] | 1818 | const NativeObjectRelocation& relocation = it->second; |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 1819 | return relocation.offset; |
| 1820 | } |
| 1821 | |
| 1822 | template <typename T> |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1823 | T* ImageWriter::NativeLocationInImage(T* obj, const char* oat_filename) { |
| 1824 | if (obj == nullptr || IsInBootImage(obj)) { |
| 1825 | return obj; |
| 1826 | } else { |
| 1827 | ImageInfo& image_info = GetImageInfo(oat_filename); |
| 1828 | return reinterpret_cast<T*>(image_info.image_begin_ + NativeOffsetInImage(obj)); |
| 1829 | } |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1830 | } |
| 1831 | |
Mathieu Chartier | 4b00d34 | 2015-11-13 10:42:08 -0800 | [diff] [blame] | 1832 | template <typename T> |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1833 | T* ImageWriter::NativeCopyLocation(T* obj, mirror::DexCache* dex_cache) { |
| 1834 | if (obj == nullptr || IsInBootImage(obj)) { |
| 1835 | return obj; |
| 1836 | } else { |
| 1837 | const char* oat_filename = GetOatFilenameForDexCache(dex_cache); |
| 1838 | ImageInfo& image_info = GetImageInfo(oat_filename); |
| 1839 | return reinterpret_cast<T*>(image_info.image_->Begin() + NativeOffsetInImage(obj)); |
| 1840 | } |
Mathieu Chartier | 4b00d34 | 2015-11-13 10:42:08 -0800 | [diff] [blame] | 1841 | } |
| 1842 | |
| 1843 | class NativeLocationVisitor { |
| 1844 | public: |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1845 | explicit NativeLocationVisitor(ImageWriter* image_writer, const char* oat_filename) |
| 1846 | : image_writer_(image_writer), oat_filename_(oat_filename) {} |
Mathieu Chartier | 4b00d34 | 2015-11-13 10:42:08 -0800 | [diff] [blame] | 1847 | |
| 1848 | template <typename T> |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1849 | T* operator()(T* ptr) const SHARED_REQUIRES(Locks::mutator_lock_) { |
| 1850 | return image_writer_->NativeLocationInImage(ptr, oat_filename_); |
| 1851 | } |
| 1852 | |
| 1853 | ArtMethod* operator()(ArtMethod* method) const SHARED_REQUIRES(Locks::mutator_lock_) { |
| 1854 | const char* oat_filename = method->IsRuntimeMethod() ? image_writer_->GetDefaultOatFilename() : |
| 1855 | image_writer_->GetOatFilenameForDexCache(method->GetDexCache()); |
| 1856 | return image_writer_->NativeLocationInImage(method, oat_filename); |
| 1857 | } |
| 1858 | |
| 1859 | ArtField* operator()(ArtField* field) const SHARED_REQUIRES(Locks::mutator_lock_) { |
| 1860 | const char* oat_filename = image_writer_->GetOatFilenameForDexCache(field->GetDexCache()); |
| 1861 | return image_writer_->NativeLocationInImage(field, oat_filename); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1862 | } |
Mathieu Chartier | 4b00d34 | 2015-11-13 10:42:08 -0800 | [diff] [blame] | 1863 | |
| 1864 | private: |
| 1865 | ImageWriter* const image_writer_; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1866 | const char* oat_filename_; |
Mathieu Chartier | 4b00d34 | 2015-11-13 10:42:08 -0800 | [diff] [blame] | 1867 | }; |
| 1868 | |
| 1869 | void ImageWriter::FixupClass(mirror::Class* orig, mirror::Class* copy) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1870 | const char* oat_filename = GetOatFilename(orig); |
| 1871 | orig->FixupNativePointers(copy, target_ptr_size_, NativeLocationVisitor(this, oat_filename)); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1872 | FixupClassVisitor visitor(this, copy); |
Mathieu Chartier | 059ef3d | 2015-08-18 13:54:21 -0700 | [diff] [blame] | 1873 | static_cast<mirror::Object*>(orig)->VisitReferences(visitor, visitor); |
Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 1874 | |
| 1875 | // Remove the clinitThreadId. This is required for image determinism. |
| 1876 | copy->SetClinitThreadId(static_cast<pid_t>(0)); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1877 | } |
| 1878 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 1879 | void ImageWriter::FixupObject(Object* orig, Object* copy) { |
Mathieu Chartier | b7ea3ac | 2014-03-24 16:54:46 -0700 | [diff] [blame] | 1880 | DCHECK(orig != nullptr); |
| 1881 | DCHECK(copy != nullptr); |
Hiroshi Yamauchi | 624468c | 2014-03-31 15:14:47 -0700 | [diff] [blame] | 1882 | if (kUseBakerOrBrooksReadBarrier) { |
| 1883 | orig->AssertReadBarrierPointer(); |
| 1884 | if (kUseBrooksReadBarrier) { |
| 1885 | // Note the address 'copy' isn't the same as the image address of 'orig'. |
| 1886 | copy->SetReadBarrierPointer(GetImageAddress(orig)); |
| 1887 | DCHECK_EQ(copy->GetReadBarrierPointer(), GetImageAddress(orig)); |
| 1888 | } |
Hiroshi Yamauchi | 9d04a20 | 2014-01-31 13:35:49 -0800 | [diff] [blame] | 1889 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1890 | auto* klass = orig->GetClass(); |
| 1891 | if (klass->IsIntArrayClass() || klass->IsLongArrayClass()) { |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 1892 | // Is this a native pointer array? |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1893 | auto it = pointer_arrays_.find(down_cast<mirror::PointerArray*>(orig)); |
| 1894 | if (it != pointer_arrays_.end()) { |
| 1895 | // Should only need to fixup every pointer array exactly once. |
| 1896 | FixupPointerArray(copy, down_cast<mirror::PointerArray*>(orig), klass, it->second); |
| 1897 | pointer_arrays_.erase(it); |
| 1898 | return; |
| 1899 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1900 | } |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 1901 | if (orig->IsClass()) { |
| 1902 | FixupClass(orig->AsClass<kVerifyNone>(), down_cast<mirror::Class*>(copy)); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 1903 | } else { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1904 | if (klass == mirror::Method::StaticClass() || klass == mirror::Constructor::StaticClass()) { |
| 1905 | // Need to go update the ArtMethod. |
| 1906 | auto* dest = down_cast<mirror::AbstractMethod*>(copy); |
| 1907 | auto* src = down_cast<mirror::AbstractMethod*>(orig); |
| 1908 | ArtMethod* src_method = src->GetArtMethod(); |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 1909 | auto it = native_object_relocations_.find(src_method); |
| 1910 | CHECK(it != native_object_relocations_.end()) |
| 1911 | << "Missing relocation for AbstractMethod.artMethod " << PrettyMethod(src_method); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1912 | dest->SetArtMethod( |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1913 | reinterpret_cast<ArtMethod*>(global_image_begin_ + it->second.offset)); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 1914 | } else if (!klass->IsArrayClass()) { |
| 1915 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
| 1916 | if (klass == class_linker->GetClassRoot(ClassLinker::kJavaLangDexCache)) { |
| 1917 | FixupDexCache(down_cast<mirror::DexCache*>(orig), down_cast<mirror::DexCache*>(copy)); |
Mathieu Chartier | 208a5cb | 2015-12-02 15:44:07 -0800 | [diff] [blame] | 1918 | } else if (klass->IsClassLoaderClass()) { |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 1919 | mirror::ClassLoader* copy_loader = down_cast<mirror::ClassLoader*>(copy); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 1920 | // If src is a ClassLoader, set the class table to null so that it gets recreated by the |
| 1921 | // ClassLoader. |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 1922 | copy_loader->SetClassTable(nullptr); |
Mathieu Chartier | 5550c56 | 2015-09-22 15:18:04 -0700 | [diff] [blame] | 1923 | // Also set allocator to null to be safe. The allocator is created when we create the class |
| 1924 | // table. We also never expect to unload things in the image since they are held live as |
| 1925 | // roots. |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 1926 | copy_loader->SetAllocator(nullptr); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 1927 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 1928 | } |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 1929 | FixupVisitor visitor(this, copy); |
Mathieu Chartier | 059ef3d | 2015-08-18 13:54:21 -0700 | [diff] [blame] | 1930 | orig->VisitReferences(visitor, visitor); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 1931 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 1932 | } |
| 1933 | |
Mathieu Chartier | 4b00d34 | 2015-11-13 10:42:08 -0800 | [diff] [blame] | 1934 | |
| 1935 | class ImageAddressVisitor { |
| 1936 | public: |
| 1937 | explicit ImageAddressVisitor(ImageWriter* image_writer) : image_writer_(image_writer) {} |
| 1938 | |
| 1939 | template <typename T> |
| 1940 | T* operator()(T* ptr) const SHARED_REQUIRES(Locks::mutator_lock_) { |
| 1941 | return image_writer_->GetImageAddress(ptr); |
| 1942 | } |
| 1943 | |
| 1944 | private: |
| 1945 | ImageWriter* const image_writer_; |
| 1946 | }; |
| 1947 | |
| 1948 | |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 1949 | void ImageWriter::FixupDexCache(mirror::DexCache* orig_dex_cache, |
| 1950 | mirror::DexCache* copy_dex_cache) { |
| 1951 | // Though the DexCache array fields are usually treated as native pointers, we set the full |
| 1952 | // 64-bit values here, clearing the top 32 bits for 32-bit targets. The zero-extension is |
| 1953 | // done by casting to the unsigned type uintptr_t before casting to int64_t, i.e. |
| 1954 | // static_cast<int64_t>(reinterpret_cast<uintptr_t>(image_begin_ + offset))). |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1955 | const char* oat_filename = GetOatFilenameForDexCache(orig_dex_cache); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 1956 | GcRoot<mirror::String>* orig_strings = orig_dex_cache->GetStrings(); |
| 1957 | if (orig_strings != nullptr) { |
Mathieu Chartier | 4b00d34 | 2015-11-13 10:42:08 -0800 | [diff] [blame] | 1958 | copy_dex_cache->SetFieldPtrWithSize<false>(mirror::DexCache::StringsOffset(), |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1959 | NativeLocationInImage(orig_strings, oat_filename), |
Mathieu Chartier | 4b00d34 | 2015-11-13 10:42:08 -0800 | [diff] [blame] | 1960 | /*pointer size*/8u); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1961 | orig_dex_cache->FixupStrings(NativeCopyLocation(orig_strings, orig_dex_cache), |
| 1962 | ImageAddressVisitor(this)); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 1963 | } |
| 1964 | GcRoot<mirror::Class>* orig_types = orig_dex_cache->GetResolvedTypes(); |
| 1965 | if (orig_types != nullptr) { |
Mathieu Chartier | 4b00d34 | 2015-11-13 10:42:08 -0800 | [diff] [blame] | 1966 | copy_dex_cache->SetFieldPtrWithSize<false>(mirror::DexCache::ResolvedTypesOffset(), |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1967 | NativeLocationInImage(orig_types, oat_filename), |
Mathieu Chartier | 4b00d34 | 2015-11-13 10:42:08 -0800 | [diff] [blame] | 1968 | /*pointer size*/8u); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1969 | orig_dex_cache->FixupResolvedTypes(NativeCopyLocation(orig_types, orig_dex_cache), |
| 1970 | ImageAddressVisitor(this)); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 1971 | } |
| 1972 | ArtMethod** orig_methods = orig_dex_cache->GetResolvedMethods(); |
| 1973 | if (orig_methods != nullptr) { |
Mathieu Chartier | 4b00d34 | 2015-11-13 10:42:08 -0800 | [diff] [blame] | 1974 | copy_dex_cache->SetFieldPtrWithSize<false>(mirror::DexCache::ResolvedMethodsOffset(), |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1975 | NativeLocationInImage(orig_methods, oat_filename), |
Mathieu Chartier | 4b00d34 | 2015-11-13 10:42:08 -0800 | [diff] [blame] | 1976 | /*pointer size*/8u); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1977 | ArtMethod** copy_methods = NativeCopyLocation(orig_methods, orig_dex_cache); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 1978 | for (size_t i = 0, num = orig_dex_cache->NumResolvedMethods(); i != num; ++i) { |
| 1979 | ArtMethod* orig = mirror::DexCache::GetElementPtrSize(orig_methods, i, target_ptr_size_); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1980 | const char* method_oat_filename; |
| 1981 | if (orig == nullptr || orig->IsRuntimeMethod()) { |
| 1982 | method_oat_filename = default_oat_filename_; |
| 1983 | } else { |
| 1984 | method_oat_filename = GetOatFilenameForDexCache(orig->GetDexCache()); |
| 1985 | } |
| 1986 | ArtMethod* copy = NativeLocationInImage(orig, method_oat_filename); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 1987 | mirror::DexCache::SetElementPtrSize(copy_methods, i, copy, target_ptr_size_); |
| 1988 | } |
| 1989 | } |
| 1990 | ArtField** orig_fields = orig_dex_cache->GetResolvedFields(); |
| 1991 | if (orig_fields != nullptr) { |
Mathieu Chartier | 4b00d34 | 2015-11-13 10:42:08 -0800 | [diff] [blame] | 1992 | copy_dex_cache->SetFieldPtrWithSize<false>(mirror::DexCache::ResolvedFieldsOffset(), |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1993 | NativeLocationInImage(orig_fields, oat_filename), |
Mathieu Chartier | 4b00d34 | 2015-11-13 10:42:08 -0800 | [diff] [blame] | 1994 | /*pointer size*/8u); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1995 | ArtField** copy_fields = NativeCopyLocation(orig_fields, orig_dex_cache); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 1996 | for (size_t i = 0, num = orig_dex_cache->NumResolvedFields(); i != num; ++i) { |
| 1997 | ArtField* orig = mirror::DexCache::GetElementPtrSize(orig_fields, i, target_ptr_size_); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 1998 | const char* field_oat_filename = |
| 1999 | orig == nullptr ? default_oat_filename_ : GetOatFilenameForDexCache(orig->GetDexCache()); |
| 2000 | ArtField* copy = NativeLocationInImage(orig, field_oat_filename); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2001 | mirror::DexCache::SetElementPtrSize(copy_fields, i, copy, target_ptr_size_); |
| 2002 | } |
| 2003 | } |
Andreas Gampe | ace0dc1 | 2016-01-20 13:33:13 -0800 | [diff] [blame] | 2004 | |
| 2005 | // Remove the DexFile pointers. They will be fixed up when the runtime loads the oat file. Leaving |
| 2006 | // compiler pointers in here will make the output non-deterministic. |
| 2007 | copy_dex_cache->SetDexFile(nullptr); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2008 | } |
| 2009 | |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 2010 | const uint8_t* ImageWriter::GetOatAddress(OatAddress type) const { |
| 2011 | DCHECK_LT(type, kOatAddressCount); |
| 2012 | // If we are compiling an app image, we need to use the stubs of the boot image. |
| 2013 | if (compile_app_image_) { |
| 2014 | // Use the current image pointers. |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 2015 | const std::vector<gc::space::ImageSpace*>& image_spaces = |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2016 | Runtime::Current()->GetHeap()->GetBootImageSpaces(); |
| 2017 | DCHECK(!image_spaces.empty()); |
| 2018 | const OatFile* oat_file = image_spaces[0]->GetOatFile(); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 2019 | CHECK(oat_file != nullptr); |
| 2020 | const OatHeader& header = oat_file->GetOatHeader(); |
| 2021 | switch (type) { |
| 2022 | // TODO: We could maybe clean this up if we stored them in an array in the oat header. |
| 2023 | case kOatAddressQuickGenericJNITrampoline: |
| 2024 | return static_cast<const uint8_t*>(header.GetQuickGenericJniTrampoline()); |
| 2025 | case kOatAddressInterpreterToInterpreterBridge: |
| 2026 | return static_cast<const uint8_t*>(header.GetInterpreterToInterpreterBridge()); |
| 2027 | case kOatAddressInterpreterToCompiledCodeBridge: |
| 2028 | return static_cast<const uint8_t*>(header.GetInterpreterToCompiledCodeBridge()); |
| 2029 | case kOatAddressJNIDlsymLookup: |
| 2030 | return static_cast<const uint8_t*>(header.GetJniDlsymLookup()); |
| 2031 | case kOatAddressQuickIMTConflictTrampoline: |
| 2032 | return static_cast<const uint8_t*>(header.GetQuickImtConflictTrampoline()); |
| 2033 | case kOatAddressQuickResolutionTrampoline: |
| 2034 | return static_cast<const uint8_t*>(header.GetQuickResolutionTrampoline()); |
| 2035 | case kOatAddressQuickToInterpreterBridge: |
| 2036 | return static_cast<const uint8_t*>(header.GetQuickToInterpreterBridge()); |
| 2037 | default: |
| 2038 | UNREACHABLE(); |
| 2039 | } |
| 2040 | } |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2041 | const ImageInfo& primary_image_info = GetImageInfo(0); |
| 2042 | return GetOatAddressForOffset(primary_image_info.oat_address_offsets_[type], primary_image_info); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 2043 | } |
| 2044 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2045 | const uint8_t* ImageWriter::GetQuickCode(ArtMethod* method, |
| 2046 | const ImageInfo& image_info, |
| 2047 | bool* quick_is_interpreted) { |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 2048 | DCHECK(!method->IsResolutionMethod()) << PrettyMethod(method); |
| 2049 | DCHECK(!method->IsImtConflictMethod()) << PrettyMethod(method); |
| 2050 | DCHECK(!method->IsImtUnimplementedMethod()) << PrettyMethod(method); |
Alex Light | 9139e00 | 2015-10-09 15:59:48 -0700 | [diff] [blame] | 2051 | DCHECK(method->IsInvokable()) << PrettyMethod(method); |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 2052 | DCHECK(!IsInBootImage(method)) << PrettyMethod(method); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 2053 | |
| 2054 | // Use original code if it exists. Otherwise, set the code pointer to the resolution |
| 2055 | // trampoline. |
| 2056 | |
| 2057 | // Quick entrypoint: |
Jeff Hao | c7d1188 | 2015-02-03 15:08:39 -0800 | [diff] [blame] | 2058 | uint32_t quick_oat_code_offset = PointerToLowMemUInt32( |
| 2059 | method->GetEntryPointFromQuickCompiledCodePtrSize(target_ptr_size_)); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2060 | const uint8_t* quick_code = GetOatAddressForOffset(quick_oat_code_offset, image_info); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 2061 | *quick_is_interpreted = false; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2062 | if (quick_code != nullptr && (!method->IsStatic() || method->IsConstructor() || |
| 2063 | method->GetDeclaringClass()->IsInitialized())) { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 2064 | // We have code for a non-static or initialized method, just use the code. |
| 2065 | } else if (quick_code == nullptr && method->IsNative() && |
| 2066 | (!method->IsStatic() || method->GetDeclaringClass()->IsInitialized())) { |
| 2067 | // Non-static or initialized native method missing compiled code, use generic JNI version. |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 2068 | quick_code = GetOatAddress(kOatAddressQuickGenericJNITrampoline); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 2069 | } else if (quick_code == nullptr && !method->IsNative()) { |
| 2070 | // We don't have code at all for a non-native method, use the interpreter. |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 2071 | quick_code = GetOatAddress(kOatAddressQuickToInterpreterBridge); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 2072 | *quick_is_interpreted = true; |
| 2073 | } else { |
| 2074 | CHECK(!method->GetDeclaringClass()->IsInitialized()); |
| 2075 | // We have code for a static method, but need to go through the resolution stub for class |
| 2076 | // initialization. |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 2077 | quick_code = GetOatAddress(kOatAddressQuickResolutionTrampoline); |
| 2078 | } |
| 2079 | if (!IsInBootOatFile(quick_code)) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2080 | // DCHECK_GE(quick_code, oat_data_begin_); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 2081 | } |
| 2082 | return quick_code; |
| 2083 | } |
| 2084 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2085 | void ImageWriter::CopyAndFixupMethod(ArtMethod* orig, |
| 2086 | ArtMethod* copy, |
| 2087 | const ImageInfo& image_info) { |
Vladimir Marko | 1463285 | 2015-08-17 12:07:23 +0100 | [diff] [blame] | 2088 | memcpy(copy, orig, ArtMethod::Size(target_ptr_size_)); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2089 | |
| 2090 | copy->SetDeclaringClass(GetImageAddress(orig->GetDeclaringClassUnchecked())); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2091 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2092 | const char* oat_filename; |
Mathieu Chartier | e467cea | 2016-01-07 18:36:19 -0800 | [diff] [blame] | 2093 | if (orig->IsRuntimeMethod() || compile_app_image_) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2094 | oat_filename = default_oat_filename_; |
| 2095 | } else { |
| 2096 | auto it = dex_file_oat_filename_map_.find(orig->GetDexFile()); |
| 2097 | DCHECK(it != dex_file_oat_filename_map_.end()) << orig->GetDexFile()->GetLocation(); |
| 2098 | oat_filename = it->second; |
| 2099 | } |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2100 | ArtMethod** orig_resolved_methods = orig->GetDexCacheResolvedMethods(target_ptr_size_); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2101 | copy->SetDexCacheResolvedMethods(NativeLocationInImage(orig_resolved_methods, oat_filename), |
| 2102 | target_ptr_size_); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2103 | GcRoot<mirror::Class>* orig_resolved_types = orig->GetDexCacheResolvedTypes(target_ptr_size_); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2104 | copy->SetDexCacheResolvedTypes(NativeLocationInImage(orig_resolved_types, oat_filename), |
| 2105 | target_ptr_size_); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2106 | |
Ian Rogers | 848871b | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 2107 | // OatWriter replaces the code_ with an offset value. Here we re-adjust to a pointer relative to |
| 2108 | // oat_begin_ |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2109 | |
Ian Rogers | 848871b | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 2110 | // The resolution method has a special trampoline to call. |
Mathieu Chartier | 2d2621a | 2014-10-23 16:48:06 -0700 | [diff] [blame] | 2111 | Runtime* runtime = Runtime::Current(); |
| 2112 | if (UNLIKELY(orig == runtime->GetResolutionMethod())) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2113 | copy->SetEntryPointFromQuickCompiledCodePtrSize( |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 2114 | GetOatAddress(kOatAddressQuickResolutionTrampoline), target_ptr_size_); |
Mathieu Chartier | 2d2621a | 2014-10-23 16:48:06 -0700 | [diff] [blame] | 2115 | } else if (UNLIKELY(orig == runtime->GetImtConflictMethod() || |
| 2116 | orig == runtime->GetImtUnimplementedMethod())) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2117 | copy->SetEntryPointFromQuickCompiledCodePtrSize( |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 2118 | GetOatAddress(kOatAddressQuickIMTConflictTrampoline), target_ptr_size_); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2119 | } else if (UNLIKELY(orig->IsRuntimeMethod())) { |
| 2120 | bool found_one = false; |
| 2121 | for (size_t i = 0; i < static_cast<size_t>(Runtime::kLastCalleeSaveType); ++i) { |
| 2122 | auto idx = static_cast<Runtime::CalleeSaveType>(i); |
| 2123 | if (runtime->HasCalleeSaveMethod(idx) && runtime->GetCalleeSaveMethod(idx) == orig) { |
| 2124 | found_one = true; |
| 2125 | break; |
| 2126 | } |
| 2127 | } |
| 2128 | CHECK(found_one) << "Expected to find callee save method but got " << PrettyMethod(orig); |
| 2129 | CHECK(copy->IsRuntimeMethod()); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2130 | } else { |
Ian Rogers | 848871b | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 2131 | // We assume all methods have code. If they don't currently then we set them to the use the |
| 2132 | // resolution trampoline. Abstract methods never have code and so we need to make sure their |
| 2133 | // use results in an AbstractMethodError. We use the interpreter to achieve this. |
Alex Light | 9139e00 | 2015-10-09 15:59:48 -0700 | [diff] [blame] | 2134 | if (UNLIKELY(!orig->IsInvokable())) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2135 | copy->SetEntryPointFromQuickCompiledCodePtrSize( |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 2136 | GetOatAddress(kOatAddressQuickToInterpreterBridge), target_ptr_size_); |
Ian Rogers | 848871b | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 2137 | } else { |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 2138 | bool quick_is_interpreted; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2139 | const uint8_t* quick_code = GetQuickCode(orig, image_info, &quick_is_interpreted); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2140 | copy->SetEntryPointFromQuickCompiledCodePtrSize(quick_code, target_ptr_size_); |
Sebastien Hertz | e1d0781 | 2014-05-21 15:44:09 +0200 | [diff] [blame] | 2141 | |
Sebastien Hertz | e1d0781 | 2014-05-21 15:44:09 +0200 | [diff] [blame] | 2142 | // JNI entrypoint: |
Ian Rogers | 848871b | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 2143 | if (orig->IsNative()) { |
| 2144 | // The native method's pointer is set to a stub to lookup via dlsym. |
| 2145 | // Note this is not the code_ pointer, that is handled above. |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2146 | copy->SetEntryPointFromJniPtrSize( |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 2147 | GetOatAddress(kOatAddressJNIDlsymLookup), target_ptr_size_); |
Ian Rogers | 848871b | 2013-08-05 10:56:33 -0700 | [diff] [blame] | 2148 | } |
| 2149 | } |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2150 | } |
| 2151 | } |
| 2152 | |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 2153 | static OatHeader* GetOatHeaderFromElf(ElfFile* elf) { |
Tong Shen | 62d1ca3 | 2014-09-03 17:24:56 -0700 | [diff] [blame] | 2154 | uint64_t data_sec_offset; |
| 2155 | bool has_data_sec = elf->GetSectionOffsetAndSize(".rodata", &data_sec_offset, nullptr); |
| 2156 | if (!has_data_sec) { |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 2157 | return nullptr; |
| 2158 | } |
Tong Shen | 62d1ca3 | 2014-09-03 17:24:56 -0700 | [diff] [blame] | 2159 | return reinterpret_cast<OatHeader*>(elf->Begin() + data_sec_offset); |
Hiroshi Yamauchi | be1ca55 | 2014-01-15 11:46:48 -0800 | [diff] [blame] | 2160 | } |
| 2161 | |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 2162 | void ImageWriter::SetOatChecksumFromElfFile(File* elf_file) { |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 2163 | std::string error_msg; |
Mathieu Chartier | a808bac | 2015-11-05 16:33:15 -0800 | [diff] [blame] | 2164 | std::unique_ptr<ElfFile> elf(ElfFile::Open(elf_file, |
| 2165 | PROT_READ | PROT_WRITE, |
| 2166 | MAP_SHARED, |
| 2167 | &error_msg)); |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 2168 | if (elf.get() == nullptr) { |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 2169 | LOG(FATAL) << "Unable open oat file: " << error_msg; |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 2170 | return; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2171 | } |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 2172 | OatHeader* oat_header = GetOatHeaderFromElf(elf.get()); |
| 2173 | CHECK(oat_header != nullptr); |
| 2174 | CHECK(oat_header->IsValid()); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2175 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2176 | ImageInfo& image_info = GetImageInfo(oat_file_->GetLocation().c_str()); |
| 2177 | ImageHeader* image_header = reinterpret_cast<ImageHeader*>(image_info.image_->Begin()); |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 2178 | image_header->SetOatChecksum(oat_header->GetChecksum()); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2179 | } |
| 2180 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2181 | size_t ImageWriter::GetBinSizeSum(ImageWriter::ImageInfo& image_info, ImageWriter::Bin up_to) const { |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 2182 | DCHECK_LE(up_to, kBinSize); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2183 | return std::accumulate(&image_info.bin_slot_sizes_[0], |
| 2184 | &image_info.bin_slot_sizes_[up_to], |
| 2185 | /*init*/0); |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 2186 | } |
| 2187 | |
| 2188 | ImageWriter::BinSlot::BinSlot(uint32_t lockword) : lockword_(lockword) { |
| 2189 | // These values may need to get updated if more bins are added to the enum Bin |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 2190 | static_assert(kBinBits == 3, "wrong number of bin bits"); |
| 2191 | static_assert(kBinShift == 27, "wrong number of shift"); |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 2192 | static_assert(sizeof(BinSlot) == sizeof(LockWord), "BinSlot/LockWord must have equal sizes"); |
| 2193 | |
| 2194 | DCHECK_LT(GetBin(), kBinSize); |
| 2195 | DCHECK_ALIGNED(GetIndex(), kObjectAlignment); |
| 2196 | } |
| 2197 | |
| 2198 | ImageWriter::BinSlot::BinSlot(Bin bin, uint32_t index) |
| 2199 | : BinSlot(index | (static_cast<uint32_t>(bin) << kBinShift)) { |
| 2200 | DCHECK_EQ(index, GetIndex()); |
| 2201 | } |
| 2202 | |
| 2203 | ImageWriter::Bin ImageWriter::BinSlot::GetBin() const { |
| 2204 | return static_cast<Bin>((lockword_ & kBinMask) >> kBinShift); |
| 2205 | } |
| 2206 | |
| 2207 | uint32_t ImageWriter::BinSlot::GetIndex() const { |
| 2208 | return lockword_ & ~kBinMask; |
| 2209 | } |
| 2210 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2211 | uint8_t* ImageWriter::GetOatFileBegin(const char* oat_filename) const { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2212 | uintptr_t last_image_end = 0; |
| 2213 | for (const char* oat_fn : oat_filenames_) { |
| 2214 | const ImageInfo& image_info = GetConstImageInfo(oat_fn); |
| 2215 | DCHECK(image_info.image_begin_ != nullptr); |
| 2216 | uintptr_t this_end = reinterpret_cast<uintptr_t>(image_info.image_begin_) + |
| 2217 | image_info.image_size_; |
| 2218 | last_image_end = std::max(this_end, last_image_end); |
| 2219 | } |
| 2220 | const ImageInfo& image_info = GetConstImageInfo(oat_filename); |
| 2221 | return reinterpret_cast<uint8_t*>(last_image_end) + image_info.oat_offset_; |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 2222 | } |
| 2223 | |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 2224 | ImageWriter::Bin ImageWriter::BinTypeForNativeRelocationType(NativeObjectRelocationType type) { |
| 2225 | switch (type) { |
| 2226 | case kNativeObjectRelocationTypeArtField: |
| 2227 | case kNativeObjectRelocationTypeArtFieldArray: |
| 2228 | return kBinArtField; |
| 2229 | case kNativeObjectRelocationTypeArtMethodClean: |
| 2230 | case kNativeObjectRelocationTypeArtMethodArrayClean: |
| 2231 | return kBinArtMethodClean; |
| 2232 | case kNativeObjectRelocationTypeArtMethodDirty: |
| 2233 | case kNativeObjectRelocationTypeArtMethodArrayDirty: |
| 2234 | return kBinArtMethodDirty; |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 2235 | case kNativeObjectRelocationTypeDexCacheArray: |
| 2236 | return kBinDexCacheArray; |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 2237 | } |
| 2238 | UNREACHABLE(); |
| 2239 | } |
| 2240 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2241 | const char* ImageWriter::GetOatFilename(mirror::Object* obj) const { |
| 2242 | if (compile_app_image_) { |
| 2243 | return default_oat_filename_; |
| 2244 | } else { |
| 2245 | return GetOatFilenameForDexCache(obj->IsDexCache() ? obj->AsDexCache() : |
| 2246 | obj->IsClass() ? obj->AsClass()->GetDexCache() : obj->GetClass()->GetDexCache()); |
| 2247 | } |
| 2248 | } |
| 2249 | |
| 2250 | const char* ImageWriter::GetOatFilenameForDexCache(mirror::DexCache* dex_cache) const { |
| 2251 | if (compile_app_image_ || dex_cache == nullptr) { |
| 2252 | return default_oat_filename_; |
| 2253 | } else { |
| 2254 | auto it = dex_file_oat_filename_map_.find(dex_cache->GetDexFile()); |
| 2255 | DCHECK(it != dex_file_oat_filename_map_.end()) << dex_cache->GetDexFile()->GetLocation(); |
| 2256 | return it->second; |
| 2257 | } |
| 2258 | } |
| 2259 | |
| 2260 | ImageWriter::ImageInfo& ImageWriter::GetImageInfo(const char* oat_filename) { |
| 2261 | auto it = image_info_map_.find(oat_filename); |
| 2262 | DCHECK(it != image_info_map_.end()); |
| 2263 | return it->second; |
| 2264 | } |
| 2265 | |
| 2266 | const ImageWriter::ImageInfo& ImageWriter::GetConstImageInfo(const char* oat_filename) const { |
| 2267 | auto it = image_info_map_.find(oat_filename); |
| 2268 | DCHECK(it != image_info_map_.end()); |
| 2269 | return it->second; |
| 2270 | } |
| 2271 | |
| 2272 | const ImageWriter::ImageInfo& ImageWriter::GetImageInfo(size_t index) const { |
| 2273 | DCHECK_LT(index, oat_filenames_.size()); |
| 2274 | return GetConstImageInfo(oat_filenames_[index]); |
| 2275 | } |
| 2276 | |
Vladimir Marko | d8904a5 | 2016-01-29 16:27:27 +0000 | [diff] [blame] | 2277 | void ImageWriter::UpdateOatFile(File* oat_file, const char* oat_filename) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2278 | DCHECK(oat_file != nullptr); |
Mathieu Chartier | 14567fd | 2016-01-28 20:33:36 -0800 | [diff] [blame] | 2279 | if (compile_app_image_) { |
| 2280 | CHECK_EQ(oat_filenames_.size(), 1u) << "App image should have no next image."; |
| 2281 | return; |
| 2282 | } |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2283 | ImageInfo& cur_image_info = GetImageInfo(oat_filename); |
| 2284 | |
| 2285 | // Update the oat_offset of the next image info. |
| 2286 | auto it = std::find(oat_filenames_.begin(), oat_filenames_.end(), oat_filename); |
| 2287 | DCHECK(it != oat_filenames_.end()); |
| 2288 | |
| 2289 | it++; |
| 2290 | if (it != oat_filenames_.end()) { |
Mathieu Chartier | 14567fd | 2016-01-28 20:33:36 -0800 | [diff] [blame] | 2291 | size_t oat_loaded_size = 0; |
| 2292 | size_t oat_data_offset = 0; |
| 2293 | ElfWriter::GetOatElfInformation(oat_file, &oat_loaded_size, &oat_data_offset); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 2294 | // There is a following one. |
| 2295 | ImageInfo& next_image_info = GetImageInfo(*it); |
| 2296 | next_image_info.oat_offset_ = cur_image_info.oat_offset_ + oat_loaded_size; |
| 2297 | } |
| 2298 | } |
| 2299 | |
Mathieu Chartier | ea0831f | 2015-12-29 13:17:37 -0800 | [diff] [blame] | 2300 | ImageWriter::ImageWriter( |
| 2301 | const CompilerDriver& compiler_driver, |
| 2302 | uintptr_t image_begin, |
| 2303 | bool compile_pic, |
| 2304 | bool compile_app_image, |
| 2305 | ImageHeader::StorageMode image_storage_mode, |
| 2306 | const std::vector<const char*> oat_filenames, |
| 2307 | const std::unordered_map<const DexFile*, const char*>& dex_file_oat_filename_map) |
| 2308 | : compiler_driver_(compiler_driver), |
| 2309 | global_image_begin_(reinterpret_cast<uint8_t*>(image_begin)), |
| 2310 | image_objects_offset_begin_(0), |
| 2311 | oat_file_(nullptr), |
| 2312 | compile_pic_(compile_pic), |
| 2313 | compile_app_image_(compile_app_image), |
Mathieu Chartier | ea0831f | 2015-12-29 13:17:37 -0800 | [diff] [blame] | 2314 | target_ptr_size_(InstructionSetPointerSize(compiler_driver_.GetInstructionSet())), |
| 2315 | image_method_array_(ImageHeader::kImageMethodsCount), |
| 2316 | dirty_methods_(0u), |
| 2317 | clean_methods_(0u), |
Mathieu Chartier | ea0831f | 2015-12-29 13:17:37 -0800 | [diff] [blame] | 2318 | image_storage_mode_(image_storage_mode), |
| 2319 | dex_file_oat_filename_map_(dex_file_oat_filename_map), |
| 2320 | oat_filenames_(oat_filenames), |
| 2321 | default_oat_filename_(oat_filenames[0]) { |
| 2322 | CHECK_NE(image_begin, 0U); |
| 2323 | for (const char* oat_filename : oat_filenames) { |
| 2324 | image_info_map_.emplace(oat_filename, ImageInfo()); |
| 2325 | } |
| 2326 | std::fill_n(image_methods_, arraysize(image_methods_), nullptr); |
| 2327 | } |
| 2328 | |
Mathieu Chartier | 1f47b67 | 2016-01-07 16:29:01 -0800 | [diff] [blame] | 2329 | ImageWriter::ImageInfo::ImageInfo() |
| 2330 | : intern_table_(new InternTable), |
| 2331 | class_table_(new ClassTable) {} |
Mathieu Chartier | ea0831f | 2015-12-29 13:17:37 -0800 | [diff] [blame] | 2332 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 2333 | } // namespace art |