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

📄 fpu.s

📁 这是leon3处理器的交叉编译链
💻 S
字号:
#include <asm-leon/asmmacro.h>#include <asm-leon/leonstack.h>#include <asm-leon/winmacros.h>#include <asm-leon/leon.h>	#ifndef _SOFT_FLOAT  	.seg    "text"	/* ------- */  	.weak	_fpdis_enable_svt	.set	_fpdis_enable_svt,__fpdis_enable_svt  	.weak	_fpdis_enable	.set	_fpdis_enable,__fpdis_enable	/* ------- */	!.global _fpdis_enable,_fpdis_enable_svt__fpdis_enable_svt:__fpdis_enable:	set SPARC_PSR_EF_MASK,%l3	or %l0,%l3,%l0	or %l0,0xf00, %l3		! PIL up to 15, enable fpu	wr %l3,0, %psr		        ! restore the condition flags, enable fpu	nop	nop	nop		mov	%psr, %l3		! check if fpu is present	set SPARC_PSR_EF_MASK,%l4	andcc	%l3, %l4, %l3	bne	4f	 nop		 ta	0                       ! no fpu present, halt	4:	set     fpustate_current,%l4		ld [%l4],%l4	set     fpustate_owner,%l5	ld [%l5],%l5	cmp	%l4,%l5	beq	mpfnostore	 nop	cmp    %g0,%l5	 beq	mpfstore	nop	FW_STORE(%l5)	mpfstore:		set     fpustate_owner,%l6	st %l4,[%l6]	cmp    %g0,%l4	 beq	mpfnostore	nop		FW_LOAD(%l4)mpfnostore:		wr	%l0,0, %psr		! restore the condition flags, enable fpu	nop	nop	nop		jmpl	%l1,  %g0	rett	%l2	  	.seg    "data"	.global fpustate_ownerfpustate_owner:	.long	0				! pointer to FPU owning context 	.global fpustate_current	fpustate_current:		.long	0				! pointer to current threads FPU context	        #endif

⌨️ 快捷键说明

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