blob: 3c5144fbd597c34e285296a6292be319caa50145 [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:
Ian Rogersef28b142012-11-30 14:22:18 -080038 static void Init(JNIEnv* env); // Run before native methods are registered.
39 static void LateInit(JNIEnv* env); // Run after native methods are registered.
Andreas Gampedb48a792017-09-08 22:18:30 -070040
41 static void Clear();
42
Andreas Gampe9abc31e2018-05-17 11:47:09 -070043 static void InitStringInit(ObjPtr<mirror::Class> string_class,
44 ObjPtr<mirror::Class> string_builder_class)
45 REQUIRES_SHARED(Locks::mutator_lock_);
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +010046 static ArtMethod* StringInitToStringFactory(ArtMethod* method);
47 static uint32_t StringInitToEntryPoint(ArtMethod* method);
Elliott Hugheseac76672012-05-24 21:56:51 -070048
Mathieu Chartierc4f39252016-10-05 18:32:08 -070049 static ObjPtr<mirror::Class> ToClass(jclass global_jclass) REQUIRES_SHARED(Locks::mutator_lock_);
Elliott Hughesaf8d15a2012-05-29 09:12:18 -070050
Igor Murashkin367f3dd2016-09-01 17:00:24 -070051 static jclass dalvik_annotation_optimization_CriticalNative;
Igor Murashkin9d4b6da2016-07-29 09:51:58 -070052 static jclass dalvik_annotation_optimization_FastNative;
Andreas Gampe46aba362016-10-28 14:33:28 -070053 static jclass dalvik_system_BaseDexClassLoader;
Calin Juravle7865ac72017-06-28 11:03:12 -070054 static jclass dalvik_system_DelegateLastClassLoader;
Nicolas Geoffray7d8d8ff2016-11-02 12:38:05 +000055 static jclass dalvik_system_DexClassLoader;
Mathieu Chartier6bcae8f2014-09-04 18:33:17 -070056 static jclass dalvik_system_DexFile;
57 static jclass dalvik_system_DexPathList;
Andreas Gampec8ccf682014-09-29 20:07:43 -070058 static jclass dalvik_system_DexPathList__Element;
Narayan Kamathc3b7f1a2016-10-19 11:05:04 +010059 static jclass dalvik_system_EmulatedStackFrame;
David Brazdil05909d82018-12-06 16:25:16 +000060 static jclass dalvik_system_InMemoryDexClassLoader;
Ian Rogers00f7d0e2012-07-19 15:28:27 -070061 static jclass dalvik_system_PathClassLoader;
Mathieu Chartierb5de3bb2015-06-05 13:21:05 -070062 static jclass dalvik_system_VMRuntime;
Jeff Hao13e748b2015-08-25 20:44:19 +000063 static jclass java_lang_annotation_Annotation__array;
Mathieu Chartier6bcae8f2014-09-04 18:33:17 -070064 static jclass java_lang_BootClassLoader;
Elliott Hugheseac76672012-05-24 21:56:51 -070065 static jclass java_lang_ClassLoader;
66 static jclass java_lang_ClassNotFoundException;
67 static jclass java_lang_Daemons;
68 static jclass java_lang_Error;
Jeff Haoc92a7a12016-06-06 11:09:20 -070069 static jclass java_lang_IllegalAccessError;
70 static jclass java_lang_NoClassDefFoundError;
Ian Rogersaf6e67a2013-01-16 08:38:37 -080071 static jclass java_lang_Object;
Mathieu Chartiera61894d2015-04-23 16:32:54 -070072 static jclass java_lang_OutOfMemoryError;
Neil Fuller79a21e72016-09-09 14:24:51 +010073 static jclass java_lang_reflect_Parameter;
74 static jclass java_lang_reflect_Parameter__array;
Elliott Hugheseac76672012-05-24 21:56:51 -070075 static jclass java_lang_reflect_Proxy;
Elliott Hughesa4f94742012-05-29 16:28:38 -070076 static jclass java_lang_RuntimeException;
Ian Rogers120f1c72012-09-28 17:17:10 -070077 static jclass java_lang_StackOverflowError;
Ian Rogersdd157d72014-05-15 14:47:50 -070078 static jclass java_lang_String;
Jeff Hao848f70a2014-01-15 13:49:50 -080079 static jclass java_lang_StringFactory;
Mathieu Chartier987ccff2013-07-08 11:05:21 -070080 static jclass java_lang_System;
Elliott Hugheseac76672012-05-24 21:56:51 -070081 static jclass java_lang_Thread;
Elliott Hughesaf8d15a2012-05-29 09:12:18 -070082 static jclass java_lang_ThreadGroup;
Elliott Hughesa4f94742012-05-29 16:28:38 -070083 static jclass java_lang_Throwable;
Andreas Gampe7ea6f792014-07-14 16:21:44 -070084 static jclass java_util_Collections;
Narayan Kamathf5f1f802018-04-03 15:23:46 +010085 static jclass java_util_function_Consumer;
Orion Hodson928033d2018-02-07 05:30:54 +000086 static jclass java_nio_ByteBuffer;
Elliott Hughesaecb5f32013-03-28 08:27:38 -070087 static jclass java_nio_DirectByteBuffer;
Jeff Hao13e748b2015-08-25 20:44:19 +000088 static jclass libcore_reflect_AnnotationFactory;
89 static jclass libcore_reflect_AnnotationMember;
Neil Fullerc0f02d42018-06-11 09:49:01 +000090 static jclass libcore_util_EmptyArray;
Elliott Hugheseac76672012-05-24 21:56:51 -070091 static jclass org_apache_harmony_dalvik_ddmc_Chunk;
92 static jclass org_apache_harmony_dalvik_ddmc_DdmServer;
93
Andreas Gampe473191c2017-12-28 16:55:31 -080094 static jmethodID dalvik_system_BaseDexClassLoader_getLdLibraryPath;
Mathieu Chartierb5de3bb2015-06-05 13:21:05 -070095 static jmethodID dalvik_system_VMRuntime_runFinalization;
Andrei Oneaa2d2bc22019-01-25 16:18:53 +000096 static jmethodID dalvik_system_VMRuntime_hiddenApiUsed;
Ian Rogers00f7d0e2012-07-19 15:28:27 -070097 static jmethodID java_lang_Boolean_valueOf;
98 static jmethodID java_lang_Byte_valueOf;
99 static jmethodID java_lang_Character_valueOf;
Elliott Hughesa4f94742012-05-29 16:28:38 -0700100 static jmethodID java_lang_ClassLoader_loadClass;
Elliott Hugheseac76672012-05-24 21:56:51 -0700101 static jmethodID java_lang_ClassNotFoundException_init;
Elliott Hugheseac76672012-05-24 21:56:51 -0700102 static jmethodID java_lang_Daemons_start;
Mathieu Chartiercef50f02014-12-09 17:38:52 -0800103 static jmethodID java_lang_Daemons_stop;
Alex Lighte0b2ce42019-02-21 19:23:42 +0000104 static jmethodID java_lang_Daemons_waitForDaemonStart;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700105 static jmethodID java_lang_Double_valueOf;
106 static jmethodID java_lang_Float_valueOf;
107 static jmethodID java_lang_Integer_valueOf;
Orion Hodsonf8db2c32017-07-07 20:07:12 +0100108 static jmethodID java_lang_invoke_MethodHandles_lookup;
109 static jmethodID java_lang_invoke_MethodHandles_Lookup_findConstructor;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700110 static jmethodID java_lang_Long_valueOf;
Elliott Hughesa4f94742012-05-29 16:28:38 -0700111 static jmethodID java_lang_ref_FinalizerReference_add;
112 static jmethodID java_lang_ref_ReferenceQueue_add;
Neil Fuller79a21e72016-09-09 14:24:51 +0100113 static jmethodID java_lang_reflect_Parameter_init;
Alex Light6cae5ea2018-06-07 17:07:02 -0700114 static jmethodID java_lang_reflect_Proxy_init;
Brian Carlstromea46f952013-07-30 01:26:50 -0700115 static jmethodID java_lang_reflect_Proxy_invoke;
Ian Rogersef28b142012-11-30 14:22:18 -0800116 static jmethodID java_lang_Runtime_nativeLoad;
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700117 static jmethodID java_lang_Short_valueOf;
Nicolas Geoffray5d37c152017-01-12 13:25:19 +0000118 static jmethodID java_lang_String_charAt;
Tobias Thierer5cbe65d2016-07-22 18:37:59 +0100119 static jmethodID java_lang_Thread_dispatchUncaughtException;
Elliott Hugheseac76672012-05-24 21:56:51 -0700120 static jmethodID java_lang_Thread_init;
Elliott Hughesaf8d15a2012-05-29 09:12:18 -0700121 static jmethodID java_lang_Thread_run;
Andreas Gampe56776012018-01-26 17:40:55 -0800122 static jmethodID java_lang_ThreadGroup_add;
Elliott Hughesaf8d15a2012-05-29 09:12:18 -0700123 static jmethodID java_lang_ThreadGroup_removeThread;
Elliott Hughesaecb5f32013-03-28 08:27:38 -0700124 static jmethodID java_nio_DirectByteBuffer_init;
Narayan Kamathf5f1f802018-04-03 15:23:46 +0100125 static jmethodID java_util_function_Consumer_accept;
Jeff Hao13e748b2015-08-25 20:44:19 +0000126 static jmethodID libcore_reflect_AnnotationFactory_createAnnotation;
127 static jmethodID libcore_reflect_AnnotationMember_init;
Elliott Hugheseac76672012-05-24 21:56:51 -0700128 static jmethodID org_apache_harmony_dalvik_ddmc_DdmServer_broadcast;
129 static jmethodID org_apache_harmony_dalvik_ddmc_DdmServer_dispatch;
130
Andreas Gampe46aba362016-10-28 14:33:28 -0700131 static jfieldID dalvik_system_BaseDexClassLoader_pathList;
Nicolas Geoffray80a560c2018-10-26 13:48:51 +0100132 static jfieldID dalvik_system_BaseDexClassLoader_sharedLibraryLoaders;
Mathieu Chartier6bcae8f2014-09-04 18:33:17 -0700133 static jfieldID dalvik_system_DexFile_cookie;
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800134 static jfieldID dalvik_system_DexFile_fileName;
Mathieu Chartier6bcae8f2014-09-04 18:33:17 -0700135 static jfieldID dalvik_system_DexPathList_dexElements;
Andreas Gampec8ccf682014-09-29 20:07:43 -0700136 static jfieldID dalvik_system_DexPathList__Element_dexFile;
Narayan Kamathf5f1f802018-04-03 15:23:46 +0100137 static jfieldID dalvik_system_VMRuntime_nonSdkApiUsageConsumer;
Charles Munger5cc0e752018-11-09 12:30:46 -0800138 static jfieldID java_lang_Thread_parkBlocker;
Elliott Hughesaf8d15a2012-05-29 09:12:18 -0700139 static jfieldID java_lang_Thread_daemon;
140 static jfieldID java_lang_Thread_group;
141 static jfieldID java_lang_Thread_lock;
142 static jfieldID java_lang_Thread_name;
143 static jfieldID java_lang_Thread_priority;
Anwar Ghuloum3c50a4b2013-06-21 13:05:23 -0700144 static jfieldID java_lang_Thread_nativePeer;
Alex Lighte0b2ce42019-02-21 19:23:42 +0000145 static jfieldID java_lang_Thread_systemDaemon;
Charles Mungeraa31f492018-11-01 18:57:38 +0000146 static jfieldID java_lang_Thread_unparkedBeforeStart;
Sebastien Hertze49e1952014-10-13 11:27:13 +0200147 static jfieldID java_lang_ThreadGroup_groups;
Przemyslaw Szczepaniak464595f2015-11-24 11:59:59 +0000148 static jfieldID java_lang_ThreadGroup_ngroups;
Elliott Hughesaf8d15a2012-05-29 09:12:18 -0700149 static jfieldID java_lang_ThreadGroup_mainThreadGroup;
150 static jfieldID java_lang_ThreadGroup_name;
Sebastien Hertze49e1952014-10-13 11:27:13 +0200151 static jfieldID java_lang_ThreadGroup_parent;
Elliott Hughesaf8d15a2012-05-29 09:12:18 -0700152 static jfieldID java_lang_ThreadGroup_systemThreadGroup;
Brian Carlstrom34375312014-09-10 23:10:47 -0700153 static jfieldID java_lang_Throwable_cause;
154 static jfieldID java_lang_Throwable_detailMessage;
155 static jfieldID java_lang_Throwable_stackTrace;
156 static jfieldID java_lang_Throwable_stackState;
157 static jfieldID java_lang_Throwable_suppressedExceptions;
Orion Hodson928033d2018-02-07 05:30:54 +0000158 static jfieldID java_nio_ByteBuffer_address;
159 static jfieldID java_nio_ByteBuffer_hb;
160 static jfieldID java_nio_ByteBuffer_isReadOnly;
161 static jfieldID java_nio_ByteBuffer_limit;
162 static jfieldID java_nio_ByteBuffer_offset;
Elliott Hughesaecb5f32013-03-28 08:27:38 -0700163 static jfieldID java_nio_DirectByteBuffer_capacity;
164 static jfieldID java_nio_DirectByteBuffer_effectiveDirectAddress;
Orion Hodson928033d2018-02-07 05:30:54 +0000165
Brian Carlstrom34375312014-09-10 23:10:47 -0700166 static jfieldID java_util_Collections_EMPTY_LIST;
Neil Fullerc0f02d42018-06-11 09:49:01 +0000167 static jfieldID libcore_util_EmptyArray_STACK_TRACE_ELEMENT;
Elliott Hugheseac76672012-05-24 21:56:51 -0700168 static jfieldID org_apache_harmony_dalvik_ddmc_Chunk_data;
169 static jfieldID org_apache_harmony_dalvik_ddmc_Chunk_length;
170 static jfieldID org_apache_harmony_dalvik_ddmc_Chunk_offset;
171 static jfieldID org_apache_harmony_dalvik_ddmc_Chunk_type;
172};
173
174} // namespace art
175
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700176#endif // ART_RUNTIME_WELL_KNOWN_CLASSES_H_