Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/share/vm/runtime/dtraceJSDT.hpp
32285 views
1
/*
2
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
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
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*
23
*/
24
25
#ifndef SHARE_VM_RUNTIME_DTRACEJSDT_HPP
26
#define SHARE_VM_RUNTIME_DTRACEJSDT_HPP
27
28
#include "code/nmethod.hpp"
29
#ifdef TARGET_ARCH_x86
30
# include "nativeInst_x86.hpp"
31
#endif
32
#ifdef TARGET_ARCH_aarch32
33
# include "nativeInst_aarch32.hpp"
34
#endif
35
#ifdef TARGET_ARCH_aarch64
36
# include "nativeInst_aarch64.hpp"
37
#endif
38
#ifdef TARGET_ARCH_sparc
39
# include "nativeInst_sparc.hpp"
40
#endif
41
#ifdef TARGET_ARCH_zero
42
# include "nativeInst_zero.hpp"
43
#endif
44
#ifdef TARGET_ARCH_arm
45
# include "nativeInst_arm.hpp"
46
#endif
47
#ifdef TARGET_ARCH_ppc
48
# include "nativeInst_ppc.hpp"
49
#endif
50
51
class RegisteredProbes;
52
typedef jlong OpaqueProbes;
53
54
class DTraceJSDT : AllStatic {
55
private:
56
57
static int pd_activate(void* moduleBaseAddress, jstring module,
58
jint providers_count, JVM_DTraceProvider* providers);
59
static void pd_dispose(int handle);
60
static jboolean pd_is_supported();
61
62
public:
63
64
static OpaqueProbes activate(
65
jint version, jstring module_name, jint providers_count,
66
JVM_DTraceProvider* providers, TRAPS);
67
static jboolean is_probe_enabled(jmethodID method);
68
static void dispose(OpaqueProbes handle);
69
static jboolean is_supported();
70
};
71
72
class RegisteredProbes : public CHeapObj<mtInternal> {
73
private:
74
nmethod** _nmethods; // all the probe methods
75
size_t _count; // number of probe methods
76
int _helper_handle; // DTrace-assigned identifier
77
78
public:
79
RegisteredProbes(size_t count) {
80
_count = count;
81
_nmethods = NEW_C_HEAP_ARRAY(nmethod*, count, mtInternal);
82
}
83
84
~RegisteredProbes() {
85
for (size_t i = 0; i < _count; ++i) {
86
// Let the sweeper reclaim it
87
_nmethods[i]->make_not_entrant();
88
_nmethods[i]->method()->clear_code();
89
}
90
FREE_C_HEAP_ARRAY(nmethod*, _nmethods, mtInternal);
91
_nmethods = NULL;
92
_count = 0;
93
}
94
95
static RegisteredProbes* toRegisteredProbes(OpaqueProbes p) {
96
return (RegisteredProbes*)(intptr_t)p;
97
}
98
99
static OpaqueProbes toOpaqueProbes(RegisteredProbes* p) {
100
return (OpaqueProbes)(intptr_t)p;
101
}
102
103
void set_helper_handle(int handle) { _helper_handle = handle; }
104
int helper_handle() const { return _helper_handle; }
105
106
nmethod* nmethod_at(size_t i) {
107
assert(i >= 0 && i < _count, "bad nmethod index");
108
return _nmethods[i];
109
}
110
111
void nmethod_at_put(size_t i, nmethod* nm) {
112
assert(i >= 0 && i < _count, "bad nmethod index");
113
_nmethods[i] = nm;
114
}
115
};
116
117
#endif // SHARE_VM_RUNTIME_DTRACEJSDT_HPP
118
119