blob: 249dfa07244e56132667a58930bd682d7201b40c [file] [log] [blame]
Elliott Hugheseac76672012-05-24 21:56:51 -07001/*
2 * Copyright (C) 2012 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
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_WELL_KNOWN_CLASSES_H_
18#define ART_RUNTIME_WELL_KNOWN_CLASSES_H_
Elliott Hugheseac76672012-05-24 21:56:51 -070019
Andreas Gampe7fbc4a52018-11-28 08:26:47 -080020#include "base/locks.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070021#include "jni.h"
Mathieu Chartierc4f39252016-10-05 18:32:08 -070022#include "obj_ptr.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070023
24namespace art {
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +010025
26class ArtMethod;
27
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080028namespace mirror {
Elliott Hughesaf8d15a2012-05-29 09:12:18 -070029class Class;
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080030} // namespace mirror
Elliott Hughesaf8d15a2012-05-29 09:12:18 -070031
Elliott Hugheseac76672012-05-24 21:56:51 -070032// Various classes used in JNI. We cache them so we don't have to keep looking
33// them up. Similar to libcore's JniConstants (except there's no overlap, so
34// we keep them separate).
35
36struct WellKnownClasses {
Brian Carlstromea46f952013-07-30 01:26:50 -070037 public:
Alex Lightf3677472019-06-26 16:31:53 -070038 // Run before native methods are registered.
39 static void Init(JNIEnv* env);
40 // Run after native methods are registered.
41 static void LateInit(JNIEnv* env);
Andreas Gampedb48a792017-09-08 22:18:30 -070042
43 static void Clear();
44
Alex Lightf3677472019-06-26 16:31:53 -070045 static void HandleJniIdTypeChange(JNIEnv* env);
46
Andreas Gampe9abc31e2018-05-17 11:47:09 -070047 static void InitStringInit(ObjPtr<mirror::Class> string_class,
48 ObjPtr<mirror::Class> string_builder_class)
49 REQUIRES_SHARED(Locks::mutator_lock_);
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +010050 static ArtMethod* StringInitToStringFactory(ArtMethod* method);
51 static uint32_t StringInitToEntryPoint(ArtMethod* method);
Elliott Hugheseac76672012-05-24 21:56:51 -070052
Mathieu Chartierc4f39252016-10-05 18:32:08 -070053 static ObjPtr<mirror::Class> ToClass(jclass global_jclass) REQUIRES_SHARED(Locks::mutator_lock_);
Elliott Hughesaf8d15a2012-05-29 09:12:18 -070054
Alex Lightf3677472019-06-26 16:31:53 -070055 private:
56 static void InitFieldsAndMethodsOnly(JNIEnv* env);
57
58 public:
Igor Murashkin367f3dd2016-09-01 17:00:24 -070059 static jclass dalvik_annotation_optimization_CriticalNative;
Igor Murashkin9d4b6da2016-07-29 09:51:58 -070060 static jclass dalvik_annotation_optimization_FastNative;
Andreas Gampe46aba362016-10-28 14:33:28 -070061 static jclass dalvik_system_BaseDexClassLoader;
Calin Juravle7865ac72017-06-28 11:03:12 -070062 static jclass dalvik_system_DelegateLastClassLoader;
Nicolas Geoffray7d8d8ff2016-11-02 12:38:05 +000063 static jclass dalvik_system_DexClassLoader;
Mathieu Chartier6bcae8f2014-09-04 18:33:17 -070064 static jclass dalvik_system_DexFile;
65 static jclass dalvik_system_DexPathList;
Andreas Gampec8ccf682014-09-29 20:07:43 -070066 static jclass dalvik_system_DexPathList__Element;
Narayan Kamathc3b7f1a2016-10-19 11:05:04 +010067 static jclass dalvik_system_EmulatedStackFrame;
David Brazdil05909d82018-12-06 16:25:16 +000068 static jclass dalvik_system_InMemoryDexClassLoader;
Ian Rogers00f7d0e2012-07-19 15:28:27 -070069 static jclass dalvik_system_PathClassLoader;
Mathieu Chartierb5de3bb2015-06-05 13:21:05 -070070 static jclass dalvik_system_VMRuntime;
Jeff Hao13e748b2015-08-25 20:44:19 +000071 static jclass java_lang_annotation_Annotation__array;
Mathieu Chartier6bcae8f2014-09-04 18:33:17 -070072 static jclass java_lang_BootClassLoader;
Elliott Hugheseac76672012-05-24 21:56:51 -070073 static jclass java_lang_ClassLoader;
74 static jclass java_lang_ClassNotFoundException;
75 static jclass java_lang_Daemons;
76 static jclass java_lang_Error;
Jeff Haoc92a7a12016-06-06 11:09:20 -070077 static jclass java_lang_IllegalAccessError;
78 static jclass java_lang_NoClassDefFoundError;
Ian Rogersaf6e67a2013-01-16 08:38:37 -080079 static jclass java_lang_Object;
Mathieu Chartiera61894d2015-04-23 16:32:54 -070080 static jclass java_lang_OutOfMemoryError;
Alex Lightf284a2d2019-06-24 13:30:42 -070081 static jclass java_lang_reflect_InvocationTargetException;
Neil Fuller79a21e72016-09-09 14:24:51 +010082 static jclass java_lang_reflect_Parameter;
83 static jclass java_lang_reflect_Parameter__array;
Elliott Hugheseac76672012-05-24 21:56:51 -070084 static jclass java_lang_reflect_Proxy;
Elliott Hughesa4f94742012-05-29 16:28:38 -070085 static jclass java_lang_RuntimeException;
Ian Rogers120f1c72012-09-28 17:17:10 -070086 static jclass java_lang_StackOverflowError;
Ian Rogersdd157d72014-05-15 14:47:50 -070087 static jclass java_lang_String;
Jeff Hao848f70a2014-01-15 13:49:50 -080088 static jclass java_lang_StringFactory;
Mathieu Chartier987ccff2013-07-08 11:05:21 -070089 static jclass java_lang_System;
Elliott Hugheseac76672012-05-24 21:56:51 -070090 static jclass java_lang_Thread;
Elliott Hughesaf8d15a2012-05-29 09:12:18 -070091 static jclass java_lang_ThreadGroup;
Elliott Hughesa4f94742012-05-29 16:28:38 -070092 static jclass java_lang_Throwable;
Andreas Gampe7ea6f792014-07-14 16:21:44 -070093 static jclass java_util_Collections;
Narayan Kamathf5f1f802018-04-03 15:23:46 +010094 static jclass java_util_function_Consumer;
Orion Hodson928033d2018-02-07 05:30:54 +000095 static jclass java_nio_ByteBuffer;
Elliott Hughesaecb5f32013-03-28 08:27:38 -070096 static jclass java_nio_DirectByteBuffer;
Jeff Hao13e748b2015-08-25 20:44:19 +000097 static jclass libcore_reflect_AnnotationFactory;
98 static jclass libcore_reflect_AnnotationMember;
Neil Fullerc0f02d42018-06-11 09:49:01 +000099 static jclass libcore_util_EmptyArray;
Elliott Hugheseac76672012-05-24 21:56:51 -0700100 static jclass org_apache_harmony_dalvik_ddmc_Chunk;
101 static jclass org_apache_harmony_dalvik_ddmc_DdmServer;
102
Andreas Gampe473191c2017-12-28 16:55:31 -0800103 static jmethodID dalvik_system_BaseDexClassLoader_getLdLibraryPath;
Mathieu Chartierb5de3bb2015-06-05 13:21:05 -0700104 static jmethodID dalvik_system_VMRuntime_runFinalization;
Andrei Oneaa2d2bc22019-01-25 16:18:53 +0000105 static jmethodID dalvik_system_VMRuntime_hiddenApiUsed;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700106 static jmethodID java_lang_Boolean_valueOf;
107 static jmethodID java_lang_Byte_valueOf;
108 static jmethodID java_lang_Character_valueOf;
Elliott Hughesa4f94742012-05-29 16:28:38 -0700109 static jmethodID java_lang_ClassLoader_loadClass;
Elliott Hugheseac76672012-05-24 21:56:51 -0700110 static jmethodID java_lang_ClassNotFoundException_init;
Elliott Hugheseac76672012-05-24 21:56:51 -0700111 static jmethodID java_lang_Daemons_start;
Mathieu Chartiercef50f02014-12-09 17:38:52 -0800112 static jmethodID java_lang_Daemons_stop;
Alex Lighte0b2ce42019-02-21 19:23:42 +0000113 static jmethodID java_lang_Daemons_waitForDaemonStart;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700114 static jmethodID java_lang_Double_valueOf;
115 static jmethodID java_lang_Float_valueOf;
116 static jmethodID java_lang_Integer_valueOf;
Orion Hodsonf8db2c32017-07-07 20:07:12 +0100117 static jmethodID java_lang_invoke_MethodHandles_lookup;
118 static jmethodID java_lang_invoke_MethodHandles_Lookup_findConstructor;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700119 static jmethodID java_lang_Long_valueOf;
Elliott Hughesa4f94742012-05-29 16:28:38 -0700120 static jmethodID java_lang_ref_FinalizerReference_add;
121 static jmethodID java_lang_ref_ReferenceQueue_add;
Alex Lightf284a2d2019-06-24 13:30:42 -0700122 static jmethodID java_lang_reflect_InvocationTargetException_init;
Neil Fuller79a21e72016-09-09 14:24:51 +0100123 static jmethodID java_lang_reflect_Parameter_init;
Alex Light6cae5ea2018-06-07 17:07:02 -0700124 static jmethodID java_lang_reflect_Proxy_init;
Brian Carlstromea46f952013-07-30 01:26:50 -0700125 static jmethodID java_lang_reflect_Proxy_invoke;
Ian Rogersef28b142012-11-30 14:22:18 -0800126 static jmethodID java_lang_Runtime_nativeLoad;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700127 static jmethodID java_lang_Short_valueOf;
Nicolas Geoffray5d37c152017-01-12 13:25:19 +0000128 static jmethodID java_lang_String_charAt;
Tobias Thierer5cbe65d2016-07-22 18:37:59 +0100129 static jmethodID java_lang_Thread_dispatchUncaughtException;
Elliott Hugheseac76672012-05-24 21:56:51 -0700130 static jmethodID java_lang_Thread_init;
Elliott Hughesaf8d15a2012-05-29 09:12:18 -0700131 static jmethodID java_lang_Thread_run;
Andreas Gampe56776012018-01-26 17:40:55 -0800132 static jmethodID java_lang_ThreadGroup_add;
Elliott Hughesaf8d15a2012-05-29 09:12:18 -0700133 static jmethodID java_lang_ThreadGroup_removeThread;
Elliott Hughesaecb5f32013-03-28 08:27:38 -0700134 static jmethodID java_nio_DirectByteBuffer_init;
Narayan Kamathf5f1f802018-04-03 15:23:46 +0100135 static jmethodID java_util_function_Consumer_accept;
Jeff Hao13e748b2015-08-25 20:44:19 +0000136 static jmethodID libcore_reflect_AnnotationFactory_createAnnotation;
137 static jmethodID libcore_reflect_AnnotationMember_init;
Elliott Hugheseac76672012-05-24 21:56:51 -0700138 static jmethodID org_apache_harmony_dalvik_ddmc_DdmServer_broadcast;
139 static jmethodID org_apache_harmony_dalvik_ddmc_DdmServer_dispatch;
140
Andreas Gampe46aba362016-10-28 14:33:28 -0700141 static jfieldID dalvik_system_BaseDexClassLoader_pathList;
Nicolas Geoffray80a560c2018-10-26 13:48:51 +0100142 static jfieldID dalvik_system_BaseDexClassLoader_sharedLibraryLoaders;
Mathieu Chartier6bcae8f2014-09-04 18:33:17 -0700143 static jfieldID dalvik_system_DexFile_cookie;
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800144 static jfieldID dalvik_system_DexFile_fileName;
Mathieu Chartier6bcae8f2014-09-04 18:33:17 -0700145 static jfieldID dalvik_system_DexPathList_dexElements;
Andreas Gampec8ccf682014-09-29 20:07:43 -0700146 static jfieldID dalvik_system_DexPathList__Element_dexFile;
Narayan Kamathf5f1f802018-04-03 15:23:46 +0100147 static jfieldID dalvik_system_VMRuntime_nonSdkApiUsageConsumer;
Charles Munger5cc0e752018-11-09 12:30:46 -0800148 static jfieldID java_lang_Thread_parkBlocker;
Elliott Hughesaf8d15a2012-05-29 09:12:18 -0700149 static jfieldID java_lang_Thread_daemon;
150 static jfieldID java_lang_Thread_group;
151 static jfieldID java_lang_Thread_lock;
152 static jfieldID java_lang_Thread_name;
153 static jfieldID java_lang_Thread_priority;
Anwar Ghuloum3c50a4b2013-06-21 13:05:23 -0700154 static jfieldID java_lang_Thread_nativePeer;
Alex Lighte0b2ce42019-02-21 19:23:42 +0000155 static jfieldID java_lang_Thread_systemDaemon;
Charles Mungeraa31f492018-11-01 18:57:38 +0000156 static jfieldID java_lang_Thread_unparkedBeforeStart;
Sebastien Hertze49e1952014-10-13 11:27:13 +0200157 static jfieldID java_lang_ThreadGroup_groups;
Przemyslaw Szczepaniak464595f2015-11-24 11:59:59 +0000158 static jfieldID java_lang_ThreadGroup_ngroups;
Elliott Hughesaf8d15a2012-05-29 09:12:18 -0700159 static jfieldID java_lang_ThreadGroup_mainThreadGroup;
160 static jfieldID java_lang_ThreadGroup_name;
Sebastien Hertze49e1952014-10-13 11:27:13 +0200161 static jfieldID java_lang_ThreadGroup_parent;
Elliott Hughesaf8d15a2012-05-29 09:12:18 -0700162 static jfieldID java_lang_ThreadGroup_systemThreadGroup;
Brian Carlstrom34375312014-09-10 23:10:47 -0700163 static jfieldID java_lang_Throwable_cause;
164 static jfieldID java_lang_Throwable_detailMessage;
165 static jfieldID java_lang_Throwable_stackTrace;
166 static jfieldID java_lang_Throwable_stackState;
167 static jfieldID java_lang_Throwable_suppressedExceptions;
Orion Hodson928033d2018-02-07 05:30:54 +0000168 static jfieldID java_nio_ByteBuffer_address;
169 static jfieldID java_nio_ByteBuffer_hb;
170 static jfieldID java_nio_ByteBuffer_isReadOnly;
171 static jfieldID java_nio_ByteBuffer_limit;
172 static jfieldID java_nio_ByteBuffer_offset;
Elliott Hughesaecb5f32013-03-28 08:27:38 -0700173 static jfieldID java_nio_DirectByteBuffer_capacity;
174 static jfieldID java_nio_DirectByteBuffer_effectiveDirectAddress;
Orion Hodson928033d2018-02-07 05:30:54 +0000175
Brian Carlstrom34375312014-09-10 23:10:47 -0700176 static jfieldID java_util_Collections_EMPTY_LIST;
Neil Fullerc0f02d42018-06-11 09:49:01 +0000177 static jfieldID libcore_util_EmptyArray_STACK_TRACE_ELEMENT;
Elliott Hugheseac76672012-05-24 21:56:51 -0700178 static jfieldID org_apache_harmony_dalvik_ddmc_Chunk_data;
179 static jfieldID org_apache_harmony_dalvik_ddmc_Chunk_length;
180 static jfieldID org_apache_harmony_dalvik_ddmc_Chunk_offset;
181 static jfieldID org_apache_harmony_dalvik_ddmc_Chunk_type;
182};
183
184} // namespace art
185
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700186#endif // ART_RUNTIME_WELL_KNOWN_CLASSES_H_