Blame sysdeps/alpha/start.S

Packit Service 82fcde
/* Startup code for Alpha/ELF.
Packit Service 82fcde
   Copyright (C) 1993-2018 Free Software Foundation, Inc.
Packit Service 82fcde
   This file is part of the GNU C Library.
Packit Service 82fcde
   Contributed by Richard Henderson <rth@tamu.edu>
Packit Service 82fcde
Packit Service 82fcde
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 82fcde
   modify it under the terms of the GNU Lesser General Public
Packit Service 82fcde
   License as published by the Free Software Foundation; either
Packit Service 82fcde
   version 2.1 of the License, or (at your option) any later version.
Packit Service 82fcde
Packit Service 82fcde
   In addition to the permissions in the GNU Lesser General Public
Packit Service 82fcde
   License, the Free Software Foundation gives you unlimited
Packit Service 82fcde
   permission to link the compiled version of this file with other
Packit Service 82fcde
   programs, and to distribute those programs without any restriction
Packit Service 82fcde
   coming from the use of this file. (The GNU Lesser General Public
Packit Service 82fcde
   License restrictions do apply in other respects; for example, they
Packit Service 82fcde
   cover modification of the file, and distribution when not linked
Packit Service 82fcde
   into another program.)
Packit Service 82fcde
Packit Service 82fcde
   Note that people who make modified versions of this file are not
Packit Service 82fcde
   obligated to grant this special exception for their modified
Packit Service 82fcde
   versions; it is their choice whether to do so. The GNU Lesser
Packit Service 82fcde
   General Public License gives permission to release a modified
Packit Service 82fcde
   version without this exception; this exception also makes it
Packit Service 82fcde
   possible to release a modified version which carries forward this
Packit Service 82fcde
   exception.
Packit Service 82fcde
Packit Service 82fcde
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 82fcde
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 82fcde
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 82fcde
   Lesser General Public License for more details.
Packit Service 82fcde
Packit Service 82fcde
   You should have received a copy of the GNU Lesser General Public
Packit Service 82fcde
   License along with the GNU C Library.  If not, see
Packit Service 82fcde
   <http://www.gnu.org/licenses/>.  */
Packit Service 82fcde
Packit Service 82fcde
#include <sysdep.h>
Packit Service 82fcde
Packit Service 82fcde
	.text
Packit Service 82fcde
	.align 3
Packit Service 82fcde
	.globl _start
Packit Service 82fcde
	.ent _start, 0
Packit Service 82fcde
	.type _start,@function
Packit Service 82fcde
_start:
Packit Service 82fcde
	.frame	$15, 0, $15
Packit Service 82fcde
	br	gp, 1f
Packit Service 82fcde
1:	ldgp	gp, 0(gp)
Packit Service 82fcde
	subq	sp, 16, sp
Packit Service 82fcde
	mov	0, $15
Packit Service 82fcde
	.prologue 0
Packit Service 82fcde
Packit Service 82fcde
  /* Load address of the user's main function.  */
Packit Service 82fcde
	lda	a0, main
Packit Service 82fcde
Packit Service 82fcde
	ldl	a1, 16(sp)	/* get argc */
Packit Service 82fcde
	lda	a2, 24(sp)	/* get argv */
Packit Service 82fcde
Packit Service 82fcde
  /* Load address of our own entry points to .fini and .init.  */
Packit Service 82fcde
	lda	a3, __libc_csu_init
Packit Service 82fcde
	lda	a4, __libc_csu_fini
Packit Service 82fcde
Packit Service 82fcde
  /* Store address of the shared library termination function.  */
Packit Service 82fcde
	mov	v0, a5
Packit Service 82fcde
Packit Service 82fcde
  /* Provide the highest stack address to the user code.  */
Packit Service 82fcde
	stq	sp, 0(sp)
Packit Service 82fcde
Packit Service 82fcde
  /* Call the user's main function, and exit with its value.
Packit Service 82fcde
     But let the libc call main.  */
Packit Service 82fcde
	jsr	ra, __libc_start_main
Packit Service 82fcde
Packit Service 82fcde
  /* Die very horribly if exit returns.  Call_pal hlt is callable from
Packit Service 82fcde
     kernel mode only; this will result in an illegal instruction trap.  */
Packit Service 82fcde
	call_pal 0
Packit Service 82fcde
	.end _start
Packit Service 82fcde
Packit Service 82fcde
/* For ECOFF backwards compatibility. */
Packit Service 82fcde
weak_alias (_start, __start)
Packit Service 82fcde
Packit Service 82fcde
/* Define a symbol for the first piece of initialized data.  */
Packit Service 82fcde
	.data
Packit Service 82fcde
	.globl __data_start
Packit Service 82fcde
__data_start:
Packit Service 82fcde
	.weak data_start
Packit Service 82fcde
	data_start = __data_start