Skip to content

Commit 1fdbb1b

Browse files
zhengxiaolinXRealFYang
authored andcommittedOct 28, 2022
8295926: RISC-V: C1: Fix LIRGenerator::do_LibmIntrinsic
Reviewed-by: yadongwang, fyang
1 parent cf5546b commit 1fdbb1b

File tree

2 files changed

+96
-5
lines changed

2 files changed

+96
-5
lines changed
 

‎src/hotspot/cpu/riscv/c1_LIRGenerator_riscv.cpp

+16-5
Original file line numberDiff line numberDiff line change
@@ -671,19 +671,30 @@ void LIRGenerator::do_MathIntrinsic(Intrinsic* x) {
671671
void LIRGenerator::do_LibmIntrinsic(Intrinsic* x) {
672672
LIRItem value(x->argument_at(0), this);
673673
value.set_destroys_register();
674+
674675
LIR_Opr calc_result = rlock_result(x);
675676
LIR_Opr result_reg = result_register_for(x->type());
677+
676678
CallingConvention* cc = NULL;
677-
BasicTypeList signature(1);
678-
signature.append(T_DOUBLE);
679-
if (x->id() == vmIntrinsics::_dpow) { signature.append(T_DOUBLE); }
680-
cc = frame_map()->c_calling_convention(&signature);
681-
value.load_item_force(cc->at(0));
679+
682680
if (x->id() == vmIntrinsics::_dpow) {
683681
LIRItem value1(x->argument_at(1), this);
682+
684683
value1.set_destroys_register();
684+
685+
BasicTypeList signature(2);
686+
signature.append(T_DOUBLE);
687+
signature.append(T_DOUBLE);
688+
cc = frame_map()->c_calling_convention(&signature);
689+
value.load_item_force(cc->at(0));
685690
value1.load_item_force(cc->at(1));
691+
} else {
692+
BasicTypeList signature(1);
693+
signature.append(T_DOUBLE);
694+
cc = frame_map()->c_calling_convention(&signature);
695+
value.load_item_force(cc->at(0));
686696
}
697+
687698
switch (x->id()) {
688699
case vmIntrinsics::_dexp:
689700
if (StubRoutines::dexp() != NULL) { __ call_runtime_leaf(StubRoutines::dexp(), getThreadTemp(), result_reg, cc->args()); }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
/*
2+
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2022, Alibaba Group Holding Limited. All rights reserved.
4+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5+
*
6+
* This code is free software; you can redistribute it and/or modify it
7+
* under the terms of the GNU General Public License version 2 only, as
8+
* published by the Free Software Foundation.
9+
*
10+
* This code is distributed in the hope that it will be useful, but WITHOUT
11+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13+
* version 2 for more details (a copy is included in the LICENSE file that
14+
* accompanied this code).
15+
*
16+
* You should have received a copy of the GNU General Public License version
17+
* 2 along with this work; if not, write to the Free Software Foundation,
18+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19+
*
20+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
21+
* or visit www.oracle.com if you need additional information or have any
22+
* questions.
23+
*/
24+
25+
/*
26+
* @test
27+
* @summary Test libm intrinsics
28+
* @library /test/lib /
29+
*
30+
* @build jdk.test.whitebox.WhiteBox
31+
* @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
32+
* @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
33+
* -XX:-BackgroundCompilation -XX:-UseOnStackReplacement
34+
* compiler.floatingpoint.TestLibmIntrinsics
35+
*/
36+
37+
package compiler.floatingpoint;
38+
39+
import compiler.whitebox.CompilerWhiteBoxTest;
40+
import jdk.test.whitebox.WhiteBox;
41+
42+
import java.lang.reflect.Method;
43+
44+
public class TestLibmIntrinsics {
45+
46+
private static final WhiteBox WHITE_BOX = WhiteBox.getWhiteBox();
47+
48+
private static final double pi = 3.1415926;
49+
50+
private static final double expected = 2.5355263553695413;
51+
52+
static double m() {
53+
return Math.pow(pi, Math.sin(Math.cos(Math.tan(Math.log(Math.log10(Math.exp(pi)))))));
54+
}
55+
56+
static public void main(String[] args) throws NoSuchMethodException {
57+
Method test_method = compiler.floatingpoint.TestLibmIntrinsics.class.getDeclaredMethod("m");
58+
59+
double interpreter_result = m();
60+
61+
// Compile with C1 if possible
62+
WHITE_BOX.enqueueMethodForCompilation(test_method, CompilerWhiteBoxTest.COMP_LEVEL_SIMPLE);
63+
64+
double c1_result = m();
65+
66+
WHITE_BOX.deoptimizeMethod(test_method);
67+
68+
// Compile it with C2 if possible
69+
WHITE_BOX.enqueueMethodForCompilation(test_method, CompilerWhiteBoxTest.COMP_LEVEL_FULL_OPTIMIZATION);
70+
71+
double c2_result = m();
72+
73+
if (interpreter_result != c1_result ||
74+
interpreter_result != c2_result ||
75+
c1_result != c2_result) {
76+
System.out.println("interpreter = " + interpreter_result + " c1 = " + c1_result + " c2 = " + c2_result);
77+
throw new RuntimeException("Test Failed");
78+
}
79+
}
80+
}

0 commit comments

Comments
 (0)
Please sign in to comment.