mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 10:34:38 +02:00
Merge
This commit is contained in:
commit
fdee542113
654 changed files with 12550 additions and 7320 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -32,14 +32,12 @@ import java.lang.StackWalker.StackFrame;
|
|||
import java.lang.invoke.MethodType;
|
||||
|
||||
class StackFrameInfo implements StackFrame {
|
||||
private final byte RETAIN_CLASS_REF = 0x01;
|
||||
|
||||
private final static JavaLangInvokeAccess JLIA =
|
||||
SharedSecrets.getJavaLangInvokeAccess();
|
||||
|
||||
// Footprint improvement: MemberName::clazz can replace
|
||||
// StackFrameInfo::declaringClass.
|
||||
|
||||
private final StackWalker walker;
|
||||
private final Class<?> declaringClass;
|
||||
private final byte flags;
|
||||
private final Object memberName;
|
||||
private final short bci;
|
||||
private volatile StackTraceElement ste;
|
||||
|
@ -49,8 +47,7 @@ class StackFrameInfo implements StackFrame {
|
|||
* to use
|
||||
*/
|
||||
StackFrameInfo(StackWalker walker) {
|
||||
this.walker = walker;
|
||||
this.declaringClass = null;
|
||||
this.flags = walker.retainClassRef ? RETAIN_CLASS_REF : 0;
|
||||
this.bci = -1;
|
||||
this.memberName = JLIA.newMemberName();
|
||||
}
|
||||
|
@ -58,20 +55,20 @@ class StackFrameInfo implements StackFrame {
|
|||
// package-private called by StackStreamFactory to skip
|
||||
// the capability check
|
||||
Class<?> declaringClass() {
|
||||
return declaringClass;
|
||||
return JLIA.getDeclaringClass(memberName);
|
||||
}
|
||||
|
||||
// ----- implementation of StackFrame methods
|
||||
|
||||
@Override
|
||||
public String getClassName() {
|
||||
return declaringClass.getName();
|
||||
return declaringClass().getName();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Class<?> getDeclaringClass() {
|
||||
walker.ensureAccessEnabled(RETAIN_CLASS_REFERENCE);
|
||||
return declaringClass;
|
||||
ensureRetainClassRefEnabled();
|
||||
return declaringClass();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -81,7 +78,7 @@ class StackFrameInfo implements StackFrame {
|
|||
|
||||
@Override
|
||||
public MethodType getMethodType() {
|
||||
walker.ensureAccessEnabled(RETAIN_CLASS_REFERENCE);
|
||||
ensureRetainClassRefEnabled();
|
||||
return JLIA.getMethodType(memberName);
|
||||
}
|
||||
|
||||
|
@ -137,4 +134,10 @@ class StackFrameInfo implements StackFrame {
|
|||
}
|
||||
return s;
|
||||
}
|
||||
|
||||
private void ensureRetainClassRefEnabled() {
|
||||
if ((flags & RETAIN_CLASS_REF) == 0) {
|
||||
throw new UnsupportedOperationException("No access to RETAIN_CLASS_REFERENCE");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -296,6 +296,7 @@ public final class StackWalker {
|
|||
private final Set<Option> options;
|
||||
private final ExtendedOption extendedOption;
|
||||
private final int estimateDepth;
|
||||
final boolean retainClassRef; // cached for performance
|
||||
|
||||
/**
|
||||
* Returns a {@code StackWalker} instance.
|
||||
|
@ -412,6 +413,7 @@ public final class StackWalker {
|
|||
this.options = options;
|
||||
this.estimateDepth = estimateDepth;
|
||||
this.extendedOption = extendedOption;
|
||||
this.retainClassRef = hasOption(Option.RETAIN_CLASS_REFERENCE);
|
||||
}
|
||||
|
||||
private static void checkPermission(Set<Option> options) {
|
||||
|
@ -590,7 +592,7 @@ public final class StackWalker {
|
|||
*/
|
||||
@CallerSensitive
|
||||
public Class<?> getCallerClass() {
|
||||
if (!options.contains(Option.RETAIN_CLASS_REFERENCE)) {
|
||||
if (!retainClassRef) {
|
||||
throw new UnsupportedOperationException("This stack walker " +
|
||||
"does not have RETAIN_CLASS_REFERENCE access");
|
||||
}
|
||||
|
@ -617,11 +619,4 @@ public final class StackWalker {
|
|||
boolean hasLocalsOperandsOption() {
|
||||
return extendedOption == ExtendedOption.LOCALS_AND_OPERANDS;
|
||||
}
|
||||
|
||||
void ensureAccessEnabled(Option access) {
|
||||
if (!hasOption(access)) {
|
||||
throw new UnsupportedOperationException("No access to " + access +
|
||||
": " + options.toString());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1784,6 +1784,11 @@ import static jdk.internal.org.objectweb.asm.Opcodes.*;
|
|||
MemberName memberName = (MemberName)mname;
|
||||
return memberName.getName();
|
||||
}
|
||||
@Override
|
||||
public Class<?> getDeclaringClass(Object mname) {
|
||||
MemberName memberName = (MemberName)mname;
|
||||
return memberName.getDeclaringClass();
|
||||
}
|
||||
|
||||
@Override
|
||||
public MethodType getMethodType(Object mname) {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -30,33 +30,39 @@ import java.util.Map;
|
|||
|
||||
public interface JavaLangInvokeAccess {
|
||||
/**
|
||||
* Create a new MemberName instance. Used by {@see StackFrameInfo}.
|
||||
* Create a new MemberName instance. Used by {@code StackFrameInfo}.
|
||||
*/
|
||||
Object newMemberName();
|
||||
|
||||
/**
|
||||
* Returns the name for the given MemberName. Used by {@see StackFrameInfo}.
|
||||
* Returns the name for the given MemberName. Used by {@code StackFrameInfo}.
|
||||
*/
|
||||
String getName(Object mname);
|
||||
|
||||
/**
|
||||
* Returns the {@code MethodType} for the given MemberName.
|
||||
* Used by {@see StackFrameInfo}.
|
||||
* Used by {@code StackFrameInfo}.
|
||||
*/
|
||||
MethodType getMethodType(Object mname);
|
||||
|
||||
/**
|
||||
* Returns the descriptor for the given MemberName.
|
||||
* Used by {@see StackFrameInfo}.
|
||||
* Used by {@code StackFrameInfo}.
|
||||
*/
|
||||
String getMethodDescriptor(Object mname);
|
||||
|
||||
/**
|
||||
* Returns {@code true} if the given MemberName is a native method. Used by
|
||||
* {@see StackFrameInfo}.
|
||||
* Returns {@code true} if the given MemberName is a native method.
|
||||
* Used by {@code StackFrameInfo}.
|
||||
*/
|
||||
boolean isNative(Object mname);
|
||||
|
||||
/**
|
||||
* Returns the declaring class for the given MemberName.
|
||||
* Used by {@code StackFrameInfo}.
|
||||
*/
|
||||
Class<?> getDeclaringClass(Object mname);
|
||||
|
||||
/**
|
||||
* Returns a {@code byte[]} representation of a class implementing
|
||||
* DirectMethodHandle of each pairwise combination of {@code MethodType} and
|
||||
|
|
|
@ -54,9 +54,29 @@ enum {
|
|||
JVM_ACC_STRICT = 0x0800,
|
||||
JVM_ACC_SYNTHETIC = 0x1000,
|
||||
JVM_ACC_ANNOTATION = 0x2000,
|
||||
JVM_ACC_ENUM = 0x4000
|
||||
JVM_ACC_ENUM = 0x4000,
|
||||
JVM_ACC_MODULE = 0x8000
|
||||
};
|
||||
|
||||
#define JVM_ACC_PUBLIC_BIT 0
|
||||
#define JVM_ACC_PRIVATE_BIT 1
|
||||
#define JVM_ACC_PROTECTED_BIT 2
|
||||
#define JVM_ACC_STATIC_BIT 3
|
||||
#define JVM_ACC_FINAL_BIT 4
|
||||
#define JVM_ACC_SYNCHRONIZED_BIT 5
|
||||
#define JVM_ACC_SUPER_BIT 5
|
||||
#define JVM_ACC_VOLATILE_BIT 6
|
||||
#define JVM_ACC_BRIDGE_BIT 6
|
||||
#define JVM_ACC_TRANSIENT_BIT 7
|
||||
#define JVM_ACC_VARARGS_BIT 7
|
||||
#define JVM_ACC_NATIVE_BIT 8
|
||||
#define JVM_ACC_INTERFACE_BIT 9
|
||||
#define JVM_ACC_ABSTRACT_BIT 10
|
||||
#define JVM_ACC_STRICT_BIT 11
|
||||
#define JVM_ACC_SYNTHETIC_BIT 12
|
||||
#define JVM_ACC_ANNOTATION_BIT 13
|
||||
#define JVM_ACC_ENUM_BIT 14
|
||||
|
||||
/* Used in newarray instruction. */
|
||||
|
||||
enum {
|
||||
|
@ -86,8 +106,9 @@ enum {
|
|||
JVM_CONSTANT_InterfaceMethodref = 11,
|
||||
JVM_CONSTANT_NameAndType = 12,
|
||||
JVM_CONSTANT_MethodHandle = 15, // JSR 292
|
||||
JVM_CONSTANT_MethodType = 16, // JSR 292
|
||||
JVM_CONSTANT_InvokeDynamic = 18
|
||||
JVM_CONSTANT_MethodType = 16, // JSR 292
|
||||
JVM_CONSTANT_InvokeDynamic = 18,
|
||||
JVM_CONSTANT_ExternalMax = 18
|
||||
};
|
||||
|
||||
/* JVM_CONSTANT_MethodHandle subtypes */
|
||||
|
|
|
@ -1155,20 +1155,25 @@ JVM_NativePath(char *);
|
|||
* be renamed to JVM_* in the future?
|
||||
*/
|
||||
|
||||
/*
|
||||
* BE CAREFUL! The following functions do not implement the
|
||||
* full feature set of standard C printf formats.
|
||||
*/
|
||||
int
|
||||
/* jio_snprintf() and jio_vsnprintf() behave like snprintf(3) and vsnprintf(3),
|
||||
* respectively, with the following differences:
|
||||
* - The string written to str is always zero-terminated, also in case of
|
||||
* truncation (count is too small to hold the result string), unless count
|
||||
* is 0. In case of truncation count-1 characters are written and '\0'
|
||||
* appendend.
|
||||
* - If count is too small to hold the whole string, -1 is returned across
|
||||
* all platforms. */
|
||||
|
||||
JNIEXPORT int
|
||||
jio_vsnprintf(char *str, size_t count, const char *fmt, va_list args);
|
||||
|
||||
int
|
||||
JNIEXPORT int
|
||||
jio_snprintf(char *str, size_t count, const char *fmt, ...);
|
||||
|
||||
int
|
||||
JNIEXPORT int
|
||||
jio_fprintf(FILE *, const char *fmt, ...);
|
||||
|
||||
int
|
||||
JNIEXPORT int
|
||||
jio_vfprintf(FILE *, const char *fmt, va_list args);
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue