runtime.h revision 07d83c7a25022064ac0a8dac4fe2a7a38681fa4b
12faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes/*
22faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * Copyright (C) 2011 The Android Open Source Project
32faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes *
42faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * Licensed under the Apache License, Version 2.0 (the "License");
52faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * you may not use this file except in compliance with the License.
62faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * You may obtain a copy of the License at
72faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes *
82faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes *      http://www.apache.org/licenses/LICENSE-2.0
92faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes *
102faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * Unless required by applicable law or agreed to in writing, software
112faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * distributed under the License is distributed on an "AS IS" BASIS,
122faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
132faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * See the License for the specific language governing permissions and
142faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * limitations under the License.
152faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes */
167b21670581d13db32f1384a3b2692bcfc8f57320Carl Shapiro
17fc0e3219edc9a5bf81b166e82fd5db2796eb6a0dBrian Carlstrom#ifndef ART_RUNTIME_RUNTIME_H_
18fc0e3219edc9a5bf81b166e82fd5db2796eb6a0dBrian Carlstrom#define ART_RUNTIME_RUNTIME_H_
196b6b5f0e67ce03f38223a525612955663bc1799bCarl Shapiro
20a0e180632411f7fe0edf454e571c42209ee7b540Elliott Hughes#include <jni.h>
21c5f7c91ab89055cffb573fff7e06dbdd860bccedElliott Hughes#include <stdio.h>
22c5f7c91ab89055cffb573fff7e06dbdd860bccedElliott Hughes
23e27955ca3ca960928d4dbd6cb79711fce06950b3Elliott Hughes#include <iosfwd>
24799eb3a5555254427db269921042419bc30d4d86Hiroshi Yamauchi#include <set>
256ea095ad30bf13cc00b4fee7afbbe4731a349c83Brian Carlstrom#include <string>
26fc322c72d7a89a6f7a05c8bdc232d780aecd9232Carl Shapiro#include <utility>
276ea095ad30bf13cc00b4fee7afbbe4731a349c83Brian Carlstrom#include <vector>
28578bbdc684db8ed68e9fedbc678669d27fa68b6eBrian Carlstrom
29bad0267eaab9d6a522d05469ff90501deefdb88bMathieu Chartier#include "base/allocator.h"
30a59dd80f9f48cb750d329d4d4af2d99d72b484d1Alex Light#include "compiler_callbacks.h"
3194f7b49578b6aaa80de8ffed230648d601393905Hiroshi Yamauchi#include "gc_root.h"
3262d6c772205b8859f0ebf7ad105402ec4c3e2e01Ian Rogers#include "instrumentation.h"
33576ca0cd692c0b6ae70e776de91015b8ff000a08Ian Rogers#include "instruction_set.h"
3400f7d0eaa6bd93d33bf0c1429bf4ba0b3f28abacIan Rogers#include "jobject_comparator.h"
3583c8ee000d525017ead8753fce6bc1020249b96aMathieu Chartier#include "object_callbacks.h"
36576ca0cd692c0b6ae70e776de91015b8ff000a08Ian Rogers#include "offsets.h"
37c1b643cc6ac45dbd0eabdcd7425c7e86006c27d6Calin Juravle#include "profiler_options.h"
387624d25dad2d1ba25969ae704fccf68649103ae5Vladimir Marko#include "quick/quick_method_frame_info.h"
399d5ccec86d60c9ddd811836b9a2bc28d0b3d11feElliott Hughes#include "runtime_stats.h"
40a0e180632411f7fe0edf454e571c42209ee7b540Elliott Hughes#include "safe_map.h"
41b557353b22c728eecbd1c68593b482622c7782a8Carl Shapiro
426b6b5f0e67ce03f38223a525612955663bc1799bCarl Shapironamespace art {
437b21670581d13db32f1384a3b2692bcfc8f57320Carl Shapiro
441d54e73444e017d3a65234e0f193846f3e27472bIan Rogersnamespace gc {
451d54e73444e017d3a65234e0f193846f3e27472bIan Rogers  class Heap;
46576ca0cd692c0b6ae70e776de91015b8ff000a08Ian Rogers}  // namespace gc
472dd0e2cea360bc9206eb88ecc40d259e796c239dIan Rogersnamespace mirror {
48ea46f950e7a51585db293cd7f047de190a482414Brian Carlstrom  class ArtMethod;
491d54e73444e017d3a65234e0f193846f3e27472bIan Rogers  class ClassLoader;
50d2fe10a3a34af171bf1631219cd2d6ff6b7778b5Sebastien Hertz  class Array;
5188474b416eb257078e590bf9bc7957cee604a186Jeff Hao  template<class T> class ObjectArray;
521d54e73444e017d3a65234e0f193846f3e27472bIan Rogers  template<class T> class PrimitiveArray;
531d54e73444e017d3a65234e0f193846f3e27472bIan Rogers  typedef PrimitiveArray<int8_t> ByteArray;
541d54e73444e017d3a65234e0f193846f3e27472bIan Rogers  class String;
551d54e73444e017d3a65234e0f193846f3e27472bIan Rogers  class Throwable;
562dd0e2cea360bc9206eb88ecc40d259e796c239dIan Rogers}  // namespace mirror
57c528dba35b5faece51ca658fc008b688f8b690adMathieu Chartiernamespace verifier {
58c528dba35b5faece51ca658fc008b688f8b690adMathieu Chartierclass MethodVerifier;
59c528dba35b5faece51ca658fc008b688f8b690adMathieu Chartier}
6061e019d291583029c01b61b93bea750f2b663c37Carl Shapiroclass ClassLinker;
61fc322c72d7a89a6f7a05c8bdc232d780aecd9232Carl Shapiroclass DexFile;
62cf4c6c41b0084dc4567ff709fb8ce9ebd72b26acElliott Hughesclass InternTable;
63b48b9eb6d181a1f52e2e605cf26a21505f1d46edIan Rogersclass JavaVMExt;
64c33a32bccc4c66ed82ce3a580b16636399385cb4Elliott Hughesclass MonitorList;
65ef7d42fca18c16fbaf103822ad16f23246e2905dIan Rogersclass MonitorPool;
66576ca0cd692c0b6ae70e776de91015b8ff000a08Ian Rogersclass NullPointerHandler;
67e27955ca3ca960928d4dbd6cb79711fce06950b3Elliott Hughesclass SignalCatcher;
68576ca0cd692c0b6ae70e776de91015b8ff000a08Ian Rogersclass StackOverflowHandler;
69576ca0cd692c0b6ae70e776de91015b8ff000a08Ian Rogersclass SuspensionHandler;
7061e019d291583029c01b61b93bea750f2b663c37Carl Shapiroclass ThreadList;
712692b573a56cd63a3c8c8aa1636e3766b6d8c9c4jeffhaoclass Trace;
72d2fe10a3a34af171bf1631219cd2d6ff6b7778b5Sebastien Hertzclass Transaction;
7361e019d291583029c01b61b93bea750f2b663c37Carl Shapiro
74e63db27db913f1a88e2095a1ee8239b2bb9124e8Ian Rogerstypedef std::vector<std::pair<std::string, const void*>> RuntimeOptions;
75e63db27db913f1a88e2095a1ee8239b2bb9124e8Ian Rogers
76661974a5561e5ccdfbac8cb5d8df8b7e6f3483b8Mathieu Chartier// Not all combinations of flags are valid. You may not visit all roots as well as the new roots
77661974a5561e5ccdfbac8cb5d8df8b7e6f3483b8Mathieu Chartier// (no logical reason to do this). You also may not start logging new roots and stop logging new
78661974a5561e5ccdfbac8cb5d8df8b7e6f3483b8Mathieu Chartier// roots (also no logical reason to do this).
79893263b7d5bc2ca43a91ecb8071867f5134fc60aMathieu Chartierenum VisitRootFlags : uint8_t {
80893263b7d5bc2ca43a91ecb8071867f5134fc60aMathieu Chartier  kVisitRootFlagAllRoots = 0x1,
81893263b7d5bc2ca43a91ecb8071867f5134fc60aMathieu Chartier  kVisitRootFlagNewRoots = 0x2,
82893263b7d5bc2ca43a91ecb8071867f5134fc60aMathieu Chartier  kVisitRootFlagStartLoggingNewRoots = 0x4,
83893263b7d5bc2ca43a91ecb8071867f5134fc60aMathieu Chartier  kVisitRootFlagStopLoggingNewRoots = 0x8,
84893263b7d5bc2ca43a91ecb8071867f5134fc60aMathieu Chartier  kVisitRootFlagClearRootLog = 0x10,
85893263b7d5bc2ca43a91ecb8071867f5134fc60aMathieu Chartier};
86893263b7d5bc2ca43a91ecb8071867f5134fc60aMathieu Chartier
871fb8620309a4e94d11879aabc33364acfa733904Carl Shapiroclass Runtime {
887b21670581d13db32f1384a3b2692bcfc8f57320Carl Shapiro public:
8961e019d291583029c01b61b93bea750f2b663c37Carl Shapiro  // Creates and initializes a new runtime.
90e63db27db913f1a88e2095a1ee8239b2bb9124e8Ian Rogers  static bool Create(const RuntimeOptions& options, bool ignore_unrecognized)
91b726dcb581bf72da46527378ccb6889020f0e6e9Ian Rogers      SHARED_TRYLOCK_FUNCTION(true, Locks::mutator_lock_);
9269b15fb098162f19a4c20e6dccdcead04d9c77f0Brian Carlstrom
93d9c67be7c116875d96b31e640ad47d587b205605Elliott Hughes  bool IsCompiler() const {
942b5eaa2b49f7489bafdadc4b4463ae27e4261817Vladimir Marko    return compiler_callbacks_ != nullptr;
952b5eaa2b49f7489bafdadc4b4463ae27e4261817Vladimir Marko  }
962b5eaa2b49f7489bafdadc4b4463ae27e4261817Vladimir Marko
97a59dd80f9f48cb750d329d4d4af2d99d72b484d1Alex Light  bool CanRelocate() const {
98a59dd80f9f48cb750d329d4d4af2d99d72b484d1Alex Light    return !IsCompiler() || compiler_callbacks_->IsRelocationPossible();
99a59dd80f9f48cb750d329d4d4af2d99d72b484d1Alex Light  }
100a59dd80f9f48cb750d329d4d4af2d99d72b484d1Alex Light
101a59dd80f9f48cb750d329d4d4af2d99d72b484d1Alex Light  bool ShouldRelocate() const {
102a59dd80f9f48cb750d329d4d4af2d99d72b484d1Alex Light    return must_relocate_ && CanRelocate();
103a59dd80f9f48cb750d329d4d4af2d99d72b484d1Alex Light  }
104a59dd80f9f48cb750d329d4d4af2d99d72b484d1Alex Light
105a59dd80f9f48cb750d329d4d4af2d99d72b484d1Alex Light  bool MustRelocateIfPossible() const {
106a59dd80f9f48cb750d329d4d4af2d99d72b484d1Alex Light    return must_relocate_;
107a59dd80f9f48cb750d329d4d4af2d99d72b484d1Alex Light  }
108a59dd80f9f48cb750d329d4d4af2d99d72b484d1Alex Light
1094fcdc94d22a4608e355aa8df36240181149d10e8Nicolas Geoffray  bool IsDex2OatEnabled() const {
11064ad14dbe2225441fb7734bf6d89358d96692eeaAlex Light    return dex2oat_enabled_ && IsImageDex2OatEnabled();
11164ad14dbe2225441fb7734bf6d89358d96692eeaAlex Light  }
11264ad14dbe2225441fb7734bf6d89358d96692eeaAlex Light
11364ad14dbe2225441fb7734bf6d89358d96692eeaAlex Light  bool IsImageDex2OatEnabled() const {
11464ad14dbe2225441fb7734bf6d89358d96692eeaAlex Light    return image_dex2oat_enabled_;
1154fcdc94d22a4608e355aa8df36240181149d10e8Nicolas Geoffray  }
1164fcdc94d22a4608e355aa8df36240181149d10e8Nicolas Geoffray
1172b5eaa2b49f7489bafdadc4b4463ae27e4261817Vladimir Marko  CompilerCallbacks* GetCompilerCallbacks() {
1182b5eaa2b49f7489bafdadc4b4463ae27e4261817Vladimir Marko    return compiler_callbacks_;
119d9c67be7c116875d96b31e640ad47d587b205605Elliott Hughes  }
120d9c67be7c116875d96b31e640ad47d587b205605Elliott Hughes
121caabb1b77b4a55eb1bb45ebcd3071c9ea01dd3cfBrian Carlstrom  bool IsZygote() const {
122caabb1b77b4a55eb1bb45ebcd3071c9ea01dd3cfBrian Carlstrom    return is_zygote_;
123caabb1b77b4a55eb1bb45ebcd3071c9ea01dd3cfBrian Carlstrom  }
124caabb1b77b4a55eb1bb45ebcd3071c9ea01dd3cfBrian Carlstrom
1258718359763aa3dcd0033a2d2e67e0cb145fb9c53Anwar Ghuloum  bool IsExplicitGcDisabled() const {
1268718359763aa3dcd0033a2d2e67e0cb145fb9c53Anwar Ghuloum    return is_explicit_gc_disabled_;
1278718359763aa3dcd0033a2d2e67e0cb145fb9c53Anwar Ghuloum  }
1288718359763aa3dcd0033a2d2e67e0cb145fb9c53Anwar Ghuloum
12912e6d7446384a7a5fbec25fe116bbb271c62842eTsu Chiang Chuang  std::string GetCompilerExecutable() const;
130a59dd80f9f48cb750d329d4d4af2d99d72b484d1Alex Light  std::string GetPatchoatExecutable() const;
13112e6d7446384a7a5fbec25fe116bbb271c62842eTsu Chiang Chuang
1326449c62e40ef3a9bb75f664f922555affb532ee4Brian Carlstrom  const std::vector<std::string>& GetCompilerOptions() const {
1336449c62e40ef3a9bb75f664f922555affb532ee4Brian Carlstrom    return compiler_options_;
134a024a0686c3b0fea13f362bff70d65981e5febc5buzbee  }
135a024a0686c3b0fea13f362bff70d65981e5febc5buzbee
1366449c62e40ef3a9bb75f664f922555affb532ee4Brian Carlstrom  const std::vector<std::string>& GetImageCompilerOptions() const {
1376449c62e40ef3a9bb75f664f922555affb532ee4Brian Carlstrom    return image_compiler_options_;
1388447d84d847d4562d7a7bce62768c27e7d20a9aaAnwar Ghuloum  }
1398447d84d847d4562d7a7bce62768c27e7d20a9aaAnwar Ghuloum
14031d8f5295c24730a57cb36cbc41197f0b7e8397cBrian Carlstrom  const std::string& GetImageLocation() const {
14131d8f5295c24730a57cb36cbc41197f0b7e8397cBrian Carlstrom    return image_location_;
14231d8f5295c24730a57cb36cbc41197f0b7e8397cBrian Carlstrom  }
14331d8f5295c24730a57cb36cbc41197f0b7e8397cBrian Carlstrom
144c1b643cc6ac45dbd0eabdcd7425c7e86006c27d6Calin Juravle  const ProfilerOptions& GetProfilerOptions() const {
145c1b643cc6ac45dbd0eabdcd7425c7e86006c27d6Calin Juravle    return profiler_options_;
146c1b643cc6ac45dbd0eabdcd7425c7e86006c27d6Calin Juravle  }
147c1b643cc6ac45dbd0eabdcd7425c7e86006c27d6Calin Juravle
14869b15fb098162f19a4c20e6dccdcead04d9c77f0Brian Carlstrom  // Starts a runtime, which may cause threads to be started and code to run.
149bd86bccf1b47f1151842152ee52cf5d46d6b34abBrian Carlstrom  bool Start() UNLOCK_FUNCTION(Locks::mutator_lock_);
1502ed144c2b49ae1da6c464d7a1be0062870530802Carl Shapiro
151590fee9e8972f872301c2d16a575d579ee564beeMathieu Chartier  bool IsShuttingDown(Thread* self);
152590fee9e8972f872301c2d16a575d579ee564beeMathieu Chartier  bool IsShuttingDownLocked() const EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) {
1539af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers    return shutting_down_;
1549af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers  }
1559af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers
156120f1c74a9768e958377b6c97897511b27ae58c8Ian Rogers  size_t NumberOfThreadsBeingBorn() const EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) {
157120f1c74a9768e958377b6c97897511b27ae58c8Ian Rogers    return threads_being_born_;
158120f1c74a9768e958377b6c97897511b27ae58c8Ian Rogers  }
159120f1c74a9768e958377b6c97897511b27ae58c8Ian Rogers
160120f1c74a9768e958377b6c97897511b27ae58c8Ian Rogers  void StartThreadBirth() EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) {
161120f1c74a9768e958377b6c97897511b27ae58c8Ian Rogers    threads_being_born_++;
162120f1c74a9768e958377b6c97897511b27ae58c8Ian Rogers  }
163120f1c74a9768e958377b6c97897511b27ae58c8Ian Rogers
164120f1c74a9768e958377b6c97897511b27ae58c8Ian Rogers  void EndThreadBirth() EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_);
165120f1c74a9768e958377b6c97897511b27ae58c8Ian Rogers
1669af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers  bool IsStarted() const {
1679af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers    return started_;
1689af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers  }
169dcc247493fd8fb243e335c3ec08e5e625896a47cElliott Hughes
1707664f5cd118b355a5fe0c7536cb48ac991ed2b62Mathieu Chartier  bool IsFinishedStarting() const {
1717664f5cd118b355a5fe0c7536cb48ac991ed2b62Mathieu Chartier    return finished_starting_;
1727664f5cd118b355a5fe0c7536cb48ac991ed2b62Mathieu Chartier  }
1737664f5cd118b355a5fe0c7536cb48ac991ed2b62Mathieu Chartier
1742ed144c2b49ae1da6c464d7a1be0062870530802Carl Shapiro  static Runtime* Current() {
1752ed144c2b49ae1da6c464d7a1be0062870530802Carl Shapiro    return instance_;
1762ed144c2b49ae1da6c464d7a1be0062870530802Carl Shapiro  }
17761e019d291583029c01b61b93bea750f2b663c37Carl Shapiro
178ffe6736397d17457188727510f0a2953f69a383aElliott Hughes  // Aborts semi-cleanly. Used in the implementation of LOG(FATAL), which most
179ffe6736397d17457188727510f0a2953f69a383aElliott Hughes  // callers should prefer.
1807223d44a4893522e90d00bca38b119f710e55122Ian Rogers  [[noreturn]] static void Abort() LOCKS_EXCLUDED(Locks::abort_lock_);
181ffe6736397d17457188727510f0a2953f69a383aElliott Hughes
182365c10235438607541fa2259a5fec48061b90bd8Ian Rogers  // Returns the "main" ThreadGroup, used when attaching user threads.
183034f76b91225bea769d6185d7dad5e243af4ffa0Brian Carlstrom  jobject GetMainThreadGroup() const;
184365c10235438607541fa2259a5fec48061b90bd8Ian Rogers
185365c10235438607541fa2259a5fec48061b90bd8Ian Rogers  // Returns the "system" ThreadGroup, used when attaching our internal threads.
186034f76b91225bea769d6185d7dad5e243af4ffa0Brian Carlstrom  jobject GetSystemThreadGroup() const;
187365c10235438607541fa2259a5fec48061b90bd8Ian Rogers
188ce88853ab316c70ef7b598978a3609611db60552Brian Carlstrom  // Returns the system ClassLoader which represents the CLASSPATH.
189ce88853ab316c70ef7b598978a3609611db60552Brian Carlstrom  jobject GetSystemClassLoader() const;
190ce88853ab316c70ef7b598978a3609611db60552Brian Carlstrom
191462c94449720e0dc6b93d7138d835d345ccf67aeElliott Hughes  // Attaches the calling native thread to the runtime.
192664bebf92eb2151b9b570ccd42ac4b6056c3ea9cMathieu Chartier  bool AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group,
193664bebf92eb2151b9b570ccd42ac4b6056c3ea9cMathieu Chartier                           bool create_peer);
194b557353b22c728eecbd1c68593b482622c7782a8Carl Shapiro
195bf86d0438e9ef9c145ebcf16a2e74c4efaa2686aElliott Hughes  void CallExitHook(jint status);
196bf86d0438e9ef9c145ebcf16a2e74c4efaa2686aElliott Hughes
19761e019d291583029c01b61b93bea750f2b663c37Carl Shapiro  // Detaches the current native thread from the runtime.
198b726dcb581bf72da46527378ccb6889020f0e6e9Ian Rogers  void DetachCurrentThread() LOCKS_EXCLUDED(Locks::mutator_lock_);
19961e019d291583029c01b61b93bea750f2b663c37Carl Shapiro
2007b078e8c04f3e1451dbdd18543c8b9692b5b067eIan Rogers  void DumpForSigQuit(std::ostream& os);
20121a5bf2dc8c9cb3fbe5a30a88d1149c328e3aacaElliott Hughes  void DumpLockHolders(std::ostream& os);
202e27955ca3ca960928d4dbd6cb79711fce06950b3Elliott Hughes
20361e019d291583029c01b61b93bea750f2b663c37Carl Shapiro  ~Runtime();
204b557353b22c728eecbd1c68593b482622c7782a8Carl Shapiro
205a004aa933a58428489e42d77f707c2b063b73747Brian Carlstrom  const std::string& GetBootClassPathString() const {
206a004aa933a58428489e42d77f707c2b063b73747Brian Carlstrom    return boot_class_path_string_;
207b765be0d656c3073402693aeaf64e95a0e49f218Brian Carlstrom  }
208b765be0d656c3073402693aeaf64e95a0e49f218Brian Carlstrom
209a004aa933a58428489e42d77f707c2b063b73747Brian Carlstrom  const std::string& GetClassPathString() const {
210a004aa933a58428489e42d77f707c2b063b73747Brian Carlstrom    return class_path_string_;
2117a90959d4ef7a69f3bcb7b8763f646e12d9267d3Carl Shapiro  }
2127a90959d4ef7a69f3bcb7b8763f646e12d9267d3Carl Shapiro
213a004aa933a58428489e42d77f707c2b063b73747Brian Carlstrom  ClassLinker* GetClassLinker() const {
214a004aa933a58428489e42d77f707c2b063b73747Brian Carlstrom    return class_linker_;
2157ede61eceed2f8da14a4fff05c57c748c160d57fElliott Hughes  }
2167ede61eceed2f8da14a4fff05c57c748c160d57fElliott Hughes
2177ede61eceed2f8da14a4fff05c57c748c160d57fElliott Hughes  size_t GetDefaultStackSize() const {
2187ede61eceed2f8da14a4fff05c57c748c160d57fElliott Hughes    return default_stack_size_;
2197ede61eceed2f8da14a4fff05c57c748c160d57fElliott Hughes  }
2207ede61eceed2f8da14a4fff05c57c748c160d57fElliott Hughes
2211d54e73444e017d3a65234e0f193846f3e27472bIan Rogers  gc::Heap* GetHeap() const {
222b3bd5f07884f5a1f2b84224363b1372d7c28d447Elliott Hughes    return heap_;
223b3bd5f07884f5a1f2b84224363b1372d7c28d447Elliott Hughes  }
224b3bd5f07884f5a1f2b84224363b1372d7c28d447Elliott Hughes
225cf4c6c41b0084dc4567ff709fb8ce9ebd72b26acElliott Hughes  InternTable* GetInternTable() const {
226e810452722ac83b294d1f7aa80bdd88e547d5af0Brian Carlstrom    DCHECK(intern_table_ != NULL);
227cf4c6c41b0084dc4567ff709fb8ce9ebd72b26acElliott Hughes    return intern_table_;
228cf4c6c41b0084dc4567ff709fb8ce9ebd72b26acElliott Hughes  }
229cf4c6c41b0084dc4567ff709fb8ce9ebd72b26acElliott Hughes
2300af5543f8ea20c3e655b2d748a1b7dcf283792feElliott Hughes  JavaVMExt* GetJavaVM() const {
231c5f7c91ab89055cffb573fff7e06dbdd860bccedElliott Hughes    return java_vm_;
232f2682d5a6ce0f7de58da8fd4ec8aec200c43b92eElliott Hughes  }
233f2682d5a6ce0f7de58da8fd4ec8aec200c43b92eElliott Hughes
234d9c4fc94fa618617f94e1de9af5f034549100753Ian Rogers  size_t GetMaxSpinsBeforeThinkLockInflation() const {
235d9c4fc94fa618617f94e1de9af5f034549100753Ian Rogers    return max_spins_before_thin_lock_inflation_;
236d9c4fc94fa618617f94e1de9af5f034549100753Ian Rogers  }
237d9c4fc94fa618617f94e1de9af5f034549100753Ian Rogers
238c33a32bccc4c66ed82ce3a580b16636399385cb4Elliott Hughes  MonitorList* GetMonitorList() const {
239c33a32bccc4c66ed82ce3a580b16636399385cb4Elliott Hughes    return monitor_list_;
240c33a32bccc4c66ed82ce3a580b16636399385cb4Elliott Hughes  }
241c33a32bccc4c66ed82ce3a580b16636399385cb4Elliott Hughes
242ef7d42fca18c16fbaf103822ad16f23246e2905dIan Rogers  MonitorPool* GetMonitorPool() const {
243ef7d42fca18c16fbaf103822ad16f23246e2905dIan Rogers    return monitor_pool_;
244ef7d42fca18c16fbaf103822ad16f23246e2905dIan Rogers  }
245ef7d42fca18c16fbaf103822ad16f23246e2905dIan Rogers
246c0542af3e2170143ba40d89136e284997e16bf64Ian Rogers  // Is the given object the special object used to mark a cleared JNI weak global?
247c0542af3e2170143ba40d89136e284997e16bf64Ian Rogers  bool IsClearedJniWeakGlobal(mirror::Object* obj) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
248c0542af3e2170143ba40d89136e284997e16bf64Ian Rogers
249c0542af3e2170143ba40d89136e284997e16bf64Ian Rogers  // Get the special object used to mark a cleared JNI weak global.
250c0542af3e2170143ba40d89136e284997e16bf64Ian Rogers  mirror::Object* GetClearedJniWeakGlobal() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
251c0542af3e2170143ba40d89136e284997e16bf64Ian Rogers
252ab088118d33caafb00815ab72ac0fd7374169f64Hiroshi Yamauchi  mirror::Throwable* GetPreAllocatedOutOfMemoryError() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
253225f5a1df25241babd16cdba54056b9e2cd166a2Elliott Hughes
25463557459a4098294a9ff44d035241de2966047c0Ian Rogers  mirror::Throwable* GetPreAllocatedNoClassDefFoundError()
25563557459a4098294a9ff44d035241de2966047c0Ian Rogers      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
25663557459a4098294a9ff44d035241de2966047c0Ian Rogers
257225f5a1df25241babd16cdba54056b9e2cd166a2Elliott Hughes  const std::vector<std::string>& GetProperties() const {
258225f5a1df25241babd16cdba54056b9e2cd166a2Elliott Hughes    return properties_;
259225f5a1df25241babd16cdba54056b9e2cd166a2Elliott Hughes  }
260225f5a1df25241babd16cdba54056b9e2cd166a2Elliott Hughes
261d92bec457dc6c506c80e9da6b8e0c958266b5cdcElliott Hughes  ThreadList* GetThreadList() const {
262d92bec457dc6c506c80e9da6b8e0c958266b5cdcElliott Hughes    return thread_list_;
263d92bec457dc6c506c80e9da6b8e0c958266b5cdcElliott Hughes  }
264d92bec457dc6c506c80e9da6b8e0c958266b5cdcElliott Hughes
265491ca9e75fad381468dd7f5fdbff56d1a9738dd7Brian Carlstrom  static const char* GetVersion() {
2662153f93df36b59a61fed15bef8e7304010be04b5Andreas Gampe    return "2.1.0";
2677ede61eceed2f8da14a4fff05c57c748c160d57fElliott Hughes  }
2687ede61eceed2f8da14a4fff05c57c748c160d57fElliott Hughes
269c11d9b8870de5f860b13c84003ade7b3f3125a52Mathieu Chartier  void DisallowNewSystemWeaks() EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_);
270c11d9b8870de5f860b13c84003ade7b3f3125a52Mathieu Chartier  void AllowNewSystemWeaks() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
271c11d9b8870de5f860b13c84003ade7b3f3125a52Mathieu Chartier
2721d54e73444e017d3a65234e0f193846f3e27472bIan Rogers  // Visit all the roots. If only_dirty is true then non-dirty roots won't be visited. If
2731d54e73444e017d3a65234e0f193846f3e27472bIan Rogers  // clean_dirty is true then dirty roots will be marked as non-dirty after visiting.
274893263b7d5bc2ca43a91ecb8071867f5134fc60aMathieu Chartier  void VisitRoots(RootCallback* visitor, void* arg, VisitRootFlags flags = kVisitRootFlagAllRoots)
2751d54e73444e017d3a65234e0f193846f3e27472bIan Rogers      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
2761f87008b165d26541d832ff805250afdc89c253dBrian Carlstrom
2779ebae1f30b84dfd8dab4144f80eebec4f8fc8851Mathieu Chartier  // Visit all of the roots we can do safely do concurrently.
278893263b7d5bc2ca43a91ecb8071867f5134fc60aMathieu Chartier  void VisitConcurrentRoots(RootCallback* visitor, void* arg,
279893263b7d5bc2ca43a91ecb8071867f5134fc60aMathieu Chartier                            VisitRootFlags flags = kVisitRootFlagAllRoots)
280c528dba35b5faece51ca658fc008b688f8b690adMathieu Chartier      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
2819ebae1f30b84dfd8dab4144f80eebec4f8fc8851Mathieu Chartier
282858f1c5fd5e528d0b16040ced74d4636046a42d8Mathieu Chartier  // Visit all of the non thread roots, we can do this with mutators unpaused.
28383c8ee000d525017ead8753fce6bc1020249b96aMathieu Chartier  void VisitNonThreadRoots(RootCallback* visitor, void* arg)
284c528dba35b5faece51ca658fc008b688f8b690adMathieu Chartier      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
285858f1c5fd5e528d0b16040ced74d4636046a42d8Mathieu Chartier
2869ebae1f30b84dfd8dab4144f80eebec4f8fc8851Mathieu Chartier  // Visit all other roots which must be done with mutators suspended.
28783c8ee000d525017ead8753fce6bc1020249b96aMathieu Chartier  void VisitNonConcurrentRoots(RootCallback* visitor, void* arg)
288c528dba35b5faece51ca658fc008b688f8b690adMathieu Chartier      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
2899ebae1f30b84dfd8dab4144f80eebec4f8fc8851Mathieu Chartier
2906aa3df965395566ed6a4fec4af37c2b7577992e9Mathieu Chartier  // Sweep system weaks, the system weak is deleted if the visitor return nullptr. Otherwise, the
2916aa3df965395566ed6a4fec4af37c2b7577992e9Mathieu Chartier  // system weak is updated to be the visitor's returned value.
29283c8ee000d525017ead8753fce6bc1020249b96aMathieu Chartier  void SweepSystemWeaks(IsMarkedCallback* visitor, void* arg)
293ad2541a59c00c2c69e8973088891a2b5257c9780Mathieu Chartier      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
2946aa3df965395566ed6a4fec4af37c2b7577992e9Mathieu Chartier
295893263b7d5bc2ca43a91ecb8071867f5134fc60aMathieu Chartier  // Constant roots are the roots which never change after the runtime is initialized, they only
296893263b7d5bc2ca43a91ecb8071867f5134fc60aMathieu Chartier  // need to be visited once per GC cycle.
297893263b7d5bc2ca43a91ecb8071867f5134fc60aMathieu Chartier  void VisitConstantRoots(RootCallback* callback, void* arg)
298893263b7d5bc2ca43a91ecb8071867f5134fc60aMathieu Chartier      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
299893263b7d5bc2ca43a91ecb8071867f5134fc60aMathieu Chartier
3009af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers  // Returns a special method that calls into a trampoline for runtime method resolution
301e63db27db913f1a88e2095a1ee8239b2bb9124e8Ian Rogers  mirror::ArtMethod* GetResolutionMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
3029af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers
3039af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers  bool HasResolutionMethod() const {
30494f7b49578b6aaa80de8ffed230648d601393905Hiroshi Yamauchi    return !resolution_method_.IsNull();
3059af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers  }
3069af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers
307ea46f950e7a51585db293cd7f047de190a482414Brian Carlstrom  void SetResolutionMethod(mirror::ArtMethod* method) {
30894f7b49578b6aaa80de8ffed230648d601393905Hiroshi Yamauchi    resolution_method_ = GcRoot<mirror::ArtMethod>(method);
3099af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers  }
3109af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers
311ea46f950e7a51585db293cd7f047de190a482414Brian Carlstrom  mirror::ArtMethod* CreateResolutionMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
3121984651929744dd603fd082e23eacd877b9bc177Ian Rogers
313e63db27db913f1a88e2095a1ee8239b2bb9124e8Ian Rogers  // Returns a special method that calls into a trampoline for runtime imt conflicts.
314e63db27db913f1a88e2095a1ee8239b2bb9124e8Ian Rogers  mirror::ArtMethod* GetImtConflictMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
31588474b416eb257078e590bf9bc7957cee604a186Jeff Hao
31688474b416eb257078e590bf9bc7957cee604a186Jeff Hao  bool HasImtConflictMethod() const {
31794f7b49578b6aaa80de8ffed230648d601393905Hiroshi Yamauchi    return !imt_conflict_method_.IsNull();
31888474b416eb257078e590bf9bc7957cee604a186Jeff Hao  }
31988474b416eb257078e590bf9bc7957cee604a186Jeff Hao
32088474b416eb257078e590bf9bc7957cee604a186Jeff Hao  void SetImtConflictMethod(mirror::ArtMethod* method) {
32194f7b49578b6aaa80de8ffed230648d601393905Hiroshi Yamauchi    imt_conflict_method_ = GcRoot<mirror::ArtMethod>(method);
32288474b416eb257078e590bf9bc7957cee604a186Jeff Hao  }
32388474b416eb257078e590bf9bc7957cee604a186Jeff Hao
32488474b416eb257078e590bf9bc7957cee604a186Jeff Hao  mirror::ArtMethod* CreateImtConflictMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
32588474b416eb257078e590bf9bc7957cee604a186Jeff Hao
32688474b416eb257078e590bf9bc7957cee604a186Jeff Hao  // Returns an imt with every entry set to conflict, used as default imt for all classes.
327ab088118d33caafb00815ab72ac0fd7374169f64Hiroshi Yamauchi  mirror::ObjectArray<mirror::ArtMethod>* GetDefaultImt()
328e63db27db913f1a88e2095a1ee8239b2bb9124e8Ian Rogers      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
32988474b416eb257078e590bf9bc7957cee604a186Jeff Hao
33088474b416eb257078e590bf9bc7957cee604a186Jeff Hao  bool HasDefaultImt() const {
33194f7b49578b6aaa80de8ffed230648d601393905Hiroshi Yamauchi    return !default_imt_.IsNull();
33288474b416eb257078e590bf9bc7957cee604a186Jeff Hao  }
33388474b416eb257078e590bf9bc7957cee604a186Jeff Hao
33488474b416eb257078e590bf9bc7957cee604a186Jeff Hao  void SetDefaultImt(mirror::ObjectArray<mirror::ArtMethod>* imt) {
33594f7b49578b6aaa80de8ffed230648d601393905Hiroshi Yamauchi    default_imt_ = GcRoot<mirror::ObjectArray<mirror::ArtMethod>>(imt);
33688474b416eb257078e590bf9bc7957cee604a186Jeff Hao  }
33788474b416eb257078e590bf9bc7957cee604a186Jeff Hao
33888474b416eb257078e590bf9bc7957cee604a186Jeff Hao  mirror::ObjectArray<mirror::ArtMethod>* CreateDefaultImt(ClassLinker* cl)
33988474b416eb257078e590bf9bc7957cee604a186Jeff Hao      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
34088474b416eb257078e590bf9bc7957cee604a186Jeff Hao
341ff1ed4770bf7ff024a807b9f909b1a26abb78341Ian Rogers  // Returns a special method that describes all callee saves being spilled to the stack.
3424f0d07c783afef89703dce32c94440fc8621a29bIan Rogers  enum CalleeSaveType {
3434f0d07c783afef89703dce32c94440fc8621a29bIan Rogers    kSaveAll,
3444f0d07c783afef89703dce32c94440fc8621a29bIan Rogers    kRefsOnly,
3454f0d07c783afef89703dce32c94440fc8621a29bIan Rogers    kRefsAndArgs,
3464f0d07c783afef89703dce32c94440fc8621a29bIan Rogers    kLastCalleeSaveType  // Value used for iteration
3474f0d07c783afef89703dce32c94440fc8621a29bIan Rogers  };
3489af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers
3499af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers  bool HasCalleeSaveMethod(CalleeSaveType type) const {
35094f7b49578b6aaa80de8ffed230648d601393905Hiroshi Yamauchi    return !callee_save_methods_[type].IsNull();
3519af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers  }
3529af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers
353ab088118d33caafb00815ab72ac0fd7374169f64Hiroshi Yamauchi  mirror::ArtMethod* GetCalleeSaveMethod(CalleeSaveType type)
354e63db27db913f1a88e2095a1ee8239b2bb9124e8Ian Rogers      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
355ab088118d33caafb00815ab72ac0fd7374169f64Hiroshi Yamauchi
356ab088118d33caafb00815ab72ac0fd7374169f64Hiroshi Yamauchi  mirror::ArtMethod* GetCalleeSaveMethodUnchecked(CalleeSaveType type)
357e63db27db913f1a88e2095a1ee8239b2bb9124e8Ian Rogers      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
3589af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers
3597624d25dad2d1ba25969ae704fccf68649103ae5Vladimir Marko  QuickMethodFrameInfo GetCalleeSaveMethodFrameInfo(CalleeSaveType type) const {
3607624d25dad2d1ba25969ae704fccf68649103ae5Vladimir Marko    return callee_save_method_frame_infos_[type];
3617624d25dad2d1ba25969ae704fccf68649103ae5Vladimir Marko  }
3627624d25dad2d1ba25969ae704fccf68649103ae5Vladimir Marko
363ab088118d33caafb00815ab72ac0fd7374169f64Hiroshi Yamauchi  QuickMethodFrameInfo GetRuntimeMethodFrameInfo(mirror::ArtMethod* method)
364ab088118d33caafb00815ab72ac0fd7374169f64Hiroshi Yamauchi      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
3657624d25dad2d1ba25969ae704fccf68649103ae5Vladimir Marko
366936b37f3a7f224d990a36b2ec66782a4462180d6Ian Rogers  static size_t GetCalleeSaveMethodOffset(CalleeSaveType type) {
367936b37f3a7f224d990a36b2ec66782a4462180d6Ian Rogers    return OFFSETOF_MEMBER(Runtime, callee_save_methods_[type]);
368936b37f3a7f224d990a36b2ec66782a4462180d6Ian Rogers  }
369936b37f3a7f224d990a36b2ec66782a4462180d6Ian Rogers
3707624d25dad2d1ba25969ae704fccf68649103ae5Vladimir Marko  InstructionSet GetInstructionSet() const {
3717624d25dad2d1ba25969ae704fccf68649103ae5Vladimir Marko    return instruction_set_;
3727624d25dad2d1ba25969ae704fccf68649103ae5Vladimir Marko  }
3734f0d07c783afef89703dce32c94440fc8621a29bIan Rogers
3747624d25dad2d1ba25969ae704fccf68649103ae5Vladimir Marko  void SetInstructionSet(InstructionSet instruction_set);
3759af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers
3767624d25dad2d1ba25969ae704fccf68649103ae5Vladimir Marko  void SetCalleeSaveMethod(mirror::ArtMethod* method, CalleeSaveType type);
37700f7d0eaa6bd93d33bf0c1429bf4ba0b3f28abacIan Rogers
3787624d25dad2d1ba25969ae704fccf68649103ae5Vladimir Marko  mirror::ArtMethod* CreateCalleeSaveMethod(CalleeSaveType type)
379b726dcb581bf72da46527378ccb6889020f0e6e9Ian Rogers      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
380ff1ed4770bf7ff024a807b9f909b1a26abb78341Ian Rogers
3819d5ccec86d60c9ddd811836b9a2bc28d0b3d11feElliott Hughes  int32_t GetStat(int kind);
3829d5ccec86d60c9ddd811836b9a2bc28d0b3d11feElliott Hughes
3839af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers  RuntimeStats* GetStats() {
3849af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers    return &stats_;
3859af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers  }
3869d5ccec86d60c9ddd811836b9a2bc28d0b3d11feElliott Hughes
3879d5ccec86d60c9ddd811836b9a2bc28d0b3d11feElliott Hughes  bool HasStatsEnabled() const {
3889d5ccec86d60c9ddd811836b9a2bc28d0b3d11feElliott Hughes    return stats_enabled_;
3899d5ccec86d60c9ddd811836b9a2bc28d0b3d11feElliott Hughes  }
3909d5ccec86d60c9ddd811836b9a2bc28d0b3d11feElliott Hughes
3919d5ccec86d60c9ddd811836b9a2bc28d0b3d11feElliott Hughes  void ResetStats(int kinds);
3929d5ccec86d60c9ddd811836b9a2bc28d0b3d11feElliott Hughes
3939ef78b59da51080882e47505896b420977fd79aeMathieu Chartier  void SetStatsEnabled(bool new_state) LOCKS_EXCLUDED(Locks::instrument_entrypoints_lock_,
3949ef78b59da51080882e47505896b420977fd79aeMathieu Chartier                                                      Locks::mutator_lock_);
3959d5ccec86d60c9ddd811836b9a2bc28d0b3d11feElliott Hughes
3966be67eeedbe60afce42300ae3e7f0e7180a96efaAndreas Gampe  enum class NativeBridgeAction {  // private
3976be67eeedbe60afce42300ae3e7f0e7180a96efaAndreas Gampe    kUnload,
3986be67eeedbe60afce42300ae3e7f0e7180a96efaAndreas Gampe    kInitialize
3996be67eeedbe60afce42300ae3e7f0e7180a96efaAndreas Gampe  };
4003de95a7b0a2d30cde6dc92b72c35df3a61002124Narayan Kamath  void PreZygoteFork();
401bd86bccf1b47f1151842152ee52cf5d46d6b34abBrian Carlstrom  bool InitZygote();
402a6da74e941d7cee498ac3880018a1d8dc953c6ebjgu  void DidForkFromZygote(JNIEnv* env, NativeBridgeAction action, const char* isa);
403caabb1b77b4a55eb1bb45ebcd3071c9ea01dd3cfBrian Carlstrom
4049bc54406ba3377980cfce44901dc2be246178ba9Ian Rogers  const instrumentation::Instrumentation* GetInstrumentation() const {
4059bc54406ba3377980cfce44901dc2be246178ba9Ian Rogers    return &instrumentation_;
4069bc54406ba3377980cfce44901dc2be246178ba9Ian Rogers  }
4079bc54406ba3377980cfce44901dc2be246178ba9Ian Rogers
40862d6c772205b8859f0ebf7ad105402ec4c3e2e01Ian Rogers  instrumentation::Instrumentation* GetInstrumentation() {
40962d6c772205b8859f0ebf7ad105402ec4c3e2e01Ian Rogers    return &instrumentation_;
41062d6c772205b8859f0ebf7ad105402ec4c3e2e01Ian Rogers  }
4112692b573a56cd63a3c8c8aa1636e3766b6d8c9c4jeffhao
412b3bd5f07884f5a1f2b84224363b1372d7c28d447Elliott Hughes  bool UseCompileTimeClassPath() const {
413b3bd5f07884f5a1f2b84224363b1372d7c28d447Elliott Hughes    return use_compile_time_class_path_;
414b3bd5f07884f5a1f2b84224363b1372d7c28d447Elliott Hughes  }
4159af209c9dcc6763fae2976981570a90aa41fd86bIan Rogers
416e6da9af8dfe0a3e3fbc2be700554f6478380e7b9Mathieu Chartier  void AddMethodVerifier(verifier::MethodVerifier* verifier) LOCKS_EXCLUDED(method_verifier_lock_);
417e6da9af8dfe0a3e3fbc2be700554f6478380e7b9Mathieu Chartier  void RemoveMethodVerifier(verifier::MethodVerifier* verifier)
418e6da9af8dfe0a3e3fbc2be700554f6478380e7b9Mathieu Chartier      LOCKS_EXCLUDED(method_verifier_lock_);
419c528dba35b5faece51ca658fc008b688f8b690adMathieu Chartier
42000f7d0eaa6bd93d33bf0c1429bf4ba0b3f28abacIan Rogers  const std::vector<const DexFile*>& GetCompileTimeClassPath(jobject class_loader);
42100f7d0eaa6bd93d33bf0c1429bf4ba0b3f28abacIan Rogers  void SetCompileTimeClassPath(jobject class_loader, std::vector<const DexFile*>& class_path);
422b3bd5f07884f5a1f2b84224363b1372d7c28d447Elliott Hughes
423c1b643cc6ac45dbd0eabdcd7425c7e86006c27d6Calin Juravle  void StartProfiler(const char* profile_output_filename);
42439c3bfbd03d85c63cfbe69f17ce5800ccc7d6c13Dave Allison  void UpdateProfilerState(int state);
4250aded089f565008ba5908e395e5914ca4f91f2deDave Allison
426d2fe10a3a34af171bf1631219cd2d6ff6b7778b5Sebastien Hertz  // Transaction support.
427ee1d79a603c77c0667b27c075a983579d5c51f7eSebastien Hertz  bool IsActiveTransaction() const {
428ee1d79a603c77c0667b27c075a983579d5c51f7eSebastien Hertz    return preinitialization_transaction_ != nullptr;
429ee1d79a603c77c0667b27c075a983579d5c51f7eSebastien Hertz  }
430d2fe10a3a34af171bf1631219cd2d6ff6b7778b5Sebastien Hertz  void EnterTransactionMode(Transaction* transaction);
431d2fe10a3a34af171bf1631219cd2d6ff6b7778b5Sebastien Hertz  void ExitTransactionMode();
43237f05ef45e0393de812d51261dc293240c17294dFred Shih  void RecordWriteFieldBoolean(mirror::Object* obj, MemberOffset field_offset, uint8_t value,
43337f05ef45e0393de812d51261dc293240c17294dFred Shih                               bool is_volatile) const;
43437f05ef45e0393de812d51261dc293240c17294dFred Shih  void RecordWriteFieldByte(mirror::Object* obj, MemberOffset field_offset, int8_t value,
43537f05ef45e0393de812d51261dc293240c17294dFred Shih                            bool is_volatile) const;
43637f05ef45e0393de812d51261dc293240c17294dFred Shih  void RecordWriteFieldChar(mirror::Object* obj, MemberOffset field_offset, uint16_t value,
43737f05ef45e0393de812d51261dc293240c17294dFred Shih                            bool is_volatile) const;
43837f05ef45e0393de812d51261dc293240c17294dFred Shih  void RecordWriteFieldShort(mirror::Object* obj, MemberOffset field_offset, int16_t value,
43937f05ef45e0393de812d51261dc293240c17294dFred Shih                          bool is_volatile) const;
440d2fe10a3a34af171bf1631219cd2d6ff6b7778b5Sebastien Hertz  void RecordWriteField32(mirror::Object* obj, MemberOffset field_offset, uint32_t value,
441d2fe10a3a34af171bf1631219cd2d6ff6b7778b5Sebastien Hertz                          bool is_volatile) const;
442d2fe10a3a34af171bf1631219cd2d6ff6b7778b5Sebastien Hertz  void RecordWriteField64(mirror::Object* obj, MemberOffset field_offset, uint64_t value,
443d2fe10a3a34af171bf1631219cd2d6ff6b7778b5Sebastien Hertz                          bool is_volatile) const;
444d2fe10a3a34af171bf1631219cd2d6ff6b7778b5Sebastien Hertz  void RecordWriteFieldReference(mirror::Object* obj, MemberOffset field_offset,
445d2fe10a3a34af171bf1631219cd2d6ff6b7778b5Sebastien Hertz                                 mirror::Object* value, bool is_volatile) const;
446d2fe10a3a34af171bf1631219cd2d6ff6b7778b5Sebastien Hertz  void RecordWriteArray(mirror::Array* array, size_t index, uint64_t value) const
447d2fe10a3a34af171bf1631219cd2d6ff6b7778b5Sebastien Hertz      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
448cdfd39f579574a75b98e7ad48c69826b00361b27Mathieu Chartier  void RecordStrongStringInsertion(mirror::String* s) const
449d2fe10a3a34af171bf1631219cd2d6ff6b7778b5Sebastien Hertz      EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
450cdfd39f579574a75b98e7ad48c69826b00361b27Mathieu Chartier  void RecordWeakStringInsertion(mirror::String* s) const
451d2fe10a3a34af171bf1631219cd2d6ff6b7778b5Sebastien Hertz      EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
452cdfd39f579574a75b98e7ad48c69826b00361b27Mathieu Chartier  void RecordStrongStringRemoval(mirror::String* s) const
453d2fe10a3a34af171bf1631219cd2d6ff6b7778b5Sebastien Hertz      EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
454cdfd39f579574a75b98e7ad48c69826b00361b27Mathieu Chartier  void RecordWeakStringRemoval(mirror::String* s) const
455d2fe10a3a34af171bf1631219cd2d6ff6b7778b5Sebastien Hertz      EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
456d2fe10a3a34af171bf1631219cd2d6ff6b7778b5Sebastien Hertz
45715d3402bbf8265eb1165694da2e4117eb128f3bcMathieu Chartier  void SetFaultMessage(const std::string& message);
45815d3402bbf8265eb1165694da2e4117eb128f3bcMathieu Chartier  // Only read by the signal handler, NO_THREAD_SAFETY_ANALYSIS to prevent lock order violations
45915d3402bbf8265eb1165694da2e4117eb128f3bcMathieu Chartier  // with the unexpected_signal_lock_.
46015d3402bbf8265eb1165694da2e4117eb128f3bcMathieu Chartier  const std::string& GetFaultMessage() NO_THREAD_SAFETY_ANALYSIS {
46115d3402bbf8265eb1165694da2e4117eb128f3bcMathieu Chartier    return fault_message_;
46215d3402bbf8265eb1165694da2e4117eb128f3bcMathieu Chartier  }
46315d3402bbf8265eb1165694da2e4117eb128f3bcMathieu Chartier
4648afeb85d3def12b559b7565fb6d3956f81b55132Ian Rogers  void AddCurrentRuntimeFeaturesAsDex2OatArguments(std::vector<std::string>* arg_vector) const;
4658afeb85d3def12b559b7565fb6d3956f81b55132Ian Rogers
466b373e091eac39b1a79c11f2dcbd610af01e9e8a9Dave Allison  bool ExplicitStackOverflowChecks() const {
467928f72bd75c385ba2708c58521171a77264d4486Andreas Gampe    return !implicit_so_checks_;
468b373e091eac39b1a79c11f2dcbd610af01e9e8a9Dave Allison  }
469b373e091eac39b1a79c11f2dcbd610af01e9e8a9Dave Allison
4704a200f56b7075309316b04d550c9cc50f8314eddJeff Hao  bool IsVerificationEnabled() const {
4714a200f56b7075309316b04d550c9cc50f8314eddJeff Hao    return verify_;
4724a200f56b7075309316b04d550c9cc50f8314eddJeff Hao  }
4734a200f56b7075309316b04d550c9cc50f8314eddJeff Hao
474da44d773dedf8aae6153e3423012f236cba3bfcdMathieu Chartier  bool RunningOnValgrind() const {
475da44d773dedf8aae6153e3423012f236cba3bfcdMathieu Chartier    return running_on_valgrind_;
476da44d773dedf8aae6153e3423012f236cba3bfcdMathieu Chartier  }
477da44d773dedf8aae6153e3423012f236cba3bfcdMathieu Chartier
478f00571c4e1ae202b3b4acb6b47cbe23a65178f7fJeff Hao  void SetTargetSdkVersion(int32_t version) {
479f00571c4e1ae202b3b4acb6b47cbe23a65178f7fJeff Hao    target_sdk_version_ = version;
480f00571c4e1ae202b3b4acb6b47cbe23a65178f7fJeff Hao  }
481f00571c4e1ae202b3b4acb6b47cbe23a65178f7fJeff Hao
482f00571c4e1ae202b3b4acb6b47cbe23a65178f7fJeff Hao  int32_t GetTargetSdkVersion() const {
483f00571c4e1ae202b3b4acb6b47cbe23a65178f7fJeff Hao    return target_sdk_version_;
484f00571c4e1ae202b3b4acb6b47cbe23a65178f7fJeff Hao  }
485f00571c4e1ae202b3b4acb6b47cbe23a65178f7fJeff Hao
486b557353b22c728eecbd1c68593b482622c7782a8Carl Shapiro private:
487457005c557b8762475db3220ce5a747d629f975bElliott Hughes  static void InitPlatformSignalHandlers();
488ffe6736397d17457188727510f0a2953f69a383aElliott Hughes
489dcc247493fd8fb243e335c3ec08e5e625896a47cElliott Hughes  Runtime();
49061e019d291583029c01b61b93bea750f2b663c37Carl Shapiro
491c1674ed06662420213441ff2b818f2f71f9098dcElliott Hughes  void BlockSignals();
492c1674ed06662420213441ff2b818f2f71f9098dcElliott Hughes
493e63db27db913f1a88e2095a1ee8239b2bb9124e8Ian Rogers  bool Init(const RuntimeOptions& options, bool ignore_unrecognized)
494b726dcb581bf72da46527378ccb6889020f0e6e9Ian Rogers      SHARED_TRYLOCK_FUNCTION(true, Locks::mutator_lock_);
495b726dcb581bf72da46527378ccb6889020f0e6e9Ian Rogers  void InitNativeMethods() LOCKS_EXCLUDED(Locks::mutator_lock_);
496365c10235438607541fa2259a5fec48061b90bd8Ian Rogers  void InitThreadGroups(Thread* self);
497ff17f1fd3ff32f93e45588eb2b158832d73f9afaElliott Hughes  void RegisterRuntimeNativeMethods(JNIEnv* env);
498d1cc8363d4f4bbac7568b1d02a5ca481cd10830fElliott Hughes
49985d1545e985ac689db4bad7849880e843707c862Elliott Hughes  void StartDaemonThreads();
500d1cc8363d4f4bbac7568b1d02a5ca481cd10830fElliott Hughes  void StartSignalCatcher();
50161e019d291583029c01b61b93bea750f2b663c37Carl Shapiro
502b3bd5f07884f5a1f2b84224363b1372d7c28d447Elliott Hughes  // A pointer to the active runtime or NULL.
503b3bd5f07884f5a1f2b84224363b1372d7c28d447Elliott Hughes  static Runtime* instance_;
504b3bd5f07884f5a1f2b84224363b1372d7c28d447Elliott Hughes
5058afeb85d3def12b559b7565fb6d3956f81b55132Ian Rogers  // NOTE: these must match the gc::ProcessState values as they come directly from the framework.
5068afeb85d3def12b559b7565fb6d3956f81b55132Ian Rogers  static constexpr int kProfileForground = 0;
5078afeb85d3def12b559b7565fb6d3956f81b55132Ian Rogers  static constexpr int kProfileBackgrouud = 1;
5088afeb85d3def12b559b7565fb6d3956f81b55132Ian Rogers
50994f7b49578b6aaa80de8ffed230648d601393905Hiroshi Yamauchi  GcRoot<mirror::ArtMethod> callee_save_methods_[kLastCalleeSaveType];
51094f7b49578b6aaa80de8ffed230648d601393905Hiroshi Yamauchi  GcRoot<mirror::Throwable> pre_allocated_OutOfMemoryError_;
51163557459a4098294a9ff44d035241de2966047c0Ian Rogers  GcRoot<mirror::Throwable> pre_allocated_NoClassDefFoundError_;
51294f7b49578b6aaa80de8ffed230648d601393905Hiroshi Yamauchi  GcRoot<mirror::ArtMethod> resolution_method_;
51394f7b49578b6aaa80de8ffed230648d601393905Hiroshi Yamauchi  GcRoot<mirror::ArtMethod> imt_conflict_method_;
51494f7b49578b6aaa80de8ffed230648d601393905Hiroshi Yamauchi  GcRoot<mirror::ObjectArray<mirror::ArtMethod>> default_imt_;
5156ed19fd1b08abbc438781ae3e6fea111c1f92315Ian Rogers
516c0542af3e2170143ba40d89136e284997e16bf64Ian Rogers  // Special sentinel object used to invalid conditions in JNI (cleared weak references) and
517c0542af3e2170143ba40d89136e284997e16bf64Ian Rogers  // JDWP (invalid references).
518c0542af3e2170143ba40d89136e284997e16bf64Ian Rogers  GcRoot<mirror::Object> sentinel_;
519c0542af3e2170143ba40d89136e284997e16bf64Ian Rogers
5207624d25dad2d1ba25969ae704fccf68649103ae5Vladimir Marko  InstructionSet instruction_set_;
5217624d25dad2d1ba25969ae704fccf68649103ae5Vladimir Marko  QuickMethodFrameInfo callee_save_method_frame_infos_[kLastCalleeSaveType];
5227624d25dad2d1ba25969ae704fccf68649103ae5Vladimir Marko
5232b5eaa2b49f7489bafdadc4b4463ae27e4261817Vladimir Marko  CompilerCallbacks* compiler_callbacks_;
5249ca7a1fdd0daa546b790adb6a24dbc13c22df76aElliott Hughes  bool is_zygote_;
525a59dd80f9f48cb750d329d4d4af2d99d72b484d1Alex Light  bool must_relocate_;
526069387a60cb2b72e116cc38b32e14403f092df8fMathieu Chartier  bool is_concurrent_gc_enabled_;
5278718359763aa3dcd0033a2d2e67e0cb145fb9c53Anwar Ghuloum  bool is_explicit_gc_disabled_;
5284fcdc94d22a4608e355aa8df36240181149d10e8Nicolas Geoffray  bool dex2oat_enabled_;
52964ad14dbe2225441fb7734bf6d89358d96692eeaAlex Light  bool image_dex2oat_enabled_;
5300a5b14de5115f51e0ed2dd6c3fcc5b84bbce690eBrian Carlstrom
53112e6d7446384a7a5fbec25fe116bbb271c62842eTsu Chiang Chuang  std::string compiler_executable_;
532a59dd80f9f48cb750d329d4d4af2d99d72b484d1Alex Light  std::string patchoat_executable_;
5336449c62e40ef3a9bb75f664f922555affb532ee4Brian Carlstrom  std::vector<std::string> compiler_options_;
5346449c62e40ef3a9bb75f664f922555affb532ee4Brian Carlstrom  std::vector<std::string> image_compiler_options_;
53531d8f5295c24730a57cb36cbc41197f0b7e8397cBrian Carlstrom  std::string image_location_;
5367467ee05012e1fd9834df74663c1ebda46f5636bDragos Sbirlea
537a004aa933a58428489e42d77f707c2b063b73747Brian Carlstrom  std::string boot_class_path_string_;
538a004aa933a58428489e42d77f707c2b063b73747Brian Carlstrom  std::string class_path_string_;
5397ede61eceed2f8da14a4fff05c57c748c160d57fElliott Hughes  std::vector<std::string> properties_;
5407ede61eceed2f8da14a4fff05c57c748c160d57fElliott Hughes
541b765be0d656c3073402693aeaf64e95a0e49f218Brian Carlstrom  // The default stack size for managed threads created by the runtime.
542be759c63c6bb58b76ac71cad2c5a736bd31f374dElliott Hughes  size_t default_stack_size_;
543b765be0d656c3073402693aeaf64e95a0e49f218Brian Carlstrom
5441d54e73444e017d3a65234e0f193846f3e27472bIan Rogers  gc::Heap* heap_;
545b3bd5f07884f5a1f2b84224363b1372d7c28d447Elliott Hughes
546d9c4fc94fa618617f94e1de9af5f034549100753Ian Rogers  // The number of spins that are done before thread suspension is used to forcibly inflate.
547d9c4fc94fa618617f94e1de9af5f034549100753Ian Rogers  size_t max_spins_before_thin_lock_inflation_;
548c33a32bccc4c66ed82ce3a580b16636399385cb4Elliott Hughes  MonitorList* monitor_list_;
549ef7d42fca18c16fbaf103822ad16f23246e2905dIan Rogers  MonitorPool* monitor_pool_;
550c33a32bccc4c66ed82ce3a580b16636399385cb4Elliott Hughes
551b557353b22c728eecbd1c68593b482622c7782a8Carl Shapiro  ThreadList* thread_list_;
55261e019d291583029c01b61b93bea750f2b663c37Carl Shapiro
553cf4c6c41b0084dc4567ff709fb8ce9ebd72b26acElliott Hughes  InternTable* intern_table_;
554cf4c6c41b0084dc4567ff709fb8ce9ebd72b26acElliott Hughes
555b0460eaa2cb131f1dbdd5a7217bd36b9a9f1b995Brian Carlstrom  ClassLinker* class_linker_;
556b0460eaa2cb131f1dbdd5a7217bd36b9a9f1b995Brian Carlstrom
557e27955ca3ca960928d4dbd6cb79711fce06950b3Elliott Hughes  SignalCatcher* signal_catcher_;
55894ce37a3919a0bdb8855a3d3264a50df1dbc41beElliott Hughes  std::string stack_trace_file_;
559e27955ca3ca960928d4dbd6cb79711fce06950b3Elliott Hughes
560c5f7c91ab89055cffb573fff7e06dbdd860bccedElliott Hughes  JavaVMExt* java_vm_;
561f2682d5a6ce0f7de58da8fd4ec8aec200c43b92eElliott Hughes
56215d3402bbf8265eb1165694da2e4117eb128f3bcMathieu Chartier  // Fault message, printed when we get a SIGSEGV.
56315d3402bbf8265eb1165694da2e4117eb128f3bcMathieu Chartier  Mutex fault_message_lock_ DEFAULT_MUTEX_ACQUIRED_AFTER;
56415d3402bbf8265eb1165694da2e4117eb128f3bcMathieu Chartier  std::string fault_message_ GUARDED_BY(fault_message_lock_);
56515d3402bbf8265eb1165694da2e4117eb128f3bcMathieu Chartier
566c528dba35b5faece51ca658fc008b688f8b690adMathieu Chartier  // Method verifier set, used so that we can update their GC roots.
567719d1a33f6569864f529e5a3fff59e7bca97aad0Ian Rogers  Mutex method_verifier_lock_ DEFAULT_MUTEX_ACQUIRED_AFTER;
568c528dba35b5faece51ca658fc008b688f8b690adMathieu Chartier  std::set<verifier::MethodVerifier*> method_verifiers_;
569c528dba35b5faece51ca658fc008b688f8b690adMathieu Chartier
570120f1c74a9768e958377b6c97897511b27ae58c8Ian Rogers  // A non-zero value indicates that a thread has been created but not yet initialized. Guarded by
571120f1c74a9768e958377b6c97897511b27ae58c8Ian Rogers  // the shutdown lock so that threads aren't born while we're shutting down.
572120f1c74a9768e958377b6c97897511b27ae58c8Ian Rogers  size_t threads_being_born_ GUARDED_BY(Locks::runtime_shutdown_lock_);
573120f1c74a9768e958377b6c97897511b27ae58c8Ian Rogers
574120f1c74a9768e958377b6c97897511b27ae58c8Ian Rogers  // Waited upon until no threads are being born.
575700a402244a1a423da4f3ba8032459f4b65fa18fIan Rogers  std::unique_ptr<ConditionVariable> shutdown_cond_ GUARDED_BY(Locks::runtime_shutdown_lock_);
576120f1c74a9768e958377b6c97897511b27ae58c8Ian Rogers
577120f1c74a9768e958377b6c97897511b27ae58c8Ian Rogers  // Set when runtime shutdown is past the point that new threads may attach.
578120f1c74a9768e958377b6c97897511b27ae58c8Ian Rogers  bool shutting_down_ GUARDED_BY(Locks::runtime_shutdown_lock_);
579120f1c74a9768e958377b6c97897511b27ae58c8Ian Rogers
580120f1c74a9768e958377b6c97897511b27ae58c8Ian Rogers  // The runtime is starting to shutdown but is blocked waiting on shutdown_cond_.
581120f1c74a9768e958377b6c97897511b27ae58c8Ian Rogers  bool shutting_down_started_ GUARDED_BY(Locks::runtime_shutdown_lock_);
582120f1c74a9768e958377b6c97897511b27ae58c8Ian Rogers
583dcc247493fd8fb243e335c3ec08e5e625896a47cElliott Hughes  bool started_;
584dcc247493fd8fb243e335c3ec08e5e625896a47cElliott Hughes
5857664f5cd118b355a5fe0c7536cb48ac991ed2b62Mathieu Chartier  // New flag added which tells us if the runtime has finished starting. If
5867664f5cd118b355a5fe0c7536cb48ac991ed2b62Mathieu Chartier  // this flag is set then the Daemon threads are created and the class loader
5877664f5cd118b355a5fe0c7536cb48ac991ed2b62Mathieu Chartier  // is created. This flag is needed for knowing if its safe to request CMS.
5887664f5cd118b355a5fe0c7536cb48ac991ed2b62Mathieu Chartier  bool finished_starting_;
5897664f5cd118b355a5fe0c7536cb48ac991ed2b62Mathieu Chartier
5906ea095ad30bf13cc00b4fee7afbbe4731a349c83Brian Carlstrom  // Hooks supported by JNI_CreateJavaVM
5916ea095ad30bf13cc00b4fee7afbbe4731a349c83Brian Carlstrom  jint (*vfprintf_)(FILE* stream, const char* format, va_list ap);
5926ea095ad30bf13cc00b4fee7afbbe4731a349c83Brian Carlstrom  void (*exit_)(jint status);
5936ea095ad30bf13cc00b4fee7afbbe4731a349c83Brian Carlstrom  void (*abort_)();
5946ea095ad30bf13cc00b4fee7afbbe4731a349c83Brian Carlstrom
5959d5ccec86d60c9ddd811836b9a2bc28d0b3d11feElliott Hughes  bool stats_enabled_;
5969d5ccec86d60c9ddd811836b9a2bc28d0b3d11feElliott Hughes  RuntimeStats stats_;
5979d5ccec86d60c9ddd811836b9a2bc28d0b3d11feElliott Hughes
598da44d773dedf8aae6153e3423012f236cba3bfcdMathieu Chartier  const bool running_on_valgrind_;
599da44d773dedf8aae6153e3423012f236cba3bfcdMathieu Chartier
6000aded089f565008ba5908e395e5914ca4f91f2deDave Allison  std::string profile_output_filename_;
601c1b643cc6ac45dbd0eabdcd7425c7e86006c27d6Calin Juravle  ProfilerOptions profiler_options_;
602c1b643cc6ac45dbd0eabdcd7425c7e86006c27d6Calin Juravle  bool profiler_started_;
6030aded089f565008ba5908e395e5914ca4f91f2deDave Allison
604b5e81858a47dd7ed051135f6982fbc4e13d0f309jeffhao  bool method_trace_;
605b5e81858a47dd7ed051135f6982fbc4e13d0f309jeffhao  std::string method_trace_file_;
606b5e81858a47dd7ed051135f6982fbc4e13d0f309jeffhao  size_t method_trace_file_size_;
60762d6c772205b8859f0ebf7ad105402ec4c3e2e01Ian Rogers  instrumentation::Instrumentation instrumentation_;
6082692b573a56cd63a3c8c8aa1636e3766b6d8c9c4jeffhao
609bad0267eaab9d6a522d05469ff90501deefdb88bMathieu Chartier  typedef AllocationTrackingSafeMap<jobject, std::vector<const DexFile*>,
610bad0267eaab9d6a522d05469ff90501deefdb88bMathieu Chartier                                    kAllocatorTagCompileTimeClassPath, JobjectComparator>
611bad0267eaab9d6a522d05469ff90501deefdb88bMathieu Chartier      CompileTimeClassPaths;
612b3bd5f07884f5a1f2b84224363b1372d7c28d447Elliott Hughes  CompileTimeClassPaths compile_time_class_paths_;
613b3bd5f07884f5a1f2b84224363b1372d7c28d447Elliott Hughes  bool use_compile_time_class_path_;
614131aef8c94292cc530da2fd91ee98d1432352959Elliott Hughes
615365c10235438607541fa2259a5fec48061b90bd8Ian Rogers  jobject main_thread_group_;
616365c10235438607541fa2259a5fec48061b90bd8Ian Rogers  jobject system_thread_group_;
617365c10235438607541fa2259a5fec48061b90bd8Ian Rogers
618ce88853ab316c70ef7b598978a3609611db60552Brian Carlstrom  // As returned by ClassLoader.getSystemClassLoader().
619ce88853ab316c70ef7b598978a3609611db60552Brian Carlstrom  jobject system_class_loader_;
620ce88853ab316c70ef7b598978a3609611db60552Brian Carlstrom
6212e899a92439dc6bdaaa67b8230933006284aa600Hiroshi Yamauchi  // If true, then we dump the GC cumulative timings on shutdown.
6222e899a92439dc6bdaaa67b8230933006284aa600Hiroshi Yamauchi  bool dump_gc_performance_on_shutdown_;
6232e899a92439dc6bdaaa67b8230933006284aa600Hiroshi Yamauchi
624d2fe10a3a34af171bf1631219cd2d6ff6b7778b5Sebastien Hertz  // Transaction used for pre-initializing classes at compilation time.
625ee1d79a603c77c0667b27c075a983579d5c51f7eSebastien Hertz  Transaction* preinitialization_transaction_;
626d2fe10a3a34af171bf1631219cd2d6ff6b7778b5Sebastien Hertz
6274a200f56b7075309316b04d550c9cc50f8314eddJeff Hao  // If false, verification is disabled. True by default.
6284a200f56b7075309316b04d550c9cc50f8314eddJeff Hao  bool verify_;
6294a200f56b7075309316b04d550c9cc50f8314eddJeff Hao
630f00571c4e1ae202b3b4acb6b47cbe23a65178f7fJeff Hao  // Specifies target SDK version to allow workarounds for certain API levels.
631f00571c4e1ae202b3b4acb6b47cbe23a65178f7fJeff Hao  int32_t target_sdk_version_;
632f00571c4e1ae202b3b4acb6b47cbe23a65178f7fJeff Hao
63369dfe51b684dd9d510dbcb63295fe180f998efdeDave Allison  // Implicit checks flags.
63469dfe51b684dd9d510dbcb63295fe180f998efdeDave Allison  bool implicit_null_checks_;       // NullPointer checks are implicit.
63569dfe51b684dd9d510dbcb63295fe180f998efdeDave Allison  bool implicit_so_checks_;         // StackOverflow checks are implicit.
63669dfe51b684dd9d510dbcb63295fe180f998efdeDave Allison  bool implicit_suspend_checks_;    // Thread suspension checks are implicit.
63769dfe51b684dd9d510dbcb63295fe180f998efdeDave Allison
63807d83c7a25022064ac0a8dac4fe2a7a38681fa4bCalin Juravle  // Whether or not a native bridge has been loaded.
639c8423521c1d1136c70b153479b7df3bf4fd7fc2aCalin Juravle  //
640c8423521c1d1136c70b153479b7df3bf4fd7fc2aCalin Juravle  // The native bridge allows running native code compiled for a foreign ISA. The way it works is,
641c8423521c1d1136c70b153479b7df3bf4fd7fc2aCalin Juravle  // if standard dlopen fails to load native library associated with native activity, it calls to
642c8423521c1d1136c70b153479b7df3bf4fd7fc2aCalin Juravle  // the native bridge to load it and then gets the trampoline for the entry to native activity.
64307d83c7a25022064ac0a8dac4fe2a7a38681fa4bCalin Juravle  //
64407d83c7a25022064ac0a8dac4fe2a7a38681fa4bCalin Juravle  // The option 'native_bridge_library_filename' specifies the name of the native bridge.
64507d83c7a25022064ac0a8dac4fe2a7a38681fa4bCalin Juravle  // When non-empty the native bridge will be loaded from the given file. An empty value means
64607d83c7a25022064ac0a8dac4fe2a7a38681fa4bCalin Juravle  // that there's no native bridge.
64707d83c7a25022064ac0a8dac4fe2a7a38681fa4bCalin Juravle  bool is_native_bridge_loaded_;
648c8423521c1d1136c70b153479b7df3bf4fd7fc2aCalin Juravle
64961e019d291583029c01b61b93bea750f2b663c37Carl Shapiro  DISALLOW_COPY_AND_ASSIGN(Runtime);
6507b21670581d13db32f1384a3b2692bcfc8f57320Carl Shapiro};
6517b21670581d13db32f1384a3b2692bcfc8f57320Carl Shapiro
6526b6b5f0e67ce03f38223a525612955663bc1799bCarl Shapiro}  // namespace art
6537b21670581d13db32f1384a3b2692bcfc8f57320Carl Shapiro
654fc0e3219edc9a5bf81b166e82fd5db2796eb6a0dBrian Carlstrom#endif  // ART_RUNTIME_RUNTIME_H_
655