]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - lib/csu/mips/crt1.c
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / lib / csu / mips / crt1.c
1 /*-
2  * Copyright 1996-1998 John D. Polstra.
3  * All rights reserved.
4  * Copyright (c) 1995 Christopher G. Demetriou
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. All advertising materials mentioning features or use of this software
16  *    must display the following acknowledgement:
17  *      This product includes software developed by Christopher G. Demetriou
18  *    for the NetBSD Project.
19  * 4. The name of the author may not be used to endorse or promote products
20  *    derived from this software without specific prior written permission
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  * $FreeBSD$
34  */
35
36 #include <sys/cdefs.h>
37 __FBSDID("$FreeBSD$");
38
39 #ifndef __GNUC__
40 #error "GCC is needed to compile this file"
41 #endif
42
43 #include <stdlib.h>
44 #include "libc_private.h"
45 #include "crtbrand.c"
46
47 struct Struct_Obj_Entry;
48 struct ps_strings;
49
50 #ifndef NOSHARED
51 extern int _DYNAMIC;
52 #pragma weak _DYNAMIC
53 #endif
54
55 extern void _init(void);
56 extern void _fini(void);
57 extern int main(int, char **, char **);
58
59 #ifdef GCRT
60 extern void _mcleanup(void);
61 extern void monstartup(void *, void *);
62 extern int eprol;
63 extern int etext;
64 #endif
65
66 char **environ;
67 const char *__progname = "";
68
69 void __gccmain(void) {}
70 void __main(void) {}
71
72 /* The entry function. */
73 void
74 __start(char **ap,
75         void (*cleanup)(void),                  /* from shared loader */
76         struct Struct_Obj_Entry *obj,           /* from shared loader */
77         struct ps_strings *ps_strings)
78 {
79         int argc;
80         char **argv;
81         char **env;
82
83         argc = * (long *) ap;
84         argv = ap + 1;
85         env  = ap + 2 + argc;
86         environ = env;
87         if(argc > 0 && argv[0] != NULL) {
88                 const char *s;
89                 __progname = argv[0];
90                 for (s = __progname; *s != '\0'; s++)
91                         if (*s == '/')
92                                 __progname = s + 1;
93         }
94
95 #ifndef NOSHARED
96         if (&_DYNAMIC != NULL)
97                 atexit(cleanup);
98 #endif
99 #ifdef GCRT
100         atexit(_mcleanup);
101 #endif
102         atexit(_fini);
103 #ifdef GCRT
104         monstartup(&eprol, &etext);
105 #endif
106 #ifndef NOGPREL
107         _init();
108 #endif
109         exit( main(argc, argv, env) );
110 }
111
112 #ifdef GCRT
113 __asm__(".text");
114 __asm__("eprol:");
115 __asm__(".previous");
116 #endif