Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 1 | // Copyright 2011 Google Inc. All Rights Reserved. |
| 2 | |
| 3 | #ifndef ART_SRC_RUNTIME_H_ |
| 4 | #define ART_SRC_RUNTIME_H_ |
| 5 | |
Elliott Hughes | c5f7c91 | 2011-08-18 14:00:42 -0700 | [diff] [blame] | 6 | #include <stdio.h> |
| 7 | |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 8 | #include <iosfwd> |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 9 | #include <string> |
Carl Shapiro | fc322c7 | 2011-07-27 00:20:01 -0700 | [diff] [blame] | 10 | #include <utility> |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 11 | #include <vector> |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 12 | |
Elliott Hughes | c5f7c91 | 2011-08-18 14:00:42 -0700 | [diff] [blame] | 13 | #include <jni.h> |
| 14 | |
Ian Rogers | ff1ed47 | 2011-09-20 13:46:24 -0700 | [diff] [blame] | 15 | #include "constants.h" |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 16 | #include "heap.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 17 | #include "globals.h" |
| 18 | #include "macros.h" |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 19 | #include "runtime_stats.h" |
Brian Carlstrom | 578bbdc | 2011-07-21 14:07:47 -0700 | [diff] [blame] | 20 | #include "stringpiece.h" |
Brian Carlstrom | 44753c3 | 2011-08-17 22:22:11 -0700 | [diff] [blame] | 21 | #include "unordered_set.h" |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 22 | |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 23 | namespace art { |
| 24 | |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 25 | template<class T> class PrimitiveArray; |
| 26 | typedef PrimitiveArray<int8_t> ByteArray; |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 27 | class ClassLinker; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 28 | class ClassLoader; |
Carl Shapiro | fc322c7 | 2011-07-27 00:20:01 -0700 | [diff] [blame] | 29 | class DexFile; |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 30 | class Heap; |
Elliott Hughes | cf4c6c4 | 2011-09-01 15:16:42 -0700 | [diff] [blame] | 31 | class InternTable; |
Elliott Hughes | c5f7c91 | 2011-08-18 14:00:42 -0700 | [diff] [blame] | 32 | class JavaVMExt; |
Ian Rogers | ff1ed47 | 2011-09-20 13:46:24 -0700 | [diff] [blame] | 33 | class Method; |
Elliott Hughes | c33a32b | 2011-10-11 18:18:07 -0700 | [diff] [blame] | 34 | class MonitorList; |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 35 | class SignalCatcher; |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 36 | class String; |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 37 | class ThreadList; |
| 38 | |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 39 | class Runtime { |
| 40 | public: |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 41 | |
| 42 | typedef std::vector<std::pair<StringPiece, const void*> > Options; |
| 43 | |
| 44 | class ParsedOptions { |
| 45 | public: |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 46 | // returns null if problem parsing and ignore_unrecognized is false |
| 47 | static ParsedOptions* Create(const Options& options, bool ignore_unrecognized); |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 48 | |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 49 | std::string boot_class_path_; |
| 50 | std::string class_path_; |
| 51 | std::string host_prefix_; |
| 52 | std::vector<std::string> images_; |
Elliott Hughes | 515a5bc | 2011-08-17 11:08:34 -0700 | [diff] [blame] | 53 | bool check_jni_; |
Elliott Hughes | a095764 | 2011-09-02 14:27:33 -0700 | [diff] [blame] | 54 | std::string jni_trace_; |
Elliott Hughes | 9ca7a1f | 2011-10-11 14:29:52 -0700 | [diff] [blame] | 55 | bool is_zygote_; |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 56 | size_t heap_initial_size_; |
| 57 | size_t heap_maximum_size_; |
Brian Carlstrom | f734cf5 | 2011-08-17 16:28:14 -0700 | [diff] [blame] | 58 | size_t stack_size_; |
Elliott Hughes | fc86162 | 2011-10-17 17:57:47 -0700 | [diff] [blame^] | 59 | uint32_t lock_profiling_threshold_; |
| 60 | bool (*hook_is_sensitive_thread_)(); |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 61 | jint (*hook_vfprintf_)(FILE* stream, const char* format, va_list ap); |
| 62 | void (*hook_exit_)(jint status); |
| 63 | void (*hook_abort_)(); |
Brian Carlstrom | 44753c3 | 2011-08-17 22:22:11 -0700 | [diff] [blame] | 64 | std::tr1::unordered_set<std::string> verbose_; |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 65 | std::vector<std::string> properties_; |
| 66 | |
Elliott Hughes | a095764 | 2011-09-02 14:27:33 -0700 | [diff] [blame] | 67 | bool IsVerbose(const std::string& key) const { |
| 68 | return verbose_.find(key) != verbose_.end(); |
| 69 | } |
| 70 | |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 71 | private: |
Ian Rogers | 0cfe1fb | 2011-08-26 03:29:44 -0700 | [diff] [blame] | 72 | ParsedOptions() {} |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 73 | }; |
Carl Shapiro | 2ed144c | 2011-07-26 16:52:08 -0700 | [diff] [blame] | 74 | |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 75 | // Creates and initializes a new runtime. |
Carl Shapiro | 2ed144c | 2011-07-26 16:52:08 -0700 | [diff] [blame] | 76 | static Runtime* Create(const Options& options, bool ignore_unrecognized); |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 77 | |
Brian Carlstrom | 0a5b14d | 2011-09-27 13:29:15 -0700 | [diff] [blame] | 78 | bool IsVerboseStartup() const { |
| 79 | return verbose_startup_; |
| 80 | } |
| 81 | |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 82 | bool IsZygote() const { |
| 83 | return is_zygote_; |
| 84 | } |
| 85 | |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 86 | const std::string& GetHostPrefix() const { |
Elliott Hughes | 307f75d | 2011-10-12 18:04:40 -0700 | [diff] [blame] | 87 | DCHECK(!IsStarted()); |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 88 | return host_prefix_; |
| 89 | } |
| 90 | |
Brian Carlstrom | 69b15fb | 2011-09-03 12:25:21 -0700 | [diff] [blame] | 91 | // Starts a runtime, which may cause threads to be started and code to run. |
| 92 | void Start(); |
Carl Shapiro | 2ed144c | 2011-07-26 16:52:08 -0700 | [diff] [blame] | 93 | |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 94 | bool IsStarted() const; |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 95 | |
Carl Shapiro | 2ed144c | 2011-07-26 16:52:08 -0700 | [diff] [blame] | 96 | static Runtime* Current() { |
| 97 | return instance_; |
| 98 | } |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 99 | |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 100 | // Compiles a dex file. |
| 101 | static void Compile(const StringPiece& filename); |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 102 | |
Elliott Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 103 | // Aborts semi-cleanly. Used in the implementation of LOG(FATAL), which most |
| 104 | // callers should prefer. |
| 105 | // This isn't marked ((noreturn)) because then gcc will merge multiple calls |
| 106 | // in a single function together. This reduces code size slightly, but means |
| 107 | // that the native stack trace we get may point at the wrong call site. |
| 108 | static void Abort(const char* file, int line); |
| 109 | |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 110 | // Attaches the current native thread to the runtime. |
Elliott Hughes | 5fe594f | 2011-09-08 12:33:17 -0700 | [diff] [blame] | 111 | void AttachCurrentThread(const char* name, bool as_daemon); |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 112 | |
Elliott Hughes | bf86d04 | 2011-08-31 17:53:14 -0700 | [diff] [blame] | 113 | void CallExitHook(jint status); |
| 114 | |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 115 | // Detaches the current native thread from the runtime. |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 116 | void DetachCurrentThread(); |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 117 | |
Elliott Hughes | 8daa092 | 2011-09-11 13:46:25 -0700 | [diff] [blame] | 118 | void Dump(std::ostream& os); |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 119 | |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 120 | ~Runtime(); |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 121 | |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 122 | const std::string& GetBootClassPath() const { |
| 123 | return boot_class_path_; |
Brian Carlstrom | b765be0 | 2011-08-17 23:54:10 -0700 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | ClassLinker* GetClassLinker() const { |
Carl Shapiro | 7a90959 | 2011-07-24 19:21:59 -0700 | [diff] [blame] | 127 | return class_linker_; |
| 128 | } |
| 129 | |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 130 | const std::string& GetClassPath() const { |
| 131 | return class_path_; |
| 132 | } |
| 133 | |
| 134 | size_t GetDefaultStackSize() const { |
| 135 | return default_stack_size_; |
| 136 | } |
| 137 | |
Elliott Hughes | cf4c6c4 | 2011-09-01 15:16:42 -0700 | [diff] [blame] | 138 | InternTable* GetInternTable() const { |
| 139 | return intern_table_; |
| 140 | } |
| 141 | |
Elliott Hughes | 0af5543 | 2011-08-17 18:37:28 -0700 | [diff] [blame] | 142 | JavaVMExt* GetJavaVM() const { |
Elliott Hughes | c5f7c91 | 2011-08-18 14:00:42 -0700 | [diff] [blame] | 143 | return java_vm_; |
Elliott Hughes | f2682d5 | 2011-08-15 16:37:04 -0700 | [diff] [blame] | 144 | } |
| 145 | |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 146 | const std::vector<std::string>& GetProperties() const { |
| 147 | return properties_; |
| 148 | } |
| 149 | |
Elliott Hughes | c33a32b | 2011-10-11 18:18:07 -0700 | [diff] [blame] | 150 | MonitorList* GetMonitorList() const { |
| 151 | return monitor_list_; |
| 152 | } |
| 153 | |
Elliott Hughes | d92bec4 | 2011-09-02 17:04:36 -0700 | [diff] [blame] | 154 | ThreadList* GetThreadList() const { |
| 155 | return thread_list_; |
| 156 | } |
| 157 | |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 158 | const char* GetVersion() const { |
| 159 | return "2.0.0"; |
| 160 | } |
| 161 | |
Elliott Hughes | 410c0c8 | 2011-09-01 17:58:25 -0700 | [diff] [blame] | 162 | void VisitRoots(Heap::RootVisitor* visitor, void* arg) const; |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 163 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 164 | bool HasJniStubArray() const; |
| 165 | ByteArray* GetJniStubArray() const; |
| 166 | void SetJniStubArray(ByteArray* jni_stub_array); |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 167 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 168 | bool HasAbstractMethodErrorStubArray() const; |
| 169 | ByteArray* GetAbstractMethodErrorStubArray() const; |
| 170 | void SetAbstractMethodErrorStubArray(ByteArray* abstract_method_error_stub_array); |
Ian Rogers | ff1ed47 | 2011-09-20 13:46:24 -0700 | [diff] [blame] | 171 | |
Ian Rogers | 1cb0a1d | 2011-10-06 15:24:35 -0700 | [diff] [blame] | 172 | enum TrampolineType { |
| 173 | kInstanceMethod, |
| 174 | kStaticMethod, |
| 175 | kUnknownMethod, |
Ian Rogers | 4f0d07c | 2011-10-06 23:38:47 -0700 | [diff] [blame] | 176 | kLastTrampolineMethodType // Value used for iteration |
Ian Rogers | 1cb0a1d | 2011-10-06 15:24:35 -0700 | [diff] [blame] | 177 | }; |
| 178 | static TrampolineType GetTrampolineType(Method* method); |
| 179 | bool HasResolutionStubArray(TrampolineType type) const; |
| 180 | ByteArray* GetResolutionStubArray(TrampolineType type) const; |
| 181 | void SetResolutionStubArray(ByteArray* resolution_stub_array, TrampolineType type); |
Ian Rogers | ad25ac5 | 2011-10-04 19:13:33 -0700 | [diff] [blame] | 182 | |
Ian Rogers | ff1ed47 | 2011-09-20 13:46:24 -0700 | [diff] [blame] | 183 | // Returns a special method that describes all callee saves being spilled to the stack. |
Ian Rogers | 4f0d07c | 2011-10-06 23:38:47 -0700 | [diff] [blame] | 184 | enum CalleeSaveType { |
| 185 | kSaveAll, |
| 186 | kRefsOnly, |
| 187 | kRefsAndArgs, |
| 188 | kLastCalleeSaveType // Value used for iteration |
| 189 | }; |
| 190 | Method* CreateCalleeSaveMethod(InstructionSet insns, CalleeSaveType type); |
| 191 | bool HasCalleeSaveMethod(CalleeSaveType type) const; |
| 192 | Method* GetCalleeSaveMethod(CalleeSaveType type) const; |
| 193 | void SetCalleeSaveMethod(Method* method, CalleeSaveType type); |
| 194 | |
| 195 | Method* CreateRefOnlyCalleeSaveMethod(InstructionSet insns); |
| 196 | Method* CreateRefAndArgsCalleeSaveMethod(InstructionSet insns); |
Ian Rogers | ff1ed47 | 2011-09-20 13:46:24 -0700 | [diff] [blame] | 197 | |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 198 | int32_t GetStat(int kind); |
| 199 | |
| 200 | RuntimeStats* GetStats(); |
| 201 | |
| 202 | bool HasStatsEnabled() const { |
| 203 | return stats_enabled_; |
| 204 | } |
| 205 | |
| 206 | void ResetStats(int kinds); |
| 207 | |
| 208 | void SetStatsEnabled(bool new_state); |
| 209 | |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 210 | void DidForkFromZygote(); |
| 211 | |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 212 | private: |
Elliott Hughes | ffe6736 | 2011-07-17 12:09:27 -0700 | [diff] [blame] | 213 | static void PlatformAbort(const char*, int); |
| 214 | |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 215 | Runtime(); |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 216 | |
Elliott Hughes | c1674ed | 2011-08-25 18:09:09 -0700 | [diff] [blame] | 217 | void BlockSignals(); |
| 218 | |
Brian Carlstrom | 8a43659 | 2011-08-15 21:27:23 -0700 | [diff] [blame] | 219 | bool Init(const Options& options, bool ignore_unrecognized); |
Elliott Hughes | 038a806 | 2011-09-18 14:12:41 -0700 | [diff] [blame] | 220 | void InitNativeMethods(); |
Elliott Hughes | ad7c2a3 | 2011-08-31 11:58:10 -0700 | [diff] [blame] | 221 | void RegisterRuntimeNativeMethods(JNIEnv*); |
Brian Carlstrom | caabb1b | 2011-10-11 18:09:13 -0700 | [diff] [blame] | 222 | void StartSignalCatcher(); |
Elliott Hughes | 85d1545 | 2011-09-16 17:33:01 -0700 | [diff] [blame] | 223 | void StartDaemonThreads(); |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 224 | |
Brian Carlstrom | 0a5b14d | 2011-09-27 13:29:15 -0700 | [diff] [blame] | 225 | bool verbose_startup_; |
Elliott Hughes | 9ca7a1f | 2011-10-11 14:29:52 -0700 | [diff] [blame] | 226 | bool is_zygote_; |
Brian Carlstrom | 0a5b14d | 2011-09-27 13:29:15 -0700 | [diff] [blame] | 227 | |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 228 | // The host prefix is used during cross compilation. It is removed |
| 229 | // from the start of host paths such as: |
Brian Carlstrom | 47a0d5a | 2011-10-12 21:20:05 -0700 | [diff] [blame] | 230 | // $ANDROID_PRODUCT_OUT/data/art-cache/boot.oat |
Brian Carlstrom | 34f426c | 2011-10-04 12:58:02 -0700 | [diff] [blame] | 231 | // to produce target paths such as |
Brian Carlstrom | 47a0d5a | 2011-10-12 21:20:05 -0700 | [diff] [blame] | 232 | // /system/framework/boot.oat |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 233 | // Similarly it is prepended to target paths to arrive back at a |
| 234 | // host past. In both cases this is necessary because image and oat |
| 235 | // files embedded expect paths of dependent files (an image points |
| 236 | // to an oat file and an oat files to one or more dex files). These |
| 237 | // files contain the expected target path. |
| 238 | std::string host_prefix_; |
| 239 | |
Elliott Hughes | 7ede61e | 2011-09-14 18:18:06 -0700 | [diff] [blame] | 240 | std::string boot_class_path_; |
| 241 | std::string class_path_; |
| 242 | std::vector<std::string> properties_; |
| 243 | |
Brian Carlstrom | b765be0 | 2011-08-17 23:54:10 -0700 | [diff] [blame] | 244 | // The default stack size for managed threads created by the runtime. |
Elliott Hughes | be759c6 | 2011-09-08 19:38:21 -0700 | [diff] [blame] | 245 | size_t default_stack_size_; |
Brian Carlstrom | b765be0 | 2011-08-17 23:54:10 -0700 | [diff] [blame] | 246 | |
Elliott Hughes | c33a32b | 2011-10-11 18:18:07 -0700 | [diff] [blame] | 247 | MonitorList* monitor_list_; |
| 248 | |
Carl Shapiro | b557353 | 2011-07-12 18:22:59 -0700 | [diff] [blame] | 249 | ThreadList* thread_list_; |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 250 | |
Elliott Hughes | cf4c6c4 | 2011-09-01 15:16:42 -0700 | [diff] [blame] | 251 | InternTable* intern_table_; |
| 252 | |
Brian Carlstrom | b0460ea | 2011-07-29 10:08:05 -0700 | [diff] [blame] | 253 | ClassLinker* class_linker_; |
| 254 | |
Elliott Hughes | e27955c | 2011-08-26 15:21:24 -0700 | [diff] [blame] | 255 | SignalCatcher* signal_catcher_; |
| 256 | |
Elliott Hughes | c5f7c91 | 2011-08-18 14:00:42 -0700 | [diff] [blame] | 257 | JavaVMExt* java_vm_; |
Elliott Hughes | f2682d5 | 2011-08-15 16:37:04 -0700 | [diff] [blame] | 258 | |
Brian Carlstrom | 1619286 | 2011-09-12 17:50:06 -0700 | [diff] [blame] | 259 | ByteArray* jni_stub_array_; |
| 260 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 261 | ByteArray* abstract_method_error_stub_array_; |
| 262 | |
Ian Rogers | 4f0d07c | 2011-10-06 23:38:47 -0700 | [diff] [blame] | 263 | ByteArray* resolution_stub_array_[kLastTrampolineMethodType]; |
Ian Rogers | ad25ac5 | 2011-10-04 19:13:33 -0700 | [diff] [blame] | 264 | |
Ian Rogers | 4f0d07c | 2011-10-06 23:38:47 -0700 | [diff] [blame] | 265 | Method* callee_save_method_[kLastCalleeSaveType]; |
Ian Rogers | ff1ed47 | 2011-09-20 13:46:24 -0700 | [diff] [blame] | 266 | |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 267 | // As returned by ClassLoader.getSystemClassLoader() |
| 268 | ClassLoader* system_class_loader_; |
| 269 | |
Elliott Hughes | dcc2474 | 2011-09-07 14:02:44 -0700 | [diff] [blame] | 270 | bool started_; |
| 271 | |
Brian Carlstrom | 6ea095a | 2011-08-16 15:26:54 -0700 | [diff] [blame] | 272 | // Hooks supported by JNI_CreateJavaVM |
| 273 | jint (*vfprintf_)(FILE* stream, const char* format, va_list ap); |
| 274 | void (*exit_)(jint status); |
| 275 | void (*abort_)(); |
| 276 | |
Elliott Hughes | 9d5ccec | 2011-09-19 13:19:50 -0700 | [diff] [blame] | 277 | bool stats_enabled_; |
| 278 | RuntimeStats stats_; |
| 279 | |
Carl Shapiro | 2ed144c | 2011-07-26 16:52:08 -0700 | [diff] [blame] | 280 | // A pointer to the active runtime or NULL. |
| 281 | static Runtime* instance_; |
| 282 | |
Carl Shapiro | 61e019d | 2011-07-14 16:53:09 -0700 | [diff] [blame] | 283 | DISALLOW_COPY_AND_ASSIGN(Runtime); |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 284 | }; |
| 285 | |
| 286 | } // namespace art |
| 287 | |
Carl Shapiro | 1fb8620 | 2011-06-27 17:43:13 -0700 | [diff] [blame] | 288 | #endif // ART_SRC_RUNTIME_H_ |