hotspot/src/share/vm/classfile/vmSymbols.hpp
author jrose
Tue, 21 Apr 2009 23:21:04 -0700
changeset 2570 ecc7862946d4
parent 2534 08dac9ce0cd7
child 2862 fad636edf18f
permissions -rw-r--r--
6655646: dynamic languages need dynamically linked call sites Summary: invokedynamic instruction (JSR 292 RI) Reviewed-by: twisti, never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
2255
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 1890
diff changeset
     2
 * Copyright 1997-2009 Sun Microsystems, Inc.  All Rights Reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// The classes vmSymbols and vmSymbolHandles are a name spaces for fast lookup of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// symbols commonly used in the VM. The first class return a symbolOop, while the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// second class returns a SymbolHandle. The underlying data structure is shared
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// between the two classes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// Sample usage:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
//   symbolOop obj       = vmSymbols::java_lang_Object()();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
//   SymbolHandle handle = vmSymbolHandles::java_lang_Object();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// Useful sub-macros exported by this header file:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
#define VM_SYMBOL_ENUM_NAME(name)    name##_enum
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
#define VM_INTRINSIC_IGNORE(id, class, name, sig, flags) /*ignored*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
#define VM_SYMBOL_IGNORE(id, name)                       /*ignored*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
#define VM_ALIAS_IGNORE(id, id2)                         /*ignored*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// Mapping function names to values. New entries should be added below.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
#define VM_SYMBOLS_DO(template, do_alias)                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  /* commonly used class names */                                                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  template(java_lang_System,                          "java/lang/System")                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  template(java_lang_Object,                          "java/lang/Object")                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  template(java_lang_Class,                           "java/lang/Class")                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  template(java_lang_String,                          "java/lang/String")                         \
2336
427ce3320578 6810653: Change String cache class used by Hotspot from String to StringValue
phh
parents: 2259
diff changeset
    52
  template(java_lang_StringValue,                     "java/lang/StringValue")                    \
2342
9a1260c3679d 6821700: tune VM flags for peak performance
kvn
parents: 2336
diff changeset
    53
  template(java_lang_StringCache,                     "java/lang/StringValue$StringCache")        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  template(java_lang_Thread,                          "java/lang/Thread")                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  template(java_lang_ThreadGroup,                     "java/lang/ThreadGroup")                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  template(java_lang_Cloneable,                       "java/lang/Cloneable")                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  template(java_lang_Throwable,                       "java/lang/Throwable")                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  template(java_lang_ClassLoader,                     "java/lang/ClassLoader")                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  template(java_lang_ClassLoader_NativeLibrary,       "java/lang/ClassLoader\x024NativeLibrary")  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  template(java_lang_ThreadDeath,                     "java/lang/ThreadDeath")                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  template(java_lang_Boolean,                         "java/lang/Boolean")                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  template(java_lang_Character,                       "java/lang/Character")                      \
190
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
    63
  template(java_lang_Character_CharacterCache,        "java/lang/Character$CharacterCache")       \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  template(java_lang_Float,                           "java/lang/Float")                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  template(java_lang_Double,                          "java/lang/Double")                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  template(java_lang_Byte,                            "java/lang/Byte")                           \
190
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
    67
  template(java_lang_Byte_Cache,                      "java/lang/Byte$ByteCache")                 \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  template(java_lang_Short,                           "java/lang/Short")                          \
190
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
    69
  template(java_lang_Short_ShortCache,                "java/lang/Short$ShortCache")               \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  template(java_lang_Integer,                         "java/lang/Integer")                        \
190
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
    71
  template(java_lang_Integer_IntegerCache,            "java/lang/Integer$IntegerCache")           \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  template(java_lang_Long,                            "java/lang/Long")                           \
190
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
    73
  template(java_lang_Long_LongCache,                  "java/lang/Long$LongCache")                 \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  template(java_lang_Shutdown,                        "java/lang/Shutdown")                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  template(java_lang_ref_Reference,                   "java/lang/ref/Reference")                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  template(java_lang_ref_SoftReference,               "java/lang/ref/SoftReference")              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  template(java_lang_ref_WeakReference,               "java/lang/ref/WeakReference")              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  template(java_lang_ref_FinalReference,              "java/lang/ref/FinalReference")             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  template(java_lang_ref_PhantomReference,            "java/lang/ref/PhantomReference")           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  template(java_lang_ref_Finalizer,                   "java/lang/ref/Finalizer")                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  template(java_lang_reflect_AccessibleObject,        "java/lang/reflect/AccessibleObject")       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  template(java_lang_reflect_Method,                  "java/lang/reflect/Method")                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  template(java_lang_reflect_Constructor,             "java/lang/reflect/Constructor")            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  template(java_lang_reflect_Field,                   "java/lang/reflect/Field")                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  template(java_lang_reflect_Array,                   "java/lang/reflect/Array")                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  template(java_lang_StringBuffer,                    "java/lang/StringBuffer")                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  template(java_lang_CharSequence,                    "java/lang/CharSequence")                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  template(java_security_AccessControlContext,        "java/security/AccessControlContext")       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  template(java_security_ProtectionDomain,            "java/security/ProtectionDomain")           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  template(java_io_OutputStream,                      "java/io/OutputStream")                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  template(java_io_Reader,                            "java/io/Reader")                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  template(java_io_BufferedReader,                    "java/io/BufferedReader")                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  template(java_io_FileInputStream,                   "java/io/FileInputStream")                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  template(java_io_ByteArrayInputStream,              "java/io/ByteArrayInputStream")             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  template(java_io_Serializable,                      "java/io/Serializable")                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  template(java_util_Arrays,                          "java/util/Arrays")                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  template(java_util_Properties,                      "java/util/Properties")                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  template(java_util_Vector,                          "java/util/Vector")                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  template(java_util_AbstractList,                    "java/util/AbstractList")                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  template(java_util_Hashtable,                       "java/util/Hashtable")                      \
191
314312979e7a 6621621: HashMap front cache should be enabled only with AggressiveOpts
phh
parents: 190
diff changeset
   101
  template(java_util_HashMap,                         "java/util/HashMap")                        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  template(java_lang_Compiler,                        "java/lang/Compiler")                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  template(sun_misc_Signal,                           "sun/misc/Signal")                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  template(java_lang_AssertionStatusDirectives,       "java/lang/AssertionStatusDirectives")      \
