ptype.pas 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Florian Klaempfl
  4. Does parsing types for Free Pascal
  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 ptype;
  19. {$i fpcdefs.inc}
  20. interface
  21. uses
  22. globtype,symtype;
  23. const
  24. { forward types should only be possible inside a TYPE statement }
  25. typecanbeforward : boolean = false;
  26. var
  27. { hack, which allows to use the current parsed }
  28. { object type as function argument type }
  29. testcurobject : byte;
  30. curobjectname : stringid;
  31. { reads a string, file type or a type id and returns a name and }
  32. { tdef }
  33. procedure single_type(var tt:ttype;var s : string;isforwarddef:boolean);
  34. procedure read_type(var tt:ttype;const name : stringid;parseprocvardir:boolean);
  35. { reads a type definition }
  36. { to a appropriating tdef, s gets the name of }
  37. { the type to allow name mangling }
  38. procedure id_type(var tt : ttype;var s : string;isforwarddef:boolean);
  39. implementation
  40. uses
  41. { common }
  42. cutils,
  43. { global }
  44. globals,tokens,verbose,
  45. systems,
  46. { target }
  47. paramgr,
  48. { symtable }
  49. symconst,symbase,symdef,symsym,symtable,
  50. defutil,defcmp,
  51. { pass 1 }
  52. node,
  53. nmat,nadd,ncal,nset,ncnv,ninl,ncon,nld,nflw,
  54. { parser }
  55. scanner,
  56. pbase,pexpr,pdecsub,pdecvar,pdecobj;
  57. procedure id_type(var tt : ttype;var s : string;isforwarddef:boolean);
  58. { reads a type definition }
  59. { to a appropriating tdef, s gets the name of }
  60. { the type to allow name mangling }
  61. var
  62. is_unit_specific : boolean;
  63. pos : tfileposinfo;
  64. srsym : tsym;
  65. srsymtable : tsymtable;
  66. sorg : stringid;
  67. begin
  68. s:=pattern;
  69. sorg:=orgpattern;
  70. pos:=akttokenpos;
  71. { classes can be used also in classes }
  72. if (curobjectname=pattern) and is_class_or_interface(aktobjectdef) then
  73. begin
  74. tt.setdef(aktobjectdef);
  75. consume(_ID);
  76. exit;
  77. end;
  78. { objects can be parameters }
  79. if (testcurobject=2) and (curobjectname=pattern) then
  80. begin
  81. tt.setdef(aktobjectdef);
  82. consume(_ID);
  83. exit;
  84. end;
  85. { try to load the symbol to see if it's a unitsym. Use the
  86. special searchsym_type that ignores records,objects and
  87. parameters }
  88. is_unit_specific:=false;
  89. searchsym_type(s,srsym,srsymtable);
  90. consume(_ID);
  91. if assigned(srsym) and
  92. (srsym.typ=unitsym) then
  93. begin
  94. is_unit_specific:=true;
  95. consume(_POINT);
  96. if srsym.owner.unitid=0 then
  97. begin
  98. srsym:=searchsymonlyin(tunitsym(srsym).unitsymtable,pattern);
  99. pos:=akttokenpos;
  100. s:=pattern;
  101. end
  102. else
  103. srsym:=nil;
  104. consume(_ID);
  105. end;
  106. { Types are first defined with an error def before assigning
  107. the real type so check if it's an errordef. if so then
  108. give an error. Only check for typesyms in the current symbol
  109. table as forwarddef are not resolved directly }
  110. if assigned(srsym) and
  111. (srsym.typ=typesym) and
  112. (srsym.owner=symtablestack) and
  113. (ttypesym(srsym).restype.def.deftype=errordef) then
  114. begin
  115. Message1(type_e_type_is_not_completly_defined,ttypesym(srsym).realname);
  116. tt:=generrortype;
  117. exit;
  118. end;
  119. { are we parsing a possible forward def ? }
  120. if isforwarddef and
  121. not(is_unit_specific) then
  122. begin
  123. tt.setdef(tforwarddef.create(s,pos));
  124. exit;
  125. end;
  126. { unknown sym ? }
  127. if not assigned(srsym) then
  128. begin
  129. Message1(sym_e_id_not_found,sorg);
  130. tt:=generrortype;
  131. exit;
  132. end;
  133. { type sym ? }
  134. if (srsym.typ<>typesym) then
  135. begin
  136. Message(type_e_type_id_expected);
  137. tt:=generrortype;
  138. exit;
  139. end;
  140. { Give an error when referring to an errordef }
  141. if (ttypesym(srsym).restype.def.deftype=errordef) then
  142. begin
  143. Message(sym_e_error_in_type_def);
  144. tt:=generrortype;
  145. exit;
  146. end;
  147. { Use the definitions for current unit, because
  148. they can be refered from the parameters and symbols are not
  149. loaded at that time. Only write the definition when the
  150. symbol is the real owner of the definition (not a redefine) }
  151. if (ttypesym(srsym).owner.unitid=0) and
  152. ((ttypesym(srsym).restype.def.typesym=nil) or
  153. (srsym=ttypesym(srsym).restype.def.typesym)) then
  154. tt.setdef(ttypesym(srsym).restype.def)
  155. else
  156. tt.setsym(srsym);
  157. end;
  158. procedure single_type(var tt:ttype;var s : string;isforwarddef:boolean);
  159. { reads a string, file type or a type id and returns a name and }
  160. { tdef }
  161. var
  162. hs : string;
  163. t2 : ttype;
  164. begin
  165. case token of
  166. _STRING:
  167. begin
  168. string_dec(tt);
  169. s:='STRING';
  170. end;
  171. _FILE:
  172. begin
  173. consume(_FILE);
  174. if token=_OF then
  175. begin
  176. consume(_OF);
  177. single_type(t2,hs,false);
  178. tt.setdef(tfiledef.createtyped(t2));
  179. s:='FILE$OF$'+hs;
  180. end
  181. else
  182. begin
  183. tt:=cfiletype;
  184. s:='FILE';
  185. end;
  186. end;
  187. _ID:
  188. begin
  189. id_type(tt,s,isforwarddef);
  190. end;
  191. else
  192. begin
  193. message(type_e_type_id_expected);
  194. s:='<unknown>';
  195. tt:=generrortype;
  196. end;
  197. end;
  198. end;
  199. { reads a record declaration }
  200. function record_dec : tdef;
  201. var
  202. symtable : tsymtable;
  203. storetypecanbeforward : boolean;
  204. old_object_option : tsymoptions;
  205. begin
  206. { create recdef }
  207. symtable:=trecordsymtable.create(aktpackrecords);
  208. record_dec:=trecorddef.create(symtable);
  209. { update symtable stack }
  210. symtable.next:=symtablestack;
  211. symtablestack:=symtable;
  212. { parse record }
  213. consume(_RECORD);
  214. old_object_option:=current_object_option;
  215. current_object_option:=[sp_public];
  216. storetypecanbeforward:=typecanbeforward;
  217. { for tp7 don't allow forward types }
  218. if m_tp7 in aktmodeswitches then
  219. typecanbeforward:=false;
  220. read_var_decs(true,false,false);
  221. consume(_END);
  222. typecanbeforward:=storetypecanbeforward;
  223. current_object_option:=old_object_option;
  224. { may be scale record size to a size of n*4 ? }
  225. trecordsymtable(symtablestack).datasize:=align(trecordsymtable(symtablestack).datasize,
  226. trecordsymtable(symtablestack).fieldalignment);
  227. { restore symtable stack }
  228. symtablestack:=symtable.next;
  229. end;
  230. { reads a type definition and returns a pointer to it }
  231. procedure read_type(var tt : ttype;const name : stringid;parseprocvardir:boolean);
  232. var
  233. pt : tnode;
  234. tt2 : ttype;
  235. aktenumdef : tenumdef;
  236. ap : tarraydef;
  237. s : stringid;
  238. l,v : TConstExprInt;
  239. oldaktpackrecords : longint;
  240. hs : string;
  241. defpos,storepos : tfileposinfo;
  242. procedure expr_type;
  243. var
  244. pt1,pt2 : tnode;
  245. lv,hv : TConstExprInt;
  246. begin
  247. { use of current parsed object ? }
  248. if (token=_ID) and (testcurobject=2) and (curobjectname=pattern) then
  249. begin
  250. consume(_ID);
  251. tt.setdef(aktobjectdef);
  252. exit;
  253. end;
  254. { classes can be used also in classes }
  255. if (curobjectname=pattern) and is_class_or_interface(aktobjectdef) then
  256. begin
  257. tt.setdef(aktobjectdef);
  258. consume(_ID);
  259. exit;
  260. end;
  261. { we can't accept a equal in type }
  262. pt1:=comp_expr(not(ignore_equal));
  263. if (token=_POINTPOINT) then
  264. begin
  265. consume(_POINTPOINT);
  266. { get high value of range }
  267. pt2:=comp_expr(not(ignore_equal));
  268. { make both the same type }
  269. inserttypeconv(pt1,pt2.resulttype);
  270. { both must be evaluated to constants now }
  271. if (pt1.nodetype=ordconstn) and
  272. (pt2.nodetype=ordconstn) then
  273. begin
  274. lv:=tordconstnode(pt1).value;
  275. hv:=tordconstnode(pt2).value;
  276. { Check bounds }
  277. if hv<lv then
  278. Message(cg_e_upper_lower_than_lower)
  279. else
  280. begin
  281. { All checks passed, create the new def }
  282. case pt1.resulttype.def.deftype of
  283. enumdef :
  284. tt.setdef(tenumdef.create_subrange(tenumdef(pt1.resulttype.def),lv,hv));
  285. orddef :
  286. begin
  287. if is_char(pt1.resulttype.def) then
  288. tt.setdef(torddef.create(uchar,lv,hv))
  289. else
  290. if is_boolean(pt1.resulttype.def) then
  291. tt.setdef(torddef.create(bool8bit,l,hv))
  292. else
  293. tt.setdef(torddef.create(range_to_basetype(lv,hv),lv,hv));
  294. end;
  295. end;
  296. end;
  297. end
  298. else
  299. Message(sym_e_error_in_type_def);
  300. pt2.free;
  301. end
  302. else
  303. begin
  304. { a simple type renaming }
  305. if (pt1.nodetype=typen) then
  306. tt:=ttypenode(pt1).resulttype
  307. else
  308. Message(sym_e_error_in_type_def);
  309. end;
  310. pt1.free;
  311. end;
  312. procedure array_dec;
  313. var
  314. lowval,
  315. highval : longint;
  316. arraytype : ttype;
  317. ht : ttype;
  318. procedure setdefdecl(const t:ttype);
  319. begin
  320. case t.def.deftype of
  321. enumdef :
  322. begin
  323. lowval:=tenumdef(t.def).min;
  324. highval:=tenumdef(t.def).max;
  325. if tenumdef(t.def).has_jumps then
  326. Message(type_e_array_index_enums_with_assign_not_possible);
  327. arraytype:=t;
  328. end;
  329. orddef :
  330. begin
  331. if torddef(t.def).typ in [uchar,
  332. u8bit,u16bit,
  333. s8bit,s16bit,s32bit,
  334. bool8bit,bool16bit,bool32bit,
  335. uwidechar] then
  336. begin
  337. lowval:=torddef(t.def).low;
  338. highval:=torddef(t.def).high;
  339. arraytype:=t;
  340. end
  341. else
  342. Message1(parser_e_type_cant_be_used_in_array_index,t.def.gettypename);
  343. end;
  344. else
  345. Message(sym_e_error_in_type_def);
  346. end;
  347. end;
  348. begin
  349. consume(_ARRAY);
  350. { open array? }
  351. if token=_LECKKLAMMER then
  352. begin
  353. consume(_LECKKLAMMER);
  354. { defaults }
  355. arraytype:=generrortype;
  356. lowval:=longint($80000000);
  357. highval:=$7fffffff;
  358. tt.reset;
  359. repeat
  360. { read the expression and check it, check apart if the
  361. declaration is an enum declaration because that needs to
  362. be parsed by readtype (PFV) }
  363. if token=_LKLAMMER then
  364. begin
  365. read_type(ht,'',true);
  366. setdefdecl(ht);
  367. end
  368. else
  369. begin
  370. pt:=expr;
  371. if pt.nodetype=typen then
  372. setdefdecl(pt.resulttype)
  373. else
  374. begin
  375. if (pt.nodetype=rangen) then
  376. begin
  377. if (trangenode(pt).left.nodetype=ordconstn) and
  378. (trangenode(pt).right.nodetype=ordconstn) then
  379. begin
  380. lowval:=tordconstnode(trangenode(pt).left).value;
  381. highval:=tordconstnode(trangenode(pt).right).value;
  382. if highval<lowval then
  383. begin
  384. Message(parser_e_array_lower_less_than_upper_bound);
  385. highval:=lowval;
  386. end;
  387. arraytype:=trangenode(pt).right.resulttype;
  388. end
  389. else
  390. Message(type_e_cant_eval_constant_expr);
  391. end
  392. else
  393. Message(sym_e_error_in_type_def)
  394. end;
  395. pt.free;
  396. end;
  397. { create arraydef }
  398. if not assigned(tt.def) then
  399. begin
  400. ap:=tarraydef.create(lowval,highval,arraytype);
  401. tt.setdef(ap);
  402. end
  403. else
  404. begin
  405. ap.elementtype.setdef(tarraydef.create(lowval,highval,arraytype));
  406. ap:=tarraydef(ap.elementtype.def);
  407. end;
  408. if token=_COMMA then
  409. consume(_COMMA)
  410. else
  411. break;
  412. until false;
  413. consume(_RECKKLAMMER);
  414. end
  415. else
  416. begin
  417. ap:=tarraydef.create(0,-1,s32bittype);
  418. ap.IsDynamicArray:=true;
  419. tt.setdef(ap);
  420. end;
  421. consume(_OF);
  422. read_type(tt2,'',true);
  423. { if no error, set element type }
  424. if assigned(ap) then
  425. ap.setelementtype(tt2);
  426. end;
  427. var
  428. p : tnode;
  429. pd : tabstractprocdef;
  430. is_func,
  431. enumdupmsg : boolean;
  432. newtype : ttypesym;
  433. begin
  434. tt.reset;
  435. case token of
  436. _STRING,_FILE:
  437. begin
  438. single_type(tt,hs,false);
  439. end;
  440. _LKLAMMER:
  441. begin
  442. consume(_LKLAMMER);
  443. { allow negativ value_str }
  444. l:=-1;
  445. enumdupmsg:=false;
  446. aktenumdef:=tenumdef.create;
  447. repeat
  448. s:=orgpattern;
  449. defpos:=akttokenpos;
  450. consume(_ID);
  451. { only allow assigning of specific numbers under fpc mode }
  452. if not(m_tp7 in aktmodeswitches) and
  453. (
  454. { in fpc mode also allow := to be compatible
  455. with previous 1.0.x versions }
  456. ((m_fpc in aktmodeswitches) and
  457. try_to_consume(_ASSIGNMENT)) or
  458. try_to_consume(_EQUAL)
  459. ) then
  460. begin
  461. p:=comp_expr(true);
  462. if (p.nodetype=ordconstn) then
  463. begin
  464. { we expect an integer or an enum of the
  465. same type }
  466. if is_integer(p.resulttype.def) or
  467. is_char(p.resulttype.def) or
  468. equal_defs(p.resulttype.def,aktenumdef) then
  469. v:=tordconstnode(p).value
  470. else
  471. IncompatibleTypes(p.resulttype.def,s32bittype.def);
  472. end
  473. else
  474. Message(cg_e_illegal_expression);
  475. p.free;
  476. { please leave that a note, allows type save }
  477. { declarations in the win32 units ! }
  478. if (v<=l) and (not enumdupmsg) then
  479. begin
  480. Message(parser_n_duplicate_enum);
  481. enumdupmsg:=true;
  482. end;
  483. l:=v;
  484. end
  485. else
  486. inc(l);
  487. storepos:=akttokenpos;
  488. akttokenpos:=defpos;
  489. constsymtable.insert(tenumsym.create(s,aktenumdef,l));
  490. akttokenpos:=storepos;
  491. until not try_to_consume(_COMMA);
  492. tt.setdef(aktenumdef);
  493. consume(_RKLAMMER);
  494. end;
  495. _ARRAY:
  496. begin
  497. array_dec;
  498. end;
  499. _SET:
  500. begin
  501. consume(_SET);
  502. consume(_OF);
  503. read_type(tt2,'',true);
  504. if assigned(tt2.def) then
  505. begin
  506. case tt2.def.deftype of
  507. { don't forget that min can be negativ PM }
  508. enumdef :
  509. if tenumdef(tt2.def).min>=0 then
  510. tt.setdef(tsetdef.create(tt2,tenumdef(tt2.def).max))
  511. else
  512. Message(sym_e_ill_type_decl_set);
  513. orddef :
  514. begin
  515. case torddef(tt2.def).typ of
  516. uchar :
  517. tt.setdef(tsetdef.create(tt2,255));
  518. u8bit,u16bit,u32bit,
  519. s8bit,s16bit,s32bit :
  520. begin
  521. if (torddef(tt2.def).low>=0) then
  522. tt.setdef(tsetdef.create(tt2,torddef(tt2.def).high))
  523. else
  524. Message(sym_e_ill_type_decl_set);
  525. end;
  526. else
  527. Message(sym_e_ill_type_decl_set);
  528. end;
  529. end;
  530. else
  531. Message(sym_e_ill_type_decl_set);
  532. end;
  533. end
  534. else
  535. tt:=generrortype;
  536. end;
  537. _CARET:
  538. begin
  539. consume(_CARET);
  540. single_type(tt2,hs,typecanbeforward);
  541. tt.setdef(tpointerdef.create(tt2));
  542. end;
  543. _RECORD:
  544. begin
  545. tt.setdef(record_dec);
  546. end;
  547. _PACKED:
  548. begin
  549. consume(_PACKED);
  550. if token=_ARRAY then
  551. array_dec
  552. else
  553. begin
  554. oldaktpackrecords:=aktpackrecords;
  555. aktpackrecords:=1;
  556. if token in [_CLASS,_OBJECT] then
  557. tt.setdef(object_dec(name,nil))
  558. else
  559. tt.setdef(record_dec);
  560. aktpackrecords:=oldaktpackrecords;
  561. end;
  562. end;
  563. _CLASS,
  564. _CPPCLASS,
  565. _INTERFACE,
  566. _OBJECT:
  567. begin
  568. tt.setdef(object_dec(name,nil));
  569. end;
  570. _PROCEDURE,
  571. _FUNCTION:
  572. begin
  573. is_func:=(token=_FUNCTION);
  574. consume(token);
  575. pd:=tprocvardef.create(normal_function_level);
  576. if token=_LKLAMMER then
  577. parse_parameter_dec(pd);
  578. if is_func then
  579. begin
  580. consume(_COLON);
  581. single_type(pd.rettype,hs,false);
  582. end;
  583. if token=_OF then
  584. begin
  585. consume(_OF);
  586. consume(_OBJECT);
  587. include(pd.procoptions,po_methodpointer);
  588. end;
  589. tt.def:=pd;
  590. { possible proc directives }
  591. if parseprocvardir then
  592. begin
  593. if is_proc_directive(token,true) then
  594. begin
  595. newtype:=ttypesym.create('unnamed',tt);
  596. parse_var_proc_directives(tsym(newtype));
  597. newtype.restype.def:=nil;
  598. tt.def.typesym:=nil;
  599. newtype.free;
  600. end;
  601. { Add implicit hidden parameters and function result }
  602. handle_calling_convention(pd);
  603. calc_parast(pd);
  604. end;
  605. end;
  606. else
  607. expr_type;
  608. end;
  609. if tt.def=nil then
  610. tt:=generrortype;
  611. end;
  612. end.
  613. {
  614. $Log$
  615. Revision 1.62 2004-01-28 22:16:31 peter
  616. * more record alignment fixes
  617. Revision 1.61 2004/01/28 20:30:18 peter
  618. * record alignment splitted in fieldalignment and recordalignment,
  619. the latter is used when this record is inserted in another record.
  620. Revision 1.60 2003/10/21 18:16:13 peter
  621. * IncompatibleTypes() added that will include unit names when
  622. the typenames are the same
  623. Revision 1.59 2003/10/03 14:45:09 peter
  624. * more proc directive for procvar fixes
  625. Revision 1.58 2003/10/02 21:13:09 peter
  626. * procvar directive parsing fixes
  627. Revision 1.57 2003/10/01 19:05:33 peter
  628. * searchsym_type to search for type definitions. It ignores
  629. records,objects and parameters
  630. Revision 1.56 2003/09/23 17:56:06 peter
  631. * locals and paras are allocated in the code generation
  632. * tvarsym.localloc contains the location of para/local when
  633. generating code for the current procedure
  634. Revision 1.55 2003/05/15 18:58:53 peter
  635. * removed selfpointer_offset, vmtpointer_offset
  636. * tvarsym.adjusted_address
  637. * address in localsymtable is now in the real direction
  638. * removed some obsolete globals
  639. Revision 1.54 2003/05/09 17:47:03 peter
  640. * self moved to hidden parameter
  641. * removed hdisposen,hnewn,selfn
  642. Revision 1.53 2003/04/27 11:21:34 peter
  643. * aktprocdef renamed to current_procdef
  644. * procinfo renamed to current_procinfo
  645. * procinfo will now be stored in current_module so it can be
  646. cleaned up properly
  647. * gen_main_procsym changed to create_main_proc and release_main_proc
  648. to also generate a tprocinfo structure
  649. * fixed unit implicit initfinal
  650. Revision 1.52 2003/04/27 07:29:51 peter
  651. * current_procdef cleanup, current_procdef is now always nil when parsing
  652. a new procdef declaration
  653. * aktprocsym removed
  654. * lexlevel removed, use symtable.symtablelevel instead
  655. * implicit init/final code uses the normal genentry/genexit
  656. * funcret state checking updated for new funcret handling
  657. Revision 1.51 2003/04/25 20:59:34 peter
  658. * removed funcretn,funcretsym, function result is now in varsym
  659. and aliases for result and function name are added using absolutesym
  660. * vs_hidden parameter for funcret passed in parameter
  661. * vs_hidden fixes
  662. * writenode changed to printnode and released from extdebug
  663. * -vp option added to generate a tree.log with the nodetree
  664. * nicer printnode for statements, callnode
  665. Revision 1.50 2003/01/05 15:54:15 florian
  666. + added proper support of type = type <type>; for simple types
  667. Revision 1.49 2003/01/03 23:50:41 peter
  668. * also allow = in fpc mode to assign enums
  669. Revision 1.48 2003/01/02 19:49:00 peter
  670. * update self parameter only for methodpointer and methods
  671. Revision 1.47 2002/12/21 13:07:34 peter
  672. * type redefine fix for tb0437
  673. Revision 1.46 2002/11/25 17:43:23 peter
  674. * splitted defbase in defutil,symutil,defcmp
  675. * merged isconvertable and is_equal into compare_defs(_ext)
  676. * made operator search faster by walking the list only once
  677. Revision 1.45 2002/09/27 21:13:29 carl
  678. * low-highval always checked if limit ober 2GB is reached (to avoid overflow)
  679. Revision 1.44 2002/09/10 16:26:39 peter
  680. * safety check for typesym added for incomplete type def check
  681. Revision 1.43 2002/09/09 19:34:07 peter
  682. * check for incomplete types in the current symtable when parsing
  683. forwarddef. Maybe this shall be delphi/tp only
  684. Revision 1.42 2002/07/20 11:57:56 florian
  685. * types.pas renamed to defbase.pas because D6 contains a types
  686. unit so this would conflicts if D6 programms are compiled
  687. + Willamette/SSE2 instructions to assembler added
  688. Revision 1.41 2002/05/18 13:34:16 peter
  689. * readded missing revisions
  690. Revision 1.40 2002/05/16 19:46:44 carl
  691. + defines.inc -> fpcdefs.inc to avoid conflicts if compiling by hand
  692. + try to fix temp allocation (still in ifdef)
  693. + generic constructor calls
  694. + start of tassembler / tmodulebase class cleanup
  695. Revision 1.38 2002/05/12 16:53:10 peter
  696. * moved entry and exitcode to ncgutil and cgobj
  697. * foreach gets extra argument for passing local data to the
  698. iterator function
  699. * -CR checks also class typecasts at runtime by changing them
  700. into as
  701. * fixed compiler to cycle with the -CR option
  702. * fixed stabs with elf writer, finally the global variables can
  703. be watched
  704. * removed a lot of routines from cga unit and replaced them by
  705. calls to cgobj
  706. * u32bit-s32bit updates for and,or,xor nodes. When one element is
  707. u32bit then the other is typecasted also to u32bit without giving
  708. a rangecheck warning/error.
  709. * fixed pascal calling method with reversing also the high tree in
  710. the parast, detected by tcalcst3 test
  711. Revision 1.37 2002/04/19 15:46:03 peter
  712. * mangledname rewrite, tprocdef.mangledname is now created dynamicly
  713. in most cases and not written to the ppu
  714. * add mangeledname_prefix() routine to generate the prefix of
  715. manglednames depending on the current procedure, object and module
  716. * removed static procprefix since the mangledname is now build only
  717. on demand from tprocdef.mangledname
  718. Revision 1.36 2002/04/16 16:12:47 peter
  719. * give error when using enums with jumps as array index
  720. * allow char as enum value
  721. Revision 1.35 2002/04/04 19:06:04 peter
  722. * removed unused units
  723. * use tlocation.size in cg.a_*loc*() routines
  724. Revision 1.34 2002/01/24 18:25:49 peter
  725. * implicit result variable generation for assembler routines
  726. * removed m_tp modeswitch, use m_tp7 or not(m_fpc) instead
  727. Revision 1.33 2002/01/15 16:13:34 jonas
  728. * fixed web bugs 1758 and 1760
  729. Revision 1.32 2002/01/06 12:08:15 peter
  730. * removed uauto from orddef, use new range_to_basetype generating
  731. the correct ordinal type for a range
  732. }