globtype.pas 29 KB

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