Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
d40bbe00
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看板
提交
d40bbe00
编写于
7月 14, 2014
作者:
V
vlivanov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8049532: LogCompilation: C1: inlining tree is flat (no depth is stored)
Reviewed-by: roland, iveresov
上级
b7ec7c03
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
16 addition
and
3 deletion
+16
-3
src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/LogParser.java
...ilation/src/com/sun/hotspot/tools/compiler/LogParser.java
+11
-3
src/share/vm/c1/c1_GraphBuilder.cpp
src/share/vm/c1/c1_GraphBuilder.cpp
+5
-0
未找到文件。
src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/LogParser.java
浏览文件 @
d40bbe00
...
...
@@ -406,9 +406,17 @@ public class LogParser extends DefaultHandler implements ErrorHandler, Constants
}
else
if
(
scopes
.
peek
().
getCalls
().
size
()
>
2
&&
m
==
scopes
.
peek
().
last
(-
2
).
getMethod
())
{
scopes
.
push
(
scopes
.
peek
().
last
(-
2
));
}
else
{
System
.
out
.
println
(
site
.
getMethod
());
System
.
out
.
println
(
m
);
throw
new
InternalError
(
"call site and parse don't match"
);
// C1 prints multiple method tags during inlining when it narrows method being inlinied.
// Example:
// ...
// <method id="813" holder="694" name="toString" return="695" flags="1" bytes="36" iicount="1"/>
// <call method="813" instr="invokevirtual"/>
// <inline_success reason="receiver is statically known"/>
// <method id="814" holder="792" name="toString" return="695" flags="1" bytes="5" iicount="3"/>
// <parse method="814">
// ...
site
.
setMethod
(
m
);
scopes
.
push
(
site
);
}
}
}
else
if
(
qname
.
equals
(
"parse_done"
))
{
...
...
src/share/vm/c1/c1_GraphBuilder.cpp
浏览文件 @
d40bbe00
...
...
@@ -3960,10 +3960,15 @@ bool GraphBuilder::try_inline_full(ciMethod* callee, bool holder_known, Bytecode
// Clear out bytecode stream
scope_data
()
->
set_stream
(
NULL
);
CompileLog
*
log
=
compilation
()
->
log
();
if
(
log
!=
NULL
)
log
->
head
(
"parse method='%d'"
,
log
->
identify
(
callee
));
// Ready to resume parsing in callee (either in the same block we
// were in before or in the callee's start block)
iterate_all_blocks
(
callee_start_block
==
NULL
);
if
(
log
!=
NULL
)
log
->
done
(
"parse"
);
// If we bailed out during parsing, return immediately (this is bad news)
if
(
bailed_out
())
return
false
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录