author | chagedorn |
Wed, 02 Oct 2019 08:27:17 +0200 | |
changeset 58438 | 1181f58f30e2 |
parent 53682 | e30211561a17 |
child 59056 | 15936b142f86 |
permissions | -rw-r--r-- |
1 | 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 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
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 | 22 |
* |
23 |
*/ |
|
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 | 27 |
|
28 |
#include "runtime/handles.hpp" |
|
53582 | 29 |
#include "runtime/thread.hpp" |
30 |
#include "oops/metadata.hpp" |
|
31 |
#include "oops/oop.hpp" |
|
7397 | 32 |
|
1 | 33 |
// these inline functions are in a separate file to break an include cycle |
34 |
// between Thread and Handle |
|
35 |
||
36 |
inline Handle::Handle(Thread* thread, oop obj) { |
|
37 |
assert(thread == Thread::current(), "sanity check"); |
|
38 |
if (obj == NULL) { |
|
39 |
_handle = NULL; |
|
40 |
} else { |
|
41 |
_handle = thread->handle_area()->allocate_handle(obj); |
|
42 |
} |
|
43 |
} |
|
44 |
||
49393 | 45 |
// Inline constructors for Specific Handles for different oop types |
46 |
#define DEF_HANDLE_CONSTR(type, is_a) \ |
|
47 |
inline type##Handle::type##Handle (Thread* thread, type##Oop obj) : Handle(thread, (oop)obj) { \ |
|
48 |
assert(is_null() || ((oop)obj)->is_a(), "illegal type"); \ |
|
49 |
} |
|
50 |
||
51 |
DEF_HANDLE_CONSTR(instance , is_instance_noinline ) |
|
52 |
DEF_HANDLE_CONSTR(array , is_array_noinline ) |
|
53 |
DEF_HANDLE_CONSTR(objArray , is_objArray_noinline ) |
|
54 |
DEF_HANDLE_CONSTR(typeArray, is_typeArray_noinline) |
|
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(type* obj) : _value(obj), _thread(NULL) { \ |
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 |
_thread = Thread::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 |
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
|
67 |
if (obj != NULL) { \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
68 |
assert(((Metadata*)obj)->is_valid(), "obj is valid"); \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
69 |
assert(_thread == Thread::current(), "thread must be current"); \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
70 |
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
|
71 |
_thread->metadata_handles()->push((Metadata*)obj); \ |
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 |
} \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
74 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
75 |
DEF_METADATA_HANDLE_FN(method, Method) |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
76 |
DEF_METADATA_HANDLE_FN(constantPool, ConstantPool) |
1 | 77 |
|
78 |
inline HandleMark::HandleMark() { |
|
79 |
initialize(Thread::current()); |
|
80 |
} |
|
81 |
||
82 |
inline void HandleMark::push() { |
|
83 |
// This is intentionally a NOP. pop_and_restore will reset |
|
84 |
// values to the HandleMark further down the stack, typically |
|
85 |
// in JavaCalls::call_helper. |
|
86 |
debug_only(_area->_handle_mark_nesting++); |
|
87 |
} |
|
88 |
||
89 |
inline void HandleMark::pop_and_restore() { |
|
90 |
// Delete later chunks |
|
53682 | 91 |
if(_chunk->next() != NULL) { |
92 |
assert(_area->size_in_bytes() > size_in_bytes(), "Sanity check"); |
|
93 |
chop_later_chunks(); |
|
14120
7d298141c258
7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents:
13728
diff
changeset
|
94 |
} else { |
53682 | 95 |
assert(_area->size_in_bytes() == size_in_bytes(), "Sanity check"); |
1 | 96 |
} |
97 |
// Roll back arena to saved top markers |
|
53682 | 98 |
_area->_chunk = _chunk; |
99 |
_area->_hwm = _hwm; |
|
100 |
_area->_max = _max; |
|
101 |
debug_only(_area->_handle_mark_nesting--); |
|
1 | 102 |
} |
7397 | 103 |
|
49449
ef5d5d343e2a
8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents:
49393
diff
changeset
|
104 |
inline HandleMarkCleaner::HandleMarkCleaner(Thread* thread) { |
ef5d5d343e2a
8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents:
49393
diff
changeset
|
105 |
_thread = thread; |
ef5d5d343e2a
8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents:
49393
diff
changeset
|
106 |
_thread->last_handle_mark()->push(); |
ef5d5d343e2a
8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents:
49393
diff
changeset
|
107 |
} |
ef5d5d343e2a
8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents:
49393
diff
changeset
|
108 |
|
ef5d5d343e2a
8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents:
49393
diff
changeset
|
109 |
inline HandleMarkCleaner::~HandleMarkCleaner() { |
ef5d5d343e2a
8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents:
49393
diff
changeset
|
110 |
_thread->last_handle_mark()->pop_and_restore(); |
ef5d5d343e2a
8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents:
49393
diff
changeset
|
111 |
} |
ef5d5d343e2a
8199263: Split interfaceSupport.hpp to not require including .inline.hpp files
coleenp
parents:
49393
diff
changeset
|
112 |
|
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
49449
diff
changeset
|
113 |
#endif // SHARE_RUNTIME_HANDLES_INLINE_HPP |