Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building. #866

Closed
tausiq opened this issue Jan 25, 2021 · 1 comment

Comments

@tausiq
Copy link

tausiq commented Jan 25, 2021

Hi, My application works as expected when I run, mvn javafx:run.
However, running as native image, mvn client:build client:run fails with the following error,

Click to expand!
% mvn client:build client:run                                    
[INFO] Scanning for projects...
[INFO] 
[INFO] --------------------< com.mycompany:myapplication >---------------------
[INFO] Building My Gluon Application 1.0.0-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] --- client-maven-plugin:0.1.35:build (default-cli) @ myapplication ---
[INFO] Scanning for projects...
[INFO] 
[INFO] --------------------< com.mycompany:myapplication >---------------------
[INFO] Building My Gluon Application 1.0.0-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO] 
[INFO] >>> client-maven-plugin:0.1.35:compile (default-cli) > process-classes @ myapplication >>>
[INFO] 
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ myapplication ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 22 resources
[INFO] 
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ myapplication ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] <<< client-maven-plugin:0.1.35:compile (default-cli) < process-classes @ myapplication <<<
[INFO] 
[INFO] 
[INFO] --- client-maven-plugin:0.1.35:compile (default-cli) @ myapplication ---
[Mon. Jan. 25 01:05:53 EST 2021][INFO] ==================== COMPILE TASK ====================
             _______  ___      __   __  _______  __    _
            |       ||   |    |  | |  ||       ||  |  | |
            |    ___||   |    |  | |  ||   _   ||   |_| |
            |   | __ |   |    |  |_|  ||  | |  ||       |
            |   ||  ||   |___ |       ||  |_|  ||  _    |
            |   |_| ||       ||       ||       || | |   |
            |_______||_______||_______||_______||_|  |__|

    Access to the latest docs, tips and tricks and more info on
    how to get support? Register your usage of Gluon Substrate now at

    https://gluonhq.com/activate



