src/hotspot/share/utilities/constantTag.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 53149 259c36ef27df
child 53745 a535ba736cab
permissions -rw-r--r--
8216167: Update include guards to reflect correct directories Summary: Use script and some manual fixup to fix directores names in include guards. Reviewed-by: lfoltan, eosterlund, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53149
259c36ef27df 8215731: Move forward class definitions out of globalDefinitions.hpp
coleenp
parents: 49621
diff changeset
     2
 * Copyright (c) 1997, 2019, 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: 4567
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4567
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: 4567
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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 53149
diff changeset
    25
#ifndef SHARE_UTILITIES_CONSTANTTAG_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 53149
diff changeset
    26
#define SHARE_UTILITIES_CONSTANTTAG_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    27
47765
b7c7428eaab9 8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents: 47216
diff changeset
    28
#include "jvm.h"
49621
5ef28d560b6f 8200276: Cleanup allocation.hpp includes
coleenp
parents: 49364
diff changeset
    29
#include "utilities/globalDefinitions.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
    30
53149
259c36ef27df 8215731: Move forward class definitions out of globalDefinitions.hpp
coleenp
parents: 49621
diff changeset
    31
259c36ef27df 8215731: Move forward class definitions out of globalDefinitions.hpp
coleenp
parents: 49621
diff changeset
    32
class outputStream;
259c36ef27df 8215731: Move forward class definitions out of globalDefinitions.hpp
coleenp
parents: 49621
diff changeset
    33
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// constant tags in Java .class files
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  // See jvm.h for shared JVM_CONSTANT_XXX tags
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  // NOTE: replicated in SA in vm/agent/sun/jvm/hotspot/utilities/ConstantTag.java
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  // Hotspot specific tags
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  JVM_CONSTANT_Invalid                  = 0,    // For bad value initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  JVM_CONSTANT_InternalMin              = 100,  // First implementation tag (aside from bad value of course)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  JVM_CONSTANT_UnresolvedClass          = 100,  // Temporary tag until actual use
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  JVM_CONSTANT_ClassIndex               = 101,  // Temporary tag while constructing constant pool
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9116
diff changeset
    44
  JVM_CONSTANT_StringIndex              = 102,  // Temporary tag while constructing constant pool
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9116
diff changeset
    45
  JVM_CONSTANT_UnresolvedClassInError   = 103,  // Error tag due to resolution error
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9116
diff changeset
    46
  JVM_CONSTANT_MethodHandleInError      = 104,  // Error tag due to resolution error
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9116
diff changeset
    47
  JVM_CONSTANT_MethodTypeInError        = 105,  // Error tag due to resolution error
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
    48
  JVM_CONSTANT_DynamicInError           = 106,  // Error tag due to resolution error
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
    49
  JVM_CONSTANT_InternalMax              = 106   // Last implementation tag
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 48826
diff changeset
    53
