Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
d608325f
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看板
提交
d608325f
编写于
4月 29, 2008
作者:
R
rasbold
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
b683364c
51c6ffc5
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
64 addition
and
4 deletion
+64
-4
src/share/vm/opto/parse2.cpp
src/share/vm/opto/parse2.cpp
+13
-4
test/compiler/6646019/Test.java
test/compiler/6646019/Test.java
+51
-0
未找到文件。
src/share/vm/opto/parse2.cpp
浏览文件 @
d608325f
...
...
@@ -105,10 +105,19 @@ Node* Parse::array_addressing(BasicType type, int vals, const Type* *result2) {
if
(
GenerateRangeChecks
&&
need_range_check
)
{
// Range is constant in array-oop, so we can use the original state of mem
Node
*
len
=
load_array_length
(
ary
);
// Test length vs index (standard trick using unsigned compare)
Node
*
chk
=
_gvn
.
transform
(
new
(
C
,
3
)
CmpUNode
(
idx
,
len
)
);
BoolTest
::
mask
btest
=
BoolTest
::
lt
;
Node
*
tst
=
_gvn
.
transform
(
new
(
C
,
2
)
BoolNode
(
chk
,
btest
)
);
Node
*
tst
;
if
(
sizetype
->
_hi
<=
0
)
{
// If the greatest array bound is negative, we can conclude that we're
// compiling unreachable code, but the unsigned compare trick used below
// only works with non-negative lengths. Instead, hack "tst" to be zero so
// the uncommon_trap path will always be taken.
tst
=
_gvn
.
intcon
(
0
);
}
else
{
// Test length vs index (standard trick using unsigned compare)
Node
*
chk
=
_gvn
.
transform
(
new
(
C
,
3
)
CmpUNode
(
idx
,
len
)
);
BoolTest
::
mask
btest
=
BoolTest
::
lt
;
tst
=
_gvn
.
transform
(
new
(
C
,
2
)
BoolNode
(
chk
,
btest
)
);
}
// Branch to failure if out of bounds
{
BuildCutout
unless
(
this
,
tst
,
PROB_MAX
);
if
(
C
->
allow_range_check_smearing
())
{
...
...
test/compiler/6646019/Test.java
0 → 100644
浏览文件 @
d608325f
/*
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*
* @test
* @bug 6646019
* @summary array subscript expressions become top() with -d64
* @run main/othervm -Xcomp -XX:CompileOnly=Test.test Test
*/
public
class
Test
{
final
static
int
i
=
2076285318
;
long
l
=
2
;
short
s
;
public
static
void
main
(
String
[]
args
)
{
Test
t
=
new
Test
();
try
{
t
.
test
();
}
catch
(
Throwable
e
)
{
if
(
t
.
l
!=
5
)
{
System
.
out
.
println
(
"Fails: "
+
t
.
l
+
" != 5"
);
}
}
}
private
void
test
()
{
l
=
5
;
l
=
(
new
short
[(
byte
)-
2
])[(
byte
)(
l
=
i
)];
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录