mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-23 20:44:41 +02:00
Merge
This commit is contained in:
commit
652ccb8d21
57 changed files with 514 additions and 197 deletions
|
@ -417,6 +417,17 @@ JVM_DefineClassWithSource(JNIEnv *env, const char *name, jobject loader,
|
|||
const jbyte *buf, jsize len, jobject pd,
|
||||
const char *source);
|
||||
|
||||
/* Define a class with a source with conditional verification (added HSX 14)
|
||||
* -Xverify:all will verify anyway, -Xverify:none will not verify,
|
||||
* -Xverify:remote (default) will obey this conditional
|
||||
* i.e. true = should_verify_class
|
||||
*/
|
||||
JNIEXPORT jclass JNICALL
|
||||
JVM_DefineClassWithSourceCond(JNIEnv *env, const char *name,
|
||||
jobject loader, const jbyte *buf,
|
||||
jsize len, jobject pd, const char *source,
|
||||
jboolean verify);
|
||||
|
||||
/* Define a class with a source (MLVM) */
|
||||
JNIEXPORT jclass JNICALL
|
||||
JVM_DefineClassWithCP(JNIEnv *env, const char *name, jobject loader,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue