about summary refs log tree commit diff
path: root/src/fenv/x86_64
Commit message (Collapse)AuthorAgeFilesLines
* make arch __fesetround backends hiddenRich Felker2018-09-121-0/+1
| | | | | these are not public interfaces and do not match the public function, but delegate argument checking to it.
* fix fesetenv(FE_DFL_ENV) on x86_64 (see previous commit)Szabolcs Nagy2014-02-091-1/+1
|
* fix fenv exception functions to mask their argumentSzabolcs Nagy2013-08-181-4/+7
| | | | | | | | | | | fesetround.c is a wrapper to do the arch independent argument check (on archs where rounding mode is not stored in 2 bits __fesetround still has to check its arguments) on powerpc fe*except functions do not accept the extra invalid flags of its fpscr register the useless FENV_ACCESS pragma was removed from feupdateenv
* optimize x86 feclearexcept: only use save/restore x87 fenv if neededSzabolcs Nagy2013-08-181-15/+11
| | | | | | | the x87 exception summary (ES) and stack fault (SF) flags may be spuriously cleared by feclearexcept using the fnclex instruction, but these flags are not observable through libc hence maintaining their state is not critical.
* add sse fenv support on i386 through hwcapSzabolcs Nagy2013-08-181-3/+0
| | | | | | | the sse and x87 rounding modes should be always the same, the visible exception flags are the bitwise or of the two fenv states (so it's enough to query the rounding mode or raise exceptions on one fenv)
* try fixing/optimizing x86_64 fenv exception codeRich Felker2012-03-171-18/+23
| | | | untested; may need followup-fixes.
* fix x86_64 fe[gs]etround, analogous to nsz's x86 changesRich Felker2012-03-171-8/+9
|
* use type directives for fenv asm functionsRich Felker2011-06-281-0/+7
|
* x86_64 fenv support (untested; at least known to build successfully)Rich Felker2011-06-131-0/+88