< prev index next >

src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/gen/ArithmeticLIRGeneratorTool.java

Print this page
rev 56282 : [mq]: graal


 120     @SuppressWarnings("unused")
 121     default Value emitMathSin(Value input) {
 122         throw GraalError.unimplemented("No specialized implementation available");
 123     }
 124 
 125     @SuppressWarnings("unused")
 126     default Value emitMathTan(Value input) {
 127         throw GraalError.unimplemented("No specialized implementation available");
 128     }
 129 
 130     @SuppressWarnings("unused")
 131     default Value emitMathExp(Value input) {
 132         throw GraalError.unimplemented("No specialized implementation available");
 133     }
 134 
 135     @SuppressWarnings("unused")
 136     default Value emitMathPow(Value x, Value y) {
 137         throw GraalError.unimplemented("No specialized implementation available");
 138     }
 139 
 140     @SuppressWarnings("unused")
 141     default void emitZeroMemory(Value address, Value length) {
 142         throw GraalError.unimplemented("Bulk zeroing is not supported on this platform");
 143     }
 144 }


 120     @SuppressWarnings("unused")
 121     default Value emitMathSin(Value input) {
 122         throw GraalError.unimplemented("No specialized implementation available");
 123     }
 124 
 125     @SuppressWarnings("unused")
 126     default Value emitMathTan(Value input) {
 127         throw GraalError.unimplemented("No specialized implementation available");
 128     }
 129 
 130     @SuppressWarnings("unused")
 131     default Value emitMathExp(Value input) {
 132         throw GraalError.unimplemented("No specialized implementation available");
 133     }
 134 
 135     @SuppressWarnings("unused")
 136     default Value emitMathPow(Value x, Value y) {
 137         throw GraalError.unimplemented("No specialized implementation available");
 138     }
 139 




 140 }
< prev index next >