src/hotspot/share/runtime/handles.inline.hpp
author simonis
Wed, 14 Mar 2018 12:12:00 +0100
changeset 49393 93fe2fc5c093
parent 47216 71c04702a3d5
child 49449 ef5d5d343e2a
permissions -rw-r--r--
8199472: Fix non-PCH build after JDK-8199319 Reviewed-by: stefank, coleenp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
49393
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 47216
diff changeset
     2
 * Copyright (c) 1998, 2018, 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: 5547
diff changeset
    25
#ifndef SHARE_VM_RUNTIME_HANDLES_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_RUNTIME_HANDLES_INLINE_HPP
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"
14583
d70ee55535f4 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 14120
diff changeset
    29
#include "runtime/thread.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// these inline functions are in a separate file to break an include cycle
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// between Thread and Handle
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
inline Handle::Handle(Thread* thread, oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  assert(thread == Thread::current(), "sanity check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  if (obj == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
    _handle = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
    _handle = thread->handle_area()->allocate_handle(obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
49393
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 47216
diff changeset
    43
// Inline constructors for Specific Handles for different oop types
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 47216
diff changeset
    44
#define DEF_HANDLE_CONSTR(type, is_a)                   \
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 47216
diff changeset
    45
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
    46
  assert(is_null() || ((oop)obj)->is_a(), "illegal type");                \
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 47216
diff changeset
    47
}
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 47216
diff changeset
    48
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 47216
diff changeset
    49
DEF_HANDLE_CONSTR(instance , is_instance_noinline )
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 47216
diff changeset
    50
DEF_HANDLE_CONSTR(array    , is_array_noinline    )
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 47216
diff changeset
    51
DEF_HANDLE_CONSTR(objArray , is_objArray_noinline )
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 47216
diff changeset
    52
DEF_HANDLE_CONSTR(typeArray, is_typeArray_noinline)
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 47216
diff changeset
    53
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 46271
diff changeset
    54
// Constructor for metadata handles
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    55
#define DEF_METADATA_HANDLE_FN(name, type) \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    56
inline name##Handle::name##Handle(type* obj) : _value(obj), _thread(NULL) {       \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    57
  if (obj != NULL) {                                                   \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    58
    assert(((Metadata*)obj)->is_valid(), "obj is valid");              \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    59
    _thread = Thread::current();                                       \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    60
    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
    61
    _thread->metadata_handles()->push((Metadata*)obj);                 \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    62
  }                                                                    \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    63
}                                                                      \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    64
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
    65
  if (obj != NULL) {                                                   \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    66
    assert(((Metadata*)obj)->is_valid(), "obj is valid");              \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    67
    assert(_thread == Thread::current(), "thread must be current");    \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    68
    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
    69
    _thread->metadata_handles()->push((Metadata*)obj);                 \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    70
  }                                                                    \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    71
}                                                                      \
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    72
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    73
DEF_METADATA_HANDLE_FN(method, Method)
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    74
DEF_METADATA_HANDLE_FN(constantPool, ConstantPool)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
inline HandleMark::HandleMark() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  initialize(Thread::current());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
}
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::push() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // This is intentionally a NOP. pop_and_restore will reset
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // values to the HandleMark further down the stack, typically
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // in JavaCalls::call_helper.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  debug_only(_area->_handle_mark_nesting++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
inline void HandleMark::pop_and_restore() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  HandleArea* area = _area;   // help compilers with poor alias analysis
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // Delete later chunks
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  if( _chunk->next() ) {
14120
7d298141c258 7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents: 13728
diff changeset
    92
    // reset arena size before delete chunks. Otherwise, the total
7d298141c258 7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents: 13728
diff changeset
    93
    // arena size could exceed total chunk size
7d298141c258 7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents: 13728
diff changeset
    94
    assert(area->size_in_bytes() > size_in_bytes(), "Sanity check");
7d298141c258 7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents: 13728
diff changeset
    95
    area->set_size_in_bytes(size_in_bytes());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    _chunk->next_chop();
14120
7d298141c258 7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents: 13728
diff changeset
    97
  } else {
7d298141c258 7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents: 13728
diff changeset
    98
    assert(area->size_in_bytes() == size_in_bytes(), "Sanity check");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // Roll back arena to saved top markers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  area->_chunk = _chunk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  area->_hwm = _hwm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  area->_max = _max;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  debug_only(area->_handle_mark_nesting--);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
}
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   106
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   107
#endif // SHARE_VM_RUNTIME_HANDLES_INLINE_HPP