runtime.h revision cdfd39f579574a75b98e7ad48c69826b00361b27
1/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ART_RUNTIME_RUNTIME_H_
18#define ART_RUNTIME_RUNTIME_H_
19
20#include <jni.h>
21#include <stdio.h>
22
23#include <iosfwd>
24#include <set>
25#include <string>
26#include <utility>
27#include <vector>
28
29#include "base/allocator.h"
30#include "compiler_callbacks.h"
31#include "gc_root.h"
32#include "instrumentation.h"
33#include "instruction_set.h"
34#include "jobject_comparator.h"
35#include "nativebridge/native_bridge.h"
36#include "object_callbacks.h"
37#include "offsets.h"
38#include "profiler_options.h"
39#include "quick/quick_method_frame_info.h"
40#include "runtime_stats.h"
41#include "safe_map.h"
42
43namespace art {
44
45namespace gc {
46  class Heap;
47}  // namespace gc
48namespace mirror {
49  class ArtMethod;
50  class ClassLoader;
51  class Array;
52  template<class T> class ObjectArray;
53  template<class T> class PrimitiveArray;
54  typedef PrimitiveArray<int8_t> ByteArray;
55  class String;
56  class Throwable;
57}  // namespace mirror
58namespace verifier {
59class MethodVerifier;
60}
61class ClassLinker;
62class DexFile;
63class InternTable;
64class JavaVMExt;
65class MonitorList;
66class MonitorPool;
67class NullPointerHandler;
68class SignalCatcher;
69class StackOverflowHandler;
70class SuspensionHandler;
71class ThreadList;
72class Trace;
73class Transaction;
74
75typedef std::vector<std::pair<std::string, const void*>> RuntimeOptions;
76
77// Not all combinations of flags are valid. You may not visit all roots as well as the new roots
78// (no logical reason to do this). You also may not start logging new roots and stop logging new
79// roots (also no logical reason to do this).
80enum VisitRootFlags : uint8_t {
81  kVisitRootFlagAllRoots = 0x1,
82  kVisitRootFlagNewRoots = 0x2,
83  kVisitRootFlagStartLoggingNewRoots = 0x4,
84  kVisitRootFlagStopLoggingNewRoots = 0x8,
85  kVisitRootFlagClearRootLog = 0x10,
86};
87
88class Runtime {
89 public:
90  // Creates and initializes a new runtime.
91  static bool Create(const RuntimeOptions& options, bool ignore_unrecognized)
92      SHARED_TRYLOCK_FUNCTION(true, Locks::mutator_lock_);
93
94  bool IsCompiler() const {
95    return compiler_callbacks_ != nullptr;
96  }
97
98  bool CanRelocate() const {
99    return !IsCompiler() || compiler_callbacks_->IsRelocationPossible();
100  }
101
102  bool ShouldRelocate() const {
103    return must_relocate_ && CanRelocate();
104  }
105
106  bool MustRelocateIfPossible() const {
107    return must_relocate_;
108  }
109
110  bool IsDex2OatEnabled() const {
111    return dex2oat_enabled_ && IsImageDex2OatEnabled();
112  }
113
114  bool IsImageDex2OatEnabled() const {
115    return image_dex2oat_enabled_;
116  }
117
118  CompilerCallbacks* GetCompilerCallbacks() {
119    return compiler_callbacks_;
120  }
121
122  bool IsZygote() const {
123    return is_zygote_;
124  }
125
126  bool IsExplicitGcDisabled() const {
127    return is_explicit_gc_disabled_;
128  }
129
130  std::string GetCompilerExecutable() const;
131  std::string GetPatchoatExecutable() const;
132
133  const std::vector<std::string>& GetCompilerOptions() const {
134    return compiler_options_;
135  }
136
137  const std::vector<std::string>& GetImageCompilerOptions() const {
138    return image_compiler_options_;
139  }
140
141  const ProfilerOptions& GetProfilerOptions() const {
142    return profiler_options_;
143  }
144
145  // Starts a runtime, which may cause threads to be started and code to run.
146  bool Start() UNLOCK_FUNCTION(Locks::mutator_lock_);
147
148  bool IsShuttingDown(Thread* self);
149  bool IsShuttingDownLocked() const EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) {
150    return shutting_down_;
151  }
152
153  size_t NumberOfThreadsBeingBorn() const EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) {
154    return threads_being_born_;
155  }
156
157  void StartThreadBirth() EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_) {
158    threads_being_born_++;
159  }
160
161  void EndThreadBirth() EXCLUSIVE_LOCKS_REQUIRED(Locks::runtime_shutdown_lock_);
162
163  bool IsStarted() const {
164    return started_;
165  }
166
167  bool IsFinishedStarting() const {
168    return finished_starting_;
169  }
170
171  static Runtime* Current() {
172    return instance_;
173  }
174
175  // Aborts semi-cleanly. Used in the implementation of LOG(FATAL), which most
176  // callers should prefer.
177  // This isn't marked ((noreturn)) because then gcc will merge multiple calls
178  // in a single function together. This reduces code size slightly, but means
179  // that the native stack trace we get may point at the wrong call site.
180  static void Abort() LOCKS_EXCLUDED(Locks::abort_lock_);
181
182  // Returns the "main" ThreadGroup, used when attaching user threads.
183  jobject GetMainThreadGroup() const;
184
185  // Returns the "system" ThreadGroup, used when attaching our internal threads.
186  jobject GetSystemThreadGroup() const;
187
188  // Returns the system ClassLoader which represents the CLASSPATH.
189  jobject GetSystemClassLoader() const;
190
191  // Attaches the calling native thread to the runtime.
192  bool AttachCurrentThread(const char* thread_name, bool as_daemon, jobject thread_group,
193                           bool create_peer);
194
195  void CallExitHook(jint status);
196
197  // Detaches the current native thread from the runtime.
198  void DetachCurrentThread() LOCKS_EXCLUDED(Locks::mutator_lock_);
199
200  void DumpForSigQuit(std::ostream& os)
201      EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_);
202  void DumpLockHolders(std::ostream& os);
203
204  ~Runtime();
205
206  const std::string& GetBootClassPathString() const {
207    return boot_class_path_string_;
208  }
209
210  const std::string& GetClassPathString() const {
211    return class_path_string_;
212  }
213
214  ClassLinker* GetClassLinker() const {
215    return class_linker_;
216  }
217
218  size_t GetDefaultStackSize() const {
219    return default_stack_size_;
220  }
221
222  gc::Heap* GetHeap() const {
223    return heap_;
224  }
225
226  InternTable* GetInternTable() const {
227    DCHECK(intern_table_ != NULL);
228    return intern_table_;
229  }
230
231  JavaVMExt* GetJavaVM() const {
232    return java_vm_;
233  }
234
235  size_t GetMaxSpinsBeforeThinkLockInflation() const {
236    return max_spins_before_thin_lock_inflation_;
237  }
238
239  MonitorList* GetMonitorList() const {
240    return monitor_list_;
241  }
242
243  MonitorPool* GetMonitorPool() const {
244    return monitor_pool_;
245  }
246
247  mirror::Throwable* GetPreAllocatedOutOfMemoryError() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
248
249  const std::vector<std::string>& GetProperties() const {
250    return properties_;
251  }
252
253  ThreadList* GetThreadList() const {
254    return thread_list_;
255  }
256
257  static const char* GetVersion() {
258    return "2.1.0";
259  }
260
261  void DisallowNewSystemWeaks() EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_);
262  void AllowNewSystemWeaks() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
263
264  // Visit all the roots. If only_dirty is true then non-dirty roots won't be visited. If
265  // clean_dirty is true then dirty roots will be marked as non-dirty after visiting.
266  void VisitRoots(RootCallback* visitor, void* arg, VisitRootFlags flags = kVisitRootFlagAllRoots)
267      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
268
269  // Visit all of the roots we can do safely do concurrently.
270  void VisitConcurrentRoots(RootCallback* visitor, void* arg,
271                            VisitRootFlags flags = kVisitRootFlagAllRoots)
272      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
273
274  // Visit all of the non thread roots, we can do this with mutators unpaused.
275  void VisitNonThreadRoots(RootCallback* visitor, void* arg)
276      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
277
278  // Visit all other roots which must be done with mutators suspended.
279  void VisitNonConcurrentRoots(RootCallback* visitor, void* arg)
280      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
281
282  // Sweep system weaks, the system weak is deleted if the visitor return nullptr. Otherwise, the
283  // system weak is updated to be the visitor's returned value.
284  void SweepSystemWeaks(IsMarkedCallback* visitor, void* arg)
285      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
286
287  // Constant roots are the roots which never change after the runtime is initialized, they only
288  // need to be visited once per GC cycle.
289  void VisitConstantRoots(RootCallback* callback, void* arg)
290      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
291
292  // Returns a special method that calls into a trampoline for runtime method resolution
293  mirror::ArtMethod* GetResolutionMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
294
295  bool HasResolutionMethod() const {
296    return !resolution_method_.IsNull();
297  }
298
299  void SetResolutionMethod(mirror::ArtMethod* method) {
300    resolution_method_ = GcRoot<mirror::ArtMethod>(method);
301  }
302
303  mirror::ArtMethod* CreateResolutionMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
304
305  // Returns a special method that calls into a trampoline for runtime imt conflicts.
306  mirror::ArtMethod* GetImtConflictMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
307
308  bool HasImtConflictMethod() const {
309    return !imt_conflict_method_.IsNull();
310  }
311
312  void SetImtConflictMethod(mirror::ArtMethod* method) {
313    imt_conflict_method_ = GcRoot<mirror::ArtMethod>(method);
314  }
315
316  mirror::ArtMethod* CreateImtConflictMethod() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
317
318  // Returns an imt with every entry set to conflict, used as default imt for all classes.
319  mirror::ObjectArray<mirror::ArtMethod>* GetDefaultImt()
320      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
321
322  bool HasDefaultImt() const {
323    return !default_imt_.IsNull();
324  }
325
326  void SetDefaultImt(mirror::ObjectArray<mirror::ArtMethod>* imt) {
327    default_imt_ = GcRoot<mirror::ObjectArray<mirror::ArtMethod>>(imt);
328  }
329
330  mirror::ObjectArray<mirror::ArtMethod>* CreateDefaultImt(ClassLinker* cl)
331      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
332
333  // Returns a special method that describes all callee saves being spilled to the stack.
334  enum CalleeSaveType {
335    kSaveAll,
336    kRefsOnly,
337    kRefsAndArgs,
338    kLastCalleeSaveType  // Value used for iteration
339  };
340
341  bool HasCalleeSaveMethod(CalleeSaveType type) const {
342    return !callee_save_methods_[type].IsNull();
343  }
344
345  mirror::ArtMethod* GetCalleeSaveMethod(CalleeSaveType type)
346      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
347
348  mirror::ArtMethod* GetCalleeSaveMethodUnchecked(CalleeSaveType type)
349      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
350
351  QuickMethodFrameInfo GetCalleeSaveMethodFrameInfo(CalleeSaveType type) const {
352    return callee_save_method_frame_infos_[type];
353  }
354
355  QuickMethodFrameInfo GetRuntimeMethodFrameInfo(mirror::ArtMethod* method)
356      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
357
358  static size_t GetCalleeSaveMethodOffset(CalleeSaveType type) {
359    return OFFSETOF_MEMBER(Runtime, callee_save_methods_[type]);
360  }
361
362  InstructionSet GetInstructionSet() const {
363    return instruction_set_;
364  }
365
366  void SetInstructionSet(InstructionSet instruction_set);
367
368  void SetCalleeSaveMethod(mirror::ArtMethod* method, CalleeSaveType type);
369
370  mirror::ArtMethod* CreateCalleeSaveMethod(CalleeSaveType type)
371      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
372
373  int32_t GetStat(int kind);
374
375  RuntimeStats* GetStats() {
376    return &stats_;
377  }
378
379  bool HasStatsEnabled() const {
380    return stats_enabled_;
381  }
382
383  void ResetStats(int kinds);
384
385  void SetStatsEnabled(bool new_state);
386
387  void PreZygoteFork();
388  bool InitZygote();
389  void DidForkFromZygote();
390
391  const instrumentation::Instrumentation* GetInstrumentation() const {
392    return &instrumentation_;
393  }
394
395  instrumentation::Instrumentation* GetInstrumentation() {
396    return &instrumentation_;
397  }
398
399  bool UseCompileTimeClassPath() const {
400    return use_compile_time_class_path_;
401  }
402
403  void AddMethodVerifier(verifier::MethodVerifier* verifier) LOCKS_EXCLUDED(method_verifier_lock_);
404  void RemoveMethodVerifier(verifier::MethodVerifier* verifier)
405      LOCKS_EXCLUDED(method_verifier_lock_);
406
407  const std::vector<const DexFile*>& GetCompileTimeClassPath(jobject class_loader);
408  void SetCompileTimeClassPath(jobject class_loader, std::vector<const DexFile*>& class_path);
409
410  void StartProfiler(const char* profile_output_filename);
411  void UpdateProfilerState(int state);
412
413  // Transaction support.
414  bool IsActiveTransaction() const {
415    return preinitialization_transaction_ != nullptr;
416  }
417  void EnterTransactionMode(Transaction* transaction);
418  void ExitTransactionMode();
419  void RecordWriteFieldBoolean(mirror::Object* obj, MemberOffset field_offset, uint8_t value,
420                               bool is_volatile) const;
421  void RecordWriteFieldByte(mirror::Object* obj, MemberOffset field_offset, int8_t value,
422                            bool is_volatile) const;
423  void RecordWriteFieldChar(mirror::Object* obj, MemberOffset field_offset, uint16_t value,
424                            bool is_volatile) const;
425  void RecordWriteFieldShort(mirror::Object* obj, MemberOffset field_offset, int16_t value,
426                          bool is_volatile) const;
427  void RecordWriteField32(mirror::Object* obj, MemberOffset field_offset, uint32_t value,
428                          bool is_volatile) const;
429  void RecordWriteField64(mirror::Object* obj, MemberOffset field_offset, uint64_t value,
430                          bool is_volatile) const;
431  void RecordWriteFieldReference(mirror::Object* obj, MemberOffset field_offset,
432                                 mirror::Object* value, bool is_volatile) const;
433  void RecordWriteArray(mirror::Array* array, size_t index, uint64_t value) const
434      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
435  void RecordStrongStringInsertion(mirror::String* s) const
436      EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
437  void RecordWeakStringInsertion(mirror::String* s) const
438      EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
439  void RecordStrongStringRemoval(mirror::String* s) const
440      EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
441  void RecordWeakStringRemoval(mirror::String* s) const
442      EXCLUSIVE_LOCKS_REQUIRED(Locks::intern_table_lock_);
443
444  void SetFaultMessage(const std::string& message);
445  // Only read by the signal handler, NO_THREAD_SAFETY_ANALYSIS to prevent lock order violations
446  // with the unexpected_signal_lock_.
447  const std::string& GetFaultMessage() NO_THREAD_SAFETY_ANALYSIS {
448    return fault_message_;
449  }
450
451  void AddCurrentRuntimeFeaturesAsDex2OatArguments(std::vector<std::string>* arg_vector) const;
452
453  bool ExplicitNullChecks() const {
454    return null_pointer_handler_ == nullptr;
455  }
456
457  bool ExplicitSuspendChecks() const {
458    return suspend_handler_ == nullptr;
459  }
460
461  bool ExplicitStackOverflowChecks() const {
462    return stack_overflow_handler_ == nullptr;
463  }
464
465  bool IsVerificationEnabled() const {
466    return verify_;
467  }
468
469  bool RunningOnValgrind() const {
470    return running_on_valgrind_;
471  }
472
473  void SetTargetSdkVersion(int32_t version) {
474    target_sdk_version_ = version;
475  }
476
477  int32_t GetTargetSdkVersion() const {
478    return target_sdk_version_;
479  }
480
481  static const char* GetDefaultInstructionSetFeatures() {
482    return kDefaultInstructionSetFeatures;
483  }
484
485 private:
486  static void InitPlatformSignalHandlers();
487
488  Runtime();
489
490  void BlockSignals();
491
492  bool Init(const RuntimeOptions& options, bool ignore_unrecognized)
493      SHARED_TRYLOCK_FUNCTION(true, Locks::mutator_lock_);
494  void InitNativeMethods() LOCKS_EXCLUDED(Locks::mutator_lock_);
495  void InitThreadGroups(Thread* self);
496  void RegisterRuntimeNativeMethods(JNIEnv* env);
497
498  void StartDaemonThreads();
499  void StartSignalCatcher();
500
501  // A pointer to the active runtime or NULL.
502  static Runtime* instance_;
503
504  static const char* kDefaultInstructionSetFeatures;
505
506  // NOTE: these must match the gc::ProcessState values as they come directly from the framework.
507  static constexpr int kProfileForground = 0;
508  static constexpr int kProfileBackgrouud = 1;
509
510  GcRoot<mirror::ArtMethod> callee_save_methods_[kLastCalleeSaveType];
511  GcRoot<mirror::Throwable> pre_allocated_OutOfMemoryError_;
512  GcRoot<mirror::ArtMethod> resolution_method_;
513  GcRoot<mirror::ArtMethod> imt_conflict_method_;
514  GcRoot<mirror::ObjectArray<mirror::ArtMethod>> default_imt_;
515
516  InstructionSet instruction_set_;
517  QuickMethodFrameInfo callee_save_method_frame_infos_[kLastCalleeSaveType];
518
519  CompilerCallbacks* compiler_callbacks_;
520  bool is_zygote_;
521  bool must_relocate_;
522  bool is_concurrent_gc_enabled_;
523  bool is_explicit_gc_disabled_;
524  bool dex2oat_enabled_;
525  bool image_dex2oat_enabled_;
526
527  std::string compiler_executable_;
528  std::string patchoat_executable_;
529  std::vector<std::string> compiler_options_;
530  std::vector<std::string> image_compiler_options_;
531
532  std::string boot_class_path_string_;
533  std::string class_path_string_;
534  std::vector<std::string> properties_;
535
536  // The default stack size for managed threads created by the runtime.
537  size_t default_stack_size_;
538
539  gc::Heap* heap_;
540
541  // The number of spins that are done before thread suspension is used to forcibly inflate.
542  size_t max_spins_before_thin_lock_inflation_;
543  MonitorList* monitor_list_;
544  MonitorPool* monitor_pool_;
545
546  ThreadList* thread_list_;
547
548  InternTable* intern_table_;
549
550  ClassLinker* class_linker_;
551
552  SignalCatcher* signal_catcher_;
553  std::string stack_trace_file_;
554
555  JavaVMExt* java_vm_;
556
557  // Fault message, printed when we get a SIGSEGV.
558  Mutex fault_message_lock_ DEFAULT_MUTEX_ACQUIRED_AFTER;
559  std::string fault_message_ GUARDED_BY(fault_message_lock_);
560
561  // Method verifier set, used so that we can update their GC roots.
562  Mutex method_verifier_lock_ DEFAULT_MUTEX_ACQUIRED_AFTER;
563  std::set<verifier::MethodVerifier*> method_verifiers_;
564
565  // A non-zero value indicates that a thread has been created but not yet initialized. Guarded by
566  // the shutdown lock so that threads aren't born while we're shutting down.
567  size_t threads_being_born_ GUARDED_BY(Locks::runtime_shutdown_lock_);
568
569  // Waited upon until no threads are being born.
570  std::unique_ptr<ConditionVariable> shutdown_cond_ GUARDED_BY(Locks::runtime_shutdown_lock_);
571
572  // Set when runtime shutdown is past the point that new threads may attach.
573  bool shutting_down_ GUARDED_BY(Locks::runtime_shutdown_lock_);
574
575  // The runtime is starting to shutdown but is blocked waiting on shutdown_cond_.
576  bool shutting_down_started_ GUARDED_BY(Locks::runtime_shutdown_lock_);
577
578  bool started_;
579
580  // New flag added which tells us if the runtime has finished starting. If
581  // this flag is set then the Daemon threads are created and the class loader
582  // is created. This flag is needed for knowing if its safe to request CMS.
583  bool finished_starting_;
584
585  // Hooks supported by JNI_CreateJavaVM
586  jint (*vfprintf_)(FILE* stream, const char* format, va_list ap);
587  void (*exit_)(jint status);
588  void (*abort_)();
589
590  bool stats_enabled_;
591  RuntimeStats stats_;
592
593  const bool running_on_valgrind_;
594
595  std::string profile_output_filename_;
596  ProfilerOptions profiler_options_;
597  bool profiler_started_;
598
599  bool method_trace_;
600  std::string method_trace_file_;
601  size_t method_trace_file_size_;
602  instrumentation::Instrumentation instrumentation_;
603
604  typedef AllocationTrackingSafeMap<jobject, std::vector<const DexFile*>,
605                                    kAllocatorTagCompileTimeClassPath, JobjectComparator>
606      CompileTimeClassPaths;
607  CompileTimeClassPaths compile_time_class_paths_;
608  bool use_compile_time_class_path_;
609
610  jobject main_thread_group_;
611  jobject system_thread_group_;
612
613  // As returned by ClassLoader.getSystemClassLoader().
614  jobject system_class_loader_;
615
616  // If true, then we dump the GC cumulative timings on shutdown.
617  bool dump_gc_performance_on_shutdown_;
618
619  // Transaction used for pre-initializing classes at compilation time.
620  Transaction* preinitialization_transaction_;
621  NullPointerHandler* null_pointer_handler_;
622  SuspensionHandler* suspend_handler_;
623  StackOverflowHandler* stack_overflow_handler_;
624
625  // If false, verification is disabled. True by default.
626  bool verify_;
627
628  // Specifies target SDK version to allow workarounds for certain API levels.
629  int32_t target_sdk_version_;
630
631  // Implicit checks flags.
632  bool implicit_null_checks_;       // NullPointer checks are implicit.
633  bool implicit_so_checks_;         // StackOverflow checks are implicit.
634  bool implicit_suspend_checks_;    // Thread suspension checks are implicit.
635
636  // The filename to the native bridge library. If this is not empty the native bridge will be
637  // initialized and loaded from the given file (initialized and available). An empty value means
638  // that there's no native bridge (initialized but not available).
639  //
640  // The native bridge allows running native code compiled for a foreign ISA. The way it works is,
641  // if standard dlopen fails to load native library associated with native activity, it calls to
642  // the native bridge to load it and then gets the trampoline for the entry to native activity.
643  std::string native_bridge_library_filename_;
644
645  // Native bridge library runtime callbacks. They represent the runtime interface to native bridge.
646  //
647  // The interface is expected to expose the following methods:
648  // getMethodShorty(): in the case of native method calling JNI native function CallXXXXMethodY(),
649  //   native bridge calls back to VM for the shorty of the method so that it can prepare based on
650  //   host calling convention.
651  // getNativeMethodCount() and getNativeMethods(): in case of JNI function UnregisterNatives(),
652  //   native bridge can call back to get all native methods of specified class so that all
653  //   corresponding trampolines can be destroyed.
654  android::NativeBridgeRuntimeCallbacks native_bridge_art_callbacks_;
655
656  DISALLOW_COPY_AND_ASSIGN(Runtime);
657};
658
659}  // namespace art
660
661#endif  // ART_RUNTIME_RUNTIME_H_
662