[Mon. Jan. 25 01:05:54 EST 2021][INFO] We will now compile your code for x86_64-apple-darwin. This may take some time.
[Mon. Jan. 25 01:05:57 EST 2021][INFO] [SUB] Warning: Ignoring server-mode native-image argument --no-server.
[Mon. Jan. 25 01:06:06 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38685]    classlist:   9,036.00 ms,  0.96 GB
[Mon. Jan. 25 01:06:10 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38685]        (cap):   2,375.23 ms,  0.96 GB
[Mon. Jan. 25 01:06:11 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38685]        setup:   4,512.88 ms,  0.96 GB
[Mon. Jan. 25 01:07:14 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38685]     (clinit):   1,333.46 ms,  3.46 GB
[Mon. Jan. 25 01:07:15 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38685]   (typeflow):  22,955.69 ms,  3.46 GB
[Mon. Jan. 25 01:07:15 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38685]    (objects):  32,863.32 ms,  3.46 GB
[Mon. Jan. 25 01:07:15 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38685]   (features):   3,928.29 ms,  3.46 GB
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38685]     analysis:  66,844.61 ms,  3.46 GB
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Warning: Aborting stand-alone image build. Unsupported features in 25 methods
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Detailed message:
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: Object was reached by 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	indexing into array
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 		constant java.lang.Object[]@3c22a2b6 reached by 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	reading field java.util.ImmutableCollections$ListN.elements of
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 		constant java.util.ImmutableCollections$ListN@18d5b9e3 reached by 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	reading field java.lang.invoke.ClassSpecializer.transformMethods of
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 		constant java.lang.invoke.BoundMethodHandle$Specializer@ffef999 reached by 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	scanning method java.lang.invoke.BoundMethodHandle$SpeciesData.extendWith(BoundMethodHandle.java:352)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.BoundMethodHandle$SpeciesData.extendWith(byte): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic()
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm$MH/0x00000007c1a4e040.invoke_MT(LambdaForm$MH)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm$MH/2006102769.invoke_MT(Object, Object): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.lang.invoke.LambdaForm$MH/0x00000007c1a4e040.invoke_MT(LambdaForm$MH)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at akka.dispatch.affinity.OnSpinWait.spinWait(OnSpinWait.java:21)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at akka.dispatch.affinity.AffinityPool$IdleStrategy.idle(AffinityPool.scala:78)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at akka.dispatch.affinity.AffinityPool$AffinityPoolWorker.executeNext$1(AffinityPool.scala:256)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at akka.dispatch.affinity.AffinityPool$AffinityPoolWorker.runLoop$1(AffinityPool.scala:274)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at akka.dispatch.affinity.AffinityPool$AffinityPoolWorker.run(AffinityPool.scala:282)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at com.oracle.svm.jni.JNIJavaCallWrappers.jniInvoke_ARRAY:Ljava_lang_Runnable_2_0002erun_00028_00029V(generated:0)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, Object, Object)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendL(BoundMethodHandle.java:236)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendL(MethodType, LambdaForm, Object): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, Object, double)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendD(BoundMethodHandle.java:268)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendD(MethodType, LambdaForm, double): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, Object, float)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendF(BoundMethodHandle.java:260)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendF(MethodType, LambdaForm, float): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, Object, int)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendI(BoundMethodHandle.java:244)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendI(MethodType, LambdaForm, int): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, Object, long)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendJ(BoundMethodHandle.java:252)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendJ(MethodType, LambdaForm, long): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, double)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.SimpleMethodHandle.copyWithExtendD(SimpleMethodHandle.java:95)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.SimpleMethodHandle.copyWithExtendD(MethodType, LambdaForm, double): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, float)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.SimpleMethodHandle.copyWithExtendF(SimpleMethodHandle.java:87)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.SimpleMethodHandle.copyWithExtendF(MethodType, LambdaForm, float): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, int)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.SimpleMethodHandle.copyWithExtendI(SimpleMethodHandle.java:71)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.SimpleMethodHandle.copyWithExtendI(MethodType, LambdaForm, int): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, long)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.SimpleMethodHandle.copyWithExtendJ(SimpleMethodHandle.java:79)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.SimpleMethodHandle.copyWithExtendJ(MethodType, LambdaForm, long): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.ClassSpecializer$Factory.generateConcreteSpeciesCodeFile(ClassSpecializer.java:829)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.ClassSpecializer$Factory.generateConcreteSpeciesCodeFile(String, ClassSpecializer$SpeciesData): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.ClassSpecializer$Factory.linkCodeToSpeciesData(ClassSpecializer.java:976)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.ClassSpecializer$Factory.linkCodeToSpeciesData(Class, ClassSpecializer$SpeciesData, boolean): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm$NamedFunction.<init>(LambdaForm.java:1112)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm$NamedFunction.<init>(MethodHandle): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm$NamedFunction.<init>(LambdaForm.java:1134)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm$NamedFunction.<init>(MethodType): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm$NamedFunction.equals(LambdaForm.java:1177)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm$NamedFunction.equals(Object): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.lang.invoke.LambdaForm$NamedFunction.equals(LambdaForm.java:1173)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.util.AbstractMap.get(AbstractMap.java:186)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at com.oracle.svm.jni.JNIJavaCallWrappers.jniInvoke_VARARGS:Ljava_util_Map_2_0002eget_00028Ljava_lang_Object_2_00029Ljava_lang_Object_2(generated:0)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm$NamedFunction.hashCode(LambdaForm.java:1182)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm$NamedFunction.hashCode(): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.lang.invoke.LambdaForm$NamedFunction.hashCode(LambdaForm.java:1182)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.util.concurrent.ConcurrentHashMap.get(ConcurrentHashMap.java:936)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at com.oracle.svm.jni.JNIJavaCallWrappers.jniInvoke_VARARGS:Ljava_util_Map_2_0002eget_00028Ljava_lang_Object_2_00029Ljava_lang_Object_2(generated:0)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm$NamedFunction.methodType(LambdaForm.java:1245)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm$NamedFunction.methodType(): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm$NamedFunction.toString(LambdaForm.java:1279)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm$NamedFunction.toString(): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.lang.invoke.LambdaForm$NamedFunction.toString(LambdaForm.java:1279)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at com.sun.javafx.css.ParsedValueImpl.equals(ParsedValueImpl.java:373)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.util.AbstractMap.get(AbstractMap.java:186)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at com.oracle.svm.jni.JNIJavaCallWrappers.jniInvoke_VARARGS:Ljava_util_Map_2_0002eget_00028Ljava_lang_Object_2_00029Ljava_lang_Object_2(generated:0)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm.compileToBytecode(LambdaForm.java:861)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm.compileToBytecode(): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm.createFormsFor(LambdaForm.java:1757)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm.createFormsFor(LambdaForm$BasicType): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm.prepare(LambdaForm.java:831)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm.prepare(): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.MethodHandles$Lookup.findGetter(MethodHandles.java:1418)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.MethodHandles$Lookup.findGetter(Class, String, Class): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.MethodHandles$Lookup.findStatic(MethodHandles.java:1102)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.MethodHandles$Lookup.findStatic(Class, String, MethodType): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.MethodHandles$Lookup.findVirtual(MethodHandles.java:1194)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.MethodHandles$Lookup.findVirtual(Class, String, MethodType): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] com.oracle.svm.hosted.FallbackFeature$FallbackImageRequest: Aborting stand-alone image build. Unsupported features in 25 methods
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Detailed message:
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: Object was reached by 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	indexing into array
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 		constant java.lang.Object[]@3c22a2b6 reached by 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	reading field java.util.ImmutableCollections$ListN.elements of
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 		constant java.util.ImmutableCollections$ListN@18d5b9e3 reached by 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	reading field java.lang.invoke.ClassSpecializer.transformMethods of
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 		constant java.lang.invoke.BoundMethodHandle$Specializer@ffef999 reached by 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	scanning method java.lang.invoke.BoundMethodHandle$SpeciesData.extendWith(BoundMethodHandle.java:352)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.BoundMethodHandle$SpeciesData.extendWith(byte): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic()
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm$MH/0x00000007c1a4e040.invoke_MT(LambdaForm$MH)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm$MH/2006102769.invoke_MT(Object, Object): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.lang.invoke.LambdaForm$MH/0x00000007c1a4e040.invoke_MT(LambdaForm$MH)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at akka.dispatch.affinity.OnSpinWait.spinWait(OnSpinWait.java:21)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at akka.dispatch.affinity.AffinityPool$IdleStrategy.idle(AffinityPool.scala:78)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at akka.dispatch.affinity.AffinityPool$AffinityPoolWorker.executeNext$1(AffinityPool.scala:256)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at akka.dispatch.affinity.AffinityPool$AffinityPoolWorker.runLoop$1(AffinityPool.scala:274)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at akka.dispatch.affinity.AffinityPool$AffinityPoolWorker.run(AffinityPool.scala:282)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at com.oracle.svm.jni.JNIJavaCallWrappers.jniInvoke_ARRAY:Ljava_lang_Runnable_2_0002erun_00028_00029V(generated:0)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, Object, Object)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendL(BoundMethodHandle.java:236)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendL(MethodType, LambdaForm, Object): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, Object, double)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendD(BoundMethodHandle.java:268)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendD(MethodType, LambdaForm, double): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, Object, float)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendF(BoundMethodHandle.java:260)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendF(MethodType, LambdaForm, float): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, Object, int)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendI(BoundMethodHandle.java:244)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendI(MethodType, LambdaForm, int): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, Object, long)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendJ(BoundMethodHandle.java:252)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendJ(MethodType, LambdaForm, long): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, double)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.SimpleMethodHandle.copyWithExtendD(SimpleMethodHandle.java:95)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.SimpleMethodHandle.copyWithExtendD(MethodType, LambdaForm, double): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, float)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.SimpleMethodHandle.copyWithExtendF(SimpleMethodHandle.java:87)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.SimpleMethodHandle.copyWithExtendF(MethodType, LambdaForm, float): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, int)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.SimpleMethodHandle.copyWithExtendI(SimpleMethodHandle.java:71)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.SimpleMethodHandle.copyWithExtendI(MethodType, LambdaForm, int): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, long)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.SimpleMethodHandle.copyWithExtendJ(SimpleMethodHandle.java:79)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.SimpleMethodHandle.copyWithExtendJ(MethodType, LambdaForm, long): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.ClassSpecializer$Factory.generateConcreteSpeciesCodeFile(ClassSpecializer.java:829)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.ClassSpecializer$Factory.generateConcreteSpeciesCodeFile(String, ClassSpecializer$SpeciesData): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.ClassSpecializer$Factory.linkCodeToSpeciesData(ClassSpecializer.java:976)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.ClassSpecializer$Factory.linkCodeToSpeciesData(Class, ClassSpecializer$SpeciesData, boolean): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm$NamedFunction.<init>(LambdaForm.java:1112)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm$NamedFunction.<init>(MethodHandle): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm$NamedFunction.<init>(LambdaForm.java:1134)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm$NamedFunction.<init>(MethodType): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm$NamedFunction.equals(LambdaForm.java:1177)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm$NamedFunction.equals(Object): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.lang.invoke.LambdaForm$NamedFunction.equals(LambdaForm.java:1173)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.util.AbstractMap.get(AbstractMap.java:186)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at com.oracle.svm.jni.JNIJavaCallWrappers.jniInvoke_VARARGS:Ljava_util_Map_2_0002eget_00028Ljava_lang_Object_2_00029Ljava_lang_Object_2(generated:0)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm$NamedFunction.hashCode(LambdaForm.java:1182)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm$NamedFunction.hashCode(): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.lang.invoke.LambdaForm$NamedFunction.hashCode(LambdaForm.java:1182)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.util.concurrent.ConcurrentHashMap.get(ConcurrentHashMap.java:936)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at com.oracle.svm.jni.JNIJavaCallWrappers.jniInvoke_VARARGS:Ljava_util_Map_2_0002eget_00028Ljava_lang_Object_2_00029Ljava_lang_Object_2(generated:0)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm$NamedFunction.methodType(LambdaForm.java:1245)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm$NamedFunction.methodType(): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm$NamedFunction.toString(LambdaForm.java:1279)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm$NamedFunction.toString(): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.lang.invoke.LambdaForm$NamedFunction.toString(LambdaForm.java:1279)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at com.sun.javafx.css.ParsedValueImpl.equals(ParsedValueImpl.java:373)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.util.AbstractMap.get(AbstractMap.java:186)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at com.oracle.svm.jni.JNIJavaCallWrappers.jniInvoke_VARARGS:Ljava_util_Map_2_0002eget_00028Ljava_lang_Object_2_00029Ljava_lang_Object_2(generated:0)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm.compileToBytecode(LambdaForm.java:861)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm.compileToBytecode(): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm.createFormsFor(LambdaForm.java:1757)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm.createFormsFor(LambdaForm$BasicType): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm.prepare(LambdaForm.java:831)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm.prepare(): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.MethodHandles$Lookup.findGetter(MethodHandles.java:1418)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.MethodHandles$Lookup.findGetter(Class, String, Class): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.MethodHandles$Lookup.findStatic(MethodHandles.java:1102)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.MethodHandles$Lookup.findStatic(Class, String, MethodType): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.MethodHandles$Lookup.findVirtual(MethodHandles.java:1194)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.MethodHandles$Lookup.findVirtual(Class, String, MethodType): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at com.oracle.svm.hosted.FallbackFeature.reportFallback(FallbackFeature.java:209)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at com.oracle.svm.hosted.FallbackFeature.reportAsFallback(FallbackFeature.java:219)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at com.oracle.svm.hosted.NativeImageGenerator.runPointsToAnalysis(NativeImageGenerator.java:765)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at com.oracle.svm.hosted.NativeImageGenerator.doRun(NativeImageGenerator.java:555)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at com.oracle.svm.hosted.NativeImageGenerator.lambda$run$0(NativeImageGenerator.java:468)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.base/java.util.concurrent.ForkJoinTask$AdaptedRunnableAction.exec(ForkJoinTask.java:1407)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:290)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1020)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1656)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1594)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:177)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Caused by: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Unsupported features in 25 methods
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Detailed message:
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: Object was reached by 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	indexing into array
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 		constant java.lang.Object[]@3c22a2b6 reached by 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	reading field java.util.ImmutableCollections$ListN.elements of
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 		constant java.util.ImmutableCollections$ListN@18d5b9e3 reached by 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	reading field java.lang.invoke.ClassSpecializer.transformMethods of
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 		constant java.lang.invoke.BoundMethodHandle$Specializer@ffef999 reached by 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	scanning method java.lang.invoke.BoundMethodHandle$SpeciesData.extendWith(BoundMethodHandle.java:352)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.BoundMethodHandle$SpeciesData.extendWith(byte): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic()
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm$MH/0x00000007c1a4e040.invoke_MT(LambdaForm$MH)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm$MH/2006102769.invoke_MT(Object, Object): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.lang.invoke.LambdaForm$MH/0x00000007c1a4e040.invoke_MT(LambdaForm$MH)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at akka.dispatch.affinity.OnSpinWait.spinWait(OnSpinWait.java:21)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at akka.dispatch.affinity.AffinityPool$IdleStrategy.idle(AffinityPool.scala:78)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at akka.dispatch.affinity.AffinityPool$AffinityPoolWorker.executeNext$1(AffinityPool.scala:256)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at akka.dispatch.affinity.AffinityPool$AffinityPoolWorker.runLoop$1(AffinityPool.scala:274)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at akka.dispatch.affinity.AffinityPool$AffinityPoolWorker.run(AffinityPool.scala:282)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at com.oracle.svm.jni.JNIJavaCallWrappers.jniInvoke_ARRAY:Ljava_lang_Runnable_2_0002erun_00028_00029V(generated:0)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, Object, Object)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendL(BoundMethodHandle.java:236)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendL(MethodType, LambdaForm, Object): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, Object, double)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendD(BoundMethodHandle.java:268)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendD(MethodType, LambdaForm, double): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, Object, float)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendF(BoundMethodHandle.java:260)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendF(MethodType, LambdaForm, float): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, Object, int)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendI(BoundMethodHandle.java:244)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendI(MethodType, LambdaForm, int): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, Object, long)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendJ(BoundMethodHandle.java:252)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.BoundMethodHandle$Species_L.copyWithExtendJ(MethodType, LambdaForm, long): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, double)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.SimpleMethodHandle.copyWithExtendD(SimpleMethodHandle.java:95)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.SimpleMethodHandle.copyWithExtendD(MethodType, LambdaForm, double): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, float)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.SimpleMethodHandle.copyWithExtendF(SimpleMethodHandle.java:87)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.SimpleMethodHandle.copyWithExtendF(MethodType, LambdaForm, float): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, int)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.SimpleMethodHandle.copyWithExtendI(SimpleMethodHandle.java:71)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.SimpleMethodHandle.copyWithExtendI(MethodType, LambdaForm, int): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.graal.pointsto.constraints.UnsupportedFeatureException: Invoke with MethodHandle argument could not be reduced to at most a single call or single field access. The method handle must be a compile time constant, e.g., be loaded from a `static final` field. Method that contains the method handle invocation: java.lang.invoke.MethodHandle.invokeBasic(Object, Object, long)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The error is then reported at run time when the invoke is executed.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.SimpleMethodHandle.copyWithExtendJ(SimpleMethodHandle.java:79)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.SimpleMethodHandle.copyWithExtendJ(MethodType, LambdaForm, long): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.ClassSpecializer$Factory.generateConcreteSpeciesCodeFile(ClassSpecializer.java:829)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.ClassSpecializer$Factory.generateConcreteSpeciesCodeFile(String, ClassSpecializer$SpeciesData): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.ClassSpecializer$Factory.linkCodeToSpeciesData(ClassSpecializer.java:976)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.ClassSpecializer$Factory.linkCodeToSpeciesData(Class, ClassSpecializer$SpeciesData, boolean): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm$NamedFunction.<init>(LambdaForm.java:1112)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm$NamedFunction.<init>(MethodHandle): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm$NamedFunction.<init>(LambdaForm.java:1134)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm$NamedFunction.<init>(MethodType): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm$NamedFunction.equals(LambdaForm.java:1177)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm$NamedFunction.equals(Object): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.lang.invoke.LambdaForm$NamedFunction.equals(LambdaForm.java:1173)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.util.AbstractMap.get(AbstractMap.java:186)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at com.oracle.svm.jni.JNIJavaCallWrappers.jniInvoke_VARARGS:Ljava_util_Map_2_0002eget_00028Ljava_lang_Object_2_00029Ljava_lang_Object_2(generated:0)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm$NamedFunction.hashCode(LambdaForm.java:1182)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm$NamedFunction.hashCode(): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.lang.invoke.LambdaForm$NamedFunction.hashCode(LambdaForm.java:1182)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.util.concurrent.ConcurrentHashMap.get(ConcurrentHashMap.java:936)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at com.oracle.svm.jni.JNIJavaCallWrappers.jniInvoke_VARARGS:Ljava_util_Map_2_0002eget_00028Ljava_lang_Object_2_00029Ljava_lang_Object_2(generated:0)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm$NamedFunction.methodType(LambdaForm.java:1245)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm$NamedFunction.methodType(): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm$NamedFunction.toString(LambdaForm.java:1279)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm$NamedFunction.toString(): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.lang.invoke.LambdaForm$NamedFunction.toString(LambdaForm.java:1279)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at com.sun.javafx.css.ParsedValueImpl.equals(ParsedValueImpl.java:373)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at java.util.AbstractMap.get(AbstractMap.java:186)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at com.oracle.svm.jni.JNIJavaCallWrappers.jniInvoke_VARARGS:Ljava_util_Map_2_0002eget_00028Ljava_lang_Object_2_00029Ljava_lang_Object_2(generated:0)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm.compileToBytecode(LambdaForm.java:861)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm.compileToBytecode(): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm.createFormsFor(LambdaForm.java:1757)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm.createFormsFor(LambdaForm$BasicType): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.LambdaForm.prepare(LambdaForm.java:831)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.LambdaForm.prepare(): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.MethodHandles$Lookup.findGetter(MethodHandles.java:1418)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.MethodHandles$Lookup.findGetter(Class, String, Class): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.MethodHandles$Lookup.findStatic(MethodHandles.java:1102)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.MethodHandles$Lookup.findStatic(Class, String, MethodType): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Error: com.oracle.svm.hosted.substitute.DeletedElementException: Unsupported type java.lang.invoke.MemberName is reachable: All methods from java.lang.invoke should have been replaced during image building.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] To diagnose the issue, you can add the option --report-unsupported-elements-at-runtime. The unsupported element is then reported at run time when it is accessed the first time.
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Trace: 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at parsing java.lang.invoke.MethodHandles$Lookup.findVirtual(MethodHandles.java:1194)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] Call path from entry point to java.lang.invoke.MethodHandles$Lookup.findVirtual(Class, String, MethodType): 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	no path found from entry point to target method
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at com.oracle.graal.pointsto.constraints.UnsupportedFeatures.report(UnsupportedFeatures.java:129)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	at com.oracle.svm.hosted.NativeImageGenerator.runPointsToAnalysis(NativeImageGenerator.java:762)
[Mon. Jan. 25 01:07:18 EST 2021][INFO] [SUB] 	... 8 more
[Mon. Jan. 25 01:07:21 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38805]    classlist:   1,512.42 ms,  0.96 GB
[Mon. Jan. 25 01:07:24 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38805]        (cap):   2,969.16 ms,  0.96 GB
[Mon. Jan. 25 01:07:26 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38805]        setup:   5,197.46 ms,  0.96 GB
[Mon. Jan. 25 01:07:37 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38805]     (clinit):     184.36 ms,  1.19 GB
[Mon. Jan. 25 01:07:37 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38805]   (typeflow):   6,181.70 ms,  1.19 GB
[Mon. Jan. 25 01:07:37 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38805]    (objects):   4,464.02 ms,  1.19 GB
[Mon. Jan. 25 01:07:37 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38805]   (features):     338.03 ms,  1.19 GB
[Mon. Jan. 25 01:07:37 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38805]     analysis:  11,430.66 ms,  1.19 GB
[Mon. Jan. 25 01:07:38 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38805]     universe:     678.60 ms,  1.21 GB
[Mon. Jan. 25 01:07:40 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38805]      (parse):   1,895.52 ms,  1.21 GB
[Mon. Jan. 25 01:07:42 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38805]     (inline):   1,810.49 ms,  1.66 GB
[Mon. Jan. 25 01:07:55 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38805]    (compile):  12,654.44 ms,  2.24 GB
[Mon. Jan. 25 01:07:55 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38805]      compile:  17,373.53 ms,  2.24 GB
[Mon. Jan. 25 01:07:59 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38805]        image:   3,224.84 ms,  2.24 GB
[Mon. Jan. 25 01:08:00 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38805]        write:     852.09 ms,  2.24 GB
[Mon. Jan. 25 01:08:00 EST 2021][INFO] [SUB] [com.mycompany.sample.main:38805]      [total]:  40,607.03 ms,  2.24 GB
[Mon. Jan. 25 01:08:00 EST 2021][INFO] [SUB] Warning: Image 'com.mycompany.sample.main' is a fallback image that requires a JDK for execution (use --no-fallback to suppress fallback image generation and to print more detailed information why a fallback image was necessary).
[Mon. Jan. 25 01:08:00 EST 2021][INFO] Additional information: Objectfile should be called com.mycompany.sample.main.o but we didn't find that under /my-gluon-application/target/client/x86_64-darwin/gvm
[Mon. Jan. 25 01:08:00 EST 2021][SEVERE] Compiling failed.
Check the log files under my-gluon-application/target/client/x86_64-darwin/gvm/log
And please check https://docs.gluonhq.com/client/ for more information.
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  02:08 min
[INFO] Finished at: 2021-01-25T01:08:00-05:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal com.gluonhq:client-maven-plugin:0.1.35:compile (default-cli) on project myapplication: Compiling failed -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[INFO] 
[INFO] ------------------------------------------------------------------------
[INFO] Skipping My Gluon Application
[INFO] This project has been banned from the build due to previous failures.
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  02:10 min
[INFO] Finished at: 2021-01-25T01:08:00-05:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal com.gluonhq:client-maven-plugin:0.1.35:build (default-cli) on project myapplication: Error, client:build failed -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

Any help is appreciated. Thanks in advance!

@tausiq
Copy link
Author

tausiq commented Jan 25, 2021

Apparently it's a GraalVM issue and I was using graalvm-ce-java11-20.3.1.
Using graalvm-ce-java11-21.0.0 resolves the issue.

Details, oracle/graal#2761

Thanks!

@tausiq tausiq closed this as completed Jan 25, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant