src/hotspot/share/ci/ciField.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 49449 ef5d5d343e2a
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
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49449
diff changeset
     2
 * Copyright (c) 1999, 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: 49449
diff changeset
    25
#ifndef SHARE_CI_CIFIELD_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49449
diff changeset
    26
#define SHARE_CI_CIFIELD_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "ci/ciClassList.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "ci/ciConstant.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "ci/ciFlags.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "ci/ciInstance.hpp"
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 47216
diff changeset
    32
#include "ci/ciUtilities.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// ciField
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// This class represents the result of a field lookup in the VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// The lookup may not succeed, in which case the information in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// the ciField will be incomplete.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class ciField : public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  CI_PACKAGE_ACCESS
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  friend class ciEnv;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  friend class ciInstanceKlass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  ciFlags          _flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  ciInstanceKlass* _holder;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  ciSymbol*        _name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  ciSymbol*        _signature;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  ciType*          _type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  int              _offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  bool             _is_constant;
39421
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38030
diff changeset
    52
  ciMethod*        _known_to_link_with_put;
12982
7d7a3e02610e 7152811: Issues in client compiler
never
parents: 10516
diff changeset
    53
  ciInstanceKlass* _known_to_link_with_get;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  ciConstant       _constant_value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  ciType* compute_type();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  ciType* compute_type_impl();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  ciField(ciInstanceKlass* klass, int index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  ciField(fieldDescriptor* fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  // shared constructor code
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  void initialize_from(fieldDescriptor* fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
public:
38030
93f24e7b3c43 8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents: 31857
diff changeset
    66
  ciFlags flags() const { return _flags; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // Of which klass is this field a member?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // Usage note: the declared holder of a field is the class
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // referenced by name in the bytecodes.  The canonical holder
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // is the most general class which holds the field.  This
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // method returns the canonical holder.  The declared holder
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // can be accessed via a method in ciBytecodeStream.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // Ex.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  //     class A {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  //       public int f = 7;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  //     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  //     class B extends A {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  //       public void test() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  //         System.out.println(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  //       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  //     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  //   A java compiler is permitted to compile the access to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  //   field f as:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  //     getfield B.f
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  //   In that case the declared holder of f would be B and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  //   the canonical holder of f would be A.
38030
93f24e7b3c43 8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents: 31857
diff changeset
    93
  ciInstanceKlass* holder() const { return _holder; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // Name of this field?
38030
93f24e7b3c43 8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents: 31857
diff changeset
    96
  ciSymbol* name() const { return _name; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // Signature of this field?
38030
93f24e7b3c43 8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents: 31857
diff changeset
    99
  ciSymbol* signature() const { return _signature; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  // Of what type is this field?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  ciType* type() { return (_type == NULL) ? compute_type() : _type; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  // How is this field actually stored in memory?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  BasicType layout_type() { return type2field[(_type == NULL) ? T_OBJECT : _type->basic_type()]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // How big is this field in memory?
202
dc13bf0e5d5d 6633953: type2aelembytes{T_ADDRESS} should be 8 bytes in 64 bit VM
kvn
parents: 1
diff changeset
   108
  int size_in_bytes() { return type2aelembytes(layout_type()); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  // What is the offset of this field?
38030
93f24e7b3c43 8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents: 31857
diff changeset
   111
  int offset() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    assert(_offset >= 1, "illegal call to offset()");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    return _offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // Same question, explicit units.  (Fields are aligned to the byte level.)
38030
93f24e7b3c43 8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents: 31857
diff changeset
   117
  int offset_in_bytes() const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    return offset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // Is this field shared?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  bool is_shared() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    // non-static fields of shared holders are cached
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    return _holder->is_shared() && !is_static();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // Is this field a constant?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // Clarification: A field is considered constant if:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  //   1. The field is both static and final
38030
93f24e7b3c43 8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents: 31857
diff changeset
   131
  //   2. The field is not one of the special static/final
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  //      non-constant fields.  These are java.lang.System.in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  //      and java.lang.System.out.  Abomination.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  //
39421
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38030
diff changeset
   135
  // A field is also considered constant if
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38030
diff changeset
   136
  // - it is marked @Stable and is non-null (or non-zero, if a primitive) or
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38030
diff changeset
   137
  // - it is trusted or
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38030
diff changeset
   138
  // - it is the target field of a CallSite object.
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38030
diff changeset
   139
  //
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38030
diff changeset
   140
  // See ciField::initialize_from() for more details.
38030
93f24e7b3c43 8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents: 31857
diff changeset
   141
  //
93f24e7b3c43 8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents: 31857
diff changeset
   142
  // A user should also check the field value (constant_value().is_valid()), since
93f24e7b3c43 8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents: 31857
diff changeset
   143
  // constant fields of non-initialized classes don't have values yet.
93f24e7b3c43 8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents: 31857
diff changeset
   144
  bool is_constant() const { return _is_constant; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
38030
93f24e7b3c43 8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents: 31857
diff changeset
   146
  // Get the constant value of the static field.
93f24e7b3c43 8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents: 31857
diff changeset
   147
  ciConstant constant_value();
93f24e7b3c43 8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents: 31857
diff changeset
   148
93f24e7b3c43 8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents: 31857
diff changeset
   149
  bool is_static_constant() {
93f24e7b3c43 8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents: 31857
diff changeset
   150
    return is_static() && is_constant() && constant_value().is_valid();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 670
diff changeset
   153
  // Get the constant value of non-static final field in the given
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 670
diff changeset
   154
  // object.
38030
93f24e7b3c43 8152590: C2: @Stable support doesn't always work w/ incremental inlining
vlivanov
parents: 31857
diff changeset
   155
  ciConstant constant_value_of(ciObject* object);
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 670
diff changeset
   156
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // Check for link time errors.  Accessing a field from a
39421
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38030
diff changeset
   158
  // certain method via a certain bytecode may or may not be legal.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // This call checks to see if an exception may be raised by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // an access of this field.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // Usage note: if the same field is accessed multiple times
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // in the same compilation, will_link will need to be checked
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // at each point of access.
39421
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38030
diff changeset
   165
  bool will_link(ciMethod* accessing_method,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
                 Bytecodes::Code bc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  // Java access flags
39421
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38030
diff changeset
   169
  bool is_public               () const { return flags().is_public(); }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38030
diff changeset
   170
  bool is_private              () const { return flags().is_private(); }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38030
diff changeset
   171
  bool is_protected            () const { return flags().is_protected(); }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38030
diff changeset
   172
  bool is_static               () const { return flags().is_static(); }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38030
diff changeset
   173
  bool is_final                () const { return flags().is_final(); }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38030
diff changeset
   174
  bool is_stable               () const { return flags().is_stable(); }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38030
diff changeset
   175
  bool is_volatile             () const { return flags().is_volatile(); }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38030
diff changeset
   176
  bool is_transient            () const { return flags().is_transient(); }
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38030
diff changeset
   177
  // The field is modified outside of instance initializer methods
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38030
diff changeset
   178
  // (or class/initializer methods if the field is static).
a9652c919db8 8157181: Compilers accept modification of final fields outside initializer methods
zmajo
parents: 38030
diff changeset
   179
  bool has_initialized_final_update() const { return flags().has_initialized_final_update(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
10510
ab626d1bdf53 7085404: JSR 292: VolatileCallSites should have push notification too
twisti
parents: 10508
diff changeset
   181
  bool is_call_site_target() {
10516
2797e487c09f 7086560: 7085404 changes broke VM with -XX:-EnableInvokeDynamic
kvn
parents: 10510
diff changeset
   182
    ciInstanceKlass* callsite_klass = CURRENT_ENV->CallSite_klass();
2797e487c09f 7086560: 7085404 changes broke VM with -XX:-EnableInvokeDynamic
kvn
parents: 10510
diff changeset
   183
    if (callsite_klass == NULL)
2797e487c09f 7086560: 7085404 changes broke VM with -XX:-EnableInvokeDynamic
kvn
parents: 10510
diff changeset
   184
      return false;
2797e487c09f 7086560: 7085404 changes broke VM with -XX:-EnableInvokeDynamic
kvn
parents: 10510
diff changeset
   185
    return (holder()->is_subclass_of(callsite_klass) && (name() == ciSymbol::target_name()));
10510
ab626d1bdf53 7085404: JSR 292: VolatileCallSites should have push notification too
twisti
parents: 10508
diff changeset
   186
  }
10265
4c869854aebd 7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents: 7397
diff changeset
   187
31857
adbf29d9ca43 8078629: VM should constant fold Unsafe.get*() loads from final fields
vlivanov
parents: 26706
diff changeset
   188
  bool is_autobox_cache() {
adbf29d9ca43 8078629: VM should constant fold Unsafe.get*() loads from final fields
vlivanov
parents: 26706
diff changeset
   189
    ciSymbol* klass_name = holder()->name();
adbf29d9ca43 8078629: VM should constant fold Unsafe.get*() loads from final fields
vlivanov
parents: 26706
diff changeset
   190
    return (name() == ciSymbol::cache_field_name() &&
adbf29d9ca43 8078629: VM should constant fold Unsafe.get*() loads from final fields
vlivanov
parents: 26706
diff changeset
   191
            holder()->uses_default_loader() &&
adbf29d9ca43 8078629: VM should constant fold Unsafe.get*() loads from final fields
vlivanov
parents: 26706
diff changeset
   192
            (klass_name == ciSymbol::java_lang_Character_CharacterCache() ||
adbf29d9ca43 8078629: VM should constant fold Unsafe.get*() loads from final fields
vlivanov
parents: 26706
diff changeset
   193
             klass_name == ciSymbol::java_lang_Byte_ByteCache() ||
adbf29d9ca43 8078629: VM should constant fold Unsafe.get*() loads from final fields
vlivanov
parents: 26706
diff changeset
   194
             klass_name == ciSymbol::java_lang_Short_ShortCache() ||
adbf29d9ca43 8078629: VM should constant fold Unsafe.get*() loads from final fields
vlivanov
parents: 26706
diff changeset
   195
             klass_name == ciSymbol::java_lang_Integer_IntegerCache() ||
adbf29d9ca43 8078629: VM should constant fold Unsafe.get*() loads from final fields
vlivanov
parents: 26706
diff changeset
   196
             klass_name == ciSymbol::java_lang_Long_LongCache()));
adbf29d9ca43 8078629: VM should constant fold Unsafe.get*() loads from final fields
vlivanov
parents: 26706
diff changeset
   197
  }
adbf29d9ca43 8078629: VM should constant fold Unsafe.get*() loads from final fields
vlivanov
parents: 26706
diff changeset
   198
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  // Debugging output
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  void print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  void print_name_on(outputStream* st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   203
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49449
diff changeset
   204
#endif // SHARE_CI_CIFIELD_HPP