class constantTag {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  jbyte _tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  bool is_klass() const             { return _tag == JVM_CONSTANT_Class; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  bool is_field () const            { return _tag == JVM_CONSTANT_Fieldref; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  bool is_method() const            { return _tag == JVM_CONSTANT_Methodref; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  bool is_interface_method() const  { return _tag == JVM_CONSTANT_InterfaceMethodref; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  bool is_string() const            { return _tag == JVM_CONSTANT_String; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  bool is_int() const               { return _tag == JVM_CONSTANT_Integer; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  bool is_float() const             { return _tag == JVM_CONSTANT_Float; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  bool is_long() const              { return _tag == JVM_CONSTANT_Long; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  bool is_double() const            { return _tag == JVM_CONSTANT_Double; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  bool is_name_and_type() const     { return _tag == JVM_CONSTANT_NameAndType; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  bool is_utf8() const              { return _tag == JVM_CONSTANT_Utf8; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  bool is_invalid() const           { return _tag == JVM_CONSTANT_Invalid; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  bool is_unresolved_klass() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    return _tag == JVM_CONSTANT_UnresolvedClass || _tag == JVM_CONSTANT_UnresolvedClassInError;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  bool is_unresolved_klass_in_error() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    return _tag == JVM_CONSTANT_UnresolvedClassInError;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9116
diff changeset
    79
  bool is_method_handle_in_error() const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9116
diff changeset
    80
    return _tag == JVM_CONSTANT_MethodHandleInError;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9116
diff changeset
    81
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9116
diff changeset
    82
  bool is_method_type_in_error() const {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9116
diff changeset
    83
    return _tag == JVM_CONSTANT_MethodTypeInError;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9116
diff changeset
    84
  }
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 9116
diff changeset
    85
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
    86
  bool is_dynamic_constant_in_error() const {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
    87
    return _tag == JVM_CONSTANT_DynamicInError;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
    88
  }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
    89
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  bool is_klass_index() const       { return _tag == JVM_CONSTANT_ClassIndex; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  bool is_string_index() const      { return _tag == JVM_CONSTANT_StringIndex; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  bool is_klass_reference() const   { return is_klass_index() || is_unresolved_klass(); }
1550
be2fc37a817f 6653858: dynamic languages need to be able to load anonymous classes
jrose
parents: 1
diff changeset
    94
  bool is_klass_or_reference() const{ return is_klass() || is_klass_reference(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  bool is_field_or_method() const   { return is_field() || is_method() || is_interface_method(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  bool is_symbol() const            { return is_utf8(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
    98
  bool is_method_type() const       { return _tag == JVM_CONSTANT_MethodType; }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
    99
  bool is_method_handle() const     { return _tag == JVM_CONSTANT_MethodHandle; }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
   100
  bool is_dynamic_constant() const  { return _tag == JVM_CONSTANT_Dynamic; }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
   101
  bool is_invoke_dynamic() const    { return _tag == JVM_CONSTANT_InvokeDynamic; }
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   102
7114
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 6062
diff changeset
   103
  bool is_loadable_constant() const {
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 6062
diff changeset
   104
    return ((_tag >= JVM_CONSTANT_Integer && _tag <= JVM_CONSTANT_String) ||
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
   105
            is_method_type() || is_method_handle() || is_dynamic_constant() ||
15799
6aa92f9debd2 8000797: NPG: is_pseudo_string_at() doesn't work
coleenp
parents: 13728
diff changeset
   106
            is_unresolved_klass());
7114
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 6062
diff changeset
   107
  }
65d21c4c6337 6984311: JSR 292 needs optional bootstrap method parameters
jrose
parents: 6062
diff changeset
   108
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   109
  constantTag() {
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   110
    _tag = JVM_CONSTANT_Invalid;
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   111
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  constantTag(jbyte tag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    assert((tag >= 0 && tag <= JVM_CONSTANT_NameAndType) ||
6062
bab93afe9df7 6964498: JSR 292 invokedynamic sites need local bootstrap methods
jrose
parents: 5882
diff changeset
   114
           (tag >= JVM_CONSTANT_MethodHandle && tag <= JVM_CONSTANT_InvokeDynamic) ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
           (tag >= JVM_CONSTANT_InternalMin && tag <= JVM_CONSTANT_InternalMax), "Invalid constant tag");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    _tag = tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
48826
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
   119
  static constantTag ofBasicType(BasicType bt) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
   120
    if (is_subword_type(bt))  bt = T_INT;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
   121
    switch (bt) {
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
   122
      case T_OBJECT: return constantTag(JVM_CONSTANT_String);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
   123
      case T_INT:    return constantTag(JVM_CONSTANT_Integer);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
   124
      case T_LONG:   return constantTag(JVM_CONSTANT_Long);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
   125
      case T_FLOAT:  return constantTag(JVM_CONSTANT_Float);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
   126
      case T_DOUBLE: return constantTag(JVM_CONSTANT_Double);
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
   127
      default:       break;
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
   128
    }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
   129
    assert(false, "bad basic type for tag");
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
   130
    return constantTag();
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
   131
  }
c4d9d1b08e2e 8186209: Tool support for ConstantDynamic
psandoz
parents: 47765
diff changeset
   132
20677
ff4fc393de4c 8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents: 15799
diff changeset
   133
  jbyte value() const                { return _tag; }
24334
36096f7271f4 8023697: failed class resolution reports different class name in detail message for the first and subsequent times
coleenp
parents: 20677
diff changeset
   134
  jbyte error_value() const;
20677
ff4fc393de4c 8022592: assert at constantTag.cpp:57: ShouldNotReachHere()
coleenp
parents: 15799
diff changeset
   135
  jbyte non_error_value() const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
5882
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   137
  BasicType basic_type() const;        // if used with ldc, what kind of value gets pushed?
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   138
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   139
  const char* internal_name() const;  // for error reporting
6b2aecc4f7d8 6939203: JSR 292 needs method handle constants
jrose
parents: 5547
diff changeset
   140
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  void print_on(outputStream* st) const PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7114
diff changeset
   143
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 53149
diff changeset
   144
#endif // SHARE_UTILITIES_CONSTANTTAG_HPP