author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 42664 | hotspot/src/share/vm/runtime/stubCodeGenerator.cpp@29142a56c193 |
child 50528 | 1fd4844371bb |
permissions | -rw-r--r-- |
1 | 1 |
/* |
31620
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
31343
diff
changeset
|
2 |
* Copyright (c) 1997, 2015, 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:
670
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
670
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:
670
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
14626
0cf4eccf130f
8003240: x86: move MacroAssembler into separate file
twisti
parents:
9980
diff
changeset
|
26 |
#include "asm/macroAssembler.hpp" |
0cf4eccf130f
8003240: x86: move MacroAssembler into separate file
twisti
parents:
9980
diff
changeset
|
27 |
#include "asm/macroAssembler.inline.hpp" |
0cf4eccf130f
8003240: x86: move MacroAssembler into separate file
twisti
parents:
9980
diff
changeset
|
28 |
#include "code/codeCache.hpp" |
7397 | 29 |
#include "compiler/disassembler.hpp" |
30 |
#include "oops/oop.inline.hpp" |
|
31 |
#include "prims/forte.hpp" |
|
32 |
#include "runtime/stubCodeGenerator.hpp" |
|
1 | 33 |
|
34 |
||
35 |
// Implementation of StubCodeDesc |
|
36 |
||
37 |
StubCodeDesc* StubCodeDesc::_list = NULL; |
|
36074
11263906664c
8138922: StubCodeDesc constructor publishes partially-constructed objects on StubCodeDesc::_list
vlivanov
parents:
31620
diff
changeset
|
38 |
bool StubCodeDesc::_frozen = false; |
1 | 39 |
|
40 |
StubCodeDesc* StubCodeDesc::desc_for(address pc) { |
|
41 |
StubCodeDesc* p = _list; |
|
36301
cb578d8c6cba
8149741: Don't refer to stub entry points by index in external_word relocations
vlivanov
parents:
36074
diff
changeset
|
42 |
while (p != NULL && !p->contains(pc)) { |
cb578d8c6cba
8149741: Don't refer to stub entry points by index in external_word relocations
vlivanov
parents:
36074
diff
changeset
|
43 |
p = p->_next; |
cb578d8c6cba
8149741: Don't refer to stub entry points by index in external_word relocations
vlivanov
parents:
36074
diff
changeset
|
44 |
} |
1 | 45 |
return p; |
46 |
} |
|
47 |
||
48 |
const char* StubCodeDesc::name_for(address pc) { |
|
49 |
StubCodeDesc* p = desc_for(pc); |
|
50 |
return p == NULL ? NULL : p->name(); |
|
51 |
} |
|
52 |
||
53 |
||
36074
11263906664c
8138922: StubCodeDesc constructor publishes partially-constructed objects on StubCodeDesc::_list
vlivanov
parents:
31620
diff
changeset
|
54 |
void StubCodeDesc::freeze() { |
11263906664c
8138922: StubCodeDesc constructor publishes partially-constructed objects on StubCodeDesc::_list
vlivanov
parents:
31620
diff
changeset
|
55 |
assert(!_frozen, "repeated freeze operation"); |
11263906664c
8138922: StubCodeDesc constructor publishes partially-constructed objects on StubCodeDesc::_list
vlivanov
parents:
31620
diff
changeset
|
56 |
_frozen = true; |
11263906664c
8138922: StubCodeDesc constructor publishes partially-constructed objects on StubCodeDesc::_list
vlivanov
parents:
31620
diff
changeset
|
57 |
} |
11263906664c
8138922: StubCodeDesc constructor publishes partially-constructed objects on StubCodeDesc::_list
vlivanov
parents:
31620
diff
changeset
|
58 |
|
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5924
diff
changeset
|
59 |
void StubCodeDesc::print_on(outputStream* st) const { |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
22234
diff
changeset
|
60 |
st->print("%s", group()); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5924
diff
changeset
|
61 |
st->print("::"); |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
22234
diff
changeset
|
62 |
st->print("%s", name()); |
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
22234
diff
changeset
|
63 |
st->print(" [" INTPTR_FORMAT ", " INTPTR_FORMAT "[ (%d bytes)", p2i(begin()), p2i(end()), size_in_bytes()); |
1 | 64 |
} |
65 |
||
66 |
// Implementation of StubCodeGenerator |
|
67 |
||
9980
a330de5dea17
7052219: JSR 292: Crash in ~BufferBlob::MethodHandles adapters
never
parents:
8921
diff
changeset
|
68 |
StubCodeGenerator::StubCodeGenerator(CodeBuffer* code, bool print_code) { |
36301
cb578d8c6cba
8149741: Don't refer to stub entry points by index in external_word relocations
vlivanov
parents:
36074
diff
changeset
|
69 |
_masm = new MacroAssembler(code ); |
cb578d8c6cba
8149741: Don't refer to stub entry points by index in external_word relocations
vlivanov
parents:
36074
diff
changeset
|
70 |
_print_code = PrintStubCode || print_code; |
1 | 71 |
} |
72 |
||
73 |
StubCodeGenerator::~StubCodeGenerator() { |
|
36301
cb578d8c6cba
8149741: Don't refer to stub entry points by index in external_word relocations
vlivanov
parents:
36074
diff
changeset
|
74 |
if (_print_code) { |
1 | 75 |
CodeBuffer* cbuf = _masm->code(); |
76 |
CodeBlob* blob = CodeCache::find_blob_unsafe(cbuf->insts()->start()); |
|
77 |
if (blob != NULL) { |
|
16368
713209c45a82
8008555: Debugging code in compiled method sometimes leaks memory
roland
parents:
14626
diff
changeset
|
78 |
blob->set_strings(cbuf->strings()); |
1 | 79 |
} |
80 |
} |
|
81 |
} |
|
82 |
||
83 |
void StubCodeGenerator::stub_prolog(StubCodeDesc* cdesc) { |
|
84 |
// default implementation - do nothing |
|
85 |
} |
|
86 |
||
87 |
void StubCodeGenerator::stub_epilog(StubCodeDesc* cdesc) { |
|
36301
cb578d8c6cba
8149741: Don't refer to stub entry points by index in external_word relocations
vlivanov
parents:
36074
diff
changeset
|
88 |
if (_print_code) { |
cb578d8c6cba
8149741: Don't refer to stub entry points by index in external_word relocations
vlivanov
parents:
36074
diff
changeset
|
89 |
cdesc->print(); |
cb578d8c6cba
8149741: Don't refer to stub entry points by index in external_word relocations
vlivanov
parents:
36074
diff
changeset
|
90 |
tty->cr(); |
cb578d8c6cba
8149741: Don't refer to stub entry points by index in external_word relocations
vlivanov
parents:
36074
diff
changeset
|
91 |
Disassembler::decode(cdesc->begin(), cdesc->end()); |
cb578d8c6cba
8149741: Don't refer to stub entry points by index in external_word relocations
vlivanov
parents:
36074
diff
changeset
|
92 |
tty->cr(); |
cb578d8c6cba
8149741: Don't refer to stub entry points by index in external_word relocations
vlivanov
parents:
36074
diff
changeset
|
93 |
} |
1 | 94 |
} |
95 |
||
96 |
||
97 |
// Implementation of CodeMark |
|
98 |
||
99 |
StubCodeMark::StubCodeMark(StubCodeGenerator* cgen, const char* group, const char* name) { |
|
100 |
_cgen = cgen; |
|
101 |
_cdesc = new StubCodeDesc(group, name, _cgen->assembler()->pc()); |
|
102 |
_cgen->stub_prolog(_cdesc); |
|
103 |
// define the stub's beginning (= entry point) to be after the prolog: |
|
104 |
_cdesc->set_begin(_cgen->assembler()->pc()); |
|
105 |
} |
|
106 |
||
107 |
StubCodeMark::~StubCodeMark() { |
|
108 |
_cgen->assembler()->flush(); |
|
109 |
_cdesc->set_end(_cgen->assembler()->pc()); |
|
110 |
assert(StubCodeDesc::_list == _cdesc, "expected order on list"); |
|
111 |
_cgen->stub_epilog(_cdesc); |
|
112 |
Forte::register_stub(_cdesc->name(), _cdesc->begin(), _cdesc->end()); |
|
113 |
||
114 |
if (JvmtiExport::should_post_dynamic_code_generated()) { |
|
115 |
JvmtiExport::post_dynamic_code_generated(_cdesc->name(), _cdesc->begin(), _cdesc->end()); |
|
116 |
} |
|
117 |
} |