author | dholmes |
Fri, 04 Dec 2015 04:06:37 -0500 | |
changeset 34633 | 2a6c7c7b30a7 |
parent 31234 | 48000028382c |
permissions | -rw-r--r-- |
1 | 1 |
/* |
31234
48000028382c
8081219: hs_err improvement: Add event logging for class redefinition to the hs_err file
coleenp
parents:
25468
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:
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 |
#include "precompiled.hpp" |
26 |
#include "memory/allocation.inline.hpp" |
|
27 |
#include "runtime/mutexLocker.hpp" |
|
25468
5331df506290
8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents:
24424
diff
changeset
|
28 |
#include "runtime/os.inline.hpp" |
7397 | 29 |
#include "runtime/osThread.hpp" |
14583
d70ee55535f4
8003935: Simplify the needed includes for using Thread::current()
stefank
parents:
11788
diff
changeset
|
30 |
#include "runtime/thread.inline.hpp" |
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
31 |
#include "runtime/threadCritical.hpp" |
7397 | 32 |
#include "runtime/timer.hpp" |
33 |
#include "utilities/events.hpp" |
|
1 | 34 |
|
35 |
||
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
36 |
EventLog* Events::_logs = NULL; |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
37 |
StringEventLog* Events::_messages = NULL; |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
38 |
StringEventLog* Events::_exceptions = NULL; |
31234
48000028382c
8081219: hs_err improvement: Add event logging for class redefinition to the hs_err file
coleenp
parents:
25468
diff
changeset
|
39 |
StringEventLog* Events::_redefinitions = NULL; |
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
40 |
StringEventLog* Events::_deopt_messages = NULL; |
1 | 41 |
|
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
42 |
EventLog::EventLog() { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
43 |
// This normally done during bootstrap when we're only single |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
44 |
// threaded but use a ThreadCritical to ensure inclusion in case |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
45 |
// some are created slightly late. |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
46 |
ThreadCritical tc; |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
47 |
_next = Events::_logs; |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
48 |
Events::_logs = this; |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
49 |
} |
1 | 50 |
|
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
51 |
// For each registered event logger, print out the current contents of |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
52 |
// the buffer. This is normally called when the JVM is crashing. |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
53 |
void Events::print_all(outputStream* out) { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
54 |
EventLog* log = _logs; |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
55 |
while (log != NULL) { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
56 |
log->print_log_on(out); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
57 |
log = log->next(); |
1 | 58 |
} |
59 |
} |
|
60 |
||
11788 | 61 |
void Events::print() { |
62 |
print_all(tty); |
|
63 |
} |
|
64 |
||
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
65 |
void Events::init() { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
66 |
if (LogEvents) { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
67 |
_messages = new StringEventLog("Events"); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
68 |
_exceptions = new StringEventLog("Internal exceptions"); |
31234
48000028382c
8081219: hs_err improvement: Add event logging for class redefinition to the hs_err file
coleenp
parents:
25468
diff
changeset
|
69 |
_redefinitions = new StringEventLog("Classes redefined"); |
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
70 |
_deopt_messages = new StringEventLog("Deoptimization events"); |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
71 |
} |
1 | 72 |
} |
73 |
||
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
74 |
void eventlog_init() { |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
75 |
Events::init(); |
1 | 76 |
} |
77 |
||
78 |
/////////////////////////////////////////////////////////////////////////// |
|
79 |
// EventMark |
|
80 |
||
81 |
EventMark::EventMark(const char* format, ...) { |
|
82 |
if (LogEvents) { |
|
83 |
va_list ap; |
|
84 |
va_start(ap, format); |
|
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
85 |
// Save a copy of begin message and log it. |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
86 |
_buffer.printv(format, ap); |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
14583
diff
changeset
|
87 |
Events::log(NULL, "%s", _buffer.buffer()); |
1 | 88 |
va_end(ap); |
89 |
} |
|
90 |
} |
|
91 |
||
92 |
EventMark::~EventMark() { |
|
93 |
if (LogEvents) { |
|
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
94 |
// Append " done" to the begin message and log it |
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
10565
diff
changeset
|
95 |
_buffer.append(" done"); |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
14583
diff
changeset
|
96 |
Events::log(NULL, "%s", _buffer.buffer()); |
1 | 97 |
} |
98 |
} |