vmSymbols.hpp revision 10425:6ff38c89f1f2
1/*
2 * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 *
23 */
24
25#ifndef SHARE_VM_CLASSFILE_VMSYMBOLS_HPP
26#define SHARE_VM_CLASSFILE_VMSYMBOLS_HPP
27
28#include "classfile/vmSymbols_ext.hpp"
29#include "oops/symbol.hpp"
30#include "memory/iterator.hpp"
31#include "trace/traceMacros.hpp"
32#include "jvmci/vmSymbols_jvmci.hpp"
33
34// The class vmSymbols is a name space for fast lookup of
35// symbols commonly used in the VM.
36//
37// Sample usage:
38//
39//   Symbol* obj       = vmSymbols::java_lang_Object();
40
41
42// Useful sub-macros exported by this header file:
43
44#define VM_SYMBOL_ENUM_NAME(name)    name##_enum
45#define VM_INTRINSIC_IGNORE(id, class, name, sig, flags) /*ignored*/
46#define VM_SYMBOL_IGNORE(id, name)                       /*ignored*/
47#define VM_ALIAS_IGNORE(id, id2)                         /*ignored*/
48
49// Mapping function names to values. New entries should be added below.
50
51#define VM_SYMBOLS_DO(template, do_alias)                                                         \
52  /* commonly used class names */                                                                 \
53  template(java_lang_System,                          "java/lang/System")                         \
54  template(java_lang_Object,                          "java/lang/Object")                         \
55  template(java_lang_Class,                           "java/lang/Class")                          \
56  template(java_lang_String,                          "java/lang/String")                         \
57  template(java_lang_StringLatin1,                    "java/lang/StringLatin1")                   \
58  template(java_lang_StringUTF16,                     "java/lang/StringUTF16")                    \
59  template(java_lang_Thread,                          "java/lang/Thread")                         \
60  template(java_lang_ThreadGroup,                     "java/lang/ThreadGroup")                    \
61  template(java_lang_Cloneable,                       "java/lang/Cloneable")                      \
62  template(java_lang_Throwable,                       "java/lang/Throwable")                      \
63  template(java_lang_ClassLoader,                     "java/lang/ClassLoader")                    \
64  template(java_lang_ClassLoader_NativeLibrary,       "java/lang/ClassLoader\x024NativeLibrary")  \
65  template(java_lang_ThreadDeath,                     "java/lang/ThreadDeath")                    \
66  template(java_lang_Boolean,                         "java/lang/Boolean")                        \
67  template(java_lang_Character,                       "java/lang/Character")                      \
68  template(java_lang_Character_CharacterCache,        "java/lang/Character$CharacterCache")       \
69  template(java_lang_Float,                           "java/lang/Float")                          \
70  template(java_lang_Double,                          "java/lang/Double")                         \
71  template(java_lang_Byte,                            "java/lang/Byte")                           \
72  template(java_lang_Byte_ByteCache,                  "java/lang/Byte$ByteCache")                 \
73  template(java_lang_Short,                           "java/lang/Short")                          \
74  template(java_lang_Short_ShortCache,                "java/lang/Short$ShortCache")               \
75  template(java_lang_Integer,                         "java/lang/Integer")                        \
76  template(java_lang_Integer_IntegerCache,            "java/lang/Integer$IntegerCache")           \
77  template(java_lang_Long,                            "java/lang/Long")                           \
78  template(java_lang_Long_LongCache,                  "java/lang/Long$LongCache")                 \
79  template(java_lang_Shutdown,                        "java/lang/Shutdown")                       \
80  template(java_lang_ref_Reference,                   "java/lang/ref/Reference")                  \
81  template(java_lang_ref_SoftReference,               "java/lang/ref/SoftReference")              \
82  template(java_lang_ref_WeakReference,               "java/lang/ref/WeakReference")              \
83  template(java_lang_ref_FinalReference,              "java/lang/ref/FinalReference")             \
84  template(java_lang_ref_PhantomReference,            "java/lang/ref/PhantomReference")           \
85  template(java_lang_ref_Finalizer,                   "java/lang/ref/Finalizer")                  \
86  template(java_lang_reflect_AccessibleObject,        "java/lang/reflect/AccessibleObject")       \
87  template(java_lang_reflect_Method,                  "java/lang/reflect/Method")                 \
88  template(java_lang_reflect_Constructor,             "java/lang/reflect/Constructor")            \
89  template(java_lang_reflect_Field,                   "java/lang/reflect/Field")                  \
90  template(java_lang_reflect_Parameter,               "java/lang/reflect/Parameter")              \
91  template(java_lang_reflect_Array,                   "java/lang/reflect/Array")                  \
92  template(java_lang_StringBuffer,                    "java/lang/StringBuffer")                   \
93  template(java_lang_StringBuilder,                   "java/lang/StringBuilder")                  \
94  template(java_lang_CharSequence,                    "java/lang/CharSequence")                   \
95  template(java_lang_SecurityManager,                 "java/lang/SecurityManager")                \
96  template(java_security_AccessControlContext,        "java/security/AccessControlContext")       \
97  template(java_security_CodeSource,                  "java/security/CodeSource")                 \
98  template(java_security_ProtectionDomain,            "java/security/ProtectionDomain")           \
99  template(java_security_SecureClassLoader,           "java/security/SecureClassLoader")          \
100  template(java_net_URLClassLoader,                   "java/net/URLClassLoader")                  \
101  template(java_net_URL,                              "java/net/URL")                             \
102  template(java_util_jar_Manifest,                    "java/util/jar/Manifest")                   \
103  template(impliesCreateAccessControlContext_name,    "impliesCreateAccessControlContext")        \
104  template(java_io_OutputStream,                      "java/io/OutputStream")                     \
105  template(java_io_Reader,                            "java/io/Reader")                           \
106  template(java_io_BufferedReader,                    "java/io/BufferedReader")                   \
107  template(java_io_File,                              "java/io/File")                             \
108  template(java_io_FileInputStream,                   "java/io/FileInputStream")                  \
109  template(java_io_ByteArrayInputStream,              "java/io/ByteArrayInputStream")             \
110  template(java_io_Serializable,                      "java/io/Serializable")                     \
111  template(java_util_Arrays,                          "java/util/Arrays")                         \
112  template(java_util_Objects,                         "java/util/Objects")                        \
113  template(java_util_Properties,                      "java/util/Properties")                     \
114  template(java_util_Vector,                          "java/util/Vector")                         \
115  template(java_util_AbstractList,                    "java/util/AbstractList")                   \
116  template(java_util_Hashtable,                       "java/util/Hashtable")                      \
117  template(java_lang_Compiler,                        "java/lang/Compiler")                       \
118  template(jdk_internal_misc_Signal,                  "jdk/internal/misc/Signal")                 \
119  template(sun_misc_Launcher,                         "sun/misc/Launcher")                        \
120  template(java_lang_AssertionStatusDirectives,       "java/lang/AssertionStatusDirectives")      \
121  template(getBootClassPathEntryForClass_name,        "getBootClassPathEntryForClass")            \
122  template(sun_misc_PostVMInitHook,                   "sun/misc/PostVMInitHook")                  \
123  template(sun_misc_Launcher_ExtClassLoader,          "sun/misc/Launcher$ExtClassLoader")         \
124                                                                                                  \
125  /* Java runtime version access */                                                               \
126  template(sun_misc_Version,                          "sun/misc/Version")                         \
127  template(java_runtime_name_name,                    "java_runtime_name")                        \
128  template(java_runtime_version_name,                 "java_runtime_version")                     \
129                                                                                                  \
130  /* class file format tags */                                                                    \
131  template(tag_source_file,                           "SourceFile")                               \
132  template(tag_inner_classes,                         "InnerClasses")                             \
133  template(tag_constant_value,                        "ConstantValue")                            \
134  template(tag_code,                                  "Code")                                     \
135  template(tag_exceptions,                            "Exceptions")                               \
136  template(tag_line_number_table,                     "LineNumberTable")                          \
137  template(tag_local_variable_table,                  "LocalVariableTable")                       \
138  template(tag_local_variable_type_table,             "LocalVariableTypeTable")                   \
139  template(tag_method_parameters,                     "MethodParameters")                         \
140  template(tag_stack_map_table,                       "StackMapTable")                            \
141  template(tag_synthetic,                             "Synthetic")                                \
142  template(tag_deprecated,                            "Deprecated")                               \
143  template(tag_source_debug_extension,                "SourceDebugExtension")                     \
144  template(tag_signature,                             "Signature")                                \
145  template(tag_runtime_visible_annotations,           "RuntimeVisibleAnnotations")                \
146  template(tag_runtime_invisible_annotations,         "RuntimeInvisibleAnnotations")              \
147  template(tag_runtime_visible_parameter_annotations, "RuntimeVisibleParameterAnnotations")       \
148  template(tag_runtime_invisible_parameter_annotations,"RuntimeInvisibleParameterAnnotations")    \
149  template(tag_annotation_default,                    "AnnotationDefault")                        \
150  template(tag_runtime_visible_type_annotations,      "RuntimeVisibleTypeAnnotations")            \
151  template(tag_runtime_invisible_type_annotations,    "RuntimeInvisibleTypeAnnotations")          \
152  template(tag_enclosing_method,                      "EnclosingMethod")                          \
153  template(tag_bootstrap_methods,                     "BootstrapMethods")                         \
154                                                                                                  \
155  /* exception klasses: at least all exceptions thrown by the VM have entries here */             \
156  template(java_lang_ArithmeticException,             "java/lang/ArithmeticException")            \
157  template(java_lang_ArrayIndexOutOfBoundsException,  "java/lang/ArrayIndexOutOfBoundsException") \
158  template(java_lang_ArrayStoreException,             "java/lang/ArrayStoreException")            \
159  template(java_lang_ClassCastException,              "java/lang/ClassCastException")             \
160  template(java_lang_ClassNotFoundException,          "java/lang/ClassNotFoundException")         \
161  template(java_lang_CloneNotSupportedException,      "java/lang/CloneNotSupportedException")     \
162  template(java_lang_IllegalAccessException,          "java/lang/IllegalAccessException")         \
163  template(java_lang_IllegalArgumentException,        "java/lang/IllegalArgumentException")       \
164  template(java_lang_IllegalStateException,           "java/lang/IllegalStateException")          \
165  template(java_lang_IllegalMonitorStateException,    "java/lang/IllegalMonitorStateException")   \
166  template(java_lang_IllegalThreadStateException,     "java/lang/IllegalThreadStateException")    \
167  template(java_lang_IndexOutOfBoundsException,       "java/lang/IndexOutOfBoundsException")      \
168  template(java_lang_InstantiationException,          "java/lang/InstantiationException")         \
169  template(java_lang_InstantiationError,              "java/lang/InstantiationError")             \
170  template(java_lang_InterruptedException,            "java/lang/InterruptedException")           \
171  template(java_lang_BootstrapMethodError,            "java/lang/BootstrapMethodError")           \
172  template(java_lang_LinkageError,                    "java/lang/LinkageError")                   \
173  template(java_lang_NegativeArraySizeException,      "java/lang/NegativeArraySizeException")     \
174  template(java_lang_NoSuchFieldException,            "java/lang/NoSuchFieldException")           \
175  template(java_lang_NoSuchMethodException,           "java/lang/NoSuchMethodException")          \
176  template(java_lang_NullPointerException,            "java/lang/NullPointerException")           \
177  template(java_lang_StringIndexOutOfBoundsException, "java/lang/StringIndexOutOfBoundsException")\
178  template(java_lang_UnsupportedOperationException,   "java/lang/UnsupportedOperationException")  \
179  template(java_lang_InvalidClassException,           "java/lang/InvalidClassException")          \
180  template(java_lang_reflect_InvocationTargetException, "java/lang/reflect/InvocationTargetException") \
181  template(java_lang_Exception,                       "java/lang/Exception")                      \
182  template(java_lang_RuntimeException,                "java/lang/RuntimeException")               \
183  template(java_io_IOException,                       "java/io/IOException")                      \
184  template(java_security_PrivilegedActionException,   "java/security/PrivilegedActionException")  \
185                                                                                                  \
186  /* error klasses: at least all errors thrown by the VM have entries here */                     \
187  template(java_lang_AbstractMethodError,             "java/lang/AbstractMethodError")            \
188  template(java_lang_ClassCircularityError,           "java/lang/ClassCircularityError")          \
189  template(java_lang_ClassFormatError,                "java/lang/ClassFormatError")               \
190  template(java_lang_UnsupportedClassVersionError,    "java/lang/UnsupportedClassVersionError")   \
191  template(java_lang_Error,                           "java/lang/Error")                          \
192  template(java_lang_ExceptionInInitializerError,     "java/lang/ExceptionInInitializerError")    \
193  template(java_lang_IllegalAccessError,              "java/lang/IllegalAccessError")             \
194  template(java_lang_IncompatibleClassChangeError,    "java/lang/IncompatibleClassChangeError")   \
195  template(java_lang_InternalError,                   "java/lang/InternalError")                  \
196  template(java_lang_NoClassDefFoundError,            "java/lang/NoClassDefFoundError")           \
197  template(java_lang_NoSuchFieldError,                "java/lang/NoSuchFieldError")               \
198  template(java_lang_NoSuchMethodError,               "java/lang/NoSuchMethodError")              \
199  template(java_lang_OutOfMemoryError,                "java/lang/OutOfMemoryError")               \
200  template(java_lang_UnsatisfiedLinkError,            "java/lang/UnsatisfiedLinkError")           \
201  template(java_lang_VerifyError,                     "java/lang/VerifyError")                    \
202  template(java_lang_SecurityException,               "java/lang/SecurityException")              \
203  template(java_lang_VirtualMachineError,             "java/lang/VirtualMachineError")            \
204  template(java_lang_StackOverflowError,              "java/lang/StackOverflowError")             \
205  template(java_lang_StackTraceElement,               "java/lang/StackTraceElement")              \
206                                                                                                  \
207  /* Concurrency support */                                                                       \
208  template(java_util_concurrent_locks_AbstractOwnableSynchronizer,           "java/util/concurrent/locks/AbstractOwnableSynchronizer") \
209  template(java_util_concurrent_atomic_AtomicIntegerFieldUpdater_Impl,       "java/util/concurrent/atomic/AtomicIntegerFieldUpdater$AtomicIntegerFieldUpdaterImpl") \
210  template(java_util_concurrent_atomic_AtomicLongFieldUpdater_CASUpdater,    "java/util/concurrent/atomic/AtomicLongFieldUpdater$CASUpdater") \
211  template(java_util_concurrent_atomic_AtomicLongFieldUpdater_LockedUpdater, "java/util/concurrent/atomic/AtomicLongFieldUpdater$LockedUpdater") \
212  template(java_util_concurrent_atomic_AtomicReferenceFieldUpdater_Impl,     "java/util/concurrent/atomic/AtomicReferenceFieldUpdater$AtomicReferenceFieldUpdaterImpl") \
213  template(jdk_internal_vm_annotation_Contended_signature,                   "Ljdk/internal/vm/annotation/Contended;")    \
214  template(jdk_internal_vm_annotation_ReservedStackAccess_signature,         "Ljdk/internal/vm/annotation/ReservedStackAccess;") \
215                                                                                                  \
216  /* class symbols needed by intrinsics */                                                        \
217  VM_INTRINSICS_DO(VM_INTRINSIC_IGNORE, template, VM_SYMBOL_IGNORE, VM_SYMBOL_IGNORE, VM_ALIAS_IGNORE) \
218                                                                                                  \
219  /* Support for reflection based on dynamic bytecode generation (JDK 1.4 and above) */           \
220                                                                                                  \
221  template(sun_reflect_FieldInfo,                     "sun/reflect/FieldInfo")                    \
222  template(sun_reflect_MethodInfo,                    "sun/reflect/MethodInfo")                   \
223  template(sun_reflect_MagicAccessorImpl,             "sun/reflect/MagicAccessorImpl")            \
224  template(sun_reflect_MethodAccessorImpl,            "sun/reflect/MethodAccessorImpl")           \
225  template(sun_reflect_ConstructorAccessorImpl,       "sun/reflect/ConstructorAccessorImpl")      \
226  template(sun_reflect_SerializationConstructorAccessorImpl, "sun/reflect/SerializationConstructorAccessorImpl") \
227  template(sun_reflect_DelegatingClassLoader,         "sun/reflect/DelegatingClassLoader")        \
228  template(sun_reflect_Reflection,                    "sun/reflect/Reflection")                   \
229  template(sun_reflect_CallerSensitive,               "sun/reflect/CallerSensitive")              \
230  template(sun_reflect_CallerSensitive_signature,     "Lsun/reflect/CallerSensitive;")            \
231  template(checkedExceptions_name,                    "checkedExceptions")                        \
232  template(clazz_name,                                "clazz")                                    \
233  template(exceptionTypes_name,                       "exceptionTypes")                           \
234  template(modifiers_name,                            "modifiers")                                \
235  template(newConstructor_name,                       "newConstructor")                           \
236  template(newConstructor_signature,                  "(Lsun/reflect/MethodInfo;)Ljava/lang/reflect/Constructor;") \
237  template(newField_name,                             "newField")                                 \
238  template(newField_signature,                        "(Lsun/reflect/FieldInfo;)Ljava/lang/reflect/Field;") \
239  template(newMethod_name,                            "newMethod")                                \
240  template(newMethod_signature,                       "(Lsun/reflect/MethodInfo;)Ljava/lang/reflect/Method;") \
241  template(invokeBasic_name,                          "invokeBasic")                              \
242  template(linkToVirtual_name,                        "linkToVirtual")                            \
243  template(linkToStatic_name,                         "linkToStatic")                             \
244  template(linkToSpecial_name,                        "linkToSpecial")                            \
245  template(linkToInterface_name,                      "linkToInterface")                          \
246  template(compiledLambdaForm_name,                   "<compiledLambdaForm>")  /*fake name*/      \
247  template(star_name,                                 "*") /*not really a name*/                  \
248  template(invoke_name,                               "invoke")                                   \
249  template(override_name,                             "override")                                 \
250  template(parameterTypes_name,                       "parameterTypes")                           \
251  template(returnType_name,                           "returnType")                               \
252  template(signature_name,                            "signature")                                \
253  template(slot_name,                                 "slot")                                     \
254                                                                                                  \
255  /* Support for annotations (JDK 1.5 and above) */                                               \
256                                                                                                  \
257  template(annotations_name,                          "annotations")                              \
258  template(index_name,                                "index")                                    \
259  template(executable_name,                           "executable")                               \
260  template(parameter_annotations_name,                "parameterAnnotations")                     \
261  template(annotation_default_name,                   "annotationDefault")                        \
262  template(sun_reflect_ConstantPool,                  "sun/reflect/ConstantPool")                 \
263  template(ConstantPool_name,                         "constantPoolOop")                          \
264  template(sun_reflect_UnsafeStaticFieldAccessorImpl, "sun/reflect/UnsafeStaticFieldAccessorImpl")\
265  template(base_name,                                 "base")                                     \
266  /* Type Annotations (JDK 8 and above) */                                                        \
267  template(type_annotations_name,                     "typeAnnotations")                          \
268                                                                                                  \
269  /* Intrinsic Annotation (JDK 9 and above) */                                                    \
270  template(jdk_internal_HotSpotIntrinsicCandidate_signature, "Ljdk/internal/HotSpotIntrinsicCandidate;") \
271  template(jdk_internal_vm_annotation_ForceInline_signature, "Ljdk/internal/vm/annotation/ForceInline;") \
272  template(jdk_internal_vm_annotation_DontInline_signature,  "Ljdk/internal/vm/annotation/DontInline;")  \
273  template(jdk_internal_vm_annotation_Stable_signature,      "Ljdk/internal/vm/annotation/Stable;")      \
274                                                                                                  \
275  /* Support for JSR 292 & invokedynamic (JDK 1.7 and above) */                                   \
276  template(java_lang_invoke_CallSite,                 "java/lang/invoke/CallSite")                \
277  template(java_lang_invoke_ConstantCallSite,         "java/lang/invoke/ConstantCallSite")        \
278  template(java_lang_invoke_DirectMethodHandle,       "java/lang/invoke/DirectMethodHandle")      \
279  template(java_lang_invoke_MutableCallSite,          "java/lang/invoke/MutableCallSite")         \
280  template(java_lang_invoke_VolatileCallSite,         "java/lang/invoke/VolatileCallSite")        \
281  template(java_lang_invoke_MethodHandle,             "java/lang/invoke/MethodHandle")            \
282  template(java_lang_invoke_MethodType,               "java/lang/invoke/MethodType")              \
283  template(java_lang_invoke_MethodType_signature,     "Ljava/lang/invoke/MethodType;")            \
284  template(java_lang_invoke_MemberName_signature,     "Ljava/lang/invoke/MemberName;")            \
285  template(java_lang_invoke_LambdaForm_signature,     "Ljava/lang/invoke/LambdaForm;")            \
286  template(java_lang_invoke_MethodHandle_signature,   "Ljava/lang/invoke/MethodHandle;")          \
287  /* internal classes known only to the JVM: */                                                   \
288  template(java_lang_invoke_MemberName,               "java/lang/invoke/MemberName")              \
289  template(java_lang_invoke_MethodHandleNatives,      "java/lang/invoke/MethodHandleNatives")     \
290  template(java_lang_invoke_MethodHandleNatives_CallSiteContext, "java/lang/invoke/MethodHandleNatives$CallSiteContext") \
291  template(java_lang_invoke_LambdaForm,               "java/lang/invoke/LambdaForm")              \
292  template(java_lang_invoke_InjectedProfile_signature, "Ljava/lang/invoke/InjectedProfile;")      \
293  template(java_lang_invoke_LambdaForm_Compiled_signature, "Ljava/lang/invoke/LambdaForm$Compiled;") \
294  template(java_lang_invoke_LambdaForm_Hidden_signature, "Ljava/lang/invoke/LambdaForm$Hidden;")  \
295  template(java_lang_invoke_MethodHandleNatives_CallSiteContext_signature, "Ljava/lang/invoke/MethodHandleNatives$CallSiteContext;") \
296  /* internal up-calls made only by the JVM, via class sun.invoke.MethodHandleNatives: */         \
297  template(findMethodHandleType_name,                 "findMethodHandleType")                     \
298  template(findMethodHandleType_signature,       "(Ljava/lang/Class;[Ljava/lang/Class;)Ljava/lang/invoke/MethodType;") \
299  template(linkMethodHandleConstant_name,             "linkMethodHandleConstant")                 \
300  template(linkMethodHandleConstant_signature, "(Ljava/lang/Class;ILjava/lang/Class;Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/invoke/MethodHandle;") \
301  template(linkMethod_name,                           "linkMethod")                               \
302  template(linkMethod_signature, "(Ljava/lang/Class;ILjava/lang/Class;Ljava/lang/String;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/invoke/MemberName;") \
303  template(linkCallSite_name,                         "linkCallSite")                             \
304  template(linkCallSite_signature, "(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/invoke/MemberName;") \
305  template(setTargetNormal_name,                      "setTargetNormal")                          \
306  template(setTargetVolatile_name,                    "setTargetVolatile")                        \
307  template(setTarget_signature,                       "(Ljava/lang/invoke/MethodHandle;)V")       \
308  template(DEFAULT_CONTEXT_name,                      "DEFAULT_CONTEXT")                          \
309  NOT_LP64(  do_alias(intptr_signature,               int_signature)  )                           \
310  LP64_ONLY( do_alias(intptr_signature,               long_signature) )                           \
311                                                                                                                                      \
312  /* Support for JVMCI */                                                                                                             \
313  JVMCI_VM_SYMBOLS_DO(template, do_alias)                                                         \
314                                                                                                  \
315  template(java_lang_StackWalker,                     "java/lang/StackWalker")                    \
316  template(java_lang_StackFrameInfo,                  "java/lang/StackFrameInfo")                 \
317  template(java_lang_LiveStackFrameInfo,              "java/lang/LiveStackFrameInfo")             \
318  template(java_lang_StackStreamFactory_AbstractStackWalker, "java/lang/StackStreamFactory$AbstractStackWalker") \
319  template(doStackWalk_name,                          "doStackWalk")                              \
320  template(doStackWalk_signature,                     "(JIIII)Ljava/lang/Object;")                \
321  template(asPrimitive_name,                          "asPrimitive")                              \
322  template(asPrimitive_int_signature,                 "(I)Ljava/lang/LiveStackFrame$PrimitiveValue;") \
323  template(asPrimitive_long_signature,                "(J)Ljava/lang/LiveStackFrame$PrimitiveValue;") \
324  template(asPrimitive_short_signature,               "(S)Ljava/lang/LiveStackFrame$PrimitiveValue;") \
325  template(asPrimitive_byte_signature,                "(B)Ljava/lang/LiveStackFrame$PrimitiveValue;") \
326  template(asPrimitive_char_signature,                "(C)Ljava/lang/LiveStackFrame$PrimitiveValue;") \
327  template(asPrimitive_float_signature,               "(F)Ljava/lang/LiveStackFrame$PrimitiveValue;") \
328  template(asPrimitive_double_signature,              "(D)Ljava/lang/LiveStackFrame$PrimitiveValue;") \
329  template(asPrimitive_boolean_signature,             "(Z)Ljava/lang/LiveStackFrame$PrimitiveValue;") \
330                                                                                                  \
331  /* common method and field names */                                                             \
332  template(object_initializer_name,                   "<init>")                                   \
333  template(class_initializer_name,                    "<clinit>")                                 \
334  template(println_name,                              "println")                                  \
335  template(printStackTrace_name,                      "printStackTrace")                          \
336  template(main_name,                                 "main")                                     \
337  template(name_name,                                 "name")                                     \
338  template(priority_name,                             "priority")                                 \
339  template(stillborn_name,                            "stillborn")                                \
340  template(group_name,                                "group")                                    \
341  template(daemon_name,                               "daemon")                                   \
342  template(eetop_name,                                "eetop")                                    \
343  template(thread_status_name,                        "threadStatus")                             \
344  template(run_method_name,                           "run")                                      \
345  template(exit_method_name,                          "exit")                                     \
346  template(add_method_name,                           "add")                                      \
347  template(remove_method_name,                        "remove")                                   \
348  template(parent_name,                               "parent")                                   \
349  template(threads_name,                              "threads")                                  \
350  template(groups_name,                               "groups")                                   \
351  template(maxPriority_name,                          "maxPriority")                              \
352  template(destroyed_name,                            "destroyed")                                \
353  template(vmAllowSuspension_name,                    "vmAllowSuspension")                        \
354  template(nthreads_name,                             "nthreads")                                 \
355  template(ngroups_name,                              "ngroups")                                  \
356  template(shutdown_method_name,                      "shutdown")                                 \
357  template(finalize_method_name,                      "finalize")                                 \
358  template(reference_lock_name,                       "lock")                                     \
359  template(reference_discovered_name,                 "discovered")                               \
360  template(run_finalization_name,                     "runFinalization")                          \
361  template(run_finalizers_on_exit_name,               "runFinalizersOnExit")                      \
362  template(dispatchUncaughtException_name,            "dispatchUncaughtException")                \
363  template(initializeSystemClass_name,                "initializeSystemClass")                    \
364  template(loadClass_name,                            "loadClass")                                \
365  template(loadClassInternal_name,                    "loadClassInternal")                        \
366  template(get_name,                                  "get")                                      \
367  template(put_name,                                  "put")                                      \
368  template(type_name,                                 "type")                                     \
369  template(findNative_name,                           "findNative")                               \
370  template(deadChild_name,                            "deadChild")                                \
371  template(addClass_name,                             "addClass")                                 \
372  template(throwIllegalAccessError_name,              "throwIllegalAccessError")                  \
373  template(getFromClass_name,                         "getFromClass")                             \
374  template(dispatch_name,                             "dispatch")                                 \
375  template(getSystemClassLoader_name,                 "getSystemClassLoader")                     \
376  template(fillInStackTrace_name,                     "fillInStackTrace")                         \
377  template(getCause_name,                             "getCause")                                 \
378  template(initCause_name,                            "initCause")                                \
379  template(setProperty_name,                          "setProperty")                              \
380  template(getProperty_name,                          "getProperty")                              \
381  template(context_name,                              "context")                                  \
382  template(privilegedContext_name,                    "privilegedContext")                        \
383  template(contextClassLoader_name,                   "contextClassLoader")                       \
384  template(inheritedAccessControlContext_name,        "inheritedAccessControlContext")            \
385  template(isPrivileged_name,                         "isPrivileged")                             \
386  template(isAuthorized_name,                         "isAuthorized")                             \
387  template(getClassContext_name,                      "getClassContext")                          \
388  template(wait_name,                                 "wait")                                     \
389  template(checkPackageAccess_name,                   "checkPackageAccess")                       \
390  template(stackSize_name,                            "stackSize")                                \
391  template(thread_id_name,                            "tid")                                      \
392  template(newInstance0_name,                         "newInstance0")                             \
393  template(limit_name,                                "limit")                                    \
394  template(member_name,                               "member")                                   \
395  template(forName_name,                              "forName")                                  \
396  template(forName0_name,                             "forName0")                                 \
397  template(isJavaIdentifierStart_name,                "isJavaIdentifierStart")                    \
398  template(isJavaIdentifierPart_name,                 "isJavaIdentifierPart")                     \
399  template(exclusive_owner_thread_name,               "exclusiveOwnerThread")                     \
400  template(park_blocker_name,                         "parkBlocker")                              \
401  template(park_event_name,                           "nativeParkEventPointer")                   \
402  template(cache_field_name,                          "cache")                                    \
403  template(value_name,                                "value")                                    \
404  template(hash_name,                                 "hash")                                     \
405  template(coder_name,                                "coder")                                    \
406  template(compact_strings_name,                      "COMPACT_STRINGS")                          \
407  template(numberOfLeadingZeros_name,                 "numberOfLeadingZeros")                     \
408  template(numberOfTrailingZeros_name,                "numberOfTrailingZeros")                    \
409  template(bitCount_name,                             "bitCount")                                 \
410  template(profile_name,                              "profile")                                  \
411  template(equals_name,                               "equals")                                   \
412  template(length_name,                               "length")                                   \
413  template(target_name,                               "target")                                   \
414  template(toString_name,                             "toString")                                 \
415  template(values_name,                               "values")                                   \
416  template(receiver_name,                             "receiver")                                 \
417  template(vmtarget_name,                             "vmtarget")                                 \
418  template(next_target_name,                          "next_target")                              \
419  template(vmloader_name,                             "vmloader")                                 \
420  template(vmindex_name,                              "vmindex")                                  \
421  template(vmcount_name,                              "vmcount")                                  \
422  template(vmentry_name,                              "vmentry")                                  \
423  template(flags_name,                                "flags")                                    \
424  template(rtype_name,                                "rtype")                                    \
425  template(ptypes_name,                               "ptypes")                                   \
426  template(form_name,                                 "form")                                     \
427  template(basicType_name,                            "basicType")                                \
428  template(append_name,                               "append")                                   \
429  template(klass_name,                                "klass")                                    \
430  template(array_klass_name,                          "array_klass")                              \
431  template(declaringClass_name,                       "declaringClass")                           \
432  template(memberName_name,                           "memberName")                               \
433  template(mid_name,                                  "mid")                                      \
434  template(cpref_name,                                "cpref")                                    \
435  template(version_name,                              "version")                                  \
436  template(bci_name,                                  "bci")                                      \
437  template(methodName_name,                           "methodName")                               \
438  template(fileName_name,                             "fileName")                                 \
439  template(lineNumber_name,                           "lineNumber")                               \
440  template(monitors_name,                             "monitors")                                 \
441  template(locals_name,                               "locals")                                   \
442  template(operands_name,                             "operands")                                 \
443  template(oop_size_name,                             "oop_size")                                 \
444  template(static_oop_field_count_name,               "static_oop_field_count")                   \
445  template(protection_domain_name,                    "protection_domain")                        \
446  template(signers_name,                              "signers_name")                             \
447  template(loader_data_name,                          "loader_data")                              \
448  template(vmdependencies_name,                       "vmdependencies")                           \
449  template(input_stream_void_signature,               "(Ljava/io/InputStream;)V")                 \
450  template(getFileURL_name,                           "getFileURL")                               \
451  template(getFileURL_signature,                      "(Ljava/io/File;)Ljava/net/URL;")           \
452  template(definePackageInternal_name,                "definePackageInternal")                    \
453  template(definePackageInternal_signature,           "(Ljava/lang/String;Ljava/util/jar/Manifest;Ljava/net/URL;)V") \
454  template(getProtectionDomain_name,                  "getProtectionDomain")                      \
455  template(getProtectionDomain_signature,             "(Ljava/security/CodeSource;)Ljava/security/ProtectionDomain;") \
456  template(url_code_signer_array_void_signature,      "(Ljava/net/URL;[Ljava/security/CodeSigner;)V") \
457                                                                                                  \
458  /* non-intrinsic name/signature pairs: */                                                       \
459  template(register_method_name,                      "register")                                 \
460  do_alias(register_method_signature,         object_void_signature)                              \
461                                                                                                  \
462  /* name symbols needed by intrinsics */                                                         \
463  VM_INTRINSICS_DO(VM_INTRINSIC_IGNORE, VM_SYMBOL_IGNORE, template, VM_SYMBOL_IGNORE, VM_ALIAS_IGNORE) \
464                                                                                                  \
465  /* common signatures names */                                                                   \
466  template(void_method_signature,                     "()V")                                      \
467  template(void_boolean_signature,                    "()Z")                                      \
468  template(void_byte_signature,                       "()B")                                      \
469  template(void_char_signature,                       "()C")                                      \
470  template(void_short_signature,                      "()S")                                      \
471  template(void_int_signature,                        "()I")                                      \
472  template(void_long_signature,                       "()J")                                      \
473  template(void_float_signature,                      "()F")                                      \
474  template(void_double_signature,                     "()D")                                      \
475  template(bool_void_signature,                       "(Z)V")                                     \
476  template(int_void_signature,                        "(I)V")                                     \
477  template(int_int_signature,                         "(I)I")                                     \
478  template(char_char_signature,                       "(C)C")                                     \
479  template(short_short_signature,                     "(S)S")                                     \
480  template(int_bool_signature,                        "(I)Z")                                     \
481  template(float_int_signature,                       "(F)I")                                     \
482  template(double_long_signature,                     "(D)J")                                     \
483  template(double_double_signature,                   "(D)D")                                     \
484  template(int_float_signature,                       "(I)F")                                     \
485  template(long_int_signature,                        "(J)I")                                     \
486  template(long_long_signature,                       "(J)J")                                     \
487  template(long_double_signature,                     "(J)D")                                     \
488  template(byte_signature,                            "B")                                        \
489  template(char_signature,                            "C")                                        \
490  template(double_signature,                          "D")                                        \
491  template(float_signature,                           "F")                                        \
492  template(int_signature,                             "I")                                        \
493  template(long_signature,                            "J")                                        \
494  template(short_signature,                           "S")                                        \
495  template(bool_signature,                            "Z")                                        \
496  template(void_signature,                            "V")                                        \
497  template(byte_array_signature,                      "[B")                                       \
498  template(char_array_signature,                      "[C")                                       \
499  template(int_array_signature,                       "[I")                                       \
500  template(object_void_signature,                     "(Ljava/lang/Object;)V")                    \
501  template(object_int_signature,                      "(Ljava/lang/Object;)I")                    \
502  template(object_boolean_signature,                  "(Ljava/lang/Object;)Z")                    \
503  template(object_object_signature,                   "(Ljava/lang/Object;)Ljava/lang/Object;")   \
504  template(string_void_signature,                     "(Ljava/lang/String;)V")                    \
505  template(string_int_signature,                      "(Ljava/lang/String;)I")                    \
506  template(throwable_void_signature,                  "(Ljava/lang/Throwable;)V")                 \
507  template(void_throwable_signature,                  "()Ljava/lang/Throwable;")                  \
508  template(throwable_throwable_signature,             "(Ljava/lang/Throwable;)Ljava/lang/Throwable;")             \
509  template(class_void_signature,                      "(Ljava/lang/Class;)V")                     \
510  template(class_int_signature,                       "(Ljava/lang/Class;)I")                     \
511  template(class_long_signature,                      "(Ljava/lang/Class;)J")                     \
512  template(class_boolean_signature,                   "(Ljava/lang/Class;)Z")                     \
513  template(throwable_string_void_signature,           "(Ljava/lang/Throwable;Ljava/lang/String;)V")               \
514  template(string_array_void_signature,               "([Ljava/lang/String;)V")                                   \
515  template(string_array_string_array_void_signature,  "([Ljava/lang/String;[Ljava/lang/String;)V")                \
516  template(thread_throwable_void_signature,           "(Ljava/lang/Thread;Ljava/lang/Throwable;)V")               \
517  template(thread_void_signature,                     "(Ljava/lang/Thread;)V")                                    \
518  template(threadgroup_runnable_void_signature,       "(Ljava/lang/ThreadGroup;Ljava/lang/Runnable;)V")           \
519  template(threadgroup_string_void_signature,         "(Ljava/lang/ThreadGroup;Ljava/lang/String;)V")             \
520  template(string_class_signature,                    "(Ljava/lang/String;)Ljava/lang/Class;")                    \
521  template(object_object_object_signature,            "(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;") \
522  template(string_string_string_signature,            "(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;") \
523  template(string_string_signature,                   "(Ljava/lang/String;)Ljava/lang/String;")                   \
524  template(classloader_string_long_signature,         "(Ljava/lang/ClassLoader;Ljava/lang/String;)J")             \
525  template(byte_array_void_signature,                 "([B)V")                                                    \
526  template(char_array_void_signature,                 "([C)V")                                                    \
527  template(int_int_void_signature,                    "(II)V")                                                    \
528  template(long_long_void_signature,                  "(JJ)V")                                                    \
529  template(void_classloader_signature,                "()Ljava/lang/ClassLoader;")                                \
530  template(void_object_signature,                     "()Ljava/lang/Object;")                                     \
531  template(void_class_signature,                      "()Ljava/lang/Class;")                                      \
532  template(void_class_array_signature,                "()[Ljava/lang/Class;")                                     \
533  template(void_string_signature,                     "()Ljava/lang/String;")                                     \
534  template(object_array_object_signature,             "([Ljava/lang/Object;)Ljava/lang/Object;")                  \
535  template(object_object_array_object_signature,      "(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;")\
536  template(exception_void_signature,                  "(Ljava/lang/Exception;)V")                                 \
537  template(protectiondomain_signature,                "[Ljava/security/ProtectionDomain;")                        \
538  template(accesscontrolcontext_signature,            "Ljava/security/AccessControlContext;")                     \
539  template(class_protectiondomain_signature,          "(Ljava/lang/Class;Ljava/security/ProtectionDomain;)V")     \
540  template(thread_signature,                          "Ljava/lang/Thread;")                                       \
541  template(thread_array_signature,                    "[Ljava/lang/Thread;")                                      \
542  template(threadgroup_signature,                     "Ljava/lang/ThreadGroup;")                                  \
543  template(threadgroup_array_signature,               "[Ljava/lang/ThreadGroup;")                                 \
544  template(class_array_signature,                     "[Ljava/lang/Class;")                                       \
545  template(classloader_signature,                     "Ljava/lang/ClassLoader;")                                  \
546  template(object_signature,                          "Ljava/lang/Object;")                                       \
547  template(object_array_signature,                    "[Ljava/lang/Object;")                                      \
548  template(class_signature,                           "Ljava/lang/Class;")                                        \
549  template(string_signature,                          "Ljava/lang/String;")                                       \
550  template(reference_signature,                       "Ljava/lang/ref/Reference;")                                \
551  template(sun_misc_Cleaner_signature,                "Lsun/misc/Cleaner;")                                       \
552  template(executable_signature,                      "Ljava/lang/reflect/Executable;")                           \
553  template(concurrenthashmap_signature,               "Ljava/util/concurrent/ConcurrentHashMap;")                 \
554  template(String_StringBuilder_signature,            "(Ljava/lang/String;)Ljava/lang/StringBuilder;")            \
555  template(int_StringBuilder_signature,               "(I)Ljava/lang/StringBuilder;")                             \
556  template(char_StringBuilder_signature,              "(C)Ljava/lang/StringBuilder;")                             \
557  template(String_StringBuffer_signature,             "(Ljava/lang/String;)Ljava/lang/StringBuffer;")             \
558  template(int_StringBuffer_signature,                "(I)Ljava/lang/StringBuffer;")                              \
559  template(char_StringBuffer_signature,               "(C)Ljava/lang/StringBuffer;")                              \
560  template(int_String_signature,                      "(I)Ljava/lang/String;")                                    \
561  template(codesource_permissioncollection_signature, "(Ljava/security/CodeSource;Ljava/security/PermissionCollection;)V") \
562  /* signature symbols needed by intrinsics */                                                                    \
563  VM_INTRINSICS_DO(VM_INTRINSIC_IGNORE, VM_SYMBOL_IGNORE, VM_SYMBOL_IGNORE, template, VM_ALIAS_IGNORE)            \
564                                                                                                                  \
565  /* symbol aliases needed by intrinsics */                                                                       \
566  VM_INTRINSICS_DO(VM_INTRINSIC_IGNORE, VM_SYMBOL_IGNORE, VM_SYMBOL_IGNORE, VM_SYMBOL_IGNORE, do_alias)           \
567                                                                                                                  \
568  /* returned by the C1 compiler in case there's not enough memory to allocate a new symbol*/                     \
569  template(dummy_symbol,                              "illegal symbol")                                           \
570                                                                                                                  \
571  /* used by ClassFormatError when class name is not known yet */                                                 \
572  template(unknown_class_name,                        "<Unknown>")                                                \
573                                                                                                                  \
574  /* used to identify class loaders handling parallel class loading */                                            \
575  template(parallelCapable_name,                      "parallelLockMap")                                          \
576                                                                                                                  \
577  /* JVM monitoring and management support */                                                                     \
578  template(java_lang_StackTraceElement_array,          "[Ljava/lang/StackTraceElement;")                          \
579  template(java_lang_management_ThreadState,           "java/lang/management/ThreadState")                        \
580  template(java_lang_management_MemoryUsage,           "java/lang/management/MemoryUsage")                        \
581  template(java_lang_management_ThreadInfo,            "java/lang/management/ThreadInfo")                         \
582  template(sun_management_Sensor,                      "sun/management/Sensor")                                   \
583  template(sun_management_Agent,                       "sun/management/Agent")                                    \
584  template(com_sun_management_internal_DiagnosticCommandImpl,  "com/sun/management/internal/DiagnosticCommandImpl")     \
585  template(com_sun_management_internal_GarbageCollectorExtImpl,"com/sun/management/internal/GarbageCollectorExtImpl")   \
586  template(sun_management_ManagementFactoryHelper,     "sun/management/ManagementFactoryHelper")                  \
587  template(getDiagnosticCommandMBean_name,             "getDiagnosticCommandMBean")                               \
588  template(getDiagnosticCommandMBean_signature,        "()Lcom/sun/management/DiagnosticCommandMBean;")           \
589  template(getGcInfoBuilder_name,                      "getGcInfoBuilder")                                        \
590  template(getGcInfoBuilder_signature,                 "()Lcom/sun/management/internal/GcInfoBuilder;")           \
591  template(com_sun_management_GcInfo,                  "com/sun/management/GcInfo")                               \
592  template(com_sun_management_GcInfo_constructor_signature, "(Lcom/sun/management/internal/GcInfoBuilder;JJJ[Ljava/lang/management/MemoryUsage;[Ljava/lang/management/MemoryUsage;[Ljava/lang/Object;)V") \
593  template(createGCNotification_name,                  "createGCNotification")                                    \
594  template(createGCNotification_signature,             "(JLjava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/sun/management/GcInfo;)V") \
595  template(createDiagnosticFrameworkNotification_name, "createDiagnosticFrameworkNotification")                   \
596  template(createMemoryPoolMBean_name,                 "createMemoryPoolMBean")                                   \
597  template(createMemoryManagerMBean_name,              "createMemoryManagerMBean")                                \
598  template(createGarbageCollectorMBean_name,           "createGarbageCollectorMBean")                             \
599  template(createMemoryPoolMBean_signature,            "(Ljava/lang/String;ZJJ)Ljava/lang/management/MemoryPoolMBean;") \
600  template(createMemoryManagerMBean_signature,         "(Ljava/lang/String;)Ljava/lang/management/MemoryManagerMBean;") \
601  template(createGarbageCollectorMBean_signature,      "(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/management/GarbageCollectorMBean;") \
602  template(trigger_name,                               "trigger")                                                 \
603  template(clear_name,                                 "clear")                                                   \
604  template(trigger_method_signature,                   "(ILjava/lang/management/MemoryUsage;)V")                  \
605  template(startAgent_name,                            "startAgent")                                              \
606  template(startRemoteAgent_name,                      "startRemoteManagementAgent")                              \
607  template(startLocalAgent_name,                       "startLocalManagementAgent")                               \
608  template(stopRemoteAgent_name,                       "stopRemoteManagementAgent")                               \
609  template(getAgentStatus_name,                        "getManagementAgentStatus")                                \
610  template(java_lang_management_ThreadInfo_constructor_signature, "(Ljava/lang/Thread;ILjava/lang/Object;Ljava/lang/Thread;JJJJ[Ljava/lang/StackTraceElement;)V") \
611  template(java_lang_management_ThreadInfo_with_locks_constructor_signature, "(Ljava/lang/Thread;ILjava/lang/Object;Ljava/lang/Thread;JJJJ[Ljava/lang/StackTraceElement;[Ljava/lang/Object;[I[Ljava/lang/Object;)V") \
612  template(long_long_long_long_void_signature,         "(JJJJ)V")                                                 \
613  template(finalizer_histogram_klass,                  "java/lang/ref/FinalizerHistogram")                        \
614  template(void_finalizer_histogram_entry_array_signature,  "()[Ljava/lang/ref/FinalizerHistogram$Entry;")                        \
615  template(get_finalizer_histogram_name,               "getFinalizerHistogram")                                   \
616  template(finalizer_histogram_entry_name_field,       "className")                                               \
617  template(finalizer_histogram_entry_count_field,      "instanceCount")                                           \
618                                                                                                                  \
619  template(java_lang_management_MemoryPoolMXBean,      "java/lang/management/MemoryPoolMXBean")                   \
620  template(java_lang_management_MemoryManagerMXBean,   "java/lang/management/MemoryManagerMXBean")                \
621  template(java_lang_management_GarbageCollectorMXBean,"java/lang/management/GarbageCollectorMXBean")             \
622  template(gcInfoBuilder_name,                         "gcInfoBuilder")                                           \
623  template(createMemoryPool_name,                      "createMemoryPool")                                        \
624  template(createMemoryManager_name,                   "createMemoryManager")                                     \
625  template(createGarbageCollector_name,                "createGarbageCollector")                                  \
626  template(createMemoryPool_signature,                 "(Ljava/lang/String;ZJJ)Ljava/lang/management/MemoryPoolMXBean;") \
627  template(createMemoryManager_signature,              "(Ljava/lang/String;)Ljava/lang/management/MemoryManagerMXBean;") \
628  template(createGarbageCollector_signature,           "(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/management/GarbageCollectorMXBean;") \
629  template(addThreadDumpForMonitors_name,              "addThreadDumpForMonitors")                                \
630  template(addThreadDumpForSynchronizers_name,         "addThreadDumpForSynchronizers")                           \
631  template(addThreadDumpForMonitors_signature,         "(Ljava/lang/management/ThreadInfo;[Ljava/lang/Object;[I)V") \
632  template(addThreadDumpForSynchronizers_signature,    "(Ljava/lang/management/ThreadInfo;[Ljava/lang/Object;)V")   \
633                                                                                                                  \
634  /* JVMTI/java.lang.instrument support and VM Attach mechanism */                                                \
635  template(sun_misc_VMSupport,                         "sun/misc/VMSupport")                                      \
636  template(appendToClassPathForInstrumentation_name,   "appendToClassPathForInstrumentation")                     \
637  do_alias(appendToClassPathForInstrumentation_signature, string_void_signature)                                  \
638  template(serializePropertiesToByteArray_name,        "serializePropertiesToByteArray")                          \
639  template(serializePropertiesToByteArray_signature,   "()[B")                                                    \
640  template(serializeAgentPropertiesToByteArray_name,   "serializeAgentPropertiesToByteArray")                     \
641  template(classRedefinedCount_name,                   "classRedefinedCount")                                     \
642  template(classLoader_name,                           "classLoader")                                             \
643  template(componentType_name,                         "componentType")                                           \
644                                                                                                                  \
645  /* forEachRemaining support */                                                                                  \
646  template(java_util_stream_StreamsRangeIntSpliterator,          "java/util/stream/Streams$RangeIntSpliterator")  \
647                                                                                                                  \
648  /* trace signatures */                                                                                          \
649  TRACE_TEMPLATES(template)                                                                                       \
650                                                                                                                  \
651  /* extensions */                                                                                                \
652  VM_SYMBOLS_DO_EXT(template, do_alias)                                                                           \
653                                                                                                                  \
654  /*end*/
655
656// Here are all the intrinsics known to the runtime and the CI.
657// Each intrinsic consists of a public enum name (like _hashCode),
658// followed by a specification of its klass, name, and signature:
659//    template(<id>,  <klass>,  <name>, <sig>, <FCODE>)
660//
661// If you add an intrinsic here, you must also define its name
662// and signature as members of the VM symbols.  The VM symbols for
663// the intrinsic name and signature may be defined above.
664//
665// Because the VM_SYMBOLS_DO macro makes reference to VM_INTRINSICS_DO,
666// you can also define an intrinsic's name and/or signature locally to the
667// intrinsic, if this makes sense.  (It often does make sense.)
668//
669// For example:
670//    do_intrinsic(_foo,  java_lang_Object,  foo_name, foo_signature, F_xx)
671//     do_name(     foo_name, "foo")
672//     do_signature(foo_signature, "()F")
673// klass      = vmSymbols::java_lang_Object()
674// name       = vmSymbols::foo_name()
675// signature  = vmSymbols::foo_signature()
676//
677// The name and/or signature might be a "well known" symbol
678// like "equal" or "()I", in which case there will be no local
679// re-definition of the symbol.
680//
681// The do_class, do_name, and do_signature calls are all used for the
682// same purpose:  Define yet another VM symbol.  They could all be merged
683// into a common 'do_symbol' call, but it seems useful to record our
684// intentions here about kinds of symbols (class vs. name vs. signature).
685//
686// The F_xx is one of the Flags enum; see below.
687//
688// for Emacs: (let ((c-backslash-column 120) (c-backslash-max-column 120)) (c-backslash-region (point) (point-max) nil t))
689//
690//
691// There are two types of intrinsic methods: (1) Library intrinsics and (2) bytecode intrinsics.
692//
693// (1) A library intrinsic method may be replaced with hand-crafted assembly code,
694// with hand-crafted compiler IR, or with a combination of the two. The semantics
695// of the replacement code may differ from the semantics of the replaced code.
696//
697// (2) Bytecode intrinsic methods are not replaced by special code, but they are
698// treated in some other special way by the compiler. For example, the compiler
699// may delay inlining for some String-related intrinsic methods (e.g., some methods
700// defined in the StringBuilder and StringBuffer classes, see
701// Compile::should_delay_string_inlining() for more details).
702//
703// Due to the difference between the semantics of an intrinsic method as defined
704// in the (Java) source code and the semantics of the method as defined
705// by the code in the VM, intrinsic methods must be explicitly marked.
706//
707// Intrinsic methods are marked by the jdk.internal.HotSpotIntrinsicCandidate
708// annotation. If CheckIntrinsics is enabled, the VM performs the following
709// checks when a class C is loaded: (1) all intrinsics defined by the VM for
710// class C are present in the loaded class file and are marked;
711// (2) an intrinsic is defined by the VM for all marked methods of class C;
712// (3) check for orphan methods in class C (i.e., methods for which the VM
713// declares an intrinsic but that are not declared for the loaded class C.
714// Check (3) is available only in debug builds.
715//
716// If a mismatch is detected for a method, the VM behaves differently depending
717// on the type of build. A fastdebug build exits and reports an error on a mismatch.
718// A product build will not replace an unmarked library intrinsic method with
719// hand-crafted code, that is, unmarked library intrinsics are treated as ordinary
720// methods in a product build. The special treatment of a bytecode intrinsic method
721// persists even if the method not marked.
722//
723// When adding an intrinsic for a method, please make sure to appropriately
724// annotate the method in the source code. The list below contains all
725// library intrinsics followed by bytecode intrinsics. Please also make sure to
726// add the declaration of the intrinsic to the approriate section of the list.
727#define VM_INTRINSICS_DO(do_intrinsic, do_class, do_name, do_signature, do_alias)                                       \
728  /* (1) Library intrinsics                                                                        */                   \
729  do_intrinsic(_hashCode,                 java_lang_Object,       hashCode_name, void_int_signature,             F_R)   \
730   do_name(     hashCode_name,                                   "hashCode")                                            \
731  do_intrinsic(_getClass,                 java_lang_Object,       getClass_name, void_class_signature,           F_R)   \
732   do_name(     getClass_name,                                   "getClass")                                            \
733  do_intrinsic(_clone,                    java_lang_Object,       clone_name, void_object_signature,             F_R)   \
734   do_name(     clone_name,                                      "clone")                                               \
735  do_intrinsic(_notify,                   java_lang_Object,       notify_name, void_method_signature,            F_R)   \
736   do_name(     notify_name,                                     "notify")                                              \
737  do_intrinsic(_notifyAll,                java_lang_Object,       notifyAll_name, void_method_signature,         F_R)   \
738   do_name(     notifyAll_name,                                  "notifyAll")                                           \
739                                                                                                                        \
740  /* Math & StrictMath intrinsics are defined in terms of just a few signatures: */                                     \
741  do_class(java_lang_Math,                "java/lang/Math")                                                             \
742  do_class(java_lang_StrictMath,          "java/lang/StrictMath")                                                       \
743  do_signature(double2_double_signature,  "(DD)D")                                                                      \
744  do_signature(int2_int_signature,        "(II)I")                                                                      \
745  do_signature(long2_long_signature,      "(JJ)J")                                                                         \
746                                                                                                                        \
747  /* here are the math names, all together: */                                                                          \
748  do_name(abs_name,"abs")       do_name(sin_name,"sin")         do_name(cos_name,"cos")                                 \
749  do_name(tan_name,"tan")       do_name(atan2_name,"atan2")     do_name(sqrt_name,"sqrt")                               \
750  do_name(log_name,"log")       do_name(log10_name,"log10")     do_name(pow_name,"pow")                                 \
751  do_name(exp_name,"exp")       do_name(min_name,"min")         do_name(max_name,"max")                                 \
752                                                                                                                        \
753  do_name(addExact_name,"addExact")                                                                                     \
754  do_name(decrementExact_name,"decrementExact")                                                                         \
755  do_name(incrementExact_name,"incrementExact")                                                                         \
756  do_name(multiplyExact_name,"multiplyExact")                                                                           \
757  do_name(negateExact_name,"negateExact")                                                                               \
758  do_name(subtractExact_name,"subtractExact")                                                                           \
759                                                                                                                        \
760  do_intrinsic(_dabs,                     java_lang_Math,         abs_name,   double_double_signature,           F_S)   \
761  do_intrinsic(_dsin,                     java_lang_Math,         sin_name,   double_double_signature,           F_S)   \
762  do_intrinsic(_dcos,                     java_lang_Math,         cos_name,   double_double_signature,           F_S)   \
763  do_intrinsic(_dtan,                     java_lang_Math,         tan_name,   double_double_signature,           F_S)   \
764  do_intrinsic(_datan2,                   java_lang_Math,         atan2_name, double2_double_signature,          F_S)   \
765  do_intrinsic(_dsqrt,                    java_lang_Math,         sqrt_name,  double_double_signature,           F_S)   \
766  do_intrinsic(_dlog,                     java_lang_Math,         log_name,   double_double_signature,           F_S)   \
767  do_intrinsic(_dlog10,                   java_lang_Math,         log10_name, double_double_signature,           F_S)   \
768  do_intrinsic(_dpow,                     java_lang_Math,         pow_name,   double2_double_signature,          F_S)   \
769  do_intrinsic(_dexp,                     java_lang_Math,         exp_name,   double_double_signature,           F_S)   \
770  do_intrinsic(_min,                      java_lang_Math,         min_name,   int2_int_signature,                F_S)   \
771  do_intrinsic(_max,                      java_lang_Math,         max_name,   int2_int_signature,                F_S)   \
772  do_intrinsic(_addExactI,                java_lang_Math,         addExact_name, int2_int_signature,             F_S)   \
773  do_intrinsic(_addExactL,                java_lang_Math,         addExact_name, long2_long_signature,           F_S)   \
774  do_intrinsic(_decrementExactI,          java_lang_Math,         decrementExact_name, int_int_signature,        F_S)   \
775  do_intrinsic(_decrementExactL,          java_lang_Math,         decrementExact_name, long_long_signature,      F_S)   \
776  do_intrinsic(_incrementExactI,          java_lang_Math,         incrementExact_name, int_int_signature,        F_S)   \
777  do_intrinsic(_incrementExactL,          java_lang_Math,         incrementExact_name, long_long_signature,      F_S)   \
778  do_intrinsic(_multiplyExactI,           java_lang_Math,         multiplyExact_name, int2_int_signature,        F_S)   \
779  do_intrinsic(_multiplyExactL,           java_lang_Math,         multiplyExact_name, long2_long_signature,      F_S)   \
780  do_intrinsic(_negateExactI,             java_lang_Math,         negateExact_name, int_int_signature,           F_S)   \
781  do_intrinsic(_negateExactL,             java_lang_Math,         negateExact_name, long_long_signature,         F_S)   \
782  do_intrinsic(_subtractExactI,           java_lang_Math,         subtractExact_name, int2_int_signature,        F_S)   \
783  do_intrinsic(_subtractExactL,           java_lang_Math,         subtractExact_name, long2_long_signature,      F_S)   \
784                                                                                                                        \
785  do_intrinsic(_floatToRawIntBits,        java_lang_Float,        floatToRawIntBits_name,   float_int_signature, F_S)   \
786   do_name(     floatToRawIntBits_name,                          "floatToRawIntBits")                                   \
787  do_intrinsic(_floatToIntBits,           java_lang_Float,        floatToIntBits_name,      float_int_signature, F_S)   \
788   do_name(     floatToIntBits_name,                             "floatToIntBits")                                      \
789  do_intrinsic(_intBitsToFloat,           java_lang_Float,        intBitsToFloat_name,      int_float_signature, F_S)   \
790   do_name(     intBitsToFloat_name,                             "intBitsToFloat")                                      \
791  do_intrinsic(_doubleToRawLongBits,      java_lang_Double,       doubleToRawLongBits_name, double_long_signature, F_S) \
792   do_name(     doubleToRawLongBits_name,                        "doubleToRawLongBits")                                 \
793  do_intrinsic(_doubleToLongBits,         java_lang_Double,       doubleToLongBits_name,    double_long_signature, F_S) \
794   do_name(     doubleToLongBits_name,                           "doubleToLongBits")                                    \
795  do_intrinsic(_longBitsToDouble,         java_lang_Double,       longBitsToDouble_name,    long_double_signature, F_S) \
796   do_name(     longBitsToDouble_name,                           "longBitsToDouble")                                    \
797                                                                                                                        \
798  do_intrinsic(_numberOfLeadingZeros_i,   java_lang_Integer,      numberOfLeadingZeros_name,int_int_signature,   F_S)   \
799  do_intrinsic(_numberOfLeadingZeros_l,   java_lang_Long,         numberOfLeadingZeros_name,long_int_signature,  F_S)   \
800                                                                                                                        \
801  do_intrinsic(_numberOfTrailingZeros_i,  java_lang_Integer,      numberOfTrailingZeros_name,int_int_signature,  F_S)   \
802  do_intrinsic(_numberOfTrailingZeros_l,  java_lang_Long,         numberOfTrailingZeros_name,long_int_signature, F_S)   \
803                                                                                                                        \
804  do_intrinsic(_bitCount_i,               java_lang_Integer,      bitCount_name,            int_int_signature,   F_S)   \
805  do_intrinsic(_bitCount_l,               java_lang_Long,         bitCount_name,            long_int_signature,  F_S)   \
806                                                                                                                        \
807  do_intrinsic(_reverseBytes_i,           java_lang_Integer,      reverseBytes_name,        int_int_signature,   F_S)   \
808   do_name(     reverseBytes_name,                               "reverseBytes")                                        \
809  do_intrinsic(_reverseBytes_l,           java_lang_Long,         reverseBytes_name,        long_long_signature, F_S)   \
810    /*  (symbol reverseBytes_name defined above) */                                                                     \
811  do_intrinsic(_reverseBytes_c,           java_lang_Character,    reverseBytes_name,        char_char_signature, F_S)   \
812    /*  (symbol reverseBytes_name defined above) */                                                                     \
813  do_intrinsic(_reverseBytes_s,           java_lang_Short,        reverseBytes_name,        short_short_signature, F_S) \
814    /*  (symbol reverseBytes_name defined above) */                                                                     \
815                                                                                                                        \
816  do_intrinsic(_identityHashCode,         java_lang_System,       identityHashCode_name, object_int_signature,   F_S)   \
817   do_name(     identityHashCode_name,                           "identityHashCode")                                    \
818  do_intrinsic(_currentTimeMillis,        java_lang_System,       currentTimeMillis_name, void_long_signature,   F_S)   \
819                                                                                                                        \
820   do_name(     currentTimeMillis_name,                          "currentTimeMillis")                                   \
821  do_intrinsic(_nanoTime,                 java_lang_System,       nanoTime_name,          void_long_signature,   F_S)   \
822   do_name(     nanoTime_name,                                   "nanoTime")                                            \
823                                                                                                                        \
824  TRACE_INTRINSICS(do_intrinsic, do_class, do_name, do_signature, do_alias)                                             \
825                                                                                                                        \
826  do_intrinsic(_arraycopy,                java_lang_System,       arraycopy_name, arraycopy_signature,           F_S)   \
827   do_name(     arraycopy_name,                                  "arraycopy")                                           \
828   do_signature(arraycopy_signature,                             "(Ljava/lang/Object;ILjava/lang/Object;II)V")          \
829  do_intrinsic(_isInterrupted,            java_lang_Thread,       isInterrupted_name, isInterrupted_signature,   F_R)   \
830   do_name(     isInterrupted_name,                              "isInterrupted")                                       \
831   do_signature(isInterrupted_signature,                         "(Z)Z")                                                \
832  do_intrinsic(_currentThread,            java_lang_Thread,       currentThread_name, currentThread_signature,   F_S)   \
833   do_name(     currentThread_name,                              "currentThread")                                       \
834   do_signature(currentThread_signature,                         "()Ljava/lang/Thread;")                                \
835                                                                                                                        \
836  /* reflective intrinsics, for java/lang/Class, etc. */                                                                \
837  do_intrinsic(_isAssignableFrom,         java_lang_Class,        isAssignableFrom_name, class_boolean_signature, F_RN) \
838   do_name(     isAssignableFrom_name,                           "isAssignableFrom")                                    \
839  do_intrinsic(_isInstance,               java_lang_Class,        isInstance_name, object_boolean_signature,     F_RN)  \
840   do_name(     isInstance_name,                                 "isInstance")                                          \
841  do_intrinsic(_getModifiers,             java_lang_Class,        getModifiers_name, void_int_signature,         F_RN)  \
842   do_name(     getModifiers_name,                               "getModifiers")                                        \
843  do_intrinsic(_isInterface,              java_lang_Class,        isInterface_name, void_boolean_signature,      F_RN)  \
844   do_name(     isInterface_name,                                "isInterface")                                         \
845  do_intrinsic(_isArray,                  java_lang_Class,        isArray_name, void_boolean_signature,          F_RN)  \
846   do_name(     isArray_name,                                    "isArray")                                             \
847  do_intrinsic(_isPrimitive,              java_lang_Class,        isPrimitive_name, void_boolean_signature,      F_RN)  \
848   do_name(     isPrimitive_name,                                "isPrimitive")                                         \
849  do_intrinsic(_getSuperclass,            java_lang_Class,        getSuperclass_name, void_class_signature,      F_RN)  \
850   do_name(     getSuperclass_name,                              "getSuperclass")                                       \
851  do_intrinsic(_Class_cast,               java_lang_Class,        Class_cast_name, object_object_signature,      F_R)   \
852   do_name(     Class_cast_name,                                 "cast")                                                \
853                                                                                                                        \
854  do_intrinsic(_getClassAccessFlags,      sun_reflect_Reflection, getClassAccessFlags_name, class_int_signature, F_SN)  \
855   do_name(     getClassAccessFlags_name,                        "getClassAccessFlags")                                 \
856  do_intrinsic(_getLength,                java_lang_reflect_Array, getLength_name, object_int_signature,         F_SN)  \
857   do_name(     getLength_name,                                   "getLength")                                          \
858                                                                                                                        \
859  do_intrinsic(_getCallerClass,           sun_reflect_Reflection, getCallerClass_name, void_class_signature,     F_SN)  \
860   do_name(     getCallerClass_name,                             "getCallerClass")                                      \
861                                                                                                                        \
862  do_intrinsic(_newArray,                 java_lang_reflect_Array, newArray_name, newArray_signature,            F_SN)  \
863   do_name(     newArray_name,                                    "newArray")                                           \
864   do_signature(newArray_signature,                               "(Ljava/lang/Class;I)Ljava/lang/Object;")             \
865                                                                                                                        \
866  do_intrinsic(_copyOf,                   java_util_Arrays,       copyOf_name, copyOf_signature,                 F_S)   \
867   do_name(     copyOf_name,                                     "copyOf")                                              \
868   do_signature(copyOf_signature,             "([Ljava/lang/Object;ILjava/lang/Class;)[Ljava/lang/Object;")             \
869                                                                                                                        \
870  do_intrinsic(_copyOfRange,              java_util_Arrays,       copyOfRange_name, copyOfRange_signature,       F_S)   \
871   do_name(     copyOfRange_name,                                "copyOfRange")                                         \
872   do_signature(copyOfRange_signature,        "([Ljava/lang/Object;IILjava/lang/Class;)[Ljava/lang/Object;")            \
873                                                                                                                        \
874  do_intrinsic(_equalsC,                  java_util_Arrays,       equals_name,    equalsC_signature,             F_S)   \
875   do_signature(equalsC_signature,                               "([C[C)Z")                                             \
876  do_intrinsic(_equalsB,                  java_util_Arrays,       equals_name,    equalsB_signature,             F_S)   \
877   do_signature(equalsB_signature,                               "([B[B)Z")                                             \
878                                                                                                                        \
879  do_intrinsic(_compressStringC,          java_lang_StringUTF16,  compress_name, encodeISOArray_signature,       F_S)   \
880   do_name(     compress_name,                                   "compress")                                            \
881  do_intrinsic(_compressStringB,          java_lang_StringUTF16,  compress_name, indexOfI_signature,             F_S)   \
882  do_intrinsic(_inflateStringC,           java_lang_StringLatin1, inflate_name, inflateC_signature,              F_S)   \
883   do_name(     inflate_name,                                    "inflate")                                             \
884   do_signature(inflateC_signature,                              "([BI[CII)V")                                          \
885  do_intrinsic(_inflateStringB,           java_lang_StringLatin1, inflate_name, inflateB_signature,              F_S)   \
886   do_signature(inflateB_signature,                              "([BI[BII)V")                                          \
887  do_intrinsic(_toBytesStringU,           java_lang_StringUTF16, toBytes_name, toBytesU_signature,               F_S)   \
888   do_name(     toBytes_name,                                    "toBytes")                                             \
889   do_signature(toBytesU_signature,                              "([CII)[B")                                            \
890  do_intrinsic(_getCharsStringU,          java_lang_StringUTF16, getCharsU_name, getCharsU_signature,            F_S)   \
891   do_name(     getCharsU_name,                                  "getChars")                                            \
892   do_signature(getCharsU_signature,                             "([BII[CI)V")                                          \
893  do_intrinsic(_getCharStringU,           java_lang_StringUTF16, getChar_name, getCharStringU_signature,         F_S)   \
894   do_signature(getCharStringU_signature,                        "([BI)C")                                              \
895  do_intrinsic(_putCharStringU,           java_lang_StringUTF16, putChar_name, putCharStringU_signature,         F_S)   \
896   do_signature(putCharStringU_signature,                        "([BII)V")                                             \
897  do_intrinsic(_compareToL,               java_lang_StringLatin1,compareTo_name, compareTo_indexOf_signature,    F_S)   \
898  do_intrinsic(_compareToU,               java_lang_StringUTF16, compareTo_name, compareTo_indexOf_signature,    F_S)   \
899  do_intrinsic(_compareToLU,              java_lang_StringLatin1,compareToLU_name, compareTo_indexOf_signature,  F_S)   \
900  do_intrinsic(_compareToUL,              java_lang_StringUTF16, compareToUL_name, compareTo_indexOf_signature,  F_S)   \
901   do_signature(compareTo_indexOf_signature,                     "([B[B)I")                                             \
902   do_name(     compareTo_name,                                  "compareTo")                                           \
903   do_name(     compareToLU_name,                                "compareToUTF16")                                      \
904   do_name(     compareToUL_name,                                "compareToLatin1")                                     \
905  do_intrinsic(_indexOfL,                 java_lang_StringLatin1,indexOf_name, compareTo_indexOf_signature,      F_S)   \
906  do_intrinsic(_indexOfU,                 java_lang_StringUTF16, indexOf_name, compareTo_indexOf_signature,      F_S)   \
907  do_intrinsic(_indexOfUL,                java_lang_StringUTF16, indexOfUL_name, compareTo_indexOf_signature,    F_S)   \
908  do_intrinsic(_indexOfIL,                java_lang_StringLatin1,indexOf_name, indexOfI_signature,               F_S)   \
909  do_intrinsic(_indexOfIU,                java_lang_StringUTF16, indexOf_name, indexOfI_signature,               F_S)   \
910  do_intrinsic(_indexOfIUL,               java_lang_StringUTF16, indexOfUL_name, indexOfI_signature,             F_S)   \
911  do_intrinsic(_indexOfU_char,            java_lang_StringUTF16, indexOfChar_name, indexOfChar_signature,        F_S)   \
912   do_name(     indexOf_name,                                    "indexOf")                                             \
913   do_name(     indexOfChar_name,                                "indexOfChar")                                         \
914   do_name(     indexOfUL_name,                                  "indexOfLatin1")                                       \
915   do_signature(indexOfI_signature,                              "([BI[BII)I")                                          \
916   do_signature(indexOfChar_signature,                           "([BIII)I")                                            \
917  do_intrinsic(_equalsL,                  java_lang_StringLatin1,equals_name, equalsB_signature,                 F_S)   \
918  do_intrinsic(_equalsU,                  java_lang_StringUTF16, equals_name, equalsB_signature,                 F_S)   \
919                                                                                                                        \
920  do_intrinsic(_Objects_checkIndex,       java_util_Objects,      checkIndex_name, Objects_checkIndex_signature, F_S)   \
921   do_signature(Objects_checkIndex_signature,                     "(IILjava/util/function/BiFunction;)I")               \
922                                                                                                                        \
923  do_class(java_nio_Buffer,               "java/nio/Buffer")                                                            \
924  do_intrinsic(_checkIndex,               java_nio_Buffer,        checkIndex_name, int_int_signature,            F_R)   \
925   do_name(     checkIndex_name,                                 "checkIndex")                                          \
926                                                                                                                        \
927  do_class(java_lang_StringCoding,        "java/lang/StringCoding")                                                     \
928  do_intrinsic(_hasNegatives,             java_lang_StringCoding, hasNegatives_name, hasNegatives_signature,     F_S)   \
929   do_name(     hasNegatives_name,                               "hasNegatives")                                        \
930   do_signature(hasNegatives_signature,                          "([BII)Z")                                             \
931                                                                                                                        \
932  do_class(sun_nio_cs_iso8859_1_Encoder,  "sun/nio/cs/ISO_8859_1$Encoder")                                              \
933  do_intrinsic(_encodeISOArray,     sun_nio_cs_iso8859_1_Encoder, encodeISOArray_name, encodeISOArray_signature, F_S)   \
934   do_name(     encodeISOArray_name,                             "implEncodeISOArray")                                  \
935   do_signature(encodeISOArray_signature,                        "([CI[BII)I")                                          \
936                                                                                                                        \
937  do_intrinsic(_encodeByteISOArray,     java_lang_StringCoding, encodeISOArray_name, indexOfI_signature,         F_S)   \
938                                                                                                                        \
939  do_class(java_math_BigInteger,                      "java/math/BigInteger")                                           \
940  do_intrinsic(_multiplyToLen,      java_math_BigInteger, multiplyToLen_name, multiplyToLen_signature, F_S)             \
941   do_name(     multiplyToLen_name,                             "implMultiplyToLen")                                    \
942   do_signature(multiplyToLen_signature,                        "([II[II[I)[I")                                         \
943                                                                                                                        \
944  do_intrinsic(_squareToLen, java_math_BigInteger, squareToLen_name, squareToLen_signature, F_S)                        \
945   do_name(     squareToLen_name,                             "implSquareToLen")                                        \
946   do_signature(squareToLen_signature,                        "([II[II)[I")                                             \
947                                                                                                                        \
948  do_intrinsic(_mulAdd, java_math_BigInteger, mulAdd_name, mulAdd_signature, F_S)                                       \
949   do_name(     mulAdd_name,                                  "implMulAdd")                                             \
950   do_signature(mulAdd_signature,                             "([I[IIII)I")                                             \
951                                                                                                                        \
952  do_intrinsic(_montgomeryMultiply,      java_math_BigInteger, montgomeryMultiply_name, montgomeryMultiply_signature, F_S) \
953   do_name(     montgomeryMultiply_name,                             "implMontgomeryMultiply")                          \
954   do_signature(montgomeryMultiply_signature,                        "([I[I[IIJ[I)[I")                                  \
955                                                                                                                        \
956  do_intrinsic(_montgomerySquare,      java_math_BigInteger, montgomerySquare_name, montgomerySquare_signature, F_S)    \
957   do_name(     montgomerySquare_name,                             "implMontgomerySquare")                              \
958   do_signature(montgomerySquare_signature,                        "([I[IIJ[I)[I")                                      \
959                                                                                                                        \
960  do_class(java_util_ArraysSupport, "java/util/ArraysSupport")                                                          \
961  do_intrinsic(_vectorizedMismatch, java_util_ArraysSupport, vectorizedMismatch_name, vectorizedMismatch_signature, F_S)\
962   do_name(vectorizedMismatch_name, "vectorizedMismatch")                                                               \
963   do_signature(vectorizedMismatch_signature, "(Ljava/lang/Object;JLjava/lang/Object;JII)I")                            \
964                                                                                                                        \
965  /* java/lang/ref/Reference */                                                                                         \
966  do_intrinsic(_Reference_get,            java_lang_ref_Reference, get_name,    void_object_signature, F_R)             \
967                                                                                                                        \
968  /* support for com.sun.crypto.provider.AESCrypt and some of its callers */                                            \
969  do_class(com_sun_crypto_provider_aescrypt,      "com/sun/crypto/provider/AESCrypt")                                   \
970  do_intrinsic(_aescrypt_encryptBlock, com_sun_crypto_provider_aescrypt, encryptBlock_name, byteArray_int_byteArray_int_signature, F_R)   \
971  do_intrinsic(_aescrypt_decryptBlock, com_sun_crypto_provider_aescrypt, decryptBlock_name, byteArray_int_byteArray_int_signature, F_R)   \
972   do_name(     encryptBlock_name,                                 "implEncryptBlock")                                  \
973   do_name(     decryptBlock_name,                                 "implDecryptBlock")                                  \
974   do_signature(byteArray_int_byteArray_int_signature,             "([BI[BI)V")                                         \
975                                                                                                                        \
976  do_class(com_sun_crypto_provider_cipherBlockChaining,            "com/sun/crypto/provider/CipherBlockChaining")       \
977   do_intrinsic(_cipherBlockChaining_encryptAESCrypt, com_sun_crypto_provider_cipherBlockChaining, encrypt_name, byteArray_int_int_byteArray_int_signature, F_R)   \
978   do_intrinsic(_cipherBlockChaining_decryptAESCrypt, com_sun_crypto_provider_cipherBlockChaining, decrypt_name, byteArray_int_int_byteArray_int_signature, F_R)   \
979   do_name(     encrypt_name,                                      "implEncrypt")                                       \
980   do_name(     decrypt_name,                                      "implDecrypt")                                       \
981   do_signature(byteArray_int_int_byteArray_int_signature,         "([BII[BI)I")                                        \
982                                                                                                                        \
983  do_class(com_sun_crypto_provider_counterMode,      "com/sun/crypto/provider/CounterMode")                             \
984   do_intrinsic(_counterMode_AESCrypt, com_sun_crypto_provider_counterMode, crypt_name, byteArray_int_int_byteArray_int_signature, F_R)   \
985   do_name(     crypt_name,                                 "implCrypt")                                                    \
986                                                                                                                        \
987  /* support for sun.security.provider.SHA */                                                                           \
988  do_class(sun_security_provider_sha,                              "sun/security/provider/SHA")                         \
989  do_intrinsic(_sha_implCompress, sun_security_provider_sha, implCompress_name, implCompress_signature, F_R)            \
990   do_name(     implCompress_name,                                 "implCompress0")                                     \
991   do_signature(implCompress_signature,                            "([BI)V")                                            \
992                                                                                                                        \
993  /* support for sun.security.provider.SHA2 */                                                                          \
994  do_class(sun_security_provider_sha2,                             "sun/security/provider/SHA2")                        \
995  do_intrinsic(_sha2_implCompress, sun_security_provider_sha2, implCompress_name, implCompress_signature, F_R)          \
996                                                                                                                        \
997  /* support for sun.security.provider.SHA5 */                                                                          \
998  do_class(sun_security_provider_sha5,                             "sun/security/provider/SHA5")                        \
999  do_intrinsic(_sha5_implCompress, sun_security_provider_sha5, implCompress_name, implCompress_signature, F_R)          \
1000                                                                                                                        \
1001  /* support for sun.security.provider.DigestBase */                                                                    \
1002  do_class(sun_security_provider_digestbase,                       "sun/security/provider/DigestBase")                  \
1003  do_intrinsic(_digestBase_implCompressMB, sun_security_provider_digestbase, implCompressMB_name, implCompressMB_signature, F_R)   \
1004   do_name(     implCompressMB_name,                               "implCompressMultiBlock0")                           \
1005   do_signature(implCompressMB_signature,                          "([BII)I")                                           \
1006                                                                                                                        \
1007  /* support for com.sun.crypto.provider.GHASH */                                                                       \
1008  do_class(com_sun_crypto_provider_ghash, "com/sun/crypto/provider/GHASH")                                              \
1009  do_intrinsic(_ghash_processBlocks, com_sun_crypto_provider_ghash, processBlocks_name, ghash_processBlocks_signature, F_S) \
1010   do_name(processBlocks_name, "processBlocks")                                                                         \
1011   do_signature(ghash_processBlocks_signature, "([BII[J[J)V")                                                           \
1012                                                                                                                        \
1013  /* support for java.util.zip */                                                                                       \
1014  do_class(java_util_zip_CRC32,           "java/util/zip/CRC32")                                                        \
1015  do_intrinsic(_updateCRC32,               java_util_zip_CRC32,   update_name, int2_int_signature,               F_SN)  \
1016   do_name(     update_name,                                      "update")                                             \
1017  do_intrinsic(_updateBytesCRC32,          java_util_zip_CRC32,   updateBytes_name, updateBytes_signature,       F_SN)  \
1018   do_name(     updateBytes_name,                                "updateBytes0")                                        \
1019   do_signature(updateBytes_signature,                           "(I[BII)I")                                            \
1020  do_intrinsic(_updateByteBufferCRC32,     java_util_zip_CRC32,   updateByteBuffer_name, updateByteBuffer_signature, F_SN) \
1021   do_name(     updateByteBuffer_name,                           "updateByteBuffer0")                                   \
1022   do_signature(updateByteBuffer_signature,                      "(IJII)I")                                             \
1023                                                                                                                        \
1024  /* support for java.util.zip.CRC32C */                                                                                \
1025  do_class(java_util_zip_CRC32C,          "java/util/zip/CRC32C")                                                       \
1026  do_intrinsic(_updateBytesCRC32C,         java_util_zip_CRC32C,  updateBytes_C_name, updateBytes_signature,       F_S) \
1027   do_name(     updateBytes_C_name,                               "updateBytes")                                        \
1028  do_intrinsic(_updateDirectByteBufferCRC32C, java_util_zip_CRC32C, updateDirectByteBuffer_C_name, updateByteBuffer_signature, F_S) \
1029   do_name(    updateDirectByteBuffer_C_name,                     "updateDirectByteBuffer")                             \
1030                                                                                                                        \
1031   /* support for java.util.zip.Adler32 */                                                                              \
1032  do_class(java_util_zip_Adler32,        "java/util/zip/Adler32")                                                       \
1033  do_intrinsic(_updateBytesAdler32,       java_util_zip_Adler32,  updateBytes_C_name,  updateBytes_signature,  F_SN)    \
1034  do_intrinsic(_updateByteBufferAdler32,  java_util_zip_Adler32,  updateByteBuffer_A_name,  updateByteBuffer_signature,  F_SN) \
1035   do_name(     updateByteBuffer_A_name,                          "updateByteBuffer")                                   \
1036                                                                                                                        \
1037  /* support for Unsafe */                                                                                              \
1038  do_class(jdk_internal_misc_Unsafe,               "jdk/internal/misc/Unsafe")                                          \
1039                                                                                                                        \
1040  do_intrinsic(_allocateInstance,         jdk_internal_misc_Unsafe,     allocateInstance_name, allocateInstance_signature, F_RN) \
1041   do_name(     allocateInstance_name,                                  "allocateInstance")                                      \
1042   do_signature(allocateInstance_signature,                             "(Ljava/lang/Class;)Ljava/lang/Object;")                 \
1043  do_intrinsic(_copyMemory,               jdk_internal_misc_Unsafe,     copyMemory_name, copyMemory_signature,         F_RN)     \
1044   do_name(     copyMemory_name,                                        "copyMemory0")                                           \
1045   do_signature(copyMemory_signature,                                   "(Ljava/lang/Object;JLjava/lang/Object;JJ)V")            \
1046  do_intrinsic(_loadFence,                jdk_internal_misc_Unsafe,     loadFence_name, loadFence_signature,           F_RN)     \
1047   do_name(     loadFence_name,                                         "loadFence")                                             \
1048   do_alias(    loadFence_signature,                                    void_method_signature)                                   \
1049  do_intrinsic(_storeFence,               jdk_internal_misc_Unsafe,     storeFence_name, storeFence_signature,         F_RN)     \
1050   do_name(     storeFence_name,                                        "storeFence")                                            \
1051   do_alias(    storeFence_signature,                                   void_method_signature)                                   \
1052  do_intrinsic(_fullFence,                jdk_internal_misc_Unsafe,     fullFence_name, fullFence_signature,           F_RN)     \
1053   do_name(     fullFence_name,                                         "fullFence")                                             \
1054   do_alias(    fullFence_signature,                                    void_method_signature)                                   \
1055                                                                                                                        \
1056  /* Custom branch frequencies profiling support for JSR292 */                                                          \
1057  do_class(java_lang_invoke_MethodHandleImpl,               "java/lang/invoke/MethodHandleImpl")                        \
1058  do_intrinsic(_profileBoolean, java_lang_invoke_MethodHandleImpl, profileBoolean_name, profileBoolean_signature, F_S)  \
1059   do_name(     profileBoolean_name,                             "profileBoolean")                                      \
1060   do_signature(profileBoolean_signature,                        "(Z[I)Z")                                              \
1061  do_intrinsic(_isCompileConstant, java_lang_invoke_MethodHandleImpl, isCompileConstant_name, isCompileConstant_signature, F_S) \
1062   do_name(     isCompileConstant_name,                          "isCompileConstant")                                   \
1063   do_alias(    isCompileConstant_signature,                      object_boolean_signature)                             \
1064                                                                                                                        \
1065  do_class(sun_hotspot_WhiteBox,                                 "sun/hotspot/WhiteBox")                                \
1066  do_intrinsic(_deoptimize,          sun_hotspot_WhiteBox,        deoptimize_name, deoptimize_signature, F_R)           \
1067   do_name(     deoptimize_name,                                 "deoptimize")                                          \
1068   do_alias(    deoptimize_signature,                             void_method_signature)                                \
1069                                                                                                                        \
1070  /* unsafe memory references (there are a lot of them...) */                                                           \
1071  do_signature(getObject_signature,       "(Ljava/lang/Object;J)Ljava/lang/Object;")                                    \
1072  do_signature(putObject_signature,       "(Ljava/lang/Object;JLjava/lang/Object;)V")                                   \
1073  do_signature(getBoolean_signature,      "(Ljava/lang/Object;J)Z")                                                     \
1074  do_signature(putBoolean_signature,      "(Ljava/lang/Object;JZ)V")                                                    \
1075  do_signature(getByte_signature,         "(Ljava/lang/Object;J)B")                                                     \
1076  do_signature(putByte_signature,         "(Ljava/lang/Object;JB)V")                                                    \
1077  do_signature(getShort_signature,        "(Ljava/lang/Object;J)S")                                                     \
1078  do_signature(putShort_signature,        "(Ljava/lang/Object;JS)V")                                                    \
1079  do_signature(getChar_signature,         "(Ljava/lang/Object;J)C")                                                     \
1080  do_signature(putChar_signature,         "(Ljava/lang/Object;JC)V")                                                    \
1081  do_signature(getInt_signature,          "(Ljava/lang/Object;J)I")                                                     \
1082  do_signature(putInt_signature,          "(Ljava/lang/Object;JI)V")                                                    \
1083  do_signature(getLong_signature,         "(Ljava/lang/Object;J)J")                                                     \
1084  do_signature(putLong_signature,         "(Ljava/lang/Object;JJ)V")                                                    \
1085  do_signature(getFloat_signature,        "(Ljava/lang/Object;J)F")                                                     \
1086  do_signature(putFloat_signature,        "(Ljava/lang/Object;JF)V")                                                    \
1087  do_signature(getDouble_signature,       "(Ljava/lang/Object;J)D")                                                     \
1088  do_signature(putDouble_signature,       "(Ljava/lang/Object;JD)V")                                                    \
1089                                                                                                                        \
1090  do_name(getObject_name,"getObject")           do_name(putObject_name,"putObject")                                     \
1091  do_name(getBoolean_name,"getBoolean")         do_name(putBoolean_name,"putBoolean")                                   \
1092  do_name(getByte_name,"getByte")               do_name(putByte_name,"putByte")                                         \
1093  do_name(getShort_name,"getShort")             do_name(putShort_name,"putShort")                                       \
1094  do_name(getChar_name,"getChar")               do_name(putChar_name,"putChar")                                         \
1095  do_name(getInt_name,"getInt")                 do_name(putInt_name,"putInt")                                           \
1096  do_name(getLong_name,"getLong")               do_name(putLong_name,"putLong")                                         \
1097  do_name(getFloat_name,"getFloat")             do_name(putFloat_name,"putFloat")                                       \
1098  do_name(getDouble_name,"getDouble")           do_name(putDouble_name,"putDouble")                                     \
1099                                                                                                                        \
1100  do_intrinsic(_getObject,          jdk_internal_misc_Unsafe,     getObject_name, getObject_signature,           F_RN)  \
1101  do_intrinsic(_getBoolean,         jdk_internal_misc_Unsafe,     getBoolean_name, getBoolean_signature,         F_RN)  \
1102  do_intrinsic(_getByte,            jdk_internal_misc_Unsafe,     getByte_name, getByte_signature,               F_RN)  \
1103  do_intrinsic(_getShort,           jdk_internal_misc_Unsafe,     getShort_name, getShort_signature,             F_RN)  \
1104  do_intrinsic(_getChar,            jdk_internal_misc_Unsafe,     getChar_name, getChar_signature,               F_RN)  \
1105  do_intrinsic(_getInt,             jdk_internal_misc_Unsafe,     getInt_name, getInt_signature,                 F_RN)  \
1106  do_intrinsic(_getLong,            jdk_internal_misc_Unsafe,     getLong_name, getLong_signature,               F_RN)  \
1107  do_intrinsic(_getFloat,           jdk_internal_misc_Unsafe,     getFloat_name, getFloat_signature,             F_RN)  \
1108  do_intrinsic(_getDouble,          jdk_internal_misc_Unsafe,     getDouble_name, getDouble_signature,           F_RN)  \
1109  do_intrinsic(_putObject,          jdk_internal_misc_Unsafe,     putObject_name, putObject_signature,           F_RN)  \
1110  do_intrinsic(_putBoolean,         jdk_internal_misc_Unsafe,     putBoolean_name, putBoolean_signature,         F_RN)  \
1111  do_intrinsic(_putByte,            jdk_internal_misc_Unsafe,     putByte_name, putByte_signature,               F_RN)  \
1112  do_intrinsic(_putShort,           jdk_internal_misc_Unsafe,     putShort_name, putShort_signature,             F_RN)  \
1113  do_intrinsic(_putChar,            jdk_internal_misc_Unsafe,     putChar_name, putChar_signature,               F_RN)  \
1114  do_intrinsic(_putInt,             jdk_internal_misc_Unsafe,     putInt_name, putInt_signature,                 F_RN)  \
1115  do_intrinsic(_putLong,            jdk_internal_misc_Unsafe,     putLong_name, putLong_signature,               F_RN)  \
1116  do_intrinsic(_putFloat,           jdk_internal_misc_Unsafe,     putFloat_name, putFloat_signature,             F_RN)  \
1117  do_intrinsic(_putDouble,          jdk_internal_misc_Unsafe,     putDouble_name, putDouble_signature,           F_RN)  \
1118                                                                                                                        \
1119  do_name(getObjectVolatile_name,"getObjectVolatile")   do_name(putObjectVolatile_name,"putObjectVolatile")             \
1120  do_name(getBooleanVolatile_name,"getBooleanVolatile") do_name(putBooleanVolatile_name,"putBooleanVolatile")           \
1121  do_name(getByteVolatile_name,"getByteVolatile")       do_name(putByteVolatile_name,"putByteVolatile")                 \
1122  do_name(getShortVolatile_name,"getShortVolatile")     do_name(putShortVolatile_name,"putShortVolatile")               \
1123  do_name(getCharVolatile_name,"getCharVolatile")       do_name(putCharVolatile_name,"putCharVolatile")                 \
1124  do_name(getIntVolatile_name,"getIntVolatile")         do_name(putIntVolatile_name,"putIntVolatile")                   \
1125  do_name(getLongVolatile_name,"getLongVolatile")       do_name(putLongVolatile_name,"putLongVolatile")                 \
1126  do_name(getFloatVolatile_name,"getFloatVolatile")     do_name(putFloatVolatile_name,"putFloatVolatile")               \
1127  do_name(getDoubleVolatile_name,"getDoubleVolatile")   do_name(putDoubleVolatile_name,"putDoubleVolatile")             \
1128                                                                                                                        \
1129  do_intrinsic(_getObjectVolatile,        jdk_internal_misc_Unsafe,     getObjectVolatile_name, getObject_signature,   F_RN)  \
1130  do_intrinsic(_getBooleanVolatile,       jdk_internal_misc_Unsafe,     getBooleanVolatile_name, getBoolean_signature, F_RN)  \
1131  do_intrinsic(_getByteVolatile,          jdk_internal_misc_Unsafe,     getByteVolatile_name, getByte_signature,       F_RN)  \
1132  do_intrinsic(_getShortVolatile,         jdk_internal_misc_Unsafe,     getShortVolatile_name, getShort_signature,     F_RN)  \
1133  do_intrinsic(_getCharVolatile,          jdk_internal_misc_Unsafe,     getCharVolatile_name, getChar_signature,       F_RN)  \
1134  do_intrinsic(_getIntVolatile,           jdk_internal_misc_Unsafe,     getIntVolatile_name, getInt_signature,         F_RN)  \
1135  do_intrinsic(_getLongVolatile,          jdk_internal_misc_Unsafe,     getLongVolatile_name, getLong_signature,       F_RN)  \
1136  do_intrinsic(_getFloatVolatile,         jdk_internal_misc_Unsafe,     getFloatVolatile_name, getFloat_signature,     F_RN)  \
1137  do_intrinsic(_getDoubleVolatile,        jdk_internal_misc_Unsafe,     getDoubleVolatile_name, getDouble_signature,   F_RN)  \
1138  do_intrinsic(_putObjectVolatile,        jdk_internal_misc_Unsafe,     putObjectVolatile_name, putObject_signature,   F_RN)  \
1139  do_intrinsic(_putBooleanVolatile,       jdk_internal_misc_Unsafe,     putBooleanVolatile_name, putBoolean_signature, F_RN)  \
1140  do_intrinsic(_putByteVolatile,          jdk_internal_misc_Unsafe,     putByteVolatile_name, putByte_signature,       F_RN)  \
1141  do_intrinsic(_putShortVolatile,         jdk_internal_misc_Unsafe,     putShortVolatile_name, putShort_signature,     F_RN)  \
1142  do_intrinsic(_putCharVolatile,          jdk_internal_misc_Unsafe,     putCharVolatile_name, putChar_signature,       F_RN)  \
1143  do_intrinsic(_putIntVolatile,           jdk_internal_misc_Unsafe,     putIntVolatile_name, putInt_signature,         F_RN)  \
1144  do_intrinsic(_putLongVolatile,          jdk_internal_misc_Unsafe,     putLongVolatile_name, putLong_signature,       F_RN)  \
1145  do_intrinsic(_putFloatVolatile,         jdk_internal_misc_Unsafe,     putFloatVolatile_name, putFloat_signature,     F_RN)  \
1146  do_intrinsic(_putDoubleVolatile,        jdk_internal_misc_Unsafe,     putDoubleVolatile_name, putDouble_signature,   F_RN)  \
1147                                                                                                                        \
1148  do_name(getObjectOpaque_name,"getObjectOpaque")     do_name(putObjectOpaque_name,"putObjectOpaque")                   \
1149  do_name(getBooleanOpaque_name,"getBooleanOpaque")   do_name(putBooleanOpaque_name,"putBooleanOpaque")                 \
1150  do_name(getByteOpaque_name,"getByteOpaque")         do_name(putByteOpaque_name,"putByteOpaque")                       \
1151  do_name(getShortOpaque_name,"getShortOpaque")       do_name(putShortOpaque_name,"putShortOpaque")                     \
1152  do_name(getCharOpaque_name,"getCharOpaque")         do_name(putCharOpaque_name,"putCharOpaque")                       \
1153  do_name(getIntOpaque_name,"getIntOpaque")           do_name(putIntOpaque_name,"putIntOpaque")                         \
1154  do_name(getLongOpaque_name,"getLongOpaque")         do_name(putLongOpaque_name,"putLongOpaque")                       \
1155  do_name(getFloatOpaque_name,"getFloatOpaque")       do_name(putFloatOpaque_name,"putFloatOpaque")                     \
1156  do_name(getDoubleOpaque_name,"getDoubleOpaque")     do_name(putDoubleOpaque_name,"putDoubleOpaque")                   \
1157                                                                                                                        \
1158  do_intrinsic(_getObjectOpaque,          jdk_internal_misc_Unsafe,        getObjectOpaque_name, getObject_signature,   F_R)  \
1159  do_intrinsic(_getBooleanOpaque,         jdk_internal_misc_Unsafe,        getBooleanOpaque_name, getBoolean_signature, F_R)  \
1160  do_intrinsic(_getByteOpaque,            jdk_internal_misc_Unsafe,        getByteOpaque_name, getByte_signature,       F_R)  \
1161  do_intrinsic(_getShortOpaque,           jdk_internal_misc_Unsafe,        getShortOpaque_name, getShort_signature,     F_R)  \
1162  do_intrinsic(_getCharOpaque,            jdk_internal_misc_Unsafe,        getCharOpaque_name, getChar_signature,       F_R)  \
1163  do_intrinsic(_getIntOpaque,             jdk_internal_misc_Unsafe,        getIntOpaque_name, getInt_signature,         F_R)  \
1164  do_intrinsic(_getLongOpaque,            jdk_internal_misc_Unsafe,        getLongOpaque_name, getLong_signature,       F_R)  \
1165  do_intrinsic(_getFloatOpaque,           jdk_internal_misc_Unsafe,        getFloatOpaque_name, getFloat_signature,     F_R)  \
1166  do_intrinsic(_getDoubleOpaque,          jdk_internal_misc_Unsafe,        getDoubleOpaque_name, getDouble_signature,   F_R)  \
1167  do_intrinsic(_putObjectOpaque,          jdk_internal_misc_Unsafe,        putObjectOpaque_name, putObject_signature,   F_R)  \
1168  do_intrinsic(_putBooleanOpaque,         jdk_internal_misc_Unsafe,        putBooleanOpaque_name, putBoolean_signature, F_R)  \
1169  do_intrinsic(_putByteOpaque,            jdk_internal_misc_Unsafe,        putByteOpaque_name, putByte_signature,       F_R)  \
1170  do_intrinsic(_putShortOpaque,           jdk_internal_misc_Unsafe,        putShortOpaque_name, putShort_signature,     F_R)  \
1171  do_intrinsic(_putCharOpaque,            jdk_internal_misc_Unsafe,        putCharOpaque_name, putChar_signature,       F_R)  \
1172  do_intrinsic(_putIntOpaque,             jdk_internal_misc_Unsafe,        putIntOpaque_name, putInt_signature,         F_R)  \
1173  do_intrinsic(_putLongOpaque,            jdk_internal_misc_Unsafe,        putLongOpaque_name, putLong_signature,       F_R)  \
1174  do_intrinsic(_putFloatOpaque,           jdk_internal_misc_Unsafe,        putFloatOpaque_name, putFloat_signature,     F_R)  \
1175  do_intrinsic(_putDoubleOpaque,          jdk_internal_misc_Unsafe,        putDoubleOpaque_name, putDouble_signature,   F_R)  \
1176                                                                                                                        \
1177  do_name(getObjectAcquire_name,  "getObjectAcquire")    do_name(putObjectRelease_name,  "putObjectRelease")            \
1178  do_name(getBooleanAcquire_name, "getBooleanAcquire")   do_name(putBooleanRelease_name, "putBooleanRelease")           \
1179  do_name(getByteAcquire_name,    "getByteAcquire")      do_name(putByteRelease_name,    "putByteRelease")              \
1180  do_name(getShortAcquire_name,   "getShortAcquire")     do_name(putShortRelease_name,   "putShortRelease")             \
1181  do_name(getCharAcquire_name,    "getCharAcquire")      do_name(putCharRelease_name,    "putCharRelease")              \
1182  do_name(getIntAcquire_name,     "getIntAcquire")       do_name(putIntRelease_name,     "putIntRelease")               \
1183  do_name(getLongAcquire_name,    "getLongAcquire")      do_name(putLongRelease_name,    "putLongRelease")              \
1184  do_name(getFloatAcquire_name,   "getFloatAcquire")     do_name(putFloatRelease_name,   "putFloatRelease")             \
1185  do_name(getDoubleAcquire_name,  "getDoubleAcquire")    do_name(putDoubleRelease_name,  "putDoubleRelease")            \
1186                                                                                                                        \
1187  do_intrinsic(_getObjectAcquire,        jdk_internal_misc_Unsafe,        getObjectAcquire_name, getObject_signature,   F_R)  \
1188  do_intrinsic(_getBooleanAcquire,       jdk_internal_misc_Unsafe,        getBooleanAcquire_name, getBoolean_signature, F_R)  \
1189  do_intrinsic(_getByteAcquire,          jdk_internal_misc_Unsafe,        getByteAcquire_name, getByte_signature,       F_R)  \
1190  do_intrinsic(_getShortAcquire,         jdk_internal_misc_Unsafe,        getShortAcquire_name, getShort_signature,     F_R)  \
1191  do_intrinsic(_getCharAcquire,          jdk_internal_misc_Unsafe,        getCharAcquire_name, getChar_signature,       F_R)  \
1192  do_intrinsic(_getIntAcquire,           jdk_internal_misc_Unsafe,        getIntAcquire_name, getInt_signature,         F_R)  \
1193  do_intrinsic(_getLongAcquire,          jdk_internal_misc_Unsafe,        getLongAcquire_name, getLong_signature,       F_R)  \
1194  do_intrinsic(_getFloatAcquire,         jdk_internal_misc_Unsafe,        getFloatAcquire_name, getFloat_signature,     F_R)  \
1195  do_intrinsic(_getDoubleAcquire,        jdk_internal_misc_Unsafe,        getDoubleAcquire_name, getDouble_signature,   F_R)  \
1196  do_intrinsic(_putObjectRelease,        jdk_internal_misc_Unsafe,        putObjectRelease_name, putObject_signature,   F_R)  \
1197  do_intrinsic(_putBooleanRelease,       jdk_internal_misc_Unsafe,        putBooleanRelease_name, putBoolean_signature, F_R)  \
1198  do_intrinsic(_putByteRelease,          jdk_internal_misc_Unsafe,        putByteRelease_name, putByte_signature,       F_R)  \
1199  do_intrinsic(_putShortRelease,         jdk_internal_misc_Unsafe,        putShortRelease_name, putShort_signature,     F_R)  \
1200  do_intrinsic(_putCharRelease,          jdk_internal_misc_Unsafe,        putCharRelease_name, putChar_signature,       F_R)  \
1201  do_intrinsic(_putIntRelease,           jdk_internal_misc_Unsafe,        putIntRelease_name, putInt_signature,         F_R)  \
1202  do_intrinsic(_putLongRelease,          jdk_internal_misc_Unsafe,        putLongRelease_name, putLong_signature,       F_R)  \
1203  do_intrinsic(_putFloatRelease,         jdk_internal_misc_Unsafe,        putFloatRelease_name, putFloat_signature,     F_R)  \
1204  do_intrinsic(_putDoubleRelease,        jdk_internal_misc_Unsafe,        putDoubleRelease_name, putDouble_signature,   F_R)  \
1205                                                                                                                        \
1206  do_name(getShortUnaligned_name,"getShortUnaligned")     do_name(putShortUnaligned_name,"putShortUnaligned")           \
1207  do_name(getCharUnaligned_name,"getCharUnaligned")       do_name(putCharUnaligned_name,"putCharUnaligned")             \
1208  do_name(getIntUnaligned_name,"getIntUnaligned")         do_name(putIntUnaligned_name,"putIntUnaligned")               \
1209  do_name(getLongUnaligned_name,"getLongUnaligned")       do_name(putLongUnaligned_name,"putLongUnaligned")             \
1210                                                                                                                        \
1211  do_intrinsic(_getShortUnaligned,         jdk_internal_misc_Unsafe,    getShortUnaligned_name, getShort_signature,     F_R)  \
1212  do_intrinsic(_getCharUnaligned,          jdk_internal_misc_Unsafe,    getCharUnaligned_name, getChar_signature,       F_R)  \
1213  do_intrinsic(_getIntUnaligned,           jdk_internal_misc_Unsafe,    getIntUnaligned_name, getInt_signature,         F_R)  \
1214  do_intrinsic(_getLongUnaligned,          jdk_internal_misc_Unsafe,    getLongUnaligned_name, getLong_signature,       F_R)  \
1215  do_intrinsic(_putShortUnaligned,         jdk_internal_misc_Unsafe,    putShortUnaligned_name, putShort_signature,     F_R)  \
1216  do_intrinsic(_putCharUnaligned,          jdk_internal_misc_Unsafe,    putCharUnaligned_name, putChar_signature,       F_R)  \
1217  do_intrinsic(_putIntUnaligned,           jdk_internal_misc_Unsafe,    putIntUnaligned_name, putInt_signature,         F_R)  \
1218  do_intrinsic(_putLongUnaligned,          jdk_internal_misc_Unsafe,    putLongUnaligned_name, putLong_signature,       F_R)  \
1219                                                                                                                        \
1220  /* %%% these are redundant except perhaps for getAddress, but Unsafe has native methods for them */                   \
1221  do_signature(getByte_raw_signature,     "(J)B")                                                                       \
1222  do_signature(putByte_raw_signature,     "(JB)V")                                                                      \
1223  do_signature(getShort_raw_signature,    "(J)S")                                                                       \
1224  do_signature(putShort_raw_signature,    "(JS)V")                                                                      \
1225  do_signature(getChar_raw_signature,     "(J)C")                                                                       \
1226  do_signature(putChar_raw_signature,     "(JC)V")                                                                      \
1227  do_signature(putInt_raw_signature,      "(JI)V")                                                                      \
1228      do_alias(getLong_raw_signature,    /*(J)J*/ long_long_signature)                                                  \
1229      do_alias(putLong_raw_signature,    /*(JJ)V*/ long_long_void_signature)                                            \
1230  do_signature(getFloat_raw_signature,    "(J)F")                                                                       \
1231  do_signature(putFloat_raw_signature,    "(JF)V")                                                                      \
1232      do_alias(getDouble_raw_signature,  /*(J)D*/ long_double_signature)                                                \
1233  do_signature(putDouble_raw_signature,   "(JD)V")                                                                      \
1234      do_alias(getAddress_raw_signature, /*(J)J*/ long_long_signature)                                                  \
1235      do_alias(putAddress_raw_signature, /*(JJ)V*/ long_long_void_signature)                                            \
1236                                                                                                                        \
1237   do_name(    getAddress_name,           "getAddress")                                                                 \
1238   do_name(    putAddress_name,           "putAddress")                                                                 \
1239                                                                                                                        \
1240  do_intrinsic(_getByte_raw,              jdk_internal_misc_Unsafe,     getByte_name, getByte_raw_signature,           F_R)  \
1241  do_intrinsic(_getShort_raw,             jdk_internal_misc_Unsafe,     getShort_name, getShort_raw_signature,         F_R)  \
1242  do_intrinsic(_getChar_raw,              jdk_internal_misc_Unsafe,     getChar_name, getChar_raw_signature,           F_R)  \
1243  do_intrinsic(_getInt_raw,               jdk_internal_misc_Unsafe,     getInt_name, long_int_signature,               F_R)  \
1244  do_intrinsic(_getLong_raw,              jdk_internal_misc_Unsafe,     getLong_name, getLong_raw_signature,           F_R)  \
1245  do_intrinsic(_getFloat_raw,             jdk_internal_misc_Unsafe,     getFloat_name, getFloat_raw_signature,         F_R)  \
1246  do_intrinsic(_getDouble_raw,            jdk_internal_misc_Unsafe,     getDouble_name, getDouble_raw_signature,       F_R)  \
1247  do_intrinsic(_getAddress_raw,           jdk_internal_misc_Unsafe,     getAddress_name, getAddress_raw_signature,     F_R)  \
1248  do_intrinsic(_putByte_raw,              jdk_internal_misc_Unsafe,     putByte_name, putByte_raw_signature,           F_R)  \
1249  do_intrinsic(_putShort_raw,             jdk_internal_misc_Unsafe,     putShort_name, putShort_raw_signature,         F_R)  \
1250  do_intrinsic(_putChar_raw,              jdk_internal_misc_Unsafe,     putChar_name, putChar_raw_signature,           F_R)  \
1251  do_intrinsic(_putInt_raw,               jdk_internal_misc_Unsafe,     putInt_name, putInt_raw_signature,             F_R)  \
1252  do_intrinsic(_putLong_raw,              jdk_internal_misc_Unsafe,     putLong_name, putLong_raw_signature,           F_R)  \
1253  do_intrinsic(_putFloat_raw,             jdk_internal_misc_Unsafe,     putFloat_name, putFloat_raw_signature,         F_R)  \
1254  do_intrinsic(_putDouble_raw,            jdk_internal_misc_Unsafe,     putDouble_name, putDouble_raw_signature,       F_R)  \
1255  do_intrinsic(_putAddress_raw,           jdk_internal_misc_Unsafe,     putAddress_name, putAddress_raw_signature,     F_R)  \
1256                                                                                                                        \
1257  do_signature(compareAndSwapObject_signature,     "(Ljava/lang/Object;JLjava/lang/Object;Ljava/lang/Object;)Z")        \
1258  do_signature(compareAndExchangeObject_signature, "(Ljava/lang/Object;JLjava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;") \
1259  do_signature(compareAndSwapLong_signature,       "(Ljava/lang/Object;JJJ)Z")                                          \
1260  do_signature(compareAndExchangeLong_signature,   "(Ljava/lang/Object;JJJ)J")                                          \
1261  do_signature(compareAndSwapInt_signature,        "(Ljava/lang/Object;JII)Z")                                          \
1262  do_signature(compareAndExchangeInt_signature,    "(Ljava/lang/Object;JII)I")                                          \
1263                                                                                                                        \
1264  do_name(compareAndSwapObject_name,             "compareAndSwapObject")                                                \
1265  do_name(compareAndExchangeObjectVolatile_name, "compareAndExchangeObjectVolatile")                                    \
1266  do_name(compareAndExchangeObjectAcquire_name,  "compareAndExchangeObjectAcquire")                                     \
1267  do_name(compareAndExchangeObjectRelease_name,  "compareAndExchangeObjectRelease")                                     \
1268  do_name(compareAndSwapLong_name,               "compareAndSwapLong")                                                  \
1269  do_name(compareAndExchangeLongVolatile_name,   "compareAndExchangeLongVolatile")                                      \
1270  do_name(compareAndExchangeLongAcquire_name,    "compareAndExchangeLongAcquire")                                       \
1271  do_name(compareAndExchangeLongRelease_name,    "compareAndExchangeLongRelease")                                       \
1272  do_name(compareAndSwapInt_name,                "compareAndSwapInt")                                                   \
1273  do_name(compareAndExchangeIntVolatile_name,    "compareAndExchangeIntVolatile")                                       \
1274  do_name(compareAndExchangeIntAcquire_name,     "compareAndExchangeIntAcquire")                                        \
1275  do_name(compareAndExchangeIntRelease_name,     "compareAndExchangeIntRelease")                                        \
1276                                                                                                                        \
1277  do_name(weakCompareAndSwapObject_name,         "weakCompareAndSwapObject")                                            \
1278  do_name(weakCompareAndSwapObjectAcquire_name,  "weakCompareAndSwapObjectAcquire")                                     \
1279  do_name(weakCompareAndSwapObjectRelease_name,  "weakCompareAndSwapObjectRelease")                                     \
1280  do_name(weakCompareAndSwapLong_name,           "weakCompareAndSwapLong")                                              \
1281  do_name(weakCompareAndSwapLongAcquire_name,    "weakCompareAndSwapLongAcquire")                                       \
1282  do_name(weakCompareAndSwapLongRelease_name,    "weakCompareAndSwapLongRelease")                                       \
1283  do_name(weakCompareAndSwapInt_name,            "weakCompareAndSwapInt")                                               \
1284  do_name(weakCompareAndSwapIntAcquire_name,     "weakCompareAndSwapIntAcquire")                                        \
1285  do_name(weakCompareAndSwapIntRelease_name,     "weakCompareAndSwapIntRelease")                                        \
1286                                                                                                                        \
1287  do_intrinsic(_compareAndSwapObject,             jdk_internal_misc_Unsafe,  compareAndSwapObject_name,             compareAndSwapObject_signature,     F_RN) \
1288  do_intrinsic(_compareAndExchangeObjectVolatile, jdk_internal_misc_Unsafe,  compareAndExchangeObjectVolatile_name, compareAndExchangeObject_signature, F_RN) \
1289  do_intrinsic(_compareAndExchangeObjectAcquire,  jdk_internal_misc_Unsafe,  compareAndExchangeObjectAcquire_name,  compareAndExchangeObject_signature, F_R)  \
1290  do_intrinsic(_compareAndExchangeObjectRelease,  jdk_internal_misc_Unsafe,  compareAndExchangeObjectRelease_name,  compareAndExchangeObject_signature, F_R)  \
1291  do_intrinsic(_compareAndSwapLong,               jdk_internal_misc_Unsafe,  compareAndSwapLong_name,               compareAndSwapLong_signature,       F_RN) \
1292  do_intrinsic(_compareAndExchangeLongVolatile,   jdk_internal_misc_Unsafe,  compareAndExchangeLongVolatile_name,   compareAndExchangeLong_signature,   F_RN) \
1293  do_intrinsic(_compareAndExchangeLongAcquire,    jdk_internal_misc_Unsafe,  compareAndExchangeLongAcquire_name,    compareAndExchangeLong_signature,   F_R)  \
1294  do_intrinsic(_compareAndExchangeLongRelease,    jdk_internal_misc_Unsafe,  compareAndExchangeLongRelease_name,    compareAndExchangeLong_signature,   F_R)  \
1295  do_intrinsic(_compareAndSwapInt,                jdk_internal_misc_Unsafe,  compareAndSwapInt_name,                compareAndSwapInt_signature,        F_RN) \
1296  do_intrinsic(_compareAndExchangeIntVolatile,    jdk_internal_misc_Unsafe,  compareAndExchangeIntVolatile_name,    compareAndExchangeInt_signature,    F_RN) \
1297  do_intrinsic(_compareAndExchangeIntAcquire,     jdk_internal_misc_Unsafe,  compareAndExchangeIntAcquire_name,     compareAndExchangeInt_signature,    F_R)  \
1298  do_intrinsic(_compareAndExchangeIntRelease,     jdk_internal_misc_Unsafe,  compareAndExchangeIntRelease_name,     compareAndExchangeInt_signature,    F_R)  \
1299                                                                                                                                                              \
1300  do_intrinsic(_weakCompareAndSwapObject,         jdk_internal_misc_Unsafe,  weakCompareAndSwapObject_name,         compareAndSwapObject_signature,     F_R) \
1301  do_intrinsic(_weakCompareAndSwapObjectAcquire,  jdk_internal_misc_Unsafe,  weakCompareAndSwapObjectAcquire_name,  compareAndSwapObject_signature,     F_R) \
1302  do_intrinsic(_weakCompareAndSwapObjectRelease,  jdk_internal_misc_Unsafe,  weakCompareAndSwapObjectRelease_name,  compareAndSwapObject_signature,     F_R) \
1303  do_intrinsic(_weakCompareAndSwapLong,           jdk_internal_misc_Unsafe,  weakCompareAndSwapLong_name,           compareAndSwapLong_signature,       F_R) \
1304  do_intrinsic(_weakCompareAndSwapLongAcquire,    jdk_internal_misc_Unsafe,  weakCompareAndSwapLongAcquire_name,    compareAndSwapLong_signature,       F_R) \
1305  do_intrinsic(_weakCompareAndSwapLongRelease,    jdk_internal_misc_Unsafe,  weakCompareAndSwapLongRelease_name,    compareAndSwapLong_signature,       F_R) \
1306  do_intrinsic(_weakCompareAndSwapInt,            jdk_internal_misc_Unsafe,  weakCompareAndSwapInt_name,            compareAndSwapInt_signature,        F_R) \
1307  do_intrinsic(_weakCompareAndSwapIntAcquire,     jdk_internal_misc_Unsafe,  weakCompareAndSwapIntAcquire_name,     compareAndSwapInt_signature,        F_R) \
1308  do_intrinsic(_weakCompareAndSwapIntRelease,     jdk_internal_misc_Unsafe,  weakCompareAndSwapIntRelease_name,     compareAndSwapInt_signature,        F_R) \
1309                                                                                                                        \
1310  do_intrinsic(_putOrderedObject,         jdk_internal_misc_Unsafe,        putOrderedObject_name, putOrderedObject_signature, F_RN) \
1311   do_name(     putOrderedObject_name,                           "putOrderedObject")                                    \
1312   do_alias(    putOrderedObject_signature,                     /*(LObject;JLObject;)V*/ putObject_signature)           \
1313  do_intrinsic(_putOrderedLong,           jdk_internal_misc_Unsafe,        putOrderedLong_name, putOrderedLong_signature, F_RN)  \
1314   do_name(     putOrderedLong_name,                             "putOrderedLong")                                      \
1315   do_alias(    putOrderedLong_signature,                       /*(Ljava/lang/Object;JJ)V*/ putLong_signature)          \
1316  do_intrinsic(_putOrderedInt,            jdk_internal_misc_Unsafe,        putOrderedInt_name, putOrderedInt_signature,   F_RN)  \
1317   do_name(     putOrderedInt_name,                              "putOrderedInt")                                       \
1318   do_alias(    putOrderedInt_signature,                        /*(Ljava/lang/Object;JI)V*/ putInt_signature)           \
1319                                                                                                                        \
1320  do_intrinsic(_getAndAddInt,             jdk_internal_misc_Unsafe,     getAndAddInt_name, getAndAddInt_signature, F_R)       \
1321   do_name(     getAndAddInt_name,                                      "getAndAddInt")                                       \
1322   do_signature(getAndAddInt_signature,                                 "(Ljava/lang/Object;JI)I" )                           \
1323  do_intrinsic(_getAndAddLong,            jdk_internal_misc_Unsafe,     getAndAddLong_name, getAndAddLong_signature, F_R)     \
1324   do_name(     getAndAddLong_name,                                     "getAndAddLong")                                      \
1325   do_signature(getAndAddLong_signature,                                "(Ljava/lang/Object;JJ)J" )                           \
1326  do_intrinsic(_getAndSetInt,             jdk_internal_misc_Unsafe,     getAndSetInt_name, getAndSetInt_signature, F_R)       \
1327   do_name(     getAndSetInt_name,                                      "getAndSetInt")                                       \
1328   do_alias(    getAndSetInt_signature,                                 /*"(Ljava/lang/Object;JI)I"*/ getAndAddInt_signature)   \
1329  do_intrinsic(_getAndSetLong,            jdk_internal_misc_Unsafe,     getAndSetLong_name, getAndSetLong_signature, F_R)     \
1330   do_name(     getAndSetLong_name,                                     "getAndSetLong")                                      \
1331   do_alias(    getAndSetLong_signature,                                /*"(Ljava/lang/Object;JJ)J"*/ getAndAddLong_signature)  \
1332  do_intrinsic(_getAndSetObject,          jdk_internal_misc_Unsafe,     getAndSetObject_name, getAndSetObject_signature,  F_R)\
1333   do_name(     getAndSetObject_name,                                   "getAndSetObject")                                    \
1334   do_signature(getAndSetObject_signature,                              "(Ljava/lang/Object;JLjava/lang/Object;)Ljava/lang/Object;" ) \
1335                                                                                                                               \
1336   /* (2) Bytecode intrinsics                                                                        */                        \
1337                                                                                                                               \
1338  do_intrinsic(_park,                     jdk_internal_misc_Unsafe,     park_name, park_signature,                     F_R)    \
1339   do_name(     park_name,                                              "park")                                                \
1340   do_signature(park_signature,                                         "(ZJ)V")                                               \
1341  do_intrinsic(_unpark,                   jdk_internal_misc_Unsafe,     unpark_name, unpark_signature,                 F_R)    \
1342   do_name(     unpark_name,                                            "unpark")                                              \
1343   do_alias(    unpark_signature,                                       /*(LObject;)V*/ object_void_signature)                 \
1344                                                                                                                               \
1345  do_intrinsic(_StringBuilder_void,   java_lang_StringBuilder, object_initializer_name, void_method_signature,     F_R)   \
1346  do_intrinsic(_StringBuilder_int,    java_lang_StringBuilder, object_initializer_name, int_void_signature,        F_R)   \
1347  do_intrinsic(_StringBuilder_String, java_lang_StringBuilder, object_initializer_name, string_void_signature,     F_R)   \
1348                                                                                                                          \
1349  do_intrinsic(_StringBuilder_append_char,   java_lang_StringBuilder, append_name, char_StringBuilder_signature,   F_R)   \
1350  do_intrinsic(_StringBuilder_append_int,    java_lang_StringBuilder, append_name, int_StringBuilder_signature,    F_R)   \
1351  do_intrinsic(_StringBuilder_append_String, java_lang_StringBuilder, append_name, String_StringBuilder_signature, F_R)   \
1352                                                                                                                          \
1353  do_intrinsic(_StringBuilder_toString, java_lang_StringBuilder, toString_name, void_string_signature,             F_R)   \
1354                                                                                                                          \
1355  do_intrinsic(_StringBuffer_void,   java_lang_StringBuffer, object_initializer_name, void_method_signature,       F_R)   \
1356  do_intrinsic(_StringBuffer_int,    java_lang_StringBuffer, object_initializer_name, int_void_signature,          F_R)   \
1357  do_intrinsic(_StringBuffer_String, java_lang_StringBuffer, object_initializer_name, string_void_signature,       F_R)   \
1358                                                                                                                          \
1359  do_intrinsic(_StringBuffer_append_char,   java_lang_StringBuffer, append_name, char_StringBuffer_signature,      F_Y)   \
1360  do_intrinsic(_StringBuffer_append_int,    java_lang_StringBuffer, append_name, int_StringBuffer_signature,       F_Y)   \
1361  do_intrinsic(_StringBuffer_append_String, java_lang_StringBuffer, append_name, String_StringBuffer_signature,    F_Y)   \
1362                                                                                                                          \
1363  do_intrinsic(_StringBuffer_toString,  java_lang_StringBuffer, toString_name, void_string_signature,              F_Y)   \
1364                                                                                                                          \
1365  do_intrinsic(_Integer_toString,      java_lang_Integer, toString_name, int_String_signature,                     F_S)   \
1366                                                                                                                          \
1367  do_intrinsic(_String_String, java_lang_String, object_initializer_name, string_void_signature,                   F_R)   \
1368                                                                                                                          \
1369  do_intrinsic(_Object_init,              java_lang_Object, object_initializer_name, void_method_signature,        F_R)   \
1370  /*    (symbol object_initializer_name defined above) */                                                                 \
1371                                                                                                                          \
1372  do_intrinsic(_invoke,                   java_lang_reflect_Method, invoke_name, object_object_array_object_signature, F_R) \
1373  /*   (symbols invoke_name and invoke_signature defined above) */                                                      \
1374  /* the polymorphic MH intrinsics must be in compact order, with _invokeGeneric first and _linkToInterface last */     \
1375  do_intrinsic(_invokeGeneric,            java_lang_invoke_MethodHandle, invoke_name,           star_name, F_RN)        \
1376  do_intrinsic(_invokeBasic,              java_lang_invoke_MethodHandle, invokeBasic_name,      star_name, F_RN)        \
1377  do_intrinsic(_linkToVirtual,            java_lang_invoke_MethodHandle, linkToVirtual_name,    star_name, F_SN)        \
1378  do_intrinsic(_linkToStatic,             java_lang_invoke_MethodHandle, linkToStatic_name,     star_name, F_SN)        \
1379  do_intrinsic(_linkToSpecial,            java_lang_invoke_MethodHandle, linkToSpecial_name,    star_name, F_SN)        \
1380  do_intrinsic(_linkToInterface,          java_lang_invoke_MethodHandle, linkToInterface_name,  star_name, F_SN)        \
1381  /* special marker for bytecode generated for the JVM from a LambdaForm: */                                            \
1382  do_intrinsic(_compiledLambdaForm,       java_lang_invoke_MethodHandle, compiledLambdaForm_name, star_name, F_RN)      \
1383                                                                                                                        \
1384  /* unboxing methods: */                                                                                               \
1385  do_intrinsic(_booleanValue,             java_lang_Boolean,      booleanValue_name, void_boolean_signature, F_R)       \
1386   do_name(     booleanValue_name,       "booleanValue")                                                                \
1387  do_intrinsic(_byteValue,                java_lang_Byte,         byteValue_name, void_byte_signature, F_R)             \
1388   do_name(     byteValue_name,          "byteValue")                                                                   \
1389  do_intrinsic(_charValue,                java_lang_Character,    charValue_name, void_char_signature, F_R)             \
1390   do_name(     charValue_name,          "charValue")                                                                   \
1391  do_intrinsic(_shortValue,               java_lang_Short,        shortValue_name, void_short_signature, F_R)           \
1392   do_name(     shortValue_name,         "shortValue")                                                                  \
1393  do_intrinsic(_intValue,                 java_lang_Integer,      intValue_name, void_int_signature, F_R)               \
1394   do_name(     intValue_name,           "intValue")                                                                    \
1395  do_intrinsic(_longValue,                java_lang_Long,         longValue_name, void_long_signature, F_R)             \
1396   do_name(     longValue_name,          "longValue")                                                                   \
1397  do_intrinsic(_floatValue,               java_lang_Float,        floatValue_name, void_float_signature, F_R)           \
1398   do_name(     floatValue_name,         "floatValue")                                                                  \
1399  do_intrinsic(_doubleValue,              java_lang_Double,       doubleValue_name, void_double_signature, F_R)         \
1400   do_name(     doubleValue_name,        "doubleValue")                                                                 \
1401                                                                                                                        \
1402  /* boxing methods: */                                                                                                 \
1403   do_name(    valueOf_name,              "valueOf")                                                                    \
1404  do_intrinsic(_Boolean_valueOf,          java_lang_Boolean,      valueOf_name, Boolean_valueOf_signature, F_S)         \
1405   do_name(     Boolean_valueOf_signature,                       "(Z)Ljava/lang/Boolean;")                              \
1406  do_intrinsic(_Byte_valueOf,             java_lang_Byte,         valueOf_name, Byte_valueOf_signature, F_S)            \
1407   do_name(     Byte_valueOf_signature,                          "(B)Ljava/lang/Byte;")                                 \
1408  do_intrinsic(_Character_valueOf,        java_lang_Character,    valueOf_name, Character_valueOf_signature, F_S)       \
1409   do_name(     Character_valueOf_signature,                     "(C)Ljava/lang/Character;")                            \
1410  do_intrinsic(_Short_valueOf,            java_lang_Short,        valueOf_name, Short_valueOf_signature, F_S)           \
1411   do_name(     Short_valueOf_signature,                         "(S)Ljava/lang/Short;")                                \
1412  do_intrinsic(_Integer_valueOf,          java_lang_Integer,      valueOf_name, Integer_valueOf_signature, F_S)         \
1413   do_name(     Integer_valueOf_signature,                       "(I)Ljava/lang/Integer;")                              \
1414  do_intrinsic(_Long_valueOf,             java_lang_Long,         valueOf_name, Long_valueOf_signature, F_S)            \
1415   do_name(     Long_valueOf_signature,                          "(J)Ljava/lang/Long;")                                 \
1416  do_intrinsic(_Float_valueOf,            java_lang_Float,        valueOf_name, Float_valueOf_signature, F_S)           \
1417   do_name(     Float_valueOf_signature,                         "(F)Ljava/lang/Float;")                                \
1418  do_intrinsic(_Double_valueOf,           java_lang_Double,       valueOf_name, Double_valueOf_signature, F_S)          \
1419   do_name(     Double_valueOf_signature,                        "(D)Ljava/lang/Double;")                               \
1420                                                                                                                        \
1421  /* forEachRemaining */                                                                             \
1422  do_intrinsic(_forEachRemaining, java_util_stream_StreamsRangeIntSpliterator, forEachRemaining_name, forEachRemaining_signature, F_R) \
1423   do_name(     forEachRemaining_name,    "forEachRemaining")                                                           \
1424   do_name(     forEachRemaining_signature,                      "(Ljava/util/function/IntConsumer;)V")                 \
1425
1426    /*end*/
1427
1428
1429
1430
1431// Class vmSymbols
1432
1433class vmSymbols: AllStatic {
1434  friend class vmIntrinsics;
1435  friend class VMStructs;
1436  friend class JVMCIVMStructs;
1437 public:
1438  // enum for figuring positions and size of array holding Symbol*s
1439  enum SID {
1440    NO_SID = 0,
1441
1442    #define VM_SYMBOL_ENUM(name, string) VM_SYMBOL_ENUM_NAME(name),
1443    VM_SYMBOLS_DO(VM_SYMBOL_ENUM, VM_ALIAS_IGNORE)
1444    #undef VM_SYMBOL_ENUM
1445
1446    SID_LIMIT,
1447
1448    #define VM_ALIAS_ENUM(name, def) VM_SYMBOL_ENUM_NAME(name) = VM_SYMBOL_ENUM_NAME(def),
1449    VM_SYMBOLS_DO(VM_SYMBOL_IGNORE, VM_ALIAS_ENUM)
1450    #undef VM_ALIAS_ENUM
1451
1452    FIRST_SID = NO_SID + 1
1453  };
1454  enum {
1455    log2_SID_LIMIT = 10         // checked by an assert at start-up
1456  };
1457
1458 private:
1459  // The symbol array
1460  static Symbol* _symbols[];
1461
1462  // Field signatures indexed by BasicType.
1463  static Symbol* _type_signatures[T_VOID+1];
1464
1465 public:
1466  // Initialization
1467  static void initialize(TRAPS);
1468  // Accessing
1469  #define VM_SYMBOL_DECLARE(name, ignore)                 \
1470    static Symbol* name() {                               \
1471      return _symbols[VM_SYMBOL_ENUM_NAME(name)];         \
1472    }
1473  VM_SYMBOLS_DO(VM_SYMBOL_DECLARE, VM_SYMBOL_DECLARE)
1474  #undef VM_SYMBOL_DECLARE
1475
1476  // Sharing support
1477  static void symbols_do(SymbolClosure* f);
1478  static void serialize(SerializeClosure* soc);
1479
1480  static Symbol* type_signature(BasicType t) {
1481    assert((uint)t < T_VOID+1, "range check");
1482    assert(_type_signatures[t] != NULL, "domain check");
1483    return _type_signatures[t];
1484  }
1485  // inverse of type_signature; returns T_OBJECT if s is not recognized
1486  static BasicType signature_type(const Symbol* s);
1487
1488  static Symbol* symbol_at(SID id) {
1489    assert(id >= FIRST_SID && id < SID_LIMIT, "oob");
1490    assert(_symbols[id] != NULL, "init");
1491    return _symbols[id];
1492  }
1493
1494  // Returns symbol's SID if one is assigned, else NO_SID.
1495  static SID find_sid(const Symbol* symbol);
1496  static SID find_sid(const char* symbol_name);
1497
1498#ifndef PRODUCT
1499  // No need for this in the product:
1500  static const char* name_for(SID sid);
1501#endif //PRODUCT
1502};
1503
1504// VM Intrinsic ID's uniquely identify some very special methods
1505class vmIntrinsics: AllStatic {
1506  friend class vmSymbols;
1507  friend class ciObjectFactory;
1508
1509 public:
1510  // Accessing
1511  enum ID {
1512    _none = 0,                      // not an intrinsic (default answer)
1513
1514    #define VM_INTRINSIC_ENUM(id, klass, name, sig, flags)  id,
1515    VM_INTRINSICS_DO(VM_INTRINSIC_ENUM,
1516                     VM_SYMBOL_IGNORE, VM_SYMBOL_IGNORE, VM_SYMBOL_IGNORE, VM_ALIAS_IGNORE)
1517    #undef VM_INTRINSIC_ENUM
1518
1519    ID_LIMIT,
1520    LAST_COMPILER_INLINE = _getAndSetObject,
1521    FIRST_MH_SIG_POLY    = _invokeGeneric,
1522    FIRST_MH_STATIC      = _linkToVirtual,
1523    LAST_MH_SIG_POLY     = _linkToInterface,
1524
1525    FIRST_ID = _none + 1
1526  };
1527
1528  enum Flags {
1529    // AccessFlags syndromes relevant to intrinsics.
1530    F_none = 0,
1531    F_R,                        // !static ?native !synchronized (R="regular")
1532    F_S,                        //  static ?native !synchronized
1533    F_Y,                        // !static ?native  synchronized
1534    F_RN,                       // !static  native !synchronized
1535    F_SN,                       //  static  native !synchronized
1536    F_RNY,                      // !static  native  synchronized
1537
1538    FLAG_LIMIT
1539  };
1540  enum {
1541    log2_FLAG_LIMIT = 4         // checked by an assert at start-up
1542  };
1543
1544public:
1545  static ID ID_from(int raw_id) {
1546    assert(raw_id >= (int)_none && raw_id < (int)ID_LIMIT,
1547           "must be a valid intrinsic ID");
1548    return (ID)raw_id;
1549  }
1550
1551  static const char* name_at(ID id);
1552
1553private:
1554  static ID find_id_impl(vmSymbols::SID holder,
1555                         vmSymbols::SID name,
1556                         vmSymbols::SID sig,
1557                         jshort flags);
1558
1559public:
1560  // Given a method's class, name, signature, and access flags, report its ID.
1561  static ID find_id(vmSymbols::SID holder,
1562                    vmSymbols::SID name,
1563                    vmSymbols::SID sig,
1564                    jshort flags) {
1565    ID id = find_id_impl(holder, name, sig, flags);
1566#ifdef ASSERT
1567    // ID _none does not hold the following asserts.
1568    if (id == _none)  return id;
1569#endif
1570    assert(    class_for(id) == holder, "correct id");
1571    assert(     name_for(id) == name,   "correct id");
1572    assert(signature_for(id) == sig,    "correct id");
1573    return id;
1574  }
1575
1576  static void verify_method(ID actual_id, Method* m) PRODUCT_RETURN;
1577
1578  // Find out the symbols behind an intrinsic:
1579  static vmSymbols::SID     class_for(ID id);
1580  static vmSymbols::SID      name_for(ID id);
1581  static vmSymbols::SID signature_for(ID id);
1582  static Flags              flags_for(ID id);
1583
1584  static const char* short_name_as_C_string(ID id, char* buf, int size);
1585
1586  // Wrapper object methods:
1587  static ID for_boxing(BasicType type);
1588  static ID for_unboxing(BasicType type);
1589
1590  // Raw conversion:
1591  static ID for_raw_conversion(BasicType src, BasicType dest);
1592
1593  // The methods below provide information related to compiling intrinsics.
1594
1595  // (1) Information needed by the C1 compiler.
1596
1597  static bool preserves_state(vmIntrinsics::ID id);
1598  static bool can_trap(vmIntrinsics::ID id);
1599
1600  // (2) Information needed by the C2 compiler.
1601
1602  // Returns true if the intrinsic for method 'method' will perform a virtual dispatch.
1603  static bool does_virtual_dispatch(vmIntrinsics::ID id);
1604  // A return value larger than 0 indicates that the intrinsic for method
1605  // 'method' requires predicated logic.
1606  static int predicates_needed(vmIntrinsics::ID id);
1607
1608  // Returns true if a compiler intrinsic is disabled by command-line flags
1609  // and false otherwise.
1610  static bool is_disabled_by_flags(const methodHandle& method);
1611};
1612
1613#endif // SHARE_VM_CLASSFILE_VMSYMBOLS_HPP
1614