symconst.pas 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Florian Klaempfl, Pierre Muller
  4. Symbol table constants
  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 symconst;
  19. {$i fpcdefs.inc}
  20. interface
  21. uses
  22. globtype;
  23. const
  24. def_alignment = 4;
  25. { if you change one of the following contants, }
  26. { you have also to change the typinfo unit}
  27. { and the rtl/i386,template/rttip.inc files }
  28. tkUnknown = 0;
  29. tkInteger = 1;
  30. tkChar = 2;
  31. tkEnumeration = 3;
  32. tkFloat = 4;
  33. tkSet = 5;
  34. tkMethod = 6;
  35. tkSString = 7;
  36. tkString = tkSString;
  37. tkLString = 8;
  38. {$ifdef ansistring_bits}
  39. tkA32String = 9;
  40. {$else}
  41. tkAString = 9;
  42. {$endif}
  43. tkWString = 10;
  44. tkVariant = 11;
  45. tkArray = 12;
  46. tkRecord = 13;
  47. tkInterface= 14;
  48. tkClass = 15;
  49. tkObject = 16;
  50. tkWChar = 17;
  51. tkBool = 18;
  52. tkInt64 = 19;
  53. tkQWord = 20;
  54. tkDynArray = 21;
  55. tkInterfaceCorba = 22;
  56. {$ifdef ansistring_bits}
  57. tkA16string = 23;
  58. tkA64string = 24;
  59. {$endif}
  60. otSByte = 0;
  61. otUByte = 1;
  62. otSWord = 2;
  63. otUWord = 3;
  64. otSLong = 4;
  65. otULong = 5;
  66. ftSingle = 0;
  67. ftDouble = 1;
  68. ftExtended = 2;
  69. ftComp = 3;
  70. ftCurr = 4;
  71. ftFloat128 = 5;
  72. mkProcedure= 0;
  73. mkFunction = 1;
  74. mkConstructor = 2;
  75. mkDestructor = 3;
  76. mkClassProcedure= 4;
  77. mkClassFunction = 5;
  78. pfvar = 1;
  79. pfConst = 2;
  80. pfArray = 4;
  81. pfAddress = 8;
  82. pfReference= 16;
  83. pfOut = 32;
  84. unknown_level = 0;
  85. main_program_level = 1;
  86. normal_function_level = 2;
  87. { implicit parameter positions, normal parameters start at 10
  88. and will increase with 10 for each parameter. The high parameters
  89. will be inserted with n+1 }
  90. paranr_parentfp = 1;
  91. paranr_result = 2;
  92. paranr_self = 3;
  93. paranr_vmt = 4;
  94. paranr_syscall_sysv = 9;
  95. paranr_syscall_legacy = high(word)-2;
  96. paranr_result_leftright = high(word)-1;
  97. type
  98. { Deref entry options }
  99. tdereftype = (deref_nil,
  100. deref_sym,
  101. deref_def,
  102. deref_aktrecord,
  103. deref_aktstatic,
  104. deref_aktglobal,
  105. deref_aktlocal,
  106. deref_aktpara,
  107. deref_unit,
  108. deref_record,
  109. deref_local,
  110. deref_para,
  111. deref_parent_object
  112. );
  113. { symbol options }
  114. tsymoption=(sp_none,
  115. sp_public,
  116. sp_private,
  117. sp_published,
  118. sp_protected,
  119. sp_static,
  120. sp_hint_deprecated,
  121. sp_hint_platform,
  122. sp_hint_library,
  123. sp_hint_unimplemented,
  124. sp_has_overloaded,
  125. sp_internal { internal symbol, not reported as unused }
  126. );
  127. tsymoptions=set of tsymoption;
  128. { flags for a definition }
  129. tdefoption=(df_none,
  130. { init data has been generated }
  131. df_has_inittable,
  132. { rtti data has been generated }
  133. df_has_rttitable,
  134. { type is unique, i.e. declared with type = type <tdef>; }
  135. df_unique
  136. );
  137. tdefoptions=set of tdefoption;
  138. { tsymlist entry types }
  139. tsltype = (sl_none,
  140. sl_load,
  141. sl_call,
  142. sl_subscript,
  143. sl_vec,
  144. sl_typeconv,
  145. sl_absolutetype
  146. );
  147. { base types for orddef }
  148. tbasetype = (
  149. uvoid,
  150. u8bit,u16bit,u32bit,u64bit,
  151. s8bit,s16bit,s32bit,s64bit,
  152. bool8bit,bool16bit,bool32bit,
  153. uchar,uwidechar,scurrency
  154. );
  155. { float types }
  156. tfloattype = (
  157. s32real,s64real,s80real,
  158. s64comp,s64currency,s128real
  159. );
  160. { string types }
  161. tstringtype = (st_default,
  162. st_shortstring,
  163. st_longstring,
  164. {$ifndef ansistring_bits}
  165. st_ansistring,
  166. {$else}
  167. st_ansistring16,
  168. st_ansistring32,
  169. st_ansistring64,
  170. {$endif}
  171. st_widestring
  172. );
  173. { set types }
  174. tsettype = (
  175. normset,smallset,varset
  176. );
  177. tvarianttype = (
  178. vt_normalvariant,vt_olevariant
  179. );
  180. tcallercallee = (callerside,calleeside);
  181. { basic type for tprocdef and tprocvardef }
  182. tproctypeoption=(potype_none,
  183. potype_proginit, { Program initialization }
  184. potype_unitinit, { unit initialization }
  185. potype_unitfinalize, { unit finalization }
  186. potype_constructor, { Procedure is a constructor }
  187. potype_destructor, { Procedure is a destructor }
  188. potype_operator { Procedure defines an operator }
  189. );
  190. tproctypeoptions=set of tproctypeoption;
  191. { other options for tprocdef and tprocvardef }
  192. tprocoption=(po_none,
  193. po_classmethod, { class method }
  194. po_virtualmethod, { Procedure is a virtual method }
  195. po_abstractmethod, { Procedure is an abstract method }
  196. po_staticmethod, { static method }
  197. po_overridingmethod, { method with override directive }
  198. po_methodpointer, { method pointer, only in procvardef, also used for 'with object do' }
  199. po_interrupt, { Procedure is an interrupt handler }
  200. po_iocheck, { IO checking should be done after a call to the procedure }
  201. po_assembler, { Procedure is written in assembler }
  202. po_msgstr, { method for string message handling }
  203. po_msgint, { method for int message handling }
  204. po_exports, { Procedure has export directive (needed for OS/2) }
  205. po_external, { Procedure is external (in other object or lib)}
  206. po_overload, { procedure is declared with overload directive }
  207. po_varargs, { printf like arguments }
  208. po_internconst, { procedure has constant evaluator intern }
  209. { flag that only the address of a method is returned and not a full methodpointer }
  210. po_addressonly,
  211. { procedure is exported }
  212. po_public,
  213. { calling convention is specified explicitly }
  214. po_hascallingconvention,
  215. { reintroduce flag }
  216. po_reintroduce,
  217. { location of parameters is given explicitly as it is necessary for some syscall
  218. conventions like that one of MorphOS }
  219. po_explicitparaloc,
  220. { no stackframe will be generated, used by lowlevel assembler like get_frame }
  221. po_nostackframe,
  222. po_has_mangledname,
  223. po_has_public_name,
  224. po_forward,
  225. po_global,
  226. po_has_inlininginfo,
  227. { The two different kind of syscalls on MorphOS }
  228. po_syscall_legacy,
  229. po_syscall_sysv
  230. );
  231. tprocoptions=set of tprocoption;
  232. { options for objects and classes }
  233. tobjectdeftype = (odt_none,
  234. odt_class,
  235. odt_object,
  236. odt_interfacecom,
  237. odt_interfacecorba,
  238. odt_cppclass,
  239. odt_dispinterface
  240. );
  241. { options for objects and classes }
  242. tobjectoption=(oo_none,
  243. oo_is_forward, { the class is only a forward declared yet }
  244. oo_has_virtual, { the object/class has virtual methods }
  245. oo_has_private,
  246. oo_has_protected,
  247. oo_has_constructor, { the object/class has a constructor }
  248. oo_has_destructor, { the object/class has a destructor }
  249. oo_has_vmt, { the object/class has a vmt }
  250. oo_has_msgstr,
  251. oo_has_msgint,
  252. oo_can_have_published,{ the class has rtti, i.e. you can publish properties }
  253. oo_has_default_property
  254. );
  255. tobjectoptions=set of tobjectoption;
  256. { options for properties }
  257. tpropertyoption=(ppo_none,
  258. ppo_indexed,
  259. ppo_defaultproperty,
  260. ppo_stored,
  261. ppo_hasparameters,
  262. ppo_is_override
  263. );
  264. tpropertyoptions=set of tpropertyoption;
  265. { options for variables }
  266. tvaroption=(vo_none,
  267. vo_is_C_var,
  268. vo_is_external,
  269. vo_is_dll_var,
  270. vo_is_thread_var,
  271. vo_has_local_copy,
  272. vo_is_const, { variable is declared as const (parameter) and can't be written to }
  273. vo_is_exported,
  274. vo_is_high_para,
  275. vo_is_funcret,
  276. vo_is_self,
  277. vo_is_vmt,
  278. vo_is_result, { special result variable }
  279. vo_is_parentfp,
  280. vo_is_loop_counter, { used to detect assignments to loop counter }
  281. vo_is_hidden_para,
  282. vo_has_explicit_paraloc,
  283. vo_is_syscall_lib,
  284. vo_has_mangledname
  285. );
  286. tvaroptions=set of tvaroption;
  287. { register variable }
  288. tvarregable=(vr_none,
  289. vr_intreg,
  290. vr_fpureg,
  291. vr_mmreg
  292. );
  293. { types of the symtables }
  294. tsymtabletype = (abstractsymtable,
  295. globalsymtable,staticsymtable,
  296. objectsymtable,recordsymtable,
  297. localsymtable,parasymtable,
  298. withsymtable,stt_exceptsymtable
  299. );
  300. { definition contains the informations about a type }
  301. tdeftype = (abstractdef,arraydef,recorddef,pointerdef,orddef,
  302. stringdef,enumdef,procdef,objectdef,errordef,
  303. filedef,formaldef,setdef,procvardef,floatdef,
  304. classrefdef,forwarddef,variantdef);
  305. { possible types for symtable entries }
  306. tsymtyp = (abstractsym,globalvarsym,localvarsym,paravarsym,fieldvarsym,
  307. typesym,procsym,unitsym,constsym,enumsym,typedconstsym,
  308. errorsym,syssym,labelsym,absolutevarsym,propertysym,
  309. macrosym,rttisym);
  310. { State of the variable, if it's declared, assigned or used }
  311. tvarstate=(vs_none,
  312. vs_declared,vs_assigned,vs_used
  313. );
  314. tvarspez = (vs_value,vs_const,vs_var,vs_out);
  315. absolutetyp = (tovar,toasm,toaddr);
  316. tconsttyp = (constnone,
  317. constord,conststring,constreal,
  318. constset,constpointer,constnil,
  319. constresourcestring,constwstring,constguid
  320. );
  321. { RTTI information to store }
  322. trttitype = (
  323. fullrtti,initrtti
  324. );
  325. { The order is from low priority to high priority,
  326. Note: the operators > and < are used on this list }
  327. tequaltype = (
  328. te_incompatible,
  329. te_convert_operator,
  330. te_convert_l3, { compatible conversion with possible loss of data }
  331. te_convert_l2, { compatible less prefered conversion }
  332. te_convert_l1, { compatible conversion }
  333. te_equal, { the definitions are equal }
  334. te_exact
  335. );
  336. {$ifdef GDB}
  337. type
  338. tdefstabstatus = (
  339. stab_state_unused,
  340. stab_state_used,
  341. stab_state_writing,
  342. stab_state_written
  343. );
  344. const
  345. tagtypes : Set of tdeftype =
  346. [recorddef,enumdef,
  347. {$IfNDef GDBKnowsStrings}
  348. stringdef,
  349. {$EndIf not GDBKnowsStrings}
  350. {$IfNDef GDBKnowsFiles}
  351. filedef,
  352. {$EndIf not GDBKnowsFiles}
  353. objectdef];
  354. {$endif GDB}
  355. const
  356. clearstack_pocalls = [
  357. pocall_cdecl,pocall_cppdecl,pocall_syscall
  358. ];
  359. pushleftright_pocalls : tproccalloptions = [pocall_register,pocall_pascal];
  360. SymTypeName : array[tsymtyp] of string[12] = (
  361. 'abstractsym','globalvar','localvar','paravar','fieldvar',
  362. 'type','proc','unit','const','enum','typed const',
  363. 'errorsym','system sym','label','absolutevar','property',
  364. 'macrosym','rttisym'
  365. );
  366. DefTypeName : array[tdeftype] of string[12] = (
  367. 'abstractdef','arraydef','recorddef','pointerdef','orddef',
  368. 'stringdef','enumdef','procdef','objectdef','errordef',
  369. 'filedef','formaldef','setdef','procvardef','floatdef',
  370. 'classrefdef','forwarddef','variantdef'
  371. );
  372. EqualTypeName : array[tequaltype] of string[16] = (
  373. 'incompatible','convert_operator','convert_l3','convert_l2',
  374. 'convert_l1','equal','exact'
  375. );
  376. implementation
  377. initialization
  378. if pocall_default in [pocall_register,pocall_internproc] then
  379. include(pushleftright_pocalls,pocall_compilerproc);
  380. end.
  381. {
  382. $Log$
  383. Revision 1.98 2005-01-05 02:31:06 karoly
  384. * fixed SysV syscall support (MorphOS)
  385. Revision 1.97 2005/01/04 17:40:33 karoly
  386. + sysv style syscalls added for MorphOS
  387. Revision 1.96 2004/12/05 12:28:11 peter
  388. * procvar handling for tp procvar mode fixed
  389. * proc to procvar moved from addrnode to typeconvnode
  390. * inlininginfo is now allocated only for inline routines that
  391. can be inlined, introduced a new flag po_has_inlining_info
  392. Revision 1.95 2004/11/19 08:17:02 michael
  393. * Split po_public into po_public and po_global (Peter)
  394. Revision 1.94 2004/11/17 22:21:35 peter
  395. mangledname setting moved to place after the complete proc declaration is read
  396. import generation moved to place where body is also parsed (still gives problems with win32)
  397. Revision 1.93 2004/11/15 23:35:31 peter
  398. * tparaitem removed, use tparavarsym instead
  399. * parameter order is now calculated from paranr value in tparavarsym
  400. Revision 1.92 2004/11/08 22:09:59 peter
  401. * tvarsym splitted
  402. Revision 1.91 2004/11/01 10:33:01 peter
  403. * symlist typeconv for absolute fixed
  404. Revision 1.90 2004/10/24 20:01:08 peter
  405. * remove saveregister calling convention
  406. Revision 1.89 2004/10/08 17:09:43 peter
  407. * tvarsym.varregable added, split vo_regable from varoptions
  408. Revision 1.88 2004/09/13 20:30:22 peter
  409. * vo_is_loop_counter added
  410. Revision 1.87 2004/08/25 15:57:04 peter
  411. * allow only 1 default property
  412. Revision 1.86 2004/07/09 22:17:32 peter
  413. * revert has_localst patch
  414. * replace aktstaticsymtable/aktglobalsymtable with current_module
  415. Revision 1.85 2004/07/06 19:52:04 peter
  416. * fix storing of localst in ppu
  417. Revision 1.84 2004/06/20 08:55:30 florian
  418. * logs truncated
  419. Revision 1.83 2004/06/16 20:07:09 florian
  420. * dwarf branch merged
  421. Revision 1.82 2004/05/23 14:32:17 peter
  422. * tprocinfoflag moved to globtype
  423. Revision 1.81 2004/04/29 19:56:37 daniel
  424. * Prepare compiler infrastructure for multiple ansistring types
  425. Revision 1.80 2004/04/28 15:19:03 florian
  426. + syscall directive support for MorphOS added
  427. Revision 1.79 2004/04/18 15:22:24 florian
  428. + location support for arguments, currently PowerPC/MorphOS only
  429. }