Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/serviceability/jvmti/GetLocalVariable/libGetLocalVars.cpp
41153 views
1
/*
2
* Copyright (c) 2003, 2018, 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
#include <stdio.h>
25
#include <string.h>
26
#include "jvmti.h"
27
28
#ifdef __cplusplus
29
extern "C" {
30
#endif
31
32
#define STATUS_PASSED 0
33
#define STATUS_FAILED 2
34
#define TranslateError(err) "JVMTI error"
35
36
static jint result = STATUS_PASSED;
37
static jvmtiEnv *jvmti = NULL;
38
39
#define DECL_TEST_FUNC(type, Type) \
40
static void \
41
test_##type(jthread thr, int depth, int slot, const char* exp_type) { \
42
j##type val; \
43
jvmtiError err = jvmti->GetLocal##Type(thr, depth, slot, &val); \
44
\
45
printf(" GetLocal%s: %s (%d)\n", #Type, TranslateError(err), err); \
46
if (err != JVMTI_ERROR_NONE) { \
47
printf(" FAIL: GetLocal%s failed to get value from a local %s\n", #Type, exp_type); \
48
result = STATUS_FAILED; \
49
} else { \
50
printf(" GetLocal%s got value from a local %s as expected\n", #Type, exp_type); \
51
} \
52
}
53
54
#define DECL_TEST_INV_SLOT_FUNC(type, Type) \
55
static void \
56
test_##type##_inv_slot(jthread thr, int depth, int slot, const char* exp_type) { \
57
j##type val; \
58
jvmtiError err = jvmti->GetLocal##Type(thr, depth, slot, &val); \
59
\
60
printf(" GetLocal%s: %s (%d)\n", #Type, TranslateError(err), err); \
61
if (err != JVMTI_ERROR_INVALID_SLOT) { \
62
printf(" FAIL: GetLocal%s failed to return JVMTI_ERROR_INVALID_SLOT for local %s\n", #Type, exp_type); \
63
result = STATUS_FAILED; \
64
} else { \
65
printf(" GetLocal%s returned JVMTI_ERROR_INVALID_SLOT for local %s as expected\n", #Type, exp_type); \
66
} \
67
}
68
69
#define DECL_TEST_TYPE_MISMATCH_FUNC(type, Type) \
70
static void \
71
test_##type##_type_mismatch(jthread thr, int depth, int slot, const char* exp_type) { \
72
j##type val; \
73
jvmtiError err = jvmti->GetLocal##Type(thr, depth, slot, &val); \
74
\
75
printf(" GetLocal%s: %s (%d)\n", #Type, TranslateError(err), err); \
76
if (err != JVMTI_ERROR_TYPE_MISMATCH) { \
77
printf(" FAIL: GetLocal%s failed to return JVMTI_ERROR_TYPE_MISMATCH for local %s\n", #Type, exp_type); \
78
result = STATUS_FAILED; \
79
} else { \
80
printf(" GetLocal%s returned JVMTI_ERROR_TYPE_MISMATCH for local %s as expected\n", #Type, exp_type); \
81
} \
82
}
83
84
DECL_TEST_FUNC(int, Int);
85
DECL_TEST_FUNC(float, Float);
86
DECL_TEST_FUNC(long, Long);
87
DECL_TEST_FUNC(double, Double);
88
DECL_TEST_FUNC(object, Object);
89
90
DECL_TEST_INV_SLOT_FUNC(int, Int);
91
DECL_TEST_INV_SLOT_FUNC(float, Float);
92
DECL_TEST_INV_SLOT_FUNC(long, Long);
93
DECL_TEST_INV_SLOT_FUNC(double, Double);
94
DECL_TEST_INV_SLOT_FUNC(object, Object);
95
96
DECL_TEST_TYPE_MISMATCH_FUNC(int, Int);
97
DECL_TEST_TYPE_MISMATCH_FUNC(float, Float);
98
DECL_TEST_TYPE_MISMATCH_FUNC(long, Long);
99
DECL_TEST_TYPE_MISMATCH_FUNC(double, Double);
100
DECL_TEST_TYPE_MISMATCH_FUNC(object, Object);
101
102
static void
103
test_local_byte(jthread thr, int depth, int slot) {
104
printf("\n test_local_byte: BEGIN\n\n");
105
106
test_int(thr, depth, slot, "byte");
107
test_long_inv_slot(thr, depth, slot, "byte");
108
test_float(thr, depth, slot, "byte");
109
test_double_inv_slot(thr, depth, slot, "byte");
110
test_object_type_mismatch(thr, depth, slot, "byte");
111
112
printf("\n test_local_byte: END\n\n");
113
}
114
115
static void
116
test_local_object(jthread thr, int depth, int slot) {
117
printf("\n test_local_object: BEGIN\n\n");
118
119
test_int_type_mismatch(thr, depth, slot, "object");
120
test_long_type_mismatch(thr, depth, slot, "object");
121
test_float_type_mismatch(thr, depth, slot, "object");
122
test_double_type_mismatch(thr, depth, slot, "object");
123
test_object(thr, depth, slot, "object");
124
125
printf("\n test_local_object: END\n\n");
126
}
127
128
static void
129
test_local_double(jthread thr, int depth, int slot) {
130
printf("\n test_local_double: BEGIN\n\n");
131
132
test_int(thr, depth, slot, "double");
133
test_long(thr, depth, slot, "double");
134
test_float(thr, depth, slot, "double");
135
test_double(thr, depth, slot, "double");
136
test_object_type_mismatch(thr, depth, slot, "double");
137
138
printf("\n test_local_double: END\n\n");
139
}
140
141
static void
142
test_local_integer(jthread thr, int depth, int slot) {
143
printf("\n test_local_integer: BEGIN\n\n");
144
145
test_int(thr, depth, slot, "int");
146
test_float(thr, depth, slot, "int");
147
test_object_type_mismatch(thr, depth, slot, "double");
148
149
printf("\n test_local_integer: END\n\n");
150
}
151
152
static void
153
test_local_invalid(jthread thr, int depth, int slot) {
154
printf("\n test_local_invalid: BEGIN\n\n");
155
156
test_int_inv_slot(thr, depth, slot, "invalid");
157
test_long_inv_slot(thr, depth, slot, "invalid");
158
test_float_inv_slot(thr, depth, slot, "invalid");
159
test_double_inv_slot(thr, depth, slot, "invalid");
160
161
printf("\n test_local_invalid: END\n\n");
162
}
163
164
jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved) {
165
jint res;
166
jvmtiError err;
167
static jvmtiCapabilities caps;
168
169
res = jvm->GetEnv((void **) &jvmti, JVMTI_VERSION_9);
170
if (res != JNI_OK || jvmti == NULL) {
171
printf("Wrong result of a valid call to GetEnv!\n");
172
return JNI_ERR;
173
}
174
caps.can_access_local_variables = 1;
175
176
err = jvmti->AddCapabilities(&caps);
177
if (err != JVMTI_ERROR_NONE) {
178
printf("AddCapabilities: unexpected error: %s (%d)\n", TranslateError(err), err);
179
return JNI_ERR;
180
}
181
err = jvmti->GetCapabilities(&caps);
182
if (err != JVMTI_ERROR_NONE) {
183
printf("GetCapabilities: unexpected error: %s (%d)\n", TranslateError(err), err);
184
return JNI_ERR;
185
}
186
if (!caps.can_access_local_variables) {
187
printf("Warning: Access to local variables is not implemented\n");
188
return JNI_ERR;
189
}
190
return JNI_OK;
191
}
192
193
JNIEXPORT jint JNICALL
194
Agent_OnLoad(JavaVM *jvm, char *options, void *reserved) {
195
return Agent_Initialize(jvm, options, reserved);
196
}
197
198
JNIEXPORT jint JNICALL
199
Agent_OnAttach(JavaVM *jvm, char *options, void *reserved) {
200
return Agent_Initialize(jvm, options, reserved);
201
}
202
203
JNIEXPORT void JNICALL
204
Java_GetLocalVars_testLocals(JNIEnv *env, jclass cls, jobject thread) {
205
/*
206
* We test the JVMTI GetLocal<Type> for locals of the method:
207
*
208
* int staticMeth(byte byteArg, Object objArg, double dblArg, int intArg) {
209
* testLocals(Thread.currentThread());
210
* {
211
* int intLoc = 9999;
212
* intArg = intLoc;
213
* }
214
* return intArg;
215
* }
216
*/
217
static const char* METHOD_NAME = "staticMeth";
218
static const char* METHOD_SIGN = "(BLjava/lang/Object;DI)I";
219
static const int Depth = 1;
220
static const int ByteSlot = 0;
221
static const int ObjSlot = 1;
222
static const int DblSlot = 2;
223
static const int IntSlot = 4;
224
static const int InvalidSlot = 5;
225
226
jmethodID mid = NULL;
227
228
if (jvmti == NULL) {
229
printf("JVMTI client was not properly loaded!\n");
230
result = STATUS_FAILED;
231
return;
232
}
233
234
mid = env->GetStaticMethodID(cls, METHOD_NAME, METHOD_SIGN);
235
if (mid == NULL) {
236
printf("Cannot find Method ID for %s%s\n", METHOD_NAME, METHOD_SIGN);
237
result = STATUS_FAILED;
238
return;
239
}
240
241
test_local_byte(thread, Depth, ByteSlot);
242
test_local_object(thread, Depth, ObjSlot);
243
test_local_double(thread, Depth, DblSlot);
244
test_local_integer(thread, Depth, IntSlot);
245
test_local_invalid(thread, Depth, InvalidSlot);
246
}
247
248
JNIEXPORT jint JNICALL
249
Java_GetLocalVars_getStatus(JNIEnv *env, jclass cls) {
250
return result;
251
}
252
253
#ifdef __cplusplus
254
}
255
#endif
256
257