< prev index next >

src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/CheckGraalIntrinsics.java

Print this page
rev 59103 : imported patch hotspot

*** 59,69 **** import jdk.vm.ci.hotspot.VMIntrinsicMethod; import jdk.vm.ci.meta.MetaAccessProvider; import jdk.vm.ci.meta.MetaUtil; import jdk.vm.ci.meta.MethodHandleAccessProvider.IntrinsicMethod; import jdk.vm.ci.meta.ResolvedJavaMethod; - import jdk.vm.ci.sparc.SPARC; /** * Checks the intrinsics implemented by Graal against the set of intrinsics declared by HotSpot. The * purpose of this test is to detect when new intrinsics are added to HotSpot and process them * appropriately in Graal. This will be achieved by working through {@link #toBeInvestigated} and --- 59,68 ----
*** 371,384 **** } if (!config.useFMAIntrinsics) { add(ignore, "java/lang/Math.fma(DDD)D", "java/lang/Math.fma(FFF)F"); - } else if (arch instanceof SPARC) { - add(toBeInvestigated, - "java/lang/Math.fma(DDD)D", - "java/lang/Math.fma(FFF)F"); } } if (isJDK10OrHigher()) { add(toBeInvestigated, --- 370,379 ----
< prev index next >