globtype.pas 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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. {$ifdef alpha}
  39. bestreal = extended;
  40. ts32real = single;
  41. ts64real = double;
  42. ts80real = extended;
  43. ts64comp = comp;
  44. {$endif}
  45. {$ifdef powerpc}
  46. bestreal = double;
  47. ts32real = single;
  48. ts64real = double;
  49. ts80real = extended;
  50. ts64comp = comp;
  51. {$endif powerpc}
  52. pbestreal=^bestreal;
  53. { Switches which can be changed locally }
  54. tlocalswitch = (cs_localnone,
  55. { codegen }
  56. cs_check_overflow,cs_check_range,cs_check_io,cs_check_stack,
  57. cs_omitstackframe,cs_do_assertion,cs_generate_rtti,
  58. { mmx }
  59. cs_mmx,cs_mmx_saturation,
  60. { parser }
  61. cs_typed_addresses,cs_strict_var_strings,cs_ansistrings
  62. );
  63. tlocalswitches = set of tlocalswitch;
  64. { Switches which can be changed only at the beginning of a new module }
  65. tmoduleswitch = (cs_modulenone,
  66. { parser }
  67. cs_fp_emulation,cs_extsyntax,cs_openstring,
  68. { support }
  69. cs_support_inline,cs_support_goto,cs_support_macro,
  70. cs_support_c_operators,cs_static_keyword,
  71. cs_typed_const_not_changeable,
  72. { generation }
  73. cs_profile,cs_debuginfo,cs_browser,cs_local_browser,cs_compilesystem,
  74. cs_lineinfo,
  75. { linking }
  76. cs_smartlink
  77. );
  78. tmoduleswitches = set of tmoduleswitch;
  79. { Switches which can be changed only for a whole program/compilation,
  80. mostly set with commandline }
  81. tglobalswitch = (cs_globalnone,
  82. { parameter switches }
  83. cs_check_unit_name,cs_constructor_name,
  84. { units }
  85. cs_load_objpas_unit,
  86. cs_load_gpc_unit,
  87. { optimizer }
  88. cs_regalloc,cs_uncertainopts,cs_littlesize,cs_optimize,
  89. cs_fastoptimize, cs_slowoptimize,
  90. { browser }
  91. cs_browser_log,
  92. { debugger }
  93. cs_gdb_dbx,cs_gdb_gsym,cs_gdb_heaptrc,cs_checkpointer,
  94. { assembling }
  95. cs_asm_leave,cs_asm_extern,cs_asm_pipe,cs_asm_source,
  96. cs_asm_regalloc,cs_asm_tempalloc,
  97. { linking }
  98. cs_link_extern,cs_link_static,cs_link_smart,cs_link_shared,cs_link_deffile,
  99. cs_link_strip,cs_link_toc
  100. );
  101. tglobalswitches = set of tglobalswitch;
  102. { Switches which can be changed by a mode (fpc,tp7,delphi) }
  103. tmodeswitch = (m_none,m_all, { needed for keyword }
  104. { generic }
  105. m_fpc,m_delphi,m_tp,m_gpc,
  106. { more specific }
  107. m_class, { delphi class model }
  108. m_objpas, { load objpas unit }
  109. m_result, { result in functions }
  110. m_string_pchar, { pchar 2 string conversion }
  111. m_cvar_support, { cvar variable directive }
  112. m_nested_comment, { nested comments }
  113. m_tp_procvar, { tp style procvars (no @ needed) }
  114. m_repeat_forward, { repeating forward declarations is needed }
  115. m_pointer_2_procedure, { allows the assignement of pointers to
  116. procedure variables }
  117. m_autoderef, { does auto dereferencing of struct. vars }
  118. m_initfinal, { initialization/finalization for units }
  119. m_add_pointer { allow pointer add/sub operations }
  120. );
  121. tmodeswitches = set of tmodeswitch;
  122. { win32 sub system }
  123. tapptype = (at_none,
  124. at_gui,at_cui
  125. );
  126. { currently parsed block type }
  127. tblock_type = (bt_none,
  128. bt_general,bt_type,bt_const
  129. );
  130. { packrecords types }
  131. tpackrecords = (packrecord_none,
  132. packrecord_1,packrecord_2,packrecord_4,
  133. packrecord_8,packrecord_16,packrecord_32,
  134. packrecord_C
  135. );
  136. const
  137. packrecordalignment : array[tpackrecords] of byte=(0,
  138. 1,2,4,8,16,32,1
  139. );
  140. type
  141. stringid = string[maxidlen];
  142. tnormalset = set of byte; { 256 elements set }
  143. pnormalset = ^tnormalset;
  144. pdouble = ^double;
  145. pbyte = ^byte;
  146. pword = ^word;
  147. plongint = ^longint;
  148. const
  149. { link options }
  150. link_none = $0;
  151. link_allways = $1;
  152. link_static = $2;
  153. link_smart = $4;
  154. link_shared = $8;
  155. implementation
  156. begin
  157. end.
  158. {
  159. $Log$
  160. Revision 1.1 2000-07-13 09:48:33 michael
  161. + Initial import
  162. Revision 1.2 1999/09/17 09:16:12 peter
  163. * updated with compiler versions
  164. }