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

📄 lib1thumb.asm

📁 gcc-2.95.3 Linux下最常用的C编译器
💻 ASM
📖 第 1 页 / 共 2 页
字号:
@ libgcc1 routines for ARM cpu.@ Division routines, written by Richard Earnshaw, (rearnsha@armltd.co.uk)/* Copyright (C) 1995, 1996, 1998 Free Software Foundation, Inc.This file is free software; you can redistribute it and/or modify itunder the terms of the GNU General Public License as published by theFree Software Foundation; either version 2, or (at your option) anylater version.In addition to the permissions in the GNU General Public License, theFree Software Foundation gives you unlimited permission to link thecompiled version of this file with other programs, and to distributethose programs without any restriction coming from the use of thisfile.  (The General Public License restrictions do apply in otherrespects; for example, they cover modification of the file, anddistribution when not linked into another program.)This file is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with this program; see the file COPYING.  If not, write tothe Free Software Foundation, 59 Temple Place - Suite 330,Boston, MA 02111-1307, USA.  *//* As a special exception, if you link this library with other files,   some of which are compiled with GCC, to produce an executable,   this library does not by itself cause the resulting executable   to be covered by the GNU General Public License.   This exception does not however invalidate any other reasons why   the executable file might be covered by the GNU General Public License.  */	.code	 16	#ifndef __USER_LABEL_PREFIX__#error  __USER_LABEL_PREFIX__ not defined#endif#ifdef __elf__#define __PLT__ (PLT)#define TYPE(x) .type SYM(x),function#define SIZE(x) .size SYM(x), . - SYM(x)#else#define __PLT__#define TYPE(x)#define SIZE(x)#endif#define RET	mov	pc, lr	/* ANSI concatenation macros.  */#define CONCAT1(a, b) CONCAT2(a, b)#define CONCAT2(a, b) a ## b/* Use the right prefix for global labels.  */#define SYM(x) CONCAT1 (__USER_LABEL_PREFIX__, x)work		.req	r4	@ XXXX is this safe ?#ifdef L_udivsi3dividend	.req	r0divisor		.req	r1result		.req	r2curbit		.req	r3ip		.req	r12sp		.req	r13lr		.req	r14pc		.req	r15		.text	.globl	SYM (__udivsi3)	TYPE 	(__udivsi3)	.align	0	.thumb_funcSYM (__udivsi3):	cmp	divisor, #0	beq	Ldiv0	mov	curbit, #1	mov	result, #0		push	{ work }	cmp	dividend, divisor	bcc	Lgot_result	@ Load the constant 0x10000000 into our work register	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, 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     Over1	sub	dividend, dividend, divisor	orr	result, result, curbitOver1:		lsr	work, divisor, #1	cmp	dividend, work	bcc	Over2	sub	dividend, dividend, work	lsr	work, curbit, #1	orr	result, workOver2:		lsr	work, divisor, #2	cmp	dividend, work	bcc	Over3	sub	dividend, dividend, work	lsr	work, curbit, #2	orr	result, workOver3:		lsr	work, divisor, #3	cmp	dividend, work	bcc	Over4	sub	dividend, dividend, work	lsr	work, curbit, #3	orr	result, workOver4:		cmp	dividend, #0			@ Early termination?	beq	Lgot_result	lsr	curbit,  #4			@ No, any more bits to do?	beq	Lgot_result	lsr	divisor, #4	b	Loop3Lgot_result:	mov	r0, result	pop	{ work }	RETLdiv0:	push	{ lr }	bl	SYM (__div0) __PLT__	mov	r0, #0			@ about as wrong as it could be	pop	{ pc }	SIZE	(__udivsi3)	#endif /* L_udivsi3 */#ifdef L_umodsi3dividend	.req	r0divisor		.req	r1overdone	.req	r2curbit		.req	r3ip		.req	r12sp		.req	r13lr		.req	r14pc		.req	r15		.text	.globl	SYM (__umodsi3)	TYPE	(__umodsi3)	.align	0	.thumb_funcSYM (__umodsi3):	cmp	divisor, #0	beq	Ldiv0	mov	curbit, #1	cmp	dividend, divisor	bcs	Over1	RET	Over1:		@ Load the constant 0x10000000 into our work register	push	{ work }	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	Over2	sub	dividend, dividend, divisorOver2:	lsr	work, divisor, #1	cmp	dividend, work	bcc	Over3	sub	dividend, dividend, work	mov	ip, curbit	mov	work, #1	ror	curbit, work	orr	overdone, curbit	mov	curbit, ipOver3:	lsr	work, divisor, #2	cmp	dividend, work	bcc	Over4	sub	dividend, dividend, work	mov	ip, curbit	mov	work, #2	ror	curbit, work	orr	overdone, curbit	mov	curbit, ipOver4:	lsr	work, divisor, #3	cmp	dividend, work	bcc	Over5	sub	dividend, dividend, work	mov	ip, curbit	mov	work, #3	ror	curbit, work	orr	overdone, curbit	mov	curbit, ipOver5:	mov	ip, curbit	cmp	dividend, #0			@ Early termination?	beq	Over6	lsr	curbit, #4			@ No, any more bits to do?	beq	Over6	lsr	divisor, #4	b	Loop3Over6:		@ 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	bne	Over7	pop	{ work }	RET					@ No fixups neededOver7:	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	Over10	lsr	work, divisor, #1	add	dividend, dividend, workOver10:	pop	{ work }	RET	Ldiv0:	push	{ lr }	bl	SYM (__div0) __PLT__	mov	r0, #0			@ about as wrong as it could be	pop	{ pc }	SIZE	(__umodsi3)	#endif /* L_umodsi3 */#ifdef L_divsi3dividend	.req	r0divisor		.req	r1result		.req	r2curbit		.req	r3ip		.req	r12sp		.req	r13lr		.req	r14pc		.req	r15		.text	.globl	SYM (__divsi3)	TYPE	(__divsi3)	.align	0	.thumb_funcSYM (__divsi3):	cmp	divisor, #0	beq	Ldiv0		push	{ work }	mov	work, dividend	eor	work, divisor		@ Save the sign of the result.	mov	ip, work	mov	curbit, #1	mov	result, #0	cmp	divisor, #0	bpl	Over1	neg	divisor, divisor	@ Loops below use unsigned.Over1:		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

⌨️ 快捷键说明

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