OSDN Git Service

add dalvik.system.VMRuntime.vmLibrary implementation for Dalvik
[android-x86/dalvik.git] / vm / Init.cpp
1 /*
2  * Copyright (C) 2008 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /*
18  * Dalvik initialization, shutdown, and command-line argument processing.
19  */
20 #define __STDC_LIMIT_MACROS
21 #include <stdlib.h>
22 #include <stdio.h>
23 #include <signal.h>
24 #include <limits.h>
25 #include <ctype.h>
26 #include <sys/mount.h>
27 #include <sys/wait.h>
28 #include <linux/fs.h>
29 #include <cutils/fs.h>
30 #include <unistd.h>
31 #ifdef HAVE_ANDROID_OS
32 #include <sys/prctl.h>
33 #endif
34
35 #include "Dalvik.h"
36 #include "test/Test.h"
37 #include "mterp/Mterp.h"
38 #include "Hash.h"
39 #include "JniConstants.h"
40
41 #if defined(WITH_JIT)
42 #include "compiler/codegen/Optimizer.h"
43 #endif
44
45 #define kMinHeapStartSize   (1*1024*1024)
46 #define kMinHeapSize        (2*1024*1024)
47 #define kMaxHeapSize        (1*1024*1024*1024)
48
49 /*
50  * Register VM-agnostic native methods for system classes.
51  */
52 extern int jniRegisterSystemMethods(JNIEnv* env);
53
54 /* fwd */
55 static bool registerSystemNatives(JNIEnv* pEnv);
56 static bool initJdwp();
57 static bool initZygote();
58
59
60 /* global state */
61 struct DvmGlobals gDvm;
62 struct DvmJniGlobals gDvmJni;
63
64 /* JIT-specific global state */
65 #if defined(WITH_JIT)
66 struct DvmJitGlobals gDvmJit;
67
68 #if defined(WITH_JIT_TUNING)
69 /*
70  * Track the number of hits in the inline cache for predicted chaining.
71  * Use an ugly global variable here since it is accessed in assembly code.
72  */
73 int gDvmICHitCount;
74 #endif
75
76 #endif
77
78 /*
79  * Show usage.
80  *
81  * We follow the tradition of unhyphenated compound words.
82  */
83 static void usage(const char* progName)
84 {
85     dvmFprintf(stderr, "%s: [options] class [argument ...]\n", progName);
86     dvmFprintf(stderr, "%s: [options] -jar file.jar [argument ...]\n",progName);
87     dvmFprintf(stderr, "\n");
88     dvmFprintf(stderr, "The following standard options are recognized:\n");
89     dvmFprintf(stderr, "  -classpath classpath\n");
90     dvmFprintf(stderr, "  -Dproperty=value\n");
91     dvmFprintf(stderr, "  -verbose:tag  ('gc', 'jni', or 'class')\n");
92     dvmFprintf(stderr, "  -ea[:<package name>... |:<class name>]\n");
93     dvmFprintf(stderr, "  -da[:<package name>... |:<class name>]\n");
94     dvmFprintf(stderr, "   (-enableassertions, -disableassertions)\n");
95     dvmFprintf(stderr, "  -esa\n");
96     dvmFprintf(stderr, "  -dsa\n");
97     dvmFprintf(stderr,
98                 "   (-enablesystemassertions, -disablesystemassertions)\n");
99     dvmFprintf(stderr, "  -showversion\n");
100     dvmFprintf(stderr, "  -help\n");
101     dvmFprintf(stderr, "\n");
102     dvmFprintf(stderr, "The following extended options are recognized:\n");
103     dvmFprintf(stderr, "  -Xrunjdwp:<options>\n");
104     dvmFprintf(stderr, "  -Xbootclasspath:bootclasspath\n");
105     dvmFprintf(stderr, "  -Xcheck:tag  (e.g. 'jni')\n");
106     dvmFprintf(stderr, "  -XmsN  (min heap, must be multiple of 1K, >= 1MB)\n");
107     dvmFprintf(stderr, "  -XmxN  (max heap, must be multiple of 1K, >= 2MB)\n");
108     dvmFprintf(stderr, "  -XssN  (stack size, >= %dKB, <= %dKB)\n",
109         kMinStackSize / 1024, kMaxStackSize / 1024);
110     dvmFprintf(stderr, "  -Xverify:{none,remote,all}\n");
111     dvmFprintf(stderr, "  -Xrs\n");
112 #if defined(WITH_JIT)
113     dvmFprintf(stderr,
114                 "  -Xint  (extended to accept ':portable', ':fast' and ':jit')\n");
115 #else
116     dvmFprintf(stderr,
117                 "  -Xint  (extended to accept ':portable' and ':fast')\n");
118 #endif
119     dvmFprintf(stderr, "\n");
120     dvmFprintf(stderr, "These are unique to Dalvik:\n");
121     dvmFprintf(stderr, "  -Xzygote\n");
122     dvmFprintf(stderr, "  -Xdexopt:{none,verified,all,full}\n");
123     dvmFprintf(stderr, "  -Xnoquithandler\n");
124     dvmFprintf(stderr, "  -Xjniopts:{warnonly,forcecopy}\n");
125     dvmFprintf(stderr, "  -Xjnitrace:substring (eg NativeClass or nativeMethod)\n");
126     dvmFprintf(stderr, "  -Xstacktracefile:<filename>\n");
127     dvmFprintf(stderr, "  -Xgc:[no]precise\n");
128     dvmFprintf(stderr, "  -Xgc:[no]preverify\n");
129     dvmFprintf(stderr, "  -Xgc:[no]postverify\n");
130     dvmFprintf(stderr, "  -Xgc:[no]concurrent\n");
131     dvmFprintf(stderr, "  -Xgc:[no]verifycardtable\n");
132     dvmFprintf(stderr, "  -XX:+DisableExplicitGC\n");
133     dvmFprintf(stderr, "  -X[no]genregmap\n");
134     dvmFprintf(stderr, "  -Xverifyopt:[no]checkmon\n");
135     dvmFprintf(stderr, "  -Xcheckdexsum\n");
136 #if defined(WITH_JIT)
137     dvmFprintf(stderr, "  -Xincludeselectedop\n");
138     dvmFprintf(stderr, "  -Xjitop:hexopvalue[-endvalue]"
139                        "[,hexopvalue[-endvalue]]*\n");
140     dvmFprintf(stderr, "  -Xincludeselectedmethod\n");
141     dvmFprintf(stderr, "  -Xjitthreshold:decimalvalue\n");
142     dvmFprintf(stderr, "  -Xjitcodecachesize:decimalvalueofkbytes\n");
143     dvmFprintf(stderr, "  -Xjitblocking\n");
144     dvmFprintf(stderr, "  -Xjitmethod:signature[,signature]* "
145                        "(eg Ljava/lang/String\\;replace)\n");
146     dvmFprintf(stderr, "  -Xjitclass:classname[,classname]*\n");
147     dvmFprintf(stderr, "  -Xjitoffset:offset[,offset]\n");
148     dvmFprintf(stderr, "  -Xjitconfig:filename\n");
149     dvmFprintf(stderr, "  -Xjitcheckcg\n");
150     dvmFprintf(stderr, "  -Xjitverbose\n");
151     dvmFprintf(stderr, "  -Xjitprofile\n");
152     dvmFprintf(stderr, "  -Xjitdisableopt\n");
153     dvmFprintf(stderr, "  -Xjitsuspendpoll\n");
154 #endif
155     dvmFprintf(stderr, "\n");
156     dvmFprintf(stderr, "Configured with:"
157         " debugger"
158         " profiler"
159         " hprof"
160 #ifdef WITH_TRACKREF_CHECKS
161         " trackref_checks"
162 #endif
163 #ifdef WITH_INSTR_CHECKS
164         " instr_checks"
165 #endif
166 #ifdef WITH_EXTRA_OBJECT_VALIDATION
167         " extra_object_validation"
168 #endif
169 #ifdef WITH_EXTRA_GC_CHECKS
170         " extra_gc_checks"
171 #endif
172 #if !defined(NDEBUG) && defined(WITH_DALVIK_ASSERT)
173         " dalvik_assert"
174 #endif
175 #ifdef WITH_JNI_STACK_CHECK
176         " jni_stack_check"
177 #endif
178 #ifdef EASY_GDB
179         " easy_gdb"
180 #endif
181 #ifdef CHECK_MUTEX
182         " check_mutex"
183 #endif
184 #if defined(WITH_JIT)
185         " jit(" ARCH_VARIANT ")"
186 #endif
187 #if defined(WITH_SELF_VERIFICATION)
188         " self_verification"
189 #endif
190 #if ANDROID_SMP != 0
191         " smp"
192 #endif
193     );
194 #ifdef DVM_SHOW_EXCEPTION
195     dvmFprintf(stderr, " show_exception=%d", DVM_SHOW_EXCEPTION);
196 #endif
197     dvmFprintf(stderr, "\n\n");
198 }
199
200 /*
201  * Show helpful information on JDWP options.
202  */
203 static void showJdwpHelp()
204 {
205     dvmFprintf(stderr,
206         "Example: -Xrunjdwp:transport=dt_socket,address=8000,server=y\n");
207     dvmFprintf(stderr,
208         "Example: -Xrunjdwp:transport=dt_socket,address=localhost:6500,server=n\n");
209 }
210
211 /*
212  * Show version and copyright info.
213  */
214 static void showVersion()
215 {
216     dvmFprintf(stdout, "DalvikVM version %d.%d.%d\n",
217         DALVIK_MAJOR_VERSION, DALVIK_MINOR_VERSION, DALVIK_BUG_VERSION);
218     dvmFprintf(stdout,
219         "Copyright (C) 2007 The Android Open Source Project\n\n"
220         "This software is built from source code licensed under the "
221         "Apache License,\n"
222         "Version 2.0 (the \"License\"). You may obtain a copy of the "
223         "License at\n\n"
224         "     http://www.apache.org/licenses/LICENSE-2.0\n\n"
225         "See the associated NOTICE file for this software for further "
226         "details.\n");
227 }
228
229 /*
230  * Parse a string of the form /[0-9]+[kKmMgG]?/, which is used to specify
231  * memory sizes.  [kK] indicates kilobytes, [mM] megabytes, and
232  * [gG] gigabytes.
233  *
234  * "s" should point just past the "-Xm?" part of the string.
235  * "min" specifies the lowest acceptable value described by "s".
236  * "div" specifies a divisor, e.g. 1024 if the value must be a multiple
237  * of 1024.
238  *
239  * The spec says the -Xmx and -Xms options must be multiples of 1024.  It
240  * doesn't say anything about -Xss.
241  *
242  * Returns 0 (a useless size) if "s" is malformed or specifies a low or
243  * non-evenly-divisible value.
244  */
245 static size_t parseMemOption(const char* s, size_t div)
246 {
247     /* strtoul accepts a leading [+-], which we don't want,
248      * so make sure our string starts with a decimal digit.
249      */
250     if (isdigit(*s)) {
251         const char* s2;
252         size_t val;
253
254         val = strtoul(s, (char* *)&s2, 10);
255         if (s2 != s) {
256             /* s2 should be pointing just after the number.
257              * If this is the end of the string, the user
258              * has specified a number of bytes.  Otherwise,
259              * there should be exactly one more character
260              * that specifies a multiplier.
261              */
262             if (*s2 != '\0') {
263                 char c;
264
265                 /* The remainder of the string is either a single multiplier
266                  * character, or nothing to indicate that the value is in
267                  * bytes.
268                  */
269                 c = *s2++;
270                 if (*s2 == '\0') {
271                     size_t mul;
272
273                     if (c == '\0') {
274                         mul = 1;
275                     } else if (c == 'k' || c == 'K') {
276                         mul = 1024;
277                     } else if (c == 'm' || c == 'M') {
278                         mul = 1024 * 1024;
279                     } else if (c == 'g' || c == 'G') {
280                         mul = 1024 * 1024 * 1024;
281                     } else {
282                         /* Unknown multiplier character.
283                          */
284                         return 0;
285                     }
286
287                     if (val <= SIZE_MAX / mul) {
288                         val *= mul;
289                     } else {
290                         /* Clamp to a multiple of 1024.
291                          */
292                         val = SIZE_MAX & ~(1024-1);
293                     }
294                 } else {
295                     /* There's more than one character after the
296                      * numeric part.
297                      */
298                     return 0;
299                 }
300             }
301
302             /* The man page says that a -Xm value must be
303              * a multiple of 1024.
304              */
305             if (val % div == 0) {
306                 return val;
307             }
308         }
309     }
310
311     return 0;
312 }
313
314 /*
315  * Handle one of the JDWP name/value pairs.
316  *
317  * JDWP options are:
318  *  help: if specified, show help message and bail
319  *  transport: may be dt_socket or dt_shmem
320  *  address: for dt_socket, "host:port", or just "port" when listening
321  *  server: if "y", wait for debugger to attach; if "n", attach to debugger
322  *  timeout: how long to wait for debugger to connect / listen
323  *
324  * Useful with server=n (these aren't supported yet):
325  *  onthrow=<exception-name>: connect to debugger when exception thrown
326  *  onuncaught=y|n: connect to debugger when uncaught exception thrown
327  *  launch=<command-line>: launch the debugger itself
328  *
329  * The "transport" option is required, as is "address" if server=n.
330  */
331 static bool handleJdwpOption(const char* name, const char* value)
332 {
333     if (strcmp(name, "transport") == 0) {
334         if (strcmp(value, "dt_socket") == 0) {
335             gDvm.jdwpTransport = kJdwpTransportSocket;
336         } else if (strcmp(value, "dt_android_adb") == 0) {
337             gDvm.jdwpTransport = kJdwpTransportAndroidAdb;
338         } else {
339             ALOGE("JDWP transport '%s' not supported", value);
340             return false;
341         }
342     } else if (strcmp(name, "server") == 0) {
343         if (*value == 'n')
344             gDvm.jdwpServer = false;
345         else if (*value == 'y')
346             gDvm.jdwpServer = true;
347         else {
348             ALOGE("JDWP option 'server' must be 'y' or 'n'");
349             return false;
350         }
351     } else if (strcmp(name, "suspend") == 0) {
352         if (*value == 'n')
353             gDvm.jdwpSuspend = false;
354         else if (*value == 'y')
355             gDvm.jdwpSuspend = true;
356         else {
357             ALOGE("JDWP option 'suspend' must be 'y' or 'n'");
358             return false;
359         }
360     } else if (strcmp(name, "address") == 0) {
361         /* this is either <port> or <host>:<port> */
362         const char* colon = strchr(value, ':');
363         char* end;
364         long port;
365
366         if (colon != NULL) {
367             free(gDvm.jdwpHost);
368             gDvm.jdwpHost = (char*) malloc(colon - value +1);
369             strncpy(gDvm.jdwpHost, value, colon - value +1);
370             gDvm.jdwpHost[colon-value] = '\0';
371             value = colon + 1;
372         }
373         if (*value == '\0') {
374             ALOGE("JDWP address missing port");
375             return false;
376         }
377         port = strtol(value, &end, 10);
378         if (*end != '\0') {
379             ALOGE("JDWP address has junk in port field '%s'", value);
380             return false;
381         }
382         gDvm.jdwpPort = port;
383     } else if (strcmp(name, "launch") == 0 ||
384                strcmp(name, "onthrow") == 0 ||
385                strcmp(name, "oncaught") == 0 ||
386                strcmp(name, "timeout") == 0)
387     {
388         /* valid but unsupported */
389         ALOGI("Ignoring JDWP option '%s'='%s'", name, value);
390     } else {
391         ALOGI("Ignoring unrecognized JDWP option '%s'='%s'", name, value);
392     }
393
394     return true;
395 }
396
397 /*
398  * Parse the latter half of a -Xrunjdwp/-agentlib:jdwp= string, e.g.:
399  * "transport=dt_socket,address=8000,server=y,suspend=n"
400  */
401 static bool parseJdwpOptions(const char* str)
402 {
403     char* mangle = strdup(str);
404     char* name = mangle;
405     bool result = false;
406
407     /*
408      * Process all of the name=value pairs.
409      */
410     while (true) {
411         char* value;
412         char* comma;
413
414         value = strchr(name, '=');
415         if (value == NULL) {
416             ALOGE("JDWP opts: garbage at '%s'", name);
417             goto bail;
418         }
419
420         comma = strchr(name, ',');      // use name, not value, for safety
421         if (comma != NULL) {
422             if (comma < value) {
423                 ALOGE("JDWP opts: found comma before '=' in '%s'", mangle);
424                 goto bail;
425             }
426             *comma = '\0';
427         }
428
429         *value++ = '\0';        // stomp the '='
430
431         if (!handleJdwpOption(name, value))
432             goto bail;
433
434         if (comma == NULL) {
435             /* out of options */
436             break;
437         }
438         name = comma+1;
439     }
440
441     /*
442      * Make sure the combination of arguments makes sense.
443      */
444     if (gDvm.jdwpTransport == kJdwpTransportUnknown) {
445         ALOGE("JDWP opts: must specify transport");
446         goto bail;
447     }
448     if (!gDvm.jdwpServer && (gDvm.jdwpHost == NULL || gDvm.jdwpPort == 0)) {
449         ALOGE("JDWP opts: when server=n, must specify host and port");
450         goto bail;
451     }
452     // transport mandatory
453     // outbound server address
454
455     gDvm.jdwpConfigured = true;
456     result = true;
457
458 bail:
459     free(mangle);
460     return result;
461 }
462
463 /*
464  * Handle one of the four kinds of assertion arguments.
465  *
466  * "pkgOrClass" is the last part of an enable/disable line.  For a package
467  * the arg looks like "-ea:com.google.fubar...", for a class it looks
468  * like "-ea:com.google.fubar.Wahoo".  The string we get starts at the ':'.
469  *
470  * For system assertions (-esa/-dsa), "pkgOrClass" is NULL.
471  *
472  * Multiple instances of these arguments can be specified, e.g. you can
473  * enable assertions for a package and then disable them for one class in
474  * the package.
475  */
476 static bool enableAssertions(const char* pkgOrClass, bool enable)
477 {
478     AssertionControl* pCtrl = &gDvm.assertionCtrl[gDvm.assertionCtrlCount++];
479     pCtrl->enable = enable;
480
481     if (pkgOrClass == NULL) {
482         /* enable or disable for all system classes */
483         pCtrl->isPackage = false;
484         pCtrl->pkgOrClass = NULL;
485         pCtrl->pkgOrClassLen = 0;
486     } else {
487         if (*pkgOrClass == '\0') {
488             /* global enable/disable for all but system */
489             pCtrl->isPackage = false;
490             pCtrl->pkgOrClass = strdup("");
491             pCtrl->pkgOrClassLen = 0;
492         } else {
493             pCtrl->pkgOrClass = dvmDotToSlash(pkgOrClass+1);    // skip ':'
494             if (pCtrl->pkgOrClass == NULL) {
495                 /* can happen if class name includes an illegal '/' */
496                 ALOGW("Unable to process assertion arg '%s'", pkgOrClass);
497                 return false;
498             }
499
500             int len = strlen(pCtrl->pkgOrClass);
501             if (len >= 3 && strcmp(pCtrl->pkgOrClass + len-3, "///") == 0) {
502                 /* mark as package, truncate two of the three slashes */
503                 pCtrl->isPackage = true;
504                 *(pCtrl->pkgOrClass + len-2) = '\0';
505                 pCtrl->pkgOrClassLen = len - 2;
506             } else {
507                 /* just a class */
508                 pCtrl->isPackage = false;
509                 pCtrl->pkgOrClassLen = len;
510             }
511         }
512     }
513
514     return true;
515 }
516
517 /*
518  * Turn assertions on when requested to do so by the Zygote.
519  *
520  * This is a bit sketchy.  We can't (easily) go back and fiddle with all
521  * of the classes that have already been initialized, so this only
522  * affects classes that have yet to be loaded.  If some or all assertions
523  * have been enabled through some other means, we don't want to mess with
524  * it here, so we do nothing.  Finally, we assume that there's room in
525  * "assertionCtrl" to hold at least one entry; this is guaranteed by the
526  * allocator.
527  *
528  * This must only be called from the main thread during zygote init.
529  */
530 void dvmLateEnableAssertions()
531 {
532     if (gDvm.assertionCtrl == NULL) {
533         ALOGD("Not late-enabling assertions: no assertionCtrl array");
534         return;
535     } else if (gDvm.assertionCtrlCount != 0) {
536         ALOGD("Not late-enabling assertions: some asserts already configured");
537         return;
538     }
539     ALOGD("Late-enabling assertions");
540
541     /* global enable for all but system */
542     AssertionControl* pCtrl = gDvm.assertionCtrl;
543     pCtrl->pkgOrClass = strdup("");
544     pCtrl->pkgOrClassLen = 0;
545     pCtrl->isPackage = false;
546     pCtrl->enable = true;
547     gDvm.assertionCtrlCount = 1;
548 }
549
550
551 /*
552  * Release memory associated with the AssertionCtrl array.
553  */
554 static void freeAssertionCtrl()
555 {
556     int i;
557
558     for (i = 0; i < gDvm.assertionCtrlCount; i++)
559         free(gDvm.assertionCtrl[i].pkgOrClass);
560     free(gDvm.assertionCtrl);
561 }
562
563 #if defined(WITH_JIT)
564 /* Parse -Xjitop to selectively turn on/off certain opcodes for JIT */
565 static void processXjitop(const char* opt)
566 {
567     if (opt[7] == ':') {
568         const char* startPtr = &opt[8];
569         char* endPtr = NULL;
570
571         do {
572             long startValue, endValue;
573
574             startValue = strtol(startPtr, &endPtr, 16);
575             if (startPtr != endPtr) {
576                 /* Just in case value is out of range */
577                 startValue %= kNumPackedOpcodes;
578
579                 if (*endPtr == '-') {
580                     endValue = strtol(endPtr+1, &endPtr, 16);
581                     endValue %= kNumPackedOpcodes;
582                 } else {
583                     endValue = startValue;
584                 }
585
586                 for (; startValue <= endValue; startValue++) {
587                     ALOGW("Dalvik opcode %x is selected for debugging",
588                          (unsigned int) startValue);
589                     /* Mark the corresponding bit to 1 */
590                     gDvmJit.opList[startValue >> 3] |= 1 << (startValue & 0x7);
591                 }
592
593                 if (*endPtr == 0) {
594                     break;
595                 }
596
597                 startPtr = endPtr + 1;
598
599                 continue;
600             } else {
601                 if (*endPtr != 0) {
602                     dvmFprintf(stderr,
603                         "Warning: Unrecognized opcode value substring "
604                         "%s\n", endPtr);
605                 }
606                 break;
607             }
608         } while (1);
609     } else {
610         int i;
611         for (i = 0; i < (kNumPackedOpcodes+7)/8; i++) {
612             gDvmJit.opList[i] = 0xff;
613         }
614         dvmFprintf(stderr, "Warning: select all opcodes\n");
615     }
616 }
617
618 /* Parse -Xjitoffset to selectively turn on/off traces with certain offsets for JIT */
619 static void processXjitoffset(const char* opt) {
620     gDvmJit.num_entries_pcTable = 0;
621     char* buf = strdup(opt);
622     char* start, *end;
623     start = buf;
624     int idx = 0;
625     do {
626         end = strchr(start, ',');
627         if (end) {
628             *end = 0;
629         }
630
631         dvmFprintf(stderr, "processXjitoffset start = %s\n", start);
632         char* tmp = strdup(start);
633         gDvmJit.pcTable[idx++] = atoi(tmp);
634         free(tmp);
635         if (idx >= COMPILER_PC_OFFSET_SIZE) {
636             dvmFprintf(stderr, "processXjitoffset: ignore entries beyond %d\n", COMPILER_PC_OFFSET_SIZE);
637             break;
638         }
639         if (end) {
640             start = end + 1;
641         } else {
642             break;
643         }
644     } while (1);
645     gDvmJit.num_entries_pcTable = idx;
646     free(buf);
647 }
648
649 /* Parse -Xjitmethod to selectively turn on/off certain methods for JIT */
650 static void processXjitmethod(const char* opt, bool isMethod) {
651     char* buf = strdup(opt);
652
653     if (isMethod && gDvmJit.methodTable == NULL) {
654         gDvmJit.methodTable = dvmHashTableCreate(8, NULL);
655     }
656     if (!isMethod && gDvmJit.classTable == NULL) {
657         gDvmJit.classTable = dvmHashTableCreate(8, NULL);
658     }
659
660     char* start = buf;
661     char* end;
662     /*
663      * Break comma-separated method signatures and enter them into the hash
664      * table individually.
665      */
666     do {
667         int hashValue;
668
669         end = strchr(start, ',');
670         if (end) {
671             *end = 0;
672         }
673
674         hashValue = dvmComputeUtf8Hash(start);
675         dvmHashTableLookup(isMethod ? gDvmJit.methodTable : gDvmJit.classTable,
676                            hashValue, strdup(start), (HashCompareFunc) strcmp, true);
677
678         if (end) {
679             start = end + 1;
680         } else {
681             break;
682         }
683     } while (1);
684     free(buf);
685 }
686
687 /* The format of jit_config.list:
688    EXCLUDE or INCLUDE
689    CLASS
690    prefix1 ...
691    METHOD
692    prefix 1 ...
693    OFFSET
694    index ... //each pair is a range, if pcOff falls into a range, JIT
695 */
696 static int processXjitconfig(const char* opt) {
697    FILE* fp = fopen(opt, "r");
698    if (fp == NULL) {
699        return -1;
700    }
701
702    char fLine[500];
703    bool startClass = false, startMethod = false, startOffset = false;
704    gDvmJit.num_entries_pcTable = 0;
705    int idx = 0;
706
707    while (fgets(fLine, 500, fp) != NULL) {
708        char* curLine = strtok(fLine, " \t\r\n");
709        /* handles keyword CLASS, METHOD, INCLUDE, EXCLUDE */
710        if (!strncmp(curLine, "CLASS", 5)) {
711            startClass = true;
712            startMethod = false;
713            startOffset = false;
714            continue;
715        }
716        if (!strncmp(curLine, "METHOD", 6)) {
717            startMethod = true;
718            startClass = false;
719            startOffset = false;
720            continue;
721        }
722        if (!strncmp(curLine, "OFFSET", 6)) {
723            startOffset = true;
724            startMethod = false;
725            startClass = false;
726            continue;
727        }
728        if (!strncmp(curLine, "EXCLUDE", 7)) {
729           gDvmJit.includeSelectedMethod = false;
730           continue;
731        }
732        if (!strncmp(curLine, "INCLUDE", 7)) {
733           gDvmJit.includeSelectedMethod = true;
734           continue;
735        }
736        if (!startMethod && !startClass && !startOffset) {
737          continue;
738        }
739
740         int hashValue = dvmComputeUtf8Hash(curLine);
741         if (startMethod) {
742             if (gDvmJit.methodTable == NULL) {
743                 gDvmJit.methodTable = dvmHashTableCreate(8, NULL);
744             }
745             dvmHashTableLookup(gDvmJit.methodTable, hashValue,
746                                strdup(curLine),
747                                (HashCompareFunc) strcmp, true);
748         } else if (startClass) {
749             if (gDvmJit.classTable == NULL) {
750                 gDvmJit.classTable = dvmHashTableCreate(8, NULL);
751             }
752             dvmHashTableLookup(gDvmJit.classTable, hashValue,
753                                strdup(curLine),
754                                (HashCompareFunc) strcmp, true);
755         } else if (startOffset) {
756            int tmpInt = atoi(curLine);
757            gDvmJit.pcTable[idx++] = tmpInt;
758            if (idx >= COMPILER_PC_OFFSET_SIZE) {
759                printf("processXjitoffset: ignore entries beyond %d\n", COMPILER_PC_OFFSET_SIZE);
760                break;
761            }
762         }
763    }
764    gDvmJit.num_entries_pcTable = idx;
765    fclose(fp);
766    return 0;
767 }
768 #endif
769
770 /*
771  * Process an argument vector full of options.  Unlike standard C programs,
772  * argv[0] does not contain the name of the program.
773  *
774  * If "ignoreUnrecognized" is set, we ignore options starting with "-X" or "_"
775  * that we don't recognize.  Otherwise, we return with an error as soon as
776  * we see anything we can't identify.
777  *
778  * Returns 0 on success, -1 on failure, and 1 for the special case of
779  * "-version" where we want to stop without showing an error message.
780  */
781 static int processOptions(int argc, const char* const argv[],
782     bool ignoreUnrecognized)
783 {
784     int i;
785
786     ALOGV("VM options (%d):", argc);
787     for (i = 0; i < argc; i++)
788         ALOGV("  %d: '%s'", i, argv[i]);
789
790     /*
791      * Over-allocate AssertionControl array for convenience.  If allocated,
792      * the array must be able to hold at least one entry, so that the
793      * zygote-time activation can do its business.
794      */
795     assert(gDvm.assertionCtrl == NULL);
796     if (argc > 0) {
797         gDvm.assertionCtrl =
798             (AssertionControl*) malloc(sizeof(AssertionControl) * argc);
799         if (gDvm.assertionCtrl == NULL)
800             return -1;
801         assert(gDvm.assertionCtrlCount == 0);
802     }
803
804     for (i = 0; i < argc; i++) {
805         if (strcmp(argv[i], "-help") == 0) {
806             /* show usage and stop */
807             return -1;
808
809         } else if (strcmp(argv[i], "-version") == 0) {
810             /* show version and stop */
811             showVersion();
812             return 1;
813         } else if (strcmp(argv[i], "-showversion") == 0) {
814             /* show version and continue */
815             showVersion();
816
817         } else if (strcmp(argv[i], "-classpath") == 0 ||
818                    strcmp(argv[i], "-cp") == 0)
819         {
820             /* set classpath */
821             if (i == argc-1) {
822                 dvmFprintf(stderr, "Missing classpath path list\n");
823                 return -1;
824             }
825             free(gDvm.classPathStr); /* in case we have compiled-in default */
826             gDvm.classPathStr = strdup(argv[++i]);
827
828         } else if (strncmp(argv[i], "-Xbootclasspath:",
829                 sizeof("-Xbootclasspath:")-1) == 0)
830         {
831             /* set bootclasspath */
832             const char* path = argv[i] + sizeof("-Xbootclasspath:")-1;
833
834             if (*path == '\0') {
835                 dvmFprintf(stderr, "Missing bootclasspath path list\n");
836                 return -1;
837             }
838             free(gDvm.bootClassPathStr);
839             gDvm.bootClassPathStr = strdup(path);
840
841         } else if (strncmp(argv[i], "-Xbootclasspath/a:",
842                 sizeof("-Xbootclasspath/a:")-1) == 0) {
843             const char* appPath = argv[i] + sizeof("-Xbootclasspath/a:")-1;
844
845             if (*(appPath) == '\0') {
846                 dvmFprintf(stderr, "Missing appending bootclasspath path list\n");
847                 return -1;
848             }
849             char* allPath;
850
851             if (asprintf(&allPath, "%s:%s", gDvm.bootClassPathStr, appPath) < 0) {
852                 dvmFprintf(stderr, "Can't append to bootclasspath path list\n");
853                 return -1;
854             }
855             free(gDvm.bootClassPathStr);
856             gDvm.bootClassPathStr = allPath;
857
858         } else if (strncmp(argv[i], "-Xbootclasspath/p:",
859                 sizeof("-Xbootclasspath/p:")-1) == 0) {
860             const char* prePath = argv[i] + sizeof("-Xbootclasspath/p:")-1;
861
862             if (*(prePath) == '\0') {
863                 dvmFprintf(stderr, "Missing prepending bootclasspath path list\n");
864                 return -1;
865             }
866             char* allPath;
867
868             if (asprintf(&allPath, "%s:%s", prePath, gDvm.bootClassPathStr) < 0) {
869                 dvmFprintf(stderr, "Can't prepend to bootclasspath path list\n");
870                 return -1;
871             }
872             free(gDvm.bootClassPathStr);
873             gDvm.bootClassPathStr = allPath;
874
875         } else if (strncmp(argv[i], "-D", 2) == 0) {
876             /* Properties are handled in managed code. We just check syntax. */
877             if (strchr(argv[i], '=') == NULL) {
878                 dvmFprintf(stderr, "Bad system property setting: \"%s\"\n",
879                     argv[i]);
880                 return -1;
881             }
882             gDvm.properties->push_back(argv[i] + 2);
883
884         } else if (strcmp(argv[i], "-jar") == 0) {
885             // TODO: handle this; name of jar should be in argv[i+1]
886             dvmFprintf(stderr, "-jar not yet handled\n");
887             assert(false);
888
889         } else if (strncmp(argv[i], "-Xms", 4) == 0) {
890             size_t val = parseMemOption(argv[i]+4, 1024);
891             if (val != 0) {
892                 if (val >= kMinHeapStartSize && val <= kMaxHeapSize) {
893                     gDvm.heapStartingSize = val;
894                 } else {
895                     dvmFprintf(stderr,
896                         "Invalid -Xms '%s', range is %dKB to %dKB\n",
897                         argv[i], kMinHeapStartSize/1024, kMaxHeapSize/1024);
898                     return -1;
899                 }
900             } else {
901                 dvmFprintf(stderr, "Invalid -Xms option '%s'\n", argv[i]);
902                 return -1;
903             }
904         } else if (strncmp(argv[i], "-Xmx", 4) == 0) {
905             size_t val = parseMemOption(argv[i]+4, 1024);
906             if (val != 0) {
907                 if (val >= kMinHeapSize && val <= kMaxHeapSize) {
908                     gDvm.heapMaximumSize = val;
909                 } else {
910                     dvmFprintf(stderr,
911                         "Invalid -Xmx '%s', range is %dKB to %dKB\n",
912                         argv[i], kMinHeapSize/1024, kMaxHeapSize/1024);
913                     return -1;
914                 }
915             } else {
916                 dvmFprintf(stderr, "Invalid -Xmx option '%s'\n", argv[i]);
917                 return -1;
918             }
919         } else if (strncmp(argv[i], "-XX:HeapGrowthLimit=", 20) == 0) {
920             size_t val = parseMemOption(argv[i] + 20, 1024);
921             if (val != 0) {
922                 gDvm.heapGrowthLimit = val;
923             } else {
924                 dvmFprintf(stderr, "Invalid -XX:HeapGrowthLimit option '%s'\n", argv[i]);
925                 return -1;
926             }
927         } else if (strncmp(argv[i], "-XX:HeapMinFree=", 16) == 0) {
928             size_t val = parseMemOption(argv[i] + 16, 1024);
929             if (val != 0) {
930                 gDvm.heapMinFree = val;
931             } else {
932                 dvmFprintf(stderr, "Invalid -XX:HeapMinFree option '%s'\n", argv[i]);
933                 return -1;
934             }
935         } else if (strncmp(argv[i], "-XX:HeapMaxFree=", 16) == 0) {
936             size_t val = parseMemOption(argv[i] + 16, 1024);
937             if (val != 0) {
938                 gDvm.heapMaxFree = val;
939             } else {
940                 dvmFprintf(stderr, "Invalid -XX:HeapMaxFree option '%s'\n", argv[i]);
941                 return -1;
942             }
943         } else if (strncmp(argv[i], "-XX:HeapTargetUtilization=", 26) == 0) {
944             const char* start = argv[i] + 26;
945             const char* end = start;
946             double val = strtod(start, const_cast<char**>(&end));
947             // Ensure that we have a value, there was no cruft after it and it
948             // satisfies a sensible range.
949             bool sane_val = (start != end) && (end[0] == '\0') &&
950                 (val >= 0.1) && (val <= 0.9);
951             if (sane_val) {
952                 gDvm.heapTargetUtilization = val;
953             } else {
954                 dvmFprintf(stderr, "Invalid -XX:HeapTargetUtilization option '%s'\n", argv[i]);
955                 return -1;
956             }
957         } else if (strncmp(argv[i], "-Xss", 4) == 0) {
958             size_t val = parseMemOption(argv[i]+4, 1);
959             if (val != 0) {
960                 if (val >= kMinStackSize && val <= kMaxStackSize) {
961                     gDvm.stackSize = val;
962                     if (val > gDvm.mainThreadStackSize) {
963                         gDvm.mainThreadStackSize = val;
964                     }
965                 } else {
966                     dvmFprintf(stderr, "Invalid -Xss '%s', range is %d to %d\n",
967                         argv[i], kMinStackSize, kMaxStackSize);
968                     return -1;
969                 }
970             } else {
971                 dvmFprintf(stderr, "Invalid -Xss option '%s'\n", argv[i]);
972                 return -1;
973             }
974
975         } else if (strncmp(argv[i], "-XX:mainThreadStackSize=", strlen("-XX:mainThreadStackSize=")) == 0) {
976             size_t val = parseMemOption(argv[i] + strlen("-XX:mainThreadStackSize="), 1);
977             if (val != 0) {
978                 if (val >= kMinStackSize && val <= kMaxStackSize) {
979                     gDvm.mainThreadStackSize = val;
980                 } else {
981                     dvmFprintf(stderr, "Invalid -XX:mainThreadStackSize '%s', range is %d to %d\n",
982                                argv[i], kMinStackSize, kMaxStackSize);
983                     return -1;
984                 }
985             } else {
986                 dvmFprintf(stderr, "Invalid -XX:mainThreadStackSize option '%s'\n", argv[i]);
987                 return -1;
988             }
989
990         } else if (strncmp(argv[i], "-XX:+DisableExplicitGC", 22) == 0) {
991             gDvm.disableExplicitGc = true;
992         } else if (strcmp(argv[i], "-verbose") == 0 ||
993             strcmp(argv[i], "-verbose:class") == 0)
994         {
995             // JNI spec says "-verbose:gc,class" is valid, but cmd line
996             // doesn't work that way; may want to support.
997             gDvm.verboseClass = true;
998         } else if (strcmp(argv[i], "-verbose:jni") == 0) {
999             gDvm.verboseJni = true;
1000         } else if (strcmp(argv[i], "-verbose:gc") == 0) {
1001             gDvm.verboseGc = true;
1002         } else if (strcmp(argv[i], "-verbose:shutdown") == 0) {
1003             gDvm.verboseShutdown = true;
1004
1005         } else if (strncmp(argv[i], "-enableassertions", 17) == 0) {
1006             enableAssertions(argv[i] + 17, true);
1007         } else if (strncmp(argv[i], "-ea", 3) == 0) {
1008             enableAssertions(argv[i] + 3, true);
1009         } else if (strncmp(argv[i], "-disableassertions", 18) == 0) {
1010             enableAssertions(argv[i] + 18, false);
1011         } else if (strncmp(argv[i], "-da", 3) == 0) {
1012             enableAssertions(argv[i] + 3, false);
1013         } else if (strcmp(argv[i], "-enablesystemassertions") == 0 ||
1014                    strcmp(argv[i], "-esa") == 0)
1015         {
1016             enableAssertions(NULL, true);
1017         } else if (strcmp(argv[i], "-disablesystemassertions") == 0 ||
1018                    strcmp(argv[i], "-dsa") == 0)
1019         {
1020             enableAssertions(NULL, false);
1021
1022         } else if (strncmp(argv[i], "-Xcheck:jni", 11) == 0) {
1023             /* nothing to do now -- was handled during JNI init */
1024
1025         } else if (strcmp(argv[i], "-Xdebug") == 0) {
1026             /* accept but ignore */
1027
1028         } else if (strncmp(argv[i], "-Xrunjdwp:", 10) == 0 ||
1029             strncmp(argv[i], "-agentlib:jdwp=", 15) == 0)
1030         {
1031             const char* tail;
1032
1033             if (argv[i][1] == 'X')
1034                 tail = argv[i] + 10;
1035             else
1036                 tail = argv[i] + 15;
1037
1038             if (strncmp(tail, "help", 4) == 0 || !parseJdwpOptions(tail)) {
1039                 showJdwpHelp();
1040                 return 1;
1041             }
1042         } else if (strcmp(argv[i], "-Xrs") == 0) {
1043             gDvm.reduceSignals = true;
1044         } else if (strcmp(argv[i], "-Xnoquithandler") == 0) {
1045             /* disables SIGQUIT handler thread while still blocking SIGQUIT */
1046             /* (useful if we don't want thread but system still signals us) */
1047             gDvm.noQuitHandler = true;
1048         } else if (strcmp(argv[i], "-Xzygote") == 0) {
1049             gDvm.zygote = true;
1050 #if defined(WITH_JIT)
1051             gDvmJit.runningInAndroidFramework = true;
1052 #endif
1053         } else if (strncmp(argv[i], "-Xdexopt:", 9) == 0) {
1054             if (strcmp(argv[i] + 9, "none") == 0)
1055                 gDvm.dexOptMode = OPTIMIZE_MODE_NONE;
1056             else if (strcmp(argv[i] + 9, "verified") == 0)
1057                 gDvm.dexOptMode = OPTIMIZE_MODE_VERIFIED;
1058             else if (strcmp(argv[i] + 9, "all") == 0)
1059                 gDvm.dexOptMode = OPTIMIZE_MODE_ALL;
1060             else if (strcmp(argv[i] + 9, "full") == 0)
1061                 gDvm.dexOptMode = OPTIMIZE_MODE_FULL;
1062             else {
1063                 dvmFprintf(stderr, "Unrecognized dexopt option '%s'\n",argv[i]);
1064                 return -1;
1065             }
1066         } else if (strncmp(argv[i], "-Xverify:", 9) == 0) {
1067             if (strcmp(argv[i] + 9, "none") == 0)
1068                 gDvm.classVerifyMode = VERIFY_MODE_NONE;
1069             else if (strcmp(argv[i] + 9, "remote") == 0)
1070                 gDvm.classVerifyMode = VERIFY_MODE_REMOTE;
1071             else if (strcmp(argv[i] + 9, "all") == 0)
1072                 gDvm.classVerifyMode = VERIFY_MODE_ALL;
1073             else {
1074                 dvmFprintf(stderr, "Unrecognized verify option '%s'\n",argv[i]);
1075                 return -1;
1076             }
1077         } else if (strncmp(argv[i], "-Xjnigreflimit:", 15) == 0) {
1078             // Ignored for backwards compatibility.
1079         } else if (strncmp(argv[i], "-Xjnitrace:", 11) == 0) {
1080             gDvm.jniTrace = strdup(argv[i] + 11);
1081         } else if (strcmp(argv[i], "-Xlog-stdio") == 0) {
1082             gDvm.logStdio = true;
1083
1084         } else if (strncmp(argv[i], "-Xint", 5) == 0) {
1085             if (argv[i][5] == ':') {
1086                 if (strcmp(argv[i] + 6, "portable") == 0)
1087                     gDvm.executionMode = kExecutionModeInterpPortable;
1088                 else if (strcmp(argv[i] + 6, "fast") == 0)
1089                     gDvm.executionMode = kExecutionModeInterpFast;
1090 #ifdef WITH_JIT
1091                 else if (strcmp(argv[i] + 6, "jit") == 0)
1092                     gDvm.executionMode = kExecutionModeJit;
1093 #endif
1094                 else {
1095                     dvmFprintf(stderr,
1096                         "Warning: Unrecognized interpreter mode %s\n",argv[i]);
1097                     /* keep going */
1098                 }
1099             } else {
1100                 /* disable JIT if it was enabled by default */
1101                 gDvm.executionMode = kExecutionModeInterpFast;
1102             }
1103
1104         } else if (strncmp(argv[i], "-Xlockprofthreshold:", 20) == 0) {
1105             gDvm.lockProfThreshold = atoi(argv[i] + 20);
1106
1107 #ifdef WITH_JIT
1108         } else if (strncmp(argv[i], "-Xjitop", 7) == 0) {
1109             processXjitop(argv[i]);
1110         } else if (strncmp(argv[i], "-Xjitmethod:", 12) == 0) {
1111             processXjitmethod(argv[i] + strlen("-Xjitmethod:"), true);
1112         } else if (strncmp(argv[i], "-Xjitclass:", 11) == 0) {
1113             processXjitmethod(argv[i] + strlen("-Xjitclass:"), false);
1114         } else if (strncmp(argv[i], "-Xjitoffset:", 12) == 0) {
1115             processXjitoffset(argv[i] + strlen("-Xjitoffset:"));
1116         } else if (strncmp(argv[i], "-Xjitconfig:", 12) == 0) {
1117             processXjitconfig(argv[i] + strlen("-Xjitconfig:"));
1118         } else if (strncmp(argv[i], "-Xjitblocking", 13) == 0) {
1119           gDvmJit.blockingMode = true;
1120         } else if (strncmp(argv[i], "-Xjitthreshold:", 15) == 0) {
1121           gDvmJit.threshold = atoi(argv[i] + 15);
1122         } else if (strncmp(argv[i], "-Xjitcodecachesize:", 19) == 0) {
1123           gDvmJit.codeCacheSize = atoi(argv[i] + 19) * 1024;
1124         } else if (strncmp(argv[i], "-Xincludeselectedop", 19) == 0) {
1125           gDvmJit.includeSelectedOp = true;
1126         } else if (strncmp(argv[i], "-Xincludeselectedmethod", 23) == 0) {
1127           gDvmJit.includeSelectedMethod = true;
1128         } else if (strncmp(argv[i], "-Xjitcheckcg", 12) == 0) {
1129           gDvmJit.checkCallGraph = true;
1130           /* Need to enable blocking mode due to stack crawling */
1131           gDvmJit.blockingMode = true;
1132         } else if (strncmp(argv[i], "-Xjitdumpbin", 12) == 0) {
1133           gDvmJit.printBinary = true;
1134         } else if (strncmp(argv[i], "-Xjitverbose", 12) == 0) {
1135           gDvmJit.printMe = true;
1136         } else if (strncmp(argv[i], "-Xjitprofile", 12) == 0) {
1137           gDvmJit.profileMode = kTraceProfilingContinuous;
1138         } else if (strncmp(argv[i], "-Xjitdisableopt", 15) == 0) {
1139           /* Disable selected optimizations */
1140           if (argv[i][15] == ':') {
1141               sscanf(argv[i] + 16, "%x", &gDvmJit.disableOpt);
1142           /* Disable all optimizations */
1143           } else {
1144               gDvmJit.disableOpt = -1;
1145           }
1146         } else if (strncmp(argv[i], "-Xjitsuspendpoll", 16) == 0) {
1147           gDvmJit.genSuspendPoll = true;
1148 #endif
1149
1150         } else if (strncmp(argv[i], "-Xstacktracefile:", 17) == 0) {
1151             gDvm.stackTraceFile = strdup(argv[i]+17);
1152
1153         } else if (strcmp(argv[i], "-Xgenregmap") == 0) {
1154             gDvm.generateRegisterMaps = true;
1155         } else if (strcmp(argv[i], "-Xnogenregmap") == 0) {
1156             gDvm.generateRegisterMaps = false;
1157
1158         } else if (strcmp(argv[i], "Xverifyopt:checkmon") == 0) {
1159             gDvm.monitorVerification = true;
1160         } else if (strcmp(argv[i], "Xverifyopt:nocheckmon") == 0) {
1161             gDvm.monitorVerification = false;
1162
1163         } else if (strncmp(argv[i], "-Xgc:", 5) == 0) {
1164             if (strcmp(argv[i] + 5, "precise") == 0)
1165                 gDvm.preciseGc = true;
1166             else if (strcmp(argv[i] + 5, "noprecise") == 0)
1167                 gDvm.preciseGc = false;
1168             else if (strcmp(argv[i] + 5, "preverify") == 0)
1169                 gDvm.preVerify = true;
1170             else if (strcmp(argv[i] + 5, "nopreverify") == 0)
1171                 gDvm.preVerify = false;
1172             else if (strcmp(argv[i] + 5, "postverify") == 0)
1173                 gDvm.postVerify = true;
1174             else if (strcmp(argv[i] + 5, "nopostverify") == 0)
1175                 gDvm.postVerify = false;
1176             else if (strcmp(argv[i] + 5, "concurrent") == 0)
1177                 gDvm.concurrentMarkSweep = true;
1178             else if (strcmp(argv[i] + 5, "noconcurrent") == 0)
1179                 gDvm.concurrentMarkSweep = false;
1180             else if (strcmp(argv[i] + 5, "verifycardtable") == 0)
1181                 gDvm.verifyCardTable = true;
1182             else if (strcmp(argv[i] + 5, "noverifycardtable") == 0)
1183                 gDvm.verifyCardTable = false;
1184             else {
1185                 dvmFprintf(stderr, "Bad value for -Xgc");
1186                 return -1;
1187             }
1188             ALOGV("Precise GC configured %s", gDvm.preciseGc ? "ON" : "OFF");
1189
1190         } else if (strcmp(argv[i], "-Xcheckdexsum") == 0) {
1191             gDvm.verifyDexChecksum = true;
1192
1193         } else if (strcmp(argv[i], "-Xprofile:threadcpuclock") == 0) {
1194             gDvm.profilerClockSource = kProfilerClockSourceThreadCpu;
1195         } else if (strcmp(argv[i], "-Xprofile:wallclock") == 0) {
1196             gDvm.profilerClockSource = kProfilerClockSourceWall;
1197         } else if (strcmp(argv[i], "-Xprofile:dualclock") == 0) {
1198             gDvm.profilerClockSource = kProfilerClockSourceDual;
1199
1200         } else {
1201             if (!ignoreUnrecognized) {
1202                 dvmFprintf(stderr, "Unrecognized option '%s'\n", argv[i]);
1203                 return -1;
1204             }
1205         }
1206     }
1207
1208     return 0;
1209 }
1210
1211 /*
1212  * Set defaults for fields altered or modified by arguments.
1213  *
1214  * Globals are initialized to 0 (a/k/a NULL or false).
1215  */
1216 static void setCommandLineDefaults()
1217 {
1218     const char* envStr = getenv("CLASSPATH");
1219     if (envStr != NULL) {
1220         gDvm.classPathStr = strdup(envStr);
1221     } else {
1222         gDvm.classPathStr = strdup(".");
1223     }
1224     envStr = getenv("BOOTCLASSPATH");
1225     if (envStr != NULL) {
1226         gDvm.bootClassPathStr = strdup(envStr);
1227     } else {
1228         gDvm.bootClassPathStr = strdup(".");
1229     }
1230
1231     gDvm.properties = new std::vector<std::string>();
1232
1233     /* Defaults overridden by -Xms and -Xmx.
1234      * TODO: base these on a system or application-specific default
1235      */
1236     gDvm.heapStartingSize = 2 * 1024 * 1024;  // Spec says 16MB; too big for us.
1237     gDvm.heapMaximumSize = 16 * 1024 * 1024;  // Spec says 75% physical mem
1238     gDvm.heapGrowthLimit = 0;  // 0 means no growth limit
1239     gDvm.stackSize = kDefaultStackSize;
1240     gDvm.mainThreadStackSize = kDefaultStackSize;
1241     // When the heap is less than the maximum or growth limited size,
1242     // fix the free portion of the heap. The utilization is the ratio
1243     // of live to free memory, 0.5 implies half the heap is available
1244     // to allocate into before a GC occurs. Min free and max free
1245     // force the free memory to never be smaller than min free or
1246     // larger than max free.
1247     gDvm.heapTargetUtilization = 0.5;
1248     gDvm.heapMaxFree = 2 * 1024 * 1024;
1249     gDvm.heapMinFree = gDvm.heapMaxFree / 4;
1250
1251     gDvm.concurrentMarkSweep = true;
1252
1253     /* gDvm.jdwpSuspend = true; */
1254
1255     /* allowed unless zygote config doesn't allow it */
1256     gDvm.jdwpAllowed = true;
1257
1258     /* default verification and optimization modes */
1259     gDvm.classVerifyMode = VERIFY_MODE_ALL;
1260     gDvm.dexOptMode = OPTIMIZE_MODE_VERIFIED;
1261     gDvm.monitorVerification = false;
1262     gDvm.generateRegisterMaps = true;
1263     gDvm.registerMapMode = kRegisterMapModeTypePrecise;
1264
1265     /*
1266      * Default execution mode.
1267      *
1268      * This should probably interact with the mterp code somehow, e.g. if
1269      * we know we're using the "desktop" build we should probably be
1270      * using "portable" rather than "fast".
1271      */
1272 #if defined(WITH_JIT)
1273     gDvm.executionMode = kExecutionModeJit;
1274     gDvmJit.num_entries_pcTable = 0;
1275     gDvmJit.includeSelectedMethod = false;
1276     gDvmJit.includeSelectedOffset = false;
1277     gDvmJit.methodTable = NULL;
1278     gDvmJit.classTable = NULL;
1279     gDvmJit.codeCacheSize = DEFAULT_CODE_CACHE_SIZE;
1280
1281     gDvm.constInit = false;
1282     gDvm.commonInit = false;
1283 #else
1284     gDvm.executionMode = kExecutionModeInterpFast;
1285 #endif
1286
1287     /*
1288      * SMP support is a compile-time define, but we may want to have
1289      * dexopt target a differently-configured device.
1290      */
1291     gDvm.dexOptForSmp = (ANDROID_SMP != 0);
1292
1293     /*
1294      * Default profiler configuration.
1295      */
1296     gDvm.profilerClockSource = kProfilerClockSourceDual;
1297 }
1298
1299
1300 /*
1301  * Handle a SIGBUS, which frequently occurs because somebody replaced an
1302  * optimized DEX file out from under us.
1303  */
1304 static void busCatcher(int signum, siginfo_t* info, void* context)
1305 {
1306     void* addr = info->si_addr;
1307
1308     ALOGE("Caught a SIGBUS (%d), addr=%p", signum, addr);
1309
1310     /*
1311      * If we return at this point the SIGBUS just keeps happening, so we
1312      * remove the signal handler and allow it to kill us.  TODO: restore
1313      * the original, which points to a debuggerd stub; if we don't then
1314      * debuggerd won't be notified.
1315      */
1316     signal(SIGBUS, SIG_DFL);
1317 }
1318
1319 /*
1320  * Configure signals.  We need to block SIGQUIT so that the signal only
1321  * reaches the dump-stack-trace thread.
1322  *
1323  * This can be disabled with the "-Xrs" flag.
1324  */
1325 static void blockSignals()
1326 {
1327     sigset_t mask;
1328     int cc;
1329
1330     sigemptyset(&mask);
1331     sigaddset(&mask, SIGQUIT);
1332     sigaddset(&mask, SIGUSR1);      // used to initiate heap dump
1333 #if defined(WITH_JIT) && defined(WITH_JIT_TUNING)
1334     sigaddset(&mask, SIGUSR2);      // used to investigate JIT internals
1335 #endif
1336     //sigaddset(&mask, SIGPIPE);
1337     cc = sigprocmask(SIG_BLOCK, &mask, NULL);
1338     assert(cc == 0);
1339
1340     if (false) {
1341         /* TODO: save the old sigaction in a global */
1342         struct sigaction sa;
1343         memset(&sa, 0, sizeof(sa));
1344         sa.sa_sigaction = busCatcher;
1345         sa.sa_flags = SA_SIGINFO;
1346         cc = sigaction(SIGBUS, &sa, NULL);
1347         assert(cc == 0);
1348     }
1349 }
1350
1351 class ScopedShutdown {
1352 public:
1353     ScopedShutdown() : armed_(true) {
1354     }
1355
1356     ~ScopedShutdown() {
1357         if (armed_) {
1358             dvmShutdown();
1359         }
1360     }
1361
1362     void disarm() {
1363         armed_ = false;
1364     }
1365
1366 private:
1367     bool armed_;
1368 };
1369
1370 /*
1371  * VM initialization.  Pass in any options provided on the command line.
1372  * Do not pass in the class name or the options for the class.
1373  *
1374  * Returns 0 on success.
1375  */
1376 std::string dvmStartup(int argc, const char* const argv[],
1377         bool ignoreUnrecognized, JNIEnv* pEnv)
1378 {
1379     ScopedShutdown scopedShutdown;
1380
1381     assert(gDvm.initializing);
1382
1383     ALOGV("VM init args (%d):", argc);
1384     for (int i = 0; i < argc; i++) {
1385         ALOGV("  %d: '%s'", i, argv[i]);
1386     }
1387     setCommandLineDefaults();
1388
1389     /*
1390      * Process the option flags (if any).
1391      */
1392     int cc = processOptions(argc, argv, ignoreUnrecognized);
1393     if (cc != 0) {
1394         if (cc < 0) {
1395             dvmFprintf(stderr, "\n");
1396             usage("dalvikvm");
1397         }
1398         return "syntax error";
1399     }
1400
1401 #if WITH_EXTRA_GC_CHECKS > 1
1402     /* only "portable" interp has the extra goodies */
1403     if (gDvm.executionMode != kExecutionModeInterpPortable) {
1404         ALOGI("Switching to 'portable' interpreter for GC checks");
1405         gDvm.executionMode = kExecutionModeInterpPortable;
1406     }
1407 #endif
1408
1409     /* Configure group scheduling capabilities */
1410     if (!access("/dev/cpuctl/tasks", F_OK)) {
1411         ALOGV("Using kernel group scheduling");
1412         gDvm.kernelGroupScheduling = 1;
1413     } else {
1414         ALOGV("Using kernel scheduler policies");
1415     }
1416
1417     /* configure signal handling */
1418     if (!gDvm.reduceSignals)
1419         blockSignals();
1420
1421     /* verify system page size */
1422     if (sysconf(_SC_PAGESIZE) != SYSTEM_PAGE_SIZE) {
1423         return StringPrintf("expected page size %d, got %d",
1424                 SYSTEM_PAGE_SIZE, (int) sysconf(_SC_PAGESIZE));
1425     }
1426
1427     /* mterp setup */
1428     ALOGV("Using executionMode %d", gDvm.executionMode);
1429     dvmCheckAsmConstants();
1430
1431     /*
1432      * Initialize components.
1433      */
1434     dvmQuasiAtomicsStartup();
1435     if (!dvmAllocTrackerStartup()) {
1436         return "dvmAllocTrackerStartup failed";
1437     }
1438     if (!dvmGcStartup()) {
1439         return "dvmGcStartup failed";
1440     }
1441     if (!dvmThreadStartup()) {
1442         return "dvmThreadStartup failed";
1443     }
1444     if (!dvmInlineNativeStartup()) {
1445         return "dvmInlineNativeStartup";
1446     }
1447     if (!dvmRegisterMapStartup()) {
1448         return "dvmRegisterMapStartup failed";
1449     }
1450     if (!dvmInstanceofStartup()) {
1451         return "dvmInstanceofStartup failed";
1452     }
1453     if (!dvmClassStartup()) {
1454         return "dvmClassStartup failed";
1455     }
1456
1457     /*
1458      * At this point, the system is guaranteed to be sufficiently
1459      * initialized that we can look up classes and class members. This
1460      * call populates the gDvm instance with all the class and member
1461      * references that the VM wants to use directly.
1462      */
1463     if (!dvmFindRequiredClassesAndMembers()) {
1464         return "dvmFindRequiredClassesAndMembers failed";
1465     }
1466
1467     if (!dvmStringInternStartup()) {
1468         return "dvmStringInternStartup failed";
1469     }
1470     if (!dvmNativeStartup()) {
1471         return "dvmNativeStartup failed";
1472     }
1473     if (!dvmInternalNativeStartup()) {
1474         return "dvmInternalNativeStartup failed";
1475     }
1476     if (!dvmJniStartup()) {
1477         return "dvmJniStartup failed";
1478     }
1479     if (!dvmProfilingStartup()) {
1480         return "dvmProfilingStartup failed";
1481     }
1482
1483     /*
1484      * Create a table of methods for which we will substitute an "inline"
1485      * version for performance.
1486      */
1487     if (!dvmCreateInlineSubsTable()) {
1488         return "dvmCreateInlineSubsTable failed";
1489     }
1490
1491     /*
1492      * Miscellaneous class library validation.
1493      */
1494     if (!dvmValidateBoxClasses()) {
1495         return "dvmValidateBoxClasses failed";
1496     }
1497
1498     /*
1499      * Do the last bits of Thread struct initialization we need to allow
1500      * JNI calls to work.
1501      */
1502     if (!dvmPrepMainForJni(pEnv)) {
1503         return "dvmPrepMainForJni failed";
1504     }
1505
1506     /*
1507      * Explicitly initialize java.lang.Class.  This doesn't happen
1508      * automatically because it's allocated specially (it's an instance
1509      * of itself).  Must happen before registration of system natives,
1510      * which make some calls that throw assertions if the classes they
1511      * operate on aren't initialized.
1512      */
1513     if (!dvmInitClass(gDvm.classJavaLangClass)) {
1514         return "couldn't initialized java.lang.Class";
1515     }
1516
1517     /*
1518      * Register the system native methods, which are registered through JNI.
1519      */
1520     if (!registerSystemNatives(pEnv)) {
1521         return "couldn't register system natives";
1522     }
1523
1524     /*
1525      * Do some "late" initialization for the memory allocator.  This may
1526      * allocate storage and initialize classes.
1527      */
1528     if (!dvmCreateStockExceptions()) {
1529         return "dvmCreateStockExceptions failed";
1530     }
1531
1532     /*
1533      * At this point, the VM is in a pretty good state.  Finish prep on
1534      * the main thread (specifically, create a java.lang.Thread object to go
1535      * along with our Thread struct).  Note we will probably be executing
1536      * some interpreted class initializer code in here.
1537      */
1538     if (!dvmPrepMainThread()) {
1539         return "dvmPrepMainThread failed";
1540     }
1541
1542     /*
1543      * Make sure we haven't accumulated any tracked references.  The main
1544      * thread should be starting with a clean slate.
1545      */
1546     if (dvmReferenceTableEntries(&dvmThreadSelf()->internalLocalRefTable) != 0)
1547     {
1548         ALOGW("Warning: tracked references remain post-initialization");
1549         dvmDumpReferenceTable(&dvmThreadSelf()->internalLocalRefTable, "MAIN");
1550     }
1551
1552     /* general debugging setup */
1553     if (!dvmDebuggerStartup()) {
1554         return "dvmDebuggerStartup failed";
1555     }
1556
1557     if (!dvmGcStartupClasses()) {
1558         return "dvmGcStartupClasses failed";
1559     }
1560
1561     /*
1562      * Init for either zygote mode or non-zygote mode.  The key difference
1563      * is that we don't start any additional threads in Zygote mode.
1564      */
1565     if (gDvm.zygote) {
1566         if (!initZygote()) {
1567             return "initZygote failed";
1568         }
1569     } else {
1570         if (!dvmInitAfterZygote()) {
1571             return "dvmInitAfterZygote failed";
1572         }
1573     }
1574
1575
1576 #ifndef NDEBUG
1577     if (!dvmTestHash())
1578         ALOGE("dvmTestHash FAILED");
1579     if (false /*noisy!*/ && !dvmTestIndirectRefTable())
1580         ALOGE("dvmTestIndirectRefTable FAILED");
1581 #endif
1582
1583     if (dvmCheckException(dvmThreadSelf())) {
1584         dvmLogExceptionStackTrace();
1585         return "Exception pending at end of VM initialization";
1586     }
1587
1588     scopedShutdown.disarm();
1589     return "";
1590 }
1591
1592 static void loadJniLibrary(const char* name) {
1593     std::string mappedName(StringPrintf(OS_SHARED_LIB_FORMAT_STR, name));
1594     char* reason = NULL;
1595     if (!dvmLoadNativeCode(mappedName.c_str(), NULL, &reason)) {
1596         ALOGE("dvmLoadNativeCode failed for \"%s\": %s", name, reason);
1597         dvmAbort();
1598     }
1599 }
1600
1601 /*
1602  * Register java.* natives from our class libraries.  We need to do
1603  * this after we're ready for JNI registration calls, but before we
1604  * do any class initialization.
1605  *
1606  * If we get this wrong, we will blow up in the ThreadGroup class init if
1607  * interpreted code makes any reference to System.  It will likely do this
1608  * since it wants to do some java.io.File setup (e.g. for static in/out/err).
1609  *
1610  * We need to have gDvm.initializing raised here so that JNI FindClass
1611  * won't try to use the system/application class loader.
1612  */
1613 static bool registerSystemNatives(JNIEnv* pEnv)
1614 {
1615     // Main thread is always first in list.
1616     Thread* self = gDvm.threadList;
1617
1618     // Must set this before allowing JNI-based method registration.
1619     self->status = THREAD_NATIVE;
1620
1621     // First set up JniConstants, which is used by libcore.
1622     JniConstants::init(pEnv);
1623
1624     // Most JNI libraries can just use System.loadLibrary, but you can't
1625     // if you're the library that implements System.loadLibrary!
1626     loadJniLibrary("javacore");
1627     loadJniLibrary("nativehelper");
1628
1629     // Back to run mode.
1630     self->status = THREAD_RUNNING;
1631
1632     return true;
1633 }
1634
1635 /*
1636  * Copied and modified slightly from system/core/toolbox/mount.c
1637  */
1638 static std::string getMountsDevDir(const char *arg)
1639 {
1640     char mount_dev[256];
1641     char mount_dir[256];
1642     int match;
1643
1644     FILE *fp = fopen("/proc/self/mounts", "r");
1645     if (fp == NULL) {
1646         ALOGE("Could not open /proc/self/mounts: %s", strerror(errno));
1647         return "";
1648     }
1649
1650     while ((match = fscanf(fp, "%255s %255s %*s %*s %*d %*d\n", mount_dev, mount_dir)) != EOF) {
1651         mount_dev[255] = 0;
1652         mount_dir[255] = 0;
1653         if (match == 2 && (strcmp(arg, mount_dir) == 0)) {
1654             fclose(fp);
1655             return mount_dev;
1656         }
1657     }
1658
1659     fclose(fp);
1660     return "";
1661 }
1662
1663 /*
1664  * Do zygote-mode-only initialization.
1665  */
1666 static bool initZygote()
1667 {
1668     /* zygote goes into its own process group */
1669     setpgid(0,0);
1670
1671     // See storage config details at http://source.android.com/tech/storage/
1672     // Create private mount namespace shared by all children
1673     if (unshare(CLONE_NEWNS) == -1) {
1674         SLOGE("Failed to unshare(): %s", strerror(errno));
1675         return -1;
1676     }
1677
1678     // Mark rootfs as being a slave so that changes from default
1679     // namespace only flow into our children.
1680     if (mount("rootfs", "/", NULL, (MS_SLAVE | MS_REC), NULL) == -1) {
1681         SLOGE("Failed to mount() rootfs as MS_SLAVE: %s", strerror(errno));
1682         return -1;
1683     }
1684
1685     // Create a staging tmpfs that is shared by our children; they will
1686     // bind mount storage into their respective private namespaces, which
1687     // are isolated from each other.
1688     const char* target_base = getenv("EMULATED_STORAGE_TARGET");
1689     if (target_base != NULL) {
1690         if (mount("tmpfs", target_base, "tmpfs", MS_NOSUID | MS_NODEV,
1691                 "uid=0,gid=1028,mode=0050") == -1) {
1692             SLOGE("Failed to mount tmpfs to %s: %s", target_base, strerror(errno));
1693             return -1;
1694         }
1695     }
1696
1697     // Mark /system as NOSUID | NODEV
1698     const char* android_root = getenv("ANDROID_ROOT");
1699
1700     if (android_root == NULL) {
1701         SLOGE("environment variable ANDROID_ROOT does not exist?!?!");
1702         return -1;
1703     }
1704
1705     std::string mountDev(getMountsDevDir(android_root));
1706     if (mountDev.empty()) {
1707         SLOGE("Unable to find mount point for %s", android_root);
1708         return -1;
1709     }
1710
1711     if (mount(mountDev.c_str(), android_root, "none",
1712             MS_REMOUNT | MS_NOSUID | MS_NODEV | MS_RDONLY | MS_BIND, NULL) == -1) {
1713         SLOGE("Remount of %s failed: %s", android_root, strerror(errno));
1714         return -1;
1715     }
1716
1717 #ifdef HAVE_ANDROID_OS
1718     if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0) < 0) {
1719         // Older kernels don't understand PR_SET_NO_NEW_PRIVS and return
1720         // EINVAL. Don't die on such kernels.
1721         if (errno != EINVAL) {
1722             SLOGE("PR_SET_NO_NEW_PRIVS failed: %s", strerror(errno));
1723             return -1;
1724         }
1725     }
1726 #endif
1727
1728     return true;
1729 }
1730
1731 /*
1732  * Do non-zygote-mode initialization.  This is done during VM init for
1733  * standard startup, or after a "zygote fork" when creating a new process.
1734  */
1735 bool dvmInitAfterZygote()
1736 {
1737     u8 startHeap, startQuit, startJdwp;
1738     u8 endHeap, endQuit, endJdwp;
1739
1740     startHeap = dvmGetRelativeTimeUsec();
1741
1742     /*
1743      * Post-zygote heap initialization, including starting
1744      * the HeapWorker thread.
1745      */
1746     if (!dvmGcStartupAfterZygote())
1747         return false;
1748
1749     endHeap = dvmGetRelativeTimeUsec();
1750     startQuit = dvmGetRelativeTimeUsec();
1751
1752     /* start signal catcher thread that dumps stacks on SIGQUIT */
1753     if (!gDvm.reduceSignals && !gDvm.noQuitHandler) {
1754         if (!dvmSignalCatcherStartup())
1755             return false;
1756     }
1757
1758     /* start stdout/stderr copier, if requested */
1759     if (gDvm.logStdio) {
1760         if (!dvmStdioConverterStartup())
1761             return false;
1762     }
1763
1764     endQuit = dvmGetRelativeTimeUsec();
1765     startJdwp = dvmGetRelativeTimeUsec();
1766
1767     /*
1768      * Start JDWP thread.  If the command-line debugger flags specified
1769      * "suspend=y", this will pause the VM.  We probably want this to
1770      * come last.
1771      */
1772     if (!initJdwp()) {
1773         ALOGD("JDWP init failed; continuing anyway");
1774     }
1775
1776     endJdwp = dvmGetRelativeTimeUsec();
1777
1778     ALOGV("thread-start heap=%d quit=%d jdwp=%d total=%d usec",
1779         (int)(endHeap-startHeap), (int)(endQuit-startQuit),
1780         (int)(endJdwp-startJdwp), (int)(endJdwp-startHeap));
1781
1782 #ifdef WITH_JIT
1783     if (gDvm.executionMode == kExecutionModeJit) {
1784         if (!dvmCompilerStartup())
1785             return false;
1786     }
1787 #endif
1788
1789     return true;
1790 }
1791
1792 /*
1793  * Prepare for a connection to a JDWP-compliant debugger.
1794  *
1795  * Note this needs to happen fairly late in the startup process, because
1796  * we need to have all of the java.* native methods registered (which in
1797  * turn requires JNI to be fully prepped).
1798  *
1799  * There are several ways to initialize:
1800  *   server=n
1801  *     We immediately try to connect to host:port.  Bail on failure.  On
1802  *     success, send VM_START (suspending the VM if "suspend=y").
1803  *   server=y suspend=n
1804  *     Passively listen for a debugger to connect.  Return immediately.
1805  *   server=y suspend=y
1806  *     Wait until debugger connects.  Send VM_START ASAP, suspending the
1807  *     VM after the message is sent.
1808  *
1809  * This gets more complicated with a nonzero value for "timeout".
1810  */
1811 static bool initJdwp()
1812 {
1813     assert(!gDvm.zygote);
1814
1815     /*
1816      * Init JDWP if the debugger is enabled.  This may connect out to a
1817      * debugger, passively listen for a debugger, or block waiting for a
1818      * debugger.
1819      */
1820     if (gDvm.jdwpAllowed && gDvm.jdwpConfigured) {
1821         JdwpStartupParams params;
1822
1823         if (gDvm.jdwpHost != NULL) {
1824             if (strlen(gDvm.jdwpHost) >= sizeof(params.host)-1) {
1825                 ALOGE("ERROR: hostname too long: '%s'", gDvm.jdwpHost);
1826                 return false;
1827             }
1828             strcpy(params.host, gDvm.jdwpHost);
1829         } else {
1830             params.host[0] = '\0';
1831         }
1832         params.transport = gDvm.jdwpTransport;
1833         params.server = gDvm.jdwpServer;
1834         params.suspend = gDvm.jdwpSuspend;
1835         params.port = gDvm.jdwpPort;
1836
1837         gDvm.jdwpState = dvmJdwpStartup(&params);
1838         if (gDvm.jdwpState == NULL) {
1839             ALOGW("WARNING: debugger thread failed to initialize");
1840             /* TODO: ignore? fail? need to mimic "expected" behavior */
1841         }
1842     }
1843
1844     /*
1845      * If a debugger has already attached, send the "welcome" message.  This
1846      * may cause us to suspend all threads.
1847      */
1848     if (dvmJdwpIsActive(gDvm.jdwpState)) {
1849         //dvmChangeStatus(NULL, THREAD_RUNNING);
1850         if (!dvmJdwpPostVMStart(gDvm.jdwpState, gDvm.jdwpSuspend)) {
1851             ALOGW("WARNING: failed to post 'start' message to debugger");
1852             /* keep going */
1853         }
1854         //dvmChangeStatus(NULL, THREAD_NATIVE);
1855     }
1856
1857     return true;
1858 }
1859
1860 /*
1861  * An alternative to JNI_CreateJavaVM/dvmStartup that does the first bit
1862  * of initialization and then returns with "initializing" still set.  (Used
1863  * by DexOpt command-line utility.)
1864  *
1865  * Attempting to use JNI or internal natives will fail.  It's best
1866  * if no bytecode gets executed, which means no <clinit>, which means
1867  * no exception-throwing.  (In practice we need to initialize Class and
1868  * Object, and probably some exception classes.)
1869  *
1870  * Returns 0 on success.
1871  */
1872 int dvmPrepForDexOpt(const char* bootClassPath, DexOptimizerMode dexOptMode,
1873     DexClassVerifyMode verifyMode, int dexoptFlags)
1874 {
1875     gDvm.initializing = true;
1876     gDvm.optimizing = true;
1877
1878     /* configure signal handling */
1879     blockSignals();
1880
1881     /* set some defaults */
1882     setCommandLineDefaults();
1883     free(gDvm.bootClassPathStr);
1884     gDvm.bootClassPathStr = strdup(bootClassPath);
1885
1886     /* set opt/verify modes */
1887     gDvm.dexOptMode = dexOptMode;
1888     gDvm.classVerifyMode = verifyMode;
1889     gDvm.generateRegisterMaps = (dexoptFlags & DEXOPT_GEN_REGISTER_MAPS) != 0;
1890     if (dexoptFlags & DEXOPT_SMP) {
1891         assert((dexoptFlags & DEXOPT_UNIPROCESSOR) == 0);
1892         gDvm.dexOptForSmp = true;
1893     } else if (dexoptFlags & DEXOPT_UNIPROCESSOR) {
1894         gDvm.dexOptForSmp = false;
1895     } else {
1896         gDvm.dexOptForSmp = (ANDROID_SMP != 0);
1897     }
1898
1899     /*
1900      * Initialize the heap, some basic thread control mutexes, and
1901      * get the bootclasspath prepped.
1902      *
1903      * We can't load any classes yet because we may not yet have a source
1904      * for things like java.lang.Object and java.lang.Class.
1905      */
1906     if (!dvmGcStartup())
1907         goto fail;
1908     if (!dvmThreadStartup())
1909         goto fail;
1910     if (!dvmInlineNativeStartup())
1911         goto fail;
1912     if (!dvmRegisterMapStartup())
1913         goto fail;
1914     if (!dvmInstanceofStartup())
1915         goto fail;
1916     if (!dvmClassStartup())
1917         goto fail;
1918
1919     /*
1920      * We leave gDvm.initializing set to "true" so that, if we're not
1921      * able to process the "core" classes, we don't go into a death-spin
1922      * trying to throw a "class not found" exception.
1923      */
1924
1925     return 0;
1926
1927 fail:
1928     dvmShutdown();
1929     return 1;
1930 }
1931
1932
1933 /*
1934  * All threads have stopped.  Finish the shutdown procedure.
1935  *
1936  * We can also be called if startup fails partway through, so be prepared
1937  * to deal with partially initialized data.
1938  *
1939  * Free any storage allocated in gGlobals.
1940  *
1941  * We can't dlclose() shared libs we've loaded, because it's possible a
1942  * thread not associated with the VM is running code in one.
1943  *
1944  * This is called from the JNI DestroyJavaVM function, which can be
1945  * called from any thread.  (In practice, this will usually run in the
1946  * same thread that started the VM, a/k/a the main thread, but we don't
1947  * want to assume that.)
1948  */
1949 void dvmShutdown()
1950 {
1951     ALOGV("VM shutting down");
1952
1953     if (CALC_CACHE_STATS)
1954         dvmDumpAtomicCacheStats(gDvm.instanceofCache);
1955
1956     /*
1957      * Stop our internal threads.
1958      */
1959     dvmGcThreadShutdown();
1960
1961     if (gDvm.jdwpState != NULL)
1962         dvmJdwpShutdown(gDvm.jdwpState);
1963     free(gDvm.jdwpHost);
1964     gDvm.jdwpHost = NULL;
1965     free(gDvm.jniTrace);
1966     gDvm.jniTrace = NULL;
1967     free(gDvm.stackTraceFile);
1968     gDvm.stackTraceFile = NULL;
1969
1970     /* tell signal catcher to shut down if it was started */
1971     dvmSignalCatcherShutdown();
1972
1973     /* shut down stdout/stderr conversion */
1974     dvmStdioConverterShutdown();
1975
1976 #ifdef WITH_JIT
1977     if (gDvm.executionMode == kExecutionModeJit) {
1978         /* shut down the compiler thread */
1979         dvmCompilerShutdown();
1980     }
1981 #endif
1982
1983     /*
1984      * Kill any daemon threads that still exist.  Actively-running threads
1985      * are likely to crash the process if they continue to execute while
1986      * the VM shuts down.
1987      */
1988     dvmSlayDaemons();
1989
1990     if (gDvm.verboseShutdown)
1991         ALOGD("VM cleaning up");
1992
1993     dvmDebuggerShutdown();
1994     dvmProfilingShutdown();
1995     dvmJniShutdown();
1996     dvmStringInternShutdown();
1997     dvmThreadShutdown();
1998     dvmClassShutdown();
1999     dvmRegisterMapShutdown();
2000     dvmInstanceofShutdown();
2001     dvmInlineNativeShutdown();
2002     dvmGcShutdown();
2003     dvmAllocTrackerShutdown();
2004
2005     /* these must happen AFTER dvmClassShutdown has walked through class data */
2006     dvmNativeShutdown();
2007     dvmInternalNativeShutdown();
2008
2009     dvmFreeInlineSubsTable();
2010
2011     free(gDvm.bootClassPathStr);
2012     free(gDvm.classPathStr);
2013     delete gDvm.properties;
2014
2015     freeAssertionCtrl();
2016
2017     dvmQuasiAtomicsShutdown();
2018
2019     /*
2020      * We want valgrind to report anything we forget to free as "definitely
2021      * lost".  If there's a pointer in the global chunk, it would be reported
2022      * as "still reachable".  Erasing the memory fixes this.
2023      *
2024      * This must be erased to zero if we want to restart the VM within this
2025      * process.
2026      */
2027     memset(&gDvm, 0xcd, sizeof(gDvm));
2028 }
2029
2030
2031 /*
2032  * fprintf() wrapper that calls through the JNI-specified vfprintf hook if
2033  * one was specified.
2034  */
2035 int dvmFprintf(FILE* fp, const char* format, ...)
2036 {
2037     va_list args;
2038     int result;
2039
2040     va_start(args, format);
2041     if (gDvm.vfprintfHook != NULL)
2042         result = (*gDvm.vfprintfHook)(fp, format, args);
2043     else
2044         result = vfprintf(fp, format, args);
2045     va_end(args);
2046
2047     return result;
2048 }
2049
2050 #ifdef __GLIBC__
2051 #include <execinfo.h>
2052 /*
2053  * glibc-only stack dump function.  Requires link with "--export-dynamic".
2054  *
2055  * TODO: move this into libs/cutils and make it work for all platforms.
2056  */
2057 void dvmPrintNativeBackTrace()
2058 {
2059     size_t MAX_STACK_FRAMES = 64;
2060     void* stackFrames[MAX_STACK_FRAMES];
2061     size_t frameCount = backtrace(stackFrames, MAX_STACK_FRAMES);
2062
2063     /*
2064      * TODO: in practice, we may find that we should use backtrace_symbols_fd
2065      * to avoid allocation, rather than use our own custom formatting.
2066      */
2067     char** strings = backtrace_symbols(stackFrames, frameCount);
2068     if (strings == NULL) {
2069         ALOGE("backtrace_symbols failed: %s", strerror(errno));
2070         return;
2071     }
2072
2073     size_t i;
2074     for (i = 0; i < frameCount; ++i) {
2075         ALOGW("#%-2d %s", i, strings[i]);
2076     }
2077     free(strings);
2078 }
2079 #else
2080 void dvmPrintNativeBackTrace() {
2081     /* Hopefully, you're on an Android device and debuggerd will do this. */
2082 }
2083 #endif
2084
2085 /*
2086  * Abort the VM.  We get here on fatal errors.  Try very hard not to use
2087  * this; whenever possible, return an error to somebody responsible.
2088  */
2089 void dvmAbort()
2090 {
2091     /*
2092      * Leave gDvm.lastMessage on the stack frame which can be decoded in the
2093      * tombstone file. This is for situations where we only have tombstone files
2094      * but no logs (ie b/5372634).
2095      *
2096      * For example, in the tombstone file you usually see this:
2097      *
2098      *   #00  pc 00050ef2  /system/lib/libdvm.so (dvmAbort)
2099      *   #01  pc 00077670  /system/lib/libdvm.so (_Z15dvmClassStartupv)
2100      *     :
2101      *
2102      * stack:
2103      *     :
2104      * #00 beed2658  00000000
2105      *     beed265c  7379732f
2106      *     beed2660  2f6d6574
2107      *     beed2664  6d617266
2108      *     beed2668  726f7765
2109      *     beed266c  6f632f6b
2110      *     beed2670  6a2e6572
2111      *     beed2674  00007261
2112      *     beed2678  00000000
2113      *
2114      * The ascii values between beed265c and beed2674 belongs to messageBuffer
2115      * and it can be decoded as "/system/framework/core.jar".
2116      */
2117     const int messageLength = 512;
2118     char messageBuffer[messageLength] = {0};
2119     int result = 0;
2120
2121     snprintf(messageBuffer, messageLength, "%s", gDvm.lastMessage);
2122
2123     /* So that messageBuffer[] looks like useful stuff to the compiler */
2124     for (int i = 0; i < messageLength && messageBuffer[i]; i++) {
2125         result += messageBuffer[i];
2126     }
2127
2128     ALOGE("VM aborting");
2129
2130     fflush(NULL);       // flush all open file buffers
2131
2132     /* JNI-supplied abort hook gets right of first refusal */
2133     if (gDvm.abortHook != NULL)
2134         (*gDvm.abortHook)();
2135
2136     /*
2137      * On the device, debuggerd will give us a stack trace.
2138      * On the host, we have to help ourselves.
2139      */
2140     dvmPrintNativeBackTrace();
2141
2142     abort();
2143
2144     /* notreached */
2145 }