191
314312979e7a 6621621: HashMap front cache should be enabled only with AggressiveOpts
phh
parents: 190
diff changeset
   105
  template(sun_jkernel_DownloadManager,               "sun/jkernel/DownloadManager")              \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  template(getBootClassPathEntryForClass_name,        "getBootClassPathEntryForClass")            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
                                                                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  /* class file format tags */                                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  template(tag_source_file,                           "SourceFile")                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  template(tag_inner_classes,                         "InnerClasses")                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  template(tag_constant_value,                        "ConstantValue")                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  template(tag_code,                                  "Code")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  template(tag_exceptions,                            "Exceptions")                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  template(tag_line_number_table,                     "LineNumberTable")                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  template(tag_local_variable_table,                  "LocalVariableTable")                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  template(tag_local_variable_type_table,             "LocalVariableTypeTable")                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  template(tag_stack_map_table,                       "StackMapTable")                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  template(tag_synthetic,                             "Synthetic")                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  template(tag_deprecated,                            "Deprecated")                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  template(tag_source_debug_extension,                "SourceDebugExtension")                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  template(tag_signature,                             "Signature")                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  template(tag_runtime_visible_annotations,           "RuntimeVisibleAnnotations")                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  template(tag_runtime_invisible_annotations,         "RuntimeInvisibleAnnotations")              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  template(tag_runtime_visible_parameter_annotations, "RuntimeVisibleParameterAnnotations")       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  template(tag_runtime_invisible_parameter_annotations,"RuntimeInvisibleParameterAnnotations")    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  template(tag_annotation_default,                    "AnnotationDefault")                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  template(tag_enclosing_method,                      "EnclosingMethod")                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
                                                                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  /* exception klasses: at least all exceptions thrown by the VM have entries here */             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  template(java_lang_ArithmeticException,             "java/lang/ArithmeticException")            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  template(java_lang_ArrayIndexOutOfBoundsException,  "java/lang/ArrayIndexOutOfBoundsException") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  template(java_lang_ArrayStoreException,             "java/lang/ArrayStoreException")            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  template(java_lang_ClassCastException,              "java/lang/ClassCastException")             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  template(java_lang_ClassNotFoundException,          "java/lang/ClassNotFoundException")         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  template(java_lang_CloneNotSupportedException,      "java/lang/CloneNotSupportedException")     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  template(java_lang_IllegalAccessException,          "java/lang/IllegalAccessException")         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  template(java_lang_IllegalArgumentException,        "java/lang/IllegalArgumentException")       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  template(java_lang_IllegalMonitorStateException,    "java/lang/IllegalMonitorStateException")   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  template(java_lang_IllegalThreadStateException,     "java/lang/IllegalThreadStateException")    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  template(java_lang_IndexOutOfBoundsException,       "java/lang/IndexOutOfBoundsException")      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  template(java_lang_InstantiationException,          "java/lang/InstantiationException")         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  template(java_lang_InstantiationError,              "java/lang/InstantiationError")             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  template(java_lang_InterruptedException,            "java/lang/InterruptedException")           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  template(java_lang_LinkageError,                    "java/lang/LinkageError")                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  template(java_lang_NegativeArraySizeException,      "java/lang/NegativeArraySizeException")     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  template(java_lang_NoSuchFieldException,            "java/lang/NoSuchFieldException")           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  template(java_lang_NoSuchMethodException,           "java/lang/NoSuchMethodException")          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  template(java_lang_NullPointerException,            "java/lang/NullPointerException")           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  template(java_lang_StringIndexOutOfBoundsException, "java/lang/StringIndexOutOfBoundsException")\
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  template(java_lang_InvalidClassException,           "java/lang/InvalidClassException")          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  template(java_lang_reflect_InvocationTargetException, "java/lang/reflect/InvocationTargetException") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  template(java_lang_Exception,                       "java/lang/Exception")                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  template(java_lang_RuntimeException,                "java/lang/RuntimeException")               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  template(java_io_IOException,                       "java/io/IOException")                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  template(java_security_PrivilegedActionException,   "java/security/PrivilegedActionException")  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
                                                                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  /* error klasses: at least all errors thrown by the VM have entries here */                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  template(java_lang_AbstractMethodError,             "java/lang/AbstractMethodError")            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  template(java_lang_ClassCircularityError,           "java/lang/ClassCircularityError")          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  template(java_lang_ClassFormatError,                "java/lang/ClassFormatError")               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  template(java_lang_UnsupportedClassVersionError,    "java/lang/UnsupportedClassVersionError")   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  template(java_lang_Error,                           "java/lang/Error")                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  template(java_lang_ExceptionInInitializerError,     "java/lang/ExceptionInInitializerError")    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  template(java_lang_IllegalAccessError,              "java/lang/IllegalAccessError")             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  template(java_lang_IncompatibleClassChangeError,    "java/lang/IncompatibleClassChangeError")   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  template(java_lang_InternalError,                   "java/lang/InternalError")                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  template(java_lang_NoClassDefFoundError,            "java/lang/NoClassDefFoundError")           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  template(java_lang_NoSuchFieldError,                "java/lang/NoSuchFieldError")               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  template(java_lang_NoSuchMethodError,               "java/lang/NoSuchMethodError")              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  template(java_lang_OutOfMemoryError,                "java/lang/OutOfMemoryError")               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  template(java_lang_UnsatisfiedLinkError,            "java/lang/UnsatisfiedLinkError")           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  template(java_lang_VerifyError,                     "java/lang/VerifyError")                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  template(java_lang_SecurityException,               "java/lang/SecurityException")              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  template(java_lang_VirtualMachineError,             "java/lang/VirtualMachineError")            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  template(java_lang_StackOverflowError,              "java/lang/StackOverflowError")             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  template(java_lang_StackTraceElement,               "java/lang/StackTraceElement")              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  template(java_util_concurrent_locks_AbstractOwnableSynchronizer,   "java/util/concurrent/locks/AbstractOwnableSynchronizer") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
                                                                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  /* class symbols needed by intrinsics */                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  VM_INTRINSICS_DO(VM_INTRINSIC_IGNORE, template, VM_SYMBOL_IGNORE, VM_SYMBOL_IGNORE, VM_ALIAS_IGNORE) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
                                                                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  /* Support for reflection based on dynamic bytecode generation (JDK 1.4 and above) */           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
                                                                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  template(sun_reflect_FieldInfo,                     "sun/reflect/FieldInfo")                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  template(sun_reflect_MethodInfo,                    "sun/reflect/MethodInfo")                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  template(sun_reflect_MagicAccessorImpl,             "sun/reflect/MagicAccessorImpl")            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  template(sun_reflect_MethodAccessorImpl,            "sun/reflect/MethodAccessorImpl")           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  template(sun_reflect_ConstructorAccessorImpl,       "sun/reflect/ConstructorAccessorImpl")      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  template(sun_reflect_SerializationConstructorAccessorImpl, "sun/reflect/SerializationConstructorAccessorImpl") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  template(sun_reflect_DelegatingClassLoader,         "sun/reflect/DelegatingClassLoader")        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  template(sun_reflect_Reflection,                    "sun/reflect/Reflection")                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  template(checkedExceptions_name,                    "checkedExceptions")                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  template(clazz_name,                                "clazz")                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  template(exceptionTypes_name,                       "exceptionTypes")                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  template(modifiers_name,                            "modifiers")                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  template(newConstructor_name,                       "newConstructor")                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  template(newConstructor_signature,                  "(Lsun/reflect/MethodInfo;)Ljava/lang/reflect/Constructor;") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  template(newField_name,                             "newField")                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  template(newField_signature,                        "(Lsun/reflect/FieldInfo;)Ljava/lang/reflect/Field;") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  template(newMethod_name,                            "newMethod")                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  template(newMethod_signature,                       "(Lsun/reflect/MethodInfo;)Ljava/lang/reflect/Method;") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  template(invoke_name,                               "invoke")                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  template(override_name,                             "override")                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  template(parameterTypes_name,                       "parameterTypes")                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  template(returnType_name,                           "returnType")                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  template(signature_name,                            "signature")                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  template(slot_name,                                 "slot")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
                                                                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  /* Support for annotations (JDK 1.5 and above) */                                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
                                                                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  template(annotations_name,                          "annotations")                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  template(parameter_annotations_name,                "parameterAnnotations")                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  template(annotation_default_name,                   "annotationDefault")                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  template(sun_reflect_ConstantPool,                  "sun/reflect/ConstantPool")                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  template(constantPoolOop_name,                      "constantPoolOop")                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  template(sun_reflect_UnsafeStaticFieldAccessorImpl, "sun/reflect/UnsafeStaticFieldAccessorImpl")\
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  template(base_name,                                 "base")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
                                                                                                  \
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   219
  /* Support for JSR 292 & invokedynamic (JDK 1.7 and above) */                                   \
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2534
diff changeset
   220
  template(java_dyn_Dynamic,                          "java/dyn/Dynamic")                         \
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2534
diff changeset
   221
  template(java_dyn_Linkage,                          "java/dyn/Linkage")                         \
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2534
diff changeset
   222
  template(java_dyn_CallSite,                         "java/dyn/CallSite")                        \
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   223
  template(java_dyn_MethodHandle,                     "java/dyn/MethodHandle")                    \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   224
  template(java_dyn_MethodType,                       "java/dyn/MethodType")                      \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   225
  template(java_dyn_WrongMethodTypeException,         "java/dyn/WrongMethodTypeException")        \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   226
  template(java_dyn_MethodType_signature,             "Ljava/dyn/MethodType;")                    \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   227
  template(java_dyn_MethodHandle_signature,           "Ljava/dyn/MethodHandle;")                  \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   228
  /* internal classes known only to the JVM: */                                                   \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   229
  template(java_dyn_MethodTypeForm,                   "java/dyn/MethodTypeForm")                  \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   230
  template(java_dyn_MethodTypeForm_signature,         "Ljava/dyn/MethodTypeForm;")                \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   231
  template(sun_dyn_MemberName,                        "sun/dyn/MemberName")                       \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   232
  template(sun_dyn_MethodHandleImpl,                  "sun/dyn/MethodHandleImpl")                 \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   233
  template(sun_dyn_AdapterMethodHandle,               "sun/dyn/AdapterMethodHandle")              \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   234
  template(sun_dyn_BoundMethodHandle,                 "sun/dyn/BoundMethodHandle")                \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   235
  template(sun_dyn_DirectMethodHandle,                "sun/dyn/DirectMethodHandle")               \
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2534
diff changeset
   236
  template(sun_dyn_CallSiteImpl,                      "sun/dyn/CallSiteImpl")                     \
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   237
  template(makeImpl_name,                             "makeImpl") /*MethodType::makeImpl*/        \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   238
  template(makeImpl_signature,    "(Ljava/lang/Class;[Ljava/lang/Class;ZZ)Ljava/dyn/MethodType;") \
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2534
diff changeset
   239
  template(makeSite_name,                             "makeSite") /*CallSiteImpl::makeImpl*/       \
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2534
diff changeset
   240
  template(makeSite_signature,    "(Ljava/lang/Class;Ljava/lang/String;Ljava/dyn/MethodType;II)Ljava/dyn/CallSite;") \
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2534
diff changeset
   241
  template(findBootstrapMethod_name,                  "findBootstrapMethod")                      \
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2534
diff changeset
   242
  template(findBootstrapMethod_signature, "(Ljava/lang/Class;Ljava/lang/Class;)Ljava/dyn/MethodHandle;") \
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   243
  NOT_LP64(  do_alias(machine_word_signature,         int_signature)  )                           \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   244
  LP64_ONLY( do_alias(machine_word_signature,         long_signature) )                           \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   245
                                                                                                  \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   246
  /* common method and field names */                                                             \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  template(object_initializer_name,                   "<init>")                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  template(class_initializer_name,                    "<clinit>")                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  template(println_name,                              "println")                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  template(printStackTrace_name,                      "printStackTrace")                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  template(main_name,                                 "main")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  template(name_name,                                 "name")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  template(priority_name,                             "priority")                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  template(stillborn_name,                            "stillborn")                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  template(group_name,                                "group")                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  template(daemon_name,                               "daemon")                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  template(eetop_name,                                "eetop")                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  template(thread_status_name,                        "threadStatus")                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  template(run_method_name,                           "run")                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  template(exit_method_name,                          "exit")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  template(add_method_name,                           "add")                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  template(parent_name,                               "parent")                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  template(threads_name,                              "threads")                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  template(groups_name,                               "groups")                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  template(maxPriority_name,                          "maxPriority")                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  template(destroyed_name,                            "destroyed")                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  template(vmAllowSuspension_name,                    "vmAllowSuspension")                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  template(nthreads_name,                             "nthreads")                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  template(ngroups_name,                              "ngroups")                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  template(shutdown_method_name,                      "shutdown")                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  template(finalize_method_name,                      "finalize")                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  template(reference_lock_name,                       "lock")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  template(reference_discovered_name,                 "discovered")                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  template(run_finalizers_on_exit_name,               "runFinalizersOnExit")                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  template(uncaughtException_name,                    "uncaughtException")                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  template(dispatchUncaughtException_name,            "dispatchUncaughtException")                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  template(initializeSystemClass_name,                "initializeSystemClass")                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  template(loadClass_name,                            "loadClass")                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  template(loadClassInternal_name,                    "loadClassInternal")                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  template(get_name,                                  "get")                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  template(put_name,                                  "put")                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  template(type_name,                                 "type")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  template(findNative_name,                           "findNative")                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  template(deadChild_name,                            "deadChild")                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  template(addClass_name,                             "addClass")                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  template(getFromClass_name,                         "getFromClass")                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  template(dispatch_name,                             "dispatch")                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  template(getSystemClassLoader_name,                 "getSystemClassLoader")                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  template(fillInStackTrace_name,                     "fillInStackTrace")                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  template(getCause_name,                             "getCause")                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  template(initCause_name,                            "initCause")                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  template(setProperty_name,                          "setProperty")                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  template(getProperty_name,                          "getProperty")                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  template(context_name,                              "context")                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  template(privilegedContext_name,                    "privilegedContext")                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  template(contextClassLoader_name,                   "contextClassLoader")                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  template(inheritedAccessControlContext_name,        "inheritedAccessControlContext")            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  template(isPrivileged_name,                         "isPrivileged")                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  template(wait_name,                                 "wait")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  template(checkPackageAccess_name,                   "checkPackageAccess")                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  template(stackSize_name,                            "stackSize")                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  template(thread_id_name,                            "tid")                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  template(newInstance0_name,                         "newInstance0")                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  template(limit_name,                                "limit")                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  template(forName_name,                              "forName")                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  template(forName0_name,                             "forName0")                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  template(isJavaIdentifierStart_name,                "isJavaIdentifierStart")                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  template(isJavaIdentifierPart_name,                 "isJavaIdentifierPart")                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  template(exclusive_owner_thread_name,               "exclusiveOwnerThread")                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  template(park_blocker_name,                         "parkBlocker")                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  template(park_event_name,                           "nativeParkEventPointer")                   \
