mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-25 22:04:51 +02:00
8034080: Remove the USDT1 dtrace code from Hotspot
Reviewed-by: dholmes, coleenp
This commit is contained in:
parent
b4be5da833
commit
43b711ea78
19 changed files with 86 additions and 1801 deletions
|
@ -78,39 +78,6 @@
|
|||
len = klassname->utf8_length(); \
|
||||
}
|
||||
|
||||
#ifndef USDT2
|
||||
|
||||
HS_DTRACE_PROBE_DECL4(hotspot, monitor__notify,
|
||||
jlong, uintptr_t, char*, int);
|
||||
HS_DTRACE_PROBE_DECL4(hotspot, monitor__notifyAll,
|
||||
jlong, uintptr_t, char*, int);
|
||||
HS_DTRACE_PROBE_DECL4(hotspot, monitor__contended__enter,
|
||||
jlong, uintptr_t, char*, int);
|
||||
HS_DTRACE_PROBE_DECL4(hotspot, monitor__contended__entered,
|
||||
jlong, uintptr_t, char*, int);
|
||||
HS_DTRACE_PROBE_DECL4(hotspot, monitor__contended__exit,
|
||||
jlong, uintptr_t, char*, int);
|
||||
|
||||
#define DTRACE_MONITOR_WAIT_PROBE(monitor, obj, thread, millis) \
|
||||
{ \
|
||||
if (DTraceMonitorProbes) { \
|
||||
DTRACE_MONITOR_PROBE_COMMON(obj, thread); \
|
||||
HS_DTRACE_PROBE5(hotspot, monitor__wait, jtid, \
|
||||
(monitor), bytes, len, (millis)); \
|
||||
} \
|
||||
}
|
||||
|
||||
#define DTRACE_MONITOR_PROBE(probe, monitor, obj, thread) \
|
||||
{ \
|
||||
if (DTraceMonitorProbes) { \
|
||||
DTRACE_MONITOR_PROBE_COMMON(obj, thread); \
|
||||
HS_DTRACE_PROBE4(hotspot, monitor__##probe, jtid, \
|
||||
(uintptr_t)(monitor), bytes, len); \
|
||||
} \
|
||||
}
|
||||
|
||||
#else /* USDT2 */
|
||||
|
||||
#define DTRACE_MONITOR_WAIT_PROBE(monitor, obj, thread, millis) \
|
||||
{ \
|
||||
if (DTraceMonitorProbes) { \
|
||||
|
@ -135,7 +102,6 @@ HS_DTRACE_PROBE_DECL4(hotspot, monitor__contended__exit,
|
|||
} \
|
||||
}
|
||||
|
||||
#endif /* USDT2 */
|
||||
#else // ndef DTRACE_ENABLED
|
||||
|
||||
#define DTRACE_MONITOR_WAIT_PROBE(obj, thread, millis, mon) {;}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue