forked from oracle/graal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[GR-7429] Generics support for SubstrateVM.
PullRequest: graal/782
- Loading branch information
Showing
13 changed files
with
350 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
...le.graal.pointsto/src/com/oracle/graal/pointsto/infrastructure/OriginalClassProvider.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* Copyright (c) 2012, 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 | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
*/ | ||
package com.oracle.graal.pointsto.infrastructure; | ||
|
||
import org.graalvm.compiler.api.replacements.SnippetReflectionProvider; | ||
|
||
import jdk.vm.ci.meta.ResolvedJavaType; | ||
|
||
public interface OriginalClassProvider { | ||
|
||
static Class<?> getJavaClass(SnippetReflectionProvider reflectionProvider, ResolvedJavaType javaType) { | ||
if (javaType instanceof OriginalClassProvider) { | ||
return ((OriginalClassProvider) javaType).getJavaClass(); | ||
} else { | ||
return reflectionProvider.originalClass(javaType); | ||
} | ||
} | ||
|
||
Class<?> getJavaClass(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
126 changes: 126 additions & 0 deletions
126
substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/hub/GenericInfo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
/* | ||
* Copyright (c) 2017, 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 | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
*/ | ||
package com.oracle.svm.core.hub; | ||
|
||
//Checkstyle: allow reflection | ||
|
||
import java.lang.reflect.Type; | ||
import java.lang.reflect.TypeVariable; | ||
import java.util.Arrays; | ||
|
||
import org.graalvm.nativeimage.Platform; | ||
import org.graalvm.nativeimage.Platforms; | ||
|
||
public final class GenericInfo { | ||
|
||
private static final TypeVariable<?>[] EMPTY_TYPE_VARIABLE_ARRAY = new TypeVariable<?>[0]; | ||
private static final Type[] EMPTY_TYPE_ARRAY = new Type[0]; | ||
private static final GenericInfo EMPTY_GENERIC_INFO = new GenericInfo(EMPTY_TYPE_VARIABLE_ARRAY, EMPTY_TYPE_ARRAY, null); | ||
|
||
@Platforms(Platform.HOSTED_ONLY.class) | ||
static GenericInfo forEmpty() { | ||
return EMPTY_GENERIC_INFO; | ||
} | ||
|
||
@Platforms(Platform.HOSTED_ONLY.class) | ||
public static GenericInfo factory(TypeVariable<?>[] typeParameters, Type[] genericInterfaces, Type genericSuperClass) { | ||
boolean hasTypeParameters = typeParameters.length > 0; | ||
boolean hasGenericInterfaces = genericInterfaces.length > 0 && !Arrays.stream(genericInterfaces).allMatch(Class.class::isInstance); | ||
boolean hasGenericSuperClass = genericSuperClass != null && !(genericSuperClass instanceof Class); | ||
if (hasTypeParameters || hasGenericInterfaces || hasGenericSuperClass) { | ||
return new GenericInfo(encodeTypeParameters(typeParameters), encodeGenericInterfaces(hasGenericInterfaces, genericInterfaces), | ||
encodeGenericSuperClass(hasGenericSuperClass, genericSuperClass)); | ||
} | ||
return EMPTY_GENERIC_INFO; | ||
} | ||
|
||
private static Object encodeTypeParameters(TypeVariable<?>[] typeParameters) { | ||
if (typeParameters.length == 1) { | ||
return typeParameters[0]; | ||
} | ||
return typeParameters; | ||
} | ||
|
||
private static Object encodeGenericInterfaces(boolean hasGenericInterfaces, Type[] genericInterfaces) { | ||
if (hasGenericInterfaces) { | ||
if (genericInterfaces.length == 1) { | ||
return genericInterfaces[0]; | ||
} else { | ||
return genericInterfaces; | ||
} | ||
} else { | ||
return null; | ||
} | ||
} | ||
|
||
private static Type encodeGenericSuperClass(boolean hasGenericSuperClass, Type genericSuperClass) { | ||
if (hasGenericSuperClass) { | ||
return genericSuperClass; | ||
} | ||
return null; | ||
} | ||
|
||
private final Object typeParametersEncoding; | ||
private final Object genericInterfacesEncoding; | ||
private final Type genericSuperClass; | ||
|
||
@Platforms(Platform.HOSTED_ONLY.class) | ||
private GenericInfo(Object typeParameters, Object genericInterfaces, Type genericSuperClass) { | ||
assert typeParameters != null; | ||
this.typeParametersEncoding = typeParameters; | ||
this.genericInterfacesEncoding = genericInterfaces; | ||
this.genericSuperClass = genericSuperClass; | ||
} | ||
|
||
TypeVariable<?>[] getTypeParameters() { | ||
if (typeParametersEncoding instanceof Type) { | ||
return new TypeVariable<?>[]{(TypeVariable<?>) typeParametersEncoding}; | ||
} else { | ||
/* The caller is allowed to modify the array, so we have to make a copy. */ | ||
return ((TypeVariable<?>[]) typeParametersEncoding).clone(); | ||
} | ||
} | ||
|
||
boolean hasGenericInterfaces() { | ||
return genericInterfacesEncoding != null; | ||
} | ||
|
||
Type[] getGenericInterfaces() { | ||
assert hasGenericInterfaces(); | ||
if (genericInterfacesEncoding instanceof Type) { | ||
return new Type[]{(Type) genericInterfacesEncoding}; | ||
} else { | ||
/* The caller is allowed to modify the array, so we have to make a copy. */ | ||
return ((Type[]) genericInterfacesEncoding).clone(); | ||
} | ||
} | ||
|
||
boolean hasGenericSuperClass() { | ||
return genericSuperClass != null; | ||
} | ||
|
||
Type getGenericSuperClass() { | ||
assert hasGenericSuperClass(); | ||
return genericSuperClass; | ||
} | ||
} |
47 changes: 47 additions & 0 deletions
47
...ratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/hub/TypeVariableSubstitutions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Copyright (c) 2017, 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 | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
*/ | ||
package com.oracle.svm.core.hub; | ||
|
||
//Checkstyle: allow reflection | ||
|
||
import java.lang.reflect.GenericDeclaration; | ||
|
||
import com.oracle.svm.core.annotate.Alias; | ||
import com.oracle.svm.core.annotate.Substitute; | ||
import com.oracle.svm.core.annotate.TargetClass; | ||
|
||
@TargetClass(sun.reflect.generics.reflectiveObjects.TypeVariableImpl.class) | ||
final class Target_sun_reflect_generics_reflectiveObjects_TypeVariableImpl { | ||
|
||
@Alias GenericDeclaration genericDeclaration; | ||
|
||
/** Reason for substitutions: disable access checks in original method. */ | ||
@Substitute | ||
public GenericDeclaration getGenericDeclaration() { | ||
return genericDeclaration; | ||
} | ||
|
||
} | ||
|
||
public class TypeVariableSubstitutions { | ||
} |
Oops, something went wrong.