2014-01-01 11:03:15 +00:00
|
|
|
/* Copyright (C) 1998-2014 Free Software Foundation, Inc.
|
1998-05-06 14:43:15 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1998-05-06 14:43:15 +00:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
1998-05-06 14:43:15 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1998-05-06 14:43:15 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2000-03-23 20:31:46 +00:00
|
|
|
#include <ldsodefs.h>
|
2007-05-26 20:13:27 +00:00
|
|
|
#include <sysdep.h>
|
1998-05-06 14:43:15 +00:00
|
|
|
|
2005-12-30 07:32:48 +00:00
|
|
|
|
2007-08-12 19:03:54 +00:00
|
|
|
int __cache_line_size attribute_hidden;
|
|
|
|
/* The main work is done in the generic function. */
|
|
|
|
#define LIBC_START_MAIN generic_start_main
|
|
|
|
#define LIBC_START_DISABLE_INLINE
|
|
|
|
#define LIBC_START_MAIN_AUXVEC_ARG
|
|
|
|
#define MAIN_AUXVEC_ARG
|
|
|
|
#define INIT_MAIN_ARGS
|
|
|
|
#include <csu/libc-start.c>
|
|
|
|
|
|
|
|
struct startup_info
|
|
|
|
{
|
2013-02-13 23:30:40 +00:00
|
|
|
void *sda_base;
|
2007-08-12 19:03:54 +00:00
|
|
|
int (*main) (int, char **, char **, void *);
|
|
|
|
int (*init) (int, char **, char **, void *);
|
|
|
|
void (*fini) (void);
|
|
|
|
};
|
|
|
|
|
1998-05-06 14:43:15 +00:00
|
|
|
int
|
2013-02-14 13:12:02 +00:00
|
|
|
__libc_start_main (int argc, char **argv,
|
|
|
|
char **ev,
|
|
|
|
ElfW (auxv_t) * auxvec,
|
|
|
|
void (*rtld_fini) (void),
|
|
|
|
struct startup_info *stinfo,
|
|
|
|
char **stack_on_entry)
|
1998-05-06 14:43:15 +00:00
|
|
|
{
|
|
|
|
/* the PPC SVR4 ABI says that the top thing on the stack will
|
|
|
|
be a NULL pointer, so if not we assume that we're being called
|
2005-12-30 07:32:48 +00:00
|
|
|
as a statically-linked program by Linux... */
|
1998-05-06 14:43:15 +00:00
|
|
|
if (*stack_on_entry != NULL)
|
|
|
|
{
|
2013-02-13 23:30:40 +00:00
|
|
|
char **temp;
|
1998-05-06 14:43:15 +00:00
|
|
|
/* ...in which case, we have argc as the top thing on the
|
2005-12-30 07:32:48 +00:00
|
|
|
stack, followed by argv (NULL-terminated), envp (likewise),
|
2013-08-29 07:08:54 +00:00
|
|
|
and the auxiliary vector. */
|
2002-09-20 21:39:29 +00:00
|
|
|
/* 32/64-bit agnostic load from stack */
|
2013-02-13 23:30:40 +00:00
|
|
|
argc = *(long int *) stack_on_entry;
|
|
|
|
argv = stack_on_entry + 1;
|
|
|
|
ev = argv + argc + 1;
|
2002-01-02 09:52:33 +00:00
|
|
|
#ifdef HAVE_AUX_VECTOR
|
2013-02-13 23:30:40 +00:00
|
|
|
temp = ev;
|
2002-08-22 19:07:46 +00:00
|
|
|
while (*temp != NULL)
|
2005-12-30 07:32:48 +00:00
|
|
|
++temp;
|
|
|
|
auxvec = (ElfW (auxv_t) *)++ temp;
|
2001-01-07 19:09:48 +00:00
|
|
|
#endif
|
1998-05-06 14:43:15 +00:00
|
|
|
rtld_fini = NULL;
|
|
|
|
}
|
|
|
|
|
2002-08-22 19:07:46 +00:00
|
|
|
/* Initialize the __cache_line_size variable from the aux vector. */
|
2005-12-30 07:32:48 +00:00
|
|
|
for (ElfW (auxv_t) * av = auxvec; av->a_type != AT_NULL; ++av)
|
2004-04-04 01:07:05 +00:00
|
|
|
switch (av->a_type)
|
|
|
|
{
|
|
|
|
case AT_DCACHEBSIZE:
|
2007-03-26 20:08:13 +00:00
|
|
|
__cache_line_size = av->a_un.a_val;
|
2005-12-30 07:32:48 +00:00
|
|
|
break;
|
2004-04-04 01:07:05 +00:00
|
|
|
}
|
2007-08-12 19:03:54 +00:00
|
|
|
|
2013-02-13 23:30:40 +00:00
|
|
|
return generic_start_main (stinfo->main, argc, argv, auxvec,
|
2003-03-15 23:09:52 +00:00
|
|
|
stinfo->init, stinfo->fini, rtld_fini,
|
|
|
|
stack_on_entry);
|
1998-05-06 14:43:15 +00:00
|
|
|
}
|