Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Musl
提交
037b4a58
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看板
提交
037b4a58
编写于
9月 29, 2021
作者:
O
openharmony_ci
提交者:
Gitee
9月 29, 2021
浏览文件
操作
浏览文件
下载
差异文件
!121 fix: vfprintf依赖的__signbitl和__fpclassifyl未参与编译
Merge pull request !121 from zhushengle/musl
上级
513c35e4
afa8c620
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
84 addition
and
0 deletion
+84
-0
porting/liteos_m/kernel/BUILD.gn
porting/liteos_m/kernel/BUILD.gn
+4
-0
porting/liteos_m/kernel/src/math/__fpclassify.c
porting/liteos_m/kernel/src/math/__fpclassify.c
+11
-0
porting/liteos_m/kernel/src/math/__fpclassifyl.c
porting/liteos_m/kernel/src/math/__fpclassifyl.c
+42
-0
porting/liteos_m/kernel/src/math/__signbit.c
porting/liteos_m/kernel/src/math/__signbit.c
+13
-0
porting/liteos_m/kernel/src/math/__signbitl.c
porting/liteos_m/kernel/src/math/__signbitl.c
+14
-0
未找到文件。
porting/liteos_m/kernel/BUILD.gn
浏览文件 @
037b4a58
...
...
@@ -174,6 +174,10 @@ static_library(libc) {
static_library(libm) {
sources = [
"src/math/__fpclassify.c",
"src/math/__fpclassifyl.c",
"src/math/__signbit.c",
"src/math/__signbitl.c",
"src/math/exp_data.c",
"src/math/frexp.c",
"src/math/frexpl.c",
...
...
porting/liteos_m/kernel/src/math/__fpclassify.c
0 → 100644
浏览文件 @
037b4a58
#include <math.h>
#include <stdint.h>
int
__fpclassify
(
double
x
)
{
union
{
double
f
;
uint64_t
i
;}
u
=
{
x
};
int
e
=
u
.
i
>>
52
&
0x7ff
;
if
(
!
e
)
return
u
.
i
<<
1
?
FP_SUBNORMAL
:
FP_ZERO
;
if
(
e
==
0x7ff
)
return
u
.
i
<<
12
?
FP_NAN
:
FP_INFINITE
;
return
FP_NORMAL
;
}
porting/liteos_m/kernel/src/math/__fpclassifyl.c
0 → 100644
浏览文件 @
037b4a58
#include "libm.h"
#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
int
__fpclassifyl
(
long
double
x
)
{
return
__fpclassify
(
x
);
}
#elif LDBL_MANT_DIG == 64 && LDBL_MAX_EXP == 16384
int
__fpclassifyl
(
long
double
x
)
{
union
ldshape
u
=
{
x
};
int
e
=
u
.
i
.
se
&
0x7fff
;
int
msb
=
u
.
i
.
m
>>
63
;
if
(
!
e
&&
!
msb
)
return
u
.
i
.
m
?
FP_SUBNORMAL
:
FP_ZERO
;
if
(
e
==
0x7fff
)
{
/* The x86 variant of 80-bit extended precision only admits
* one representation of each infinity, with the mantissa msb
* necessarily set. The version with it clear is invalid/nan.
* The m68k variant, however, allows either, and tooling uses
* the version with it clear. */
if
(
__BYTE_ORDER
==
__LITTLE_ENDIAN
&&
!
msb
)
return
FP_NAN
;
return
u
.
i
.
m
<<
1
?
FP_NAN
:
FP_INFINITE
;
}
if
(
!
msb
)
return
FP_NAN
;
return
FP_NORMAL
;
}
#elif LDBL_MANT_DIG == 113 && LDBL_MAX_EXP == 16384
int
__fpclassifyl
(
long
double
x
)
{
union
ldshape
u
=
{
x
};
int
e
=
u
.
i
.
se
&
0x7fff
;
u
.
i
.
se
=
0
;
if
(
!
e
)
return
u
.
i2
.
lo
|
u
.
i2
.
hi
?
FP_SUBNORMAL
:
FP_ZERO
;
if
(
e
==
0x7fff
)
return
u
.
i2
.
lo
|
u
.
i2
.
hi
?
FP_NAN
:
FP_INFINITE
;
return
FP_NORMAL
;
}
#endif
porting/liteos_m/kernel/src/math/__signbit.c
0 → 100644
浏览文件 @
037b4a58
#include "libm.h"
// FIXME: macro in math.h
int
__signbit
(
double
x
)
{
union
{
double
d
;
uint64_t
i
;
}
y
=
{
x
};
return
y
.
i
>>
63
;
}
porting/liteos_m/kernel/src/math/__signbitl.c
0 → 100644
浏览文件 @
037b4a58
#include "libm.h"
#if (LDBL_MANT_DIG == 64 || LDBL_MANT_DIG == 113) && LDBL_MAX_EXP == 16384
int
__signbitl
(
long
double
x
)
{
union
ldshape
u
=
{
x
};
return
u
.
i
.
se
>>
15
;
}
#elif LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
int
__signbitl
(
long
double
x
)
{
return
__signbit
(
x
);
}
#endif
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录