Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Musl
提交
c5ec5b2c
T
Third Party Musl
项目概览
OpenHarmony
/
Third Party Musl
大约 1 年 前同步成功
通知
37
Star
125
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Musl
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
c5ec5b2c
编写于
3月 23, 2012
作者:
N
nsz
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'master' of
git://git.etalabs.net/musl
上级
6d8df2b9
ad2d2b96
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
103 addition
and
6 deletion
+103
-6
src/ldso/dynlink.c
src/ldso/dynlink.c
+16
-6
src/math/i386/hypot.s
src/math/i386/hypot.s
+45
-0
src/math/i386/hypotf.s
src/math/i386/hypotf.s
+42
-0
未找到文件。
src/ldso/dynlink.c
浏览文件 @
c5ec5b2c
#ifdef __PIC__
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
...
...
@@ -18,6 +17,10 @@
#include <ctype.h>
#include <dlfcn.h>
static
int
errflag
;
#ifdef __PIC__
#include "reloc.h"
#if ULONG_MAX == 0xffffffff
...
...
@@ -631,12 +634,13 @@ void *dlopen(const char *file, int mode)
tail
=
orig_tail
;
tail
->
next
=
0
;
p
=
0
;
}
else
p
=
load_library
(
file
);
if
(
!
p
)
{
errflag
=
1
;
goto
end
;
}
p
=
load_library
(
file
);
if
(
!
p
)
goto
end
;
/* First load handling */
if
(
!
p
->
deps
)
{
load_deps
(
p
);
...
...
@@ -674,8 +678,11 @@ static void *do_dlsym(struct dso *p, const char *s, void *ra)
if
(
!
p
)
p
=
head
;
p
=
p
->
next
;
}
if
(
p
==
head
||
p
==
RTLD_DEFAULT
)
return
find_sym
(
head
,
s
,
0
);
if
(
p
==
head
||
p
==
RTLD_DEFAULT
)
{
void
*
res
=
find_sym
(
head
,
s
,
0
);
if
(
!
res
)
errflag
=
1
;
return
res
;
}
h
=
hash
(
s
);
sym
=
lookup
(
s
,
h
,
p
->
syms
,
p
->
hashtab
,
p
->
strings
);
if
(
sym
&&
sym
->
st_value
&&
(
1
<<
(
sym
->
st_info
&
0xf
)
&
OK_TYPES
))
...
...
@@ -686,6 +693,7 @@ static void *do_dlsym(struct dso *p, const char *s, void *ra)
if
(
sym
&&
sym
->
st_value
&&
(
1
<<
(
sym
->
st_info
&
0xf
)
&
OK_TYPES
))
return
p
->
deps
[
i
]
->
base
+
sym
->
st_value
;
}
errflag
=
1
;
return
0
;
}
...
...
@@ -710,6 +718,8 @@ void *__dlsym(void *p, const char *s, void *ra)
char
*
dlerror
()
{
if
(
!
errflag
)
return
0
;
errflag
=
0
;
return
"unknown error"
;
}
...
...
src/math/i386/hypot.s
0 → 100644
浏览文件 @
c5ec5b2c
.
global
hypot
.
type
hypot
,@
function
hypot
:
mov
8
(%
esp
),%
eax
mov
16
(%
esp
),%
ecx
add
%
eax
,%
eax
add
%
ecx
,%
ecx
and
%
eax
,%
ecx
cmp
$
0xffe00000
,%
ecx
jae
2
f
or
4
(%
esp
),%
eax
jnz
1
f
fldl
12
(%
esp
)
fabs
ret
1
:
mov
16
(%
esp
),%
eax
add
%
eax
,%
eax
or
12
(%
esp
),%
eax
jnz
1
f
fldl
4
(%
esp
)
fabs
ret
1
:
fldl
4
(%
esp
)
fld
%
st
(
0
)
fmulp
fldl
12
(%
esp
)
fld
%
st
(
0
)
fmulp
faddp
fsqrt
ret
2
:
sub
$
0xffe00000
,%
eax
or
4
(%
esp
),%
eax
jnz
1
f
fldl
4
(%
esp
)
fabs
ret
1
:
mov
16
(%
esp
),%
eax
add
%
eax
,%
eax
sub
$
0xffe00000
,%
eax
or
12
(%
esp
),%
eax
fldl
12
(%
esp
)
jnz
1
f
fabs
1
:
ret
src/math/i386/hypotf.s
0 → 100644
浏览文件 @
c5ec5b2c
.
global
hypotf
.
type
hypotf
,@
function
hypotf
:
mov
4
(%
esp
),%
eax
mov
8
(%
esp
),%
ecx
add
%
eax
,%
eax
add
%
ecx
,%
ecx
and
%
eax
,%
ecx
cmp
$
0xff000000
,%
ecx
jae
2
f
test
%
eax
,%
eax
jnz
1
f
flds
8
(%
esp
)
fabs
ret
1
:
mov
8
(%
esp
),%
eax
add
%
eax
,%
eax
jnz
1
f
flds
4
(%
esp
)
fabs
ret
1
:
flds
4
(%
esp
)
fld
%
st
(
0
)
fmulp
flds
8
(%
esp
)
fld
%
st
(
0
)
fmulp
faddp
fsqrt
ret
2
:
cmp
$
0xff000000
,%
eax
jnz
1
f
flds
4
(%
esp
)
fabs
ret
1
:
mov
8
(%
esp
),%
eax
add
%
eax
,%
eax
cmp
$
0xff000000
,%
eax
flds
8
(%
esp
)
jnz
1
f
fabs
1
:
ret
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录