190
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
   312
  template(cache_field_name,                          "cache")                                    \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  template(value_name,                                "value")                                    \
191
314312979e7a 6621621: HashMap front cache should be enabled only with AggressiveOpts
phh
parents: 190
diff changeset
   314
  template(frontCacheEnabled_name,                    "frontCacheEnabled")                        \
618
9641c2c8f977 6714404: Add UseStringCache switch to enable String caching under AggressiveOpts
kvn
parents: 595
diff changeset
   315
  template(stringCacheEnabled_name,                   "stringCacheEnabled")                       \
2255
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 1890
diff changeset
   316
  template(bitCount_name,                             "bitCount")                                 \
2342
9a1260c3679d 6821700: tune VM flags for peak performance
kvn
parents: 2336
diff changeset
   317
  template(profile_name,                              "profile")                                  \
2348
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2343
diff changeset
   318
  template(equals_name,                               "equals")                                   \
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2534
diff changeset
   319
  template(target_name,                               "target")                                   \
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   320
  template(toString_name,                             "toString")                                 \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   321
  template(values_name,                               "values")                                   \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   322
  template(receiver_name,                             "receiver")                                 \
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2534
diff changeset
   323
  template(vmmethod_name,                             "vmmethod")                                 \
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   324
  template(vmtarget_name,                             "vmtarget")                                 \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   325
  template(vmentry_name,                              "vmentry")                                  \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   326
  template(vmslots_name,                              "vmslots")                                  \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   327
  template(vmindex_name,                              "vmindex")                                  \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   328
  template(vmargslot_name,                            "vmargslot")                                \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   329
  template(flags_name,                                "flags")                                    \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   330
  template(argument_name,                             "argument")                                 \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   331
  template(conversion_name,                           "conversion")                               \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   332
  template(rtype_name,                                "rtype")                                    \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   333
  template(ptypes_name,                               "ptypes")                                   \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   334
  template(form_name,                                 "form")                                     \
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   335
  template(erasedType_name,                           "erasedType")                               \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
                                                                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  /* non-intrinsic name/signature pairs: */                                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  template(register_method_name,                      "register")                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  do_alias(register_method_signature,         object_void_signature)                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
                                                                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  /* name symbols needed by intrinsics */                                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  VM_INTRINSICS_DO(VM_INTRINSIC_IGNORE, VM_SYMBOL_IGNORE, template, VM_SYMBOL_IGNORE, VM_ALIAS_IGNORE) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
                                                                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  /* common signatures names */                                                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  template(void_method_signature,                     "()V")                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  template(void_int_signature,                        "()I")                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  template(void_long_signature,                       "()J")                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  template(void_boolean_signature,                    "()Z")                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  template(int_void_signature,                        "(I)V")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  template(int_int_signature,                         "(I)I")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  template(int_bool_signature,                        "(I)Z")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  template(float_int_signature,                       "(F)I")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  template(double_long_signature,                     "(D)J")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  template(double_double_signature,                   "(D)D")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  template(int_float_signature,                       "(I)F")                                     \
