globtype.pas 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. { Switches which can be changed locally }
  24. tlocalswitch = (cs_localnone,
  25. { codegen }
  26. cs_check_overflow,cs_check_range,cs_check_io,cs_check_stack,
  27. cs_omitstackframe,cs_do_assertion,cs_generate_rtti,
  28. { mmx }
  29. cs_mmx,cs_mmx_saturation,
  30. { parser }
  31. cs_typed_addresses,cs_strict_var_strings,cs_ansistrings
  32. );
  33. tlocalswitches=set of tlocalswitch;
  34. { Switches which can be changed only at the beginning of a new module }
  35. tmoduleswitch = (cs_modulenone,
  36. { parser }
  37. cs_fp_emulation,cs_extsyntax,cs_openstring,
  38. { support }
  39. cs_support_inline,cs_support_goto,cs_support_macro,
  40. cs_support_c_operators,
  41. { generation }
  42. cs_profile,cs_debuginfo,cs_browser,cs_local_browser,cs_compilesystem,
  43. { linking }
  44. cs_smartlink,cs_create_sharedlib,cs_create_staticlib
  45. );
  46. tmoduleswitches=set of tmoduleswitch;
  47. { Switches which can be changed only for a whole program/compilation,
  48. mostly set with commandline }
  49. tglobalswitch = (cs_globalnone,
  50. { parameter switches }
  51. cs_check_unit_name,cs_constructor_name,cs_static_keyword,
  52. { units }
  53. cs_load_objpas_unit,
  54. cs_load_gpc_unit,
  55. { optimizer }
  56. cs_regalloc,cs_uncertainopts,cs_littlesize,cs_optimize,
  57. cs_fastoptimize, cs_slowoptimize,
  58. { debugger }
  59. cs_gdb_dbx,cs_gdb_gsym,cs_gdb_heaptrc,
  60. { assembling }
  61. cs_asm_leave,cs_asm_extern,cs_asm_pipe,cs_asm_source,
  62. { linking }
  63. cs_link_extern,cs_link_shared,cs_link_static,cs_link_deffile
  64. );
  65. tglobalswitches=set of tglobalswitch;
  66. { Switches which can be changed by a mode (fpc,tp7,delphi) }
  67. tmodeswitch = (m_none,m_all, { needed for keyword }
  68. { generic }
  69. m_fpc,m_delphi,m_tp,m_gpc,
  70. { more specific }
  71. m_class,m_objpas,m_result,m_string_pchar,m_cvar_support,
  72. m_nested_comment,m_tp_procvar,m_repeat_forward,
  73. m_pointer_2_procedure, { allows the assignement of pointers to
  74. procedure variables }
  75. m_autoderef { does auto dereferencing of struct. vars }
  76. );
  77. tmodeswitches=set of tmodeswitch;
  78. { win32 sub system }
  79. tapptype = (at_gui,at_cui);
  80. { currently parsed block type }
  81. tblock_type = (bt_general,bt_type,bt_const);
  82. stringid = string[maxidlen];
  83. tnormalset = set of byte; { 256 elements set }
  84. pnormalset = ^tnormalset;
  85. pdouble = ^double;
  86. pbyte = ^byte;
  87. pword = ^word;
  88. plongint = ^longint;
  89. implementation
  90. begin
  91. end.
  92. {
  93. $Log$
  94. Revision 1.2 1998-12-23 12:40:48 daniel
  95. * Added begin to globtype and version to avoid empty object files.
  96. * Fileexists no longer finds volume labels.
  97. Revision 1.1 1998/12/11 00:05:27 peter
  98. * splitted from globals.pas
  99. }