date and time created 91/04/05 09:48:47 by donn
authorDonn Seeley <donn@ucbvax.Berkeley.EDU>
Sat, 6 Apr 1991 00:48:47 +0000 (16:48 -0800)
committerDonn Seeley <donn@ucbvax.Berkeley.EDU>
Sat, 6 Apr 1991 00:48:47 +0000 (16:48 -0800)
SCCS-vsn: lib/libc/vax/gen/umodsi3.s 6.1

usr/src/lib/libc/vax/gen/umodsi3.s [new file with mode: 0644]

diff --git a/usr/src/lib/libc/vax/gen/umodsi3.s b/usr/src/lib/libc/vax/gen/umodsi3.s
new file mode 100644 (file)
index 0000000..9c1cf75
--- /dev/null
@@ -0,0 +1,39 @@
+/*-
+ * Copyright (c) 1991 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * %sccs.include.redist.c%
+ */
+
+#if defined(LIBC_SCCS) && !defined(lint)
+       .asciz "@(#)umodsi3.s   6.1 (Berkeley) %G%"
+#endif /* LIBC_SCCS and not lint */
+
+/*
+ * Unsigned modulus, GCC flavor.
+ */
+
+#include "DEFS.h"
+
+#define        DIVIDEND        4(ap)
+#define        DIVISOR         8(ap)
+
+ENTRY(__umodsi3,0)
+       movl    DIVISOR,r2
+       jlss    Leasy           # big divisor: settle by comparison
+       movl    DIVIDEND,r0
+       jlss    Lhard           # big dividend: need extended division
+       divl3   r2,r0,r1        # small divisor and dividend: signed modulus
+       mull2   r2,r1
+       subl2   r1,r0
+       ret
+Lhard:
+       clrl    r1
+       ediv    r2,r0,r1,r0
+       ret
+Leasy:
+       subl3   r2,DIVIDEND,r0
+       jcc     Ldifference     # if divisor goes in once, return difference
+       movl    DIVIDEND,r0     # if divisor is bigger, return dividend
+Ldifference:
+       ret