2255
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 1890
diff changeset
   356
  template(long_int_signature,                        "(J)I")                                     \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  template(long_long_signature,                       "(J)J")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  template(long_double_signature,                     "(J)D")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  template(byte_signature,                            "B")                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  template(char_signature,                            "C")                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  template(double_signature,                          "D")                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  template(float_signature,                           "F")                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  template(int_signature,                             "I")                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  template(long_signature,                            "J")                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  template(short_signature,                           "S")                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  template(bool_signature,                            "Z")                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  template(void_signature,                            "V")                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  template(byte_array_signature,                      "[B")                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  template(char_array_signature,                      "[C")                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  template(object_void_signature,                     "(Ljava/lang/Object;)V")                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  template(object_int_signature,                      "(Ljava/lang/Object;)I")                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  template(object_boolean_signature,                  "(Ljava/lang/Object;)Z")                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  template(string_void_signature,                     "(Ljava/lang/String;)V")                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  template(string_int_signature,                      "(Ljava/lang/String;)I")                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  template(throwable_void_signature,                  "(Ljava/lang/Throwable;)V")                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  template(void_throwable_signature,                  "()Ljava/lang/Throwable;")                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  template(throwable_throwable_signature,             "(Ljava/lang/Throwable;)Ljava/lang/Throwable;")             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  template(class_void_signature,                      "(Ljava/lang/Class;)V")                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  template(class_int_signature,                       "(Ljava/lang/Class;)I")                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  template(class_boolean_signature,                   "(Ljava/lang/Class;)Z")                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  template(throwable_string_void_signature,           "(Ljava/lang/Throwable;Ljava/lang/String;)V")               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  template(string_array_void_signature,               "([Ljava/lang/String;)V")                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  template(string_array_string_array_void_signature,  "([Ljava/lang/String;[Ljava/lang/String;)V")                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  template(thread_throwable_void_signature,           "(Ljava/lang/Thread;Ljava/lang/Throwable;)V")               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  template(thread_void_signature,                     "(Ljava/lang/Thread;)V")                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  template(threadgroup_runnable_void_signature,       "(Ljava/lang/ThreadGroup;Ljava/lang/Runnable;)V")           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  template(threadgroup_string_void_signature,         "(Ljava/lang/ThreadGroup;Ljava/lang/String;)V")             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  template(string_class_signature,                    "(Ljava/lang/String;)Ljava/lang/Class;")                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  template(object_object_object_signature,            "(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  template(string_string_string_signature,            "(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  template(string_string_signature,                   "(Ljava/lang/String;)Ljava/lang/String;")                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  template(classloader_string_long_signature,         "(Ljava/lang/ClassLoader;Ljava/lang/String;)J")             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  template(byte_array_void_signature,                 "([B)V")                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  template(char_array_void_signature,                 "([C)V")                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  template(int_int_void_signature,                    "(II)V")                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  template(long_long_void_signature,                  "(JJ)V")                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  template(void_classloader_signature,                "()Ljava/lang/ClassLoader;")                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  template(void_object_signature,                     "()Ljava/lang/Object;")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  template(void_class_signature,                      "()Ljava/lang/Class;")                                      \
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2348
diff changeset
   400
  template(void_string_signature,                     "()Ljava/lang/String;")                                      \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  template(object_array_object_object_signature,      "(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;")\
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  template(exception_void_signature,                  "(Ljava/lang/Exception;)V")                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  template(protectiondomain_signature,                "[Ljava/security/ProtectionDomain;")                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  template(accesscontrolcontext_signature,            "Ljava/security/AccessControlContext;")                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  template(class_protectiondomain_signature,          "(Ljava/lang/Class;Ljava/security/ProtectionDomain;)V")     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  template(thread_signature,                          "Ljava/lang/Thread;")                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  template(thread_array_signature,                    "[Ljava/lang/Thread;")                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  template(threadgroup_signature,                     "Ljava/lang/ThreadGroup;")                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  template(threadgroup_array_signature,               "[Ljava/lang/ThreadGroup;")                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  template(class_array_signature,                     "[Ljava/lang/Class;")                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  template(classloader_signature,                     "Ljava/lang/ClassLoader;")                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  template(object_signature,                          "Ljava/lang/Object;")                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  template(class_signature,                           "Ljava/lang/Class;")                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  template(string_signature,                          "Ljava/lang/String;")                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  template(reference_signature,                       "Ljava/lang/ref/Reference;")                                \
1890
9ce941df84eb 4670071: loadClassInternal is too restrictive.
acorn
parents: 670
diff changeset
   416
  template(concurrenthashmap_signature,               "Ljava/util/concurrent/ConcurrentHashMap;")                 \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  /* signature symbols needed by intrinsics */                                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  VM_INTRINSICS_DO(VM_INTRINSIC_IGNORE, VM_SYMBOL_IGNORE, VM_SYMBOL_IGNORE, template, VM_ALIAS_IGNORE)            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
                                                                                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  /* symbol aliases needed by intrinsics */                                                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  VM_INTRINSICS_DO(VM_INTRINSIC_IGNORE, VM_SYMBOL_IGNORE, VM_SYMBOL_IGNORE, VM_SYMBOL_IGNORE, do_alias)           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
                                                                                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  /* returned by the C1 compiler in case there's not enough memory to allocate a new symbol*/                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  template(dummy_symbol_oop,                          "illegal symbol")                                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
                                                                                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  /* used by ClassFormatError when class name is not known yet */                                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  template(unknown_class_name,                        "<Unknown>")                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
                                                                                                                  \
1890
9ce941df84eb 4670071: loadClassInternal is too restrictive.
acorn
parents: 670
diff changeset
   429
  /* used to identify class loaders handling parallel class loading */                                            \
2265
56439ca57904 6819853: VM does not detect JDK which supports parallel class loaders
acorn
parents: 2105
diff changeset
   430
  template(parallelCapable_name,                      "parallelLockMap")                                          \
1890
9ce941df84eb 4670071: loadClassInternal is too restrictive.
acorn
parents: 670
diff changeset
   431
                                                                                                                  \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  /* JVM monitoring and management support */                                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  template(java_lang_StackTraceElement_array,          "[Ljava/lang/StackTraceElement;")                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  template(java_lang_management_ThreadState,           "java/lang/management/ThreadState")                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  template(java_lang_management_MemoryUsage,           "java/lang/management/MemoryUsage")                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  template(java_lang_management_ThreadInfo,            "java/lang/management/ThreadInfo")                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  template(sun_management_ManagementFactory,           "sun/management/ManagementFactory")                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  template(sun_management_Sensor,                      "sun/management/Sensor")                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  template(sun_management_Agent,                       "sun/management/Agent")                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  template(createMemoryPoolMBean_name,                 "createMemoryPoolMBean")                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  template(createMemoryManagerMBean_name,              "createMemoryManagerMBean")                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  template(createGarbageCollectorMBean_name,           "createGarbageCollectorMBean")                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  template(createMemoryPoolMBean_signature,            "(Ljava/lang/String;ZJJ)Ljava/lang/management/MemoryPoolMBean;") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  template(createMemoryManagerMBean_signature,         "(Ljava/lang/String;)Ljava/lang/management/MemoryManagerMBean;") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  template(createGarbageCollectorMBean_signature,      "(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/management/GarbageCollectorMBean;") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  template(trigger_name,                               "trigger")                                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  template(clear_name,                                 "clear")                                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  template(trigger_method_signature,                   "(ILjava/lang/management/MemoryUsage;)V")                                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  template(startAgent_name,                            "startAgent")                                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  template(java_lang_management_ThreadInfo_constructor_signature, "(Ljava/lang/Thread;ILjava/lang/Object;Ljava/lang/Thread;JJJJ[Ljava/lang/StackTraceElement;)V") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  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") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  template(long_long_long_long_void_signature,         "(JJJJ)V")                                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
                                                                                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  template(java_lang_management_MemoryPoolMXBean,      "java/lang/management/MemoryPoolMXBean")                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  template(java_lang_management_MemoryManagerMXBean,   "java/lang/management/MemoryManagerMXBean")                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  template(java_lang_management_GarbageCollectorMXBean,"java/lang/management/GarbageCollectorMXBean")             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  template(createMemoryPool_name,                      "createMemoryPool")                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  template(createMemoryManager_name,                   "createMemoryManager")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  template(createGarbageCollector_name,                "createGarbageCollector")                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  template(createMemoryPool_signature,                 "(Ljava/lang/String;ZJJ)Ljava/lang/management/MemoryPoolMXBean;") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  template(createMemoryManager_signature,              "(Ljava/lang/String;)Ljava/lang/management/MemoryManagerMXBean;") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  template(createGarbageCollector_signature,           "(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/management/GarbageCollectorMXBean;") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  template(addThreadDumpForMonitors_name,              "addThreadDumpForMonitors")                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  template(addThreadDumpForSynchronizers_name,         "addThreadDumpForSynchronizers")                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  template(addThreadDumpForMonitors_signature,         "(Ljava/lang/management/ThreadInfo;[Ljava/lang/Object;[I)V") \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  template(addThreadDumpForSynchronizers_signature,    "(Ljava/lang/management/ThreadInfo;[Ljava/lang/Object;)V")   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
                                                                                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  /* JVMTI/java.lang.instrument support and VM Attach mechanism */                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  template(sun_misc_VMSupport,                         "sun/misc/VMSupport")                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  template(appendToClassPathForInstrumentation_name,   "appendToClassPathForInstrumentation")                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  do_alias(appendToClassPathForInstrumentation_signature, string_void_signature)                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  template(serializePropertiesToByteArray_name,        "serializePropertiesToByteArray")                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  template(serializePropertiesToByteArray_signature,   "()[B")                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  template(serializeAgentPropertiesToByteArray_name,   "serializeAgentPropertiesToByteArray")                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  template(classRedefinedCount_name,                   "classRedefinedCount")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  /*end*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
// Here are all the intrinsics known to the runtime and the CI.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
// Each intrinsic consists of a public enum name (like _hashCode),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
// followed by a specification of its klass, name, and signature:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
//    template(<id>,  <klass>,  <name>, <sig>, <FCODE>)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
// If you add an intrinsic here, you must also define its name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
// and signature as members of the VM symbols.  The VM symbols for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
// the intrinsic name and signature may be defined above.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
// Because the VM_SYMBOLS_DO macro makes reference to VM_INTRINSICS_DO,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
// you can also define an intrinsic's name and/or signature locally to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
// intrinsic, if this makes sense.  (It often does make sense.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
// For example:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
//    do_intrinsic(_foo,  java_lang_Object,  foo_name, foo_signature, F_xx)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
//     do_name(     foo_name, "foo")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
//     do_signature(foo_signature, "()F")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
// klass      = vmSymbols::java_lang_Object()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
// name       = vmSymbols::foo_name()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
// signature  = vmSymbols::foo_signature()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
// The name and/or signature might be a "well known" symbol
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
// like "equal" or "()I", in which case there will be no local
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
// re-definition of the symbol.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
// The do_class, do_name, and do_signature calls are all used for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
// same purpose:  Define yet another VM symbol.  They could all be merged
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
// into a common 'do_symbol' call, but it seems useful to record our
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
// intentions here about kinds of symbols (class vs. name vs. signature).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
// The F_xx is one of the Flags enum; see below.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
// for Emacs: (let ((c-backslash-column 120) (c-backslash-max-column 120)) (c-backslash-region (point) (point-max) nil t))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
#define VM_INTRINSICS_DO(do_intrinsic, do_class, do_name, do_signature, do_alias)                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  do_intrinsic(_Object_init,              java_lang_Object, object_initializer_name, void_method_signature,      F_R)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  /*    (symbol object_initializer_name defined above) */                                                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  do_intrinsic(_hashCode,                 java_lang_Object,       hashCode_name, void_int_signature,             F_R)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
   do_name(     hashCode_name,                                   "hashCode")                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  do_intrinsic(_getClass,                 java_lang_Object,       getClass_name, void_class_signature,           F_R)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
   do_name(     getClass_name,                                   "getClass")                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  do_intrinsic(_clone,                    java_lang_Object,       clone_name, void_object_signature,             F_R)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
   do_name(     clone_name,                                      "clone")                                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  /* Math & StrictMath intrinsics are defined in terms of just a few signatures: */                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  do_class(java_lang_Math,                "java/lang/Math")                                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  do_class(java_lang_StrictMath,          "java/lang/StrictMath")                                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  do_signature(double2_double_signature,  "(DD)D")                                                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  do_signature(int2_int_signature,        "(II)I")                                                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  /* here are the math names, all together: */                                                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  do_name(abs_name,"abs")       do_name(sin_name,"sin")         do_name(cos_name,"cos")                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  do_name(tan_name,"tan")       do_name(atan2_name,"atan2")     do_name(sqrt_name,"sqrt")                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  do_name(log_name,"log")       do_name(log10_name,"log10")     do_name(pow_name,"pow")                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  do_name(exp_name,"exp")       do_name(min_name,"min")         do_name(max_name,"max")                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  do_intrinsic(_dabs,                     java_lang_Math,         abs_name,   double_double_signature,           F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  do_intrinsic(_dsin,                     java_lang_Math,         sin_name,   double_double_signature,           F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  do_intrinsic(_dcos,                     java_lang_Math,         cos_name,   double_double_signature,           F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  do_intrinsic(_dtan,                     java_lang_Math,         tan_name,   double_double_signature,           F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  do_intrinsic(_datan2,                   java_lang_Math,         atan2_name, double2_double_signature,          F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  do_intrinsic(_dsqrt,                    java_lang_Math,         sqrt_name,  double_double_signature,           F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
  do_intrinsic(_dlog,                     java_lang_Math,         log_name,   double_double_signature,           F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
  do_intrinsic(_dlog10,                   java_lang_Math,         log10_name, double_double_signature,           F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  do_intrinsic(_dpow,                     java_lang_Math,         pow_name,   double2_double_signature,          F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  do_intrinsic(_dexp,                     java_lang_Math,         exp_name,   double_double_signature,           F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  do_intrinsic(_min,                      java_lang_Math,         min_name,   int2_int_signature,                F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  do_intrinsic(_max,                      java_lang_Math,         max_name,   int2_int_signature,                F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  do_intrinsic(_floatToRawIntBits,        java_lang_Float,        floatToRawIntBits_name,   float_int_signature, F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
   do_name(     floatToRawIntBits_name,                          "floatToRawIntBits")                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  do_intrinsic(_floatToIntBits,           java_lang_Float,        floatToIntBits_name,      float_int_signature, F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
   do_name(     floatToIntBits_name,                             "floatToIntBits")                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  do_intrinsic(_intBitsToFloat,           java_lang_Float,        intBitsToFloat_name,      int_float_signature, F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
   do_name(     intBitsToFloat_name,                             "intBitsToFloat")                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  do_intrinsic(_doubleToRawLongBits,      java_lang_Double,       doubleToRawLongBits_name, double_long_signature, F_S) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
   do_name(     doubleToRawLongBits_name,                        "doubleToRawLongBits")                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  do_intrinsic(_doubleToLongBits,         java_lang_Double,       doubleToLongBits_name,    double_long_signature, F_S) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
   do_name(     doubleToLongBits_name,                           "doubleToLongBits")                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  do_intrinsic(_longBitsToDouble,         java_lang_Double,       longBitsToDouble_name,    long_double_signature, F_S) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
   do_name(     longBitsToDouble_name,                           "longBitsToDouble")                                    \
2255
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 1890
diff changeset
   561
                                                                                                                        \
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 1890
diff changeset
   562
  do_intrinsic(_bitCount_i,               java_lang_Integer,      bitCount_name,            int_int_signature,   F_S)   \
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 1890
diff changeset
   563
  do_intrinsic(_bitCount_l,               java_lang_Long,         bitCount_name,            long_int_signature,  F_S)   \
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 1890
diff changeset
   564
                                                                                                                        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  do_intrinsic(_reverseBytes_i,           java_lang_Integer,      reverseBytes_name,        int_int_signature,   F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
   do_name(     reverseBytes_name,                               "reverseBytes")                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  do_intrinsic(_reverseBytes_l,           java_lang_Long,         reverseBytes_name,        long_long_signature, F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
    /*  (symbol reverseBytes_name defined above) */                                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  do_intrinsic(_identityHashCode,         java_lang_System,       identityHashCode_name, object_int_signature,   F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
   do_name(     identityHashCode_name,                           "identityHashCode")                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  do_intrinsic(_currentTimeMillis,        java_lang_System,       currentTimeMillis_name, void_long_signature,   F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
   do_name(     currentTimeMillis_name,                          "currentTimeMillis")                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  do_intrinsic(_nanoTime,                 java_lang_System,       nanoTime_name,          void_long_signature,   F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
   do_name(     nanoTime_name,                                   "nanoTime")                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  do_intrinsic(_arraycopy,                java_lang_System,       arraycopy_name, arraycopy_signature,           F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
   do_name(     arraycopy_name,                                  "arraycopy")                                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
   do_signature(arraycopy_signature,                             "(Ljava/lang/Object;ILjava/lang/Object;II)V")          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  do_intrinsic(_isInterrupted,            java_lang_Thread,       isInterrupted_name, isInterrupted_signature,   F_R)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
   do_name(     isInterrupted_name,                              "isInterrupted")                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
   do_signature(isInterrupted_signature,                         "(Z)Z")                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  do_intrinsic(_currentThread,            java_lang_Thread,       currentThread_name, currentThread_signature,   F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
   do_name(     currentThread_name,                              "currentThread")                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
   do_signature(currentThread_signature,                         "()Ljava/lang/Thread;")                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  /* reflective intrinsics, for java/lang/Class, etc. */                                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  do_intrinsic(_isAssignableFrom,         java_lang_Class,        isAssignableFrom_name, class_boolean_signature, F_RN) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
   do_name(     isAssignableFrom_name,                           "isAssignableFrom")                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  do_intrinsic(_isInstance,               java_lang_Class,        isInstance_name, object_boolean_signature,     F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
   do_name(     isInstance_name,                                 "isInstance")                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  do_intrinsic(_getModifiers,             java_lang_Class,        getModifiers_name, void_int_signature,         F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
   do_name(     getModifiers_name,                               "getModifiers")                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  do_intrinsic(_isInterface,              java_lang_Class,        isInterface_name, void_boolean_signature,      F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
   do_name(     isInterface_name,                                "isInterface")                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  do_intrinsic(_isArray,                  java_lang_Class,        isArray_name, void_boolean_signature,          F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
   do_name(     isArray_name,                                    "isArray")                                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
  do_intrinsic(_isPrimitive,              java_lang_Class,        isPrimitive_name, void_boolean_signature,      F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
   do_name(     isPrimitive_name,                                "isPrimitive")                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  do_intrinsic(_getSuperclass,            java_lang_Class,        getSuperclass_name, void_class_signature,      F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
   do_name(     getSuperclass_name,                              "getSuperclass")                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  do_intrinsic(_getComponentType,         java_lang_Class,        getComponentType_name, void_class_signature,   F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
   do_name(     getComponentType_name,                           "getComponentType")                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  do_intrinsic(_getClassAccessFlags,      sun_reflect_Reflection, getClassAccessFlags_name, class_int_signature, F_SN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
   do_name(     getClassAccessFlags_name,                        "getClassAccessFlags")                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  do_intrinsic(_getLength,                java_lang_reflect_Array, getLength_name, object_int_signature,         F_SN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
   do_name(     getLength_name,                                   "getLength")                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  do_intrinsic(_getCallerClass,           sun_reflect_Reflection, getCallerClass_name, getCallerClass_signature, F_SN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
   do_name(     getCallerClass_name,                             "getCallerClass")                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
   do_signature(getCallerClass_signature,                        "(I)Ljava/lang/Class;")                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
  do_intrinsic(_newArray,                 java_lang_reflect_Array, newArray_name, newArray_signature,            F_SN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
   do_name(     newArray_name,                                    "newArray")                                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
   do_signature(newArray_signature,                               "(Ljava/lang/Class;I)Ljava/lang/Object;")             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  do_intrinsic(_copyOf,                   java_util_Arrays,       copyOf_name, copyOf_signature,                 F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
   do_name(     copyOf_name,                                     "copyOf")                                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
   do_signature(copyOf_signature,             "([Ljava/lang/Object;ILjava/lang/Class;)[Ljava/lang/Object;")             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  do_intrinsic(_copyOfRange,              java_util_Arrays,       copyOfRange_name, copyOfRange_signature,       F_S)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
   do_name(     copyOfRange_name,                                "copyOfRange")                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
   do_signature(copyOfRange_signature,        "([Ljava/lang/Object;IILjava/lang/Class;)[Ljava/lang/Object;")            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
                                                                                                                        \
595
a2be4c89de81 6695049: (coll) Create an x86 intrinsic for Arrays.equals
rasbold
parents: 218
diff changeset
   627
  do_intrinsic(_equalsC,                  java_util_Arrays,       equals_name,    equalsC_signature,             F_S)   \
a2be4c89de81 6695049: (coll) Create an x86 intrinsic for Arrays.equals
rasbold
parents: 218
diff changeset
   628
   do_signature(equalsC_signature,                               "([C[C)Z")                                             \
a2be4c89de81 6695049: (coll) Create an x86 intrinsic for Arrays.equals
rasbold
parents: 218
diff changeset
   629
                                                                                                                        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  do_intrinsic(_invoke,                   java_lang_reflect_Method, invoke_name, object_array_object_object_signature, F_R) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  /*   (symbols invoke_name and invoke_signature defined above) */                                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  do_intrinsic(_compareTo,                java_lang_String,       compareTo_name, string_int_signature,          F_R)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
   do_name(     compareTo_name,                                  "compareTo")                                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  do_intrinsic(_indexOf,                  java_lang_String,       indexOf_name, string_int_signature,            F_R)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
   do_name(     indexOf_name,                                    "indexOf")                                             \
2348
4e71ed4c2709 6761600: Use sse 4.2 in intrinsics
cfang
parents: 2343
diff changeset
   637
  do_intrinsic(_equals,                   java_lang_String,       equals_name, object_boolean_signature,         F_R)   \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  do_class(java_nio_Buffer,               "java/nio/Buffer")                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  do_intrinsic(_checkIndex,               java_nio_Buffer,        checkIndex_name, int_int_signature,            F_R)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
   do_name(     checkIndex_name,                                 "checkIndex")                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  do_class(sun_misc_AtomicLongCSImpl,     "sun/misc/AtomicLongCSImpl")                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  do_intrinsic(_get_AtomicLong,           sun_misc_AtomicLongCSImpl, get_name, void_long_signature,              F_R)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  /*   (symbols get_name and void_long_signature defined above) */                                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  do_intrinsic(_attemptUpdate,            sun_misc_AtomicLongCSImpl, attemptUpdate_name, attemptUpdate_signature, F_R)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
   do_name(     attemptUpdate_name,                                 "attemptUpdate")                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
   do_signature(attemptUpdate_signature,                            "(JJ)Z")                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
                                                                                                                        \
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 191
diff changeset
   651
  do_intrinsic(_fillInStackTrace,         java_lang_Throwable, fillInStackTrace_name, void_throwable_signature,  F_RNY) \
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 191
diff changeset
   652
                                                                                                                        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  /* support for sun.misc.Unsafe */                                                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  do_class(sun_misc_Unsafe,               "sun/misc/Unsafe")                                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
  do_intrinsic(_allocateInstance,         sun_misc_Unsafe,        allocateInstance_name, allocateInstance_signature, F_RN) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
   do_name(     allocateInstance_name,                           "allocateInstance")                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
   do_signature(allocateInstance_signature,   "(Ljava/lang/Class;)Ljava/lang/Object;")                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  do_intrinsic(_copyMemory,               sun_misc_Unsafe,        copyMemory_name, copyMemory_signature,         F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
   do_name(     copyMemory_name,                                 "copyMemory")                                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
   do_signature(copyMemory_signature,         "(Ljava/lang/Object;JLjava/lang/Object;JJ)V")                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
  do_intrinsic(_park,                     sun_misc_Unsafe,        park_name, park_signature,                     F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
   do_name(     park_name,                                       "park")                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
   do_signature(park_signature,                                  "(ZJ)V")                                               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  do_intrinsic(_unpark,                   sun_misc_Unsafe,        unpark_name, unpark_signature,                 F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
   do_name(     unpark_name,                                     "unpark")                                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
   do_alias(    unpark_signature,                               /*(LObject;)V*/ object_void_signature)                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  /* unsafe memory references (there are a lot of them...) */                                                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  do_signature(getObject_signature,       "(Ljava/lang/Object;J)Ljava/lang/Object;")                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  do_signature(putObject_signature,       "(Ljava/lang/Object;JLjava/lang/Object;)V")                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  do_signature(getBoolean_signature,      "(Ljava/lang/Object;J)Z")                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  do_signature(putBoolean_signature,      "(Ljava/lang/Object;JZ)V")                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  do_signature(getByte_signature,         "(Ljava/lang/Object;J)B")                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  do_signature(putByte_signature,         "(Ljava/lang/Object;JB)V")                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
  do_signature(getShort_signature,        "(Ljava/lang/Object;J)S")                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  do_signature(putShort_signature,        "(Ljava/lang/Object;JS)V")                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  do_signature(getChar_signature,         "(Ljava/lang/Object;J)C")                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  do_signature(putChar_signature,         "(Ljava/lang/Object;JC)V")                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  do_signature(getInt_signature,          "(Ljava/lang/Object;J)I")                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  do_signature(putInt_signature,          "(Ljava/lang/Object;JI)V")                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  do_signature(getLong_signature,         "(Ljava/lang/Object;J)J")                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  do_signature(putLong_signature,         "(Ljava/lang/Object;JJ)V")                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  do_signature(getFloat_signature,        "(Ljava/lang/Object;J)F")                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  do_signature(putFloat_signature,        "(Ljava/lang/Object;JF)V")                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  do_signature(getDouble_signature,       "(Ljava/lang/Object;J)D")                                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
  do_signature(putDouble_signature,       "(Ljava/lang/Object;JD)V")                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  do_name(getObject_name,"getObject")           do_name(putObject_name,"putObject")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  do_name(getBoolean_name,"getBoolean")         do_name(putBoolean_name,"putBoolean")                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  do_name(getByte_name,"getByte")               do_name(putByte_name,"putByte")                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  do_name(getShort_name,"getShort")             do_name(putShort_name,"putShort")                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  do_name(getChar_name,"getChar")               do_name(putChar_name,"putChar")                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
  do_name(getInt_name,"getInt")                 do_name(putInt_name,"putInt")                                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  do_name(getLong_name,"getLong")               do_name(putLong_name,"putLong")                                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  do_name(getFloat_name,"getFloat")             do_name(putFloat_name,"putFloat")                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  do_name(getDouble_name,"getDouble")           do_name(putDouble_name,"putDouble")                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
  do_intrinsic(_getObject,                sun_misc_Unsafe,        getObject_name, getObject_signature,           F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  do_intrinsic(_getBoolean,               sun_misc_Unsafe,        getBoolean_name, getBoolean_signature,         F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  do_intrinsic(_getByte,                  sun_misc_Unsafe,        getByte_name, getByte_signature,               F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  do_intrinsic(_getShort,                 sun_misc_Unsafe,        getShort_name, getShort_signature,             F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  do_intrinsic(_getChar,                  sun_misc_Unsafe,        getChar_name, getChar_signature,               F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  do_intrinsic(_getInt,                   sun_misc_Unsafe,        getInt_name, getInt_signature,                 F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
  do_intrinsic(_getLong,                  sun_misc_Unsafe,        getLong_name, getLong_signature,               F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
  do_intrinsic(_getFloat,                 sun_misc_Unsafe,        getFloat_name, getFloat_signature,             F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
  do_intrinsic(_getDouble,                sun_misc_Unsafe,        getDouble_name, getDouble_signature,           F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
  do_intrinsic(_putObject,                sun_misc_Unsafe,        putObject_name, putObject_signature,           F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  do_intrinsic(_putBoolean,               sun_misc_Unsafe,        putBoolean_name, putBoolean_signature,         F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  do_intrinsic(_putByte,                  sun_misc_Unsafe,        putByte_name, putByte_signature,               F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
  do_intrinsic(_putShort,                 sun_misc_Unsafe,        putShort_name, putShort_signature,             F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  do_intrinsic(_putChar,                  sun_misc_Unsafe,        putChar_name, putChar_signature,               F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  do_intrinsic(_putInt,                   sun_misc_Unsafe,        putInt_name, putInt_signature,                 F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  do_intrinsic(_putLong,                  sun_misc_Unsafe,        putLong_name, putLong_signature,               F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
  do_intrinsic(_putFloat,                 sun_misc_Unsafe,        putFloat_name, putFloat_signature,             F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
  do_intrinsic(_putDouble,                sun_misc_Unsafe,        putDouble_name, putDouble_signature,           F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  do_name(getObjectVolatile_name,"getObjectVolatile")   do_name(putObjectVolatile_name,"putObjectVolatile")             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
  do_name(getBooleanVolatile_name,"getBooleanVolatile") do_name(putBooleanVolatile_name,"putBooleanVolatile")           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  do_name(getByteVolatile_name,"getByteVolatile")       do_name(putByteVolatile_name,"putByteVolatile")                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
  do_name(getShortVolatile_name,"getShortVolatile")     do_name(putShortVolatile_name,"putShortVolatile")               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
  do_name(getCharVolatile_name,"getCharVolatile")       do_name(putCharVolatile_name,"putCharVolatile")                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
  do_name(getIntVolatile_name,"getIntVolatile")         do_name(putIntVolatile_name,"putIntVolatile")                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
  do_name(getLongVolatile_name,"getLongVolatile")       do_name(putLongVolatile_name,"putLongVolatile")                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
  do_name(getFloatVolatile_name,"getFloatVolatile")     do_name(putFloatVolatile_name,"putFloatVolatile")               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  do_name(getDoubleVolatile_name,"getDoubleVolatile")   do_name(putDoubleVolatile_name,"putDoubleVolatile")             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
  do_intrinsic(_getObjectVolatile,        sun_misc_Unsafe,        getObjectVolatile_name, getObject_signature,   F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
  do_intrinsic(_getBooleanVolatile,       sun_misc_Unsafe,        getBooleanVolatile_name, getBoolean_signature, F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  do_intrinsic(_getByteVolatile,          sun_misc_Unsafe,        getByteVolatile_name, getByte_signature,       F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
  do_intrinsic(_getShortVolatile,         sun_misc_Unsafe,        getShortVolatile_name, getShort_signature,     F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  do_intrinsic(_getCharVolatile,          sun_misc_Unsafe,        getCharVolatile_name, getChar_signature,       F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
  do_intrinsic(_getIntVolatile,           sun_misc_Unsafe,        getIntVolatile_name, getInt_signature,         F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
  do_intrinsic(_getLongVolatile,          sun_misc_Unsafe,        getLongVolatile_name, getLong_signature,       F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  do_intrinsic(_getFloatVolatile,         sun_misc_Unsafe,        getFloatVolatile_name, getFloat_signature,     F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
  do_intrinsic(_getDoubleVolatile,        sun_misc_Unsafe,        getDoubleVolatile_name, getDouble_signature,   F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
  do_intrinsic(_putObjectVolatile,        sun_misc_Unsafe,        putObjectVolatile_name, putObject_signature,   F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
  do_intrinsic(_putBooleanVolatile,       sun_misc_Unsafe,        putBooleanVolatile_name, putBoolean_signature, F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
  do_intrinsic(_putByteVolatile,          sun_misc_Unsafe,        putByteVolatile_name, putByte_signature,       F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  do_intrinsic(_putShortVolatile,         sun_misc_Unsafe,        putShortVolatile_name, putShort_signature,     F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  do_intrinsic(_putCharVolatile,          sun_misc_Unsafe,        putCharVolatile_name, putChar_signature,       F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
  do_intrinsic(_putIntVolatile,           sun_misc_Unsafe,        putIntVolatile_name, putInt_signature,         F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
  do_intrinsic(_putLongVolatile,          sun_misc_Unsafe,        putLongVolatile_name, putLong_signature,       F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
  do_intrinsic(_putFloatVolatile,         sun_misc_Unsafe,        putFloatVolatile_name, putFloat_signature,     F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
  do_intrinsic(_putDoubleVolatile,        sun_misc_Unsafe,        putDoubleVolatile_name, putDouble_signature,   F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
  /* %%% these are redundant except perhaps for getAddress, but Unsafe has native methods for them */                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  do_signature(getByte_raw_signature,     "(J)B")                                                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  do_signature(putByte_raw_signature,     "(JB)V")                                                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
  do_signature(getShort_raw_signature,    "(J)S")                                                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
  do_signature(putShort_raw_signature,    "(JS)V")                                                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
  do_signature(getChar_raw_signature,     "(J)C")                                                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
  do_signature(putChar_raw_signature,     "(JC)V")                                                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  do_signature(putInt_raw_signature,      "(JI)V")                                                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
      do_alias(getLong_raw_signature,    /*(J)J*/ long_long_signature)                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
      do_alias(putLong_raw_signature,    /*(JJ)V*/ long_long_void_signature)                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  do_signature(getFloat_raw_signature,    "(J)F")                                                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  do_signature(putFloat_raw_signature,    "(JF)V")                                                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
      do_alias(getDouble_raw_signature,  /*(J)D*/ long_double_signature)                                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
  do_signature(putDouble_raw_signature,   "(JD)V")                                                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
      do_alias(getAddress_raw_signature, /*(J)J*/ long_long_signature)                                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
      do_alias(putAddress_raw_signature, /*(JJ)V*/ long_long_void_signature)                                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
   do_name(    getAddress_name,           "getAddress")                                                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
   do_name(    putAddress_name,           "putAddress")                                                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  do_intrinsic(_getByte_raw,              sun_misc_Unsafe,        getByte_name, getByte_raw_signature,           F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
  do_intrinsic(_getShort_raw,             sun_misc_Unsafe,        getShort_name, getShort_raw_signature,         F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
  do_intrinsic(_getChar_raw,              sun_misc_Unsafe,        getChar_name, getChar_raw_signature,           F_RN)  \
2255
54abdf3e1055 6378821: bitCount() should use POPC on SPARC processors and AMD+10h
twisti
parents: 1890
diff changeset
   770
  do_intrinsic(_getInt_raw,               sun_misc_Unsafe,        getInt_name, long_int_signature,               F_RN)  \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
  do_intrinsic(_getLong_raw,              sun_misc_Unsafe,        getLong_name, getLong_raw_signature,           F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
  do_intrinsic(_getFloat_raw,             sun_misc_Unsafe,        getFloat_name, getFloat_raw_signature,         F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  do_intrinsic(_getDouble_raw,            sun_misc_Unsafe,        getDouble_name, getDouble_raw_signature,       F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  do_intrinsic(_getAddress_raw,           sun_misc_Unsafe,        getAddress_name, getAddress_raw_signature,     F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
  do_intrinsic(_putByte_raw,              sun_misc_Unsafe,        putByte_name, putByte_raw_signature,           F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
  do_intrinsic(_putShort_raw,             sun_misc_Unsafe,        putShort_name, putShort_raw_signature,         F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
  do_intrinsic(_putChar_raw,              sun_misc_Unsafe,        putChar_name, putChar_raw_signature,           F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  do_intrinsic(_putInt_raw,               sun_misc_Unsafe,        putInt_name, putInt_raw_signature,             F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
  do_intrinsic(_putLong_raw,              sun_misc_Unsafe,        putLong_name, putLong_raw_signature,           F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
  do_intrinsic(_putFloat_raw,             sun_misc_Unsafe,        putFloat_name, putFloat_raw_signature,         F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
  do_intrinsic(_putDouble_raw,            sun_misc_Unsafe,        putDouble_name, putDouble_raw_signature,       F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  do_intrinsic(_putAddress_raw,           sun_misc_Unsafe,        putAddress_name, putAddress_raw_signature,     F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
  do_intrinsic(_compareAndSwapObject,     sun_misc_Unsafe,        compareAndSwapObject_name, compareAndSwapObject_signature, F_RN) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
   do_name(     compareAndSwapObject_name,                       "compareAndSwapObject")                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
   do_signature(compareAndSwapObject_signature,  "(Ljava/lang/Object;JLjava/lang/Object;Ljava/lang/Object;)Z")          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
  do_intrinsic(_compareAndSwapLong,       sun_misc_Unsafe,        compareAndSwapLong_name, compareAndSwapLong_signature, F_RN) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
   do_name(     compareAndSwapLong_name,                         "compareAndSwapLong")                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
   do_signature(compareAndSwapLong_signature,                    "(Ljava/lang/Object;JJJ)Z")                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
  do_intrinsic(_compareAndSwapInt,        sun_misc_Unsafe,        compareAndSwapInt_name, compareAndSwapInt_signature, F_RN) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
   do_name(     compareAndSwapInt_name,                          "compareAndSwapInt")                                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
   do_signature(compareAndSwapInt_signature,                     "(Ljava/lang/Object;JII)Z")                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
  do_intrinsic(_putOrderedObject,         sun_misc_Unsafe,        putOrderedObject_name, putOrderedObject_signature, F_RN) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
   do_name(     putOrderedObject_name,                           "putOrderedObject")                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
   do_alias(    putOrderedObject_signature,                     /*(LObject;JLObject;)V*/ putObject_signature)           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
  do_intrinsic(_putOrderedLong,           sun_misc_Unsafe,        putOrderedLong_name, putOrderedLong_signature, F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
   do_name(     putOrderedLong_name,                             "putOrderedLong")                                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
   do_alias(    putOrderedLong_signature,                       /*(Ljava/lang/Object;JJ)V*/ putLong_signature)          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
  do_intrinsic(_putOrderedInt,            sun_misc_Unsafe,        putOrderedInt_name, putOrderedInt_signature,   F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
   do_name(     putOrderedInt_name,                              "putOrderedInt")                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
   do_alias(    putOrderedInt_signature,                        /*(Ljava/lang/Object;JI)V*/ putInt_signature)           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
  /* prefetch_signature is shared by all prefetch variants */                                                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
  do_signature( prefetch_signature,        "(Ljava/lang/Object;J)V")                                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
                                                                                                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
  do_intrinsic(_prefetchRead,             sun_misc_Unsafe,        prefetchRead_name, prefetch_signature,         F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
   do_name(     prefetchRead_name,                               "prefetchRead")                                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
  do_intrinsic(_prefetchWrite,            sun_misc_Unsafe,        prefetchWrite_name, prefetch_signature,        F_RN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
   do_name(     prefetchWrite_name,                              "prefetchWrite")                                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
  do_intrinsic(_prefetchReadStatic,       sun_misc_Unsafe,        prefetchReadStatic_name, prefetch_signature,   F_SN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
   do_name(     prefetchReadStatic_name,                         "prefetchReadStatic")                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
  do_intrinsic(_prefetchWriteStatic,      sun_misc_Unsafe,        prefetchWriteStatic_name, prefetch_signature,  F_SN)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
   do_name(     prefetchWriteStatic_name,                        "prefetchWriteStatic")                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
    /*end*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
// Class vmSymbols
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
class vmSymbols: AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
 friend class vmSymbolHandles;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
 friend class vmIntrinsics;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
  // enum for figuring positions and size of array holding symbolOops
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
  enum SID {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
    NO_SID = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
    #define VM_SYMBOL_ENUM(name, string) VM_SYMBOL_ENUM_NAME(name),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
    VM_SYMBOLS_DO(VM_SYMBOL_ENUM, VM_ALIAS_IGNORE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
    #undef VM_SYMBOL_ENUM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
    SID_LIMIT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
    #define VM_ALIAS_ENUM(name, def) VM_SYMBOL_ENUM_NAME(name) = VM_SYMBOL_ENUM_NAME(def),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
    VM_SYMBOLS_DO(VM_SYMBOL_IGNORE, VM_ALIAS_ENUM)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
    #undef VM_ALIAS_ENUM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
    FIRST_SID = NO_SID + 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
    log2_SID_LIMIT = 10         // checked by an assert at start-up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
  // The symbol array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
  static symbolOop _symbols[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
  // Field signatures indexed by BasicType.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
  static symbolOop _type_signatures[T_VOID+1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
  // Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
  static void initialize(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
  // Accessing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
  #define VM_SYMBOL_DECLARE(name, ignore) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
    static symbolOop name() { return _symbols[VM_SYMBOL_ENUM_NAME(name)]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
  VM_SYMBOLS_DO(VM_SYMBOL_DECLARE, VM_SYMBOL_DECLARE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
  #undef VM_SYMBOL_DECLARE
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
  // GC support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
  static void oops_do(OopClosure* f, bool do_all = false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
  static symbolOop type_signature(BasicType t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
    assert((uint)t < T_VOID+1, "range check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
    assert(_type_signatures[t] != NULL, "domain check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
    return _type_signatures[t];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
  // inverse of type_signature; returns T_OBJECT if s is not recognized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
  static BasicType signature_type(symbolOop s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
  static symbolOop symbol_at(SID id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
    assert(id >= FIRST_SID && id < SID_LIMIT, "oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
    assert(_symbols[id] != NULL, "init");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
    return _symbols[id];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
  // Returns symbol's SID if one is assigned, else NO_SID.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
  static SID find_sid(symbolOop symbol);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
  // No need for this in the product:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
  static const char* name_for(SID sid);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
#endif //PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
// Class vmSymbolHandles
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
class vmSymbolHandles: AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
  friend class vmIntrinsics;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
  friend class ciObjectFactory;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
  // Accessing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
  #define VM_SYMBOL_HANDLE_DECLARE(name, ignore) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
    static symbolHandle name() { return symbol_handle_at(vmSymbols::VM_SYMBOL_ENUM_NAME(name)); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
  VM_SYMBOLS_DO(VM_SYMBOL_HANDLE_DECLARE, VM_SYMBOL_HANDLE_DECLARE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
  #undef VM_SYMBOL_HANDLE_DECLARE
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
  static symbolHandle symbol_handle_at(vmSymbols::SID id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
    return symbolHandle(&vmSymbols::_symbols[(int)id], false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
  static symbolHandle type_signature(BasicType t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
    assert(vmSymbols::type_signature(t) != NULL, "domain check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
    return symbolHandle(&vmSymbols::_type_signatures[t], false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
  // inverse of type_signature; returns T_OBJECT if s is not recognized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
  static BasicType signature_type(symbolHandle s) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
    return vmSymbols::signature_type(s());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
// VM Intrinsic ID's uniquely identify some very special methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
class vmIntrinsics: AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
  friend class vmSymbols;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  friend class ciObjectFactory;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
  // Accessing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
  enum ID {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
    _none = 0,                      // not an intrinsic (default answer)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
    #define VM_INTRINSIC_ENUM(id, klass, name, sig, flags)  id,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
    VM_INTRINSICS_DO(VM_INTRINSIC_ENUM,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
                     VM_SYMBOL_IGNORE, VM_SYMBOL_IGNORE, VM_SYMBOL_IGNORE, VM_ALIAS_IGNORE)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
    #undef VM_INTRINSIC_ENUM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
    ID_LIMIT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
    FIRST_ID = _none + 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
  enum Flags {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
    // AccessFlags syndromes relevant to intrinsics.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
    F_none = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
    F_R,                        // !static        !synchronized (R="regular")
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
    F_S,                        //  static        !synchronized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
    F_RN,                       // !static native !synchronized
218
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 191
diff changeset
   939
    F_SN,                       //  static native !synchronized
a0e996680b05 6667615: (Escape Analysis) extend MDO to cache arguments escape state
kvn
parents: 191
diff changeset
   940
    F_RNY                       // !static native  synchronized
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
  static ID ID_from(int raw_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
    assert(raw_id >= (int)_none && raw_id < (int)ID_LIMIT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
           "must be a valid intrinsic ID");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
    return (ID)raw_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
  static const char* name_at(ID id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
  // Given a method's class, name, signature, and access flags, report its ID.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
  static ID find_id(vmSymbols::SID holder,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
                    vmSymbols::SID name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
                    vmSymbols::SID sig,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
                    jshort flags);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
  static void verify_method(ID actual_id, methodOop m) PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
  // No need for these in the product:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
  static vmSymbols::SID     class_for(ID id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
  static vmSymbols::SID      name_for(ID id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
  static vmSymbols::SID signature_for(ID id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
  static Flags              flags_for(ID id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
  static const char* short_name_as_C_string(ID id, char* buf, int size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
};