author | sla |
Tue, 18 Feb 2014 09:15:40 +0100 | |
changeset 22796 | bb0ea482a99e |
parent 22736 | 6c317cced072 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
13958
f5598a86c223
7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents:
10739
diff
changeset
|
2 |
* Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved. |
f5598a86c223
7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents:
10739
diff
changeset
|
3 |
* Copyright (c) 2009, 2012 Red Hat, Inc. |
1 | 4 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
5 |
* |
|
6 |
* This code is free software; you can redistribute it and/or modify it |
|
7 |
* under the terms of the GNU General Public License version 2 only, as |
|
8 |
* published by the Free Software Foundation. |
|
9 |
* |
|
10 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
11 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
14 |
* accompanied this code). |
|
15 |
* |
|
16 |
* You should have received a copy of the GNU General Public License version |
|
17 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
18 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
19 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5542
diff
changeset
|
20 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5542
diff
changeset
|
21 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5542
diff
changeset
|
22 |
* questions. |
1 | 23 |
* |
24 |
*/ |
|
25 |
||
7397 | 26 |
#ifndef SHARE_VM_UTILITIES_DTRACE_HPP |
27 |
#define SHARE_VM_UTILITIES_DTRACE_HPP |
|
28 |
||
10739 | 29 |
#if defined(DTRACE_ENABLED) |
1 | 30 |
|
31 |
#include <sys/sdt.h> |
|
32 |
||
33 |
#define DTRACE_ONLY(x) x |
|
34 |
#define NOT_DTRACE(x) |
|
35 |
||
13958
f5598a86c223
7170638: Use DTRACE_PROBE[N] in JNI Set and SetStatic Field.
coleenp
parents:
10739
diff
changeset
|
36 |
#if defined(SOLARIS) |
5542
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
1
diff
changeset
|
37 |
// Work around dtrace tail call bug 6672627 until it is fixed in solaris 10. |
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
1
diff
changeset
|
38 |
#define HS_DTRACE_WORKAROUND_TAIL_CALL_BUG() \ |
be05c5ffe905
6951319: enable solaris builds using Sun Studio 12 update 1
jcoomes
parents:
1
diff
changeset
|
39 |
do { volatile size_t dtrace_workaround_tail_call_bug = 1; } while (0) |
22736
6c317cced072
8032462: Change the linux SDT implementation to use USDT2 instead of USDT1
sla
parents:
22520
diff
changeset
|
40 |
#elif defined(LINUX) |
6c317cced072
8032462: Change the linux SDT implementation to use USDT2 instead of USDT1
sla
parents:
22520
diff
changeset
|
41 |
#define HS_DTRACE_WORKAROUND_TAIL_CALL_BUG() |
6c317cced072
8032462: Change the linux SDT implementation to use USDT2 instead of USDT1
sla
parents:
22520
diff
changeset
|
42 |
#elif defined(__APPLE__) |
6c317cced072
8032462: Change the linux SDT implementation to use USDT2 instead of USDT1
sla
parents:
22520
diff
changeset
|
43 |
#define HS_DTRACE_WORKAROUND_TAIL_CALL_BUG() |
6c317cced072
8032462: Change the linux SDT implementation to use USDT2 instead of USDT1
sla
parents:
22520
diff
changeset
|
44 |
#include <sys/types.h> |
6c317cced072
8032462: Change the linux SDT implementation to use USDT2 instead of USDT1
sla
parents:
22520
diff
changeset
|
45 |
#else |
6c317cced072
8032462: Change the linux SDT implementation to use USDT2 instead of USDT1
sla
parents:
22520
diff
changeset
|
46 |
#error "dtrace enabled for unknown os" |
6c317cced072
8032462: Change the linux SDT implementation to use USDT2 instead of USDT1
sla
parents:
22520
diff
changeset
|
47 |
#endif /* defined(SOLARIS) */ |
6c317cced072
8032462: Change the linux SDT implementation to use USDT2 instead of USDT1
sla
parents:
22520
diff
changeset
|
48 |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
13958
diff
changeset
|
49 |
#include "dtracefiles/hotspot.h" |
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
13958
diff
changeset
|
50 |
#include "dtracefiles/hotspot_jni.h" |
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
13958
diff
changeset
|
51 |
#include "dtracefiles/hs_private.h" |
10739 | 52 |
|
53 |
#else /* defined(DTRACE_ENABLED) */ |
|
1 | 54 |
|
55 |
#define DTRACE_ONLY(x) |
|
56 |
#define NOT_DTRACE(x) x |
|
57 |
||
10739 | 58 |
#define HS_DTRACE_WORKAROUND_TAIL_CALL_BUG() |
59 |
||
22796 | 60 |
#include "dtrace_disabled.hpp" |
10739 | 61 |
|
62 |
#endif /* defined(DTRACE_ENABLED) */ |
|
63 |
||
7397 | 64 |
#endif // SHARE_VM_UTILITIES_DTRACE_HPP |