mirror of
https://sourceware.org/git/glibc.git
synced 2025-11-24 12:21:09 +03:00
When we want to inline builtin math functions, like truncf, for
extern float truncf (float __x) __attribute__ ((__nothrow__ )) __attribute__ ((__const__));
extern float __truncf (float __x) __attribute__ ((__nothrow__ )) __attribute__ ((__const__));
float (truncf) (float) asm ("__truncf");
compiler may redirect truncf calls to __truncf, instead of inlining it
(for instance, clang). The USE_TRUNCF_BUILTIN is 1 to indicate that
truncf should be inlined. In this case, we don't want the truncf
redirection:
1. For each math function which may be inlined, we define
#if USE_TRUNCF_BUILTIN
# define NO_truncf_BUILTIN inline_truncf
#else
# define NO_truncf_BUILTIN truncf
#endif
in <math-use-builtins.h>.
2. Include <math-use-builtins.h> in include/math.h.
3. Change MATH_REDIRECT to
#define MATH_REDIRECT(FUNC, PREFIX, ARGS) \
float (NO_ ## FUNC ## f ## _BUILTIN) (ARGS (float)) \
asm (PREFIX #FUNC "f");
With this change If USE_TRUNCF_BUILTIN is 0, we get
float (truncf) (float) asm ("__truncf");
truncf will be redirected to __truncf.
And for USE_TRUNCF_BUILTIN 1, we get:
float (inline_truncf) (float) asm ("__truncf");
In both cases either truncf will be inlined or the internal alias
(__truncf) will be called.
It is not required for all math-use-builtin symbol, only the one
defined in math.h. It also allows to remove all the math-use-builtin
inclusion, since it is now implicitly included by math.h.
For MIPS, some math-use-builtin headers include sysdep.h and this
in turn includes a lot of extra headers that do not allow ldbl-128
code to override alias definition (math.h will include
some stdlib.h definition). The math-use-builtin only requires
the __mips_isa_rev, so move the defintion to sgidefs.h.
Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Co-authored-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
83 lines
2.1 KiB
C
83 lines
2.1 KiB
C
/* Copyright (C) 1992-2025 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library. If not, see
|
|
<https://www.gnu.org/licenses/>. */
|
|
|
|
#include <isarev.h>
|
|
#include <sgidefs.h>
|
|
#include <sysdeps/unix/sysdep.h>
|
|
|
|
|
|
#ifdef __ASSEMBLER__
|
|
|
|
#include <regdef.h>
|
|
|
|
#define ENTRY(name) \
|
|
.globl name; \
|
|
.align 2; \
|
|
.ent name,0; \
|
|
name##: \
|
|
cfi_startproc;
|
|
|
|
#undef END
|
|
#define END(function) \
|
|
cfi_endproc; \
|
|
.end function; \
|
|
.size function,.-function
|
|
|
|
#define ret j ra ; nop
|
|
|
|
#undef PSEUDO_END
|
|
#define PSEUDO_END(sym) cfi_endproc; .end sym; .size sym,.-sym
|
|
|
|
#define PSEUDO_NOERRNO(name, syscall_name, args) \
|
|
.align 2; \
|
|
ENTRY(name) \
|
|
.set nomips16; \
|
|
.set noreorder; \
|
|
li v0, SYS_ify(syscall_name); \
|
|
syscall
|
|
|
|
#undef PSEUDO_END_NOERRNO
|
|
#define PSEUDO_END_NOERRNO(sym) cfi_endproc; .end sym; .size sym,.-sym
|
|
|
|
#define ret_NOERRNO ret
|
|
|
|
#define PSEUDO_ERRVAL(name, syscall_name, args) \
|
|
.align 2; \
|
|
ENTRY(name) \
|
|
.set nomips16; \
|
|
.set noreorder; \
|
|
li v0, SYS_ify(syscall_name); \
|
|
syscall
|
|
|
|
#undef PSEUDO_END_ERRVAL
|
|
#define PSEUDO_END_ERRVAL(sym) cfi_endproc; .end sym; .size sym,.-sym
|
|
|
|
#define ret_ERRVAL ret
|
|
|
|
#define r0 v0
|
|
#define r1 v1
|
|
/* The mips move insn is d,s. */
|
|
#define MOVE(x,y) move y , x
|
|
|
|
#if _MIPS_SIM == _ABIO32
|
|
# define L(label) $L ## label
|
|
#else
|
|
# define L(label) .L ## label
|
|
#endif
|
|
|
|
#endif
|