globtype.pas 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843
  1. {
  2. Copyright (c) 1998-2002 by Florian Klaempfl, Pierre Muller
  3. Global types
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. ****************************************************************************
  16. }
  17. unit globtype;
  18. {$i fpcdefs.inc}
  19. interface
  20. const
  21. maxidlen = 127;
  22. type
  23. { TCmdStr is used to pass command line parameters to an external program to be
  24. executed from the FPC application. In some circomstances, this can be more
  25. than 255 characters. That's why using Ansi Strings}
  26. TCmdStr = AnsiString;
  27. TPathStr = AnsiString;
  28. {$ifdef symansistr}
  29. TSymStr = AnsiString;
  30. {$else symansistr}
  31. TSymStr = ShortString;
  32. {$endif symansistr}
  33. PSymStr = ^TSymStr;
  34. Int32 = Longint;
  35. { Integer type corresponding to pointer size }
  36. {$ifdef cpu64bitaddr}
  37. PUint = qword;
  38. PInt = int64;
  39. {$endif cpu64bitaddr}
  40. {$ifdef cpu32bitaddr}
  41. PUint = cardinal;
  42. PInt = longint;
  43. {$endif cpu32bitaddr}
  44. {$ifdef cpu16bitaddr}
  45. PUint = word;
  46. PInt = Smallint;
  47. {$endif cpu16bitaddr}
  48. { Natural integer register type and size for the target machine }
  49. {$ifdef cpu64bitalu}
  50. AWord = qword;
  51. AInt = Int64;
  52. Const
  53. AIntBits = 64;
  54. {$endif cpu64bitalu}
  55. {$ifdef cpu32bitalu}
  56. AWord = longword;
  57. AInt = longint;
  58. Const
  59. AIntBits = 32;
  60. {$endif cpu32bitalu}
  61. {$ifdef cpu16bitalu}
  62. AWord = Word;
  63. AInt = Smallint;
  64. Const
  65. AIntBits = 16;
  66. {$endif cpu16bitalu}
  67. {$ifdef cpu8bitalu}
  68. AWord = Byte;
  69. AInt = Shortint;
  70. Const
  71. AIntBits = 8;
  72. {$endif cpu8bitalu}
  73. { Maximum possible size of locals space (stack frame) }
  74. Const
  75. {$if defined(cpu16bitaddr)}
  76. MaxLocalsSize = High(PUint);
  77. {$else}
  78. MaxLocalsSize = High(longint) - 15;
  79. {$endif}
  80. Type
  81. PAWord = ^AWord;
  82. PAInt = ^AInt;
  83. { target cpu specific type used to store data sizes }
  84. {$ifdef cpu16bitaddr}
  85. { on small CPUs such as i8086, we use LongInt to support data structures
  86. larger than 32767 bytes and up to 65535 bytes in size. Since asizeint
  87. must be signed, we use LongInt/LongWord. }
  88. ASizeInt = LongInt;
  89. ASizeUInt = LongWord;
  90. {$else cpu16bitaddr}
  91. ASizeInt = PInt;
  92. ASizeUInt = PUInt;
  93. {$endif cpu16bitaddr}
  94. { type used for handling constants etc. in the code generator }
  95. TCGInt = Int64;
  96. { This must be an ordinal type with the same size as a pointer
  97. Note: Must be unsigned! Otherwise, ugly code like
  98. pointer(-1) will result in a pointer with the value
  99. $fffffffffffffff on a 32bit machine if the compiler uses
  100. int64 constants internally (JM) }
  101. {$ifdef i8086}
  102. TConstPtrUInt = LongWord; { 32-bit for far pointers support }
  103. {$else i8086}
  104. TConstPtrUInt = PUint;
  105. {$endif i8086}
  106. { Use a variant record to be sure that the array if aligned correctly }
  107. tcompdoublerec=record
  108. case byte of
  109. 0 : (bytes:array[0..7] of byte);
  110. 1 : (value:double);
  111. end;
  112. { Use a variant record to be sure that the array if aligned correctly }
  113. tcompsinglerec=record
  114. case byte of
  115. 0 : (bytes:array[0..3] of byte);
  116. 1 : (value:single);
  117. end;
  118. tcompextendedrec=record
  119. case byte of
  120. 0 : (bytes:array[0..9] of byte);
  121. 1 : (value:extended);
  122. end;
  123. pconstset = ^tconstset;
  124. tconstset = set of 0..255;
  125. { Switches which can be changed locally }
  126. tlocalswitch = (cs_localnone,
  127. { codegen }
  128. cs_check_overflow,cs_check_range,cs_check_object,
  129. cs_check_io,cs_check_stack,
  130. cs_checkpointer,cs_check_ordinal_size,
  131. cs_generate_stackframes,cs_do_assertion,cs_generate_rtti,
  132. cs_full_boolean_eval,cs_typed_const_writable,cs_allow_enum_calc,
  133. cs_do_inline,cs_fpu_fwait,cs_ieee_errors,
  134. cs_check_low_addr_load,cs_imported_data,
  135. cs_excessprecision,cs_check_fpu_exceptions,
  136. { mmx }
  137. cs_mmx,cs_mmx_saturation,
  138. { parser }
  139. cs_typed_addresses,cs_strict_var_strings,cs_refcountedstrings,
  140. cs_bitpacking,cs_varpropsetter,cs_scopedenums,cs_pointermath,
  141. { macpas specific}
  142. cs_external_var, cs_externally_visible,
  143. { jvm specific }
  144. cs_check_var_copyout,
  145. cs_zerobasedstrings,
  146. { i8086 specific }
  147. cs_force_far_calls,
  148. cs_hugeptr_arithmetic_normalization,
  149. cs_hugeptr_comparison_normalization
  150. );
  151. tlocalswitches = set of tlocalswitch;
  152. { Switches which can be changed only at the beginning of a new module }
  153. tmoduleswitch = (cs_modulenone,
  154. { parser }
  155. cs_fp_emulation,cs_extsyntax,cs_openstring,
  156. { support }
  157. cs_support_goto,cs_support_macro,
  158. cs_support_c_operators,
  159. { generation }
  160. cs_profile,cs_debuginfo,cs_compilesystem,
  161. cs_lineinfo,cs_implicit_exceptions,
  162. cs_explicit_codepage,cs_system_codepage,
  163. { linking }
  164. cs_create_smart,cs_create_dynamic,cs_create_pic,
  165. { browser switches are back }
  166. cs_browser,cs_local_browser,
  167. { target specific }
  168. cs_executable_stack,
  169. { i8086 specific }
  170. cs_huge_code,
  171. cs_win16_smartcallbacks,
  172. { Record usage of checkpointer experimental feature }
  173. cs_checkpointer_called
  174. );
  175. tmoduleswitches = set of tmoduleswitch;
  176. { Switches which can be changed only for a whole program/compilation,
  177. mostly set with commandline }
  178. tglobalswitch = (cs_globalnone,
  179. { parameter switches }
  180. cs_check_unit_name,cs_constructor_name,cs_support_exceptions,
  181. cs_support_c_objectivepas,
  182. cs_transparent_file_names,
  183. { units }
  184. cs_load_objpas_unit,
  185. cs_load_gpc_unit,
  186. cs_load_fpcylix_unit,
  187. cs_support_vectors,
  188. { debuginfo }
  189. cs_use_heaptrc,cs_use_lineinfo,
  190. cs_gdb_valgrind,cs_no_regalloc,cs_stabs_preservecase,
  191. { assembling }
  192. cs_asm_leave,cs_asm_extern,cs_asm_pipe,cs_asm_source,
  193. cs_asm_regalloc,cs_asm_tempalloc,cs_asm_nodes,cs_asm_pre_binutils_2_25,
  194. { linking }
  195. cs_link_nolink,cs_link_static,cs_link_smart,cs_link_shared,cs_link_deffile,
  196. cs_link_strip,cs_link_staticflag,cs_link_on_target,cs_link_extern,cs_link_opt_vtable,
  197. cs_link_opt_used_sections,cs_link_separate_dbg_file,
  198. cs_link_map,cs_link_pthread,cs_link_no_default_lib_order,
  199. cs_link_native,
  200. cs_link_pre_binutils_2_19,
  201. cs_link_vlink
  202. );
  203. tglobalswitches = set of tglobalswitch;
  204. { global switches specific to debug information }
  205. tdebugswitch = (ds_none,
  206. { enable set support in dwarf debug info, breaks gdb versions }
  207. { without support for that tag (they refuse to parse the rest }
  208. { of the debug information) }
  209. ds_dwarf_sets,
  210. { use absolute paths for include files in stabs. Pro: gdb }
  211. { always knows full path to file. Con: doesn't work anymore }
  212. { if the include file is moved (otherwise, things still work }
  213. { if your source hierarchy is the same, but has a different }
  214. { base path) }
  215. ds_stabs_abs_include_files,
  216. { prefix method names by "classname__" in DWARF (like is done }
  217. { for Stabs); not enabled by default, because otherwise once }
  218. { support for calling methods has been added to gdb, you'd }
  219. { always have to type classinstance.classname__methodname() }
  220. ds_dwarf_method_class_prefix,
  221. { Simulate C++ debug information in DWARF. It can be used for }
  222. { debuggers, which do not support Pascal. }
  223. ds_dwarf_cpp,
  224. { emit line number information in LINNUM/LINNUM32 records, }
  225. { using the MS LINK format, for targets that use the OMF }
  226. { object format. This option is useful for compatibility with }
  227. { the Open Watcom Debugger and the Open Watcom Linker. Even }
  228. { though, they support and use dwarf debug information in the }
  229. { final executable file, they expect LINNUM records in the }
  230. { object modules for the line number information. }
  231. ds_dwarf_omf_linnum
  232. );
  233. tdebugswitches = set of tdebugswitch;
  234. { global target-specific switches }
  235. ttargetswitch = (ts_none,
  236. { generate code that results in smaller TOCs than normal (AIX) }
  237. ts_small_toc,
  238. { for the JVM target: generate integer array initializations via string
  239. constants in order to reduce the generated code size (Java routines
  240. are limited to 64kb of bytecode) }
  241. ts_compact_int_array_init,
  242. { for the JVM target: intialize enum fields in constructors with the
  243. enum class instance corresponding to ordinal value 0 (not done by
  244. default because this initialization can only be performed after the
  245. inherited constructors have run, and if they call a virtual method
  246. of the current class, then this virtual method may already have
  247. initialized that field with another value and the constructor
  248. initialization will result in data loss }
  249. ts_jvm_enum_field_init,
  250. { when automatically generating getters/setters for properties, use
  251. these strings as prefixes for the generated getters/setter names }
  252. ts_auto_getter_prefix,
  253. ts_auto_setter_predix,
  254. ts_thumb_interworking,
  255. { lowercase the first character of routine names, used to generate
  256. names that are compliant with Java coding standards from code
  257. written according to Delphi coding standards }
  258. ts_lowercase_proc_start,
  259. { initialise local variables on the JVM target so you won't get
  260. accidental uses of uninitialised values }
  261. ts_init_locals,
  262. { emit a CLD instruction before using the x86 string instructions }
  263. ts_cld,
  264. { increment BP before pushing it in the function prologue and decrement
  265. it after popping it in the function epilogue, iff the function is
  266. going to terminate with a far ret. Thus, the BP value pushed on the
  267. stack becomes odd if the function is far and even if the function is
  268. near. This allows walking the BP chain on the stack and e.g.
  269. obtaining a stack trace even if the program uses a mixture of near
  270. and far calls. This is also required for Win16 real mode, because it
  271. allows Windows to move code segments around (in order to defragment
  272. memory) and then walk through the stacks of all running programs and
  273. update the segment values of the segment that has moved. }
  274. ts_x86_far_procs_push_odd_bp
  275. );
  276. ttargetswitches = set of ttargetswitch;
  277. { adding a new entry here requires also adding the appropriate define in
  278. systemh.inc (FK)
  279. }
  280. tfeature = (
  281. f_heap,f_init_final,f_rtti,f_classes,f_exceptions,f_exitcode,
  282. f_ansistrings,f_widestrings,f_textio,f_consoleio,f_fileio,
  283. f_random,f_variants,f_objects,f_dynarrays,f_threading,f_commandargs,
  284. f_processes,f_stackcheck,f_dynlibs,f_softfpu,f_objectivec1,f_resources,
  285. f_unicodestring
  286. );
  287. tfeatures = set of tfeature;
  288. type
  289. { optimizer }
  290. toptimizerswitch = (cs_opt_none,
  291. cs_opt_level1,cs_opt_level2,cs_opt_level3,cs_opt_level4,
  292. cs_opt_regvar,cs_opt_uncertain,cs_opt_size,cs_opt_stackframe,
  293. cs_opt_peephole,cs_opt_loopunroll,cs_opt_tailrecursion,cs_opt_nodecse,
  294. cs_opt_nodedfa,cs_opt_loopstrength,cs_opt_scheduler,cs_opt_autoinline,cs_useebp,cs_userbp,
  295. cs_opt_reorder_fields,cs_opt_fastmath,
  296. { Allow removing expressions whose result is not used, even when this
  297. can change program behaviour (range check errors disappear,
  298. access violations due to invalid pointer derefences disappear, ...).
  299. Note: it does not (and must not) remove expressions that have
  300. explicit side-effects, only implicit side-effects (like the ones
  301. mentioned before) can disappear.
  302. }
  303. cs_opt_dead_values,
  304. { compiler checks for empty procedures/methods and removes calls to them if possible }
  305. cs_opt_remove_emtpy_proc,
  306. cs_opt_constant_propagate,
  307. cs_opt_dead_store_eliminate,
  308. cs_opt_forcenostackframe,
  309. cs_opt_use_load_modify_store
  310. );
  311. toptimizerswitches = set of toptimizerswitch;
  312. { whole program optimizer }
  313. twpoptimizerswitch = (
  314. cs_wpo_devirtualize_calls,cs_wpo_optimize_vmts,
  315. cs_wpo_symbol_liveness
  316. );
  317. twpoptimizerswitches = set of twpoptimizerswitch;
  318. { platform triplet style }
  319. ttripletstyle = (
  320. triplet_llvm
  321. { , triple_gnu }
  322. );
  323. { module flags (extra unit flags not in ppu header) }
  324. tmoduleflag = (
  325. mf_init, { unit has initialization section }
  326. mf_finalize, { unit has finalization section }
  327. mf_checkpointer_called, { Unit uses experimental checkpointer test code }
  328. mf_has_resourcestrings, { unit has resource string section }
  329. mf_release, { unit was compiled with -Ur option }
  330. mf_threadvars, { unit has threadvars }
  331. mf_has_stabs_debuginfo, { this unit has stabs debuginfo generated }
  332. mf_local_symtable, { this unit has a local symtable stored }
  333. mf_uses_variants, { this unit uses variants }
  334. mf_has_resourcefiles, { this unit has external resources (using $R directive)}
  335. mf_has_exports, { this module or a used unit has exports }
  336. mf_has_dwarf_debuginfo, { this unit has dwarf debuginfo generated }
  337. mf_wideinits, { this unit has winlike widestring typed constants }
  338. mf_classinits, { this unit has class constructors/destructors }
  339. mf_resstrinits, { this unit has string consts referencing resourcestrings }
  340. mf_i8086_far_code, { this unit uses an i8086 memory model with far code (i.e. medium, large or huge) }
  341. mf_i8086_far_data, { this unit uses an i8086 memory model with far data (i.e. compact or large) }
  342. mf_i8086_huge_data, { this unit uses an i8086 memory model with huge data (i.e. huge) }
  343. mf_i8086_cs_equals_ds, { this unit uses an i8086 memory model with CS=DS (i.e. tiny) }
  344. mf_i8086_ss_equals_ds, { this unit uses an i8086 memory model with SS=DS (i.e. tiny, small or medium) }
  345. mf_package_deny, { this unit must not be part of a package }
  346. mf_package_weak, { this unit may be completely contained in a package }
  347. mf_llvm, { compiled for LLVM code generator, not compatible with regular compiler because of different nodes in inline functions }
  348. mf_symansistr { symbols are ansistrings (for ppudump) }
  349. );
  350. tmoduleflags = set of tmoduleflag;
  351. type
  352. ttargetswitchinfo = record
  353. name: string[22];
  354. { target switch can have an arbitratry value, not only on/off }
  355. hasvalue: boolean;
  356. { target switch can be used only globally }
  357. isglobal: boolean;
  358. define: string[25];
  359. end;
  360. const
  361. OptimizerSwitchStr : array[toptimizerswitch] of string[18] = ('',
  362. 'LEVEL1','LEVEL2','LEVEL3','LEVEL4',
  363. 'REGVAR','UNCERTAIN','SIZE','STACKFRAME',
  364. 'PEEPHOLE','LOOPUNROLL','TAILREC','CSE',
  365. 'DFA','STRENGTH','SCHEDULE','AUTOINLINE','USEEBP','USERBP',
  366. 'ORDERFIELDS','FASTMATH','DEADVALUES','REMOVEEMPTYPROCS',
  367. 'CONSTPROP',
  368. 'DEADSTORE','FORCENOSTACKFRAME','USELOADMODIFYSTORE'
  369. );
  370. WPOptimizerSwitchStr : array [twpoptimizerswitch] of string[14] = (
  371. 'DEVIRTCALLS','OPTVMTS','SYMBOLLIVENESS'
  372. );
  373. DebugSwitchStr : array[tdebugswitch] of string[22] = ('',
  374. 'DWARFSETS','STABSABSINCLUDES','DWARFMETHODCLASSPREFIX','DWARFCPP','DWARFOMFLINNUM');
  375. TargetSwitchStr : array[ttargetswitch] of ttargetswitchinfo = (
  376. (name: ''; hasvalue: false; isglobal: true ; define: ''),
  377. (name: 'SMALLTOC'; hasvalue: false; isglobal: true ; define: ''),
  378. (name: 'COMPACTINTARRAYINIT'; hasvalue: false; isglobal: true ; define: ''),
  379. (name: 'ENUMFIELDINIT'; hasvalue: false; isglobal: true ; define: ''),
  380. (name: 'AUTOGETTERPREFIX'; hasvalue: true ; isglobal: false; define: ''),
  381. (name: 'AUTOSETTERPREFIX'; hasvalue: true ; isglobal: false; define: ''),
  382. (name: 'THUMBINTERWORKING'; hasvalue: false; isglobal: true ; define: ''),
  383. (name: 'LOWERCASEPROCSTART'; hasvalue: false; isglobal: true ; define: ''),
  384. (name: 'INITLOCALS'; hasvalue: false; isglobal: true ; define: ''),
  385. (name: 'CLD'; hasvalue: false; isglobal: true ; define: 'FPC_ENABLED_CLD'),
  386. (name: 'FARPROCSPUSHODDBP'; hasvalue: false; isglobal: false; define: 'FPC_FAR_PROCS_PUSH_ODD_BP')
  387. );
  388. { switches being applied to all CPUs at the given level }
  389. genericlevel1optimizerswitches = [cs_opt_level1,cs_opt_peephole];
  390. genericlevel2optimizerswitches = [cs_opt_level2,cs_opt_remove_emtpy_proc];
  391. genericlevel3optimizerswitches = [cs_opt_level3,cs_opt_constant_propagate,cs_opt_nodedfa,cs_opt_loopunroll];
  392. genericlevel4optimizerswitches = [cs_opt_level4,cs_opt_reorder_fields,cs_opt_dead_values,cs_opt_fastmath];
  393. { whole program optimizations whose information generation requires
  394. information from all loaded units
  395. }
  396. WPOptimizationsNeedingAllUnitInfo = [cs_wpo_devirtualize_calls,cs_wpo_optimize_vmts];
  397. featurestr : array[tfeature] of string[14] = (
  398. 'HEAP','INITFINAL','RTTI','CLASSES','EXCEPTIONS','EXITCODE',
  399. 'ANSISTRINGS','WIDESTRINGS','TEXTIO','CONSOLEIO','FILEIO',
  400. 'RANDOM','VARIANTS','OBJECTS','DYNARRAYS','THREADING','COMMANDARGS',
  401. 'PROCESSES','STACKCHECK','DYNLIBS','SOFTFPU','OBJECTIVEC1','RESOURCES',
  402. 'UNICODESTRINGS'
  403. );
  404. type
  405. { Switches which can be changed by a mode (fpc,tp7,delphi) }
  406. tmodeswitch = (m_none,
  407. { generic }
  408. m_fpc,m_objfpc,m_delphi,m_tp7,m_mac,m_iso,m_extpas,
  409. {$ifdef gpc_mode}m_gpc,{$endif}
  410. { more specific }
  411. m_class, { delphi class model }
  412. m_objpas, { load objpas unit }
  413. m_result, { result in functions }
  414. m_string_pchar, { pchar 2 string conversion }
  415. m_cvar_support, { cvar variable directive }
  416. m_nested_comment, { nested comments }
  417. m_tp_procvar, { tp style procvars (no @ needed) }
  418. m_mac_procvar, { macpas style procvars }
  419. m_repeat_forward, { repeating forward declarations is needed }
  420. m_pointer_2_procedure, { allows the assignement of pointers to
  421. procedure variables }
  422. m_autoderef, { does auto dereferencing of struct. vars }
  423. m_initfinal, { initialization/finalization for units }
  424. m_default_ansistring, { ansistring turned on by default }
  425. m_out, { support the calling convention OUT }
  426. m_default_para, { support default parameters }
  427. m_hintdirective, { support hint directives }
  428. m_duplicate_names, { allow locals/paras to have duplicate names of globals }
  429. m_property, { allow properties }
  430. m_default_inline, { allow inline proc directive }
  431. m_except, { allow exception-related keywords }
  432. m_objectivec1, { support interfacing with Objective-C (1.0) }
  433. m_objectivec2, { support interfacing with Objective-C (2.0) }
  434. m_nested_procvars, { support nested procedural variables }
  435. m_non_local_goto, { support non local gotos (like iso pascal) }
  436. m_advanced_records, { advanced record syntax with visibility sections, methods and properties }
  437. m_isolike_unary_minus, { unary minus like in iso pascal: same precedence level as binary minus/plus }
  438. m_systemcodepage, { use system codepage as compiler codepage by default, emit ansistrings with system codepage }
  439. m_final_fields, { allows declaring fields as "final", which means they must be initialised
  440. in the (class) constructor and are constant from then on (same as final
  441. fields in Java) }
  442. m_default_unicodestring, { makes the default string type in $h+ mode unicodestring rather than
  443. ansistring; similarly, char becomes unicodechar rather than ansichar }
  444. m_type_helpers, { allows the declaration of "type helper" for all supported types
  445. (primitive types, records, classes, interfaces) }
  446. m_blocks, { support for http://en.wikipedia.org/wiki/Blocks_(C_language_extension) }
  447. m_isolike_io, { I/O as it required by an ISO compatible compiler }
  448. m_isolike_program_para, { program parameters as it required by an ISO compatible compiler }
  449. m_isolike_mod, { mod operation as it is required by an iso compatible compiler }
  450. m_array_operators { use Delphi compatible array operators instead of custom ones ("+") }
  451. );
  452. tmodeswitches = set of tmodeswitch;
  453. const
  454. alllanguagemodes = [m_fpc,m_objfpc,m_delphi,m_tp7,m_mac,m_iso,m_extpas];
  455. type
  456. { Application types (platform specific) }
  457. tapptype = (
  458. app_none,
  459. app_native, { native for Windows and NativeNT targets }
  460. app_gui, { graphic user-interface application }
  461. app_cui, { console application }
  462. app_fs, { full-screen type application (OS/2 and EMX only) }
  463. app_tool, { tool application, (MPW tool for MacOS, MacOS only) }
  464. app_arm7, { for Nintendo DS target }
  465. app_arm9, { for Nintendo DS target }
  466. app_bundle, { dynamically loadable bundle, Darwin only }
  467. app_com { DOS .COM file }
  468. );
  469. { interface types }
  470. tinterfacetypes = (
  471. it_interfacecom,
  472. it_interfacecorba,
  473. it_interfacejava
  474. );
  475. { currently parsed block type }
  476. tblock_type = (
  477. bt_none, { not assigned }
  478. bt_general, { default }
  479. bt_type, { type section }
  480. bt_const, { const section }
  481. bt_const_type, { const part of type. e.g.: ": Integer = 1" }
  482. bt_var, { variable declaration }
  483. bt_var_type, { type of variable }
  484. bt_except, { except section }
  485. bt_body { procedure body }
  486. );
  487. { Temp types }
  488. ttemptype = (tt_none,
  489. { free temp location, can be reused for something else }
  490. tt_free,
  491. { temp location that will be freed when ttgobj.UnGetTemp/
  492. ttgobj.UnGetIfTemp is called on it }
  493. tt_normal,
  494. { temp location that will not be freed; if it has to be
  495. freed, first ttgobj.changetemptype() it to tt_normal,
  496. or call ttgobj.UnGetLocal() instead (for local variables,
  497. since they are also persistent temps) }
  498. tt_persistent,
  499. { temp location that can never be reused anymore, even
  500. after it has been freed }
  501. tt_noreuse,
  502. { freed version of the above }
  503. tt_freenoreuse,
  504. { temp location that has been allocated by the register
  505. allocator and that can be reallocated only by the
  506. register allocator }
  507. tt_regallocator,
  508. { freed version of the above }
  509. tt_freeregallocator);
  510. ttemptypeset = set of ttemptype;
  511. { calling convention for tprocdef and tprocvardef }
  512. tproccalloption=(pocall_none,
  513. { procedure uses C styled calling }
  514. pocall_cdecl,
  515. { C++ calling conventions }
  516. pocall_cppdecl,
  517. { Far16 for OS/2 }
  518. pocall_far16,
  519. { Old style FPC default calling }
  520. pocall_oldfpccall,
  521. { Procedure has compiler magic}
  522. pocall_internproc,
  523. { procedure is a system call, applies e.g. to MorphOS and PalmOS }
  524. pocall_syscall,
  525. { pascal standard left to right }
  526. pocall_pascal,
  527. { procedure uses register (fastcall) calling }
  528. pocall_register,
  529. { safe call calling conventions }
  530. pocall_safecall,
  531. { procedure uses stdcall call }
  532. pocall_stdcall,
  533. { Special calling convention for cpus without a floating point
  534. unit. Floating point numbers are passed in integer registers
  535. instead of floating point registers. Depending on the other
  536. available calling conventions available for the cpu
  537. this replaces either pocall_fastcall or pocall_stdcall.
  538. }
  539. pocall_softfloat,
  540. { Metrowerks Pascal. Special case on Mac OS (X): passes all }
  541. { constant records by reference. }
  542. pocall_mwpascal,
  543. { Special interrupt handler for embedded systems }
  544. pocall_interrupt,
  545. { Directive for arm: pass floating point values in (v)float registers
  546. regardless of the actual calling conventions }
  547. pocall_hardfloat,
  548. { for x86-64: force sysv ABI (Pascal resp. C) }
  549. pocall_sysv_abi_default,
  550. pocall_sysv_abi_cdecl,
  551. { for x86-64: forces Microsoft ABI (Pascal resp. C) }
  552. pocall_ms_abi_default,
  553. pocall_ms_abi_cdecl,
  554. { for x86-64: Microsoft's "vectorcall" ABI }
  555. pocall_vectorcall
  556. );
  557. tproccalloptions = set of tproccalloption;
  558. const
  559. proccalloptionStr : array[tproccalloption] of string[16]=('',
  560. 'CDecl',
  561. 'CPPDecl',
  562. 'Far16',
  563. 'OldFPCCall',
  564. 'InternProc',
  565. 'SysCall',
  566. 'Pascal',
  567. 'Register',
  568. 'SafeCall',
  569. 'StdCall',
  570. 'SoftFloat',
  571. 'MWPascal',
  572. 'Interrupt',
  573. 'HardFloat',
  574. 'SysV_ABI_Default',
  575. 'SysV_ABI_CDecl',
  576. 'MS_ABI_Default',
  577. 'MS_ABI_CDecl',
  578. 'VectorCall'
  579. );
  580. { Default calling convention }
  581. {$if defined(i8086)}
  582. pocall_default = pocall_pascal;
  583. {$elseif defined(i386) or defined(x86_64)}
  584. pocall_default = pocall_register;
  585. {$elseif defined(m68k)}
  586. pocall_default = pocall_register;
  587. {$else}
  588. pocall_default = pocall_stdcall;
  589. {$endif}
  590. cstylearrayofconst = [pocall_cdecl,pocall_cppdecl,pocall_mwpascal,pocall_sysv_abi_cdecl,pocall_ms_abi_cdecl];
  591. modeswitchstr : array[tmodeswitch] of string[18] = ('',
  592. '','','','','','','',
  593. {$ifdef gpc_mode}'',{$endif}
  594. { more specific }
  595. 'CLASS',
  596. 'OBJPAS',
  597. 'RESULT',
  598. 'PCHARTOSTRING',
  599. 'CVAR',
  600. 'NESTEDCOMMENTS',
  601. 'CLASSICPROCVARS',
  602. 'MACPROCVARS',
  603. 'REPEATFORWARD',
  604. 'POINTERTOPROCVAR',
  605. 'AUTODEREF',
  606. 'INITFINAL',
  607. 'ANSISTRINGS',
  608. 'OUT',
  609. 'DEFAULTPARAMETERS',
  610. 'HINTDIRECTIVE',
  611. 'DUPLICATELOCALS',
  612. 'PROPERTIES',
  613. 'ALLOWINLINE',
  614. 'EXCEPTIONS',
  615. 'OBJECTIVEC1',
  616. 'OBJECTIVEC2',
  617. 'NESTEDPROCVARS',
  618. 'NONLOCALGOTO',
  619. 'ADVANCEDRECORDS',
  620. 'ISOUNARYMINUS',
  621. 'SYSTEMCODEPAGE',
  622. 'FINALFIELDS',
  623. 'UNICODESTRINGS',
  624. 'TYPEHELPERS',
  625. 'CBLOCKS',
  626. 'ISOIO',
  627. 'ISOPROGRAMPARAS',
  628. 'ISOMOD',
  629. 'ARRAYOPERATORS'
  630. );
  631. type
  632. tprocinfoflag=(
  633. { procedure has at least one assembler block }
  634. pi_has_assembler_block,
  635. { procedure does a call }
  636. pi_do_call,
  637. { procedure has a try statement = no register optimization }
  638. pi_uses_exceptions,
  639. { procedure is declared as @var(assembler), don't optimize}
  640. pi_is_assembler,
  641. { procedure contains data which needs to be finalized }
  642. pi_needs_implicit_finally,
  643. { procedure has the implicit try..finally generated }
  644. pi_has_implicit_finally,
  645. { procedure uses fpu}
  646. pi_uses_fpu,
  647. { procedure uses GOT for PIC code }
  648. pi_needs_got,
  649. { references var/proc/type/const in static symtable,
  650. i.e. not allowed for inlining from other units }
  651. pi_uses_static_symtable,
  652. { set if the procedure has to push parameters onto the stack }
  653. pi_has_stackparameter,
  654. { set if the procedure has at least one label }
  655. pi_has_label,
  656. { calls itself recursive }
  657. pi_is_recursive,
  658. { stack frame optimization not possible (only on x86 probably) }
  659. pi_needs_stackframe,
  660. { set if the procedure has at least one register saved on the stack }
  661. pi_has_saved_regs,
  662. { dfa was generated for this proc }
  663. pi_dfaavailable,
  664. { subroutine contains interprocedural used labels }
  665. pi_has_interproclabel,
  666. { subroutine has unwind info (win64) }
  667. pi_has_unwind_info,
  668. { subroutine contains interprocedural gotos }
  669. pi_has_global_goto,
  670. { subroutine contains inherited call }
  671. pi_has_inherited,
  672. { subroutine has nested exit }
  673. pi_has_nested_exit,
  674. { allocates memory on stack, so stack is unbalanced on exit }
  675. pi_has_stack_allocs,
  676. { set if the stack frame of the procedure is estimated }
  677. pi_estimatestacksize,
  678. { the routine calls a C-style varargs function }
  679. pi_calls_c_varargs,
  680. { the routine has an open array parameter,
  681. for i8086 cpu huge memory model,
  682. as this changes SP register it requires special handling
  683. to restore DS segment register }
  684. pi_has_open_array_parameter
  685. );
  686. tprocinfoflags=set of tprocinfoflag;
  687. type
  688. { float types -- warning, this enum/order is used internally by the RTL
  689. as well in rtl/inc/real2str.inc }
  690. tfloattype = (
  691. s32real,s64real,s80real,sc80real { the C "long double" type on x86 },
  692. s64comp,s64currency,s128real
  693. );
  694. type
  695. { register allocator live range extension direction }
  696. TRADirection = (rad_forward, rad_backwards, rad_backwards_reinit);
  697. type
  698. TIDString = string[maxidlen];
  699. tnormalset = set of byte; { 256 elements set }
  700. pnormalset = ^tnormalset;
  701. pboolean = ^boolean;
  702. pdouble = ^double;
  703. pbyte = ^byte;
  704. pword = ^word;
  705. plongint = ^longint;
  706. plongintarray = plongint;
  707. pfileposinfo = ^tfileposinfo;
  708. tfileposinfo = record
  709. { if types of column or fileindex are changed, modify tcompilerppufile.putposinfo }
  710. line : longint;
  711. column : word;
  712. fileindex : word;
  713. moduleindex : word;
  714. end;
  715. {$ifndef xFPC}
  716. type
  717. pguid = ^tguid;
  718. tguid = packed record
  719. D1: LongWord;
  720. D2: Word;
  721. D3: Word;
  722. D4: array[0..7] of Byte;
  723. end;
  724. {$endif}
  725. tstringencoding = Word;
  726. tcodepagestring = string[20];
  727. const
  728. { link options }
  729. link_none = $0;
  730. link_always = $1;
  731. link_static = $2;
  732. link_smart = $4;
  733. link_shared = $8;
  734. type
  735. { a message state }
  736. tmsgstate = (
  737. ms_on := 1,
  738. ms_off := 2,
  739. ms_error := 3,
  740. ms_on_global := $11, // turn on output
  741. ms_off_global := $22, // turn off output
  742. ms_error_global := $33 // cast to error
  743. );
  744. const
  745. { Mask for current value of message state }
  746. ms_local_mask = $0f;
  747. { Mask for global value of message state
  748. that needs to be restored when changing units }
  749. ms_global_mask = $f0;
  750. { Shift used to convert global to local message state }
  751. ms_shift = 4;
  752. type
  753. pmessagestaterecord = ^tmessagestaterecord;
  754. tmessagestaterecord = record
  755. next : pmessagestaterecord;
  756. value : longint;
  757. state : tmsgstate;
  758. end;
  759. type
  760. tx86memorymodel = (mm_tiny,mm_small,mm_medium,mm_compact,mm_large,mm_huge);
  761. const
  762. x86memorymodelstr : array[tx86memorymodel] of string[7]=(
  763. 'TINY',
  764. 'SMALL',
  765. 'MEDIUM',
  766. 'COMPACT',
  767. 'LARGE',
  768. 'HUGE');
  769. { hide Sysutils.ExecuteProcess in units using this one after SysUtils}
  770. const
  771. ExecuteProcess = 'Do not use' deprecated 'Use cfileutil.RequotedExecuteProcess instead, ExecuteProcess cannot deal with single quotes as used by Unix command lines';
  772. implementation
  773. end.