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