2002-07-30 01:54:35 +04:00
|
|
|
/* $NetBSD: crt0.c,v 1.23 2002/07/29 21:54:35 matt Exp $ */
|
1997-04-16 23:38:22 +04:00
|
|
|
|
|
|
|
/*
|
2000-06-14 20:09:54 +04:00
|
|
|
* Copyright (c) 1997 Jason R. Thorpe.
|
1997-04-16 23:38:22 +04:00
|
|
|
* Copyright (c) 1995 Christopher G. Demetriou
|
|
|
|
* All rights reserved.
|
2000-06-15 02:52:37 +04:00
|
|
|
*
|
1997-04-16 23:38:22 +04:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
2000-06-15 02:52:37 +04:00
|
|
|
* This product includes software developed for the
|
|
|
|
* NetBSD Project. See http://www.netbsd.org/ for
|
|
|
|
* information about NetBSD.
|
1997-04-16 23:38:22 +04:00
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
2000-06-15 02:52:37 +04:00
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
1997-04-16 23:38:22 +04:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2000-06-15 02:52:37 +04:00
|
|
|
*
|
|
|
|
* <<Id: LICENSE,v 1.2 2000/06/14 15:57:33 cgd Exp>>
|
1997-04-16 23:38:22 +04:00
|
|
|
*/
|
|
|
|
|
1999-03-20 03:13:51 +03:00
|
|
|
#include "common.h"
|
1997-04-16 23:38:22 +04:00
|
|
|
|
2002-04-17 21:36:13 +04:00
|
|
|
/*
|
|
|
|
* Small Data Area designators. If not defined, will show up as being
|
|
|
|
* at address zero.
|
|
|
|
*/
|
2002-05-10 00:32:59 +04:00
|
|
|
extern int _SDA_BASE_[];
|
2002-04-17 21:36:13 +04:00
|
|
|
__weak_extern(_SDA_BASE_);
|
2002-05-10 00:32:59 +04:00
|
|
|
extern int _SDA2_BASE_[];
|
2002-04-17 21:36:13 +04:00
|
|
|
__weak_extern(_SDA2_BASE_);
|
|
|
|
|
1997-04-16 23:38:22 +04:00
|
|
|
/*
|
|
|
|
* First 5 arguments are specified by the PowerPC SVR4 ABI. The
|
|
|
|
* last argument, ps_strings, is a NetBSD extension.
|
|
|
|
*/
|
1997-10-09 16:29:21 +04:00
|
|
|
void _start __P((int, char **, char **, const Obj_Entry *,
|
|
|
|
void (*) __P((void)), struct ps_strings *));
|
|
|
|
|
1997-04-16 23:38:22 +04:00
|
|
|
void
|
1997-04-17 10:11:55 +04:00
|
|
|
_start(argc, argv, envp, obj, cleanup, ps_strings)
|
1997-04-16 23:38:22 +04:00
|
|
|
int argc;
|
|
|
|
char **argv, **envp;
|
|
|
|
const Obj_Entry *obj; /* from shared loader */
|
|
|
|
void (*cleanup) __P((void)); /* from shared loader */
|
|
|
|
struct ps_strings *ps_strings; /* NetBSD extension */
|
|
|
|
{
|
|
|
|
char *namep;
|
|
|
|
|
2002-04-17 17:32:42 +04:00
|
|
|
/*
|
|
|
|
* Initialize the Small Data Area registers.
|
|
|
|
* _SDA_BASE is defined in the SVR4 ABI for PPC.
|
|
|
|
* _SDA2_BASE is defined in the E[mbedded] ABI for PPC.
|
|
|
|
*/
|
2002-07-30 01:54:35 +04:00
|
|
|
__asm( "lis %r13,_SDA_BASE_@ha;"
|
|
|
|
"addi %r13,%r13,_SDA_BASE_@l;"
|
|
|
|
"lis %r2,_SDA2_BASE_@ha;"
|
|
|
|
"addi %r2,%r2,_SDA2_BASE_@l" );
|
2002-04-17 17:32:42 +04:00
|
|
|
|
1997-04-16 23:38:22 +04:00
|
|
|
if ((namep = argv[0]) != NULL) { /* NULL ptr if argc = 0 */
|
|
|
|
if ((__progname = _strrchr(namep, '/')) == NULL)
|
|
|
|
__progname = namep;
|
|
|
|
else
|
|
|
|
__progname++;
|
|
|
|
}
|
|
|
|
|
|
|
|
environ = envp;
|
|
|
|
|
|
|
|
if (ps_strings != (struct ps_strings *)0)
|
|
|
|
__ps_strings = ps_strings;
|
|
|
|
|
|
|
|
#ifdef DYNAMIC
|
|
|
|
if (&_DYNAMIC != NULL)
|
1999-03-08 13:49:08 +03:00
|
|
|
_rtld_setup(cleanup, obj);
|
1997-04-16 23:38:22 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef MCRT0
|
|
|
|
atexit(_mcleanup);
|
|
|
|
monstartup((u_long)&_eprol, (u_long)&_etext);
|
|
|
|
#endif
|
|
|
|
|
1998-03-27 12:11:33 +03:00
|
|
|
atexit(_fini);
|
|
|
|
_init();
|
1997-04-16 23:38:22 +04:00
|
|
|
|
|
|
|
exit(main(argc, argv, environ));
|
|
|
|
}
|
|
|
|
|
1999-07-02 19:46:05 +04:00
|
|
|
/*
|
1997-10-21 00:40:27 +04:00
|
|
|
* NOTE: Leave the RCS ID _after_ __start(), in case it gets placed in .text.
|
1999-07-02 19:46:05 +04:00
|
|
|
*/
|
1997-10-21 00:40:27 +04:00
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
2002-07-30 01:54:35 +04:00
|
|
|
__RCSID("$NetBSD: crt0.c,v 1.23 2002/07/29 21:54:35 matt Exp $");
|
1997-10-21 00:40:27 +04:00
|
|
|
#endif /* LIBC_SCCS and not lint */
|
1997-04-16 23:38:22 +04:00
|
|
|
|
1999-03-20 02:34:49 +03:00
|
|
|
#include "common.c"
|