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

📄 crt1.asm

📁 linux下的gcc编译器
💻 ASM
字号:
/* Copyright (C) 2000, 2001 Free Software Foundation, Inc.   This file was pretty much copied from newlib.This file is part of GNU CC.GNU CC 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 into combinations with other programs,and to distribute those combinations without any restriction comingfrom the use of this file.  (The General Public License restrictionsdo apply in other respects; for example, they cover modification ofthe file, and distribution when not linked into a combineexecutable.)GNU CC 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 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.  */#ifdef __SH5__	.section .data,"aw"	.global ___data___data:	.section .rodata,"a"	.global ___rodata___rodata:#if __SH5__ == 64	.section .text,"ax"#define LOAD_ADDR(sym, reg) \	movi	(sym >> 48) & 65535, reg; \	shori	(sym >> 32) & 65535, reg; \	shori	(sym >> 16) & 65535, reg; \	shori	sym & 65535, reg#else	.mode	SHmedia	.section .text..SHmedia32,"ax"#define LOAD_ADDR(sym, reg) \	movi	(sym >> 16) & 65535, reg; \	shori	sym & 65535, reg#endif	.global startstart:	LOAD_ADDR (_stack, r15)	pt/l	.Lzero_bss_loop, tr0	pt/l	_atexit, tr1	pt/l	_init, tr5	pt/l	___setup_argv_and_call_main, tr6	pt/l	_exit, tr7	! zero out bss	LOAD_ADDR (_edata, r0)	LOAD_ADDR (_end, r1).Lzero_bss_loop:	stx.q	r0, r63, r63	addi	r0, 8, r0	bgt/l	r1, r0, tr0	LOAD_ADDR (___data, r26)	LOAD_ADDR (___rodata, r27)#if ! __SH4_NOFPU__#if __SH5__ == 32	pt/l ___set_fpscr, tr0	movi	0, r4	blink	tr0, r18#endif	getcon	sr, r0	! enable the FP unit, by resetting SR.FD	! also zero out SR.FR, SR.SZ and SR.PR, as mandated by the ABI	movi	0, r1	shori	0xf000, r1	andc	r0, r1, r0	putcon	r0, sr#endif	! arrange for exit to call fini	LOAD_ADDR (_fini, r2)	blink	tr1, r18	! call init	blink	tr5, r18	! call the mainline	blink	tr6, r18	! call exit	blink	tr7, r18	#else	.section .text	.global	startstart:	mov.l	stack_k,r15	! zero out bss	mov.l	edata_k,r0	mov.l	end_k,r1	mov	#0,r2start_l:	mov.l	r2,@r0	add	#4,r0	cmp/ge	r0,r1	bt	start_l#if defined (__SH3E__) || defined(__SH4_SINGLE__) || defined(__SH4__) || defined(__SH4_SINGLE_ONLY__)	mov.l set_fpscr_k, r1	jsr @r1	mov #0,r4	lds r3,fpscr#endif /*  defined (__SH3E__) || defined(__SH4_SINGLE__) || defined(__SH4__) || defined(__SH4_SINGLE_ONLY__) */	! arrange for exit to call fini	mov.l	atexit_k,r0	mov.l	fini_k,r4	jsr	@r0	nop	! call init	mov.l	init_k,r0	jsr	@r0	nop	! call the mainline		mov.l	main_k,r0	jsr	@r0	nop	! call exit	mov	r0,r4	mov.l	exit_k,r0	jsr	@r0	nop	.align 2#if defined (__SH3E__) || defined(__SH4_SINGLE__) || defined(__SH4__) || defined(__SH4_SINGLE_ONLY__)set_fpscr_k:	.long	___set_fpscr#endif /*  defined (__SH3E__) || defined(__SH4_SINGLE__) || defined(__SH4__) || defined(__SH4_SINGLE_ONLY__) */stack_k:	.long	_stack	edata_k:	.long	_edataend_k:	.long	_endmain_k:	.long	___setup_argv_and_call_mainexit_k:	.long	_exitatexit_k:	.long	_atexitinit_k:	.long	_initfini_k:	.long	_fini	! supplied for backward compatibility only, in case of linking	! code whose main() was compiled with an older version of GCC.	.global	___main___main:	rts	nop#endif

⌨️ 快捷键说明

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