Skip to content

Commit efef4fd

Browse files
committed
Move method handle code to com.oracle.svm.{core,hosted}.methodhandles.
1 parent d727a0f commit efef4fd

11 files changed

+11
-33
lines changed

substratevm/mx.substratevm/suite.py

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -753,27 +753,6 @@
753753
"testProject": True,
754754
},
755755

756-
"com.oracle.svm.methodhandles": {
757-
"subDir": "src",
758-
"sourceDirs": ["src"],
759-
"dependencies": [
760-
"com.oracle.svm.hosted",
761-
],
762-
"requiresConcealed" : {
763-
"java.base" : [
764-
"sun.invoke.util",
765-
"jdk.internal.reflect",
766-
],
767-
},
768-
"checkstyle": "com.oracle.svm.core",
769-
"workingSets": "SVM",
770-
"annotationProcessors": [
771-
"compiler:GRAAL_PROCESSOR",
772-
],
773-
"javaCompliance": "11+",
774-
"spotbugs": "false",
775-
},
776-
777756
"com.oracle.svm.tutorial" : {
778757
"subDir": "src",
779758
"sourceDirs" : ["src"],
@@ -1113,7 +1092,6 @@
11131092
"com.oracle.svm.core.windows",
11141093
"com.oracle.svm.core.genscavenge",
11151094
"com.oracle.svm.core.containers",
1116-
"com.oracle.svm.methodhandles"
11171095
],
11181096
"manifestEntries" : {
11191097
"Premain-Class": "com.oracle.svm.hosted.agent.NativeImageBytecodeInstrumentationAgent",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* or visit www.oracle.com if you need additional information or have any
2323
* questions.
2424
*/
25-
package com.oracle.svm.methodhandles;
25+
package com.oracle.svm.core.methodhandles;
2626

2727
import static com.oracle.svm.core.util.VMError.shouldNotReachHere;
2828

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* or visit www.oracle.com if you need additional information or have any
2323
* questions.
2424
*/
25-
package com.oracle.svm.methodhandles;
25+
package com.oracle.svm.core.methodhandles;
2626

2727
import static com.oracle.svm.core.annotate.TargetElement.CONSTRUCTOR_NAME;
2828

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* or visit www.oracle.com if you need additional information or have any
2323
* questions.
2424
*/
25-
package com.oracle.svm.methodhandles;
25+
package com.oracle.svm.core.methodhandles;
2626

2727
import com.oracle.svm.core.annotate.Alias;
2828
import com.oracle.svm.core.annotate.Substitute;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* or visit www.oracle.com if you need additional information or have any
2323
* questions.
2424
*/
25-
package com.oracle.svm.methodhandles;
25+
package com.oracle.svm.core.methodhandles;
2626

2727
import com.oracle.svm.core.annotate.Alias;
2828
import com.oracle.svm.core.annotate.RecomputeFieldValue;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* or visit www.oracle.com if you need additional information or have any
2323
* questions.
2424
*/
25-
package com.oracle.svm.methodhandles;
25+
package com.oracle.svm.core.methodhandles;
2626

2727
import java.lang.invoke.MethodHandle;
2828
import java.lang.invoke.MethodType;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* or visit www.oracle.com if you need additional information or have any
2323
* questions.
2424
*/
25-
package com.oracle.svm.methodhandles;
25+
package com.oracle.svm.core.methodhandles;
2626

2727
import static com.oracle.svm.core.util.VMError.shouldNotReachHere;
2828
import static com.oracle.svm.core.util.VMError.unimplemented;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* or visit www.oracle.com if you need additional information or have any
2323
* questions.
2424
*/
25-
package com.oracle.svm.methodhandles;
25+
package com.oracle.svm.core.methodhandles;
2626

2727
import static com.oracle.svm.core.util.VMError.unimplemented;
2828

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* or visit www.oracle.com if you need additional information or have any
2323
* questions.
2424
*/
25-
package com.oracle.svm.methodhandles;
25+
package com.oracle.svm.core.methodhandles;
2626

2727
import java.lang.invoke.MethodHandle;
2828
import java.lang.invoke.MethodType;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* or visit www.oracle.com if you need additional information or have any
2323
* questions.
2424
*/
25-
package com.oracle.svm.methodhandles;
25+
package com.oracle.svm.core.methodhandles;
2626

2727
import java.lang.ref.SoftReference;
2828

0 commit comments

Comments
 (0)