author | goetz |
Thu, 12 Jul 2018 16:31:28 +0200 | |
changeset 51078 | fc6cfe40e32a |
parent 47765 | b7c7428eaab9 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
51078 | 2 |
* Copyright (c) 2002, 2018, 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:
5402
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5402
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:
5402
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
47765
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47216
diff
changeset
|
26 |
#include "jvm.h" |
7397 | 27 |
#include "ci/ciMethod.hpp" |
25715
d5a8dbdc5150
8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents:
24424
diff
changeset
|
28 |
#include "code/codeCache.hpp" |
7397 | 29 |
#include "compiler/compileLog.hpp" |
30 |
#include "memory/allocation.inline.hpp" |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
31 |
#include "oops/method.hpp" |
7397 | 32 |
#include "runtime/mutexLocker.hpp" |
33 |
#include "runtime/os.hpp" |
|
1 | 34 |
|
35 |
CompileLog* CompileLog::_first = NULL; |
|
36 |
||
37 |
// ------------------------------------------------------------------ |
|
38 |
// CompileLog::CompileLog |
|
17876
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
16670
diff
changeset
|
39 |
CompileLog::CompileLog(const char* file_name, FILE* fp, intx thread_id) |
1 | 40 |
: _context(_context_buffer, sizeof(_context_buffer)) |
41 |
{ |
|
17876
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
16670
diff
changeset
|
42 |
initialize(new(ResourceObj::C_HEAP, mtCompiler) fileStream(fp, true)); |
1 | 43 |
_file_end = 0; |
44 |
_thread_id = thread_id; |
|
45 |
||
46 |
_identities_limit = 0; |
|
47 |
_identities_capacity = 400; |
|
13195 | 48 |
_identities = NEW_C_HEAP_ARRAY(char, _identities_capacity, mtCompiler); |
17876
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
16670
diff
changeset
|
49 |
_file = NEW_C_HEAP_ARRAY(char, strlen(file_name)+1, mtCompiler); |
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
16670
diff
changeset
|
50 |
strcpy((char*)_file, file_name); |
1 | 51 |
|
52 |
// link into the global list |
|
53 |
{ MutexLocker locker(CompileTaskAlloc_lock); |
|
54 |
_next = _first; |
|
55 |
_first = this; |
|
56 |
} |
|
57 |
} |
|
58 |
||
59 |
CompileLog::~CompileLog() { |
|
27709
e6f02d6fee44
8007993: hotspot.log w/ enabled LogCompilation can be an invalid XML
thartmann
parents:
25715
diff
changeset
|
60 |
delete _out; // Close fd in fileStream::~fileStream() |
1 | 61 |
_out = NULL; |
31409
e73d834e5b49
8129423: Fix unlink() of LogCompilation tmp files lost in merge of 8007993 and 8060074.
goetz
parents:
27883
diff
changeset
|
62 |
// Remove partial file after merging in CompileLog::finish_log_on_error |
e73d834e5b49
8129423: Fix unlink() of LogCompilation tmp files lost in merge of 8007993 and 8060074.
goetz
parents:
27883
diff
changeset
|
63 |
unlink(_file); |
27880
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
25715
diff
changeset
|
64 |
FREE_C_HEAP_ARRAY(char, _identities); |
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
25715
diff
changeset
|
65 |
FREE_C_HEAP_ARRAY(char, _file); |
1 | 66 |
} |
67 |
||
68 |
||
69 |
// see_tag, pop_tag: Override the default do-nothing methods on xmlStream. |
|
31409
e73d834e5b49
8129423: Fix unlink() of LogCompilation tmp files lost in merge of 8007993 and 8060074.
goetz
parents:
27883
diff
changeset
|
70 |
// These methods provide a hook for managing the extra context markup. |
1 | 71 |
void CompileLog::see_tag(const char* tag, bool push) { |
72 |
if (_context.size() > 0 && _out != NULL) { |
|
73 |
_out->write(_context.base(), _context.size()); |
|
74 |
_context.reset(); |
|
75 |
} |
|
76 |
xmlStream::see_tag(tag, push); |
|
77 |
} |
|
78 |
void CompileLog::pop_tag(const char* tag) { |
|
79 |
_context.reset(); // toss any context info. |
|
80 |
xmlStream::pop_tag(tag); |
|
81 |
} |
|
82 |
||
83 |
||
84 |
// ------------------------------------------------------------------ |
|
85 |
// CompileLog::identify |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
86 |
int CompileLog::identify(ciBaseObject* obj) { |
1 | 87 |
if (obj == NULL) return 0; |
88 |
int id = obj->ident(); |
|
89 |
if (id < 0) return id; |
|
90 |
// If it has already been identified, just return the id. |
|
91 |
if (id < _identities_limit && _identities[id] != 0) return id; |
|
92 |
// Lengthen the array, if necessary. |
|
93 |
if (id >= _identities_capacity) { |
|
94 |
int new_cap = _identities_capacity * 2; |
|
95 |
if (new_cap <= id) new_cap = id + 100; |
|
13195 | 96 |
_identities = REALLOC_C_HEAP_ARRAY(char, _identities, new_cap, mtCompiler); |
1 | 97 |
_identities_capacity = new_cap; |
98 |
} |
|
99 |
while (id >= _identities_limit) { |
|
100 |
_identities[_identities_limit++] = 0; |
|
101 |
} |
|
102 |
assert(id < _identities_limit, "oob"); |
|
103 |
// Mark this id as processed. |
|
104 |
// (Be sure to do this before any recursive calls to identify.) |
|
105 |
_identities[id] = 1; // mark |
|
106 |
||
107 |
// Now, print the object's identity once, in detail. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
108 |
if (obj->is_metadata()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
109 |
ciMetadata* mobj = obj->as_metadata(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
110 |
if (mobj->is_klass()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
111 |
ciKlass* klass = mobj->as_klass(); |
13891
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
112 |
begin_elem("klass id='%d'", id); |
24002
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
22234
diff
changeset
|
113 |
name(klass); |
13891
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
114 |
if (!klass->is_loaded()) { |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
115 |
print(" unloaded='1'"); |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
116 |
} else { |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
117 |
print(" flags='%d'", klass->modifier_flags()); |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
118 |
} |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
119 |
end_elem(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
120 |
} else if (mobj->is_method()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
121 |
ciMethod* method = mobj->as_method(); |
13891
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
122 |
ciSignature* sig = method->signature(); |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
123 |
// Pre-identify items that we will need! |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
124 |
identify(sig->return_type()); |
1 | 125 |
for (int i = 0; i < sig->count(); i++) { |
13891
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
126 |
identify(sig->type_at(i)); |
1 | 127 |
} |
13891
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
128 |
begin_elem("method id='%d' holder='%d'", |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
129 |
id, identify(method->holder())); |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
130 |
name(method->name()); |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
131 |
print(" return='%d'", identify(sig->return_type())); |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
132 |
if (sig->count() > 0) { |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
133 |
print(" arguments='"); |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
134 |
for (int i = 0; i < sig->count(); i++) { |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
135 |
print((i == 0) ? "%d" : " %d", identify(sig->type_at(i))); |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
136 |
} |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
137 |
print("'"); |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
138 |
} |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
139 |
if (!method->is_loaded()) { |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
140 |
print(" unloaded='1'"); |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
141 |
} else { |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
142 |
print(" flags='%d'", (jchar) method->flags().as_int()); |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
143 |
// output a few metrics |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
144 |
print(" bytes='%d'", method->code_size()); |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
145 |
method->log_nmethod_identity(this); |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
146 |
//print(" count='%d'", method->invocation_count()); |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
147 |
//int bec = method->backedge_count(); |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
148 |
//if (bec != 0) print(" backedge_count='%d'", bec); |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
149 |
print(" iicount='%d'", method->interpreter_invocation_count()); |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
150 |
} |
35dabd293e56
7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents:
13728
diff
changeset
|
151 |
end_elem(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
152 |
} else if (mobj->is_type()) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
153 |
BasicType type = mobj->as_type()->basic_type(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
154 |
elem("type id='%d' name='%s'", id, type2name(type)); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
155 |
} else { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
156 |
// Should not happen. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
157 |
elem("unknown id='%d'", id); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
158 |
ShouldNotReachHere(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
159 |
} |
1 | 160 |
} else if (obj->is_symbol()) { |
161 |
begin_elem("symbol id='%d'", id); |
|
162 |
name(obj->as_symbol()); |
|
163 |
end_elem(); |
|
164 |
} else { |
|
165 |
// Should not happen. |
|
166 |
elem("unknown id='%d'", id); |
|
167 |
} |
|
168 |
return id; |
|
169 |
} |
|
170 |
||
171 |
void CompileLog::name(ciSymbol* name) { |
|
172 |
if (name == NULL) return; |
|
173 |
print(" name='"); |
|
174 |
name->print_symbol_on(text()); // handles quoting conventions |
|
175 |
print("'"); |
|
176 |
} |
|
177 |
||
24002
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
22234
diff
changeset
|
178 |
void CompileLog::name(ciKlass* k) { |
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
22234
diff
changeset
|
179 |
print(" name='"); |
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
22234
diff
changeset
|
180 |
if (!k->is_loaded()) { |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24002
diff
changeset
|
181 |
text()->print("%s", k->name()->as_klass_external_name()); |
24002
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
22234
diff
changeset
|
182 |
} else { |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24002
diff
changeset
|
183 |
text()->print("%s", k->external_name()); |
24002
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
22234
diff
changeset
|
184 |
} |
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
22234
diff
changeset
|
185 |
print("'"); |
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
22234
diff
changeset
|
186 |
} |
1 | 187 |
|
188 |
// ------------------------------------------------------------------ |
|
189 |
// CompileLog::clear_identities |
|
190 |
// Forget which identities have been printed. |
|
191 |
void CompileLog::clear_identities() { |
|
192 |
_identities_limit = 0; |
|
193 |
} |
|
194 |
||
195 |
// ------------------------------------------------------------------ |
|
196 |
// CompileLog::finish_log_on_error |
|
197 |
// |
|
198 |
// Note: This function is called after fatal error, avoid unnecessary memory |
|
199 |
// or stack allocation, use only async-safe functions. It's possible JVM is |
|
200 |
// only partially initialized. |
|
201 |
void CompileLog::finish_log_on_error(outputStream* file, char* buf, int buflen) { |
|
202 |
static bool called_exit = false; |
|
203 |
if (called_exit) return; |
|
204 |
called_exit = true; |
|
205 |
||
17876
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
16670
diff
changeset
|
206 |
CompileLog* log = _first; |
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
16670
diff
changeset
|
207 |
while (log != NULL) { |
1 | 208 |
log->flush(); |
209 |
const char* partial_file = log->file(); |
|
210 |
int partial_fd = open(partial_file, O_RDONLY); |
|
211 |
if (partial_fd != -1) { |
|
212 |
// print/print_cr may need to allocate large stack buffer to format |
|
213 |
// strings, here we use snprintf() and print_raw() instead. |
|
214 |
file->print_raw("<compilation_log thread='"); |
|
215 |
jio_snprintf(buf, buflen, UINTX_FORMAT, log->thread_id()); |
|
216 |
file->print_raw(buf); |
|
217 |
file->print_raw_cr("'>"); |
|
218 |
||
219 |
size_t nr; // number read into buf from partial log |
|
51078 | 220 |
// In case of unsuccessful completion, read returns -1. |
221 |
ssize_t bytes_read; |
|
1 | 222 |
// Copy data up to the end of the last <event> element: |
223 |
julong to_read = log->_file_end; |
|
224 |
while (to_read > 0) { |
|
225 |
if (to_read < (julong)buflen) |
|
226 |
nr = (size_t)to_read; |
|
227 |
else nr = buflen; |
|
51078 | 228 |
bytes_read = read(partial_fd, buf, (int)nr); |
229 |
if (bytes_read <= 0) break; |
|
230 |
nr = bytes_read; |
|
1 | 231 |
to_read -= (julong)nr; |
232 |
file->write(buf, nr); |
|
233 |
} |
|
234 |
||
235 |
// Copy any remaining data inside a quote: |
|
236 |
bool saw_slop = false; |
|
237 |
int end_cdata = 0; // state machine [0..2] watching for too many "]]" |
|
51078 | 238 |
while ((bytes_read = read(partial_fd, buf, buflen-1)) > 0) { |
239 |
nr = bytes_read; |
|
38658
34f9c45625d8
8140594: Various minor code improvements (compiler)
goetz
parents:
31409
diff
changeset
|
240 |
buf[buflen-1] = '\0'; |
1 | 241 |
if (!saw_slop) { |
242 |
file->print_raw_cr("<fragment>"); |
|
243 |
file->print_raw_cr("<![CDATA["); |
|
244 |
saw_slop = true; |
|
245 |
} |
|
246 |
// The rest of this loop amounts to a simple copy operation: |
|
247 |
// { file->write(buf, nr); } |
|
248 |
// However, it must sometimes output the buffer in parts, |
|
249 |
// in case there is a CDATA quote embedded in the fragment. |
|
250 |
const char* bufp; // pointer into buf |
|
251 |
size_t nw; // number written in each pass of the following loop: |
|
252 |
for (bufp = buf; nr > 0; nr -= nw, bufp += nw) { |
|
253 |
// Write up to any problematic CDATA delimiter (usually all of nr). |
|
254 |
for (nw = 0; nw < nr; nw++) { |
|
255 |
// First, scan ahead into the buf, checking the state machine. |
|
256 |
switch (bufp[nw]) { |
|
257 |
case ']': |
|
258 |
if (end_cdata < 2) end_cdata += 1; // saturating counter |
|
259 |
continue; // keep scanning |
|
260 |
case '>': |
|
261 |
if (end_cdata == 2) break; // found CDATA delimiter! |
|
262 |
// else fall through: |
|
263 |
default: |
|
264 |
end_cdata = 0; |
|
265 |
continue; // keep scanning |
|
266 |
} |
|
267 |
// If we get here, nw is pointing at a bad '>'. |
|
268 |
// It is very rare for this to happen. |
|
269 |
// However, this code has been tested by introducing |
|
270 |
// CDATA sequences into the compilation log. |
|
271 |
break; |
|
272 |
} |
|
273 |
// Now nw is the number of characters to write, usually == nr. |
|
274 |
file->write(bufp, nw); |
|
275 |
if (nw < nr) { |
|
276 |
// We are about to go around the loop again. |
|
277 |
// But first, disrupt the ]]> by closing and reopening the quote. |
|
278 |
file->print_raw("]]><![CDATA["); |
|
279 |
end_cdata = 0; // reset state machine |
|
280 |
} |
|
281 |
} |
|
282 |
} |
|
283 |
if (saw_slop) { |
|
284 |
file->print_raw_cr("]]>"); |
|
285 |
file->print_raw_cr("</fragment>"); |
|
286 |
} |
|
287 |
file->print_raw_cr("</compilation_log>"); |
|
288 |
close(partial_fd); |
|
289 |
} |
|
17876
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
16670
diff
changeset
|
290 |
CompileLog* next_log = log->_next; |
27709
e6f02d6fee44
8007993: hotspot.log w/ enabled LogCompilation can be an invalid XML
thartmann
parents:
25715
diff
changeset
|
291 |
delete log; // Removes partial file |
17876
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
16670
diff
changeset
|
292 |
log = next_log; |
1 | 293 |
} |
17876
7313e6d57e36
8013329: File leak in hotspot/src/share/vm/compiler/compileBroker.cpp
anoll
parents:
16670
diff
changeset
|
294 |
_first = NULL; |
1 | 295 |
} |
296 |
||
297 |
// ------------------------------------------------------------------ |
|
298 |
// CompileLog::finish_log |
|
299 |
// |
|
300 |
// Called during normal shutdown. For now, any clean-up needed in normal |
|
301 |
// shutdown is also needed in VM abort, so is covered by finish_log_on_error(). |
|
302 |
// Just allocate a buffer and call finish_log_on_error(). |
|
303 |
void CompileLog::finish_log(outputStream* file) { |
|
304 |
char buf[4 * K]; |
|
305 |
finish_log_on_error(file, buf, sizeof(buf)); |
|
306 |
} |
|
13964 | 307 |
|
308 |
// ------------------------------------------------------------------ |
|
309 |
// CompileLog::inline_success |
|
310 |
// |
|
311 |
// Print about successful method inlining. |
|
312 |
void CompileLog::inline_success(const char* reason) { |
|
313 |
begin_elem("inline_success reason='"); |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24002
diff
changeset
|
314 |
text("%s", reason); |
13964 | 315 |
end_elem("'"); |
316 |
} |
|
317 |
||
318 |
// ------------------------------------------------------------------ |
|
319 |
// CompileLog::inline_fail |
|
320 |
// |
|
321 |
// Print about failed method inlining. |
|
322 |
void CompileLog::inline_fail(const char* reason) { |
|
323 |
begin_elem("inline_fail reason='"); |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24002
diff
changeset
|
324 |
text("%s", reason); |
13964 | 325 |
end_elem("'"); |
326 |
} |
|
327 |
||
328 |
// ------------------------------------------------------------------ |
|
329 |
// CompileLog::set_context |
|
330 |
// |
|
331 |
// Set XML tag as an optional marker - it is printed only if |
|
332 |
// there are other entries after until it is reset. |
|
333 |
void CompileLog::set_context(const char* format, ...) { |
|
334 |
va_list ap; |
|
335 |
va_start(ap, format); |
|
336 |
clear_context(); |
|
337 |
_context.print("<"); |
|
338 |
_context.vprint(format, ap); |
|
339 |
_context.print_cr("/>"); |
|
340 |
va_end(ap); |
|
341 |
} |
|
342 |
||
343 |
// ------------------------------------------------------------------ |
|
344 |
// CompileLog::code_cache_state |
|
345 |
// |
|
346 |
// Print code cache state. |
|
347 |
void CompileLog::code_cache_state() { |
|
348 |
begin_elem("code_cache"); |
|
349 |
CodeCache::log_state(this); |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24002
diff
changeset
|
350 |
end_elem("%s", ""); |
13964 | 351 |
} |