package org.graalvm.compiler.hotspot.amd64;
import org.graalvm.compiler.api.replacements.Snippet;
import org.graalvm.compiler.debug.GraalError;
import org.graalvm.compiler.hotspot.HotSpotForeignCallLinkage;
import org.graalvm.compiler.hotspot.meta.HotSpotProviders;
import org.graalvm.compiler.hotspot.stubs.SnippetStub;
import org.graalvm.compiler.options.OptionValues;
import org.graalvm.compiler.replacements.nodes.BinaryMathIntrinsicNode;
import org.graalvm.compiler.replacements.nodes.BinaryMathIntrinsicNode.BinaryOperation;
import org.graalvm.compiler.replacements.nodes.UnaryMathIntrinsicNode;
import org.graalvm.compiler.replacements.nodes.UnaryMathIntrinsicNode.UnaryOperation;
public class AMD64MathStub extends SnippetStub {
public AMD64MathStub(UnaryOperation operation, OptionValues options, HotSpotProviders providers, HotSpotForeignCallLinkage linkage) {
super(snippetName(operation), options, providers, linkage);
}
public AMD64MathStub(BinaryOperation operation, OptionValues options, HotSpotProviders providers, HotSpotForeignCallLinkage linkage) {
super(snippetName(operation), options, providers, linkage);
}
private static String snippetName(UnaryOperation operation) {
switch (operation) {
case SIN:
return "sin";
case COS:
return "cos";
case TAN:
return "tan";
case EXP:
return "exp";
case LOG:
return "log";
case LOG10:
return "log10";
default:
throw GraalError.shouldNotReachHere("Unknown operation " + operation);
}
}
private static String snippetName(BinaryOperation operation) {
if (operation == BinaryOperation.POW) {
return "pow";
}
throw GraalError.shouldNotReachHere("Unknown operation " + operation);
}
@Snippet
private static double log(double value) {
return UnaryMathIntrinsicNode.compute(value, UnaryOperation.LOG);
}
@Snippet
private static double log10(double value) {
return UnaryMathIntrinsicNode.compute(value, UnaryOperation.LOG10);
}
@Snippet
private static double sin(double value) {
return UnaryMathIntrinsicNode.compute(value, UnaryOperation.SIN);
}
@Snippet
private static double cos(double value) {
return UnaryMathIntrinsicNode.compute(value, UnaryOperation.COS);
}
@Snippet
private static double tan(double value) {
return UnaryMathIntrinsicNode.compute(value, UnaryOperation.TAN);
}
@Snippet
private static double exp(double value) {
return UnaryMathIntrinsicNode.compute(value, UnaryOperation.EXP);
}
@Snippet
private static double pow(double value1, double value2) {
return BinaryMathIntrinsicNode.compute(value1, value2, BinaryOperation.POW);
}
}