cputarg.pas 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. {
  2. $Id$
  3. Copyright (c) 2001-2002 by Peter Vreman
  4. Includes the i386 dependent target units
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. ****************************************************************************
  17. }
  18. unit cputarg;
  19. {$i fpcdefs.inc}
  20. interface
  21. implementation
  22. uses
  23. systems { prevent a syntax error when nothing is included }
  24. {**************************************
  25. Targets
  26. **************************************}
  27. {$ifndef NOTARGETLINUX}
  28. ,t_linux
  29. {$endif}
  30. {$ifndef NOTARGETFREEBSD}
  31. ,t_fbsd
  32. {$endif}
  33. {$ifndef NOTARGETSUNOS}
  34. ,t_sunos
  35. {$endif}
  36. {$ifndef NOTARGETEMX}
  37. ,t_emx
  38. {$endif}
  39. {$ifndef NOTARGETOS2}
  40. ,t_os2
  41. {$endif}
  42. {$ifndef NOTARGETWIN32}
  43. ,t_win32
  44. {$endif}
  45. {$ifndef NOTARGETNETWARE}
  46. ,t_nwm
  47. {$endif}
  48. {$ifndef NOTARGETGO32V2}
  49. ,t_go32v2
  50. {$endif}
  51. {$ifndef NOTARGETBEOS}
  52. ,t_beos
  53. {$endif}
  54. {$ifndef NOTARGETWDOSX}
  55. ,t_wdosx
  56. {$endif}
  57. {**************************************
  58. Assemblers
  59. **************************************}
  60. {$ifndef NOAG386ATT}
  61. ,agx86att
  62. {$endif}
  63. {$ifndef NOAG386NSM}
  64. ,ag386nsm
  65. {$endif}
  66. {$ifndef NOAG386INT}
  67. ,ag386int
  68. {$endif}
  69. ,ogcoff
  70. ,ogelf
  71. ;
  72. end.
  73. {
  74. $Log$
  75. Revision 1.11 2003-04-25 12:04:31 florian
  76. * merged agx64att and ag386att to x86/agx86att
  77. Revision 1.10 2003/03/23 23:33:10 hajny
  78. + emx target added
  79. Revision 1.9 2002/05/18 13:34:22 peter
  80. * readded missing revisions
  81. Revision 1.8 2002/05/16 19:46:50 carl
  82. + defines.inc -> fpcdefs.inc to avoid conflicts if compiling by hand
  83. + try to fix temp allocation (still in ifdef)
  84. + generic constructor calls
  85. + start of tassembler / tmodulebase class cleanup
  86. Revision 1.6 2002/05/12 16:53:16 peter
  87. * moved entry and exitcode to ncgutil and cgobj
  88. * foreach gets extra argument for passing local data to the
  89. iterator function
  90. * -CR checks also class typecasts at runtime by changing them
  91. into as
  92. * fixed compiler to cycle with the -CR option
  93. * fixed stabs with elf writer, finally the global variables can
  94. be watched
  95. * removed a lot of routines from cga unit and replaced them by
  96. calls to cgobj
  97. * u32bit-s32bit updates for and,or,xor nodes. When one element is
  98. u32bit then the other is typecasted also to u32bit without giving
  99. a rangecheck warning/error.
  100. * fixed pascal calling method with reversing also the high tree in
  101. the parast, detected by tcalcst3 test
  102. Revision 1.5 2002/04/14 17:00:49 carl
  103. + att_reg2str -> gas_reg2str
  104. Revision 1.4 2002/04/04 18:31:37 carl
  105. + added wdosx support (patch from Pavel)
  106. Revision 1.3 2002/03/28 20:48:04 carl
  107. - remove go32v1 support
  108. }