author | bae |
Tue, 13 Jan 2009 16:55:12 +0300 | |
changeset 2375 | bb4dd76ca2c9 |
parent 1090 | c5805b1672a6 |
child 3833 | b666ed188811 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
715 | 2 |
* Copyright 1997-2008 Sun Microsystems, Inc. All Rights Reserved. |
2 | 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. Sun designates this |
|
8 |
* particular file as subject to the "Classpath" exception as provided |
|
9 |
* by Sun in the LICENSE file that accompanied this code. |
|
10 |
* |
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
21 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
22 |
* CA 95054 USA or visit www.sun.com if you need additional information or |
|
23 |
* have any questions. |
|
24 |
*/ |
|
25 |
||
26 |
#ifndef _JAVASOFT_JVM_H_ |
|
27 |
#define _JAVASOFT_JVM_H_ |
|
28 |
||
29 |
#include <sys/stat.h> |
|
30 |
||
31 |
#include "jni.h" |
|
32 |
#include "jvm_md.h" |
|
33 |
||
34 |
#ifdef __cplusplus |
|
35 |
extern "C" { |
|
36 |
#endif |
|
37 |
||
38 |
/* |
|
39 |
* This file contains additional functions exported from the VM. |
|
40 |
* These functions are complementary to the standard JNI support. |
|
41 |
* There are three parts to this file: |
|
42 |
* |
|
43 |
* First, this file contains the VM-related functions needed by native |
|
44 |
* libraries in the standard Java API. For example, the java.lang.Object |
|
45 |
* class needs VM-level functions that wait for and notify monitors. |
|
46 |
* |
|
47 |
* Second, this file contains the functions and constant definitions |
|
48 |
* needed by the byte code verifier and class file format checker. |
|
49 |
* These functions allow the verifier and format checker to be written |
|
50 |
* in a VM-independent way. |
|
51 |
* |
|
52 |
* Third, this file contains various I/O and nerwork operations needed |
|
53 |
* by the standard Java I/O and network APIs. |
|
54 |
*/ |
|
55 |
||
56 |
/* |
|
57 |
* Bump the version number when either of the following happens: |
|
58 |
* |
|
59 |
* 1. There is a change in JVM_* functions. |
|
60 |
* |
|
61 |
* 2. There is a change in the contract between VM and Java classes. |
|
62 |
* For example, if the VM relies on a new private field in Thread |
|
63 |
* class. |
|
64 |
*/ |
|
65 |
||
66 |
#define JVM_INTERFACE_VERSION 4 |
|
67 |
||
68 |
JNIEXPORT jint JNICALL |
|
69 |
JVM_GetInterfaceVersion(void); |
|
70 |
||
71 |
/************************************************************************* |
|
72 |
PART 1: Functions for Native Libraries |
|
73 |
************************************************************************/ |
|
74 |
/* |
|
75 |
* java.lang.Object |
|
76 |
*/ |
|
77 |
JNIEXPORT jint JNICALL |
|
78 |
JVM_IHashCode(JNIEnv *env, jobject obj); |
|
79 |
||
80 |
JNIEXPORT void JNICALL |
|
81 |
JVM_MonitorWait(JNIEnv *env, jobject obj, jlong ms); |
|
82 |
||
83 |
JNIEXPORT void JNICALL |
|
84 |
JVM_MonitorNotify(JNIEnv *env, jobject obj); |
|
85 |
||
86 |
JNIEXPORT void JNICALL |
|
87 |
JVM_MonitorNotifyAll(JNIEnv *env, jobject obj); |
|
88 |
||
89 |
JNIEXPORT jobject JNICALL |
|
90 |
JVM_Clone(JNIEnv *env, jobject obj); |
|
91 |
||
92 |
/* |
|
93 |
* java.lang.String |
|
94 |
*/ |
|
95 |
JNIEXPORT jstring JNICALL |
|
96 |
JVM_InternString(JNIEnv *env, jstring str); |
|
97 |
||
98 |
/* |
|
99 |
* java.lang.System |
|
100 |
*/ |
|
101 |
JNIEXPORT jlong JNICALL |
|
102 |
JVM_CurrentTimeMillis(JNIEnv *env, jclass ignored); |
|
103 |
||
104 |
JNIEXPORT jlong JNICALL |
|
105 |
JVM_NanoTime(JNIEnv *env, jclass ignored); |
|
106 |
||
107 |
JNIEXPORT void JNICALL |
|
108 |
JVM_ArrayCopy(JNIEnv *env, jclass ignored, jobject src, jint src_pos, |
|
109 |
jobject dst, jint dst_pos, jint length); |
|
110 |
||
111 |
JNIEXPORT jobject JNICALL |
|
112 |
JVM_InitProperties(JNIEnv *env, jobject p); |
|
113 |
||
114 |
/* |
|
115 |
* java.io.File |
|
116 |
*/ |
|
117 |
JNIEXPORT void JNICALL |
|
118 |
JVM_OnExit(void (*func)(void)); |
|
119 |
||
120 |
/* |
|
121 |
* java.lang.Runtime |
|
122 |
*/ |
|
123 |
JNIEXPORT void JNICALL |
|
124 |
JVM_Exit(jint code); |
|
125 |
||
126 |
JNIEXPORT void JNICALL |
|
127 |
JVM_Halt(jint code); |
|
128 |
||
129 |
JNIEXPORT void JNICALL |
|
130 |
JVM_GC(void); |
|
131 |
||
132 |
/* Returns the number of real-time milliseconds that have elapsed since the |
|
133 |
* least-recently-inspected heap object was last inspected by the garbage |
|
134 |
* collector. |
|
135 |
* |
|
136 |
* For simple stop-the-world collectors this value is just the time |
|
137 |
* since the most recent collection. For generational collectors it is the |
|
138 |
* time since the oldest generation was most recently collected. Other |
|
139 |
* collectors are free to return a pessimistic estimate of the elapsed time, or |
|
140 |
* simply the time since the last full collection was performed. |
|
141 |
* |
|
142 |
* Note that in the presence of reference objects, a given object that is no |
|
143 |
* longer strongly reachable may have to be inspected multiple times before it |
|
144 |
* can be reclaimed. |
|
145 |
*/ |
|
146 |
JNIEXPORT jlong JNICALL |
|
147 |
JVM_MaxObjectInspectionAge(void); |
|
148 |
||
149 |
JNIEXPORT void JNICALL |
|
150 |
JVM_TraceInstructions(jboolean on); |
|
151 |
||
152 |
JNIEXPORT void JNICALL |
|
153 |
JVM_TraceMethodCalls(jboolean on); |
|
154 |
||
155 |
JNIEXPORT jlong JNICALL |
|
156 |
JVM_TotalMemory(void); |
|
157 |
||
158 |
JNIEXPORT jlong JNICALL |
|
159 |
JVM_FreeMemory(void); |
|
160 |
||
161 |
JNIEXPORT jlong JNICALL |
|
162 |
JVM_MaxMemory(void); |
|
163 |
||
164 |
JNIEXPORT jint JNICALL |
|
165 |
JVM_ActiveProcessorCount(void); |
|
166 |
||
167 |
JNIEXPORT void * JNICALL |
|
168 |
JVM_LoadLibrary(const char *name); |
|
169 |
||
170 |
JNIEXPORT void JNICALL |
|
171 |
JVM_UnloadLibrary(void * handle); |
|
172 |
||
173 |
JNIEXPORT void * JNICALL |
|
174 |
JVM_FindLibraryEntry(void *handle, const char *name); |
|
175 |
||
176 |
JNIEXPORT jboolean JNICALL |
|
177 |
JVM_IsSupportedJNIVersion(jint version); |
|
178 |
||
179 |
/* |
|
180 |
* java.lang.Float and java.lang.Double |
|
181 |
*/ |
|
182 |
JNIEXPORT jboolean JNICALL |
|
183 |
JVM_IsNaN(jdouble d); |
|
184 |
||
185 |
/* |
|
186 |
* java.lang.Throwable |
|
187 |
*/ |
|
188 |
JNIEXPORT void JNICALL |
|
189 |
JVM_FillInStackTrace(JNIEnv *env, jobject throwable); |
|
190 |
||
191 |
JNIEXPORT void JNICALL |
|
192 |
JVM_PrintStackTrace(JNIEnv *env, jobject throwable, jobject printable); |
|
193 |
||
194 |
JNIEXPORT jint JNICALL |
|
195 |
JVM_GetStackTraceDepth(JNIEnv *env, jobject throwable); |
|
196 |
||
197 |
JNIEXPORT jobject JNICALL |
|
198 |
JVM_GetStackTraceElement(JNIEnv *env, jobject throwable, jint index); |
|
199 |
||
200 |
/* |
|
201 |
* java.lang.Compiler |
|
202 |
*/ |
|
203 |
JNIEXPORT void JNICALL |
|
204 |
JVM_InitializeCompiler (JNIEnv *env, jclass compCls); |
|
205 |
||
206 |
JNIEXPORT jboolean JNICALL |
|
207 |
JVM_IsSilentCompiler(JNIEnv *env, jclass compCls); |
|
208 |
||
209 |
JNIEXPORT jboolean JNICALL |
|
210 |
JVM_CompileClass(JNIEnv *env, jclass compCls, jclass cls); |
|
211 |
||
212 |
JNIEXPORT jboolean JNICALL |
|
213 |
JVM_CompileClasses(JNIEnv *env, jclass cls, jstring jname); |
|
214 |
||
215 |
JNIEXPORT jobject JNICALL |
|
216 |
JVM_CompilerCommand(JNIEnv *env, jclass compCls, jobject arg); |
|
217 |
||
218 |
JNIEXPORT void JNICALL |
|
219 |
JVM_EnableCompiler(JNIEnv *env, jclass compCls); |
|
220 |
||
221 |
JNIEXPORT void JNICALL |
|
222 |
JVM_DisableCompiler(JNIEnv *env, jclass compCls); |
|
223 |
||
224 |
/* |
|
225 |
* java.lang.Thread |
|
226 |
*/ |
|
227 |
JNIEXPORT void JNICALL |
|
228 |
JVM_StartThread(JNIEnv *env, jobject thread); |
|
229 |
||
230 |
JNIEXPORT void JNICALL |
|
231 |
JVM_StopThread(JNIEnv *env, jobject thread, jobject exception); |
|
232 |
||
233 |
JNIEXPORT jboolean JNICALL |
|
234 |
JVM_IsThreadAlive(JNIEnv *env, jobject thread); |
|
235 |
||
236 |
JNIEXPORT void JNICALL |
|
237 |
JVM_SuspendThread(JNIEnv *env, jobject thread); |
|
238 |
||
239 |
JNIEXPORT void JNICALL |
|
240 |
JVM_ResumeThread(JNIEnv *env, jobject thread); |
|
241 |
||
242 |
JNIEXPORT void JNICALL |
|
243 |
JVM_SetThreadPriority(JNIEnv *env, jobject thread, jint prio); |
|
244 |
||
245 |
JNIEXPORT void JNICALL |
|
246 |
JVM_Yield(JNIEnv *env, jclass threadClass); |
|
247 |
||
248 |
JNIEXPORT void JNICALL |
|
249 |
JVM_Sleep(JNIEnv *env, jclass threadClass, jlong millis); |
|
250 |
||
251 |
JNIEXPORT jobject JNICALL |
|
252 |
JVM_CurrentThread(JNIEnv *env, jclass threadClass); |
|
253 |
||
254 |
JNIEXPORT jint JNICALL |
|
255 |
JVM_CountStackFrames(JNIEnv *env, jobject thread); |
|
256 |
||
257 |
JNIEXPORT void JNICALL |
|
258 |
JVM_Interrupt(JNIEnv *env, jobject thread); |
|
259 |
||
260 |
JNIEXPORT jboolean JNICALL |
|
261 |
JVM_IsInterrupted(JNIEnv *env, jobject thread, jboolean clearInterrupted); |
|
262 |
||
263 |
JNIEXPORT jboolean JNICALL |
|
264 |
JVM_HoldsLock(JNIEnv *env, jclass threadClass, jobject obj); |
|
265 |
||
266 |
JNIEXPORT void JNICALL |
|
267 |
JVM_DumpAllStacks(JNIEnv *env, jclass unused); |
|
268 |
||
269 |
JNIEXPORT jobjectArray JNICALL |
|
270 |
JVM_GetAllThreads(JNIEnv *env, jclass dummy); |
|
271 |
||
272 |
/* getStackTrace() and getAllStackTraces() method */ |
|
273 |
JNIEXPORT jobjectArray JNICALL |
|
274 |
JVM_DumpThreads(JNIEnv *env, jclass threadClass, jobjectArray threads); |
|
275 |
||
276 |
/* |
|
277 |
* java.lang.SecurityManager |
|
278 |
*/ |
|
279 |
JNIEXPORT jclass JNICALL |
|
280 |
JVM_CurrentLoadedClass(JNIEnv *env); |
|
281 |
||
282 |
JNIEXPORT jobject JNICALL |
|
283 |
JVM_CurrentClassLoader(JNIEnv *env); |
|
284 |
||
285 |
JNIEXPORT jobjectArray JNICALL |
|
286 |
JVM_GetClassContext(JNIEnv *env); |
|
287 |
||
288 |
JNIEXPORT jint JNICALL |
|
289 |
JVM_ClassDepth(JNIEnv *env, jstring name); |
|
290 |
||
291 |
JNIEXPORT jint JNICALL |
|
292 |
JVM_ClassLoaderDepth(JNIEnv *env); |
|
293 |
||
294 |
/* |
|
295 |
* java.lang.Package |
|
296 |
*/ |
|
297 |
JNIEXPORT jstring JNICALL |
|
298 |
JVM_GetSystemPackage(JNIEnv *env, jstring name); |
|
299 |
||
300 |
JNIEXPORT jobjectArray JNICALL |
|
301 |
JVM_GetSystemPackages(JNIEnv *env); |
|
302 |
||
303 |
/* |
|
304 |
* java.io.ObjectInputStream |
|
305 |
*/ |
|
306 |
JNIEXPORT jobject JNICALL |
|
307 |
JVM_AllocateNewObject(JNIEnv *env, jobject obj, jclass currClass, |
|
308 |
jclass initClass); |
|
309 |
||
310 |
JNIEXPORT jobject JNICALL |
|
311 |
JVM_AllocateNewArray(JNIEnv *env, jobject obj, jclass currClass, |
|
312 |
jint length); |
|
313 |
||
314 |
JNIEXPORT jobject JNICALL |
|
315 |
JVM_LatestUserDefinedLoader(JNIEnv *env); |
|
316 |
||
317 |
/* |
|
318 |
* This function has been deprecated and should not be considered |
|
319 |
* part of the specified JVM interface. |
|
320 |
*/ |
|
321 |
JNIEXPORT jclass JNICALL |
|
322 |
JVM_LoadClass0(JNIEnv *env, jobject obj, jclass currClass, |
|
323 |
jstring currClassName); |
|
324 |
||
325 |
/* |
|
326 |
* java.lang.reflect.Array |
|
327 |
*/ |
|
328 |
JNIEXPORT jint JNICALL |
|
329 |
JVM_GetArrayLength(JNIEnv *env, jobject arr); |
|
330 |
||
331 |
JNIEXPORT jobject JNICALL |
|
332 |
JVM_GetArrayElement(JNIEnv *env, jobject arr, jint index); |
|
333 |
||
334 |
JNIEXPORT jvalue JNICALL |
|
335 |
JVM_GetPrimitiveArrayElement(JNIEnv *env, jobject arr, jint index, jint wCode); |
|
336 |
||
337 |
JNIEXPORT void JNICALL |
|
338 |
JVM_SetArrayElement(JNIEnv *env, jobject arr, jint index, jobject val); |
|
339 |
||
340 |
JNIEXPORT void JNICALL |
|
341 |
JVM_SetPrimitiveArrayElement(JNIEnv *env, jobject arr, jint index, jvalue v, |
|
342 |
unsigned char vCode); |
|
343 |
||
344 |
JNIEXPORT jobject JNICALL |
|
345 |
JVM_NewArray(JNIEnv *env, jclass eltClass, jint length); |
|
346 |
||
347 |
JNIEXPORT jobject JNICALL |
|
348 |
JVM_NewMultiArray(JNIEnv *env, jclass eltClass, jintArray dim); |
|
349 |
||
350 |
/* |
|
351 |
* java.lang.Class and java.lang.ClassLoader |
|
352 |
*/ |
|
353 |
/* |
|
354 |
* Returns the class in which the code invoking the native method |
|
355 |
* belongs. |
|
356 |
* |
|
357 |
* Note that in JDK 1.1, native methods did not create a frame. |
|
358 |
* In 1.2, they do. Therefore native methods like Class.forName |
|
359 |
* can no longer look at the current frame for the caller class. |
|
360 |
*/ |
|
361 |
JNIEXPORT jclass JNICALL |
|
362 |
JVM_GetCallerClass(JNIEnv *env, int n); |
|
363 |
||
364 |
/* |
|
365 |
* Find primitive classes |
|
366 |
* utf: class name |
|
367 |
*/ |
|
368 |
JNIEXPORT jclass JNICALL |
|
369 |
JVM_FindPrimitiveClass(JNIEnv *env, const char *utf); |
|
370 |
||
371 |
/* |
|
372 |
* Link the class |
|
373 |
*/ |
|
374 |
JNIEXPORT void JNICALL |
|
375 |
JVM_ResolveClass(JNIEnv *env, jclass cls); |
|
376 |
||
377 |
/* |
|
378 |
* Find a class from a given class loader. Throw ClassNotFoundException |
|
379 |
* or NoClassDefFoundError depending on the value of the last |
|
380 |
* argument. |
|
381 |
*/ |
|
382 |
JNIEXPORT jclass JNICALL |
|
383 |
JVM_FindClassFromClassLoader(JNIEnv *env, const char *name, jboolean init, |
|
384 |
jobject loader, jboolean throwError); |
|
385 |
||
386 |
/* |
|
387 |
* Find a class from a given class. |
|
388 |
*/ |
|
389 |
JNIEXPORT jclass JNICALL |
|
390 |
JVM_FindClassFromClass(JNIEnv *env, const char *name, jboolean init, |
|
391 |
jclass from); |
|
392 |
||
393 |
/* Find a loaded class cached by the VM */ |
|
394 |
JNIEXPORT jclass JNICALL |
|
395 |
JVM_FindLoadedClass(JNIEnv *env, jobject loader, jstring name); |
|
396 |
||
397 |
/* Define a class */ |
|
398 |
JNIEXPORT jclass JNICALL |
|
399 |
JVM_DefineClass(JNIEnv *env, const char *name, jobject loader, const jbyte *buf, |
|
400 |
jsize len, jobject pd); |
|
401 |
||
402 |
/* Define a class with a source (added in JDK1.5) */ |
|
403 |
JNIEXPORT jclass JNICALL |
|
404 |
JVM_DefineClassWithSource(JNIEnv *env, const char *name, jobject loader, |
|
405 |
const jbyte *buf, jsize len, jobject pd, |
|
406 |
const char *source); |
|
407 |
||
408 |
/* |
|
409 |
* Reflection support functions |
|
410 |
*/ |
|
411 |
||
412 |
JNIEXPORT jstring JNICALL |
|
413 |
JVM_GetClassName(JNIEnv *env, jclass cls); |
|
414 |
||
415 |
JNIEXPORT jobjectArray JNICALL |
|
416 |
JVM_GetClassInterfaces(JNIEnv *env, jclass cls); |
|
417 |
||
418 |
JNIEXPORT jobject JNICALL |
|
419 |
JVM_GetClassLoader(JNIEnv *env, jclass cls); |
|
420 |
||
421 |
JNIEXPORT jboolean JNICALL |
|
422 |
JVM_IsInterface(JNIEnv *env, jclass cls); |
|
423 |
||
424 |
JNIEXPORT jobjectArray JNICALL |
|
425 |
JVM_GetClassSigners(JNIEnv *env, jclass cls); |
|
426 |
||
427 |
JNIEXPORT void JNICALL |
|
428 |
JVM_SetClassSigners(JNIEnv *env, jclass cls, jobjectArray signers); |
|
429 |
||
430 |
JNIEXPORT jobject JNICALL |
|
431 |
JVM_GetProtectionDomain(JNIEnv *env, jclass cls); |
|
432 |
||
433 |
JNIEXPORT void JNICALL |
|
434 |
JVM_SetProtectionDomain(JNIEnv *env, jclass cls, jobject protection_domain); |
|
435 |
||
436 |
JNIEXPORT jboolean JNICALL |
|
437 |
JVM_IsArrayClass(JNIEnv *env, jclass cls); |
|
438 |
||
439 |
JNIEXPORT jboolean JNICALL |
|
440 |
JVM_IsPrimitiveClass(JNIEnv *env, jclass cls); |
|
441 |
||
442 |
JNIEXPORT jclass JNICALL |
|
443 |
JVM_GetComponentType(JNIEnv *env, jclass cls); |
|
444 |
||
445 |
JNIEXPORT jint JNICALL |
|
446 |
JVM_GetClassModifiers(JNIEnv *env, jclass cls); |
|
447 |
||
448 |
JNIEXPORT jobjectArray JNICALL |
|
449 |
JVM_GetDeclaredClasses(JNIEnv *env, jclass ofClass); |
|
450 |
||
451 |
JNIEXPORT jclass JNICALL |
|
452 |
JVM_GetDeclaringClass(JNIEnv *env, jclass ofClass); |
|
453 |
||
454 |
/* Generics support (JDK 1.5) */ |
|
455 |
JNIEXPORT jstring JNICALL |
|
456 |
JVM_GetClassSignature(JNIEnv *env, jclass cls); |
|
457 |
||
458 |
/* Annotations support (JDK 1.5) */ |
|
459 |
JNIEXPORT jbyteArray JNICALL |
|
460 |
JVM_GetClassAnnotations(JNIEnv *env, jclass cls); |
|
461 |
||
462 |
/* |
|
463 |
* New (JDK 1.4) reflection implementation |
|
464 |
*/ |
|
465 |
||
466 |
JNIEXPORT jobjectArray JNICALL |
|
467 |
JVM_GetClassDeclaredMethods(JNIEnv *env, jclass ofClass, jboolean publicOnly); |
|
468 |
||
469 |
JNIEXPORT jobjectArray JNICALL |
|
470 |
JVM_GetClassDeclaredFields(JNIEnv *env, jclass ofClass, jboolean publicOnly); |
|
471 |
||
472 |
JNIEXPORT jobjectArray JNICALL |
|
473 |
JVM_GetClassDeclaredConstructors(JNIEnv *env, jclass ofClass, jboolean publicOnly); |
|
474 |
||
475 |
/* Differs from JVM_GetClassModifiers in treatment of inner classes. |
|
476 |
This returns the access flags for the class as specified in the |
|
477 |
class file rather than searching the InnerClasses attribute (if |
|
478 |
present) to find the source-level access flags. Only the values of |
|
479 |
the low 13 bits (i.e., a mask of 0x1FFF) are guaranteed to be |
|
480 |
valid. */ |
|
481 |
JNIEXPORT jint JNICALL |
|
482 |
JVM_GetClassAccessFlags(JNIEnv *env, jclass cls); |
|
483 |
||
484 |
/* The following two reflection routines are still needed due to startup time issues */ |
|
485 |
/* |
|
486 |
* java.lang.reflect.Method |
|
487 |
*/ |
|
488 |
JNIEXPORT jobject JNICALL |
|
489 |
JVM_InvokeMethod(JNIEnv *env, jobject method, jobject obj, jobjectArray args0); |
|
490 |
||
491 |
/* |
|
492 |
* java.lang.reflect.Constructor |
|
493 |
*/ |
|
494 |
JNIEXPORT jobject JNICALL |
|
495 |
JVM_NewInstanceFromConstructor(JNIEnv *env, jobject c, jobjectArray args0); |
|
496 |
||
497 |
/* |
|
498 |
* Constant pool access; currently used to implement reflective access to annotations (JDK 1.5) |
|
499 |
*/ |
|
500 |
||
501 |
JNIEXPORT jobject JNICALL |
|
502 |
JVM_GetClassConstantPool(JNIEnv *env, jclass cls); |
|
503 |
||
504 |
JNIEXPORT jint JNICALL JVM_ConstantPoolGetSize |
|
505 |
(JNIEnv *env, jobject unused, jobject jcpool); |
|
506 |
||
507 |
JNIEXPORT jclass JNICALL JVM_ConstantPoolGetClassAt |
|
508 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index); |
|
509 |
||
510 |
JNIEXPORT jclass JNICALL JVM_ConstantPoolGetClassAtIfLoaded |
|
511 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index); |
|
512 |
||
513 |
JNIEXPORT jobject JNICALL JVM_ConstantPoolGetMethodAt |
|
514 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index); |
|
515 |
||
516 |
JNIEXPORT jobject JNICALL JVM_ConstantPoolGetMethodAtIfLoaded |
|
517 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index); |
|
518 |
||
519 |
JNIEXPORT jobject JNICALL JVM_ConstantPoolGetFieldAt |
|
520 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index); |
|
521 |
||
522 |
JNIEXPORT jobject JNICALL JVM_ConstantPoolGetFieldAtIfLoaded |
|
523 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index); |
|
524 |
||
525 |
JNIEXPORT jobjectArray JNICALL JVM_ConstantPoolGetMemberRefInfoAt |
|
526 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index); |
|
527 |
||
528 |
JNIEXPORT jint JNICALL JVM_ConstantPoolGetIntAt |
|
529 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index); |
|
530 |
||
531 |
JNIEXPORT jlong JNICALL JVM_ConstantPoolGetLongAt |
|
532 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index); |
|
533 |
||
534 |
JNIEXPORT jfloat JNICALL JVM_ConstantPoolGetFloatAt |
|
535 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index); |
|
536 |
||
537 |
JNIEXPORT jdouble JNICALL JVM_ConstantPoolGetDoubleAt |
|
538 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index); |
|
539 |
||
540 |
JNIEXPORT jstring JNICALL JVM_ConstantPoolGetStringAt |
|
541 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index); |
|
542 |
||
543 |
JNIEXPORT jstring JNICALL JVM_ConstantPoolGetUTF8At |
|
544 |
(JNIEnv *env, jobject unused, jobject jcpool, jint index); |
|
545 |
||
546 |
/* |
|
547 |
* java.security.* |
|
548 |
*/ |
|
549 |
||
550 |
JNIEXPORT jobject JNICALL |
|
551 |
JVM_DoPrivileged(JNIEnv *env, jclass cls, |
|
552 |
jobject action, jobject context, jboolean wrapException); |
|
553 |
||
554 |
JNIEXPORT jobject JNICALL |
|
555 |
JVM_GetInheritedAccessControlContext(JNIEnv *env, jclass cls); |
|
556 |
||
557 |
JNIEXPORT jobject JNICALL |
|
558 |
JVM_GetStackAccessControlContext(JNIEnv *env, jclass cls); |
|
559 |
||
560 |
/* |
|
561 |
* Signal support, used to implement the shutdown sequence. Every VM must |
|
562 |
* support JVM_SIGINT and JVM_SIGTERM, raising the former for user interrupts |
|
563 |
* (^C) and the latter for external termination (kill, system shutdown, etc.). |
|
564 |
* Other platform-dependent signal values may also be supported. |
|
565 |
*/ |
|
566 |
||
567 |
JNIEXPORT void * JNICALL |
|
568 |
JVM_RegisterSignal(jint sig, void *handler); |
|
569 |
||
570 |
JNIEXPORT jboolean JNICALL |
|
571 |
JVM_RaiseSignal(jint sig); |
|
572 |
||
573 |
JNIEXPORT jint JNICALL |
|
574 |
JVM_FindSignal(const char *name); |
|
575 |
||
576 |
/* |
|
577 |
* Retrieve the assertion directives for the specified class. |
|
578 |
*/ |
|
579 |
JNIEXPORT jboolean JNICALL |
|
580 |
JVM_DesiredAssertionStatus(JNIEnv *env, jclass unused, jclass cls); |
|
581 |
||
582 |
/* |
|
583 |
* Retrieve the assertion directives from the VM. |
|
584 |
*/ |
|
585 |
JNIEXPORT jobject JNICALL |
|
586 |
JVM_AssertionStatusDirectives(JNIEnv *env, jclass unused); |
|
587 |
||
588 |
/* |
|
589 |
* java.util.concurrent.AtomicLong |
|
590 |
*/ |
|
591 |
JNIEXPORT jboolean JNICALL |
|
592 |
JVM_SupportsCX8(void); |
|
593 |
||
406
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
594 |
/* |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
595 |
* com.sun.dtrace.jsdt support |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
596 |
*/ |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
597 |
|
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
598 |
#define JVM_TRACING_DTRACE_VERSION 1 |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
599 |
|
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
600 |
/* |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
601 |
* Structure to pass one probe description to JVM |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
602 |
*/ |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
603 |
typedef struct { |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
604 |
jmethodID method; |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
605 |
jstring function; |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
606 |
jstring name; |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
607 |
void* reserved[4]; // for future use |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
608 |
} JVM_DTraceProbe; |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
609 |
|
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
610 |
/** |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
611 |
* Encapsulates the stability ratings for a DTrace provider field |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
612 |
*/ |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
613 |
typedef struct { |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
614 |
jint nameStability; |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
615 |
jint dataStability; |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
616 |
jint dependencyClass; |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
617 |
} JVM_DTraceInterfaceAttributes; |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
618 |
|
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
619 |
/* |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
620 |
* Structure to pass one provider description to JVM |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
621 |
*/ |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
622 |
typedef struct { |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
623 |
jstring name; |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
624 |
JVM_DTraceProbe* probes; |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
625 |
jint probe_count; |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
626 |
JVM_DTraceInterfaceAttributes providerAttributes; |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
627 |
JVM_DTraceInterfaceAttributes moduleAttributes; |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
628 |
JVM_DTraceInterfaceAttributes functionAttributes; |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
629 |
JVM_DTraceInterfaceAttributes nameAttributes; |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
630 |
JVM_DTraceInterfaceAttributes argsAttributes; |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
631 |
void* reserved[4]; // for future use |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
632 |
} JVM_DTraceProvider; |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
633 |
|
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
634 |
/* |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
635 |
* Get the version number the JVM was built with |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
636 |
*/ |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
637 |
JNIEXPORT jint JNICALL |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
638 |
JVM_DTraceGetVersion(JNIEnv* env); |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
639 |
|
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
640 |
/* |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
641 |
* Register new probe with given signature, return global handle |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
642 |
* |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
643 |
* The version passed in is the version that the library code was |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
644 |
* built with. |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
645 |
*/ |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
646 |
JNIEXPORT jlong JNICALL |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
647 |
JVM_DTraceActivate(JNIEnv* env, jint version, jstring module_name, |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
648 |
jint providers_count, JVM_DTraceProvider* providers); |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
649 |
|
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
650 |
/* |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
651 |
* Check JSDT probe |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
652 |
*/ |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
653 |
JNIEXPORT jboolean JNICALL |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
654 |
JVM_DTraceIsProbeEnabled(JNIEnv* env, jmethodID method); |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
655 |
|
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
656 |
/* |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
657 |
* Destroy custom DOF |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
658 |
*/ |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
659 |
JNIEXPORT void JNICALL |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
660 |
JVM_DTraceDispose(JNIEnv* env, jlong activation_handle); |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
661 |
|
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
662 |
/* |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
663 |
* Check to see if DTrace is supported by OS |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
664 |
*/ |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
665 |
JNIEXPORT jboolean JNICALL |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
666 |
JVM_DTraceIsSupported(JNIEnv* env); |
bde3a21bcab0
6690122: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents:
2
diff
changeset
|
667 |
|
2 | 668 |
/************************************************************************* |
669 |
PART 2: Support for the Verifier and Class File Format Checker |
|
670 |
************************************************************************/ |
|
671 |
/* |
|
672 |
* Return the class name in UTF format. The result is valid |
|
673 |
* until JVM_ReleaseUTf is called. |
|
674 |
* |
|
675 |
* The caller must treat the string as a constant and not modify it |
|
676 |
* in any way. |
|
677 |
*/ |
|
678 |
JNIEXPORT const char * JNICALL |
|
679 |
JVM_GetClassNameUTF(JNIEnv *env, jclass cb); |
|
680 |
||
681 |
/* |
|
682 |
* Returns the constant pool types in the buffer provided by "types." |
|
683 |
*/ |
|
684 |
JNIEXPORT void JNICALL |
|
685 |
JVM_GetClassCPTypes(JNIEnv *env, jclass cb, unsigned char *types); |
|
686 |
||
687 |
/* |
|
688 |
* Returns the number of Constant Pool entries. |
|
689 |
*/ |
|
690 |
JNIEXPORT jint JNICALL |
|
691 |
JVM_GetClassCPEntriesCount(JNIEnv *env, jclass cb); |
|
692 |
||
693 |
/* |
|
694 |
* Returns the number of *declared* fields or methods. |
|
695 |
*/ |
|
696 |
JNIEXPORT jint JNICALL |
|
697 |
JVM_GetClassFieldsCount(JNIEnv *env, jclass cb); |
|
698 |
||
699 |
JNIEXPORT jint JNICALL |
|
700 |
JVM_GetClassMethodsCount(JNIEnv *env, jclass cb); |
|
701 |
||
702 |
/* |
|
703 |
* Returns the CP indexes of exceptions raised by a given method. |
|
704 |
* Places the result in the given buffer. |
|
705 |
* |
|
706 |
* The method is identified by method_index. |
|
707 |
*/ |
|
708 |
JNIEXPORT void JNICALL |
|
709 |
JVM_GetMethodIxExceptionIndexes(JNIEnv *env, jclass cb, jint method_index, |
|
710 |
unsigned short *exceptions); |
|
711 |
/* |
|
712 |
* Returns the number of exceptions raised by a given method. |
|
713 |
* The method is identified by method_index. |
|
714 |
*/ |
|
715 |
JNIEXPORT jint JNICALL |
|
716 |
JVM_GetMethodIxExceptionsCount(JNIEnv *env, jclass cb, jint method_index); |
|
717 |
||
718 |
/* |
|
719 |
* Returns the byte code sequence of a given method. |
|
720 |
* Places the result in the given buffer. |
|
721 |
* |
|
722 |
* The method is identified by method_index. |
|
723 |
*/ |
|
724 |
JNIEXPORT void JNICALL |
|
725 |
JVM_GetMethodIxByteCode(JNIEnv *env, jclass cb, jint method_index, |
|
726 |
unsigned char *code); |
|
727 |
||
728 |
/* |
|
729 |
* Returns the length of the byte code sequence of a given method. |
|
730 |
* The method is identified by method_index. |
|
731 |
*/ |
|
732 |
JNIEXPORT jint JNICALL |
|
733 |
JVM_GetMethodIxByteCodeLength(JNIEnv *env, jclass cb, jint method_index); |
|
734 |
||
735 |
/* |
|
736 |
* A structure used to a capture exception table entry in a Java method. |
|
737 |
*/ |
|
738 |
typedef struct { |
|
739 |
jint start_pc; |
|
740 |
jint end_pc; |
|
741 |
jint handler_pc; |
|
742 |
jint catchType; |
|
743 |
} JVM_ExceptionTableEntryType; |
|
744 |
||
745 |
/* |
|
746 |
* Returns the exception table entry at entry_index of a given method. |
|
747 |
* Places the result in the given buffer. |
|
748 |
* |
|
749 |
* The method is identified by method_index. |
|
750 |
*/ |
|
751 |
JNIEXPORT void JNICALL |
|
752 |
JVM_GetMethodIxExceptionTableEntry(JNIEnv *env, jclass cb, jint method_index, |
|
753 |
jint entry_index, |
|
754 |
JVM_ExceptionTableEntryType *entry); |
|
755 |
||
756 |
/* |
|
757 |
* Returns the length of the exception table of a given method. |
|
758 |
* The method is identified by method_index. |
|
759 |
*/ |
|
760 |
JNIEXPORT jint JNICALL |
|
761 |
JVM_GetMethodIxExceptionTableLength(JNIEnv *env, jclass cb, int index); |
|
762 |
||
763 |
/* |
|
764 |
* Returns the modifiers of a given field. |
|
765 |
* The field is identified by field_index. |
|
766 |
*/ |
|
767 |
JNIEXPORT jint JNICALL |
|
768 |
JVM_GetFieldIxModifiers(JNIEnv *env, jclass cb, int index); |
|
769 |
||
770 |
/* |
|
771 |
* Returns the modifiers of a given method. |
|
772 |
* The method is identified by method_index. |
|
773 |
*/ |
|
774 |
JNIEXPORT jint JNICALL |
|
775 |
JVM_GetMethodIxModifiers(JNIEnv *env, jclass cb, int index); |
|
776 |
||
777 |
/* |
|
778 |
* Returns the number of local variables of a given method. |
|
779 |
* The method is identified by method_index. |
|
780 |
*/ |
|
781 |
JNIEXPORT jint JNICALL |
|
782 |
JVM_GetMethodIxLocalsCount(JNIEnv *env, jclass cb, int index); |
|
783 |
||
784 |
/* |
|
785 |
* Returns the number of arguments (including this pointer) of a given method. |
|
786 |
* The method is identified by method_index. |
|
787 |
*/ |
|
788 |
JNIEXPORT jint JNICALL |
|
789 |
JVM_GetMethodIxArgsSize(JNIEnv *env, jclass cb, int index); |
|
790 |
||
791 |
/* |
|
792 |
* Returns the maximum amount of stack (in words) used by a given method. |
|
793 |
* The method is identified by method_index. |
|
794 |
*/ |
|
795 |
JNIEXPORT jint JNICALL |
|
796 |
JVM_GetMethodIxMaxStack(JNIEnv *env, jclass cb, int index); |
|
797 |
||
798 |
/* |
|
799 |
* Is a given method a constructor. |
|
800 |
* The method is identified by method_index. |
|
801 |
*/ |
|
802 |
JNIEXPORT jboolean JNICALL |
|
803 |
JVM_IsConstructorIx(JNIEnv *env, jclass cb, int index); |
|
804 |
||
805 |
/* |
|
806 |
* Returns the name of a given method in UTF format. |
|
807 |
* The result remains valid until JVM_ReleaseUTF is called. |
|
808 |
* |
|
809 |
* The caller must treat the string as a constant and not modify it |
|
810 |
* in any way. |
|
811 |
*/ |
|
812 |
JNIEXPORT const char * JNICALL |
|
813 |
JVM_GetMethodIxNameUTF(JNIEnv *env, jclass cb, jint index); |
|
814 |
||
815 |
/* |
|
816 |
* Returns the signature of a given method in UTF format. |
|
817 |
* The result remains valid until JVM_ReleaseUTF is called. |
|
818 |
* |
|
819 |
* The caller must treat the string as a constant and not modify it |
|
820 |
* in any way. |
|
821 |
*/ |
|
822 |
JNIEXPORT const char * JNICALL |
|
823 |
JVM_GetMethodIxSignatureUTF(JNIEnv *env, jclass cb, jint index); |
|
824 |
||
825 |
/* |
|
826 |
* Returns the name of the field refered to at a given constant pool |
|
827 |
* index. |
|
828 |
* |
|
829 |
* The result is in UTF format and remains valid until JVM_ReleaseUTF |
|
830 |
* is called. |
|
831 |
* |
|
832 |
* The caller must treat the string as a constant and not modify it |
|
833 |
* in any way. |
|
834 |
*/ |
|
835 |
JNIEXPORT const char * JNICALL |
|
836 |
JVM_GetCPFieldNameUTF(JNIEnv *env, jclass cb, jint index); |
|
837 |
||
838 |
/* |
|
839 |
* Returns the name of the method refered to at a given constant pool |
|
840 |
* index. |
|
841 |
* |
|
842 |
* The result is in UTF format and remains valid until JVM_ReleaseUTF |
|
843 |
* is called. |
|
844 |
* |
|
845 |
* The caller must treat the string as a constant and not modify it |
|
846 |
* in any way. |
|
847 |
*/ |
|
848 |
JNIEXPORT const char * JNICALL |
|
849 |
JVM_GetCPMethodNameUTF(JNIEnv *env, jclass cb, jint index); |
|
850 |
||
851 |
/* |
|
852 |
* Returns the signature of the method refered to at a given constant pool |
|
853 |
* index. |
|
854 |
* |
|
855 |
* The result is in UTF format and remains valid until JVM_ReleaseUTF |
|
856 |
* is called. |
|
857 |
* |
|
858 |
* The caller must treat the string as a constant and not modify it |
|
859 |
* in any way. |
|
860 |
*/ |
|
861 |
JNIEXPORT const char * JNICALL |
|
862 |
JVM_GetCPMethodSignatureUTF(JNIEnv *env, jclass cb, jint index); |
|
863 |
||
864 |
/* |
|
865 |
* Returns the signature of the field refered to at a given constant pool |
|
866 |
* index. |
|
867 |
* |
|
868 |
* The result is in UTF format and remains valid until JVM_ReleaseUTF |
|
869 |
* is called. |
|
870 |
* |
|
871 |
* The caller must treat the string as a constant and not modify it |
|
872 |
* in any way. |
|
873 |
*/ |
|
874 |
JNIEXPORT const char * JNICALL |
|
875 |
JVM_GetCPFieldSignatureUTF(JNIEnv *env, jclass cb, jint index); |
|
876 |
||
877 |
/* |
|
878 |
* Returns the class name refered to at a given constant pool index. |
|
879 |
* |
|
880 |
* The result is in UTF format and remains valid until JVM_ReleaseUTF |
|
881 |
* is called. |
|
882 |
* |
|
883 |
* The caller must treat the string as a constant and not modify it |
|
884 |
* in any way. |
|
885 |
*/ |
|
886 |
JNIEXPORT const char * JNICALL |
|
887 |
JVM_GetCPClassNameUTF(JNIEnv *env, jclass cb, jint index); |
|
888 |
||
889 |
/* |
|
890 |
* Returns the class name refered to at a given constant pool index. |
|
891 |
* |
|
892 |
* The constant pool entry must refer to a CONSTANT_Fieldref. |
|
893 |
* |
|
894 |
* The result is in UTF format and remains valid until JVM_ReleaseUTF |
|
895 |
* is called. |
|
896 |
* |
|
897 |
* The caller must treat the string as a constant and not modify it |
|
898 |
* in any way. |
|
899 |
*/ |
|
900 |
JNIEXPORT const char * JNICALL |
|
901 |
JVM_GetCPFieldClassNameUTF(JNIEnv *env, jclass cb, jint index); |
|
902 |
||
903 |
/* |
|
904 |
* Returns the class name refered to at a given constant pool index. |
|
905 |
* |
|
906 |
* The constant pool entry must refer to CONSTANT_Methodref or |
|
907 |
* CONSTANT_InterfaceMethodref. |
|
908 |
* |
|
909 |
* The result is in UTF format and remains valid until JVM_ReleaseUTF |
|
910 |
* is called. |
|
911 |
* |
|
912 |
* The caller must treat the string as a constant and not modify it |
|
913 |
* in any way. |
|
914 |
*/ |
|
915 |
JNIEXPORT const char * JNICALL |
|
916 |
JVM_GetCPMethodClassNameUTF(JNIEnv *env, jclass cb, jint index); |
|
917 |
||
918 |
/* |
|
919 |
* Returns the modifiers of a field in calledClass. The field is |
|
920 |
* referred to in class cb at constant pool entry index. |
|
921 |
* |
|
922 |
* The caller must treat the string as a constant and not modify it |
|
923 |
* in any way. |
|
924 |
* |
|
925 |
* Returns -1 if the field does not exist in calledClass. |
|
926 |
*/ |
|
927 |
JNIEXPORT jint JNICALL |
|
928 |
JVM_GetCPFieldModifiers(JNIEnv *env, jclass cb, int index, jclass calledClass); |
|
929 |
||
930 |
/* |
|
931 |
* Returns the modifiers of a method in calledClass. The method is |
|
932 |
* referred to in class cb at constant pool entry index. |
|
933 |
* |
|
934 |
* Returns -1 if the method does not exist in calledClass. |
|
935 |
*/ |
|
936 |
JNIEXPORT jint JNICALL |
|
937 |
JVM_GetCPMethodModifiers(JNIEnv *env, jclass cb, int index, jclass calledClass); |
|
938 |
||
939 |
/* |
|
940 |
* Releases the UTF string obtained from the VM. |
|
941 |
*/ |
|
942 |
JNIEXPORT void JNICALL |
|
943 |
JVM_ReleaseUTF(const char *utf); |
|
944 |
||
945 |
/* |
|
946 |
* Compare if two classes are in the same package. |
|
947 |
*/ |
|
948 |
JNIEXPORT jboolean JNICALL |
|
949 |
JVM_IsSameClassPackage(JNIEnv *env, jclass class1, jclass class2); |
|
950 |
||
1090
c5805b1672a6
6732421: Removed old javavm and Classic VM files from the jdk7 sources
ohair
parents:
715
diff
changeset
|
951 |
/* Get classfile constants */ |
c5805b1672a6
6732421: Removed old javavm and Classic VM files from the jdk7 sources
ohair
parents:
715
diff
changeset
|
952 |
#include "classfile_constants.h" |
2 | 953 |
|
954 |
/* |
|
955 |
* A function defined by the byte-code verifier and called by the VM. |
|
956 |
* This is not a function implemented in the VM. |
|
957 |
* |
|
958 |
* Returns JNI_FALSE if verification fails. A detailed error message |
|
959 |
* will be places in msg_buf, whose length is specified by buf_len. |
|
960 |
*/ |
|
961 |
typedef jboolean (*verifier_fn_t)(JNIEnv *env, |
|
962 |
jclass cb, |
|
963 |
char * msg_buf, |
|
964 |
jint buf_len); |
|
965 |
||
966 |
||
967 |
/* |
|
968 |
* Support for a VM-independent class format checker. |
|
969 |
*/ |
|
970 |
typedef struct { |
|
971 |
unsigned long code; /* byte code */ |
|
972 |
unsigned long excs; /* exceptions */ |
|
973 |
unsigned long etab; /* catch table */ |
|
974 |
unsigned long lnum; /* line number */ |
|
975 |
unsigned long lvar; /* local vars */ |
|
976 |
} method_size_info; |
|
977 |
||
978 |
typedef struct { |
|
979 |
unsigned int constants; /* constant pool */ |
|
980 |
unsigned int fields; |
|
981 |
unsigned int methods; |
|
982 |
unsigned int interfaces; |
|
983 |
unsigned int fields2; /* number of static 2-word fields */ |
|
984 |
unsigned int innerclasses; /* # of records in InnerClasses attr */ |
|
985 |
||
986 |
method_size_info clinit; /* memory used in clinit */ |
|
987 |
method_size_info main; /* used everywhere else */ |
|
988 |
} class_size_info; |
|
989 |
||
990 |
/* |
|
991 |
* Functions defined in libjava.so to perform string conversions. |
|
992 |
* |
|
993 |
*/ |
|
994 |
||
995 |
typedef jstring (*to_java_string_fn_t)(JNIEnv *env, char *str); |
|
996 |
||
997 |
typedef char *(*to_c_string_fn_t)(JNIEnv *env, jstring s, jboolean *b); |
|
998 |
||
999 |
/* This is the function defined in libjava.so that performs class |
|
1000 |
* format checks. This functions fills in size information about |
|
1001 |
* the class file and returns: |
|
1002 |
* |
|
1003 |
* 0: good |
|
1004 |
* -1: out of memory |
|
1005 |
* -2: bad format |
|
1006 |
* -3: unsupported version |
|
1007 |
* -4: bad class name |
|
1008 |
*/ |
|
1009 |
||
1010 |
typedef jint (*check_format_fn_t)(char *class_name, |
|
1011 |
unsigned char *data, |
|
1012 |
unsigned int data_size, |
|
1013 |
class_size_info *class_size, |
|
1014 |
char *message_buffer, |
|
1015 |
jint buffer_length, |
|
1016 |
jboolean measure_only, |
|
1017 |
jboolean check_relaxed); |
|
1018 |
||
1019 |
#define JVM_RECOGNIZED_CLASS_MODIFIERS (JVM_ACC_PUBLIC | \ |
|
1020 |
JVM_ACC_FINAL | \ |
|
1021 |
JVM_ACC_SUPER | \ |
|
1022 |
JVM_ACC_INTERFACE | \ |
|
1023 |
JVM_ACC_ABSTRACT | \ |
|
1024 |
JVM_ACC_ANNOTATION | \ |
|
1025 |
JVM_ACC_ENUM | \ |
|
1026 |
JVM_ACC_SYNTHETIC) |
|
1027 |
||
1028 |
#define JVM_RECOGNIZED_FIELD_MODIFIERS (JVM_ACC_PUBLIC | \ |
|
1029 |
JVM_ACC_PRIVATE | \ |
|
1030 |
JVM_ACC_PROTECTED | \ |
|
1031 |
JVM_ACC_STATIC | \ |
|
1032 |
JVM_ACC_FINAL | \ |
|
1033 |
JVM_ACC_VOLATILE | \ |
|
1034 |
JVM_ACC_TRANSIENT | \ |
|
1035 |
JVM_ACC_ENUM | \ |
|
1036 |
JVM_ACC_SYNTHETIC) |
|
1037 |
||
1038 |
#define JVM_RECOGNIZED_METHOD_MODIFIERS (JVM_ACC_PUBLIC | \ |
|
1039 |
JVM_ACC_PRIVATE | \ |
|
1040 |
JVM_ACC_PROTECTED | \ |
|
1041 |
JVM_ACC_STATIC | \ |
|
1042 |
JVM_ACC_FINAL | \ |
|
1043 |
JVM_ACC_SYNCHRONIZED | \ |
|
1044 |
JVM_ACC_BRIDGE | \ |
|
1045 |
JVM_ACC_VARARGS | \ |
|
1046 |
JVM_ACC_NATIVE | \ |
|
1047 |
JVM_ACC_ABSTRACT | \ |
|
1048 |
JVM_ACC_STRICT | \ |
|
1049 |
JVM_ACC_SYNTHETIC) |
|
1050 |
||
1051 |
/* |
|
1052 |
* This is the function defined in libjava.so to perform path |
|
1053 |
* canonicalization. VM call this function before opening jar files |
|
1054 |
* to load system classes. |
|
1055 |
* |
|
1056 |
*/ |
|
1057 |
||
1058 |
typedef int (*canonicalize_fn_t)(JNIEnv *env, char *orig, char *out, int len); |
|
1059 |
||
1060 |
/************************************************************************* |
|
1061 |
PART 3: I/O and Network Support |
|
1062 |
************************************************************************/ |
|
1063 |
||
1064 |
/* Note that the JVM IO functions are expected to return JVM_IO_ERR |
|
1065 |
* when there is any kind of error. The caller can then use the |
|
1066 |
* platform specific support (e.g., errno) to get the detailed |
|
1067 |
* error info. The JVM_GetLastErrorString procedure may also be used |
|
1068 |
* to obtain a descriptive error string. |
|
1069 |
*/ |
|
1070 |
#define JVM_IO_ERR (-1) |
|
1071 |
||
1072 |
/* For interruptible IO. Returning JVM_IO_INTR indicates that an IO |
|
1073 |
* operation has been disrupted by Thread.interrupt. There are a |
|
1074 |
* number of technical difficulties related to interruptible IO that |
|
1075 |
* need to be solved. For example, most existing programs do not handle |
|
1076 |
* InterruptedIOExceptions specially, they simply treat those as any |
|
1077 |
* IOExceptions, which typically indicate fatal errors. |
|
1078 |
* |
|
1079 |
* There are also two modes of operation for interruptible IO. In the |
|
1080 |
* resumption mode, an interrupted IO operation is guaranteed not to |
|
1081 |
* have any side-effects, and can be restarted. In the termination mode, |
|
1082 |
* an interrupted IO operation corrupts the underlying IO stream, so |
|
1083 |
* that the only reasonable operation on an interrupted stream is to |
|
1084 |
* close that stream. The resumption mode seems to be impossible to |
|
1085 |
* implement on Win32 and Solaris. Implementing the termination mode is |
|
1086 |
* easier, but it's not clear that's the right semantics. |
|
1087 |
* |
|
1088 |
* Interruptible IO is not supported on Win32.It can be enabled/disabled |
|
1089 |
* using a compile-time flag on Solaris. Third-party JVM ports do not |
|
1090 |
* need to implement interruptible IO. |
|
1091 |
*/ |
|
1092 |
#define JVM_IO_INTR (-2) |
|
1093 |
||
1094 |
/* Write a string into the given buffer, in the platform's local encoding, |
|
1095 |
* that describes the most recent system-level error to occur in this thread. |
|
1096 |
* Return the length of the string or zero if no error occurred. |
|
1097 |
*/ |
|
1098 |
JNIEXPORT jint JNICALL |
|
1099 |
JVM_GetLastErrorString(char *buf, int len); |
|
1100 |
||
1101 |
/* |
|
1102 |
* Convert a pathname into native format. This function does syntactic |
|
1103 |
* cleanup, such as removing redundant separator characters. It modifies |
|
1104 |
* the given pathname string in place. |
|
1105 |
*/ |
|
1106 |
JNIEXPORT char * JNICALL |
|
1107 |
JVM_NativePath(char *); |
|
1108 |
||
1109 |
/* |
|
1110 |
* JVM I/O error codes |
|
1111 |
*/ |
|
1112 |
#define JVM_EEXIST -100 |
|
1113 |
||
1114 |
/* |
|
1115 |
* Open a file descriptor. This function returns a negative error code |
|
1116 |
* on error, and a non-negative integer that is the file descriptor on |
|
1117 |
* success. |
|
1118 |
*/ |
|
1119 |
JNIEXPORT jint JNICALL |
|
1120 |
JVM_Open(const char *fname, jint flags, jint mode); |
|
1121 |
||
1122 |
/* |
|
1123 |
* Close a file descriptor. This function returns -1 on error, and 0 |
|
1124 |
* on success. |
|
1125 |
* |
|
1126 |
* fd the file descriptor to close. |
|
1127 |
*/ |
|
1128 |
JNIEXPORT jint JNICALL |
|
1129 |
JVM_Close(jint fd); |
|
1130 |
||
1131 |
/* |
|
1132 |
* Read data from a file decriptor into a char array. |
|
1133 |
* |
|
1134 |
* fd the file descriptor to read from. |
|
1135 |
* buf the buffer where to put the read data. |
|
1136 |
* nbytes the number of bytes to read. |
|
1137 |
* |
|
1138 |
* This function returns -1 on error, and 0 on success. |
|
1139 |
*/ |
|
1140 |
JNIEXPORT jint JNICALL |
|
1141 |
JVM_Read(jint fd, char *buf, jint nbytes); |
|
1142 |
||
1143 |
/* |
|
1144 |
* Write data from a char array to a file decriptor. |
|
1145 |
* |
|
1146 |
* fd the file descriptor to read from. |
|
1147 |
* buf the buffer from which to fetch the data. |
|
1148 |
* nbytes the number of bytes to write. |
|
1149 |
* |
|
1150 |
* This function returns -1 on error, and 0 on success. |
|
1151 |
*/ |
|
1152 |
JNIEXPORT jint JNICALL |
|
1153 |
JVM_Write(jint fd, char *buf, jint nbytes); |
|
1154 |
||
1155 |
/* |
|
1156 |
* Returns the number of bytes available for reading from a given file |
|
1157 |
* descriptor |
|
1158 |
*/ |
|
1159 |
JNIEXPORT jint JNICALL |
|
1160 |
JVM_Available(jint fd, jlong *pbytes); |
|
1161 |
||
1162 |
/* |
|
1163 |
* Move the file descriptor pointer from whence by offset. |
|
1164 |
* |
|
1165 |
* fd the file descriptor to move. |
|
1166 |
* offset the number of bytes to move it by. |
|
1167 |
* whence the start from where to move it. |
|
1168 |
* |
|
1169 |
* This function returns the resulting pointer location. |
|
1170 |
*/ |
|
1171 |
JNIEXPORT jlong JNICALL |
|
1172 |
JVM_Lseek(jint fd, jlong offset, jint whence); |
|
1173 |
||
1174 |
/* |
|
1175 |
* Set the length of the file associated with the given descriptor to the given |
|
1176 |
* length. If the new length is longer than the current length then the file |
|
1177 |
* is extended; the contents of the extended portion are not defined. The |
|
1178 |
* value of the file pointer is undefined after this procedure returns. |
|
1179 |
*/ |
|
1180 |
JNIEXPORT jint JNICALL |
|
1181 |
JVM_SetLength(jint fd, jlong length); |
|
1182 |
||
1183 |
/* |
|
1184 |
* Synchronize the file descriptor's in memory state with that of the |
|
1185 |
* physical device. Return of -1 is an error, 0 is OK. |
|
1186 |
*/ |
|
1187 |
JNIEXPORT jint JNICALL |
|
1188 |
JVM_Sync(jint fd); |
|
1189 |
||
1190 |
/* |
|
1191 |
* Networking library support |
|
1192 |
*/ |
|
1193 |
||
1194 |
JNIEXPORT jint JNICALL |
|
1195 |
JVM_InitializeSocketLibrary(void); |
|
1196 |
||
1197 |
struct sockaddr; |
|
1198 |
||
1199 |
JNIEXPORT jint JNICALL |
|
1200 |
JVM_Socket(jint domain, jint type, jint protocol); |
|
1201 |
||
1202 |
JNIEXPORT jint JNICALL |
|
1203 |
JVM_SocketClose(jint fd); |
|
1204 |
||
1205 |
JNIEXPORT jint JNICALL |
|
1206 |
JVM_SocketShutdown(jint fd, jint howto); |
|
1207 |
||
1208 |
JNIEXPORT jint JNICALL |
|
1209 |
JVM_Recv(jint fd, char *buf, jint nBytes, jint flags); |
|
1210 |
||
1211 |
JNIEXPORT jint JNICALL |
|
1212 |
JVM_Send(jint fd, char *buf, jint nBytes, jint flags); |
|
1213 |
||
1214 |
JNIEXPORT jint JNICALL |
|
1215 |
JVM_Timeout(int fd, long timeout); |
|
1216 |
||
1217 |
JNIEXPORT jint JNICALL |
|
1218 |
JVM_Listen(jint fd, jint count); |
|
1219 |
||
1220 |
JNIEXPORT jint JNICALL |
|
1221 |
JVM_Connect(jint fd, struct sockaddr *him, jint len); |
|
1222 |
||
1223 |
JNIEXPORT jint JNICALL |
|
1224 |
JVM_Bind(jint fd, struct sockaddr *him, jint len); |
|
1225 |
||
1226 |
JNIEXPORT jint JNICALL |
|
1227 |
JVM_Accept(jint fd, struct sockaddr *him, jint *len); |
|
1228 |
||
1229 |
JNIEXPORT jint JNICALL |
|
1230 |
JVM_RecvFrom(jint fd, char *buf, int nBytes, |
|
1231 |
int flags, struct sockaddr *from, int *fromlen); |
|
1232 |
||
1233 |
JNIEXPORT jint JNICALL |
|
1234 |
JVM_SendTo(jint fd, char *buf, int len, |
|
1235 |
int flags, struct sockaddr *to, int tolen); |
|
1236 |
||
1237 |
JNIEXPORT jint JNICALL |
|
1238 |
JVM_SocketAvailable(jint fd, jint *result); |
|
1239 |
||
1240 |
||
1241 |
JNIEXPORT jint JNICALL |
|
1242 |
JVM_GetSockName(jint fd, struct sockaddr *him, int *len); |
|
1243 |
||
1244 |
JNIEXPORT jint JNICALL |
|
1245 |
JVM_GetSockOpt(jint fd, int level, int optname, char *optval, int *optlen); |
|
1246 |
||
1247 |
JNIEXPORT jint JNICALL |
|
1248 |
JVM_SetSockOpt(jint fd, int level, int optname, const char *optval, int optlen); |
|
1249 |
||
1250 |
JNIEXPORT int JNICALL |
|
1251 |
JVM_GetHostName(char* name, int namelen); |
|
1252 |
||
1253 |
/* |
|
1254 |
* The standard printing functions supported by the Java VM. (Should they |
|
1255 |
* be renamed to JVM_* in the future? |
|
1256 |
*/ |
|
1257 |
||
1258 |
/* |
|
1259 |
* BE CAREFUL! The following functions do not implement the |
|
1260 |
* full feature set of standard C printf formats. |
|
1261 |
*/ |
|
1262 |
int |
|
1263 |
jio_vsnprintf(char *str, size_t count, const char *fmt, va_list args); |
|
1264 |
||
1265 |
int |
|
1266 |
jio_snprintf(char *str, size_t count, const char *fmt, ...); |
|
1267 |
||
1268 |
int |
|
1269 |
jio_fprintf(FILE *, const char *fmt, ...); |
|
1270 |
||
1271 |
int |
|
1272 |
jio_vfprintf(FILE *, const char *fmt, va_list args); |
|
1273 |
||
1274 |
||
1275 |
JNIEXPORT void * JNICALL |
|
1276 |
JVM_RawMonitorCreate(void); |
|
1277 |
||
1278 |
JNIEXPORT void JNICALL |
|
1279 |
JVM_RawMonitorDestroy(void *mon); |
|
1280 |
||
1281 |
JNIEXPORT jint JNICALL |
|
1282 |
JVM_RawMonitorEnter(void *mon); |
|
1283 |
||
1284 |
JNIEXPORT void JNICALL |
|
1285 |
JVM_RawMonitorExit(void *mon); |
|
1286 |
||
1287 |
/* |
|
1288 |
* java.lang.management support |
|
1289 |
*/ |
|
1290 |
JNIEXPORT void* JNICALL |
|
1291 |
JVM_GetManagement(jint version); |
|
1292 |
||
1293 |
/* |
|
1294 |
* com.sun.tools.attach.VirtualMachine support |
|
1295 |
* |
|
1296 |
* Initialize the agent properties with the properties maintained in the VM. |
|
1297 |
*/ |
|
1298 |
JNIEXPORT jobject JNICALL |
|
1299 |
JVM_InitAgentProperties(JNIEnv *env, jobject agent_props); |
|
1300 |
||
1301 |
/* Generics reflection support. |
|
1302 |
* |
|
1303 |
* Returns information about the given class's EnclosingMethod |
|
1304 |
* attribute, if present, or null if the class had no enclosing |
|
1305 |
* method. |
|
1306 |
* |
|
1307 |
* If non-null, the returned array contains three elements. Element 0 |
|
1308 |
* is the java.lang.Class of which the enclosing method is a member, |
|
1309 |
* and elements 1 and 2 are the java.lang.Strings for the enclosing |
|
1310 |
* method's name and descriptor, respectively. |
|
1311 |
*/ |
|
1312 |
JNIEXPORT jobjectArray JNICALL |
|
1313 |
JVM_GetEnclosingMethodInfo(JNIEnv* env, jclass ofClass); |
|
1314 |
||
1315 |
/* |
|
1316 |
* Java thread state support |
|
1317 |
*/ |
|
1318 |
enum { |
|
1319 |
JAVA_THREAD_STATE_NEW = 0, |
|
1320 |
JAVA_THREAD_STATE_RUNNABLE = 1, |
|
1321 |
JAVA_THREAD_STATE_BLOCKED = 2, |
|
1322 |
JAVA_THREAD_STATE_WAITING = 3, |
|
1323 |
JAVA_THREAD_STATE_TIMED_WAITING = 4, |
|
1324 |
JAVA_THREAD_STATE_TERMINATED = 5, |
|
1325 |
JAVA_THREAD_STATE_COUNT = 6 |
|
1326 |
}; |
|
1327 |
||
1328 |
/* |
|
1329 |
* Returns an array of the threadStatus values representing the |
|
1330 |
* given Java thread state. Returns NULL if the VM version is |
|
1331 |
* incompatible with the JDK or doesn't support the given |
|
1332 |
* Java thread state. |
|
1333 |
*/ |
|
1334 |
JNIEXPORT jintArray JNICALL |
|
1335 |
JVM_GetThreadStateValues(JNIEnv* env, jint javaThreadState); |
|
1336 |
||
1337 |
/* |
|
1338 |
* Returns an array of the substate names representing the |
|
1339 |
* given Java thread state. Returns NULL if the VM version is |
|
1340 |
* incompatible with the JDK or the VM doesn't support |
|
1341 |
* the given Java thread state. |
|
1342 |
* values must be the jintArray returned from JVM_GetThreadStateValues |
|
1343 |
* and javaThreadState. |
|
1344 |
*/ |
|
1345 |
JNIEXPORT jobjectArray JNICALL |
|
1346 |
JVM_GetThreadStateNames(JNIEnv* env, jint javaThreadState, jintArray values); |
|
1347 |
||
1348 |
/* ========================================================================= |
|
1349 |
* The following defines a private JVM interface that the JDK can query |
|
1350 |
* for the JVM version and capabilities. sun.misc.Version defines |
|
1351 |
* the methods for getting the VM version and its capabilities. |
|
1352 |
* |
|
1353 |
* When a new bit is added, the following should be updated to provide |
|
1354 |
* access to the new capability: |
|
1355 |
* HS: JVM_GetVersionInfo and Abstract_VM_Version class |
|
1356 |
* SDK: Version class |
|
1357 |
* |
|
1358 |
* Similary, a private JDK interface JDK_GetVersionInfo0 is defined for |
|
1359 |
* JVM to query for the JDK version and capabilities. |
|
1360 |
* |
|
1361 |
* When a new bit is added, the following should be updated to provide |
|
1362 |
* access to the new capability: |
|
1363 |
* HS: JDK_Version class |
|
1364 |
* SDK: JDK_GetVersionInfo0 |
|
1365 |
* |
|
1366 |
* ========================================================================== |
|
1367 |
*/ |
|
1368 |
typedef struct { |
|
1369 |
/* Naming convention of RE build version string: n.n.n[_uu[c]][-<identifier>]-bxx */ |
|
1370 |
unsigned int jvm_version; /* Consists of major, minor, micro (n.n.n) */ |
|
1371 |
/* and build number (xx) */ |
|
1372 |
unsigned int update_version : 8; /* Update release version (uu) */ |
|
1373 |
unsigned int special_update_version : 8; /* Special update release version (c)*/ |
|
1374 |
unsigned int reserved1 : 16; |
|
1375 |
unsigned int reserved2; |
|
1376 |
||
1377 |
/* The following bits represents JVM supports that JDK has dependency on. |
|
1378 |
* JDK can use these bits to determine which JVM version |
|
1379 |
* and support it has to maintain runtime compatibility. |
|
1380 |
* |
|
1381 |
* When a new bit is added in a minor or update release, make sure |
|
1382 |
* the new bit is also added in the main/baseline. |
|
1383 |
*/ |
|
1384 |
unsigned int is_attach_supported : 1; |
|
1385 |
unsigned int is_kernel_jvm : 1; |
|
1386 |
unsigned int : 30; |
|
1387 |
unsigned int : 32; |
|
1388 |
unsigned int : 32; |
|
1389 |
} jvm_version_info; |
|
1390 |
||
1391 |
#define JVM_VERSION_MAJOR(version) ((version & 0xFF000000) >> 24) |
|
1392 |
#define JVM_VERSION_MINOR(version) ((version & 0x00FF0000) >> 16) |
|
1393 |
#define JVM_VERSION_MICRO(version) ((version & 0x0000FF00) >> 8) |
|
1394 |
||
1395 |
/* Build number is available only for RE builds. |
|
1396 |
* It will be zero for internal builds. |
|
1397 |
*/ |
|
1398 |
#define JVM_VERSION_BUILD(version) ((version & 0x000000FF)) |
|
1399 |
||
1400 |
JNIEXPORT void JNICALL |
|
1401 |
JVM_GetVersionInfo(JNIEnv* env, jvm_version_info* info, size_t info_size); |
|
1402 |
||
1403 |
typedef struct { |
|
1404 |
// Naming convention of RE build version string: n.n.n[_uu[c]][-<identifier>]-bxx |
|
1405 |
unsigned int jdk_version; /* Consists of major, minor, micro (n.n.n) */ |
|
1406 |
/* and build number (xx) */ |
|
1407 |
unsigned int update_version : 8; /* Update release version (uu) */ |
|
1408 |
unsigned int special_update_version : 8; /* Special update release version (c)*/ |
|
1409 |
unsigned int reserved1 : 16; |
|
1410 |
unsigned int reserved2; |
|
1411 |
||
1412 |
/* The following bits represents new JDK supports that VM has dependency on. |
|
1413 |
* VM implementation can use these bits to determine which JDK version |
|
1414 |
* and support it has to maintain runtime compatibility. |
|
1415 |
* |
|
1416 |
* When a new bit is added in a minor or update release, make sure |
|
1417 |
* the new bit is also added in the main/baseline. |
|
1418 |
*/ |
|
1419 |
unsigned int thread_park_blocker : 1; |
|
1420 |
unsigned int : 31; |
|
1421 |
unsigned int : 32; |
|
1422 |
unsigned int : 32; |
|
1423 |
} jdk_version_info; |
|
1424 |
||
1425 |
#define JDK_VERSION_MAJOR(version) ((version & 0xFF000000) >> 24) |
|
1426 |
#define JDK_VERSION_MINOR(version) ((version & 0x00FF0000) >> 16) |
|
1427 |
#define JDK_VERSION_MICRO(version) ((version & 0x0000FF00) >> 8) |
|
1428 |
||
1429 |
/* Build number is available only for RE build (i.e. JDK_BUILD_NUMBER is set to bNN) |
|
1430 |
* It will be zero for internal builds. |
|
1431 |
*/ |
|
1432 |
#define JDK_VERSION_BUILD(version) ((version & 0x000000FF)) |
|
1433 |
||
1434 |
/* |
|
1435 |
* This is the function JDK_GetVersionInfo0 defined in libjava.so |
|
1436 |
* that is dynamically looked up by JVM. |
|
1437 |
*/ |
|
1438 |
typedef void (*jdk_version_info_fn_t)(jdk_version_info* info, size_t info_size); |
|
1439 |
||
1440 |
/* |
|
1441 |
* This structure is used by the launcher to get the default thread |
|
1442 |
* stack size from the VM using JNI_GetDefaultJavaVMInitArgs() with a |
|
1443 |
* version of 1.1. As it is not supported otherwise, it has been removed |
|
1444 |
* from jni.h |
|
1445 |
*/ |
|
1446 |
typedef struct JDK1_1InitArgs { |
|
1447 |
jint version; |
|
1448 |
||
1449 |
char **properties; |
|
1450 |
jint checkSource; |
|
1451 |
jint nativeStackSize; |
|
1452 |
jint javaStackSize; |
|
1453 |
jint minHeapSize; |
|
1454 |
jint maxHeapSize; |
|
1455 |
jint verifyMode; |
|
1456 |
char *classpath; |
|
1457 |
||
1458 |
jint (JNICALL *vfprintf)(FILE *fp, const char *format, va_list args); |
|
1459 |
void (JNICALL *exit)(jint code); |
|
1460 |
void (JNICALL *abort)(void); |
|
1461 |
||
1462 |
jint enableClassGC; |
|
1463 |
jint enableVerboseGC; |
|
1464 |
jint disableAsyncGC; |
|
1465 |
jint verbose; |
|
1466 |
jboolean debugging; |
|
1467 |
jint debugPort; |
|
1468 |
} JDK1_1InitArgs; |
|
1469 |
||
1470 |
||
1471 |
#ifdef __cplusplus |
|
1472 |
} /* extern "C" */ |
|
1473 |
||
1474 |
#endif /* __cplusplus */ |
|
1475 |
||
1476 |
#endif /* !_JAVASOFT_JVM_H_ */ |