Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
c59f1c5c
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看板
提交
c59f1c5c
编写于
3月 25, 2009
作者:
T
tonyp
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
1cb702fd
99a63520
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
15 addition
and
6 deletion
+15
-6
src/share/vm/gc_implementation/g1/g1CollectorPolicy.cpp
src/share/vm/gc_implementation/g1/g1CollectorPolicy.cpp
+7
-6
src/share/vm/gc_implementation/g1/g1RemSet.cpp
src/share/vm/gc_implementation/g1/g1RemSet.cpp
+8
-0
未找到文件。
src/share/vm/gc_implementation/g1/g1CollectorPolicy.cpp
浏览文件 @
c59f1c5c
...
...
@@ -1637,7 +1637,9 @@ void G1CollectorPolicy::record_collection_pause_end(bool popular,
double
obj_copy_time
=
avg_value
(
_par_last_obj_copy_times_ms
);
double
termination_time
=
avg_value
(
_par_last_termination_times_ms
);
double
parallel_other_time
;
double
parallel_other_time
=
_cur_collection_par_time_ms
-
(
update_rs_time
+
ext_root_scan_time
+
mark_stack_scan_time
+
scan_only_time
+
scan_rs_time
+
obj_copy_time
+
termination_time
);
if
(
update_stats
)
{
MainBodySummary
*
body_summary
=
summary
->
main_body_summary
();
guarantee
(
body_summary
!=
NULL
,
"should not be null!"
);
...
...
@@ -1656,9 +1658,6 @@ void G1CollectorPolicy::record_collection_pause_end(bool popular,
body_summary
->
record_parallel_time_ms
(
_cur_collection_par_time_ms
);
body_summary
->
record_clear_ct_time_ms
(
_cur_clear_ct_time_ms
);
body_summary
->
record_termination_time_ms
(
termination_time
);
parallel_other_time
=
_cur_collection_par_time_ms
-
(
update_rs_time
+
ext_root_scan_time
+
mark_stack_scan_time
+
scan_only_time
+
scan_rs_time
+
obj_copy_time
+
termination_time
);
body_summary
->
record_parallel_other_time_ms
(
parallel_other_time
);
}
body_summary
->
record_mark_closure_time_ms
(
_mark_closure_time_ms
);
...
...
@@ -1803,8 +1802,10 @@ void G1CollectorPolicy::record_collection_pause_end(bool popular,
gclog_or_tty
->
print_cr
(
"]"
);
_all_pause_times_ms
->
add
(
elapsed_ms
);
summary
->
record_total_time_ms
(
elapsed_ms
);
summary
->
record_other_time_ms
(
other_time_ms
);
if
(
update_stats
)
{
summary
->
record_total_time_ms
(
elapsed_ms
);
summary
->
record_other_time_ms
(
other_time_ms
);
}
for
(
int
i
=
0
;
i
<
_aux_num
;
++
i
)
if
(
_cur_aux_times_set
[
i
])
_all_aux_times_ms
[
i
].
add
(
_cur_aux_times_ms
[
i
]);
...
...
src/share/vm/gc_implementation/g1/g1RemSet.cpp
浏览文件 @
c59f1c5c
...
...
@@ -511,9 +511,17 @@ HRInto_G1RemSet::oops_into_collection_set_do(OopsInHeapRegionClosure* oc,
if
(
G1EnableParallelRSetUpdating
||
(
worker_i
==
0
))
{
updateRS
(
worker_i
);
scanNewRefsRS
(
oc
,
worker_i
);
}
else
{
_g1p
->
record_update_rs_start_time
(
worker_i
,
os
::
elapsedTime
());
_g1p
->
record_update_rs_processed_buffers
(
worker_i
,
0.0
);
_g1p
->
record_update_rs_time
(
worker_i
,
0.0
);
_g1p
->
record_scan_new_refs_time
(
worker_i
,
0.0
);
}
if
(
G1EnableParallelRSetScanning
||
(
worker_i
==
0
))
{
scanRS
(
oc
,
worker_i
);
}
else
{
_g1p
->
record_scan_rs_start_time
(
worker_i
,
os
::
elapsedTime
());
_g1p
->
record_scan_rs_time
(
worker_i
,
0.0
);
}
}
else
{
assert
(
worker_i
==
0
,
"invariant"
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录