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

📄 lib1thumb.asm

📁 gcc编译工具没有什么特别
💻 ASM
📖 第 1 页 / 共 2 页
字号:
	lsl	divisor, #4	lsl	curbit, #4	b	Loop1Lbignum:	@ For very big divisors, we must shift it a bit at a time, or	@ we will be in danger of overflowing.	lsl	work, #3Loop2:			cmp	divisor, work	Bcs	Loop3	cmp	divisor, dividend	Bcs	Loop3	lsl	divisor, #1	lsl	curbit, #1	b	Loop2Loop3:	@ Test for possible subtractions, and note which bits	@ are done in the result.  On the final pass, this may subtract	@ too much from the dividend, but the result will be ok, since the	@ "bit" will have been shifted out at the bottom.	cmp	dividend, divisor	Bcc	Over3	sub	dividend, dividend, divisor	orr	result, result, curbitOver3:	lsr	work, divisor, #1	cmp	dividend, work	Bcc	Over4	sub	dividend, dividend, work	lsr	work, curbit, #1	orr	result, workOver4:		lsr	work, divisor, #2	cmp	dividend, work	Bcc	Over5	sub	dividend, dividend, work	lsr	work, curbit, #2	orr	result, result, workOver5:		lsr	work, divisor, #3	cmp	dividend, work	Bcc	Over6	sub	dividend, dividend, work	lsr	work, curbit, #3	orr	result, result, workOver6:		cmp	dividend, #0			@ Early termination?	Beq	Lgot_result	lsr	curbit, #4			@ No, any more bits to do?	Beq	Lgot_result	lsr	divisor, #4	b	Loop3	Lgot_result:	mov	r0, result	mov	work, ip	cmp	work, #0	Bpl	Over7	neg	r0, r0Over7:	pop	{ work }	RET	Ldiv0:	push	{ lr }	bl	SYM (__div0) __PLT__	mov	r0, #0			@ about as wrong as it could be	pop	{ pc }	SIZE	(__divsi3)	#endif /* L_divsi3 */#ifdef L_modsi3dividend	.req	r0divisor		.req	r1overdone	.req	r2curbit		.req	r3ip		.req	r12sp		.req	r13lr		.req	r14pc		.req	r15		.text	.globl	SYM (__modsi3)	TYPE	(__modsi3)	.align	0	.thumb_funcSYM (__modsi3):	mov	curbit, #1	cmp	divisor, #0	beq	Ldiv0	Bpl	Over1	neg	divisor, divisor		@ Loops below use unsigned.Over1:		push	{ work }	@ Need to save the sign of the dividend, unfortunately, we need	@ ip later on.  Must do this after saving the original value of	@ the work register, because we will pop this value off first.	push	{ dividend }	cmp	dividend, #0	Bpl	Over2	neg	dividend, dividendOver2:		cmp	dividend, divisor	bcc	Lgot_result	mov	work, #1	lsl	work, #28Loop1:	@ Unless the divisor is very big, shift it up in multiples of	@ four bits, since this is the amount of unwinding in the main	@ division loop.  Continue shifting until the divisor is 	@ larger than the dividend.	cmp	divisor, work	bcs	Lbignum	cmp	divisor, dividend	bcs	Lbignum	lsl	divisor, #4	lsl	curbit, #4	b	Loop1Lbignum:	@ Set work to 0x80000000	lsl	work, #3Loop2:	@ For very big divisors, we must shift it a bit at a time, or	@ we will be in danger of overflowing.	cmp	divisor, work	bcs	Loop3	cmp	divisor, dividend	bcs	Loop3	lsl	divisor, #1	lsl	curbit, #1	b	Loop2Loop3:	@ Test for possible subtractions.  On the final pass, this may 	@ subtract too much from the dividend, so keep track of which	@ subtractions are done, we can fix them up afterwards...	mov	overdone, #0	cmp	dividend, divisor	bcc	Over3	sub	dividend, dividend, divisorOver3:	lsr	work, divisor, #1	cmp	dividend, work	bcc	Over4	sub	dividend, dividend, work	mov	ip, curbit	mov	work, #1	ror	curbit, work	orr	overdone, curbit	mov	curbit, ipOver4:	lsr	work, divisor, #2	cmp	dividend, work	bcc	Over5	sub	dividend, dividend, work	mov	ip, curbit	mov	work, #2	ror	curbit, work	orr	overdone, curbit	mov	curbit, ipOver5:	lsr	work, divisor, #3	cmp	dividend, work	bcc	Over6	sub	dividend, dividend, work	mov	ip, curbit	mov	work, #3	ror	curbit, work	orr	overdone, curbit	mov	curbit, ipOver6:	mov	ip, curbit	cmp	dividend, #0			@ Early termination?	beq	Over7	lsr	curbit, #4			@ No, any more bits to do?	beq	Over7	lsr	divisor, #4	b	Loop3Over7:		@ Any subtractions that we should not have done will be recorded in	@ the top three bits of "overdone".  Exactly which were not needed	@ are governed by the position of the bit, stored in ip.	@ If we terminated early, because dividend became zero,	@ then none of the below will match, since the bit in ip will not be	@ in the bottom nibble.	mov	work, #0xe	lsl	work, #28	and	overdone, work	beq	Lgot_result		mov	curbit, ip	mov	work, #3	ror	curbit, work	tst	overdone, curbit	beq	Over8	lsr	work, divisor, #3	add	dividend, dividend, workOver8:	mov	curbit, ip	mov	work, #2	ror	curbit, work	tst	overdone, curbit	beq	Over9	lsr	work, divisor, #2	add	dividend, dividend, workOver9:	mov	curbit, ip	mov	work, #1	ror	curbit, work	tst	overdone, curbit	beq	Lgot_result	lsr	work, divisor, #1	add	dividend, dividend, workLgot_result:	pop	{ work }	cmp	work, #0	bpl	Over10	neg	dividend, dividendOver10:	pop	{ work }	RET	Ldiv0:	push    { lr }	bl	SYM (__div0) __PLT__	mov	r0, #0			@ about as wrong as it could be	pop	{ pc }		SIZE	(__modsi3)		#endif /* L_modsi3 */#ifdef L_dvmd_tls	.globl	SYM (__div0)	TYPE	(__div0)	.align	0	.thumb_funcSYM (__div0):	RET		SIZE	(__div0)	#endif /* L_divmodsi_tools */	#ifdef L_call_via_rX/* These labels & instructions are used by the Arm/Thumb interworking code.    The address of function to be called is loaded into a register and then    one of these labels is called via a BL instruction.  This puts the    return address into the link register with the bottom bit set, and the    code here switches to the correct mode before executing the function.  */		.text	.align 0.macro call_via register	.globl	SYM (_call_via_\register)	TYPE	(_call_via_\register)	.thumb_funcSYM (_call_via_\register):	bx	\register	nop		SIZE	(_call_via_\register).endm	call_via r0	call_via r1	call_via r2	call_via r3	call_via r4	call_via r5	call_via r6	call_via r7	call_via r8	call_via r9	call_via sl	call_via fp	call_via ip	call_via sp	call_via lr#endif /* L_call_via_rX */#ifdef L_interwork_call_via_rX/* These labels & instructions are used by the Arm/Thumb interworking code,   when the target address is in an unknown instruction set.  The address    of function to be called is loaded into a register and then one of these   labels is called via a BL instruction.  This puts the return address    into the link register with the bottom bit set, and the code here    switches to the correct mode before executing the function.  Unfortunately   the target code cannot be relied upon to return via a BX instruction, so   instead we have to store the resturn address on the stack and allow the   called function to return here instead.  Upon return we recover the real   return address and use a BX to get back to Thumb mode.  */		.text	.align 0	.code 32	.globl _arm_return_arm_return:			ldmia 	r13!, {r12}	bx 	r12	.macro interwork register						.code 16		.globl	SYM (_interwork_call_via_\register)	TYPE	(_interwork_call_via_\register)	.thumb_funcSYM (_interwork_call_via_\register):	bx 	pc	nop		.code 32	.globl .Lchange_\register.Lchange_\register:	tst	\register, #1	stmeqdb	r13!, {lr}	adreq	lr, _arm_return	bx	\register	SIZE	(_interwork_call_via_\register).endm		interwork r0	interwork r1	interwork r2	interwork r3	interwork r4	interwork r5	interwork r6	interwork r7	interwork r8	interwork r9	interwork sl	interwork fp	interwork ip	interwork sp	/* The lr case has to be handled a little differently...*/	.code 16	.globl	SYM (_interwork_call_via_lr)	TYPE	(_interwork_call_via_lr)	.thumb_funcSYM (_interwork_call_via_lr):	bx 	pc	nop		.code 32	.globl .Lchange_lr.Lchange_lr:	tst	lr, #1	stmeqdb	r13!, {lr}	mov	ip, lr	adreq	lr, _arm_return	bx	ip	SIZE	(_interwork_call_via_lr)	#endif /* L_interwork_call_via_rX */	

⌨️ 快捷键说明

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