Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_hotspot
提交
f5d1acba
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看板
提交
f5d1acba
编写于
4月 04, 2017
作者:
K
kevinw
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8164002: Add a new CPU family (S_family) for SPARC S7 and above processors
Reviewed-by: dholmes, ecaspole, kvn
上级
ebca7416
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
18 addition
and
10 deletion
+18
-10
src/cpu/sparc/vm/vm_version_sparc.cpp
src/cpu/sparc/vm/vm_version_sparc.cpp
+7
-3
src/cpu/sparc/vm/vm_version_sparc.hpp
src/cpu/sparc/vm/vm_version_sparc.hpp
+11
-7
未找到文件。
src/cpu/sparc/vm/vm_version_sparc.cpp
浏览文件 @
f5d1acba
...
@@ -449,9 +449,10 @@ void VM_Version::revert() {
...
@@ -449,9 +449,10 @@ void VM_Version::revert() {
unsigned
int
VM_Version
::
calc_parallel_worker_threads
()
{
unsigned
int
VM_Version
::
calc_parallel_worker_threads
()
{
unsigned
int
result
;
unsigned
int
result
;
if
(
is_M_series
())
{
if
(
is_M_series
()
||
is_S_series
())
{
// for now, use same gc thread calculation for M-series as for niagara-plus
// for now, use same gc thread calculation for M-series and S-series as for
// in future, we may want to tweak parameters for nof_parallel_worker_thread
// niagara-plus. In future, we may want to tweak parameters for
// nof_parallel_worker_thread
result
=
nof_parallel_worker_threads
(
5
,
16
,
8
);
result
=
nof_parallel_worker_threads
(
5
,
16
,
8
);
}
else
if
(
is_niagara_plus
())
{
}
else
if
(
is_niagara_plus
())
{
result
=
nof_parallel_worker_threads
(
5
,
16
,
8
);
result
=
nof_parallel_worker_threads
(
5
,
16
,
8
);
...
@@ -475,6 +476,9 @@ int VM_Version::parse_features(const char* implementation) {
...
@@ -475,6 +476,9 @@ int VM_Version::parse_features(const char* implementation) {
}
else
if
(
strstr
(
impl
,
"SPARC-M"
)
!=
NULL
)
{
}
else
if
(
strstr
(
impl
,
"SPARC-M"
)
!=
NULL
)
{
// M-series SPARC is based on T-series.
// M-series SPARC is based on T-series.
features
|=
(
M_family_m
|
T_family_m
);
features
|=
(
M_family_m
|
T_family_m
);
}
else
if
(
strstr
(
impl
,
"SPARC-S"
)
!=
NULL
)
{
// S-series SPARC is based on T-series.
features
|=
(
S_family_m
|
T_family_m
);
}
else
if
(
strstr
(
impl
,
"SPARC-T"
)
!=
NULL
)
{
}
else
if
(
strstr
(
impl
,
"SPARC-T"
)
!=
NULL
)
{
features
|=
T_family_m
;
features
|=
T_family_m
;
if
(
strstr
(
impl
,
"SPARC-T1"
)
!=
NULL
)
{
if
(
strstr
(
impl
,
"SPARC-T1"
)
!=
NULL
)
{
...
...
src/cpu/sparc/vm/vm_version_sparc.hpp
浏览文件 @
f5d1acba
...
@@ -47,13 +47,14 @@ protected:
...
@@ -47,13 +47,14 @@ protected:
cbcond_instructions
=
13
,
cbcond_instructions
=
13
,
sparc64_family
=
14
,
sparc64_family
=
14
,
M_family
=
15
,
M_family
=
15
,
T_family
=
16
,
S_family
=
16
,
T1_model
=
17
,
T_family
=
17
,
sparc5_instructions
=
18
,
T1_model
=
18
,
aes_instructions
=
19
,
sparc5_instructions
=
19
,
sha1_instruction
=
20
,
aes_instructions
=
20
,
sha256_instruction
=
21
,
sha1_instruction
=
21
,
sha512_instruction
=
22
sha256_instruction
=
22
,
sha512_instruction
=
23
};
};
enum
Feature_Flag_Set
{
enum
Feature_Flag_Set
{
...
@@ -76,6 +77,7 @@ protected:
...
@@ -76,6 +77,7 @@ protected:
cbcond_instructions_m
=
1
<<
cbcond_instructions
,
cbcond_instructions_m
=
1
<<
cbcond_instructions
,
sparc64_family_m
=
1
<<
sparc64_family
,
sparc64_family_m
=
1
<<
sparc64_family
,
M_family_m
=
1
<<
M_family
,
M_family_m
=
1
<<
M_family
,
S_family_m
=
1
<<
S_family
,
T_family_m
=
1
<<
T_family
,
T_family_m
=
1
<<
T_family
,
T1_model_m
=
1
<<
T1_model
,
T1_model_m
=
1
<<
T1_model
,
sparc5_instructions_m
=
1
<<
sparc5_instructions
,
sparc5_instructions_m
=
1
<<
sparc5_instructions
,
...
@@ -105,6 +107,7 @@ protected:
...
@@ -105,6 +107,7 @@ protected:
// Returns true if the platform is in the niagara line (T series)
// Returns true if the platform is in the niagara line (T series)
static
bool
is_M_family
(
int
features
)
{
return
(
features
&
M_family_m
)
!=
0
;
}
static
bool
is_M_family
(
int
features
)
{
return
(
features
&
M_family_m
)
!=
0
;
}
static
bool
is_S_family
(
int
features
)
{
return
(
features
&
S_family_m
)
!=
0
;
}
static
bool
is_T_family
(
int
features
)
{
return
(
features
&
T_family_m
)
!=
0
;
}
static
bool
is_T_family
(
int
features
)
{
return
(
features
&
T_family_m
)
!=
0
;
}
static
bool
is_niagara
()
{
return
is_T_family
(
_features
);
}
static
bool
is_niagara
()
{
return
is_T_family
(
_features
);
}
#ifdef ASSERT
#ifdef ASSERT
...
@@ -152,6 +155,7 @@ public:
...
@@ -152,6 +155,7 @@ public:
static
bool
is_niagara_plus
()
{
return
is_T_family
(
_features
)
&&
!
is_T1_model
(
_features
);
}
static
bool
is_niagara_plus
()
{
return
is_T_family
(
_features
)
&&
!
is_T1_model
(
_features
);
}
static
bool
is_M_series
()
{
return
is_M_family
(
_features
);
}
static
bool
is_M_series
()
{
return
is_M_family
(
_features
);
}
static
bool
is_S_series
()
{
return
is_S_family
(
_features
);
}
static
bool
is_T4
()
{
return
is_T_family
(
_features
)
&&
has_cbcond
();
}
static
bool
is_T4
()
{
return
is_T_family
(
_features
)
&&
has_cbcond
();
}
static
bool
is_T7
()
{
return
is_T_family
(
_features
)
&&
has_sparc5_instr
();
}
static
bool
is_T7
()
{
return
is_T_family
(
_features
)
&&
has_sparc5_instr
();
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录