Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
3b671e98
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看板
提交
3b671e98
编写于
2月 27, 2009
作者:
Y
ysr
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
1b0aaa83
3ab572ca
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
13 addition
and
11 deletion
+13
-11
src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp
src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp
+2
-3
src/share/vm/gc_implementation/g1/g1CollectorPolicy.cpp
src/share/vm/gc_implementation/g1/g1CollectorPolicy.cpp
+5
-4
src/share/vm/gc_implementation/g1/g1CollectorPolicy.hpp
src/share/vm/gc_implementation/g1/g1CollectorPolicy.hpp
+1
-1
src/share/vm/utilities/growableArray.cpp
src/share/vm/utilities/growableArray.cpp
+5
-3
未找到文件。
src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp
浏览文件 @
3b671e98
...
...
@@ -2626,9 +2626,8 @@ G1CollectedHeap::do_collection_pause_at_safepoint(HeapRegion* popular_region) {
#endif // SCAN_ONLY_VERBOSE
double
end_time_sec
=
os
::
elapsedTime
();
if
(
!
evacuation_failed
())
{
g1_policy
()
->
record_pause_time
((
end_time_sec
-
start_time_sec
)
*
1000.0
);
}
double
pause_time_ms
=
(
end_time_sec
-
start_time_sec
)
*
MILLIUNITS
;
g1_policy
()
->
record_pause_time_ms
(
pause_time_ms
);
GCOverheadReporter
::
recordSTWEnd
(
end_time_sec
);
g1_policy
()
->
record_collection_pause_end
(
popular_region
!=
NULL
,
abandoned
);
...
...
src/share/vm/gc_implementation/g1/g1CollectorPolicy.cpp
浏览文件 @
3b671e98
...
...
@@ -1014,7 +1014,7 @@ void G1CollectorPolicy::record_full_collection_end() {
_all_full_gc_times_ms
->
add
(
full_gc_time_ms
);
update_recent_gc_times
(
end_sec
,
full_gc_time_
sec
);
update_recent_gc_times
(
end_sec
,
full_gc_time_
ms
);
_g1
->
clear_full_collection
();
...
...
@@ -1475,6 +1475,7 @@ void G1CollectorPolicy::record_collection_pause_end(bool popular,
size_t
cur_used_bytes
=
_g1
->
used
();
assert
(
cur_used_bytes
==
_g1
->
recalculate_used
(),
"It should!"
);
bool
last_pause_included_initial_mark
=
false
;
bool
update_stats
=
!
abandoned
&&
!
_g1
->
evacuation_failed
();
#ifndef PRODUCT
if
(
G1YoungSurvRateVerbose
)
{
...
...
@@ -1535,7 +1536,7 @@ void G1CollectorPolicy::record_collection_pause_end(bool popular,
_n_pauses
++
;
if
(
!
abandoned
)
{
if
(
update_stats
)
{
_recent_CH_strong_roots_times_ms
->
add
(
_cur_CH_strong_roots_dur_ms
);
_recent_G1_strong_roots_times_ms
->
add
(
_cur_G1_strong_roots_dur_ms
);
_recent_evac_times_ms
->
add
(
evac_ms
);
...
...
@@ -1636,7 +1637,7 @@ void G1CollectorPolicy::record_collection_pause_end(bool popular,
double
termination_time
=
avg_value
(
_par_last_termination_times_ms
);
double
parallel_other_time
;
if
(
!
abandoned
)
{
if
(
update_stats
)
{
MainBodySummary
*
body_summary
=
summary
->
main_body_summary
();
guarantee
(
body_summary
!=
NULL
,
"should not be null!"
);
...
...
@@ -1852,7 +1853,7 @@ void G1CollectorPolicy::record_collection_pause_end(bool popular,
// <NEW PREDICTION>
if
(
!
popular
&&
!
abandoned
)
{
if
(
!
popular
&&
update_stats
)
{
double
pause_time_ms
=
elapsed_ms
;
size_t
diff
=
0
;
...
...
src/share/vm/gc_implementation/g1/g1CollectorPolicy.hpp
浏览文件 @
3b671e98
...
...
@@ -966,7 +966,7 @@ public:
record_termination_time
(
0
,
ms
);
}
void
record_pause_time
(
double
ms
)
{
void
record_pause_time
_ms
(
double
ms
)
{
_last_pause_time_ms
=
ms
;
}
...
...
src/share/vm/utilities/growableArray.cpp
浏览文件 @
3b671e98
...
...
@@ -43,11 +43,13 @@ void GenericGrowableArray::check_nesting() {
#endif
void
*
GenericGrowableArray
::
raw_allocate
(
int
elementSize
)
{
assert
(
_max
>=
0
,
"integer overflow"
);
size_t
byte_size
=
elementSize
*
(
size_t
)
_max
;
if
(
on_stack
())
{
return
(
void
*
)
resource_allocate_bytes
(
elementSize
*
_max
);
return
(
void
*
)
resource_allocate_bytes
(
byte_size
);
}
else
if
(
on_C_heap
())
{
return
(
void
*
)
AllocateHeap
(
elementSize
*
_max
,
"GrET in "
__FILE__
);
return
(
void
*
)
AllocateHeap
(
byte_size
,
"GrET in "
__FILE__
);
}
else
{
return
_arena
->
Amalloc
(
elementSize
*
_max
);
return
_arena
->
Amalloc
(
byte_size
);
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录