OpenCores
URL https://opencores.org/ocsvn/hf-risc/hf-risc/trunk

Subversion Repositories hf-risc

[/] [hf-risc/] [trunk/] [tools/] [riscv-gnu-toolchain-master/] [glibc/] [sysdeps/] [riscv/] [start.S] - Blame information for rev 13

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 13 serginhofr
/* Startup code compliant to the ELF Mips ABI.
2
   Copyright (C) 1995, 1997, 2000, 2001, 2002, 2003, 2004
3
        Free Software Foundation, Inc.
4
   This file is part of the GNU C Library.
5
 
6
   The GNU C Library is free software; you can redistribute it and/or
7
   modify it under the terms of the GNU Lesser General Public
8
   License as published by the Free Software Foundation; either
9
   version 2.1 of the License, or (at your option) any later version.
10
 
11
   In addition to the permissions in the GNU Lesser General Public
12
   License, the Free Software Foundation gives you unlimited
13
   permission to link the compiled version of this file with other
14
   programs, and to distribute those programs without any restriction
15
   coming from the use of this file. (The GNU Lesser General Public
16
   License restrictions do apply in other respects; for example, they
17
   cover modification of the file, and distribution when not linked
18
   into another program.)
19
 
20
   Note that people who make modified versions of this file are not
21
   obligated to grant this special exception for their modified
22
   versions; it is their choice whether to do so. The GNU Lesser
23
   General Public License gives permission to release a modified
24
   version without this exception; this exception also makes it
25
   possible to release a modified version which carries forward this
26
   exception.
27
 
28
   The GNU C Library is distributed in the hope that it will be useful,
29
   but WITHOUT ANY WARRANTY; without even the implied warranty of
30
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
31
   Lesser General Public License for more details.
32
 
33
   You should have received a copy of the GNU Lesser General Public
34
   License along with the GNU C Library; if not, write to the Free
35
   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
36
   02111-1307 USA.  */
37
 
38
#define __ASSEMBLY__ 1
39
#include 
40
#include 
41
#include 
42
 
43
/* The entry point's job is to call __libc_start_main.  Per the ABI,
44
   a0 contains the address of a function to be passed to atexit.
45
   __libc_start_main wants this in a5.  */
46
 
47
ENTRY(ENTRY_POINT)
48
        lla   gp, _gp
49
        move  a5, a0  /* rtld_fini */
50
        lla   a0, main
51
        REG_L a1, 0(sp)      /* argc */
52
        addi  a2, sp, SZREG  /* argv */
53
        andi  sp, sp, ALMASK /* Align stack. */
54
        lla   a3, __libc_csu_init
55
        lla   a4, __libc_csu_fini
56
        move  a6, sp  /* stack_end */
57
 
58
        tail  __libc_start_main@
59
END(ENTRY_POINT)
60
 
61
/* Define a symbol for the first piece of initialized data.  */
62
        .data
63
        .globl __data_start
64
__data_start:
65
        .weak data_start
66
        data_start = __data_start

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.