⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 urem.s

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻 S
字号:
/*	urem.s	4.2	83/06/27	*//* * urem - unsigned remainder for vax-11 * * arguments: dividend, divisor * result: remainder * uses r0-r2 * * if 1 < divisor <= 2147483647, zero-extend the dividend * to 64 bits and let ediv do the work.  If the divisor is 1, * ediv will overflow if bit 31 of the dividend is on, so * just return 0.  If the divisor is 0, do the ediv also, * so it will generate the proper exception.  All other values * of the divisor have bit 31 on: in this case the remainder * must be the dividend if divisor > dividend, and the dividend * minus the divisor otherwise.  The comparison must be unsigned. */#include "DEFS.h"ASENTRY(urem)	movl	4(ap),r0	/* dividend */	movl	8(ap),r2	/* divisor */	jeql	1f		/* if divisor=0, force exception */	cmpl	r2,$1		/* if divisor <= 1 (signed), */	jleq	2f		/*  no division is necessary */1:	clrl	r1		/* zero-extend the dividend */	ediv	r2,r0,r2,r0	/* divide.  q->r2 (discarded), r->r0 */	ret2:	jneq	1f		/* if divisor=1, return 0 */	clrl	r0		/*  (because doing the divide will overflow */	ret			/*  if the dividend has its high bit on) */1:	cmpl	r0,r2		/* if dividend < divisor (unsigned) */	jlssu	1f		/*  remainder is dividend */	subl2	r2,r0		/*  else remainder is dividend - divisor */1:	ret

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -