annotate src/os/solaris/dtrace/hotspot_jni.d @ 4582:b24386206122

Made all vm builds go into subdirectories, even product builds to simplify building the various types of VMs (server, client and graal). Made HotSpot build jobs use the number of CPUs on the host machine.
author Doug Simon <doug.simon@oracle.com>
date Mon, 13 Feb 2012 23:13:37 +0100
parents c18cbe5936b8
children a3ba776d6ab6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
2 * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 provider hotspot_jni {
a61af66fc99e Initial load
duke
parents:
diff changeset
26 probe AllocObject__entry(void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
27 probe AllocObject__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
28 probe AttachCurrentThreadAsDaemon__entry(void*, void**, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
29 probe AttachCurrentThreadAsDaemon__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
30 probe AttachCurrentThread__entry(void*, void**, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
31 probe AttachCurrentThread__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
32 probe CallBooleanMethodA__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
33 probe CallBooleanMethodA__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
34 probe CallBooleanMethod__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
35 probe CallBooleanMethod__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
36 probe CallBooleanMethodV__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
37 probe CallBooleanMethodV__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
38 probe CallByteMethodA__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
39 probe CallByteMethodA__return(char);
a61af66fc99e Initial load
duke
parents:
diff changeset
40 probe CallByteMethod__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
41 probe CallByteMethod__return(char);
a61af66fc99e Initial load
duke
parents:
diff changeset
42 probe CallByteMethodV__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
43 probe CallByteMethodV__return(char);
a61af66fc99e Initial load
duke
parents:
diff changeset
44 probe CallCharMethodA__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
45 probe CallCharMethodA__return(uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
46 probe CallCharMethod__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
47 probe CallCharMethod__return(uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
48 probe CallCharMethodV__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
49 probe CallCharMethodV__return(uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
50 probe CallDoubleMethodA__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
51 probe CallDoubleMethodA__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
52 probe CallDoubleMethod__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
53 probe CallDoubleMethod__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
54 probe CallDoubleMethodV__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
55 probe CallDoubleMethodV__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
56 probe CallFloatMethodA__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
57 probe CallFloatMethodA__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
58 probe CallFloatMethod__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
59 probe CallFloatMethod__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
60 probe CallFloatMethodV__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
61 probe CallFloatMethodV__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
62 probe CallIntMethodA__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
63 probe CallIntMethodA__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
64 probe CallIntMethod__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
65 probe CallIntMethod__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
66 probe CallIntMethodV__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
67 probe CallIntMethodV__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
68 probe CallLongMethodA__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
69 probe CallLongMethodA__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
70 probe CallLongMethod__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
71 probe CallLongMethod__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
72 probe CallLongMethodV__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
73 probe CallLongMethodV__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
74 probe CallNonvirtualBooleanMethodA__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
75 probe CallNonvirtualBooleanMethodA__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
76 probe CallNonvirtualBooleanMethod__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
77 probe CallNonvirtualBooleanMethod__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
78 probe CallNonvirtualBooleanMethodV__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
79 probe CallNonvirtualBooleanMethodV__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
80 probe CallNonvirtualByteMethodA__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
81 probe CallNonvirtualByteMethodA__return(char);
a61af66fc99e Initial load
duke
parents:
diff changeset
82 probe CallNonvirtualByteMethod__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
83 probe CallNonvirtualByteMethod__return(char);
a61af66fc99e Initial load
duke
parents:
diff changeset
84 probe CallNonvirtualByteMethodV__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
85 probe CallNonvirtualByteMethodV__return(char);
a61af66fc99e Initial load
duke
parents:
diff changeset
86 probe CallNonvirtualCharMethodA__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
87 probe CallNonvirtualCharMethodA__return(uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
88 probe CallNonvirtualCharMethod__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
89 probe CallNonvirtualCharMethod__return(uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
90 probe CallNonvirtualCharMethodV__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
91 probe CallNonvirtualCharMethodV__return(uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
92 probe CallNonvirtualDoubleMethodA__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
93 probe CallNonvirtualDoubleMethodA__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
94 probe CallNonvirtualDoubleMethod__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
95 probe CallNonvirtualDoubleMethod__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
96 probe CallNonvirtualDoubleMethodV__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
97 probe CallNonvirtualDoubleMethodV__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
98 probe CallNonvirtualFloatMethodA__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
99 probe CallNonvirtualFloatMethodA__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
100 probe CallNonvirtualFloatMethod__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
101 probe CallNonvirtualFloatMethod__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
102 probe CallNonvirtualFloatMethodV__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
103 probe CallNonvirtualFloatMethodV__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
104 probe CallNonvirtualIntMethodA__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
105 probe CallNonvirtualIntMethodA__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
106 probe CallNonvirtualIntMethod__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
107 probe CallNonvirtualIntMethod__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
108 probe CallNonvirtualIntMethodV__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
109 probe CallNonvirtualIntMethodV__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
110 probe CallNonvirtualLongMethodA__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
111 probe CallNonvirtualLongMethodA__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
112 probe CallNonvirtualLongMethod__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
113 probe CallNonvirtualLongMethod__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
114 probe CallNonvirtualLongMethodV__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
115 probe CallNonvirtualLongMethodV__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
116 probe CallNonvirtualObjectMethodA__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
117 probe CallNonvirtualObjectMethodA__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
118 probe CallNonvirtualObjectMethod__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
119 probe CallNonvirtualObjectMethod__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
120 probe CallNonvirtualObjectMethodV__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
121 probe CallNonvirtualObjectMethodV__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
122 probe CallNonvirtualShortMethodA__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
123 probe CallNonvirtualShortMethodA__return(uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
124 probe CallNonvirtualShortMethod__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
125 probe CallNonvirtualShortMethod__return(uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
126 probe CallNonvirtualShortMethodV__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
127 probe CallNonvirtualShortMethodV__return(uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
128 probe CallNonvirtualVoidMethodA__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
129 probe CallNonvirtualVoidMethodA__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
130 probe CallNonvirtualVoidMethod__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
131 probe CallNonvirtualVoidMethod__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
132 probe CallNonvirtualVoidMethodV__entry(void*, void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
133 probe CallNonvirtualVoidMethodV__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
134 probe CallObjectMethodA__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
135 probe CallObjectMethodA__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
136 probe CallObjectMethod__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
137 probe CallObjectMethod__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
138 probe CallObjectMethodV__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
139 probe CallObjectMethodV__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
140 probe CallShortMethodA__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
141 probe CallShortMethodA__return(uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
142 probe CallShortMethod__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
143 probe CallShortMethod__return(uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
144 probe CallShortMethodV__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
145 probe CallShortMethodV__return(uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
146 probe CallStaticBooleanMethodA__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
147 probe CallStaticBooleanMethodA__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
148 probe CallStaticBooleanMethod__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
149 probe CallStaticBooleanMethod__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
150 probe CallStaticBooleanMethodV__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
151 probe CallStaticBooleanMethodV__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
152 probe CallStaticByteMethodA__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
153 probe CallStaticByteMethodA__return(char);
a61af66fc99e Initial load
duke
parents:
diff changeset
154 probe CallStaticByteMethod__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
155 probe CallStaticByteMethod__return(char);
a61af66fc99e Initial load
duke
parents:
diff changeset
156 probe CallStaticByteMethodV__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
157 probe CallStaticByteMethodV__return(char);
a61af66fc99e Initial load
duke
parents:
diff changeset
158 probe CallStaticCharMethodA__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
159 probe CallStaticCharMethodA__return(uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
160 probe CallStaticCharMethod__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
161 probe CallStaticCharMethod__return(uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
162 probe CallStaticCharMethodV__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
163 probe CallStaticCharMethodV__return(uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
164 probe CallStaticDoubleMethodA__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
165 probe CallStaticDoubleMethodA__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
166 probe CallStaticDoubleMethod__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
167 probe CallStaticDoubleMethod__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
168 probe CallStaticDoubleMethodV__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
169 probe CallStaticDoubleMethodV__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
170 probe CallStaticFloatMethodA__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
171 probe CallStaticFloatMethodA__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
172 probe CallStaticFloatMethod__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
173 probe CallStaticFloatMethod__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
174 probe CallStaticFloatMethodV__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
175 probe CallStaticFloatMethodV__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
176 probe CallStaticIntMethodA__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
177 probe CallStaticIntMethodA__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
178 probe CallStaticIntMethod__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
179 probe CallStaticIntMethod__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
180 probe CallStaticIntMethodV__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
181 probe CallStaticIntMethodV__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
182 probe CallStaticLongMethodA__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
183 probe CallStaticLongMethodA__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
184 probe CallStaticLongMethod__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
185 probe CallStaticLongMethod__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
186 probe CallStaticLongMethodV__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
187 probe CallStaticLongMethodV__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
188 probe CallStaticObjectMethodA__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
189 probe CallStaticObjectMethodA__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
190 probe CallStaticObjectMethod__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
191 probe CallStaticObjectMethod__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
192 probe CallStaticObjectMethodV__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
193 probe CallStaticObjectMethodV__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
194 probe CallStaticShortMethodA__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
195 probe CallStaticShortMethodA__return(uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
196 probe CallStaticShortMethod__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
197 probe CallStaticShortMethod__return(uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
198 probe CallStaticShortMethodV__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
199 probe CallStaticShortMethodV__return(uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
200 probe CallStaticVoidMethodA__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
201 probe CallStaticVoidMethodA__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
202 probe CallStaticVoidMethod__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
203 probe CallStaticVoidMethod__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
204 probe CallStaticVoidMethodV__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
205 probe CallStaticVoidMethodV__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
206 probe CallVoidMethodA__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
207 probe CallVoidMethodA__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
208 probe CallVoidMethod__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
209 probe CallVoidMethod__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
210 probe CallVoidMethodV__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
211 probe CallVoidMethodV__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
212 probe CreateJavaVM__entry(void**, void**, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
213 probe CreateJavaVM__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
214 probe DefineClass__entry(void*, const char*, void*, char, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
215 probe DefineClass__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
216 probe DeleteGlobalRef__entry(void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
217 probe DeleteGlobalRef__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
218 probe DeleteLocalRef__entry(void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
219 probe DeleteLocalRef__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
220 probe DeleteWeakGlobalRef__entry(void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
221 probe DeleteWeakGlobalRef__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
222 probe DestroyJavaVM__entry(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
223 probe DestroyJavaVM__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
224 probe DetachCurrentThread__entry(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
225 probe DetachCurrentThread__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
226 probe EnsureLocalCapacity__entry(void*, uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
227 probe EnsureLocalCapacity__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
228 probe ExceptionCheck__entry(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
229 probe ExceptionCheck__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
230 probe ExceptionClear__entry(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
231 probe ExceptionClear__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
232 probe ExceptionDescribe__entry(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
233 probe ExceptionDescribe__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
234 probe ExceptionOccurred__entry(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
235 probe ExceptionOccurred__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
236 probe FatalError__entry(void* env, const char*);
a61af66fc99e Initial load
duke
parents:
diff changeset
237 probe FindClass__entry(void*, const char*);
a61af66fc99e Initial load
duke
parents:
diff changeset
238 probe FindClass__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
239 probe FromReflectedField__entry(void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
240 probe FromReflectedField__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
241 probe FromReflectedMethod__entry(void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
242 probe FromReflectedMethod__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
243 probe GetArrayLength__entry(void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
244 probe GetArrayLength__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
245 probe GetBooleanArrayElements__entry(void*, void*, uintptr_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
246 probe GetBooleanArrayElements__return(uintptr_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
247 probe GetBooleanArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, uintptr_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
248 probe GetBooleanArrayRegion__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
249 probe GetBooleanField__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
250 probe GetBooleanField__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
251 probe GetByteArrayElements__entry(void*, void*, uintptr_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
252 probe GetByteArrayElements__return(char*);
a61af66fc99e Initial load
duke
parents:
diff changeset
253 probe GetByteArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, char*);
a61af66fc99e Initial load
duke
parents:
diff changeset
254 probe GetByteArrayRegion__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
255 probe GetByteField__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
256 probe GetByteField__return(char);
a61af66fc99e Initial load
duke
parents:
diff changeset
257 probe GetCharArrayElements__entry(void*, void*, uintptr_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
258 probe GetCharArrayElements__return(uint16_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
259 probe GetCharArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, uint16_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
260 probe GetCharArrayRegion__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
261 probe GetCharField__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
262 probe GetCharField__return(uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
263 probe GetCreatedJavaVMs__entry(void**, uintptr_t, uintptr_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
264 probe GetCreatedJavaVMs__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
265 probe GetDefaultJavaVMInitArgs__entry(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
266 probe GetDefaultJavaVMInitArgs__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
267 probe GetDirectBufferAddress__entry(void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
268 probe GetDirectBufferAddress__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
269 probe GetDirectBufferCapacity__entry(void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
270 probe GetDirectBufferCapacity__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
271 probe GetDoubleArrayElements__entry(void*, void*, uintptr_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
272 probe GetDoubleArrayElements__return(double*);
a61af66fc99e Initial load
duke
parents:
diff changeset
273 probe GetDoubleArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, double*);
a61af66fc99e Initial load
duke
parents:
diff changeset
274 probe GetDoubleArrayRegion__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
275 probe GetDoubleField__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
276 probe GetDoubleField__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
277 probe GetEnv__entry(void*, void*, uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
278 probe GetEnv__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
279 probe GetFieldID__entry(void*, void*, const char*, const char*);
a61af66fc99e Initial load
duke
parents:
diff changeset
280 probe GetFieldID__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
281 probe GetFloatArrayElements__entry(void*, void*, uintptr_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
282 probe GetFloatArrayElements__return(float*);
a61af66fc99e Initial load
duke
parents:
diff changeset
283 probe GetFloatArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, float*);
a61af66fc99e Initial load
duke
parents:
diff changeset
284 probe GetFloatArrayRegion__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
285 probe GetFloatField__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
286 probe GetFloatField__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
287 probe GetIntArrayElements__entry(void*, void*, uintptr_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
288 probe GetIntArrayElements__return(uint32_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
289 probe GetIntArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, uint32_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
290 probe GetIntArrayRegion__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
291 probe GetIntField__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
292 probe GetIntField__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
293 probe GetJavaVM__entry(void*, void**);
a61af66fc99e Initial load
duke
parents:
diff changeset
294 probe GetJavaVM__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
295 probe GetLongArrayElements__entry(void*, void*, uintptr_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
296 probe GetLongArrayElements__return(uintptr_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
297 probe GetLongArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, uintptr_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
298 probe GetLongArrayRegion__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
299 probe GetLongField__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
300 probe GetLongField__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
301 probe GetMethodID__entry(void*, void*, const char*, const char*);
a61af66fc99e Initial load
duke
parents:
diff changeset
302 probe GetMethodID__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
303 probe GetObjectArrayElement__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
304 probe GetObjectArrayElement__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
305 probe GetObjectClass__entry(void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
306 probe GetObjectClass__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
307 probe GetObjectField__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
308 probe GetObjectField__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
309 probe GetObjectRefType__entry(void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
310 probe GetObjectRefType__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
311 probe GetPrimitiveArrayCritical__entry(void*, void*, uintptr_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
312 probe GetPrimitiveArrayCritical__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
313 probe GetShortArrayElements__entry(void*, void*, uintptr_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
314 probe GetShortArrayElements__return(uint16_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
315 probe GetShortArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, uint16_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
316 probe GetShortArrayRegion__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
317 probe GetShortField__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
318 probe GetShortField__return(uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
319 probe GetStaticBooleanField__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
320 probe GetStaticBooleanField__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
321 probe GetStaticByteField__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
322 probe GetStaticByteField__return(char);
a61af66fc99e Initial load
duke
parents:
diff changeset
323 probe GetStaticCharField__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
324 probe GetStaticCharField__return(uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
325 probe GetStaticDoubleField__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
326 probe GetStaticDoubleField__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
327 probe GetStaticFieldID__entry(void*, void*, const char*, const char*);
a61af66fc99e Initial load
duke
parents:
diff changeset
328 probe GetStaticFieldID__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
329 probe GetStaticFloatField__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
330 probe GetStaticFloatField__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
331 probe GetStaticIntField__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
332 probe GetStaticIntField__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
333 probe GetStaticLongField__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
334 probe GetStaticLongField__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
335 probe GetStaticMethodID__entry(void*, void*, const char*, const char*);
a61af66fc99e Initial load
duke
parents:
diff changeset
336 probe GetStaticMethodID__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
337 probe GetStaticObjectField__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
338 probe GetStaticObjectField__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
339 probe GetStaticShortField__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
340 probe GetStaticShortField__return(uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
341 probe GetStringChars__entry(void*, void*, uintptr_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
342 probe GetStringChars__return(const uint16_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
343 probe GetStringCritical__entry(void*, void*, uintptr_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
344 probe GetStringCritical__return(const uint16_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
345 probe GetStringLength__entry(void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
346 probe GetStringLength__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
347 probe GetStringRegion__entry(void*, void*, uintptr_t, uintptr_t, uint16_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
348 probe GetStringRegion__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
349 probe GetStringUTFChars__entry(void*, void*, uintptr_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
350 probe GetStringUTFChars__return(const char*);
a61af66fc99e Initial load
duke
parents:
diff changeset
351 probe GetStringUTFLength__entry(void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
352 probe GetStringUTFLength__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
353 probe GetStringUTFRegion__entry(void*, void*, uintptr_t, uintptr_t, char*);
a61af66fc99e Initial load
duke
parents:
diff changeset
354 probe GetStringUTFRegion__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
355 probe GetSuperclass__entry(void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
356 probe GetSuperclass__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
357 probe GetVersion__entry(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
358 probe GetVersion__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
359 probe IsAssignableFrom__entry(void*, void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
360 probe IsAssignableFrom__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
361 probe IsInstanceOf__entry(void*, void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
362 probe IsInstanceOf__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
363 probe IsSameObject__entry(void*, void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
364 probe IsSameObject__return(uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
365 probe MonitorEnter__entry(void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
366 probe MonitorEnter__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
367 probe MonitorExit__entry(void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
368 probe MonitorExit__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
369 probe NewBooleanArray__entry(void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
370 probe NewBooleanArray__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
371 probe NewByteArray__entry(void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
372 probe NewByteArray__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
373 probe NewCharArray__entry(void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
374 probe NewCharArray__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
375 probe NewDirectByteBuffer__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
376 probe NewDirectByteBuffer__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
377 probe NewDoubleArray__entry(void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
378 probe NewDoubleArray__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
379 probe NewFloatArray__entry(void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
380 probe NewFloatArray__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
381 probe NewGlobalRef__entry(void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
382 probe NewGlobalRef__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
383 probe NewIntArray__entry(void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
384 probe NewIntArray__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
385 probe NewLocalRef__entry(void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
386 probe NewLocalRef__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
387 probe NewLongArray__entry(void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
388 probe NewLongArray__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
389 probe NewObjectA__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
390 probe NewObjectA__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
391 probe NewObjectArray__entry(void*, uintptr_t, void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
392 probe NewObjectArray__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
393 probe NewObject__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
394 probe NewObject__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
395 probe NewObjectV__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
396 probe NewObjectV__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
397 probe NewShortArray__entry(void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
398 probe NewShortArray__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
399 probe NewString__entry(void*, const uint16_t*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
400 probe NewString__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
401 probe NewStringUTF__entry(void*, const char*);
a61af66fc99e Initial load
duke
parents:
diff changeset
402 probe NewStringUTF__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
403 probe NewWeakGlobalRef__entry(void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
404 probe NewWeakGlobalRef__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
405 probe PopLocalFrame__entry(void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
406 probe PopLocalFrame__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
407 probe PushLocalFrame__entry(void*, uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
408 probe PushLocalFrame__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
409 probe RegisterNatives__entry(void*, void*, const void*, uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
410 probe RegisterNatives__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
411 probe ReleaseBooleanArrayElements__entry(void*, void*, uintptr_t*, uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
412 probe ReleaseBooleanArrayElements__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
413 probe ReleaseByteArrayElements__entry(void*, void*, char*, uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
414 probe ReleaseByteArrayElements__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
415 probe ReleaseCharArrayElements__entry(void*, void*, uint16_t*, uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
416 probe ReleaseCharArrayElements__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
417 probe ReleaseDoubleArrayElements__entry(void*, void*, double*, uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
418 probe ReleaseDoubleArrayElements__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
419 probe ReleaseFloatArrayElements__entry(void*, void*, float*, uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
420 probe ReleaseFloatArrayElements__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
421 probe ReleaseIntArrayElements__entry(void*, void*, uint32_t*, uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
422 probe ReleaseIntArrayElements__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
423 probe ReleaseLongArrayElements__entry(void*, void*, uintptr_t*, uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
424 probe ReleaseLongArrayElements__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
425 probe ReleasePrimitiveArrayCritical__entry(void*, void*, void*, uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
426 probe ReleasePrimitiveArrayCritical__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
427 probe ReleaseShortArrayElements__entry(void*, void*, uint16_t*, uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
428 probe ReleaseShortArrayElements__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
429 probe ReleaseStringChars__entry(void*, void*, const uint16_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
430 probe ReleaseStringChars__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
431 probe ReleaseStringCritical__entry(void*, void*, const uint16_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
432 probe ReleaseStringCritical__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
433 probe ReleaseStringUTFChars__entry(void*, void*, const char*);
a61af66fc99e Initial load
duke
parents:
diff changeset
434 probe ReleaseStringUTFChars__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
435 probe SetBooleanArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, const uintptr_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
436 probe SetBooleanArrayRegion__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
437 probe SetBooleanField__entry(void*, void*, uintptr_t, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
438 probe SetBooleanField__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
439 probe SetByteArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, const char*);
a61af66fc99e Initial load
duke
parents:
diff changeset
440 probe SetByteArrayRegion__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
441 probe SetByteField__entry(void*, void*, uintptr_t, char);
a61af66fc99e Initial load
duke
parents:
diff changeset
442 probe SetByteField__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
443 probe SetCharArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, const uint16_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
444 probe SetCharArrayRegion__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
445 probe SetCharField__entry(void*, void*, uintptr_t, uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
446 probe SetCharField__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
447 probe SetDoubleArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, const double*);
a61af66fc99e Initial load
duke
parents:
diff changeset
448 probe SetDoubleArrayRegion__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
449 probe SetDoubleField__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
450 probe SetDoubleField__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
451 probe SetFloatArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, const float*);
a61af66fc99e Initial load
duke
parents:
diff changeset
452 probe SetFloatArrayRegion__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
453 probe SetFloatField__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
454 probe SetFloatField__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
455 probe SetIntArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, const uint32_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
456 probe SetIntArrayRegion__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
457 probe SetIntField__entry(void*, void*, uintptr_t, uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
458 probe SetIntField__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
459 probe SetLongArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, const uintptr_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
460 probe SetLongArrayRegion__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
461 probe SetLongField__entry(void*, void*, uintptr_t, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
462 probe SetLongField__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
463 probe SetObjectArrayElement__entry(void*, void*, uintptr_t, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
464 probe SetObjectArrayElement__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
465 probe SetObjectField__entry(void*, void*, uintptr_t, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
466 probe SetObjectField__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
467 probe SetShortArrayRegion__entry(void*, void*, uintptr_t, uintptr_t, const uint16_t*);
a61af66fc99e Initial load
duke
parents:
diff changeset
468 probe SetShortArrayRegion__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
469 probe SetShortField__entry(void*, void*, uintptr_t, uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
470 probe SetShortField__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
471 probe SetStaticBooleanField__entry(void*, void*, uintptr_t, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
472 probe SetStaticBooleanField__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
473 probe SetStaticByteField__entry(void*, void*, uintptr_t, char);
a61af66fc99e Initial load
duke
parents:
diff changeset
474 probe SetStaticByteField__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
475 probe SetStaticCharField__entry(void*, void*, uintptr_t, uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
476 probe SetStaticCharField__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
477 probe SetStaticDoubleField__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
478 probe SetStaticDoubleField__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
479 probe SetStaticFloatField__entry(void*, void*, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
480 probe SetStaticFloatField__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
481 probe SetStaticIntField__entry(void*, void*, uintptr_t, uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
482 probe SetStaticIntField__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
483 probe SetStaticLongField__entry(void*, void*, uintptr_t, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
484 probe SetStaticLongField__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
485 probe SetStaticObjectField__entry(void*, void*, uintptr_t, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
486 probe SetStaticObjectField__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
487 probe SetStaticShortField__entry(void*, void*, uintptr_t, uint16_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
488 probe SetStaticShortField__return();
a61af66fc99e Initial load
duke
parents:
diff changeset
489 probe Throw__entry(void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
490 probe Throw__return(intptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
491 probe ThrowNew__entry(void*, void*, const char*);
a61af66fc99e Initial load
duke
parents:
diff changeset
492 probe ThrowNew__return(intptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
493 probe ToReflectedField__entry(void*, void*, uintptr_t, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
494 probe ToReflectedField__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
495 probe ToReflectedMethod__entry(void*, void*, uintptr_t, uintptr_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
496 probe ToReflectedMethod__return(void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
497 probe UnregisterNatives__entry(void*, void*);
a61af66fc99e Initial load
duke
parents:
diff changeset
498 probe UnregisterNatives__return(uint32_t);
a61af66fc99e Initial load
duke
parents:
diff changeset
499 };
a61af66fc99e Initial load
duke
parents:
diff changeset
500
a61af66fc99e Initial load
duke
parents:
diff changeset
501 #pragma D attributes Standard/Standard/Common provider hotspot_jni provider
a61af66fc99e Initial load
duke
parents:
diff changeset
502 #pragma D attributes Private/Private/Unknown provider hotspot_jni module
a61af66fc99e Initial load
duke
parents:
diff changeset
503 #pragma D attributes Private/Private/Unknown provider hotspot_jni function
a61af66fc99e Initial load
duke
parents:
diff changeset
504 #pragma D attributes Standard/Standard/Common provider hotspot_jni name
a61af66fc99e Initial load
duke
parents:
diff changeset
505 #pragma D attributes Evolving/Evolving/Common provider hotspot_jni args
a61af66fc99e Initial load
duke
parents:
diff changeset
506