Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(821)

Unified Diff: fusl/src/math/i386/floor.s

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « fusl/src/math/i386/fabsl.s ('k') | fusl/src/math/i386/floorf.s » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fusl/src/math/i386/floor.s
diff --git a/fusl/src/math/i386/floor.s b/fusl/src/math/i386/floor.s
new file mode 100644
index 0000000000000000000000000000000000000000..46ba88db535dbd16161fdd95d441c9ea9066eb61
--- /dev/null
+++ b/fusl/src/math/i386/floor.s
@@ -0,0 +1,67 @@
+.global floorf
+.type floorf,@function
+floorf:
+ flds 4(%esp)
+ jmp 1f
+
+.global floorl
+.type floorl,@function
+floorl:
+ fldt 4(%esp)
+ jmp 1f
+
+.global floor
+.type floor,@function
+floor:
+ fldl 4(%esp)
+1: mov $0x7,%al
+1: fstcw 4(%esp)
+ mov 5(%esp),%ah
+ mov %al,5(%esp)
+ fldcw 4(%esp)
+ frndint
+ mov %ah,5(%esp)
+ fldcw 4(%esp)
+ ret
+
+.global ceil
+.type ceil,@function
+ceil:
+ fldl 4(%esp)
+ mov $0xb,%al
+ jmp 1b
+
+.global ceilf
+.type ceilf,@function
+ceilf:
+ flds 4(%esp)
+ mov $0xb,%al
+ jmp 1b
+
+.global ceill
+.type ceill,@function
+ceill:
+ fldt 4(%esp)
+ mov $0xb,%al
+ jmp 1b
+
+.global trunc
+.type trunc,@function
+trunc:
+ fldl 4(%esp)
+ mov $0xf,%al
+ jmp 1b
+
+.global truncf
+.type truncf,@function
+truncf:
+ flds 4(%esp)
+ mov $0xf,%al
+ jmp 1b
+
+.global truncl
+.type truncl,@function
+truncl:
+ fldt 4(%esp)
+ mov $0xf,%al
+ jmp 1b
« no previous file with comments | « fusl/src/math/i386/fabsl.s ('k') | fusl/src/math/i386/floorf.s » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698