author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 46329 | hotspot/src/share/vm/runtime/handles.inline.hpp@53ccc37bda19 |
child 49393 | 93fe2fc5c093 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
46271
979ebd346ecf
8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents:
35194
diff
changeset
|
2 |
* Copyright (c) 1998, 2017, 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 |
||
7397 | 25 |
#ifndef SHARE_VM_RUNTIME_HANDLES_INLINE_HPP |
26 |
#define SHARE_VM_RUNTIME_HANDLES_INLINE_HPP |
|
27 |
||
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 | 30 |
|
1 | 31 |
// these inline functions are in a separate file to break an include cycle |
32 |
// between Thread and Handle |
|
33 |
||
34 |
inline Handle::Handle(Thread* thread, oop obj) { |
|
35 |
assert(thread == Thread::current(), "sanity check"); |
|
36 |
if (obj == NULL) { |
|
37 |
_handle = NULL; |
|
38 |
} else { |
|
39 |
_handle = thread->handle_area()->allocate_handle(obj); |
|
40 |
} |
|
41 |
} |
|
42 |
||
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46271
diff
changeset
|
43 |
// Constructor for metadata handles |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
44 |
#define DEF_METADATA_HANDLE_FN(name, type) \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
45 |
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
|
46 |
if (obj != NULL) { \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
47 |
assert(((Metadata*)obj)->is_valid(), "obj is valid"); \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
48 |
_thread = Thread::current(); \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
49 |
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
|
50 |
_thread->metadata_handles()->push((Metadata*)obj); \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
51 |
} \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
52 |
} \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
53 |
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
|
54 |
if (obj != NULL) { \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
55 |
assert(((Metadata*)obj)->is_valid(), "obj is valid"); \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
56 |
assert(_thread == Thread::current(), "thread must be current"); \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
57 |
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
|
58 |
_thread->metadata_handles()->push((Metadata*)obj); \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
59 |
} \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
60 |
} \ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
61 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
62 |
DEF_METADATA_HANDLE_FN(method, Method) |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
63 |
DEF_METADATA_HANDLE_FN(constantPool, ConstantPool) |
1 | 64 |
|
65 |
inline HandleMark::HandleMark() { |
|
66 |
initialize(Thread::current()); |
|
67 |
} |
|
68 |
||
69 |
||
70 |
inline void HandleMark::push() { |
|
71 |
// This is intentionally a NOP. pop_and_restore will reset |
|
72 |
// values to the HandleMark further down the stack, typically |
|
73 |
// in JavaCalls::call_helper. |
|
74 |
debug_only(_area->_handle_mark_nesting++); |
|
75 |
} |
|
76 |
||
77 |
inline void HandleMark::pop_and_restore() { |
|
78 |
HandleArea* area = _area; // help compilers with poor alias analysis |
|
79 |
// Delete later chunks |
|
80 |
if( _chunk->next() ) { |
|
14120
7d298141c258
7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents:
13728
diff
changeset
|
81 |
// 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
|
82 |
// arena size could exceed total chunk size |
7d298141c258
7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents:
13728
diff
changeset
|
83 |
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
|
84 |
area->set_size_in_bytes(size_in_bytes()); |
1 | 85 |
_chunk->next_chop(); |
14120
7d298141c258
7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents:
13728
diff
changeset
|
86 |
} else { |
7d298141c258
7199092: NMT: NMT needs to deal overlapped virtual memory ranges
zgu
parents:
13728
diff
changeset
|
87 |
assert(area->size_in_bytes() == size_in_bytes(), "Sanity check"); |
1 | 88 |
} |
89 |
// Roll back arena to saved top markers |
|
90 |
area->_chunk = _chunk; |
|
91 |
area->_hwm = _hwm; |
|
92 |
area->_max = _max; |
|
93 |
debug_only(area->_handle_mark_nesting--); |
|
94 |
} |
|
7397 | 95 |
|
96 |
#endif // SHARE_VM_RUNTIME_HANDLES_INLINE_HPP |