Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
659b1342
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看板
提交
659b1342
编写于
3月 31, 2017
作者:
K
kevinw
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8177817: Remove assertions in 8u that were removed by 8056124 in 9.
Reviewed-by: iveresov
上级
29492331
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
0 addition
and
43 deletion
+0
-43
src/cpu/sparc/vm/vm_version_sparc.cpp
src/cpu/sparc/vm/vm_version_sparc.cpp
+0
-43
未找到文件。
src/cpu/sparc/vm/vm_version_sparc.cpp
浏览文件 @
659b1342
...
@@ -259,49 +259,6 @@ void VM_Version::initialize() {
...
@@ -259,49 +259,6 @@ void VM_Version::initialize() {
// buf is started with ", " or is empty
// buf is started with ", " or is empty
_features_str
=
strdup
(
strlen
(
buf
)
>
2
?
buf
+
2
:
buf
);
_features_str
=
strdup
(
strlen
(
buf
)
>
2
?
buf
+
2
:
buf
);
// There are three 64-bit SPARC families that do not overlap, e.g.,
// both is_ultra3() and is_sparc64() cannot be true at the same time.
// Within these families, there can be more than one chip, e.g.,
// is_T4() and is_T7() machines are also is_niagara().
if
(
is_ultra3
())
{
assert
(
_L1_data_cache_line_size
==
0
,
"overlap with Ultra3 family"
);
// Ref: UltraSPARC III Cu Processor
_L1_data_cache_line_size
=
64
;
}
if
(
is_niagara
())
{
assert
(
_L1_data_cache_line_size
==
0
,
"overlap with niagara family"
);
// All Niagara's are sun4v's, but not all sun4v's are Niagaras, e.g.,
// Fujitsu SPARC64 is sun4v, but we don't want it in this block.
//
// Ref: UltraSPARC T1 Supplement to the UltraSPARC Architecture 2005
// Appendix F.1.3.1 Cacheable Accesses
// -> 16-byte L1 cache line size
//
// Ref: UltraSPARC T2: A Highly-Threaded, Power-Efficient, SPARC SOC
// Section III: SPARC Processor Core
// -> 16-byte L1 cache line size
//
// Ref: Oracle's SPARC T4-1, SPARC T4-2, SPARC T4-4, and SPARC T4-1B Server Architecture
// Section SPARC T4 Processor Cache Architecture
// -> 32-byte L1 cache line size (no longer see that info on this ref)
//
// XXX - still need a T7 reference here
//
if
(
is_T7
())
{
// T7 or newer
_L1_data_cache_line_size
=
64
;
}
else
if
(
is_T4
())
{
// T4 or newer (until T7)
_L1_data_cache_line_size
=
32
;
}
else
{
// T1 or newer (until T4)
_L1_data_cache_line_size
=
16
;
}
}
if
(
is_sparc64
())
{
guarantee
(
_L1_data_cache_line_size
==
0
,
"overlap with SPARC64 family"
);
// Ref: Fujitsu SPARC64 VII Processor
// Section 4 Cache System
_L1_data_cache_line_size
=
64
;
}
// UseVIS is set to the smallest of what hardware supports and what
// UseVIS is set to the smallest of what hardware supports and what
// the command line requires. I.e., you cannot set UseVIS to 3 on
// the command line requires. I.e., you cannot set UseVIS to 3 on
// older UltraSparc which do not support it.
// older UltraSparc which do not support it.
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录