author | neliasso |
Mon, 16 Nov 2015 20:56:18 +0100 | |
changeset 34186 | 69c8391e72e1 |
parent 31620 | 53be635ad49c |
child 36074 | 11263906664c |
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" |
31620
53be635ad49c
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
bdelsart
parents:
31343
diff
changeset
|
29 |
#include "code/codeCacheExtensions.hpp" |
7397 | 30 |
#include "compiler/disassembler.hpp" |
31 |
#include "oops/oop.inline.hpp" |
|
32 |
#include "prims/forte.hpp" |
|
33 |
#include "runtime/stubCodeGenerator.hpp" |
|
1 | 34 |
|
35 |
||
36 |
// Implementation of StubCodeDesc |
|
37 |
||
38 |
StubCodeDesc* StubCodeDesc::_list = NULL; |
|
39 |
int StubCodeDesc::_count = 0; |
|
40 |
||
41 |
||
42 |
StubCodeDesc* StubCodeDesc::desc_for(address pc) { |
|
43 |
StubCodeDesc* p = _list; |
|
44 |
while (p != NULL && !p->contains(pc)) p = p->_next; |
|
45 |
// p == NULL || p->contains(pc) |
|
46 |
return p; |
|
47 |
} |
|
48 |
||
49 |
||
50 |
StubCodeDesc* StubCodeDesc::desc_for_index(int index) { |
|
51 |
StubCodeDesc* p = _list; |
|
52 |
while (p != NULL && p->index() != index) p = p->_next; |
|
53 |
return p; |
|
54 |
} |
|
55 |
||
56 |
||
57 |
const char* StubCodeDesc::name_for(address pc) { |
|
58 |
StubCodeDesc* p = desc_for(pc); |
|
59 |
return p == NULL ? NULL : p->name(); |
|
60 |
} |
|
61 |
||
62 |
||
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5924
diff
changeset
|
63 |
void StubCodeDesc::print_on(outputStream* st) const { |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
22234
diff
changeset
|
64 |
st->print("%s", group()); |
6176
4d9030fe341f
6953477: Increase portability and flexibility of building Hotspot
bobv
parents:
5924
diff
changeset
|
65 |
st->print("::"); |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
22234
diff
changeset
|
66 |
st->print("%s", name()); |
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
22234
diff
changeset
|
67 |
st->print(" [" INTPTR_FORMAT ", " INTPTR_FORMAT "[ (%d bytes)", p2i(begin()), p2i(end()), size_in_bytes()); |
1 | 68 |
} |
69 |
||
70 |
// Implementation of StubCodeGenerator |
|
71 |
||
9980
a330de5dea17
7052219: JSR 292: Crash in ~BufferBlob::MethodHandles adapters
never
parents:
8921
diff
changeset
|
72 |
StubCodeGenerator::StubCodeGenerator(CodeBuffer* code, bool print_code) { |
1 | 73 |
_masm = new MacroAssembler(code); |
74 |
_first_stub = _last_stub = NULL; |
|
9980
a330de5dea17
7052219: JSR 292: Crash in ~BufferBlob::MethodHandles adapters
never
parents:
8921
diff
changeset
|
75 |
_print_code = print_code; |
1 | 76 |
} |
77 |
||
78 |
extern "C" { |
|
79 |
static int compare_cdesc(const void* void_a, const void* void_b) { |
|
80 |
int ai = (*((StubCodeDesc**) void_a))->index(); |
|
81 |
int bi = (*((StubCodeDesc**) void_b))->index(); |
|
82 |
return ai - bi; |
|
83 |
} |
|
84 |
} |
|
85 |
||
86 |
StubCodeGenerator::~StubCodeGenerator() { |
|
9980
a330de5dea17
7052219: JSR 292: Crash in ~BufferBlob::MethodHandles adapters
never
parents:
8921
diff
changeset
|
87 |
if (PrintStubCode || _print_code) { |
1 | 88 |
CodeBuffer* cbuf = _masm->code(); |
89 |
CodeBlob* blob = CodeCache::find_blob_unsafe(cbuf->insts()->start()); |
|
90 |
if (blob != NULL) { |
|
16368
713209c45a82
8008555: Debugging code in compiled method sometimes leaks memory
roland
parents:
14626
diff
changeset
|
91 |
blob->set_strings(cbuf->strings()); |
1 | 92 |
} |
93 |
bool saw_first = false; |
|
94 |
StubCodeDesc* toprint[1000]; |
|
95 |
int toprint_len = 0; |
|
96 |
for (StubCodeDesc* cdesc = _last_stub; cdesc != NULL; cdesc = cdesc->_next) { |
|
97 |
toprint[toprint_len++] = cdesc; |
|
98 |
if (cdesc == _first_stub) { saw_first = true; break; } |
|
99 |
} |
|
31343
63ace334eb46
8086073: Fix PrintStubCode for empty StubCodeGenerator.
goetz
parents:
24424
diff
changeset
|
100 |
assert(toprint_len == 0 || saw_first, "must get both first & last"); |
1 | 101 |
// Print in reverse order: |
102 |
qsort(toprint, toprint_len, sizeof(toprint[0]), compare_cdesc); |
|
103 |
for (int i = 0; i < toprint_len; i++) { |
|
104 |
StubCodeDesc* cdesc = toprint[i]; |
|
105 |
cdesc->print(); |
|
106 |
tty->cr(); |
|
107 |
Disassembler::decode(cdesc->begin(), cdesc->end()); |
|
108 |
tty->cr(); |
|
109 |
} |
|
110 |
} |
|
111 |
} |
|
112 |
||
113 |
||
114 |
void StubCodeGenerator::stub_prolog(StubCodeDesc* cdesc) { |
|
115 |
// default implementation - do nothing |
|
116 |
} |
|
117 |
||
118 |
||
119 |
void StubCodeGenerator::stub_epilog(StubCodeDesc* cdesc) { |
|
120 |
// default implementation - record the cdesc |
|
121 |
if (_first_stub == NULL) _first_stub = cdesc; |
|
122 |
_last_stub = cdesc; |
|
123 |
} |
|
124 |
||
125 |
||
126 |
// Implementation of CodeMark |
|
127 |
||
128 |
StubCodeMark::StubCodeMark(StubCodeGenerator* cgen, const char* group, const char* name) { |
|
129 |
_cgen = cgen; |
|
130 |
_cdesc = new StubCodeDesc(group, name, _cgen->assembler()->pc()); |
|
131 |
_cgen->stub_prolog(_cdesc); |
|
132 |
// define the stub's beginning (= entry point) to be after the prolog: |
|
133 |
_cdesc->set_begin(_cgen->assembler()->pc()); |
|
134 |
} |
|
135 |
||
136 |
StubCodeMark::~StubCodeMark() { |
|
137 |
_cgen->assembler()->flush(); |
|
138 |
_cdesc->set_end(_cgen->assembler()->pc()); |
|
139 |
assert(StubCodeDesc::_list == _cdesc, "expected order on list"); |
|
140 |
_cgen->stub_epilog(_cdesc); |
|
141 |
Forte::register_stub(_cdesc->name(), _cdesc->begin(), _cdesc->end()); |
|
142 |
||
143 |
if (JvmtiExport::should_post_dynamic_code_generated()) { |
|
144 |
JvmtiExport::post_dynamic_code_generated(_cdesc->name(), _cdesc->begin(), _cdesc->end()); |
|
145 |
} |
|
146 |
} |