Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
d6ee8f3d
T
Third Party Openssl
项目概览
OpenHarmony
/
Third Party Openssl
1 年多 前同步成功
通知
10
Star
18
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Openssl
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
d6ee8f3d
编写于
11月 05, 2017
作者:
A
Andy Polyakov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
OPENSSL_ia32cap: reserve for new extensions.
Reviewed-by:
N
Rich Salz
<
rsalz@openssl.org
>
上级
1b6fa9fd
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
23 addition
and
7 deletion
+23
-7
crypto/cryptlib.c
crypto/cryptlib.c
+16
-6
crypto/x86_64cpuid.pl
crypto/x86_64cpuid.pl
+2
-1
doc/man3/OPENSSL_ia32cap.pod
doc/man3/OPENSSL_ia32cap.pod
+5
-0
未找到文件。
crypto/cryptlib.c
浏览文件 @
d6ee8f3d
...
...
@@ -61,16 +61,26 @@ void OPENSSL_cpuid_setup(void)
}
if
((
env
=
strchr
(
env
,
':'
)))
{
unsigned
int
vecx
;
IA32CAP
vecx
;
env
++
;
off
=
(
env
[
0
]
==
'~'
)
?
1
:
0
;
vecx
=
strtoul
(
env
+
off
,
NULL
,
0
);
if
(
off
)
OPENSSL_ia32cap_P
[
2
]
&=
~
vecx
;
else
OPENSSL_ia32cap_P
[
2
]
=
vecx
;
# if defined(_WIN32)
if
(
!
sscanf
(
env
+
off
,
"%I64i"
,
&
vecx
))
vecx
=
strtoul
(
env
+
off
,
NULL
,
0
);
# else
if
(
!
sscanf
(
env
+
off
,
"%lli"
,
(
long
long
*
)
&
vecx
))
vecx
=
strtoul
(
env
+
off
,
NULL
,
0
);
# endif
if
(
off
)
{
OPENSSL_ia32cap_P
[
2
]
&=
~
(
unsigned
int
)
vecx
;
OPENSSL_ia32cap_P
[
3
]
&=
~
(
unsigned
int
)(
vecx
>>
32
);
}
else
{
OPENSSL_ia32cap_P
[
2
]
=
(
unsigned
int
)
vecx
;
OPENSSL_ia32cap_P
[
3
]
=
(
unsigned
int
)(
vecx
>>
32
);
}
}
else
{
OPENSSL_ia32cap_P
[
2
]
=
0
;
OPENSSL_ia32cap_P
[
3
]
=
0
;
}
}
else
{
vec
=
OPENSSL_ia32_cpuid
(
OPENSSL_ia32cap_P
);
...
...
crypto/x86_64cpuid.pl
浏览文件 @
d6ee8f3d
...
...
@@ -68,7 +68,7 @@ OPENSSL_ia32_cpuid:
.cfi_register %rbx,%r8
xor %eax,%eax
mov %
e
ax,8(%rdi) # clear extended feature flags
mov %
r
ax,8(%rdi) # clear extended feature flags
cpuid
mov %eax,%r11d # max value for standard query level
...
...
@@ -187,6 +187,7 @@ OPENSSL_ia32_cpuid:
and \$0xfff7ffff,%ebx # clear ADCX/ADOX flag
.Lnotknights:
mov %ebx,8(%rdi) # save extended feature flags
mov %ecx,12(%rdi)
.Lno_extended_info:
bt \$27,%r9d # check OSXSAVE bit
...
...
doc/man3/OPENSSL_ia32cap.pod
浏览文件 @
d6ee8f3d
...
...
@@ -110,6 +110,10 @@ a.k.a. AVX512IFMA extension;
=item bit #64+31 denoting availability of AVX512VL extension;
=item bit #64+41 denoting availability of VAES extension;
=item bit #64+42 denoting availability of VPCLMULQDQ extension;
=back
To control this extended capability word use ':' as delimiter when
...
...
@@ -130,6 +134,7 @@ requirements are summarized in below table:
ADCX/ADOX | 2.23 | 2.10 | 3.3
AVX512 | 2.25 | 2.11.8 | see NOTES
AVX512IFMA | 2.26 | 2.11.8 | see NOTES
VAES | n/a | n/a |
=head1 NOTES
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录