Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Openssl
提交
b94551e8
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看板
提交
b94551e8
编写于
7月 22, 2008
作者:
A
Andy Polyakov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
perlasm update: implement dataseg directive.
上级
9b634c9b
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
15 addition
and
2 deletion
+15
-2
crypto/perlasm/x86gas.pl
crypto/perlasm/x86gas.pl
+4
-1
crypto/perlasm/x86masm.pl
crypto/perlasm/x86masm.pl
+6
-1
crypto/perlasm/x86nasm.pl
crypto/perlasm/x86nasm.pl
+5
-0
未找到文件。
crypto/perlasm/x86gas.pl
浏览文件 @
b94551e8
...
...
@@ -124,7 +124,7 @@ sub ::function_begin_B
push
(
@out
,"
.globl
\t
$func
\n
")
if
(
$global
);
if
(
$
::
coff
)
{
push
(
@out
,"
.def
\t
$func
;
\t
.scl
\t
2
;
\t
.type
\t
32;
\t
.endef
\n
");
}
{
push
(
@out
,"
.def
\t
$func
;
\t
.scl
\t
"
.
(
3
-
$global
)
.
"
;
\t
.type
\t
32;
\t
.endef
\n
");
}
elsif
((
$
::
aout
and
!
$
::
pic
)
or
$
::
macosx
)
{
}
else
...
...
@@ -258,4 +258,7 @@ ___
}
}
sub
::
dataseg
{
push
(
@out
,"
.data
\n
");
}
1
;
crypto/perlasm/x86masm.pl
浏览文件 @
b94551e8
...
...
@@ -8,6 +8,7 @@ $::lbdecor="\$L"; # local label decoration
$nmdecor
=
"
_
";
# external name decoration
$initseg
=
"";
$segment
=
"";
sub
::
generic
{
my
(
$opcode
,
@arg
)
=
@_
;
...
...
@@ -84,6 +85,7 @@ ELSE
ENDIF
___
push
(
@out
,
$tmp
);
$segment
=
"
.text
\$
";
}
sub
::
function_begin_B
...
...
@@ -121,7 +123,7 @@ ___
grep
{
s/\.[3-7]86/$xmmheader/
}
@out
;
}
push
(
@out
,"
.text
\$
ENDS
\n
");
push
(
@out
,"
$segment
ENDS
\n
");
if
(
grep
{
/\b${nmdecor}OPENSSL_ia32cap_P\b/i
}
@out
)
{
my
$comm
=
<<___;
...
...
@@ -175,4 +177,7 @@ DD $f
___
}
sub
::
dataseg
{
push
(
@out
,"
$segment
\t
ENDS
\n
_DATA
\t
SEGMENT
\n
");
$segment
=
"
_DATA
";
}
1
;
crypto/perlasm/x86nasm.pl
浏览文件 @
b94551e8
...
...
@@ -158,4 +158,9 @@ ___
}
}
sub
::
dataseg
{
if
(
$mwerks
)
{
push
(
@out
,"
.section
\t
.data,4
\n
");
}
else
{
push
(
@out
,"
section
\t
.data align=4
\n
");
}
}
1
;
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录