crtpg.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* Register profiling startup and cleanup with Solaris CRTs.
  2. Copyright (C) 2015-2022 Free Software Foundation, Inc.
  3. This file is part of GCC.
  4. GCC is free software; you can redistribute it and/or modify it under
  5. the terms of the GNU General Public License as published by the Free
  6. Software Foundation; either version 3, or (at your option) any later
  7. version.
  8. GCC is distributed in the hope that it will be useful, but WITHOUT ANY
  9. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  11. for more details.
  12. Under Section 7 of GPL version 3, you are granted additional
  13. permissions described in the GCC Runtime Library Exception, version
  14. 3.1, as published by the Free Software Foundation.
  15. You should have received a copy of the GNU General Public License and
  16. a copy of the GCC Runtime Library Exception along with this program;
  17. see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
  18. <http://www.gnu.org/licenses/>. */
  19. #include <stdlib.h>
  20. extern void monstartup (char *, char *);
  21. extern void _mcleanup (void);
  22. extern char _start[], _etext[];
  23. int __start_crt_compiler (int, char **);
  24. /* Since Solaris 11.4, the system-provided CRTs provide a hook to invoke
  25. initialization code early during process startup. __start_crt_compiler
  26. is documented in crt1.o(5). We use it to perform initialization for
  27. profiling as a substitute for the earlier separate gcrt1.o. */
  28. int
  29. __start_crt_compiler (int argc __attribute__ ((unused)),
  30. char **argv __attribute__ ((unused)))
  31. {
  32. monstartup (_start, _etext);
  33. atexit (_mcleanup);
  34. return 0;
  35. }