Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 1 | // Copyright 2011 Google Inc. All Rights Reserved. |
| 2 | |
| 3 | #include "image_writer.h" |
| 4 | |
| 5 | #include <sys/mman.h> |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 6 | |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 7 | #include <vector> |
| 8 | |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 9 | #include "UniquePtr.h" |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 10 | #include "class_linker.h" |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 11 | #include "class_loader.h" |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 12 | #include "dex_cache.h" |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 13 | #include "file.h" |
| 14 | #include "globals.h" |
| 15 | #include "heap.h" |
Brian Carlstrom | 4a289ed | 2011-08-16 17:17:49 -0700 | [diff] [blame] | 16 | #include "image.h" |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 17 | #include "intern_table.h" |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 18 | #include "logging.h" |
| 19 | #include "object.h" |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 20 | #include "runtime.h" |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 21 | #include "space.h" |
| 22 | #include "utils.h" |
| 23 | |
| 24 | namespace art { |
| 25 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 26 | bool ImageWriter::Write(const char* image_filename, uintptr_t image_base, |
| 27 | const std::string& oat_filename, const std::string& strip_location_prefix) { |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 28 | CHECK_NE(image_base, 0U); |
| 29 | image_base_ = reinterpret_cast<byte*>(image_base); |
| 30 | |
| 31 | const std::vector<Space*>& spaces = Heap::GetSpaces(); |
| 32 | // currently just write the last space, assuming it is the space that was being used for allocation |
| 33 | CHECK_GE(spaces.size(), 1U); |
| 34 | source_space_ = spaces[spaces.size()-1]; |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 35 | CHECK(!source_space_->IsImageSpace()); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 36 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 37 | oat_file_.reset(OatFile::Open(oat_filename, strip_location_prefix, NULL)); |
| 38 | if (oat_file_.get() == NULL) { |
| 39 | LOG(ERROR) << "Failed to open oat file " << oat_filename; |
| 40 | return false; |
| 41 | } |
| 42 | |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 43 | if (!Init()) { |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 44 | return false; |
| 45 | } |
Brian Carlstrom | 693267a | 2011-09-06 09:25:34 -0700 | [diff] [blame] | 46 | Heap::CollectGarbage(); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 47 | CalculateNewObjectOffsets(); |
| 48 | CopyAndFixupObjects(); |
Elliott Hughes | d8ddfd5 | 2011-08-15 14:32:53 -0700 | [diff] [blame] | 49 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 50 | UniquePtr<File> file(OS::OpenFile(image_filename, true)); |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 51 | if (file.get() == NULL) { |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 52 | LOG(ERROR) << "Failed to open image file " << image_filename; |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 53 | return false; |
| 54 | } |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 55 | bool success = file->WriteFully(image_->GetAddress(), image_top_); |
| 56 | if (!success) { |
| 57 | PLOG(ERROR) << "Failed to write image file " << image_filename; |
| 58 | return false; |
| 59 | } |
| 60 | return true; |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 61 | } |
| 62 | |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 63 | bool ImageWriter::Init() { |
| 64 | size_t size = source_space_->Size(); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 65 | int prot = PROT_READ | PROT_WRITE; |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 66 | size_t length = RoundUp(size, kPageSize); |
Brian Carlstrom | 4a289ed | 2011-08-16 17:17:49 -0700 | [diff] [blame] | 67 | image_.reset(MemMap::Map(length, prot)); |
Elliott Hughes | 90a3369 | 2011-08-30 13:27:07 -0700 | [diff] [blame] | 68 | if (image_.get() == NULL) { |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 69 | LOG(ERROR) << "Failed to allocate memory for image file generation"; |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 70 | return false; |
| 71 | } |
| 72 | return true; |
| 73 | } |
| 74 | |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 75 | void ImageWriter::CalculateNewObjectOffsetsCallback(Object* obj, void* arg) { |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 76 | DCHECK(obj != NULL); |
| 77 | DCHECK(arg != NULL); |
| 78 | ImageWriter* image_writer = reinterpret_cast<ImageWriter*>(arg); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 79 | if (!image_writer->InSourceSpace(obj)) { |
| 80 | return; |
| 81 | } |
Brian Carlstrom | c74255f | 2011-09-11 22:47:39 -0700 | [diff] [blame] | 82 | |
| 83 | // if it is a string, we want to intern it if its not interned. |
| 84 | if (obj->IsString()) { |
| 85 | // we must be an interned string that was forward referenced and already assigned |
| 86 | if (IsImageOffsetAssigned(obj)) { |
| 87 | DCHECK_EQ(obj, obj->AsString()->Intern()); |
| 88 | return; |
| 89 | } |
| 90 | String* interned = obj->AsString()->Intern(); |
| 91 | if (obj != interned) { |
| 92 | if (!IsImageOffsetAssigned(interned)) { |
| 93 | // interned obj is after us, allocate its location early |
| 94 | image_writer->AssignImageOffset(interned); |
| 95 | } |
| 96 | // point those looking for this object to the interned version. |
| 97 | SetImageOffset(obj, GetImageOffset(interned)); |
| 98 | return; |
| 99 | } |
| 100 | // else (obj == interned), nothing to do but fall through to the normal case |
| 101 | } |
| 102 | |
| 103 | image_writer->AssignImageOffset(obj); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 104 | |
| 105 | // sniff out the DexCaches on this pass for use on the next pass |
| 106 | if (obj->IsClass()) { |
| 107 | Class* klass = obj->AsClass(); |
| 108 | DexCache* dex_cache = klass->GetDexCache(); |
| 109 | if (dex_cache != NULL) { |
| 110 | image_writer->dex_caches_.insert(dex_cache); |
| 111 | } else { |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 112 | DCHECK(klass->IsArrayClass() || klass->IsPrimitive()) << PrettyClass(klass); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 113 | } |
| 114 | } |
Brian Carlstrom | 4e777d4 | 2011-08-15 13:53:52 -0700 | [diff] [blame] | 115 | } |
| 116 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 117 | ObjectArray<Object>* ImageWriter::CreateImageRoots() const { |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 118 | Runtime* runtime = Runtime::Current(); |
| 119 | ClassLinker* class_linker = runtime->GetClassLinker(); |
| 120 | Class* object_array_class = class_linker->FindSystemClass("[Ljava/lang/Object;"); |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 121 | |
| 122 | // build an Object[] of all the DexCaches used in the source_space_ |
| 123 | const std::vector<DexCache*>& all_dex_caches = class_linker->GetDexCaches(); |
| 124 | std::vector<DexCache*> source_space_dex_caches; |
| 125 | for (size_t i = 0; i < all_dex_caches.size(); i++) { |
| 126 | DexCache* dex_cache = all_dex_caches[i]; |
| 127 | if (InSourceSpace(dex_cache)) { |
| 128 | source_space_dex_caches.push_back(dex_cache); |
| 129 | } |
| 130 | } |
| 131 | ObjectArray<Object>* dex_caches = ObjectArray<Object>::Alloc(object_array_class, |
| 132 | source_space_dex_caches.size()); |
| 133 | for (size_t i = 0; i < source_space_dex_caches.size(); i++) { |
| 134 | dex_caches->Set(i, source_space_dex_caches[i]); |
| 135 | } |
| 136 | |
| 137 | // build an Object[] of the roots needed to restore the runtime |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 138 | ObjectArray<Object>* image_roots = ObjectArray<Object>::Alloc(object_array_class, |
| 139 | ImageHeader::kImageRootsMax); |
Ian Rogers | ad25ac5 | 2011-10-04 19:13:33 -0700 | [diff] [blame] | 140 | image_roots->Set(ImageHeader::kJniStubArray, runtime->GetJniStubArray()); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 141 | image_roots->Set(ImageHeader::kAbstractMethodErrorStubArray, |
| 142 | runtime->GetAbstractMethodErrorStubArray()); |
Ian Rogers | 1cb0a1d | 2011-10-06 15:24:35 -0700 | [diff] [blame^] | 143 | image_roots->Set(ImageHeader::kInstanceResolutionStubArray, |
| 144 | runtime->GetResolutionStubArray(Runtime::kInstanceMethod)); |
| 145 | image_roots->Set(ImageHeader::kStaticResolutionStubArray, |
| 146 | runtime->GetResolutionStubArray(Runtime::kStaticMethod)); |
| 147 | image_roots->Set(ImageHeader::kUnknownMethodResolutionStubArray, |
| 148 | runtime->GetResolutionStubArray(Runtime::kUnknownMethod)); |
Ian Rogers | ad25ac5 | 2011-10-04 19:13:33 -0700 | [diff] [blame] | 149 | image_roots->Set(ImageHeader::kCalleeSaveMethod, runtime->GetCalleeSaveMethod()); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 150 | image_roots->Set(ImageHeader::kOatLocation, |
| 151 | String::AllocFromModifiedUtf8(oat_file_->GetLocation().c_str())); |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 152 | image_roots->Set(ImageHeader::kDexCaches, |
| 153 | dex_caches); |
Brian Carlstrom | 34f426c | 2011-10-04 12:58:02 -0700 | [diff] [blame] | 154 | image_roots->Set(ImageHeader::kClassRoots, |
| 155 | class_linker->GetClassRoots()); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 156 | for (int i = 0; i < ImageHeader::kImageRootsMax; i++) { |
| 157 | CHECK(image_roots->Get(i) != NULL); |
| 158 | } |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 159 | return image_roots; |
| 160 | } |
| 161 | |
Brian Carlstrom | 4e777d4 | 2011-08-15 13:53:52 -0700 | [diff] [blame] | 162 | void ImageWriter::CalculateNewObjectOffsets() { |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 163 | ObjectArray<Object>* image_roots = CreateImageRoots(); |
| 164 | |
Brian Carlstrom | 4e777d4 | 2011-08-15 13:53:52 -0700 | [diff] [blame] | 165 | HeapBitmap* heap_bitmap = Heap::GetLiveBits(); |
| 166 | DCHECK(heap_bitmap != NULL); |
| 167 | DCHECK_EQ(0U, image_top_); |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 168 | |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 169 | // leave space for the header, but do not write it yet, we need to |
| 170 | // know where image_roots is going to end up |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 171 | image_top_ += RoundUp(sizeof(ImageHeader), 8); // 64-bit-alignment |
| 172 | |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 173 | heap_bitmap->Walk(CalculateNewObjectOffsetsCallback, this); // TODO: add Space-limited Walk |
Brian Carlstrom | 4e777d4 | 2011-08-15 13:53:52 -0700 | [diff] [blame] | 174 | DCHECK_LT(image_top_, image_->GetLength()); |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 175 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 176 | // Note that image_top_ is left at end of used space |
| 177 | oat_base_ = image_base_ + RoundUp(image_top_, kPageSize); |
| 178 | byte* oat_limit = oat_base_ + oat_file_->GetSize(); |
| 179 | |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 180 | // return to write header at start of image with future location of image_roots |
| 181 | ImageHeader image_header(reinterpret_cast<uint32_t>(image_base_), |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 182 | reinterpret_cast<uint32_t>(GetImageAddress(image_roots)), |
| 183 | oat_file_->GetOatHeader().GetChecksum(), |
| 184 | reinterpret_cast<uint32_t>(oat_base_), |
| 185 | reinterpret_cast<uint32_t>(oat_limit)); |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 186 | memcpy(image_->GetAddress(), &image_header, sizeof(image_header)); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 187 | } |
| 188 | |
| 189 | void ImageWriter::CopyAndFixupObjects() { |
| 190 | HeapBitmap* heap_bitmap = Heap::GetLiveBits(); |
| 191 | DCHECK(heap_bitmap != NULL); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 192 | // TODO: heap validation can't handle this fix up pass |
| 193 | Heap::DisableObjectValidation(); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 194 | heap_bitmap->Walk(CopyAndFixupObjectsCallback, this); // TODO: add Space-limited Walk |
| 195 | FixupDexCaches(); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 196 | } |
| 197 | |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 198 | void ImageWriter::CopyAndFixupObjectsCallback(Object* object, void* arg) { |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 199 | DCHECK(object != NULL); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 200 | DCHECK(arg != NULL); |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 201 | const Object* obj = object; |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 202 | ImageWriter* image_writer = reinterpret_cast<ImageWriter*>(arg); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 203 | if (!image_writer->InSourceSpace(object)) { |
| 204 | return; |
| 205 | } |
Elliott Hughes | d8ddfd5 | 2011-08-15 14:32:53 -0700 | [diff] [blame] | 206 | |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 207 | // see GetLocalAddress for similar computation |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 208 | size_t offset = image_writer->GetImageOffset(obj); |
Brian Carlstrom | 4e777d4 | 2011-08-15 13:53:52 -0700 | [diff] [blame] | 209 | byte* dst = image_writer->image_->GetAddress() + offset; |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 210 | const byte* src = reinterpret_cast<const byte*>(obj); |
Elliott Hughes | 04b63fd | 2011-08-16 09:40:10 -0700 | [diff] [blame] | 211 | size_t n = obj->SizeOf(); |
Brian Carlstrom | 4e777d4 | 2011-08-15 13:53:52 -0700 | [diff] [blame] | 212 | DCHECK_LT(offset + n, image_writer->image_->GetLength()); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 213 | memcpy(dst, src, n); |
| 214 | Object* copy = reinterpret_cast<Object*>(dst); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 215 | ResetImageOffset(copy); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 216 | image_writer->FixupObject(obj, copy); |
| 217 | } |
| 218 | |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 219 | void ImageWriter::FixupObject(const Object* orig, Object* copy) { |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 220 | DCHECK(orig != NULL); |
| 221 | DCHECK(copy != NULL); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 222 | copy->SetClass(down_cast<Class*>(GetImageAddress(orig->GetClass()))); |
Brian Carlstrom | 9cff8e1 | 2011-08-18 16:47:29 -0700 | [diff] [blame] | 223 | // TODO: special case init of pointers to malloc data (or removal of these pointers) |
| 224 | if (orig->IsClass()) { |
| 225 | FixupClass(orig->AsClass(), down_cast<Class*>(copy)); |
| 226 | } else if (orig->IsObjectArray()) { |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 227 | FixupObjectArray(orig->AsObjectArray<Object>(), down_cast<ObjectArray<Object>*>(copy)); |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 228 | } else if (orig->IsMethod()) { |
| 229 | FixupMethod(orig->AsMethod(), down_cast<Method*>(copy)); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 230 | } else { |
| 231 | FixupInstanceFields(orig, copy); |
| 232 | } |
| 233 | } |
| 234 | |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 235 | void ImageWriter::FixupClass(const Class* orig, Class* copy) { |
Brian Carlstrom | 9cff8e1 | 2011-08-18 16:47:29 -0700 | [diff] [blame] | 236 | FixupInstanceFields(orig, copy); |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 237 | FixupStaticFields(orig, copy); |
Brian Carlstrom | 9cff8e1 | 2011-08-18 16:47:29 -0700 | [diff] [blame] | 238 | } |
| 239 | |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 240 | const void* FixupCode(const ByteArray* copy_code_array, const void* orig_code) { |
| 241 | // TODO: change to DCHECK when all code compiling |
| 242 | if (copy_code_array == NULL) { |
| 243 | return NULL; |
| 244 | } |
| 245 | const void* copy_code = copy_code_array->GetData(); |
| 246 | // TODO: remember InstructionSet with each code array so we know if we need to do thumb fixup? |
| 247 | if ((reinterpret_cast<uintptr_t>(orig_code) % 2) == 1) { |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 248 | return reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(copy_code) + 1); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 249 | } |
| 250 | return copy_code; |
| 251 | } |
| 252 | |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 253 | void ImageWriter::FixupMethod(const Method* orig, Method* copy) { |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 254 | FixupInstanceFields(orig, copy); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 255 | |
| 256 | // OatWriter clears the code_array_ after writing the code. |
| 257 | // It replaces the code_ with an offset value we now adjust to be a pointer. |
| 258 | DCHECK(copy->code_array_ == NULL) |
| 259 | << PrettyMethod(orig) |
| 260 | << " orig_code_array_=" << orig->GetCodeArray() << " orig_code_=" << orig->GetCode() |
| 261 | << " copy_code_array_=" << copy->code_array_ << " orig_code_=" << copy->code_ |
| 262 | << " jni_stub=" << Runtime::Current()->GetJniStubArray() |
| 263 | << " ame_stub=" << Runtime::Current()->GetAbstractMethodErrorStubArray(); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 264 | copy->invoke_stub_ = reinterpret_cast<Method::InvokeStub*>(FixupCode(copy->invoke_stub_array_, reinterpret_cast<void*>(orig->invoke_stub_))); |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 265 | if (orig->IsNative()) { |
| 266 | ByteArray* orig_jni_stub_array_ = Runtime::Current()->GetJniStubArray(); |
| 267 | ByteArray* copy_jni_stub_array_ = down_cast<ByteArray*>(GetImageAddress(orig_jni_stub_array_)); |
| 268 | copy->native_method_ = copy_jni_stub_array_->GetData(); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 269 | copy->code_ = oat_base_ + orig->GetOatCodeOffset(); |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 270 | } else { |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 271 | DCHECK(copy->native_method_ == NULL) << copy->native_method_; |
| 272 | if (orig->IsAbstract()) { |
| 273 | ByteArray* orig_ame_stub_array_ = Runtime::Current()->GetAbstractMethodErrorStubArray(); |
| 274 | ByteArray* copy_ame_stub_array_ = down_cast<ByteArray*>(GetImageAddress(orig_ame_stub_array_)); |
| 275 | copy->code_ = copy_ame_stub_array_->GetData(); |
| 276 | } else { |
| 277 | copy->code_ = oat_base_ + orig->GetOatCodeOffset(); |
| 278 | } |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 279 | } |
Brian Carlstrom | a663ea5 | 2011-08-19 23:33:41 -0700 | [diff] [blame] | 280 | } |
| 281 | |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 282 | void ImageWriter::FixupObjectArray(const ObjectArray<Object>* orig, ObjectArray<Object>* copy) { |
Elliott Hughes | d8ddfd5 | 2011-08-15 14:32:53 -0700 | [diff] [blame] | 283 | for (int32_t i = 0; i < orig->GetLength(); ++i) { |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 284 | const Object* element = orig->Get(i); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 285 | copy->SetWithoutChecks(i, GetImageAddress(element)); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 286 | } |
| 287 | } |
| 288 | |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 289 | void ImageWriter::FixupInstanceFields(const Object* orig, Object* copy) { |
| 290 | DCHECK(orig != NULL); |
| 291 | DCHECK(copy != NULL); |
| 292 | Class* klass = orig->GetClass(); |
| 293 | DCHECK(klass != NULL); |
| 294 | FixupFields(orig, |
| 295 | copy, |
| 296 | klass->GetReferenceInstanceOffsets(), |
| 297 | false); |
| 298 | } |
| 299 | |
| 300 | void ImageWriter::FixupStaticFields(const Class* orig, Class* copy) { |
| 301 | DCHECK(orig != NULL); |
| 302 | DCHECK(copy != NULL); |
| 303 | FixupFields(orig, |
| 304 | copy, |
| 305 | orig->GetReferenceStaticOffsets(), |
| 306 | true); |
| 307 | } |
| 308 | |
| 309 | void ImageWriter::FixupFields(const Object* orig, |
| 310 | Object* copy, |
| 311 | uint32_t ref_offsets, |
| 312 | bool is_static) { |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 313 | if (ref_offsets != CLASS_WALK_SUPER) { |
| 314 | // Found a reference offset bitmap. Fixup the specified offsets. |
| 315 | while (ref_offsets != 0) { |
| 316 | size_t right_shift = CLZ(ref_offsets); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 317 | MemberOffset byte_offset = CLASS_OFFSET_FROM_CLZ(right_shift); |
| 318 | const Object* ref = orig->GetFieldObject<const Object*>(byte_offset, false); |
| 319 | copy->SetFieldObject(byte_offset, GetImageAddress(ref), false); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 320 | ref_offsets &= ~(CLASS_HIGH_BIT >> right_shift); |
| 321 | } |
| 322 | } else { |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 323 | // There is no reference offset bitmap. In the non-static case, |
| 324 | // walk up the class inheritance hierarchy and find reference |
| 325 | // offsets the hard way. In the static case, just consider this |
| 326 | // class. |
| 327 | for (const Class *klass = is_static ? orig->AsClass() : orig->GetClass(); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 328 | klass != NULL; |
Brian Carlstrom | 4873d46 | 2011-08-21 15:23:39 -0700 | [diff] [blame] | 329 | klass = is_static ? NULL : klass->GetSuperClass()) { |
| 330 | size_t num_reference_fields = (is_static |
| 331 | ? klass->NumReferenceStaticFields() |
| 332 | : klass->NumReferenceInstanceFields()); |
| 333 | for (size_t i = 0; i < num_reference_fields; ++i) { |
| 334 | Field* field = (is_static |
| 335 | ? klass->GetStaticField(i) |
| 336 | : klass->GetInstanceField(i)); |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 337 | MemberOffset field_offset = field->GetOffset(); |
| 338 | const Object* ref = orig->GetFieldObject<const Object*>(field_offset, false); |
| 339 | copy->SetFieldObject(field_offset, GetImageAddress(ref), false); |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 340 | } |
| 341 | } |
| 342 | } |
| 343 | } |
| 344 | |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 345 | void ImageWriter::FixupDexCaches() { |
| 346 | typedef Set::const_iterator It; // TODO: C++0x auto |
| 347 | for (It it = dex_caches_.begin(), end = dex_caches_.end(); it != end; ++it) { |
| 348 | DexCache* orig = *it; |
| 349 | DexCache* copy = down_cast<DexCache*>(GetLocalAddress(orig)); |
| 350 | FixupDexCache(orig, copy); |
| 351 | } |
| 352 | } |
| 353 | |
| 354 | void ImageWriter::FixupDexCache(const DexCache* orig, DexCache* copy) { |
| 355 | CHECK(orig != NULL); |
| 356 | CHECK(copy != NULL); |
| 357 | |
Ian Rogers | ad25ac5 | 2011-10-04 19:13:33 -0700 | [diff] [blame] | 358 | // The original array value |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 359 | CodeAndDirectMethods* orig_cadms = orig->GetCodeAndDirectMethods(); |
Ian Rogers | ad25ac5 | 2011-10-04 19:13:33 -0700 | [diff] [blame] | 360 | // The compacted object in local memory but not at the correct image address |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 361 | CodeAndDirectMethods* copy_cadms = down_cast<CodeAndDirectMethods*>(GetLocalAddress(orig_cadms)); |
Ian Rogers | ad25ac5 | 2011-10-04 19:13:33 -0700 | [diff] [blame] | 362 | |
Ian Rogers | 1cb0a1d | 2011-10-06 15:24:35 -0700 | [diff] [blame^] | 363 | Runtime* runtime = Runtime::Current(); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 364 | for (size_t i = 0; i < orig->NumResolvedMethods(); i++) { |
| 365 | Method* orig_method = orig->GetResolvedMethod(i); |
Ian Rogers | ad25ac5 | 2011-10-04 19:13:33 -0700 | [diff] [blame] | 366 | if (orig_method != NULL && !InSourceSpace(orig_method)) { |
| 367 | continue; |
| 368 | } |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 369 | // if it was resolved in the original, resolve it in the copy |
Ian Rogers | ad25ac5 | 2011-10-04 19:13:33 -0700 | [diff] [blame] | 370 | if (orig_method == NULL || (orig_method->IsStatic() && |
| 371 | !orig_method->GetDeclaringClass()->IsInitialized())) { |
Ian Rogers | 1cb0a1d | 2011-10-06 15:24:35 -0700 | [diff] [blame^] | 372 | uint32_t orig_res_stub_code = orig_cadms->Get(CodeAndDirectMethods::CodeIndex(i)); |
| 373 | if (orig_res_stub_code == 0) { |
| 374 | continue; // NULL maps the same in the image and the original |
Ian Rogers | ad25ac5 | 2011-10-04 19:13:33 -0700 | [diff] [blame] | 375 | } |
Ian Rogers | 1cb0a1d | 2011-10-06 15:24:35 -0700 | [diff] [blame^] | 376 | Runtime::TrampolineType type = Runtime::GetTrampolineType(orig_method); // Type of trampoline |
| 377 | ByteArray* orig_res_stub_array = runtime->GetResolutionStubArray(type); |
| 378 | // Do we need to relocate this for this space? |
| 379 | if (!InSourceSpace(orig_res_stub_array)) { |
| 380 | continue; |
| 381 | } |
| 382 | // Compute the delta from the start of the resolution stub to its starting code. |
| 383 | // For ARM and X86 this is 0, for Thumb2 it is 1. |
| 384 | static size_t res_stub_delta = 0xFFFF; |
| 385 | if (res_stub_delta == 0xFFFF) { |
| 386 | uint32_t orig_res_stub_array_data = |
| 387 | reinterpret_cast<uint32_t>(orig_res_stub_array->GetData()); |
| 388 | res_stub_delta = orig_res_stub_code - orig_res_stub_array_data; |
| 389 | DCHECK(res_stub_delta == 0 || res_stub_delta == 1); |
| 390 | } |
| 391 | // Compute address in image of resolution stub and the code address |
| 392 | ByteArray* image_res_stub_array = down_cast<ByteArray*>(GetImageAddress(orig_res_stub_array)); |
| 393 | int32_t image_res_stub_code = |
| 394 | reinterpret_cast<int32_t>(image_res_stub_array->GetData()) + res_stub_delta; |
| 395 | // Put the image code address in the array |
| 396 | copy_cadms->Set(CodeAndDirectMethods::CodeIndex(i), image_res_stub_code); |
Ian Rogers | ad25ac5 | 2011-10-04 19:13:33 -0700 | [diff] [blame] | 397 | } else if (orig_method->IsDirect()) { |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 398 | Method* copy_method = down_cast<Method*>(GetLocalAddress(orig_method)); |
| 399 | copy_cadms->Set(CodeAndDirectMethods::CodeIndex(i), |
| 400 | reinterpret_cast<int32_t>(copy_method->code_)); |
| 401 | copy_cadms->Set(CodeAndDirectMethods::MethodIndex(i), |
| 402 | reinterpret_cast<int32_t>(GetImageAddress(orig_method))); |
| 403 | } |
| 404 | } |
| 405 | } |
| 406 | |
Brian Carlstrom | db4d540 | 2011-08-09 12:18:28 -0700 | [diff] [blame] | 407 | } // namespace art |