Elliott Hughes | 2faa5f1 | 2012-01-30 14:42:07 -0800 | [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 | */ |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 16 | |
| 17 | #include <stdio.h> |
| 18 | #include <stdlib.h> |
Brian Carlstrom | 6cd40e5 | 2012-05-03 14:15:11 -0700 | [diff] [blame] | 19 | #include <sys/stat.h> |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 20 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 21 | #include <iostream> |
| 22 | #include <fstream> |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 23 | #include <string> |
| 24 | #include <vector> |
| 25 | |
Elliott Hughes | 1aa246d | 2012-12-13 09:29:36 -0800 | [diff] [blame] | 26 | #include "base/stl_util.h" |
Elliott Hughes | e222ee0 | 2012-12-13 14:41:43 -0800 | [diff] [blame] | 27 | #include "base/stringpiece.h" |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 28 | #include "base/unix_file/fd_file.h" |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 29 | #include "class_linker.h" |
| 30 | #include "class_loader.h" |
| 31 | #include "compiler.h" |
| 32 | #include "image_writer.h" |
Ian Rogers | 6f1dfe4 | 2011-12-08 17:28:34 -0800 | [diff] [blame] | 33 | #include "leb128.h" |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 34 | #include "oat_writer.h" |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 35 | #include "object_utils.h" |
Ian Rogers | 5e863dd | 2011-11-02 20:00:10 -0700 | [diff] [blame] | 36 | #include "os.h" |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 37 | #include "runtime.h" |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 38 | #include "ScopedLocalRef.h" |
| 39 | #include "scoped_thread_state_change.h" |
Ian Rogers | 1f53934 | 2012-10-03 21:09:42 -0700 | [diff] [blame] | 40 | #include "sirt_ref.h" |
Elliott Hughes | bb551fa | 2012-01-25 16:35:29 -0800 | [diff] [blame] | 41 | #include "timing_logger.h" |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 42 | #include "vector_output_stream.h" |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 43 | #include "well_known_classes.h" |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 44 | #include "zip_archive.h" |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 45 | |
| 46 | namespace art { |
| 47 | |
Brian Carlstrom | cbfe6fe | 2012-02-17 11:13:36 -0800 | [diff] [blame] | 48 | static void UsageErrorV(const char* fmt, va_list ap) { |
| 49 | std::string error; |
| 50 | StringAppendV(&error, fmt, ap); |
| 51 | LOG(ERROR) << error; |
| 52 | } |
| 53 | |
| 54 | static void UsageError(const char* fmt, ...) { |
| 55 | va_list ap; |
| 56 | va_start(ap, fmt); |
| 57 | UsageErrorV(fmt, ap); |
| 58 | va_end(ap); |
| 59 | } |
| 60 | |
| 61 | static void Usage(const char* fmt, ...) { |
| 62 | va_list ap; |
| 63 | va_start(ap, fmt); |
| 64 | UsageErrorV(fmt, ap); |
| 65 | va_end(ap); |
| 66 | |
| 67 | UsageError("Usage: dex2oat [options]..."); |
| 68 | UsageError(""); |
| 69 | UsageError(" --dex-file=<dex-file>: specifies a .dex file to compile."); |
| 70 | UsageError(" Example: --dex-file=/system/framework/core.jar"); |
| 71 | UsageError(""); |
| 72 | UsageError(" --zip-fd=<file-descriptor>: specifies a file descriptor of a zip file"); |
| 73 | UsageError(" containing a classes.dex file to compile."); |
| 74 | UsageError(" Example: --zip-fd=5"); |
| 75 | UsageError(""); |
| 76 | UsageError(" --zip-location=<zip-location>: specifies a symbolic name for the file corresponding"); |
| 77 | UsageError(" to the file descriptor specified by --zip-fd."); |
| 78 | UsageError(" Example: --zip-location=/system/app/Calculator.apk"); |
| 79 | UsageError(""); |
| 80 | UsageError(" --oat-file=<file.oat>: specifies the required oat filename."); |
| 81 | UsageError(" Example: --oat-file=/system/framework/boot.oat"); |
| 82 | UsageError(""); |
| 83 | UsageError(" --oat-location=<oat-name>: specifies a symbolic name for the file corresponding"); |
| 84 | UsageError(" to the file descriptor specified by --oat-fd."); |
| 85 | UsageError(" Example: --oat-location=/data/art-cache/system@app@Calculator.apk.oat"); |
| 86 | UsageError(""); |
Logan Chien | 8b977d3 | 2012-02-21 19:14:55 +0800 | [diff] [blame] | 87 | UsageError(" --bitcode=<file.bc>: specifies the optional bitcode filename."); |
| 88 | UsageError(" Example: --bitcode=/system/framework/boot.bc"); |
| 89 | UsageError(""); |
Brian Carlstrom | cbfe6fe | 2012-02-17 11:13:36 -0800 | [diff] [blame] | 90 | UsageError(" --image=<file.art>: specifies the output image filename."); |
| 91 | UsageError(" Example: --image=/system/framework/boot.art"); |
| 92 | UsageError(""); |
| 93 | UsageError(" --image-classes=<classname-file>: specifies classes to include in an image."); |
| 94 | UsageError(" Example: --image=frameworks/base/preloaded-classes"); |
| 95 | UsageError(""); |
| 96 | UsageError(" --base=<hex-address>: specifies the base address when creating a boot image."); |
| 97 | UsageError(" Example: --base=0x50000000"); |
| 98 | UsageError(""); |
| 99 | UsageError(" --boot-image=<file.art>: provide the image file for the boot class path."); |
| 100 | UsageError(" Example: --boot-image=/system/framework/boot.art"); |
| 101 | UsageError(" Default: <host-prefix>/system/framework/boot.art"); |
| 102 | UsageError(""); |
| 103 | UsageError(" --host-prefix may be used to translate host paths to target paths during"); |
| 104 | UsageError(" cross compilation."); |
| 105 | UsageError(" Example: --host-prefix=out/target/product/crespo"); |
| 106 | UsageError(" Default: $ANDROID_PRODUCT_OUT"); |
| 107 | UsageError(""); |
jeffhao | 1f71ae8 | 2012-05-24 16:08:24 -0700 | [diff] [blame] | 108 | UsageError(" --instruction-set=(arm|mips|x86): compile for a particular instruction"); |
Ian Rogers | 49c4894 | 2012-03-11 15:15:37 -0700 | [diff] [blame] | 109 | UsageError(" set."); |
jeffhao | 1f71ae8 | 2012-05-24 16:08:24 -0700 | [diff] [blame] | 110 | UsageError(" Example: --instruction-set=x86"); |
| 111 | UsageError(" Default: arm"); |
Ian Rogers | 49c4894 | 2012-03-11 15:15:37 -0700 | [diff] [blame] | 112 | UsageError(""); |
buzbee | c531cef | 2012-10-18 07:09:20 -0700 | [diff] [blame] | 113 | UsageError(" --compiler-backend=(Quick|QuickGBC|Portable): select compiler backend"); |
| 114 | UsageError(" set."); |
| 115 | UsageError(" Example: --instruction-set=Portable"); |
| 116 | UsageError(" Default: Quick"); |
Brian Carlstrom | cbfe6fe | 2012-02-17 11:13:36 -0800 | [diff] [blame] | 117 | UsageError(" --runtime-arg <argument>: used to specify various arguments for the runtime,"); |
| 118 | UsageError(" such as initial heap size, maximum heap size, and verbose output."); |
| 119 | UsageError(" Use a separate --runtime-arg switch for each argument."); |
| 120 | UsageError(" Example: --runtime-arg -Xms256m"); |
| 121 | UsageError(""); |
| 122 | std::cerr << "See log for usage error information\n"; |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 123 | exit(EXIT_FAILURE); |
| 124 | } |
| 125 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 126 | class Dex2Oat { |
| 127 | public: |
buzbee | c531cef | 2012-10-18 07:09:20 -0700 | [diff] [blame] | 128 | static bool Create(Dex2Oat** p_dex2oat, Runtime::Options& options, CompilerBackend compiler_backend, |
| 129 | InstructionSet instruction_set, size_t thread_count, bool support_debugging) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 130 | SHARED_TRYLOCK_FUNCTION(true, Locks::mutator_lock_) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 131 | if (!CreateRuntime(options, instruction_set)) { |
| 132 | *p_dex2oat = NULL; |
| 133 | return false; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 134 | } |
buzbee | c531cef | 2012-10-18 07:09:20 -0700 | [diff] [blame] | 135 | *p_dex2oat = new Dex2Oat(Runtime::Current(), compiler_backend, instruction_set, thread_count, |
| 136 | support_debugging); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 137 | return true; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 138 | } |
| 139 | |
| 140 | ~Dex2Oat() { |
| 141 | delete runtime_; |
Elliott Hughes | 5523ee0 | 2012-02-03 18:18:34 -0800 | [diff] [blame] | 142 | LOG(INFO) << "dex2oat took " << PrettyDuration(NanoTime() - start_ns_) << " (threads: " << thread_count_ << ")"; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | // Make a list of descriptors for classes to include in the image |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 146 | const std::set<std::string>* GetImageClassDescriptors(const char* image_classes_filename) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 147 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 148 | UniquePtr<std::ifstream> image_classes_file(new std::ifstream(image_classes_filename, std::ifstream::in)); |
| 149 | if (image_classes_file.get() == NULL) { |
| 150 | LOG(ERROR) << "Failed to open image classes file " << image_classes_filename; |
| 151 | return NULL; |
| 152 | } |
| 153 | |
Ian Rogers | 6f1dfe4 | 2011-12-08 17:28:34 -0800 | [diff] [blame] | 154 | // Load all the classes specified in the file |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 155 | ClassLinker* class_linker = runtime_->GetClassLinker(); |
Ian Rogers | 1f53934 | 2012-10-03 21:09:42 -0700 | [diff] [blame] | 156 | Thread* self = Thread::Current(); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 157 | while (image_classes_file->good()) { |
| 158 | std::string dot; |
| 159 | std::getline(*image_classes_file.get(), dot); |
Elliott Hughes | f1a5adc | 2012-02-10 18:09:35 -0800 | [diff] [blame] | 160 | if (StartsWith(dot, "#") || dot.empty()) { |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 161 | continue; |
| 162 | } |
Elliott Hughes | 9557241 | 2011-12-13 18:14:20 -0800 | [diff] [blame] | 163 | std::string descriptor(DotToDescriptor(dot.c_str())); |
Ian Rogers | 1f53934 | 2012-10-03 21:09:42 -0700 | [diff] [blame] | 164 | SirtRef<Class> klass(self, class_linker->FindSystemClass(descriptor.c_str())); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 165 | if (klass.get() == NULL) { |
| 166 | LOG(WARNING) << "Failed to find class " << descriptor; |
| 167 | Thread::Current()->ClearException(); |
| 168 | } |
| 169 | } |
| 170 | image_classes_file->close(); |
| 171 | |
Ian Rogers | 6f1dfe4 | 2011-12-08 17:28:34 -0800 | [diff] [blame] | 172 | // Resolve exception classes referenced by the loaded classes. The catch logic assumes |
| 173 | // exceptions are resolved by the verifier when there is a catch block in an interested method. |
| 174 | // Do this here so that exception classes appear to have been specified image classes. |
| 175 | std::set<std::pair<uint16_t, const DexFile*> > unresolved_exception_types; |
Ian Rogers | 1f53934 | 2012-10-03 21:09:42 -0700 | [diff] [blame] | 176 | SirtRef<Class> java_lang_Throwable(self, |
| 177 | class_linker->FindSystemClass("Ljava/lang/Throwable;")); |
Ian Rogers | 6f1dfe4 | 2011-12-08 17:28:34 -0800 | [diff] [blame] | 178 | do { |
| 179 | unresolved_exception_types.clear(); |
| 180 | class_linker->VisitClasses(ResolveCatchBlockExceptionsClassVisitor, |
| 181 | &unresolved_exception_types); |
| 182 | typedef std::set<std::pair<uint16_t, const DexFile*> >::const_iterator It; // TODO: C++0x auto |
| 183 | for (It it = unresolved_exception_types.begin(), |
| 184 | end = unresolved_exception_types.end(); |
| 185 | it != end; ++it) { |
| 186 | uint16_t exception_type_idx = it->first; |
| 187 | const DexFile* dex_file = it->second; |
| 188 | DexCache* dex_cache = class_linker->FindDexCache(*dex_file); |
| 189 | ClassLoader* class_loader = NULL; |
Ian Rogers | 1f53934 | 2012-10-03 21:09:42 -0700 | [diff] [blame] | 190 | SirtRef<Class> klass(self, class_linker->ResolveType(*dex_file, exception_type_idx, |
| 191 | dex_cache, class_loader)); |
Ian Rogers | 6f1dfe4 | 2011-12-08 17:28:34 -0800 | [diff] [blame] | 192 | if (klass.get() == NULL) { |
| 193 | const DexFile::TypeId& type_id = dex_file->GetTypeId(exception_type_idx); |
| 194 | const char* descriptor = dex_file->GetTypeDescriptor(type_id); |
| 195 | LOG(FATAL) << "Failed to resolve class " << descriptor; |
| 196 | } |
Elliott Hughes | 35be9b1 | 2012-05-29 17:59:26 -0700 | [diff] [blame] | 197 | DCHECK(java_lang_Throwable->IsAssignableFrom(klass.get())); |
Ian Rogers | 6f1dfe4 | 2011-12-08 17:28:34 -0800 | [diff] [blame] | 198 | } |
| 199 | // Resolving exceptions may load classes that reference more exceptions, iterate until no |
| 200 | // more are found |
| 201 | } while (!unresolved_exception_types.empty()); |
| 202 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 203 | // We walk the roots looking for classes so that we'll pick up the |
| 204 | // above classes plus any classes them depend on such super |
| 205 | // classes, interfaces, and the required ClassLinker roots. |
| 206 | UniquePtr<std::set<std::string> > image_classes(new std::set<std::string>()); |
Ian Rogers | 6f1dfe4 | 2011-12-08 17:28:34 -0800 | [diff] [blame] | 207 | class_linker->VisitClasses(RecordImageClassesVisitor, image_classes.get()); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 208 | CHECK_NE(image_classes->size(), 0U); |
| 209 | return image_classes.release(); |
| 210 | } |
| 211 | |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 212 | const Compiler* CreateOatFile(const std::string& boot_image_option, |
Brian Carlstrom | 34f1fa4 | 2012-04-05 18:28:12 -0700 | [diff] [blame] | 213 | const std::string* host_prefix, |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 214 | const std::vector<const DexFile*>& dex_files, |
| 215 | File* oat_file, |
Logan Chien | de08e84 | 2012-03-21 00:34:12 +0800 | [diff] [blame] | 216 | const std::string& bitcode_filename, |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 217 | bool image, |
Brian Carlstrom | ba0668e | 2012-03-26 13:14:07 -0700 | [diff] [blame] | 218 | const std::set<std::string>* image_classes, |
| 219 | bool dump_stats, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 220 | bool dump_timings) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 221 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 222 | // SirtRef and ClassLoader creation needs to come after Runtime::Create |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 223 | jobject class_loader = NULL; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 224 | if (!boot_image_option.empty()) { |
| 225 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 226 | std::vector<const DexFile*> class_path_files(dex_files); |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 227 | OpenClassPathFiles(runtime_->GetClassPathString(), class_path_files); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 228 | for (size_t i = 0; i < class_path_files.size(); i++) { |
| 229 | class_linker->RegisterDexFile(*class_path_files[i]); |
| 230 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 231 | ScopedObjectAccessUnchecked soa(Thread::Current()); |
| 232 | soa.Env()->AllocObject(WellKnownClasses::dalvik_system_PathClassLoader); |
| 233 | ScopedLocalRef<jobject> class_loader_local(soa.Env(), |
| 234 | soa.Env()->AllocObject(WellKnownClasses::dalvik_system_PathClassLoader)); |
| 235 | class_loader = soa.Env()->NewGlobalRef(class_loader_local.get()); |
| 236 | Runtime::Current()->SetCompileTimeClassPath(class_loader, class_path_files); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 237 | } |
| 238 | |
buzbee | c531cef | 2012-10-18 07:09:20 -0700 | [diff] [blame] | 239 | UniquePtr<Compiler> compiler(new Compiler(compiler_backend_, |
| 240 | instruction_set_, |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 241 | image, |
| 242 | thread_count_, |
| 243 | support_debugging_, |
Brian Carlstrom | ba0668e | 2012-03-26 13:14:07 -0700 | [diff] [blame] | 244 | image_classes, |
| 245 | dump_stats, |
| 246 | dump_timings)); |
Logan Chien | 8b977d3 | 2012-02-21 19:14:55 +0800 | [diff] [blame] | 247 | |
buzbee | c531cef | 2012-10-18 07:09:20 -0700 | [diff] [blame] | 248 | if ((compiler_backend_ == kPortable) || (compiler_backend_ == kIceland)) { |
| 249 | compiler->SetBitcodeFileName(bitcode_filename); |
| 250 | } |
Logan Chien | 8b977d3 | 2012-02-21 19:14:55 +0800 | [diff] [blame] | 251 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 252 | Thread::Current()->TransitionFromRunnableToSuspended(kNative); |
| 253 | |
| 254 | compiler->CompileAll(class_loader, dex_files); |
| 255 | |
| 256 | Thread::Current()->TransitionFromSuspendedToRunnable(); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 257 | |
Brian Carlstrom | 81f3ca1 | 2012-03-17 00:27:35 -0700 | [diff] [blame] | 258 | std::string image_file_location; |
Brian Carlstrom | 28db012 | 2012-10-18 16:20:41 -0700 | [diff] [blame] | 259 | uint32_t image_file_location_oat_checksum = 0; |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 260 | uint32_t image_file_location_oat_data_begin = 0; |
Brian Carlstrom | 81f3ca1 | 2012-03-17 00:27:35 -0700 | [diff] [blame] | 261 | Heap* heap = Runtime::Current()->GetHeap(); |
| 262 | if (heap->GetSpaces().size() > 1) { |
| 263 | ImageSpace* image_space = heap->GetImageSpace(); |
Brian Carlstrom | 28db012 | 2012-10-18 16:20:41 -0700 | [diff] [blame] | 264 | image_file_location_oat_checksum = image_space->GetImageHeader().GetOatChecksum(); |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 265 | image_file_location_oat_data_begin = reinterpret_cast<uint32_t>(image_space->GetImageHeader().GetOatDataBegin()); |
Brian Carlstrom | 81f3ca1 | 2012-03-17 00:27:35 -0700 | [diff] [blame] | 266 | image_file_location = image_space->GetImageFilename(); |
Brian Carlstrom | 34f1fa4 | 2012-04-05 18:28:12 -0700 | [diff] [blame] | 267 | if (host_prefix != NULL && StartsWith(image_file_location, host_prefix->c_str())) { |
| 268 | image_file_location = image_file_location.substr(host_prefix->size()); |
Brian Carlstrom | 81f3ca1 | 2012-03-17 00:27:35 -0700 | [diff] [blame] | 269 | } |
| 270 | } |
| 271 | |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 272 | std::vector<uint8_t> oat_contents; |
| 273 | VectorOutputStream vector_output_stream(oat_file->GetPath(), oat_contents); |
| 274 | if (!OatWriter::Create(vector_output_stream, |
Brian Carlstrom | 81f3ca1 | 2012-03-17 00:27:35 -0700 | [diff] [blame] | 275 | dex_files, |
Brian Carlstrom | 28db012 | 2012-10-18 16:20:41 -0700 | [diff] [blame] | 276 | image_file_location_oat_checksum, |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 277 | image_file_location_oat_data_begin, |
Brian Carlstrom | 81f3ca1 | 2012-03-17 00:27:35 -0700 | [diff] [blame] | 278 | image_file_location, |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 279 | *compiler.get())) { |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 280 | LOG(ERROR) << "Failed to create oat file " << oat_file->GetPath(); |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 281 | return NULL; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 282 | } |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 283 | |
| 284 | if (!compiler->WriteElf(oat_contents, oat_file)) { |
| 285 | LOG(ERROR) << "Failed to write ELF file " << oat_file->GetPath(); |
| 286 | return NULL; |
| 287 | } |
| 288 | |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 289 | return compiler.release(); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 290 | } |
| 291 | |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 292 | bool CreateImageFile(const std::string& image_filename, |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 293 | uintptr_t image_base, |
| 294 | const std::set<std::string>* image_classes, |
| 295 | const std::string& oat_filename, |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 296 | const std::string& oat_location, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 297 | const Compiler& compiler) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 298 | LOCKS_EXCLUDED(Locks::mutator_lock_) { |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 299 | uintptr_t oat_data_begin; |
| 300 | { |
| 301 | // ImageWriter is scoped so it can free memory before doing FixupElf |
| 302 | ImageWriter image_writer(image_classes); |
| 303 | if (!image_writer.Write(image_filename, image_base, oat_filename, oat_location, compiler)) { |
| 304 | LOG(ERROR) << "Failed to create image file " << image_filename; |
| 305 | return false; |
| 306 | } |
| 307 | oat_data_begin = image_writer.GetOatDataBegin(); |
| 308 | } |
| 309 | |
| 310 | LG << "dex2oat CreateImageFile opening : " << oat_filename; |
| 311 | UniquePtr<File> oat_file(OS::OpenFile(oat_filename.c_str(), true, false)); |
| 312 | LG << "dex2oat CreateImageFile opened : " << oat_filename; |
| 313 | if (oat_file.get() == NULL) { |
| 314 | PLOG(ERROR) << "Failed to open ELF file: " << oat_filename; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 315 | return false; |
| 316 | } |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 317 | if (!compiler.FixupElf(oat_file.get(), oat_data_begin)) { |
| 318 | LOG(ERROR) << "Failed to fixup ELF file " << oat_file->GetPath(); |
| 319 | return false; |
| 320 | } |
| 321 | LOG(ERROR) << "ELF file fixed up successfully: " << oat_file->GetPath(); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 322 | return true; |
| 323 | } |
| 324 | |
| 325 | private: |
buzbee | c531cef | 2012-10-18 07:09:20 -0700 | [diff] [blame] | 326 | explicit Dex2Oat(Runtime* runtime, CompilerBackend compiler_backend, InstructionSet instruction_set, |
| 327 | size_t thread_count, bool support_debugging) |
| 328 | : compiler_backend_(compiler_backend), |
| 329 | instruction_set_(instruction_set), |
Ian Rogers | 49c4894 | 2012-03-11 15:15:37 -0700 | [diff] [blame] | 330 | runtime_(runtime), |
Elliott Hughes | de6e4cf | 2012-02-27 14:46:06 -0800 | [diff] [blame] | 331 | thread_count_(thread_count), |
| 332 | support_debugging_(support_debugging), |
| 333 | start_ns_(NanoTime()) { |
Elliott Hughes | bb551fa | 2012-01-25 16:35:29 -0800 | [diff] [blame] | 334 | } |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 335 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 336 | static bool CreateRuntime(Runtime::Options& options, InstructionSet instruction_set) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 337 | SHARED_TRYLOCK_FUNCTION(true, Locks::mutator_lock_) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 338 | if (!Runtime::Create(options, false)) { |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 339 | LOG(ERROR) << "Failed to create runtime"; |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 340 | return false; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 341 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 342 | Runtime* runtime = Runtime::Current(); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 343 | // if we loaded an existing image, we will reuse values from the image roots. |
| 344 | if (!runtime->HasJniDlsymLookupStub()) { |
Ian Rogers | 49c4894 | 2012-03-11 15:15:37 -0700 | [diff] [blame] | 345 | runtime->SetJniDlsymLookupStub(Compiler::CreateJniDlsymLookupStub(instruction_set)); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 346 | } |
| 347 | if (!runtime->HasAbstractMethodErrorStubArray()) { |
Ian Rogers | 49c4894 | 2012-03-11 15:15:37 -0700 | [diff] [blame] | 348 | runtime->SetAbstractMethodErrorStubArray(Compiler::CreateAbstractMethodErrorStub(instruction_set)); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 349 | } |
| 350 | for (int i = 0; i < Runtime::kLastTrampolineMethodType; i++) { |
| 351 | Runtime::TrampolineType type = Runtime::TrampolineType(i); |
| 352 | if (!runtime->HasResolutionStubArray(type)) { |
Ian Rogers | 49c4894 | 2012-03-11 15:15:37 -0700 | [diff] [blame] | 353 | runtime->SetResolutionStubArray(Compiler::CreateResolutionStub(instruction_set, type), type); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 354 | } |
| 355 | } |
Ian Rogers | 1984651 | 2012-02-24 11:42:47 -0800 | [diff] [blame] | 356 | if (!runtime->HasResolutionMethod()) { |
| 357 | runtime->SetResolutionMethod(runtime->CreateResolutionMethod()); |
| 358 | } |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 359 | for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) { |
| 360 | Runtime::CalleeSaveType type = Runtime::CalleeSaveType(i); |
| 361 | if (!runtime->HasCalleeSaveMethod(type)) { |
Ian Rogers | 49c4894 | 2012-03-11 15:15:37 -0700 | [diff] [blame] | 362 | runtime->SetCalleeSaveMethod(runtime->CreateCalleeSaveMethod(instruction_set, type), type); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 363 | } |
| 364 | } |
Ian Rogers | 1984651 | 2012-02-24 11:42:47 -0800 | [diff] [blame] | 365 | runtime->GetClassLinker()->FixupDexCaches(runtime->GetResolutionMethod()); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 366 | return true; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 367 | } |
| 368 | |
Ian Rogers | 6f1dfe4 | 2011-12-08 17:28:34 -0800 | [diff] [blame] | 369 | static void ResolveExceptionsForMethod(MethodHelper* mh, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 370 | std::set<std::pair<uint16_t, const DexFile*> >& exceptions_to_resolve) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 371 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 6f1dfe4 | 2011-12-08 17:28:34 -0800 | [diff] [blame] | 372 | const DexFile::CodeItem* code_item = mh->GetCodeItem(); |
| 373 | if (code_item == NULL) { |
| 374 | return; // native or abstract method |
| 375 | } |
| 376 | if (code_item->tries_size_ == 0) { |
| 377 | return; // nothing to process |
| 378 | } |
| 379 | const byte* encoded_catch_handler_list = DexFile::GetCatchHandlerData(*code_item, 0); |
| 380 | size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&encoded_catch_handler_list); |
| 381 | for (size_t i = 0; i < num_encoded_catch_handlers; i++) { |
| 382 | int32_t encoded_catch_handler_size = DecodeSignedLeb128(&encoded_catch_handler_list); |
| 383 | bool has_catch_all = false; |
| 384 | if (encoded_catch_handler_size <= 0) { |
| 385 | encoded_catch_handler_size = -encoded_catch_handler_size; |
| 386 | has_catch_all = true; |
| 387 | } |
| 388 | for (int32_t j = 0; j < encoded_catch_handler_size; j++) { |
| 389 | uint16_t encoded_catch_handler_handlers_type_idx = |
| 390 | DecodeUnsignedLeb128(&encoded_catch_handler_list); |
| 391 | // Add to set of types to resolve if not already in the dex cache resolved types |
| 392 | if (!mh->IsResolvedTypeIdx(encoded_catch_handler_handlers_type_idx)) { |
| 393 | exceptions_to_resolve.insert( |
| 394 | std::pair<uint16_t, const DexFile*>(encoded_catch_handler_handlers_type_idx, |
| 395 | &mh->GetDexFile())); |
| 396 | } |
| 397 | // ignore address associated with catch handler |
| 398 | DecodeUnsignedLeb128(&encoded_catch_handler_list); |
| 399 | } |
| 400 | if (has_catch_all) { |
| 401 | // ignore catch all address |
| 402 | DecodeUnsignedLeb128(&encoded_catch_handler_list); |
| 403 | } |
| 404 | } |
| 405 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 406 | |
| 407 | static bool ResolveCatchBlockExceptionsClassVisitor(Class* c, void* arg) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 408 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Ian Rogers | 6f1dfe4 | 2011-12-08 17:28:34 -0800 | [diff] [blame] | 409 | std::set<std::pair<uint16_t, const DexFile*> >* exceptions_to_resolve = |
| 410 | reinterpret_cast<std::set<std::pair<uint16_t, const DexFile*> >*>(arg); |
| 411 | MethodHelper mh; |
| 412 | for (size_t i = 0; i < c->NumVirtualMethods(); ++i) { |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 413 | AbstractMethod* m = c->GetVirtualMethod(i); |
Ian Rogers | 6f1dfe4 | 2011-12-08 17:28:34 -0800 | [diff] [blame] | 414 | mh.ChangeMethod(m); |
| 415 | ResolveExceptionsForMethod(&mh, *exceptions_to_resolve); |
| 416 | } |
| 417 | for (size_t i = 0; i < c->NumDirectMethods(); ++i) { |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 418 | AbstractMethod* m = c->GetDirectMethod(i); |
Ian Rogers | 6f1dfe4 | 2011-12-08 17:28:34 -0800 | [diff] [blame] | 419 | mh.ChangeMethod(m); |
| 420 | ResolveExceptionsForMethod(&mh, *exceptions_to_resolve); |
| 421 | } |
| 422 | return true; |
| 423 | } |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 424 | |
| 425 | static bool RecordImageClassesVisitor(Class* klass, void* arg) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 426 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 427 | std::set<std::string>* image_classes = reinterpret_cast<std::set<std::string>*>(arg); |
| 428 | if (klass->IsArrayClass() || klass->IsPrimitive()) { |
Jesse Wilson | 254db0f | 2011-11-16 16:44:11 -0500 | [diff] [blame] | 429 | return true; |
| 430 | } |
Ian Rogers | 6d4d9fc | 2011-11-30 16:24:48 -0800 | [diff] [blame] | 431 | image_classes->insert(ClassHelper(klass).GetDescriptor()); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 432 | return true; |
Jesse Wilson | 254db0f | 2011-11-16 16:44:11 -0500 | [diff] [blame] | 433 | } |
Jesse Wilson | 254db0f | 2011-11-16 16:44:11 -0500 | [diff] [blame] | 434 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 435 | // Appends to dex_files any elements of class_path that it doesn't already |
| 436 | // contain. This will open those dex files as necessary. |
| 437 | static void OpenClassPathFiles(const std::string& class_path, std::vector<const DexFile*>& dex_files) { |
| 438 | std::vector<std::string> parsed; |
| 439 | Split(class_path, ':', parsed); |
| 440 | for (size_t i = 0; i < parsed.size(); ++i) { |
| 441 | if (DexFilesContains(dex_files, parsed[i])) { |
| 442 | continue; |
| 443 | } |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 444 | const DexFile* dex_file = DexFile::Open(parsed[i], parsed[i]); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 445 | if (dex_file == NULL) { |
| 446 | LOG(WARNING) << "Failed to open dex file " << parsed[i]; |
| 447 | } else { |
| 448 | dex_files.push_back(dex_file); |
| 449 | } |
Jesse Wilson | 254db0f | 2011-11-16 16:44:11 -0500 | [diff] [blame] | 450 | } |
| 451 | } |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 452 | |
| 453 | // Returns true if dex_files has a dex with the named location. |
| 454 | static bool DexFilesContains(const std::vector<const DexFile*>& dex_files, const std::string& location) { |
| 455 | for (size_t i = 0; i < dex_files.size(); ++i) { |
| 456 | if (dex_files[i]->GetLocation() == location) { |
| 457 | return true; |
| 458 | } |
| 459 | } |
| 460 | return false; |
| 461 | } |
| 462 | |
buzbee | c531cef | 2012-10-18 07:09:20 -0700 | [diff] [blame] | 463 | const CompilerBackend compiler_backend_; |
| 464 | |
Ian Rogers | 49c4894 | 2012-03-11 15:15:37 -0700 | [diff] [blame] | 465 | const InstructionSet instruction_set_; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 466 | |
Elliott Hughes | bb551fa | 2012-01-25 16:35:29 -0800 | [diff] [blame] | 467 | Runtime* runtime_; |
Elliott Hughes | 5523ee0 | 2012-02-03 18:18:34 -0800 | [diff] [blame] | 468 | size_t thread_count_; |
Elliott Hughes | de6e4cf | 2012-02-27 14:46:06 -0800 | [diff] [blame] | 469 | bool support_debugging_; |
Elliott Hughes | bb551fa | 2012-01-25 16:35:29 -0800 | [diff] [blame] | 470 | uint64_t start_ns_; |
| 471 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 472 | DISALLOW_IMPLICIT_CONSTRUCTORS(Dex2Oat); |
| 473 | }; |
Jesse Wilson | 254db0f | 2011-11-16 16:44:11 -0500 | [diff] [blame] | 474 | |
Elliott Hughes | 72395bf | 2012-04-24 13:45:26 -0700 | [diff] [blame] | 475 | static bool ParseInt(const char* in, int* out) { |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 476 | char* end; |
| 477 | int result = strtol(in, &end, 10); |
| 478 | if (in == end || *end != '\0') { |
| 479 | return false; |
| 480 | } |
| 481 | *out = result; |
| 482 | return true; |
| 483 | } |
| 484 | |
Elliott Hughes | bf1b457 | 2012-05-24 19:11:39 -0700 | [diff] [blame] | 485 | static size_t OpenDexFiles(const std::vector<const char*>& dex_filenames, |
| 486 | const std::vector<const char*>& dex_locations, |
| 487 | std::vector<const DexFile*>& dex_files) { |
| 488 | size_t failure_count = 0; |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 489 | for (size_t i = 0; i < dex_filenames.size(); i++) { |
| 490 | const char* dex_filename = dex_filenames[i]; |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 491 | const char* dex_location = dex_locations[i]; |
| 492 | const DexFile* dex_file = DexFile::Open(dex_filename, dex_location); |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 493 | if (dex_file == NULL) { |
jeffhao | 60f83e3 | 2012-02-13 17:16:30 -0800 | [diff] [blame] | 494 | LOG(WARNING) << "could not open .dex from file " << dex_filename; |
Elliott Hughes | bf1b457 | 2012-05-24 19:11:39 -0700 | [diff] [blame] | 495 | ++failure_count; |
jeffhao | 60f83e3 | 2012-02-13 17:16:30 -0800 | [diff] [blame] | 496 | } else { |
| 497 | dex_files.push_back(dex_file); |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 498 | } |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 499 | } |
Elliott Hughes | bf1b457 | 2012-05-24 19:11:39 -0700 | [diff] [blame] | 500 | return failure_count; |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 501 | } |
| 502 | |
Brian Carlstrom | bcc2926 | 2012-11-02 11:36:03 -0700 | [diff] [blame] | 503 | // The primary goal of the watchdog is to prevent stuck build servers |
| 504 | // during development when fatal aborts lead to a cascade of failures |
| 505 | // that result in a deadlock. |
| 506 | class WatchDog { |
| 507 | |
| 508 | // WatchDog defines its own CHECK_PTHREAD_CALL to avoid using Log which uses locks |
| 509 | #undef CHECK_PTHREAD_CALL |
| 510 | #define CHECK_WATCH_DOG_PTHREAD_CALL(call, args, what) \ |
| 511 | do { \ |
| 512 | int rc = call args; \ |
| 513 | if (rc != 0) { \ |
| 514 | errno = rc; \ |
| 515 | std::string message(# call); \ |
| 516 | message += " failed for "; \ |
| 517 | message += reason; \ |
| 518 | Die(message); \ |
| 519 | } \ |
| 520 | } while (false) |
| 521 | |
| 522 | public: |
Brian Carlstrom | 994d62a | 2012-11-05 20:43:45 -0800 | [diff] [blame] | 523 | WatchDog(bool is_watch_dog_enabled) { |
| 524 | is_watch_dog_enabled_ = is_watch_dog_enabled; |
| 525 | if (!is_watch_dog_enabled_) { |
Brian Carlstrom | bcc2926 | 2012-11-02 11:36:03 -0700 | [diff] [blame] | 526 | return; |
| 527 | } |
| 528 | shutting_down_ = false; |
| 529 | const char* reason = "dex2oat watch dog thread startup"; |
| 530 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_init, (&mutex_, NULL), reason); |
| 531 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_init, (&cond_, NULL), reason); |
| 532 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_attr_init, (&attr_), reason); |
| 533 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_create, (&pthread_, &attr_, &CallBack, this), reason); |
| 534 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_attr_destroy, (&attr_), reason); |
| 535 | } |
| 536 | ~WatchDog() { |
Brian Carlstrom | 994d62a | 2012-11-05 20:43:45 -0800 | [diff] [blame] | 537 | if (!is_watch_dog_enabled_) { |
Brian Carlstrom | bcc2926 | 2012-11-02 11:36:03 -0700 | [diff] [blame] | 538 | return; |
| 539 | } |
| 540 | const char* reason = "dex2oat watch dog thread shutdown"; |
| 541 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_lock, (&mutex_), reason); |
| 542 | shutting_down_ = true; |
| 543 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_signal, (&cond_), reason); |
| 544 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_unlock, (&mutex_), reason); |
| 545 | |
| 546 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_join, (pthread_, NULL), reason); |
| 547 | |
| 548 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_cond_destroy, (&cond_), reason); |
| 549 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_destroy, (&mutex_), reason); |
| 550 | } |
| 551 | |
| 552 | private: |
| 553 | static void* CallBack(void* arg) { |
| 554 | WatchDog* self = reinterpret_cast<WatchDog*>(arg); |
| 555 | self->Wait(); |
| 556 | return NULL; |
| 557 | } |
| 558 | |
| 559 | static void Die(const std::string& message) { |
| 560 | // TODO: Switch to LOG(FATAL) when we can guarantee it won't prevent shutdown in error cases |
| 561 | fprintf(stderr, "%s\n", message.c_str()); |
| 562 | exit(1); |
| 563 | } |
| 564 | |
| 565 | void Wait() { |
| 566 | int64_t ms = kWatchDogTimeoutSeconds * 1000; |
| 567 | int32_t ns = 0; |
| 568 | timespec ts; |
| 569 | InitTimeSpec(true, CLOCK_REALTIME, ms, ns, &ts); |
| 570 | const char* reason = "dex2oat watch dog thread waiting"; |
| 571 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_lock, (&mutex_), reason); |
| 572 | while (!shutting_down_) { |
| 573 | int rc = TEMP_FAILURE_RETRY(pthread_cond_timedwait(&cond_, &mutex_, &ts)); |
| 574 | if (rc == ETIMEDOUT) { |
| 575 | std::string message(StringPrintf("dex2oat did not finish after %d seconds", |
| 576 | kWatchDogTimeoutSeconds)); |
| 577 | Die(message.c_str()); |
| 578 | } |
| 579 | if (rc != 0) { |
| 580 | std::string message(StringPrintf("pthread_cond_timedwait failed: %s", |
| 581 | strerror(errno))); |
| 582 | Die(message.c_str()); |
| 583 | } |
| 584 | } |
| 585 | CHECK_WATCH_DOG_PTHREAD_CALL(pthread_mutex_unlock, (&mutex_), reason); |
| 586 | } |
| 587 | |
Brian Carlstrom | bcc2926 | 2012-11-02 11:36:03 -0700 | [diff] [blame] | 588 | #ifdef ART_USE_LLVM_COMPILER |
| 589 | static const unsigned int kWatchDogTimeoutSeconds = 20 * 60; // 15 minutes + buffer |
| 590 | #else |
| 591 | static const unsigned int kWatchDogTimeoutSeconds = 2 * 60; // 1 minute + buffer |
| 592 | #endif |
| 593 | |
Brian Carlstrom | 994d62a | 2012-11-05 20:43:45 -0800 | [diff] [blame] | 594 | bool is_watch_dog_enabled_; |
Brian Carlstrom | bcc2926 | 2012-11-02 11:36:03 -0700 | [diff] [blame] | 595 | bool shutting_down_; |
| 596 | // TODO: Switch to Mutex when we can guarantee it won't prevent shutdown in error cases |
| 597 | pthread_mutex_t mutex_; |
| 598 | pthread_cond_t cond_; |
| 599 | pthread_attr_t attr_; |
| 600 | pthread_t pthread_; |
| 601 | }; |
| 602 | |
Elliott Hughes | 72395bf | 2012-04-24 13:45:26 -0700 | [diff] [blame] | 603 | static int dex2oat(int argc, char** argv) { |
Elliott Hughes | 0d39c12 | 2012-06-06 16:41:17 -0700 | [diff] [blame] | 604 | InitLogging(argv); |
Elliott Hughes | 72395bf | 2012-04-24 13:45:26 -0700 | [diff] [blame] | 605 | |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 606 | // Skip over argv[0]. |
| 607 | argv++; |
| 608 | argc--; |
| 609 | |
| 610 | if (argc == 0) { |
Brian Carlstrom | cbfe6fe | 2012-02-17 11:13:36 -0800 | [diff] [blame] | 611 | Usage("no arguments specified"); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 612 | } |
| 613 | |
| 614 | std::vector<const char*> dex_filenames; |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 615 | std::vector<const char*> dex_locations; |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 616 | int zip_fd = -1; |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 617 | std::string zip_location; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 618 | std::string oat_filename; |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 619 | std::string oat_location; |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 620 | int oat_fd = -1; |
Logan Chien | 8b977d3 | 2012-02-21 19:14:55 +0800 | [diff] [blame] | 621 | std::string bitcode_filename; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 622 | const char* image_classes_filename = NULL; |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 623 | std::string image_filename; |
Brian Carlstrom | b001126 | 2011-12-09 12:17:24 -0800 | [diff] [blame] | 624 | std::string boot_image_filename; |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 625 | uintptr_t image_base = 0; |
Brian Carlstrom | 34f1fa4 | 2012-04-05 18:28:12 -0700 | [diff] [blame] | 626 | UniquePtr<std::string> host_prefix; |
jeffhao | 5d84040 | 2011-10-24 17:09:45 -0700 | [diff] [blame] | 627 | std::vector<const char*> runtime_args; |
Elliott Hughes | 5c59994 | 2012-06-13 16:45:05 -0700 | [diff] [blame] | 628 | int thread_count = sysconf(_SC_NPROCESSORS_CONF); |
Elliott Hughes | de6e4cf | 2012-02-27 14:46:06 -0800 | [diff] [blame] | 629 | bool support_debugging = false; |
buzbee | c531cef | 2012-10-18 07:09:20 -0700 | [diff] [blame] | 630 | #if defined(ART_USE_PORTABLE_COMPILER) |
| 631 | CompilerBackend compiler_backend = kPortable; |
| 632 | #elif defined(ART_USE_LLVM_COMPILER) |
| 633 | CompilerBackend compiler_backend = kIceland; |
| 634 | #else |
| 635 | CompilerBackend compiler_backend = kQuick; |
| 636 | #endif |
jeffhao | 9ad4f22 | 2012-05-30 18:51:19 -0700 | [diff] [blame] | 637 | #if defined(__arm__) |
Ian Rogers | 49c4894 | 2012-03-11 15:15:37 -0700 | [diff] [blame] | 638 | InstructionSet instruction_set = kThumb2; |
jeffhao | 9ad4f22 | 2012-05-30 18:51:19 -0700 | [diff] [blame] | 639 | #elif defined(__i386__) |
| 640 | InstructionSet instruction_set = kX86; |
| 641 | #elif defined(__mips__) |
| 642 | InstructionSet instruction_set = kMips; |
| 643 | #else |
| 644 | #error "Unsupported architecture" |
| 645 | #endif |
Elliott Hughes | 67d9200 | 2012-03-26 15:08:51 -0700 | [diff] [blame] | 646 | bool dump_stats = kIsDebugBuild; |
| 647 | bool dump_timings = kIsDebugBuild; |
Brian Carlstrom | 994d62a | 2012-11-05 20:43:45 -0800 | [diff] [blame] | 648 | bool watch_dog_enabled = !kIsTargetBuild; |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 649 | |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 650 | for (int i = 0; i < argc; i++) { |
| 651 | const StringPiece option(argv[i]); |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 652 | bool log_options = false; |
| 653 | if (log_options) { |
Brian Carlstrom | b7bbba4 | 2011-10-13 14:58:47 -0700 | [diff] [blame] | 654 | LOG(INFO) << "dex2oat: option[" << i << "]=" << argv[i]; |
| 655 | } |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 656 | if (option.starts_with("--dex-file=")) { |
| 657 | dex_filenames.push_back(option.substr(strlen("--dex-file=")).data()); |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 658 | } else if (option.starts_with("--dex-location=")) { |
| 659 | dex_locations.push_back(option.substr(strlen("--dex-location=")).data()); |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 660 | } else if (option.starts_with("--zip-fd=")) { |
| 661 | const char* zip_fd_str = option.substr(strlen("--zip-fd=")).data(); |
Elliott Hughes | bb551fa | 2012-01-25 16:35:29 -0800 | [diff] [blame] | 662 | if (!ParseInt(zip_fd_str, &zip_fd)) { |
Brian Carlstrom | cbfe6fe | 2012-02-17 11:13:36 -0800 | [diff] [blame] | 663 | Usage("could not parse --zip-fd argument '%s' as an integer", zip_fd_str); |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 664 | } |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 665 | } else if (option.starts_with("--zip-location=")) { |
| 666 | zip_location = option.substr(strlen("--zip-location=")).data(); |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 667 | } else if (option.starts_with("--oat-file=")) { |
| 668 | oat_filename = option.substr(strlen("--oat-file=")).data(); |
| 669 | } else if (option.starts_with("--oat-fd=")) { |
| 670 | const char* oat_fd_str = option.substr(strlen("--oat-fd=")).data(); |
Elliott Hughes | bb551fa | 2012-01-25 16:35:29 -0800 | [diff] [blame] | 671 | if (!ParseInt(oat_fd_str, &oat_fd)) { |
Brian Carlstrom | cbfe6fe | 2012-02-17 11:13:36 -0800 | [diff] [blame] | 672 | Usage("could not parse --oat-fd argument '%s' as an integer", oat_fd_str); |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 673 | } |
Brian Carlstrom | 994d62a | 2012-11-05 20:43:45 -0800 | [diff] [blame] | 674 | } else if (option == "-g") { |
Elliott Hughes | de6e4cf | 2012-02-27 14:46:06 -0800 | [diff] [blame] | 675 | support_debugging = true; |
Brian Carlstrom | 994d62a | 2012-11-05 20:43:45 -0800 | [diff] [blame] | 676 | } else if (option == "--watch-dog") { |
| 677 | watch_dog_enabled = true; |
| 678 | } else if (option == "--no-watch-dog") { |
| 679 | watch_dog_enabled = false; |
Elliott Hughes | 5523ee0 | 2012-02-03 18:18:34 -0800 | [diff] [blame] | 680 | } else if (option.starts_with("-j")) { |
Brian Carlstrom | b12552a | 2012-02-04 17:17:31 -0800 | [diff] [blame] | 681 | const char* thread_count_str = option.substr(strlen("-j")).data(); |
Elliott Hughes | 5523ee0 | 2012-02-03 18:18:34 -0800 | [diff] [blame] | 682 | if (!ParseInt(thread_count_str, &thread_count)) { |
Brian Carlstrom | cbfe6fe | 2012-02-17 11:13:36 -0800 | [diff] [blame] | 683 | Usage("could not parse -j argument '%s' as an integer", thread_count_str); |
Elliott Hughes | 5523ee0 | 2012-02-03 18:18:34 -0800 | [diff] [blame] | 684 | } |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 685 | } else if (option.starts_with("--oat-location=")) { |
| 686 | oat_location = option.substr(strlen("--oat-location=")).data(); |
Logan Chien | 8b977d3 | 2012-02-21 19:14:55 +0800 | [diff] [blame] | 687 | } else if (option.starts_with("--bitcode=")) { |
| 688 | bitcode_filename = option.substr(strlen("--bitcode=")).data(); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 689 | } else if (option.starts_with("--image=")) { |
| 690 | image_filename = option.substr(strlen("--image=")).data(); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 691 | } else if (option.starts_with("--image-classes=")) { |
| 692 | image_classes_filename = option.substr(strlen("--image-classes=")).data(); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 693 | } else if (option.starts_with("--base=")) { |
| 694 | const char* image_base_str = option.substr(strlen("--base=")).data(); |
| 695 | char* end; |
| 696 | image_base = strtoul(image_base_str, &end, 16); |
| 697 | if (end == image_base_str || *end != '\0') { |
Brian Carlstrom | cbfe6fe | 2012-02-17 11:13:36 -0800 | [diff] [blame] | 698 | Usage("Failed to parse hexadecimal value for option %s", option.data()); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 699 | } |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 700 | } else if (option.starts_with("--boot-image=")) { |
Brian Carlstrom | b001126 | 2011-12-09 12:17:24 -0800 | [diff] [blame] | 701 | boot_image_filename = option.substr(strlen("--boot-image=")).data(); |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 702 | } else if (option.starts_with("--host-prefix=")) { |
Brian Carlstrom | 34f1fa4 | 2012-04-05 18:28:12 -0700 | [diff] [blame] | 703 | host_prefix.reset(new std::string(option.substr(strlen("--host-prefix=")).data())); |
Ian Rogers | 49c4894 | 2012-03-11 15:15:37 -0700 | [diff] [blame] | 704 | } else if (option.starts_with("--instruction-set=")) { |
| 705 | StringPiece instruction_set_str = option.substr(strlen("--instruction-set=")).data(); |
jeffhao | 1f71ae8 | 2012-05-24 16:08:24 -0700 | [diff] [blame] | 706 | if (instruction_set_str == "arm") { |
Ian Rogers | 49c4894 | 2012-03-11 15:15:37 -0700 | [diff] [blame] | 707 | instruction_set = kThumb2; |
jeffhao | 1f71ae8 | 2012-05-24 16:08:24 -0700 | [diff] [blame] | 708 | } else if (instruction_set_str == "mips") { |
Ian Rogers | 49c4894 | 2012-03-11 15:15:37 -0700 | [diff] [blame] | 709 | instruction_set = kMips; |
jeffhao | 1f71ae8 | 2012-05-24 16:08:24 -0700 | [diff] [blame] | 710 | } else if (instruction_set_str == "x86") { |
Ian Rogers | 49c4894 | 2012-03-11 15:15:37 -0700 | [diff] [blame] | 711 | instruction_set = kX86; |
| 712 | } |
buzbee | c531cef | 2012-10-18 07:09:20 -0700 | [diff] [blame] | 713 | } else if (option.starts_with("--compiler-backend=")) { |
| 714 | StringPiece backend_str = option.substr(strlen("--compiler-backend=")).data(); |
| 715 | if (backend_str == "Quick") { |
| 716 | compiler_backend = kQuick; |
| 717 | } else if (backend_str == "QuickGBC") { |
| 718 | compiler_backend = kQuickGBC; |
| 719 | } else if (backend_str == "Iceland") { |
| 720 | // TODO: remove this when Portable/Iceland merge complete |
| 721 | compiler_backend = kIceland; |
| 722 | } else if (backend_str == "Portable") { |
| 723 | compiler_backend = kPortable; |
| 724 | } |
jeffhao | 5d84040 | 2011-10-24 17:09:45 -0700 | [diff] [blame] | 725 | } else if (option == "--runtime-arg") { |
| 726 | if (++i >= argc) { |
Brian Carlstrom | cbfe6fe | 2012-02-17 11:13:36 -0800 | [diff] [blame] | 727 | Usage("Missing required argument for --runtime-arg"); |
jeffhao | 5d84040 | 2011-10-24 17:09:45 -0700 | [diff] [blame] | 728 | } |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 729 | if (log_options) { |
| 730 | LOG(INFO) << "dex2oat: option[" << i << "]=" << argv[i]; |
| 731 | } |
jeffhao | 5d84040 | 2011-10-24 17:09:45 -0700 | [diff] [blame] | 732 | runtime_args.push_back(argv[i]); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 733 | } else { |
Brian Carlstrom | cbfe6fe | 2012-02-17 11:13:36 -0800 | [diff] [blame] | 734 | Usage("unknown argument %s", option.data()); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 735 | } |
| 736 | } |
| 737 | |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 738 | if (oat_filename.empty() && oat_fd == -1) { |
Brian Carlstrom | cbfe6fe | 2012-02-17 11:13:36 -0800 | [diff] [blame] | 739 | Usage("Output must be supplied with either --oat-file or --oat-fd"); |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 740 | } |
| 741 | |
| 742 | if (!oat_filename.empty() && oat_fd != -1) { |
Brian Carlstrom | cbfe6fe | 2012-02-17 11:13:36 -0800 | [diff] [blame] | 743 | Usage("--oat-file should not be used with --oat-fd"); |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 744 | } |
| 745 | |
| 746 | if (!oat_filename.empty() && oat_fd != -1) { |
Brian Carlstrom | cbfe6fe | 2012-02-17 11:13:36 -0800 | [diff] [blame] | 747 | Usage("--oat-file should not be used with --oat-fd"); |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 748 | } |
| 749 | |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 750 | if (oat_fd != -1 && !image_filename.empty()) { |
Brian Carlstrom | cbfe6fe | 2012-02-17 11:13:36 -0800 | [diff] [blame] | 751 | Usage("--oat-fd should not be used with --image"); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 752 | } |
| 753 | |
Brian Carlstrom | 34f1fa4 | 2012-04-05 18:28:12 -0700 | [diff] [blame] | 754 | if (host_prefix.get() == NULL) { |
Brian Carlstrom | b001126 | 2011-12-09 12:17:24 -0800 | [diff] [blame] | 755 | const char* android_product_out = getenv("ANDROID_PRODUCT_OUT"); |
| 756 | if (android_product_out != NULL) { |
Brian Carlstrom | 34f1fa4 | 2012-04-05 18:28:12 -0700 | [diff] [blame] | 757 | host_prefix.reset(new std::string(android_product_out)); |
Brian Carlstrom | b001126 | 2011-12-09 12:17:24 -0800 | [diff] [blame] | 758 | } |
| 759 | } |
| 760 | |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 761 | bool image = (!image_filename.empty()); |
Brian Carlstrom | b001126 | 2011-12-09 12:17:24 -0800 | [diff] [blame] | 762 | if (!image && boot_image_filename.empty()) { |
Brian Carlstrom | 34f1fa4 | 2012-04-05 18:28:12 -0700 | [diff] [blame] | 763 | if (host_prefix.get() == NULL) { |
Brian Carlstrom | a56fcd6 | 2012-02-04 21:23:01 -0800 | [diff] [blame] | 764 | boot_image_filename += GetAndroidRoot(); |
| 765 | } else { |
Brian Carlstrom | 34f1fa4 | 2012-04-05 18:28:12 -0700 | [diff] [blame] | 766 | boot_image_filename += *host_prefix.get(); |
Brian Carlstrom | a56fcd6 | 2012-02-04 21:23:01 -0800 | [diff] [blame] | 767 | boot_image_filename += "/system"; |
| 768 | } |
| 769 | boot_image_filename += "/framework/boot.art"; |
Brian Carlstrom | b001126 | 2011-12-09 12:17:24 -0800 | [diff] [blame] | 770 | } |
| 771 | std::string boot_image_option; |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 772 | if (!boot_image_filename.empty()) { |
Brian Carlstrom | b001126 | 2011-12-09 12:17:24 -0800 | [diff] [blame] | 773 | boot_image_option += "-Ximage:"; |
| 774 | boot_image_option += boot_image_filename; |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 775 | } |
| 776 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 777 | if (image_classes_filename != NULL && !image) { |
Brian Carlstrom | cbfe6fe | 2012-02-17 11:13:36 -0800 | [diff] [blame] | 778 | Usage("--image-classes should only be used with --image"); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 779 | } |
| 780 | |
| 781 | if (image_classes_filename != NULL && !boot_image_option.empty()) { |
Brian Carlstrom | cbfe6fe | 2012-02-17 11:13:36 -0800 | [diff] [blame] | 782 | Usage("--image-classes should not be used with --boot-image"); |
Brian Carlstrom | 78128a6 | 2011-09-15 17:21:19 -0700 | [diff] [blame] | 783 | } |
| 784 | |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 785 | if (dex_filenames.empty() && zip_fd == -1) { |
Brian Carlstrom | cbfe6fe | 2012-02-17 11:13:36 -0800 | [diff] [blame] | 786 | Usage("Input must be supplied with either --dex-file or --zip-fd"); |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 787 | } |
| 788 | |
| 789 | if (!dex_filenames.empty() && zip_fd != -1) { |
Brian Carlstrom | cbfe6fe | 2012-02-17 11:13:36 -0800 | [diff] [blame] | 790 | Usage("--dex-file should not be used with --zip-fd"); |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 791 | } |
| 792 | |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 793 | if (!dex_filenames.empty() && !zip_location.empty()) { |
Brian Carlstrom | cbfe6fe | 2012-02-17 11:13:36 -0800 | [diff] [blame] | 794 | Usage("--dex-file should not be used with --zip-location"); |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 795 | } |
| 796 | |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 797 | if (dex_locations.empty()) { |
| 798 | for (size_t i = 0; i < dex_filenames.size(); i++) { |
| 799 | dex_locations.push_back(dex_filenames[i]); |
| 800 | } |
| 801 | } else if (dex_locations.size() != dex_filenames.size()) { |
Brian Carlstrom | cbfe6fe | 2012-02-17 11:13:36 -0800 | [diff] [blame] | 802 | Usage("--dex-location arguments do not match --dex-file arguments"); |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 803 | } |
| 804 | |
| 805 | if (zip_fd != -1 && zip_location.empty()) { |
Brian Carlstrom | cbfe6fe | 2012-02-17 11:13:36 -0800 | [diff] [blame] | 806 | Usage("--zip-location should be supplied with --zip-fd"); |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 807 | } |
| 808 | |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 809 | if (boot_image_option.empty()) { |
| 810 | if (image_base == 0) { |
Brian Carlstrom | cbfe6fe | 2012-02-17 11:13:36 -0800 | [diff] [blame] | 811 | Usage("non-zero --base not specified"); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 812 | } |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 813 | } |
| 814 | |
Brian Carlstrom | 994d62a | 2012-11-05 20:43:45 -0800 | [diff] [blame] | 815 | // Done with usage checks, enable watchdog if requested |
| 816 | WatchDog watch_dog(watch_dog_enabled); |
| 817 | |
Brian Carlstrom | 6ef827a | 2011-12-11 14:57:47 -0800 | [diff] [blame] | 818 | // Check early that the result of compilation can be written |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 819 | UniquePtr<File> oat_file; |
Brian Carlstrom | 6cd40e5 | 2012-05-03 14:15:11 -0700 | [diff] [blame] | 820 | bool create_file = !oat_filename.empty(); // as opposed to using open file descriptor |
| 821 | if (create_file) { |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 822 | oat_file.reset(OS::OpenFile(oat_filename.c_str(), true)); |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 823 | if (oat_location.empty()) { |
| 824 | oat_location = oat_filename; |
| 825 | } |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 826 | } else { |
Elliott Hughes | 7616005 | 2012-12-12 16:31:20 -0800 | [diff] [blame] | 827 | oat_file.reset(new File(oat_fd, oat_location)); |
| 828 | oat_file->DisableAutoClose(); |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 829 | } |
Brian Carlstrom | 6ef827a | 2011-12-11 14:57:47 -0800 | [diff] [blame] | 830 | if (oat_file.get() == NULL) { |
Brian Carlstrom | 6cd40e5 | 2012-05-03 14:15:11 -0700 | [diff] [blame] | 831 | PLOG(ERROR) << "Failed to create oat file: " << oat_location; |
| 832 | return EXIT_FAILURE; |
| 833 | } |
| 834 | if (create_file && fchmod(oat_file->Fd(), 0644) != 0) { |
| 835 | PLOG(ERROR) << "Failed to make oat file world readable: " << oat_location; |
Brian Carlstrom | 6ef827a | 2011-12-11 14:57:47 -0800 | [diff] [blame] | 836 | return EXIT_FAILURE; |
Ian Rogers | 5e863dd | 2011-11-02 20:00:10 -0700 | [diff] [blame] | 837 | } |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 838 | |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 839 | LOG(INFO) << "dex2oat: " << oat_location; |
Ian Rogers | 5e863dd | 2011-11-02 20:00:10 -0700 | [diff] [blame] | 840 | |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 841 | Runtime::Options options; |
Brian Carlstrom | 5de8fe5 | 2011-10-16 14:10:09 -0700 | [diff] [blame] | 842 | options.push_back(std::make_pair("compiler", reinterpret_cast<void*>(NULL))); |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 843 | std::vector<const DexFile*> boot_class_path; |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 844 | if (boot_image_option.empty()) { |
Elliott Hughes | bf1b457 | 2012-05-24 19:11:39 -0700 | [diff] [blame] | 845 | size_t failure_count = OpenDexFiles(dex_filenames, dex_locations, boot_class_path); |
| 846 | if (failure_count > 0) { |
| 847 | LOG(ERROR) << "Failed to open some dex files: " << failure_count; |
| 848 | return EXIT_FAILURE; |
| 849 | } |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 850 | options.push_back(std::make_pair("bootclasspath", &boot_class_path)); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 851 | } else { |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 852 | options.push_back(std::make_pair(boot_image_option.c_str(), reinterpret_cast<void*>(NULL))); |
| 853 | } |
Brian Carlstrom | 34f1fa4 | 2012-04-05 18:28:12 -0700 | [diff] [blame] | 854 | if (host_prefix.get() != NULL) { |
| 855 | options.push_back(std::make_pair("host-prefix", host_prefix->c_str())); |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 856 | } |
jeffhao | 5d84040 | 2011-10-24 17:09:45 -0700 | [diff] [blame] | 857 | for (size_t i = 0; i < runtime_args.size(); i++) { |
| 858 | options.push_back(std::make_pair(runtime_args[i], reinterpret_cast<void*>(NULL))); |
| 859 | } |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 860 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 861 | Dex2Oat* p_dex2oat; |
buzbee | c531cef | 2012-10-18 07:09:20 -0700 | [diff] [blame] | 862 | if (!Dex2Oat::Create(&p_dex2oat, options, compiler_backend, instruction_set, thread_count, support_debugging)) { |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 863 | LOG(ERROR) << "Failed to create dex2oat"; |
| 864 | return EXIT_FAILURE; |
| 865 | } |
| 866 | UniquePtr<Dex2Oat> dex2oat(p_dex2oat); |
| 867 | // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start, |
| 868 | // give it away now and then switch to a more managable ScopedObjectAccess. |
| 869 | Thread::Current()->TransitionFromRunnableToSuspended(kNative); |
| 870 | // Whilst we're in native take the opportunity to initialize well known classes. |
| 871 | WellKnownClasses::InitClasses(Thread::Current()->GetJniEnv()); |
| 872 | ScopedObjectAccess soa(Thread::Current()); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 873 | |
Elliott Hughes | bb551fa | 2012-01-25 16:35:29 -0800 | [diff] [blame] | 874 | // If --image-classes was specified, calculate the full list of classes to include in the image |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 875 | UniquePtr<const std::set<std::string> > image_classes(NULL); |
| 876 | if (image_classes_filename != NULL) { |
| 877 | image_classes.reset(dex2oat->GetImageClassDescriptors(image_classes_filename)); |
| 878 | if (image_classes.get() == NULL) { |
| 879 | LOG(ERROR) << "Failed to create list of image classes from " << image_classes_filename; |
| 880 | return EXIT_FAILURE; |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 881 | } |
| 882 | } |
| 883 | |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 884 | std::vector<const DexFile*> dex_files; |
| 885 | if (boot_image_option.empty()) { |
| 886 | dex_files = Runtime::Current()->GetClassLinker()->GetBootClassPath(); |
| 887 | } else { |
| 888 | if (dex_filenames.empty()) { |
| 889 | UniquePtr<ZipArchive> zip_archive(ZipArchive::OpenFromFd(zip_fd)); |
| 890 | if (zip_archive.get() == NULL) { |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 891 | LOG(ERROR) << "Failed to zip from file descriptor for " << zip_location; |
Brian Carlstrom | 2e3d1b2 | 2012-01-09 18:01:56 -0800 | [diff] [blame] | 892 | return EXIT_FAILURE; |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 893 | } |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 894 | const DexFile* dex_file = DexFile::Open(*zip_archive.get(), zip_location); |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 895 | if (dex_file == NULL) { |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 896 | LOG(ERROR) << "Failed to open dex from file descriptor for zip file: " << zip_location; |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 897 | return EXIT_FAILURE; |
| 898 | } |
| 899 | dex_files.push_back(dex_file); |
| 900 | } else { |
Elliott Hughes | bf1b457 | 2012-05-24 19:11:39 -0700 | [diff] [blame] | 901 | size_t failure_count = OpenDexFiles(dex_filenames, dex_locations, dex_files); |
| 902 | if (failure_count > 0) { |
| 903 | LOG(ERROR) << "Failed to open some dex files: " << failure_count; |
| 904 | return EXIT_FAILURE; |
| 905 | } |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 906 | } |
| 907 | } |
| 908 | |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 909 | UniquePtr<const Compiler> compiler(dex2oat->CreateOatFile(boot_image_option, |
Brian Carlstrom | 34f1fa4 | 2012-04-05 18:28:12 -0700 | [diff] [blame] | 910 | host_prefix.get(), |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 911 | dex_files, |
| 912 | oat_file.get(), |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 913 | bitcode_filename, |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 914 | image, |
Brian Carlstrom | ba0668e | 2012-03-26 13:14:07 -0700 | [diff] [blame] | 915 | image_classes.get(), |
| 916 | dump_stats, |
| 917 | dump_timings)); |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 918 | |
| 919 | if (compiler.get() == NULL) { |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 920 | LOG(ERROR) << "Failed to create oat file: " << oat_location; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 921 | return EXIT_FAILURE; |
| 922 | } |
| 923 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 924 | if (!image) { |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 925 | LOG(INFO) << "Oat file written successfully: " << oat_location; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 926 | return EXIT_SUCCESS; |
| 927 | } |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 928 | |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 929 | // Notes on the interleaving of creating the image and oat file to |
| 930 | // ensure the references between the two are correct. |
| 931 | // |
| 932 | // Currently we have a memory layout that looks something like this: |
| 933 | // |
| 934 | // +--------------+ |
| 935 | // | image | |
| 936 | // +--------------+ |
| 937 | // | boot oat | |
| 938 | // +--------------+ |
| 939 | // | alloc spaces | |
| 940 | // +--------------+ |
| 941 | // |
| 942 | // There are several constraints on the loading of the imag and boot.oat. |
| 943 | // |
| 944 | // 1. The image is expected to be loaded at an absolute address and |
| 945 | // contains Objects with absolute pointers within the image. |
| 946 | // |
| 947 | // 2. There are absolute pointers from Methods in the image to their |
| 948 | // code in the oat. |
| 949 | // |
| 950 | // 3. There are absolute pointers from the code in the oat to Methods |
| 951 | // in the image. |
| 952 | // |
| 953 | // 4. There are absolute pointers from code in the oat to other code |
| 954 | // in the oat. |
| 955 | // |
| 956 | // To get this all correct, we go through several steps. |
| 957 | // |
| 958 | // 1. We have already created that oat file above with |
| 959 | // CreateOatFile. Originally this was just our own proprietary file |
| 960 | // but now it is contained within an ELF dynamic object (aka .so |
| 961 | // file). The Compiler returned by CreateOatFile provides |
| 962 | // PatchInformation for references to oat code and Methods that need |
| 963 | // to be update once we know where the oat file will be located |
| 964 | // after the image. |
| 965 | // |
| 966 | // 2. We create the image file. It needs to know where the oat file |
| 967 | // will be loaded after itself. Originally when oat file was simply |
| 968 | // memory mapped so we could predict where its contents were based |
| 969 | // on the file size. Now that it is an ELF file, we need to inspect |
| 970 | // the ELF file to understand the in memory segment layout including |
| 971 | // where the oat header is located within. ImageWriter's |
| 972 | // PatchOatCodeAndMethods uses the PatchInformation from the |
| 973 | // Compiler to touch up absolute references in the oat file. |
| 974 | // |
| 975 | // 3. We fixup the ELF program headers so that dlopen will try to |
| 976 | // load the .so at the desired location at runtime by offsetting the |
| 977 | // Elf32_Phdr.p_vaddr values by the desired base address. |
| 978 | // |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 979 | Thread::Current()->TransitionFromRunnableToSuspended(kNative); |
| 980 | bool image_creation_success = dex2oat->CreateImageFile(image_filename, |
| 981 | image_base, |
| 982 | image_classes.get(), |
| 983 | oat_filename, |
| 984 | oat_location, |
| 985 | *compiler.get()); |
| 986 | Thread::Current()->TransitionFromSuspendedToRunnable(); |
| 987 | if (!image_creation_success) { |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 988 | return EXIT_FAILURE; |
| 989 | } |
| 990 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 991 | // We wrote the oat file successfully, and want to keep it. |
Elliott Hughes | bb551fa | 2012-01-25 16:35:29 -0800 | [diff] [blame] | 992 | LOG(INFO) << "Oat file written successfully: " << oat_filename; |
| 993 | LOG(INFO) << "Image written successfully: " << image_filename; |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 994 | return EXIT_SUCCESS; |
| 995 | } |
| 996 | |
| 997 | } // namespace art |
| 998 | |
| 999 | int main(int argc, char** argv) { |
| 1000 | return art::dex2oat(argc, argv); |
| 1001 | } |