crt0.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /* Copyright (C) 1991, 1992 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Library General Public License as
  5. published by the Free Software Foundation; either version 2 of the
  6. License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Library General Public License for more details.
  11. You should have received a copy of the GNU Library General Public
  12. License along with the GNU C Library; see the file COPYING.LIB. If
  13. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  14. Cambridge, MA 02139, USA. */
  15. #include <asm/ptrace.h>
  16. #define nop() __asm__ __volatile__ ("nop")
  17. extern inline int _stack_frame_address(void)
  18. {
  19. int retval;
  20. __asm__ __volatile__(
  21. "mov %0, %%fp\n\t"
  22. : "=r" (retval) );
  23. return retval;
  24. }
  25. void __uClibc_main(int argc,void *argv,void *envp);
  26. void _start(void)
  27. {
  28. void **p;
  29. nop(); /* placeholder for breakpoint */
  30. nop();
  31. p = (int *) (_stack_frame_address() + REGWIN_SZ);
  32. __uClibc_main( (int) *p, *(p+1), *(p+2) );
  33. /* If that didn't kill us, ... */
  34. asm("trap 0");
  35. }
  36. /*
  37. * this was needed for gcc/g++-builds, atexit was not getting included
  38. * for some stupid reason, this gets us a compiler
  39. */
  40. // empty_func:
  41. // // rts
  42. // .weak atexit
  43. // atexit = empty_func
  44. //
  45. // /*
  46. // * a little bit of stuff to support C++
  47. // */
  48. // .section .ctors,"aw"
  49. // .align 4
  50. // .global __CTOR_LIST__
  51. // __CTOR_LIST__:
  52. // .long -1
  53. //
  54. // .section .dtors,"aw"
  55. // .align 4
  56. // .global __DTOR_LIST__
  57. // __DTOR_LIST__:
  58. // .long -1