fpc/compiler/systems
Jonas Maebe d1538ab023 o added ARM VPFv2/VFPv3 support:
+ RTL support:
      o VFP exceptions are disabled by default on Darwin,
        because they cause kernel panics on iPhoneOS 2.2.1 at least
      o all denormals are truncated to 0 on Darwin, because disabling
        that also causes kernel panics on iPhoneOS 2.2.1 (probably
        because otherwise denormals can also cause exceptions)
    * set softfloat rounding mode correctly for non-wince/darwin/vfp
      targets
    + compiler support: only half the number of single precision
      registers is available due to limitations of the register
      allocator
    + added a number of comments about why the stackframe on ARM is
      set up the way it is by the compiler
    + added regtype and subregtype info to regsets, because they're
      also used for VFP registers (+ support in assembler reader)
    + various generic support routines for dealing with floating point
      values located in integer registers that have to be transferred to
      mm registers (needed for VFP)
    * renamed use_sse() to use_vectorfpu() and also use it for
      ARM/vfp support
    o only superficially tested for Linux (compiler compiled with -Cpvfpv6
      -Cfvfpv2 works on a Cortex-A8, no testsuite run performed -- at least
      the fpu exception handler still needs to be implemented), Darwin has
      been tested more thoroughly
  + added ARMv6 cpu type and made it default for Darwin/ARM
  + ARMv6+ implementations of atomic operations using ldrex/strex
  * don't use r9 on Darwin/ARM, as it's reserved under certain
    circumstances (don't know yet which ones)
  * changed C-test object files for ARM/Darwin to ARMv6 versions
  * check in assembler reader that regsets are not empty, because
    instructions with a regset operand have undefined behaviour in that
    case
  * fixed resultdef of tarmtypeconvnode.first_int_to_real in case of
    int64->single type conversion
  * fixed constant pool locations in case 64 bit constants are generated,
    and/or when vfp instructions with limited reach are present

  WARNING: when using VFP on an ARMv6 or later cpu, you *must* compile all
    code with -Cparmv6 (or higher), or you will get crashes. The reason is
    that storing/restoring multiple VFP registers must happen using
    different instructions on pre/post-ARMv6.

git-svn-id: trunk@14317 -
2009-12-03 22:46:30 +00:00
..
i_amiga.pas * prefix for import libraries now configurable rather than hardcoded, plus fixed issue with name of OS/2 import libraries 2009-02-09 00:01:15 +00:00
i_atari.pas * prefix for import libraries now configurable rather than hardcoded, plus fixed issue with name of OS/2 import libraries 2009-02-09 00:01:15 +00:00
i_beos.pas * prefix for import libraries now configurable rather than hardcoded, plus fixed issue with name of OS/2 import libraries 2009-02-09 00:01:15 +00:00
i_bsd.pas * prefix for import libraries now configurable rather than hardcoded, plus fixed issue with name of OS/2 import libraries 2009-02-09 00:01:15 +00:00
i_embed.pas + section smartlink bss for embedded targets 2009-06-27 15:21:01 +00:00
i_emx.pas * prefix for import libraries now configurable rather than hardcoded, plus fixed issue with name of OS/2 import libraries 2009-02-09 00:01:15 +00:00
i_gba.pas * Enabled -Xm switch for NDS and GBA and switched from abi_default to abi_eabi 2009-09-06 18:47:22 +00:00
i_go32v2.pas * prefix for import libraries now configurable rather than hardcoded, plus fixed issue with name of OS/2 import libraries 2009-02-09 00:01:15 +00:00
i_haiku.pas * prefix for import libraries now configurable rather than hardcoded, plus fixed issue with name of OS/2 import libraries 2009-02-09 00:01:15 +00:00
i_linux.pas * several mips/mipsel related stuff fixed 2009-11-27 15:10:56 +00:00
i_macos.pas * prefix for import libraries now configurable rather than hardcoded, plus fixed issue with name of OS/2 import libraries 2009-02-09 00:01:15 +00:00
i_morph.pas * prefix for import libraries now configurable rather than hardcoded, plus fixed issue with name of OS/2 import libraries 2009-02-09 00:01:15 +00:00
i_nds.pas * Enabled -Xm switch for NDS and GBA and switched from abi_default to abi_eabi 2009-09-06 18:47:22 +00:00
i_nwl.pas * prefix for import libraries now configurable rather than hardcoded, plus fixed issue with name of OS/2 import libraries 2009-02-09 00:01:15 +00:00
i_nwm.pas * prefix for import libraries now configurable rather than hardcoded, plus fixed issue with name of OS/2 import libraries 2009-02-09 00:01:15 +00:00
i_os2.pas * prefix for import libraries now configurable rather than hardcoded, plus fixed issue with name of OS/2 import libraries 2009-02-09 00:01:15 +00:00
i_palmos.pas * prefix for import libraries now configurable rather than hardcoded, plus fixed issue with name of OS/2 import libraries 2009-02-09 00:01:15 +00:00
i_sunos.pas * solaris x86-64 libraries require pic 2009-11-28 18:27:58 +00:00
i_symbian.pas * prefix for import libraries now configurable rather than hardcoded, plus fixed issue with name of OS/2 import libraries 2009-02-09 00:01:15 +00:00
i_watcom.pas * prefix for import libraries now configurable rather than hardcoded, plus fixed issue with name of OS/2 import libraries 2009-02-09 00:01:15 +00:00
i_wdosx.pas * prefix for import libraries now configurable rather than hardcoded, plus fixed issue with name of OS/2 import libraries 2009-02-09 00:01:15 +00:00
i_win.pas * added tf_dwarf_only_local_labels for Windows (should make DWARF usable 2009-03-17 17:07:17 +00:00
mac_crea.txt
t_amiga.pas + Made a single Amiga/MorphOS-specific PathConv import to cfileutl.pas, instead of importing it every single place it is needed. 2009-01-03 14:34:59 +00:00
t_atari.pas
t_beos.pas + Haiku support by Olivier Coursière based on old BeOS support 2008-05-19 17:33:35 +00:00
t_bsd.pas o added ARM VPFv2/VFPv3 support: 2009-12-03 22:46:30 +00:00
t_embed.pas * merged armthum branch 2009-10-04 09:03:44 +00:00
t_emx.pas * Removed/commented more unused variables. 2008-07-23 10:48:53 +00:00
t_gba.pas * Enabled -Xm switch for NDS and GBA and switched from abi_default to abi_eabi 2009-09-06 18:47:22 +00:00
t_go32v2.pas * Adapt script to DJGPP 2.04 2009-11-06 00:13:42 +00:00
t_haiku.pas + Haiku support by Olivier Coursière based on old BeOS support 2008-05-19 17:33:35 +00:00
t_linux.pas * several mips/mipsel related stuff fixed 2009-11-27 15:10:56 +00:00
t_macos.pas + add -XR switch for target root file system with libs (also used for C lib type detection) 2007-09-30 15:00:54 +00:00
t_morph.pas + Made a single Amiga/MorphOS-specific PathConv import to cfileutl.pas, instead of importing it every single place it is needed. 2009-01-03 14:34:59 +00:00
t_nds.pas * Enabled -Xm switch for NDS and GBA and switched from abi_default to abi_eabi 2009-09-06 18:47:22 +00:00
t_nwl.pas * Rework the constexprint to allow operations from low(int64) to high(qword). 2007-06-13 07:41:18 +00:00
t_nwm.pas * Rework the constexprint to allow operations from low(int64) to high(qword). 2007-06-13 07:41:18 +00:00
t_os2.pas * prefix for import libraries now configurable rather than hardcoded, plus fixed issue with name of OS/2 import libraries 2009-02-09 00:01:15 +00:00
t_palmos.pas * Rework the constexprint to allow operations from low(int64) to high(qword). 2007-06-13 07:41:18 +00:00
t_sunos.pas * modify native likner args for library creation 2009-12-01 13:52:46 +00:00
t_symbian.pas * Fixed setting of image base using {$IMAGEBASE X} directive. 2009-05-15 23:12:02 +00:00
t_watcom.pas * Removed/ifdefed/commented unused local variables. 2008-07-23 09:22:47 +00:00
t_wdosx.pas * support static library (.a) linking 2006-06-28 20:26:53 +00:00
t_win.pas * Set default image base for win64 dlls to $110000000. 2009-05-17 12:47:26 +00:00