Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
070fa8c2
D
dragonwell8_hotspot
项目概览
openanolis
/
dragonwell8_hotspot
通知
2
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_hotspot
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
070fa8c2
编写于
6月 15, 2016
作者:
A
asaha
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
d9d605b6
16d6f5bc
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
93 addition
and
1 deletion
+93
-1
.hgtags
.hgtags
+2
-0
src/cpu/x86/vm/macroAssembler_x86.cpp
src/cpu/x86/vm/macroAssembler_x86.cpp
+18
-1
test/compiler/floatingpoint/TestPow2.java
test/compiler/floatingpoint/TestPow2.java
+73
-0
未找到文件。
.hgtags
浏览文件 @
070fa8c2
...
...
@@ -861,6 +861,8 @@ a2b0ee820059a44be558a2d435b7d85ed5a8b63a jdk8u76-b10
f3e1e734e2d29101a9537ddeb71ecad413fcd352 jdk8u92-b13
24a09407d71bb2cc4848bfa21660c890b4d722b1 jdk8u92-b14
445941ba41c0e3829fe02140690b144281ac2141 jdk8u92-b31
f958bebdee267695e37aadd27753ac8b1e1823c8 jdk8u92-b32
d1bb0e79ff79d21068388d9c62ca01e3c072fd0d jdk8u92-b33
b374548dcb4834eb8731a06b52faddd0f10bd45d jdk8u81-b00
ead07188d11107e877e8e4ad215ff6cb238a8a92 jdk8u101-b01
34429bad9986677f4991c80aeb22665842881cba jdk8u101-b02
...
...
src/cpu/x86/vm/macroAssembler_x86.cpp
浏览文件 @
070fa8c2
...
...
@@ -3202,7 +3202,24 @@ void MacroAssembler::pow_or_exp(bool is_exp, int num_fpu_regs_in_use) {
jmp
(
done
);
}
else
{
// Stack: X Y
Label
x_negative
,
y_odd
;
Label
x_negative
,
y_not_2
;
static
double
two
=
2.0
;
ExternalAddress
two_addr
((
address
)
&
two
);
// constant maybe too far on 64 bit
lea
(
tmp2
,
two_addr
);
fld_d
(
Address
(
tmp2
,
0
));
// Stack: 2 X Y
fcmp
(
tmp
,
2
,
true
,
false
);
// Stack: X Y
jcc
(
Assembler
::
parity
,
y_not_2
);
jcc
(
Assembler
::
notEqual
,
y_not_2
);
fxch
();
fpop
();
// Stack: X
fmul
(
0
);
// Stack: X*X
jmp
(
done
);
bind
(
y_not_2
);
fldz
();
// Stack: 0 X Y
fcmp
(
tmp
,
1
,
true
,
false
);
// Stack: X Y
...
...
test/compiler/floatingpoint/TestPow2.java
0 → 100644
浏览文件 @
070fa8c2
/*
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 8063086
* @summary X^2 special case for C2 yields different result than interpreter
* @library /testlibrary /testlibrary/whitebox /compiler/whitebox
* @build TestPow2
* @run main ClassFileInstaller sun.hotspot.WhiteBox
* @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
* -XX:-BackgroundCompilation -XX:-UseOnStackReplacement TestPow2
*
*/
import
java.lang.reflect.*
;
import
sun.hotspot.WhiteBox
;
public
class
TestPow2
{
private
static
final
WhiteBox
WHITE_BOX
=
WhiteBox
.
getWhiteBox
();
private
static
final
double
base
=
5350.456329377186
;
private
static
final
double
exp
=
2.0
;
static
double
m
()
{
return
Math
.
pow
(
base
,
exp
);
}
static
public
void
main
(
String
[]
args
)
throws
NoSuchMethodException
{
Method
test_method
=
TestPow2
.
class
.
getDeclaredMethod
(
"m"
);
double
interpreter_result
=
m
();
// Compile with C1 if possible
WHITE_BOX
.
enqueueMethodForCompilation
(
test_method
,
CompilerWhiteBoxTest
.
COMP_LEVEL_SIMPLE
);
double
c1_result
=
m
();
WHITE_BOX
.
deoptimizeMethod
(
test_method
);
// Compile it with C2 if possible
WHITE_BOX
.
enqueueMethodForCompilation
(
test_method
,
CompilerWhiteBoxTest
.
COMP_LEVEL_FULL_OPTIMIZATION
);
double
c2_result
=
m
();
if
(
interpreter_result
!=
c1_result
||
interpreter_result
!=
c2_result
||
c1_result
!=
c2_result
)
{
System
.
out
.
println
(
"interpreter = "
+
interpreter_result
+
" c1 = "
+
c1_result
+
" c2 = "
+
c2_result
);
throw
new
RuntimeException
(
"Test Failed"
);
}
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录