blob: cc5f868c47f5ce3d89f392cf4ed4a05268da9ceb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/* $OpenBSD: s_ceilf.S,v 1.5 2022/12/27 17:10:07 jmc Exp $ */
/*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Public domain.
*/
#include <machine/asm.h>
ENTRY(ceilf)
subl $8,%esp
fstcw 4(%esp) /* store fpu control word */
movw 4(%esp),%dx
orw $0x0800,%dx /* round towards +oo */
andw $0xfbff,%dx
movw %dx,(%esp)
fldcw (%esp) /* load modified control word */
flds 12(%esp); /* round */
frndint
fldcw 4(%esp) /* restore original control word */
addl $8,%esp
ret
END(ceilf)
|