src/hotspot/share/utilities/constantTag.cpp
author psandoz
Fri, 08 Sep 2017 10:46:46 -0700
changeset 48826 c4d9d1b08e2e
parent 47216 71c04702a3d5
permissions -rw-r--r--
8186209: Tool support for ConstantDynamic 8186046: Minimal ConstantDynamic support 8190972: Ensure that AOT/Graal filters out class files containing CONSTANT_Dynamic ahead of full AOT support Reviewed-by: acorn, coleenp, kvn Contributed-by: lois.foltan@oracle.com, john.r.rose@oracle.com, paul.sandoz@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47216
diff changeset
     2
 * Copyright (c) 1997, 2017, Oracle and/or its affiliates. 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
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6062
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6062
diff changeset
    26
#include "utilities/constantTag.hpp"
37466
287c4ebd11b0 8153967: Remove top.hpp
stefank
parents: 24424
diff changeset
    27
#include "utilities/ostream.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
void constantTag::print_on(outputStream* st) const {
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24334
diff changeset
    32
  st->print("%s", internal_name());
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    33
}
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    34
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    35
#endif // PRODUCT
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    36
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    37
BasicType constantTag::basic_type() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  switch (_tag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
    case JVM_CONSTANT_Integer :
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    40
      return T_INT;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
    case JVM_CONSTANT_Float :
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    42
      return T_FLOAT;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
    case JVM_CONSTANT_Long :
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    44
      return T_LONG;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    case JVM_CONSTANT_Double :
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    46
      return T_DOUBLE;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    47
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    48
    case JVM_CONSTANT_Class :
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    49
    case JVM_CONSTANT_String :
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    case JVM_CONSTANT_UnresolvedClass :
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    51
    case JVM_CONSTANT_UnresolvedClassInError :
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    case JVM_CONSTANT_ClassIndex :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    case JVM_CONSTANT_StringIndex :
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    54
    case JVM_CONSTANT_MethodHandle :
20677
ff4fc393de4c 8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents: 15799
diff changeset
    55
    case JVM_CONSTANT_MethodHandleInError :
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    56
    case JVM_CONSTANT_MethodType :
20677
ff4fc393de4c 8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents: 15799
diff changeset
    57
    case JVM_CONSTANT_MethodTypeInError :
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    58
      return T_OBJECT;
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47216
diff changeset
    59
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47216
diff changeset
    60
    case JVM_CONSTANT_Dynamic :
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47216
diff changeset
    61
    case JVM_CONSTANT_DynamicInError :
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47216
diff changeset
    62
      assert(false, "Dynamic constant has no fixed basic type");
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47216
diff changeset
    63
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
      ShouldNotReachHere();
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    66
      return T_ILLEGAL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    70
20677
ff4fc393de4c 8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents: 15799
diff changeset
    71
jbyte constantTag::non_error_value() const {
ff4fc393de4c 8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents: 15799
diff changeset
    72
  switch (_tag) {
ff4fc393de4c 8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents: 15799
diff changeset
    73
  case JVM_CONSTANT_UnresolvedClassInError:
ff4fc393de4c 8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents: 15799
diff changeset
    74
    return JVM_CONSTANT_UnresolvedClass;
ff4fc393de4c 8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents: 15799
diff changeset
    75
  case JVM_CONSTANT_MethodHandleInError:
ff4fc393de4c 8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents: 15799
diff changeset
    76
    return JVM_CONSTANT_MethodHandle;
ff4fc393de4c 8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents: 15799
diff changeset
    77
  case JVM_CONSTANT_MethodTypeInError:
ff4fc393de4c 8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents: 15799
diff changeset
    78
    return JVM_CONSTANT_MethodType;
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47216
diff changeset
    79
  case JVM_CONSTANT_DynamicInError:
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47216
diff changeset
    80
    return JVM_CONSTANT_Dynamic;
20677
ff4fc393de4c 8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents: 15799
diff changeset
    81
  default:
ff4fc393de4c 8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents: 15799
diff changeset
    82
    return _tag;
ff4fc393de4c 8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents: 15799
diff changeset
    83
  }
ff4fc393de4c 8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents: 15799
diff changeset
    84
}
ff4fc393de4c 8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents: 15799
diff changeset
    85
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
    86
24334
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 20677
diff changeset
    87
jbyte constantTag::error_value() const {
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 20677
diff changeset
    88
  switch (_tag) {
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 20677
diff changeset
    89
  case JVM_CONSTANT_UnresolvedClass:
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 20677
diff changeset
    90
    return JVM_CONSTANT_UnresolvedClassInError;
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 20677
diff changeset
    91
  case JVM_CONSTANT_MethodHandle:
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 20677
diff changeset
    92
    return JVM_CONSTANT_MethodHandleInError;
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 20677
diff changeset
    93
  case JVM_CONSTANT_MethodType:
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 20677
diff changeset
    94
    return JVM_CONSTANT_MethodTypeInError;
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47216
diff changeset
    95
  case JVM_CONSTANT_Dynamic:
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47216
diff changeset
    96
    return JVM_CONSTANT_DynamicInError;
24334
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 20677
diff changeset
    97
  default:
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 20677
diff changeset
    98
    ShouldNotReachHere();
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 20677
diff changeset
    99
    return JVM_CONSTANT_Invalid;
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 20677
diff changeset
   100
  }
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 20677
diff changeset
   101
}
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 20677
diff changeset
   102
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   103
const char* constantTag::internal_name() const {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   104
  switch (_tag) {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   105
    case JVM_CONSTANT_Invalid :
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   106
      return "Invalid index";
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   107
    case JVM_CONSTANT_Class :
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   108
      return "Class";
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   109
    case JVM_CONSTANT_Fieldref :
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   110
      return "Field";
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   111
    case JVM_CONSTANT_Methodref :
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   112
      return "Method";
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   113
    case JVM_CONSTANT_InterfaceMethodref :
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   114
      return "InterfaceMethod";
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   115
    case JVM_CONSTANT_String :
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   116
      return "String";
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   117
    case JVM_CONSTANT_Integer :
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   118
      return "Integer";
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   119
    case JVM_CONSTANT_Float :
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   120
      return "Float";
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   121
    case JVM_CONSTANT_Long :
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   122
      return "Long";
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   123
    case JVM_CONSTANT_Double :
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   124
      return "Double";
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   125
    case JVM_CONSTANT_NameAndType :
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   126
      return "NameAndType";
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   127
    case JVM_CONSTANT_MethodHandle :
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   128
      return "MethodHandle";
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9116
diff changeset
   129
    case JVM_CONSTANT_MethodHandleInError :
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9116
diff changeset
   130
      return "MethodHandle Error";
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   131
    case JVM_CONSTANT_MethodType :
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   132
      return "MethodType";
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9116
diff changeset
   133
    case JVM_CONSTANT_MethodTypeInError :
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9116
diff changeset
   134
      return "MethodType Error";
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47216
diff changeset
   135
    case JVM_CONSTANT_Dynamic :
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47216
diff changeset
   136
      return "Dynamic";
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47216
diff changeset
   137
    case JVM_CONSTANT_DynamicInError :
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47216
diff changeset
   138
      return "Dynamic Error";
6062
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
   139
    case JVM_CONSTANT_InvokeDynamic :
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
   140
      return "InvokeDynamic";
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   141
    case JVM_CONSTANT_Utf8 :
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   142
      return "Utf8";
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   143
    case JVM_CONSTANT_UnresolvedClass :
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   144
      return "Unresolved Class";
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   145
    case JVM_CONSTANT_UnresolvedClassInError :
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   146
      return "Unresolved Class Error";
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   147
    case JVM_CONSTANT_ClassIndex :
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   148
      return "Unresolved Class Index";
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   149
    case JVM_CONSTANT_StringIndex :
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   150
      return "Unresolved String Index";
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   151
    default:
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   152
      ShouldNotReachHere();
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   153
      return "Illegal";
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   154
  }
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   155
}