src/hotspot/share/runtime/handles.inline.hpp
author coleenp
Wed, 13 Nov 2019 08:23:23 -0500
changeset 59056 15936b142f86
parent 53682 e30211561a17
permissions -rw-r--r--
8233913: Remove implicit conversion from Method* to methodHandle Summary: Fix call sites to use existing THREAD local or pass down THREAD local for shallower callsites. Make linkResolver methods return Method* for caller to handleize if needed. Reviewed-by: iklam, thartmann, hseigel
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) 1998, 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: 49449
diff changeset
    25
#ifndef SHARE_RUNTIME_HANDLES_INLINE_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49449
diff changeset
    26
#define SHARE_RUNTIME_HANDLES_INLINE_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 "runtime/handles.hpp"
53582
881c5fbeb849 8218041: Assorted wrong/missing includes
rehn
parents: 53244
diff changeset
    29
#include "runtime/thread.hpp"
881c5fbeb849 8218041: Assorted wrong/missing includes
rehn
parents: 53244
diff changeset
    30
#include "oops/metadata.hpp"
881c5fbeb849 8218041: Assorted wrong/missing includes
rehn
parents: 53244
diff changeset
    31
#include "oops/oop.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// these inline functions are in a separate file to break an include cycle
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// between Thread and Handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
inline Handle::Handle(Thread* thread, oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  assert(thread == Thread::current(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  if (obj == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
    _handle = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
    _handle = thread->handle_area()->allocate_handle(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
49393
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 47216
diff changeset
    45
// Inline constructors for Specific Handles for different oop types
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 47216
diff changeset
    46
#define DEF_HANDLE_CONSTR(type, is_a)                   \
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 47216
diff changeset
    47
inline type##Handle::type##Handle (Thread* thread, type##Oop obj) : Handle(thread, (oop)obj) { \
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 47216
diff changeset
    48
  assert(is_null() || ((oop)obj)->is_a(), "illegal type");                \
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 47216
diff changeset
    49
}
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 47216
diff changeset
    50
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 47216
diff changeset
    51
DEF_HANDLE_CONSTR(instance , is_instance_noinline )
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 47216
diff changeset
    52
DEF_HANDLE_CONSTR(array    , is_array_noinline    )
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 47216
diff changeset
    53
DEF_HANDLE_CONSTR(objArray , is_objArray_noinline )
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 47216
diff changeset
    54
DEF_HANDLE_CONSTR(typeArray, is_typeArray_noinline)
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 47216
diff changeset
    55
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46271
diff changeset
    56
// Constructor for metadata handles
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    57
#define DEF_METADATA_HANDLE_FN(name, type) \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    58
inline name##Handle::name##Handle(Thread* thread, type* obj) : _value(obj), _thread(thread) { \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    59
  if (obj != NULL) {                                                   \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    60
    assert(((Metadata*)obj)->is_valid(), "obj is valid");              \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    61
    assert(_thread == Thread::current(), "thread must be current");    \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    62
    assert (_thread->is_in_stack((address)this), "not on stack?");     \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    63
    _thread->metadata_handles()->push((Metadata*)obj);                 \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    64
  }                                                                    \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    65
}                                                                      \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    66
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    67
DEF_METADATA_HANDLE_FN(method, Method)
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    68
DEF_METADATA_HANDLE_FN(constantPool, ConstantPool)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
inline HandleMark::HandleMark() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  initialize(Thread::current());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
inline void HandleMark::push() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  // This is intentionally a NOP. pop_and_restore will reset
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // values to the HandleMark further down the stack, typically
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // in JavaCalls::call_helper.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  debug_only(_area->_handle_mark_nesting++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
inline void HandleMark::pop_and_restore() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // Delete later chunks
53682
e30211561a17 8218565: HandleMark cleanup
redestad
parents: 53582
diff changeset
    83
  if(_chunk->next() != NULL) {
e30211561a17 8218565: HandleMark cleanup
redestad
parents: 53582
diff changeset
    84
    assert(_area->size_in_bytes() > size_in_bytes(), "Sanity check");
e30211561a17 8218565: HandleMark cleanup
redestad
parents: 53582
diff changeset
    85
    chop_later_chunks();
14120
7d298141c258 7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents: 13728
diff changeset
    86
  } else {
53682
e30211561a17 8218565: HandleMark cleanup
redestad
parents: 53582
diff changeset
    87
    assert(_area->size_in_bytes() == size_in_bytes(), "Sanity check");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // Roll back arena to saved top markers
53682
e30211561a17 8218565: HandleMark cleanup
redestad
parents: 53582
diff changeset
    90
  _area->_chunk = _chunk;
e30211561a17 8218565: HandleMark cleanup
redestad
parents: 53582
diff changeset
    91
  _area->_hwm = _hwm;
e30211561a17 8218565: HandleMark cleanup
redestad
parents: 53582
diff changeset
    92
  _area->_max = _max;
e30211561a17 8218565: HandleMark cleanup
redestad
parents: 53582
diff changeset
    93
  debug_only(_area->_handle_mark_nesting--);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
}
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    95
49449
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49393
diff changeset
    96
inline HandleMarkCleaner::HandleMarkCleaner(Thread* thread) {
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49393
diff changeset
    97
  _thread = thread;
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49393
diff changeset
    98
  _thread->last_handle_mark()->push();
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49393
diff changeset
    99
}
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49393
diff changeset
   100
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49393
diff changeset
   101
inline HandleMarkCleaner::~HandleMarkCleaner() {
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49393
diff changeset
   102
  _thread->last_handle_mark()->pop_and_restore();
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49393
diff changeset
   103
}
ef5d5d343e2a 8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents: 49393
diff changeset
   104
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49449
diff changeset
   105
#endif // SHARE_RUNTIME_HANDLES_INLINE_HPP