Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
d2420306
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看板
提交
d2420306
编写于
10月 18, 2015
作者:
A
asaha
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
f676ecf8
ca672687
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
89 addition
and
2 deletion
+89
-2
src/share/vm/classfile/stackMapTable.cpp
src/share/vm/classfile/stackMapTable.cpp
+0
-1
src/share/vm/opto/escape.cpp
src/share/vm/opto/escape.cpp
+1
-1
src/share/vm/services/management.cpp
src/share/vm/services/management.cpp
+2
-0
test/compiler/escapeAnalysis/TestEABadMergeMem.java
test/compiler/escapeAnalysis/TestEABadMergeMem.java
+86
-0
未找到文件。
src/share/vm/classfile/stackMapTable.cpp
浏览文件 @
d2420306
...
...
@@ -186,7 +186,6 @@ VerificationType StackMapReader::parse_verification_type(u1* flags, TRAPS) {
u2
offset
=
_stream
->
get_u2
(
THREAD
);
if
(
offset
>=
_code_length
||
_code_data
[
offset
]
!=
ClassVerifier
::
NEW_OFFSET
)
{
ResourceMark
rm
(
THREAD
);
_verifier
->
class_format_error
(
"StackMapTable format error: bad offset for Uninitialized"
);
return
VerificationType
::
bogus_type
();
...
...
src/share/vm/opto/escape.cpp
浏览文件 @
d2420306
...
...
@@ -3183,7 +3183,7 @@ void ConnectionGraph::split_unique_types(GrowableArray<Node *> &alloc_worklist)
// Note 2: MergeMem may already contains instance memory slices added
// during find_inst_mem() call when memory nodes were processed above.
igvn
->
hash_delete
(
nmm
);
uint
nslices
=
nmm
->
req
(
);
uint
nslices
=
MIN2
(
nmm
->
req
(),
new_index_start
);
for
(
uint
i
=
Compile
::
AliasIdxRaw
+
1
;
i
<
nslices
;
i
++
)
{
Node
*
mem
=
nmm
->
in
(
i
);
Node
*
cur
=
NULL
;
...
...
src/share/vm/services/management.cpp
浏览文件 @
d2420306
...
...
@@ -1107,6 +1107,8 @@ static void do_thread_dump(ThreadDumpResult* dump_result,
bool
with_locked_monitors
,
bool
with_locked_synchronizers
,
TRAPS
)
{
// no need to actually perform thread dump if no TIDs are specified
if
(
num_threads
==
0
)
return
;
// First get an array of threadObj handles.
// A JavaThread may terminate before we get the stack trace.
...
...
test/compiler/escapeAnalysis/TestEABadMergeMem.java
0 → 100644
浏览文件 @
d2420306
/*
* Copyright (c) 2015, 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 8134031
* @summary Bad rewiring of memory edges when we split unique types during EA
* @run main/othervm -XX:-BackgroundCompilation -XX:-UseOnStackReplacement -XX:CompileCommand=dontinline,TestEABadMergeMem::m_notinlined TestEABadMergeMem
*
*/
public
class
TestEABadMergeMem
{
static
class
Box
{
int
i
;
}
static
void
m_notinlined
()
{
}
static
float
dummy1
;
static
float
dummy2
;
static
int
test
(
Box
a
,
Box
c
,
int
i
,
int
j
,
int
k
,
boolean
flag1
,
boolean
flag2
)
{
Box
b
=
new
Box
();
// non escaping
a
.
i
=
i
;
b
.
i
=
j
;
c
.
i
=
k
;
m_notinlined
();
boolean
flag3
=
false
;
if
(
flag1
)
{
for
(
int
ii
=
0
;
ii
<
100
;
ii
++)
{
if
(
flag2
)
{
dummy1
=
(
float
)
ii
;
}
else
{
dummy2
=
(
float
)
ii
;
}
}
flag3
=
true
;
}
// Memory Phi here with projection of not inlined call as one edge, MergeMem as other
if
(
flag3
)
{
// will split through Phi during loopopts
int
res
=
c
.
i
+
b
.
i
;
m_notinlined
();
// prevents split through phi during igvn
return
res
;
}
else
{
return
44
+
43
;
}
}
static
public
void
main
(
String
[]
args
)
{
for
(
int
i
=
0
;
i
<
20000
;
i
++)
{
// m(2);
Box
a
=
new
Box
();
Box
c
=
new
Box
();
int
res
=
test
(
a
,
c
,
42
,
43
,
44
,
(
i
%
2
)
==
0
,
(
i
%
3
)
==
0
);
if
(
res
!=
44
+
43
)
{
throw
new
RuntimeException
(
"Bad result "
+
res
);
}
}
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录