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

📄 lib1funcs.asm

📁 Mac OS X 10.4.9 for x86 Source Code gcc 实现源代码
💻 ASM
字号:
/* libgcc functions for Blackfin.   Copyright (C) 2005 Free Software Foundation, Inc.   Contributed by Analog Devices.This file is part of GCC.GCC is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GCC is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with GCC; 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 files   compiled with GCC to produce an executable, this does not 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.  */#ifdef L_divsi3.text.align 2.global ___divsi3;.type ___divsi3, STT_FUNC;___divsi3:        [--SP]= RETS;	[--SP] = R7;	R2 = -R0;        CC = R0 < 0;	IF CC R0 = R2;	R7 = CC;	R2 = -R1;        CC = R1 < 0;	IF CC R1 = R2;	R2 = CC;	R7 = R7 ^ R2;        CALL ___udivsi3;	CC = R7;	R1 = -R0;	IF CC R0 = R1;	R7 = [SP++];        RETS = [SP++];        RTS;#endif#ifdef L_modsi3	.align 2.global ___modsi3;.type ___modsi3, STT_FUNC;___modsi3:        [--SP] = RETS;	/* P1 and P2 are preserved by divsi3 and udivsi3.  */	P1 = R0;	P2 = R1;        CALL ___divsi3;	R1 = P1;	R2 = P2;	R2 *= R0;	R0 = R1 - R2;	RETS = [SP++];        RTS; #endif#ifdef L_udivsi3.align 2.global ___udivsi3;.type ___udivsi3, STT_FUNC;___udivsi3:        P0 = 32;        LSETUP (0f, 1f) LC0 = P0;	/* upper half of dividend */        R3 = 0;0:	/* The first time round in the loop we shift in garbage, but since we	   perform 33 shifts, it doesn't matter.  */	R0 = ROT R0 BY 1;	R3 = ROT R3 BY 1;	R2 = R3 - R1;        CC = R3 < R1 (IU);1:	/* Last instruction of the loop.  */	IF ! CC R3 = R2;	/* Shift in the last bit.  */	R0 = ROT R0 BY 1;	/* R0 is the result, R3 contains the remainder.  */	R0 = ~ R0;        RTS;#endif#ifdef L_umodsi3.align 2.global ___umodsi3;.type ___umodsi3, STT_FUNC;___umodsi3:        P1 = RETS;        CALL ___udivsi3;	R0 = R3;	RETS = P1;         RTS;#endif

⌨️ 快捷键说明

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