globtype.pas 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. {
  2. $Id$
  3. Copyright (c) 1993-98 by Florian Klaempfl, Pierre Muller
  4. Global types
  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 globtype;
  19. interface
  20. const
  21. maxidlen = 64;
  22. type
  23. { System independent float names }
  24. {$ifdef i386}
  25. bestreal = extended;
  26. ts32real = single;
  27. ts64real = double;
  28. ts80real = extended;
  29. ts64comp = extended;
  30. {$endif}
  31. {$ifdef m68k}
  32. bestreal = real;
  33. ts32real = single;
  34. ts64real = double;
  35. ts80real = extended;
  36. ts64comp = comp;
  37. {$endif}
  38. pbestreal=^bestreal;
  39. { Switches which can be changed locally }
  40. tlocalswitch = (cs_localnone,
  41. { codegen }
  42. cs_check_overflow,cs_check_range,cs_check_io,cs_check_stack,
  43. cs_omitstackframe,cs_do_assertion,cs_generate_rtti,
  44. { mmx }
  45. cs_mmx,cs_mmx_saturation,
  46. { parser }
  47. cs_typed_addresses,cs_strict_var_strings,cs_ansistrings
  48. );
  49. tlocalswitches = set of tlocalswitch;
  50. { Switches which can be changed only at the beginning of a new module }
  51. tmoduleswitch = (cs_modulenone,
  52. { parser }
  53. cs_fp_emulation,cs_extsyntax,cs_openstring,
  54. { support }
  55. cs_support_inline,cs_support_goto,cs_support_macro,
  56. cs_support_c_operators,cs_static_keyword,
  57. cs_typed_const_not_changeable,
  58. { generation }
  59. cs_profile,cs_debuginfo,cs_browser,cs_local_browser,cs_compilesystem,
  60. { linking }
  61. cs_smartlink
  62. );
  63. tmoduleswitches = set of tmoduleswitch;
  64. { Switches which can be changed only for a whole program/compilation,
  65. mostly set with commandline }
  66. tglobalswitch = (cs_globalnone,
  67. { parameter switches }
  68. cs_check_unit_name,cs_constructor_name,
  69. { units }
  70. cs_load_objpas_unit,
  71. cs_load_gpc_unit,
  72. { optimizer }
  73. cs_regalloc,cs_uncertainopts,cs_littlesize,cs_optimize,
  74. cs_fastoptimize, cs_slowoptimize,
  75. { browser }
  76. cs_browser_log,
  77. { debugger }
  78. cs_gdb_dbx,cs_gdb_gsym,cs_gdb_heaptrc,cs_checkpointer,
  79. { assembling }
  80. cs_asm_leave,cs_asm_extern,cs_asm_pipe,cs_asm_source,
  81. cs_asm_regalloc,cs_asm_tempalloc,
  82. { linking }
  83. cs_link_extern,cs_link_static,cs_link_smart,cs_link_shared,cs_link_deffile
  84. );
  85. tglobalswitches = set of tglobalswitch;
  86. { Switches which can be changed by a mode (fpc,tp7,delphi) }
  87. tmodeswitch = (m_none,m_all, { needed for keyword }
  88. { generic }
  89. m_fpc,m_delphi,m_tp,m_gpc,
  90. { more specific }
  91. m_class, { delphi class model }
  92. m_objpas, { load objpas unit }
  93. m_result, { result in functions }
  94. m_string_pchar, { pchar 2 string conversion }
  95. m_cvar_support, { cvar variable directive }
  96. m_nested_comment, { nested comments }
  97. m_tp_procvar, { tp style procvars (no @ needed) }
  98. m_repeat_forward, { repeating forward declarations is needed }
  99. m_pointer_2_procedure, { allows the assignement of pointers to
  100. procedure variables }
  101. m_autoderef, { does auto dereferencing of struct. vars }
  102. m_initfinal { initialization/finalization for units }
  103. );
  104. tmodeswitches = set of tmodeswitch;
  105. { win32 sub system }
  106. tapptype = (at_none,
  107. at_gui,at_cui
  108. );
  109. { currently parsed block type }
  110. tblock_type = (bt_none,
  111. bt_general,bt_type,bt_const
  112. );
  113. stringid = string[maxidlen];
  114. tnormalset = set of byte; { 256 elements set }
  115. pnormalset = ^tnormalset;
  116. pdouble = ^double;
  117. pbyte = ^byte;
  118. pword = ^word;
  119. plongint = ^longint;
  120. const
  121. { link options }
  122. link_none = $0;
  123. link_allways = $1;
  124. link_static = $2;
  125. link_smart = $4;
  126. link_shared = $8;
  127. implementation
  128. begin
  129. end.
  130. {
  131. $Log$
  132. Revision 1.12 1999-07-10 10:26:19 peter
  133. * merged
  134. Revision 1.11 1999/07/03 00:29:49 peter
  135. * new link writing to the ppu, one .ppu is needed for all link types,
  136. static (.o) is now always created also when smartlinking is used
  137. Revision 1.10.2.1 1999/07/10 10:03:06 peter
  138. * fixed initialization/finalization in fpc mode
  139. * allow $TARGET also in search paths
  140. Revision 1.10 1999/05/17 14:30:39 pierre
  141. + cs_checkpointer
  142. Revision 1.9 1999/05/12 00:19:49 peter
  143. * removed R_DEFAULT_SEG
  144. * uniform float names
  145. Revision 1.8 1999/04/26 13:31:33 peter
  146. * release storenumber,double_checksum
  147. Revision 1.7 1999/04/25 22:34:58 pierre
  148. + cs_typed_const_not_changeable added but not implemented yet !
  149. Revision 1.6 1999/04/16 11:49:42 peter
  150. + tempalloc
  151. + -at to show temp alloc info in .s file
  152. Revision 1.5 1999/04/10 16:15:01 peter
  153. * fixed browcol
  154. + -ar to show regalloc info in .s file
  155. Revision 1.4 1999/03/26 00:05:30 peter
  156. * released valintern
  157. + deffile is now removed when compiling is finished
  158. * ^( compiles now correct
  159. + static directive
  160. * shrd fixed
  161. Revision 1.3 1999/01/27 13:51:44 pierre
  162. * dos end of line problem
  163. Revision 1.2 1998/12/23 12:40:48 daniel
  164. * Added begin to globtype and version to avoid empty object files.
  165. * Fileexists no longer finds volume labels.
  166. Revision 1.1 1998/12/11 00:05:27 peter
  167. * splitted from globals.pas
  168. }