psystem.pas 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Florian Klaempfl
  4. Load the system unit, create required defs for systemunit
  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 psystem;
  19. {$i fpcdefs.inc}
  20. interface
  21. uses
  22. symbase;
  23. procedure insertinternsyms(p : tsymtable);
  24. procedure insert_intern_types(p : tsymtable);
  25. procedure readconstdefs;
  26. procedure createconstdefs;
  27. implementation
  28. uses
  29. globals,
  30. symconst,symtype,symsym,symdef,symtable,
  31. ninl;
  32. procedure insertinternsyms(p : tsymtable);
  33. {
  34. all intern procedures for the system unit
  35. }
  36. begin
  37. p.insert(tsyssym.create('Concat',in_concat_x));
  38. p.insert(tsyssym.create('Write',in_write_x));
  39. p.insert(tsyssym.create('WriteLn',in_writeln_x));
  40. p.insert(tsyssym.create('Assigned',in_assigned_x));
  41. p.insert(tsyssym.create('Read',in_read_x));
  42. p.insert(tsyssym.create('ReadLn',in_readln_x));
  43. p.insert(tsyssym.create('Ofs',in_ofs_x));
  44. p.insert(tsyssym.create('SizeOf',in_sizeof_x));
  45. p.insert(tsyssym.create('TypeOf',in_typeof_x));
  46. p.insert(tsyssym.create('Low',in_low_x));
  47. p.insert(tsyssym.create('High',in_high_x));
  48. p.insert(tsyssym.create('Seg',in_seg_x));
  49. p.insert(tsyssym.create('Ord',in_ord_x));
  50. p.insert(tsyssym.create('Pred',in_pred_x));
  51. p.insert(tsyssym.create('Succ',in_succ_x));
  52. p.insert(tsyssym.create('Exclude',in_exclude_x_y));
  53. p.insert(tsyssym.create('Include',in_include_x_y));
  54. p.insert(tsyssym.create('Break',in_break));
  55. p.insert(tsyssym.create('Exit',in_exit));
  56. p.insert(tsyssym.create('Continue',in_continue));
  57. p.insert(tsyssym.create('Dec',in_dec_x));
  58. p.insert(tsyssym.create('Inc',in_inc_x));
  59. p.insert(tsyssym.create('Str',in_str_x_string));
  60. p.insert(tsyssym.create('Assert',in_assert_x_y));
  61. p.insert(tsyssym.create('Val',in_val_x));
  62. p.insert(tsyssym.create('Addr',in_addr_x));
  63. p.insert(tsyssym.create('TypeInfo',in_typeinfo_x));
  64. p.insert(tsyssym.create('SetLength',in_setlength_x));
  65. p.insert(tsyssym.create('Finalize',in_finalize_x));
  66. p.insert(tsyssym.create('Length',in_length_x));
  67. p.insert(tsyssym.create('New',in_new_x));
  68. p.insert(tsyssym.create('Dispose',in_dispose_x));
  69. end;
  70. procedure insert_intern_types(p : tsymtable);
  71. {
  72. all the types inserted into the system unit
  73. }
  74. function addtype(const s:string;const t:ttype):ttypesym;
  75. begin
  76. result:=ttypesym.create(s,t);
  77. p.insert(result);
  78. { add init/final table if required }
  79. if t.def.needs_inittable then
  80. generate_inittable(result);
  81. end;
  82. procedure adddef(const s:string;def:tdef);
  83. var
  84. t : ttype;
  85. begin
  86. t.setdef(def);
  87. p.insert(ttypesym.create(s,t));
  88. end;
  89. var
  90. { several defs to simulate more or less C++ objects for GDB }
  91. vmttype,
  92. vmtarraytype : ttype;
  93. vmtsymtable : tsymtable;
  94. begin
  95. { Normal types }
  96. addtype('Single',s32floattype);
  97. addtype('Double',s64floattype);
  98. addtype('Extended',s80floattype);
  99. addtype('Real',s64floattype);
  100. {$ifdef x86}
  101. adddef('Comp',tfloatdef.create(s64comp));
  102. {$endif x86}
  103. addtype('Currency',s64currencytype);
  104. addtype('Pointer',voidpointertype);
  105. addtype('FarPointer',voidfarpointertype);
  106. addtype('ShortString',cshortstringtype);
  107. addtype('LongString',clongstringtype);
  108. addtype('AnsiString',cansistringtype);
  109. addtype('WideString',cwidestringtype);
  110. addtype('Boolean',booltype);
  111. addtype('ByteBool',booltype);
  112. adddef('WordBool',torddef.create(bool16bit,0,1));
  113. adddef('LongBool',torddef.create(bool32bit,0,1));
  114. addtype('Char',cchartype);
  115. addtype('WideChar',cwidechartype);
  116. adddef('Text',tfiledef.createtext);
  117. addtype('Cardinal',u32bittype);
  118. addtype('QWord',cu64bittype);
  119. addtype('Int64',cs64bittype);
  120. adddef('TypedFile',tfiledef.createtyped(voidtype));
  121. addtype('Variant',cvarianttype);
  122. { Internal types }
  123. addtype('$formal',cformaltype);
  124. addtype('$void',voidtype);
  125. addtype('$byte',u8bittype);
  126. addtype('$word',u16bittype);
  127. addtype('$ulong',u32bittype);
  128. addtype('$longint',s32bittype);
  129. addtype('$qword',cu64bittype);
  130. addtype('$int64',cs64bittype);
  131. addtype('$char',cchartype);
  132. addtype('$widechar',cwidechartype);
  133. addtype('$shortstring',cshortstringtype);
  134. addtype('$longstring',clongstringtype);
  135. addtype('$ansistring',cansistringtype);
  136. addtype('$widestring',cwidestringtype);
  137. addtype('$openshortstring',openshortstringtype);
  138. addtype('$boolean',booltype);
  139. addtype('$void_pointer',voidpointertype);
  140. addtype('$char_pointer',charpointertype);
  141. addtype('$void_farpointer',voidfarpointertype);
  142. addtype('$openchararray',openchararraytype);
  143. addtype('$file',cfiletype);
  144. addtype('$variant',cvarianttype);
  145. addtype('$s32real',s32floattype);
  146. addtype('$s64real',s64floattype);
  147. addtype('$s80real',s80floattype);
  148. addtype('$s64currency',s64currencytype);
  149. { Add a type for virtual method tables }
  150. vmtsymtable:=trecordsymtable.create;
  151. vmttype.setdef(trecorddef.create(vmtsymtable));
  152. pvmttype.setdef(tpointerdef.create(vmttype));
  153. vmtsymtable.insert(tvarsym.create('$parent',pvmttype));
  154. vmtsymtable.insert(tvarsym.create('$length',s32bittype));
  155. vmtsymtable.insert(tvarsym.create('$mlength',s32bittype));
  156. vmtarraytype.setdef(tarraydef.create(0,1,s32bittype));
  157. tarraydef(vmtarraytype.def).elementtype:=voidpointertype;
  158. vmtsymtable.insert(tvarsym.create('$__pfn',vmtarraytype));
  159. addtype('$__vtbl_ptr_type',vmttype);
  160. addtype('$pvmt',pvmttype);
  161. vmtarraytype.setdef(tarraydef.create(0,1,s32bittype));
  162. tarraydef(vmtarraytype.def).elementtype:=pvmttype;
  163. addtype('$vtblarray',vmtarraytype);
  164. { Add functions that require compiler magic }
  165. insertinternsyms(p);
  166. end;
  167. procedure readconstdefs;
  168. {
  169. Load all default definitions for consts from the system unit
  170. }
  171. begin
  172. globaldef('byte',u8bittype);
  173. globaldef('word',u16bittype);
  174. globaldef('ulong',u32bittype);
  175. globaldef('longint',s32bittype);
  176. globaldef('qword',cu64bittype);
  177. globaldef('int64',cs64bittype);
  178. globaldef('formal',cformaltype);
  179. globaldef('void',voidtype);
  180. globaldef('char',cchartype);
  181. globaldef('widechar',cwidechartype);
  182. globaldef('shortstring',cshortstringtype);
  183. globaldef('longstring',clongstringtype);
  184. globaldef('ansistring',cansistringtype);
  185. globaldef('widestring',cwidestringtype);
  186. globaldef('openshortstring',openshortstringtype);
  187. globaldef('openchararray',openchararraytype);
  188. globaldef('s32real',s32floattype);
  189. globaldef('s64real',s64floattype);
  190. globaldef('s80real',s80floattype);
  191. globaldef('s64currency',s64currencytype);
  192. globaldef('boolean',booltype);
  193. globaldef('void_pointer',voidpointertype);
  194. globaldef('char_pointer',charpointertype);
  195. globaldef('void_farpointer',voidfarpointertype);
  196. globaldef('file',cfiletype);
  197. globaldef('pvmt',pvmttype);
  198. globaldef('variant',cvarianttype);
  199. end;
  200. procedure createconstdefs;
  201. {
  202. Create all default definitions for consts for the system unit
  203. }
  204. var
  205. oldregisterdef : boolean;
  206. begin
  207. { create definitions for constants }
  208. oldregisterdef:=registerdef;
  209. registerdef:=false;
  210. cformaltype.setdef(tformaldef.create);
  211. voidtype.setdef(torddef.create(uvoid,0,0));
  212. u8bittype.setdef(torddef.create(u8bit,0,255));
  213. u16bittype.setdef(torddef.create(u16bit,0,65535));
  214. u32bittype.setdef(torddef.create(u32bit,0,high(cardinal)));
  215. s32bittype.setdef(torddef.create(s32bit,low(longint),high(longint)));
  216. cu64bittype.setdef(torddef.create(u64bit,low(qword),TConstExprInt(high(qword))));
  217. cs64bittype.setdef(torddef.create(s64bit,low(int64),high(int64)));
  218. booltype.setdef(torddef.create(bool8bit,0,1));
  219. cchartype.setdef(torddef.create(uchar,0,255));
  220. cwidechartype.setdef(torddef.create(uwidechar,0,65535));
  221. cshortstringtype.setdef(tstringdef.createshort(255));
  222. { should we give a length to the default long and ansi string definition ?? }
  223. clongstringtype.setdef(tstringdef.createlong(-1));
  224. cansistringtype.setdef(tstringdef.createansi(-1));
  225. cwidestringtype.setdef(tstringdef.createwide(-1));
  226. { length=0 for shortstring is open string (needed for readln(string) }
  227. openshortstringtype.setdef(tstringdef.createshort(0));
  228. openchararraytype.setdef(tarraydef.create(0,-1,s32bittype));
  229. tarraydef(openchararraytype.def).elementtype:=cchartype;
  230. {$ifdef x86}
  231. s32floattype.setdef(tfloatdef.create(s32real));
  232. s64floattype.setdef(tfloatdef.create(s64real));
  233. s80floattype.setdef(tfloatdef.create(s80real));
  234. {$endif x86}
  235. {$ifdef powerpc}
  236. s32floattype.setdef(tfloatdef.create(s32real));
  237. s64floattype.setdef(tfloatdef.create(s64real));
  238. s80floattype.setdef(tfloatdef.create(s80real));
  239. {$endif powerpc}
  240. {$ifdef sparc}
  241. s32floattype.setdef(tfloatdef.create(s32real));
  242. s64floattype.setdef(tfloatdef.create(s64real));
  243. {$endif sparc}
  244. s64currencytype.setdef(tfloatdef.create(s64currency));
  245. {$ifdef m68k}
  246. s32floattype.setdef(tfloatdef.create(s32real));
  247. if (cs_fp_emulation in aktmoduleswitches) then
  248. begin
  249. s64floattype.setdef(tfloatdef.create(s32real));
  250. s80floattype.setdef(tfloatdef.create(s32real)))
  251. end
  252. else
  253. begin
  254. s64floattype.setdef(tfloatdef.create(s64real));
  255. s80floattype.setdef(tfloatdef.create(s80real));
  256. end;
  257. {$endif}
  258. { some other definitions }
  259. voidpointertype.setdef(tpointerdef.create(voidtype));
  260. charpointertype.setdef(tpointerdef.create(cchartype));
  261. voidfarpointertype.setdef(tpointerdef.createfar(voidtype));
  262. cfiletype.setdef(tfiledef.createuntyped);
  263. cvarianttype.setdef(tvariantdef.create);
  264. registerdef:=oldregisterdef;
  265. end;
  266. end.
  267. {
  268. $Log$
  269. Revision 1.31 2002-07-16 15:34:21 florian
  270. * exit is now a syssym instead of a keyword
  271. Revision 1.30 2002/07/07 09:52:32 florian
  272. * powerpc target fixed, very simple units can be compiled
  273. * some basic stuff for better callparanode handling, far from being finished
  274. Revision 1.29 2002/07/06 20:18:47 carl
  275. + more SPARC patches from Mazen
  276. Revision 1.28 2002/07/04 20:43:02 florian
  277. * first x86-64 patches
  278. Revision 1.27 2002/07/01 16:23:54 peter
  279. * cg64 patch
  280. * basics for currency
  281. * asnode updates for class and interface (not finished)
  282. Revision 1.26 2002/05/18 13:34:16 peter
  283. * readded missing revisions
  284. Revision 1.25 2002/05/16 19:46:44 carl
  285. + defines.inc -> fpcdefs.inc to avoid conflicts if compiling by hand
  286. + try to fix temp allocation (still in ifdef)
  287. + generic constructor calls
  288. + start of tassembler / tmodulebase class cleanup
  289. Revision 1.23 2002/05/12 16:53:09 peter
  290. * moved entry and exitcode to ncgutil and cgobj
  291. * foreach gets extra argument for passing local data to the
  292. iterator function
  293. * -CR checks also class typecasts at runtime by changing them
  294. into as
  295. * fixed compiler to cycle with the -CR option
  296. * fixed stabs with elf writer, finally the global variables can
  297. be watched
  298. * removed a lot of routines from cga unit and replaced them by
  299. calls to cgobj
  300. * u32bit-s32bit updates for and,or,xor nodes. When one element is
  301. u32bit then the other is typecasted also to u32bit without giving
  302. a rangecheck warning/error.
  303. * fixed pascal calling method with reversing also the high tree in
  304. the parast, detected by tcalcst3 test
  305. Revision 1.22 2002/01/24 12:33:53 jonas
  306. * adapted ranges of native types to int64 (e.g. high cardinal is no
  307. longer longint($ffffffff), but just $fffffff in psystem)
  308. * small additional fix in 64bit rangecheck code generation for 32 bit
  309. processors
  310. * adaption of ranges required the matching talgorithm used for selecting
  311. which overloaded procedure to call to be adapted. It should now always
  312. select the closest match for ordinal parameters.
  313. + inttostr(qword) in sysstr.inc/sysstrh.inc
  314. + abs(int64), sqr(int64), sqr(qword) in systemh.inc/generic.inc (previous
  315. fixes were required to be able to add them)
  316. * is_in_limit() moved from ncal to types unit, should always be used
  317. instead of direct comparisons of low/high values of orddefs because
  318. qword is a special case
  319. }