7804dd5212
Hardfloat is now default (use riscv64sf as TARGET_ARCH for softfloat). Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D8529
57 lines
718 B
Plaintext
57 lines
718 B
Plaintext
/*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
/*
|
|
* This only needs to contain symbols that are not listed in
|
|
* symbol maps from other parts of libc (i.e., not found in
|
|
* stdlib/Symbol.map, string/Symbol.map, sys/Symbol.map, ...).
|
|
*/
|
|
FBSD_1.0 {
|
|
/* PSEUDO syscalls */
|
|
_exit;
|
|
|
|
_setjmp;
|
|
_longjmp;
|
|
fabs;
|
|
__flt_rounds;
|
|
fpgetmask;
|
|
fpsetmask;
|
|
__infinity;
|
|
__nan;
|
|
setjmp;
|
|
longjmp;
|
|
sigsetjmp;
|
|
siglongjmp;
|
|
htonl;
|
|
htons;
|
|
ntohl;
|
|
ntohs;
|
|
vfork;
|
|
makecontext;
|
|
};
|
|
|
|
FBSDprivate_1.0 {
|
|
_set_tp;
|
|
_end;
|
|
__makecontext;
|
|
|
|
/* softfloat */
|
|
__addsf3;
|
|
__adddf3;
|
|
__subsf3;
|
|
__subdf3;
|
|
__mulsf3;
|
|
__muldf3;
|
|
__divsf3;
|
|
__divdf3;
|
|
__floatsisf;
|
|
__floatsidf;
|
|
__fixsfsi;
|
|
__fixdfsi;
|
|
__fixunssfsi;
|
|
__fixunsdfsi;
|
|
__extendsfdf2;
|
|
__truncdfsf2;
|
|
};
|