Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
a76a8919
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看板
提交
a76a8919
编写于
2月 24, 2011
作者:
N
never
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
7021603: crash in fill_sync_handler with ExtendedDTrace probes
Reviewed-by: iveresov
上级
56a4ae55
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
7 addition
and
6 deletion
+7
-6
src/share/vm/c1/c1_GraphBuilder.cpp
src/share/vm/c1/c1_GraphBuilder.cpp
+7
-6
未找到文件。
src/share/vm/c1/c1_GraphBuilder.cpp
浏览文件 @
a76a8919
...
...
@@ -3308,22 +3308,23 @@ void GraphBuilder::fill_sync_handler(Value lock, BlockBegin* sync_handler, bool
Value
exception
=
append_with_bci
(
new
ExceptionObject
(),
SynchronizationEntryBCI
);
assert
(
exception
->
is_pinned
(),
"must be"
);
int
bci
=
SynchronizationEntryBCI
;
if
(
compilation
()
->
env
()
->
dtrace_method_probes
())
{
// Report exit from inline methods
// Report exit from inline methods. We don't have a stream here
// so pass an explicit bci of SynchronizationEntryBCI.
Values
*
args
=
new
Values
(
1
);
args
->
push
(
append
(
new
Constant
(
new
ObjectConstant
(
method
()))
));
append
(
new
RuntimeCall
(
voidType
,
"dtrace_method_exit"
,
CAST_FROM_FN_PTR
(
address
,
SharedRuntime
::
dtrace_method_exit
),
args
)
);
args
->
push
(
append
_with_bci
(
new
Constant
(
new
ObjectConstant
(
method
())),
bci
));
append
_with_bci
(
new
RuntimeCall
(
voidType
,
"dtrace_method_exit"
,
CAST_FROM_FN_PTR
(
address
,
SharedRuntime
::
dtrace_method_exit
),
args
),
bci
);
}
int
bci
=
SynchronizationEntryBCI
;
if
(
lock
)
{
assert
(
state
()
->
locks_size
()
>
0
&&
state
()
->
lock_at
(
state
()
->
locks_size
()
-
1
)
==
lock
,
"lock is missing"
);
if
(
!
lock
->
is_linked
())
{
lock
=
append_with_bci
(
lock
,
-
1
);
lock
=
append_with_bci
(
lock
,
bci
);
}
// exit the monitor in the context of the synchronized method
monitorexit
(
lock
,
SynchronizationEntryBCI
);
monitorexit
(
lock
,
bci
);
// exit the context of the synchronized method
if
(
!
default_handler
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录