src/hotspot/share/runtime/jfieldIDWorkaround.hpp
author iklam
Fri, 29 Nov 2019 14:11:50 -0800
changeset 59328 f280911d3427
parent 53244 9807daeb47c4
permissions -rw-r--r--
8230385: [cds] No message is logged when shared image cannot be used due to mismatched configuration Reviewed-by: stuefe, dholmes, ccheung
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: 47216
diff changeset
     2
 * Copyright (c) 2003, 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: 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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 47216
diff changeset
    25
#ifndef SHARE_RUNTIME_JFIELDIDWORKAROUND_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 47216
diff changeset
    26
#define SHARE_RUNTIME_JFIELDIDWORKAROUND_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
class jfieldIDWorkaround: AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
  // This workaround is because JVMTI doesn't have distinct entry points
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  // for methods that use static jfieldIDs and instance jfieldIDs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  // The workaround is to steal a low-order bit:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  //   a 1 means the jfieldID is an instance jfieldID,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  //             and the rest of the word is the offset of the field.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  //   a 0 means the jfieldID is a static jfieldID,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  //             and the rest of the word is the JNIid*.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  // Another low-order bit is used to mark if an instance field
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  // is accompanied by an indication of which class it applies to.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  // Bit-format of a jfieldID (most significant first):
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  //  address:30        instance=0:1 checked=0:1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  //  offset:30         instance=1:1 checked=0:1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  //  klass:23 offset:7 instance=1:1 checked=1:1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  // If the offset does not fit in 7 bits, or if the fieldID is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  // not checked, then the checked bit is zero and the rest of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  // the word (30 bits) contains only the offset.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    checked_bits           = 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    instance_bits          = 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    address_bits           = BitsPerWord - checked_bits - instance_bits,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    large_offset_bits      = address_bits,  // unioned with address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    small_offset_bits      = 7,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    klass_bits             = address_bits - small_offset_bits,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    checked_shift          = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    instance_shift         = checked_shift  + checked_bits,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    address_shift          = instance_shift + instance_bits,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    offset_shift           = address_shift,  // unioned with address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    klass_shift            = offset_shift + small_offset_bits,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    checked_mask_in_place  = right_n_bits(checked_bits)  << checked_shift,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    instance_mask_in_place = right_n_bits(instance_bits) << instance_shift,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
#ifndef _WIN64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    large_offset_mask      = right_n_bits(large_offset_bits),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    small_offset_mask      = right_n_bits(small_offset_bits),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    klass_mask             = right_n_bits(klass_bits)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
#ifdef _WIN64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    // These values are too big for Win64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    const static uintptr_t large_offset_mask = right_n_bits(large_offset_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    const static uintptr_t small_offset_mask = right_n_bits(small_offset_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    const static uintptr_t klass_mask        = right_n_bits(klass_bits);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // helper routines:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  static bool is_checked_jfieldID(jfieldID id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    uintptr_t as_uint = (uintptr_t) id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    return ((as_uint & checked_mask_in_place) != 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  static intptr_t raw_instance_offset(jfieldID id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    uintptr_t result = (uintptr_t) id >> address_shift;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    if (VerifyJNIFields && is_checked_jfieldID(id)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
      result &= small_offset_mask;  // cut off the hash bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    return (intptr_t)result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    94
  static intptr_t encode_klass_hash(Klass* k, intptr_t offset);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    95
  static bool             klass_hash_ok(Klass* k, jfieldID id);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    96
  static void  verify_instance_jfieldID(Klass* k, jfieldID id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
 public:
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    99
  static bool is_valid_jfieldID(Klass* k, jfieldID id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   101
  static bool is_instance_jfieldID(Klass* k, jfieldID id) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    uintptr_t as_uint = (uintptr_t) id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    return ((as_uint & instance_mask_in_place) != 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  static bool is_static_jfieldID(jfieldID id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    uintptr_t as_uint = (uintptr_t) id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    return ((as_uint & instance_mask_in_place) == 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   110
  static jfieldID to_instance_jfieldID(Klass* k, int offset) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    intptr_t as_uint = ((offset & large_offset_mask) << offset_shift) | instance_mask_in_place;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    if (VerifyJNIFields) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
      as_uint |= encode_klass_hash(k, offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    jfieldID result = (jfieldID) as_uint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
#ifndef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    // always verify in debug mode; switchable in anything else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    if (VerifyJNIFields)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
      verify_instance_jfieldID(k, result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    assert(raw_instance_offset(result) == (offset & large_offset_mask), "extract right offset");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   127
  static intptr_t from_instance_jfieldID(Klass* k, jfieldID id) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
#ifndef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    // always verify in debug mode; switchable in anything else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    if (VerifyJNIFields)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
#endif // ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
      verify_instance_jfieldID(k, id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    return raw_instance_offset(id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  static jfieldID to_static_jfieldID(JNIid* id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    assert(id->is_static_field_id(), "from_JNIid, but not static field id");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    jfieldID result = (jfieldID) id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    assert(from_static_jfieldID(result) == id, "must produce the same static id");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  static JNIid* from_static_jfieldID(jfieldID id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    assert(jfieldIDWorkaround::is_static_jfieldID(id),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
           "to_JNIid, but not static jfieldID");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
    JNIid* result = (JNIid*) id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    assert(result->is_static_field_id(), "to_JNIid, but not static field id");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 13728
diff changeset
   153
  static jfieldID to_jfieldID(InstanceKlass* k, int offset, bool is_static) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    if (is_static) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
      JNIid *id = k->jni_id_for(offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
      debug_only(id->set_is_static_field_id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
      return jfieldIDWorkaround::to_static_jfieldID(id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
    } else {
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 13728
diff changeset
   159
      return jfieldIDWorkaround::to_instance_jfieldID(k, offset);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   163
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 47216
diff changeset
   164
#endif // SHARE_RUNTIME_JFIELDIDWORKAROUND_HPP