fpc/rtl/linux/i386
tom_at_work 9ce34c63c9 Fix shared library loading and unloading for Linux platforms. Shared library initialization and finalization are now called correctly at program startup for compile-time linked dynamic libraries on powerpc-/powerpc64-/arm-/i386- and x86_64-linux.
Every startup code must now provide an additional entry point called "_dynamic_start" that is set as new the entry point if the program links to a Pascal shared library. Its purpose is to set up an exit hook usually passed via a register, which should be called during program finalization if non-nil.

We use this additional entry point because this register only has meaningful content when there are any compile-time linked shared libraries, otherwise it often contains random garbage. The difference between the _dynamic_start and the original code is minimal; actually in all implementations the _dynamic_start code passes on control to the old startup code, so we use an additional entry point instead of an additional startup file.

Detailed changes and fixes list:
compiler:
  always link to the dynamic loader (ld.so) when compiling shared libraries. Fixes crashes in the loader during shared library finalization on some Linuxes
  remove additional ENTRY() section in arm linker script
  select either _dynamic_start or _start as entry point depending on whether this is a static or dynamic executable
powerpc*:
  do not set System.isLibrary in startup code, it will be set during library initialization anyway
  trap in case of reaching code locations that should not be reached instead of looping (possibly endlessly)
powerpc:
  register atexit() function pointer if supplied to the executable and call it during shutdown
  correctly set argc/argv/envp in shared library code and return correctly to the caller after initialization
  pass on exitcode in shared library haltproc
  use the more recent exit_group system call if available for shutdown
powerpc64
  fix .ptrgl stub, do not set the environment register to the value of the GOT entry in the function descriptor
arm
  do not set System.isLibrary in startup code, it will be set during library initialization anyway
  reload exitcode to pass to shutdown
mips,mipsel,sparc
  added stubs to allow correct linking

git-svn-id: trunk@19036 -
2011-09-08 21:17:35 +00:00
..
bsyscall.inc
cprt0.as * mark produced object files as "does not require executable stack" by 2008-12-12 16:26:25 +00:00
cprt21.as * mark produced object files as "does not require executable stack" by 2008-12-12 16:26:25 +00:00
dllprt0.as * Remove use of direct U_UNIT_NAME or TC_UNIT_NAME 2011-09-02 12:51:48 +00:00
gprt0.as * mark produced object files as "does not require executable stack" by 2008-12-12 16:26:25 +00:00
gprt21.as * mark produced object files as "does not require executable stack" by 2008-12-12 16:26:25 +00:00
prt0.as * mark produced object files as "does not require executable stack" by 2008-12-12 16:26:25 +00:00
si_c21.inc * fix got loading si_c32, resolves #19520 (still uses the call/pop approach because it is faster on modern CPUs) 2011-08-16 18:45:39 +00:00
si_c21g.inc * several fixes by Pierre Pede (parts of his patch to mantis #12492) 2009-09-12 21:57:41 +00:00
si_c.inc * several fixes by Pierre Pede (parts of his patch to mantis #12492) 2009-09-12 21:57:41 +00:00
si_dll.inc * reverted the rtl patches from r14184, because they cause an endless 2010-11-24 15:33:29 +00:00
si_g.inc * several fixes by Pierre Pede (parts of his patch to mantis #12492) 2009-09-12 21:57:41 +00:00
si_prc.inc Fix shared library loading and unloading for Linux platforms. Shared library initialization and finalization are now called correctly at program startup for compile-time linked dynamic libraries on powerpc-/powerpc64-/arm-/i386- and x86_64-linux. 2011-09-08 21:17:35 +00:00
si_uc.inc * rtl: fix i386-linux uclibc atexit functionality (call exit instead of _exit) 2010-04-03 13:18:10 +00:00
sighnd.inc - Revert micro-exe mode for now. 2010-10-15 16:49:48 +00:00
sighndh.inc * i386 signal handler receives a ucontext instead of sigcontext 2005-10-18 13:41:48 +00:00
stat.inc * fix FPC_USES_LIBC cycling, by fixing libc stat records (both 32 and 64 bit) 2007-07-11 20:55:09 +00:00
syscall.inc + adds mcount calls to syscall assembler helpers for i386 and x86-64, resolves #17140 2010-08-15 09:11:06 +00:00
syscallh.inc * fix sysenter variable duplication 2007-09-08 14:21:35 +00:00
sysnr.inc * fix linux syscall numbers naming consistency #2 (overlooked some) 2008-11-17 21:48:02 +00:00