pdecl.pas 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721
  1. {
  2. $Id$
  3. Copyright (c) 1993-98 by Florian Klaempfl
  4. Does declaration parsing 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 pdecl;
  19. interface
  20. uses
  21. globtype,tokens,globals,symtable;
  22. var
  23. { pointer to the last read type symbol, (for "forward" }
  24. { types) }
  25. lasttypesym : ptypesym;
  26. { hack, which allows to use the current parsed }
  27. { object type as function argument type }
  28. testcurobject : byte;
  29. curobjectname : stringid;
  30. { reads a string type with optional length }
  31. { and returns a pointer to the string }
  32. { definition }
  33. function stringtype : pdef;
  34. { reads a string, file type or a type id and returns a name and }
  35. { pdef }
  36. function single_type(var s : string) : pdef;
  37. { reads the declaration blocks }
  38. procedure read_declarations(islibrary : boolean);
  39. { reads declarations in the interface part of a unit }
  40. procedure read_interface_declarations;
  41. implementation
  42. uses
  43. cobjects,scanner,aasm,tree,pass_1,strings,
  44. files,types,verbose,systems,import
  45. {$ifdef GDB}
  46. ,gdb
  47. {$endif GDB}
  48. { parser specific stuff }
  49. ,pbase,ptconst,pexpr,psub,pexports
  50. { processor specific stuff }
  51. {$ifdef i386}
  52. {$ifndef OLDASM}
  53. ,i386base
  54. {$else}
  55. ,i386
  56. {$endif}
  57. {$endif}
  58. {$ifdef m68k}
  59. ,m68k
  60. {$endif}
  61. { codegen }
  62. ,hcodegen,hcgdata
  63. ;
  64. function read_type(const name : stringid) : pdef;forward;
  65. { search in symtablestack used, but not defined type }
  66. procedure testforward_type(p : pnamedindexobject);{$ifndef FPC}far;{$endif}
  67. var
  68. reaktvarsymtable : psymtable;
  69. oldaktfilepos : tfileposinfo;
  70. begin
  71. if not(psym(p)^.typ=typesym) then
  72. exit;
  73. if ((psym(p)^.properties and sp_forwarddef)<>0) then
  74. begin
  75. oldaktfilepos:=aktfilepos;
  76. aktfilepos:=psym(p)^.fileinfo;
  77. Message1(sym_e_forward_type_not_resolved,p^.name);
  78. aktfilepos:=oldaktfilepos;
  79. { try to recover }
  80. ptypesym(p)^.definition:=generrordef;
  81. psym(p)^.properties:=psym(p)^.properties and (not sp_forwarddef);
  82. end
  83. else
  84. if (ptypesym(p)^.definition^.deftype in [recorddef,objectdef]) then
  85. begin
  86. if (ptypesym(p)^.definition^.deftype=recorddef) then
  87. reaktvarsymtable:=precdef(ptypesym(p)^.definition)^.symtable
  88. else
  89. reaktvarsymtable:=pobjectdef(ptypesym(p)^.definition)^.publicsyms;
  90. {$ifdef tp}
  91. reaktvarsymtable^.foreach(testforward_type);
  92. {$else}
  93. reaktvarsymtable^.foreach(@testforward_type);
  94. {$endif}
  95. end;
  96. end;
  97. procedure const_dec;
  98. var
  99. name : stringid;
  100. p : ptree;
  101. def : pdef;
  102. sym : psym;
  103. storetokenpos,filepos : tfileposinfo;
  104. old_block_type : tblock_type;
  105. ps : pconstset;
  106. pd : pbestreal;
  107. sp : pchar;
  108. begin
  109. consume(_CONST);
  110. old_block_type:=block_type;
  111. block_type:=bt_const;
  112. repeat
  113. name:=pattern;
  114. filepos:=tokenpos;
  115. consume(ID);
  116. case token of
  117. EQUAL:
  118. begin
  119. consume(EQUAL);
  120. p:=comp_expr(true);
  121. do_firstpass(p);
  122. storetokenpos:=tokenpos;
  123. tokenpos:=filepos;
  124. case p^.treetype of
  125. ordconstn:
  126. begin
  127. if is_constintnode(p) then
  128. symtablestack^.insert(new(pconstsym,init_def(name,constint,p^.value,nil)))
  129. else if is_constcharnode(p) then
  130. symtablestack^.insert(new(pconstsym,init_def(name,constchar,p^.value,nil)))
  131. else if is_constboolnode(p) then
  132. symtablestack^.insert(new(pconstsym,init_def(name,constbool,p^.value,nil)))
  133. else if p^.resulttype^.deftype=enumdef then
  134. symtablestack^.insert(new(pconstsym,init_def(name,constord,p^.value,p^.resulttype)))
  135. else if p^.resulttype^.deftype=pointerdef then
  136. symtablestack^.insert(new(pconstsym,init_def(name,constord,p^.value,p^.resulttype)))
  137. else internalerror(111);
  138. end;
  139. stringconstn:
  140. begin
  141. getmem(sp,p^.length+1);
  142. move(p^.value_str^,sp^,p^.length+1);
  143. symtablestack^.insert(new(pconstsym,init_string(name,conststring,sp,p^.length)));
  144. end;
  145. realconstn :
  146. begin
  147. new(pd);
  148. pd^:=p^.value_real;
  149. symtablestack^.insert(new(pconstsym,init(name,constreal,longint(pd))));
  150. end;
  151. setconstn :
  152. begin
  153. new(ps);
  154. ps^:=p^.value_set^;
  155. symtablestack^.insert(new(pconstsym,init_def(name,constset,longint(ps),p^.resulttype)));
  156. end;
  157. niln :
  158. begin
  159. symtablestack^.insert(new(pconstsym,init_def(name,constnil,0,p^.resulttype)));
  160. end;
  161. else
  162. Message(cg_e_illegal_expression);
  163. end;
  164. tokenpos:=storetokenpos;
  165. consume(SEMICOLON);
  166. disposetree(p);
  167. end;
  168. COLON:
  169. begin
  170. { set the blocktype first so a consume also supports a
  171. caret, to support const s : ^string = nil }
  172. block_type:=bt_type;
  173. consume(COLON);
  174. ignore_equal:=true;
  175. def:=read_type('');
  176. ignore_equal:=false;
  177. block_type:=bt_const;
  178. storetokenpos:=tokenpos;
  179. tokenpos:=filepos;
  180. {$ifdef DELPHI_CONST_IN_RODATA}
  181. if m_delphi in aktmodeswitches then
  182. sym:=new(ptypedconstsym,init(name,def,true))
  183. else
  184. {$endif DELPHI_CONST_IN_RODATA}
  185. sym:=new(ptypedconstsym,init(name,def,false));
  186. tokenpos:=storetokenpos;
  187. symtablestack^.insert(sym);
  188. consume(EQUAL);
  189. {$ifdef DELPHI_CONST_IN_RODATA}
  190. if m_delphi in aktmodeswitches then
  191. readtypedconst(def,ptypedconstsym(sym),true)
  192. else
  193. {$endif DELPHI_CONST_IN_RODATA}
  194. readtypedconst(def,ptypedconstsym(sym),false);
  195. consume(SEMICOLON);
  196. end;
  197. else consume(EQUAL);
  198. end;
  199. until token<>ID;
  200. block_type:=old_block_type;
  201. end;
  202. procedure label_dec;
  203. var
  204. hl : plabel;
  205. begin
  206. consume(_LABEL);
  207. if not(cs_support_goto in aktmoduleswitches) then
  208. Message(sym_e_goto_and_label_not_supported);
  209. repeat
  210. if not(token in [ID,INTCONST]) then
  211. consume(ID)
  212. else
  213. begin
  214. getlabel(hl);
  215. symtablestack^.insert(new(plabelsym,init(pattern,hl)));
  216. consume(token);
  217. end;
  218. if token<>SEMICOLON then consume(COMMA);
  219. until not(token in [ID,INTCONST]);
  220. consume(SEMICOLON);
  221. end;
  222. procedure read_var_decs(is_record,is_object,is_threadvar:boolean);
  223. { reads the filed of a record into a }
  224. { symtablestack, if record=false }
  225. { variants are forbidden, so this procedure }
  226. { can be used to read object fields }
  227. { if absolute is true, ABSOLUTE and file }
  228. { types are allowed }
  229. { => the procedure is also used to read }
  230. { a sequence of variable declaration }
  231. var
  232. sc : pstringcontainer;
  233. s : stringid;
  234. old_block_type : tblock_type;
  235. declarepos,storetokenpos : tfileposinfo;
  236. symdone : boolean;
  237. { to handle absolute }
  238. abssym : pabsolutesym;
  239. l : longint;
  240. code : integer;
  241. { c var }
  242. newtype : ptypesym;
  243. is_dll,
  244. is_gpc_name,is_cdecl,extern_aktvarsym,export_aktvarsym : boolean;
  245. dll_name,
  246. C_name : string;
  247. { case }
  248. p,casedef : pdef;
  249. { Delphi initialized vars }
  250. pconstsym : ptypedconstsym;
  251. { maxsize contains the max. size of a variant }
  252. { startvarrec contains the start of the variant part of a record }
  253. maxsize,startvarrec : longint;
  254. pt : ptree;
  255. begin
  256. old_block_type:=block_type;
  257. block_type:=bt_type;
  258. is_gpc_name:=false;
  259. { Force an expected ID error message }
  260. if not (token in [ID,_CASE,_END]) then
  261. consume(ID);
  262. { read vars }
  263. while (token=ID) and
  264. not(is_object and (idtoken in [_PUBLIC,_PRIVATE,_PUBLISHED,_PROTECTED])) do
  265. begin
  266. C_name:=orgpattern;
  267. sc:=idlist;
  268. consume(COLON);
  269. if (m_gpc in aktmodeswitches) and
  270. not(is_record or is_object or is_threadvar) and
  271. (token=ID) and (orgpattern='__asmname__') then
  272. begin
  273. consume(ID);
  274. C_name:=pattern;
  275. if token=CCHAR then
  276. consume(CCHAR)
  277. else
  278. consume(CSTRING);
  279. Is_gpc_name:=true;
  280. end;
  281. { this is needed for Delphi mode at least
  282. but should be OK for all modes !! (PM) }
  283. ignore_equal:=true;
  284. p:=read_type('');
  285. ignore_equal:=false;
  286. symdone:=false;
  287. if is_gpc_name then
  288. begin
  289. storetokenpos:=tokenpos;
  290. s:=sc^.get_with_tokeninfo(tokenpos);
  291. if not sc^.empty then
  292. Message(parser_e_absolute_only_one_var);
  293. dispose(sc,done);
  294. aktvarsym:=new(pvarsym,init_C(s,target_os.Cprefix+C_name,p));
  295. tokenpos:=storetokenpos;
  296. aktvarsym^.var_options:=aktvarsym^.var_options or vo_is_external;
  297. concat_external(aktvarsym^.mangledname,EXT_NEAR);
  298. symtablestack^.insert(aktvarsym);
  299. symdone:=true;
  300. end;
  301. { check for absolute }
  302. if not symdone and
  303. (idtoken=_ABSOLUTE) and not(is_record or is_object or is_threadvar) then
  304. begin
  305. consume(_ABSOLUTE);
  306. { only allowed for one var }
  307. s:=sc^.get_with_tokeninfo(declarepos);
  308. if not sc^.empty then
  309. Message(parser_e_absolute_only_one_var);
  310. dispose(sc,done);
  311. { parse the rest }
  312. if token=ID then
  313. begin
  314. getsym(pattern,true);
  315. consume(ID);
  316. { we should check the result type of srsym }
  317. if not (srsym^.typ in [varsym,typedconstsym]) then
  318. Message(parser_e_absolute_only_to_var_or_const);
  319. storetokenpos:=tokenpos;
  320. tokenpos:=declarepos;
  321. abssym:=new(pabsolutesym,init(s,p));
  322. abssym^.abstyp:=tovar;
  323. abssym^.ref:=srsym;
  324. tokenpos:=storetokenpos;
  325. symtablestack^.insert(abssym);
  326. end
  327. else
  328. if (token=CSTRING) or (token=CCHAR) then
  329. begin
  330. storetokenpos:=tokenpos;
  331. tokenpos:=declarepos;
  332. abssym:=new(pabsolutesym,init(s,p));
  333. s:=pattern;
  334. consume(token);
  335. abssym^.abstyp:=toasm;
  336. abssym^.asmname:=stringdup(s);
  337. tokenpos:=storetokenpos;
  338. symtablestack^.insert(abssym);
  339. end
  340. else
  341. { absolute address ?!? }
  342. if token=INTCONST then
  343. begin
  344. if (target_info.target=target_i386_go32v2) then
  345. begin
  346. storetokenpos:=tokenpos;
  347. tokenpos:=declarepos;
  348. abssym:=new(pabsolutesym,init(s,p));
  349. abssym^.abstyp:=toaddr;
  350. abssym^.absseg:=false;
  351. tokenpos:=storetokenpos;
  352. s:=pattern;
  353. consume(INTCONST);
  354. val(s,abssym^.address,code);
  355. if token=COLON then
  356. begin
  357. consume(token);
  358. s:=pattern;
  359. consume(INTCONST);
  360. val(s,l,code);
  361. abssym^.address:=abssym^.address shl 4+l;
  362. abssym^.absseg:=true;
  363. end;
  364. symtablestack^.insert(abssym);
  365. end
  366. else
  367. Message(parser_e_absolute_only_to_var_or_const);
  368. end
  369. else
  370. Message(parser_e_absolute_only_to_var_or_const);
  371. symdone:=true;
  372. end;
  373. { Handling of Delphi typed const = initialized vars ! }
  374. { When should this be rejected ?
  375. - in parasymtable
  376. - in record or object
  377. - ... (PM) }
  378. if (m_delphi in aktmodeswitches) and (token=EQUAL) and
  379. not (symtablestack^.symtabletype in [parasymtable]) and
  380. not is_record and not is_object then
  381. begin
  382. storetokenpos:=tokenpos;
  383. s:=sc^.get_with_tokeninfo(tokenpos);
  384. if not sc^.empty then
  385. Message(parser_e_initialized_only_one_var);
  386. pconstsym:=new(ptypedconstsym,init(s,p,false));
  387. tokenpos:=storetokenpos;
  388. symtablestack^.insert(pconstsym);
  389. consume(EQUAL);
  390. readtypedconst(p,pconstsym,false);
  391. symdone:=true;
  392. end;
  393. { for a record there doesn't need to be a ; before the END or ) }
  394. if not((is_record or is_object) and (token in [_END,RKLAMMER])) then
  395. consume(SEMICOLON);
  396. { procvar handling }
  397. if (p^.deftype=procvardef) and (p^.sym=nil) then
  398. begin
  399. newtype:=new(ptypesym,init('unnamed',p));
  400. parse_var_proc_directives(newtype);
  401. newtype^.definition:=nil;
  402. p^.sym:=nil;
  403. dispose(newtype,done);
  404. end;
  405. { Check for variable directives }
  406. if not symdone and (token=ID) then
  407. begin
  408. { Check for C Variable declarations }
  409. if (m_cvar_support in aktmodeswitches) and
  410. not(is_record or is_object or is_threadvar) and
  411. (idtoken in [_EXPORT,_EXTERNAL,_PUBLIC,_CVAR]) then
  412. begin
  413. { only allowed for one var }
  414. s:=sc^.get_with_tokeninfo(declarepos);
  415. if not sc^.empty then
  416. Message(parser_e_absolute_only_one_var);
  417. dispose(sc,done);
  418. { defaults }
  419. is_dll:=false;
  420. is_cdecl:=false;
  421. extern_aktvarsym:=false;
  422. export_aktvarsym:=false;
  423. { cdecl }
  424. if idtoken=_CVAR then
  425. begin
  426. consume(_CVAR);
  427. consume(SEMICOLON);
  428. is_cdecl:=true;
  429. C_name:=target_os.Cprefix+C_name;
  430. end;
  431. { external }
  432. if idtoken=_EXTERNAL then
  433. begin
  434. consume(_EXTERNAL);
  435. extern_aktvarsym:=true;
  436. end;
  437. { export }
  438. if idtoken in [_EXPORT,_PUBLIC] then
  439. begin
  440. consume(ID);
  441. if extern_aktvarsym then
  442. Message(parser_e_not_external_and_export)
  443. else
  444. export_aktvarsym:=true;
  445. end;
  446. { external and export need a name after when no cdecl is used }
  447. if not is_cdecl then
  448. begin
  449. { dll name ? }
  450. if (extern_aktvarsym) and (idtoken<>_NAME) then
  451. begin
  452. is_dll:=true;
  453. dll_name:=get_stringconst;
  454. end;
  455. consume(_NAME);
  456. C_name:=get_stringconst;
  457. end;
  458. { consume the ; when export or external is used }
  459. if extern_aktvarsym or export_aktvarsym then
  460. consume(SEMICOLON);
  461. { insert in the symtable }
  462. storetokenpos:=tokenpos;
  463. tokenpos:=declarepos;
  464. if is_dll then
  465. aktvarsym:=new(pvarsym,init_dll(s,p))
  466. else
  467. aktvarsym:=new(pvarsym,init_C(s,C_name,p));
  468. tokenpos:=storetokenpos;
  469. { set some vars options }
  470. if export_aktvarsym then
  471. inc(aktvarsym^.refs);
  472. if extern_aktvarsym then
  473. aktvarsym^.var_options:=aktvarsym^.var_options or vo_is_external;
  474. { insert in the stack/datasegment }
  475. symtablestack^.insert(aktvarsym);
  476. { now we can insert it in the import lib if its a dll, or
  477. add it to the externals }
  478. if extern_aktvarsym then
  479. begin
  480. if is_dll then
  481. begin
  482. if not(current_module^.uses_imports) then
  483. begin
  484. current_module^.uses_imports:=true;
  485. importlib^.preparelib(current_module^.modulename^);
  486. end;
  487. importlib^.importvariable(aktvarsym^.mangledname,dll_name,C_name)
  488. end
  489. else
  490. concat_external(aktvarsym^.mangledname,EXT_NEAR);
  491. end;
  492. symdone:=true;
  493. end
  494. else
  495. if (is_object) and (cs_static_keyword in aktmoduleswitches) and (idtoken=_STATIC) then
  496. begin
  497. current_object_option:=current_object_option or sp_static;
  498. insert_syms(symtablestack,sc,p,false);
  499. current_object_option:=current_object_option - sp_static;
  500. consume(_STATIC);
  501. consume(SEMICOLON);
  502. symdone:=true;
  503. end;
  504. end;
  505. { insert it in the symtable, if not done yet }
  506. if not symdone then
  507. begin
  508. if (current_object_option=sp_published) and
  509. (not((p^.deftype=objectdef) and (pobjectdef(p)^.isclass))) then
  510. Message(parser_e_cant_publish_that);
  511. insert_syms(symtablestack,sc,p,is_threadvar);
  512. end;
  513. end;
  514. { Check for Case }
  515. if is_record and (token=_CASE) then
  516. begin
  517. maxsize:=0;
  518. consume(_CASE);
  519. s:=pattern;
  520. getsym(s,false);
  521. { may be only a type: }
  522. if assigned(srsym) and (srsym^.typ in [typesym,unitsym]) then
  523. casedef:=read_type('')
  524. else
  525. begin
  526. consume(ID);
  527. consume(COLON);
  528. casedef:=read_type('');
  529. symtablestack^.insert(new(pvarsym,init(s,casedef)));
  530. end;
  531. if not is_ordinal(casedef) then
  532. Message(type_e_ordinal_expr_expected);
  533. consume(_OF);
  534. startvarrec:=symtablestack^.datasize;
  535. repeat
  536. repeat
  537. pt:=comp_expr(true);
  538. do_firstpass(pt);
  539. if not(pt^.treetype=ordconstn) then
  540. Message(cg_e_illegal_expression);
  541. disposetree(pt);
  542. if token=COMMA then
  543. consume(COMMA)
  544. else
  545. break;
  546. until false;
  547. consume(COLON);
  548. { read the vars }
  549. consume(LKLAMMER);
  550. if token<>RKLAMMER then
  551. read_var_decs(true,false,false);
  552. consume(RKLAMMER);
  553. { calculates maximal variant size }
  554. maxsize:=max(maxsize,symtablestack^.datasize);
  555. { the items of the next variant are overlayed }
  556. symtablestack^.datasize:=startvarrec;
  557. if (token<>_END) and (token<>RKLAMMER) then
  558. consume(SEMICOLON)
  559. else
  560. break;
  561. until (token=_END) or (token=RKLAMMER);
  562. { at last set the record size to that of the biggest variant }
  563. symtablestack^.datasize:=maxsize;
  564. end;
  565. block_type:=old_block_type;
  566. end;
  567. function stringtype : pdef;
  568. { reads a string type with optional length }
  569. { and returns a pointer to the string }
  570. { definition }
  571. var
  572. p : ptree;
  573. d : pdef;
  574. begin
  575. consume(_STRING);
  576. if token=LECKKLAMMER then
  577. begin
  578. consume(LECKKLAMMER);
  579. p:=comp_expr(true);
  580. do_firstpass(p);
  581. if not is_constintnode(p) then
  582. Message(cg_e_illegal_expression);
  583. if (p^.value<=0) then
  584. begin
  585. Message(parser_e_invalid_string_size);
  586. p^.value:=255;
  587. end;
  588. consume(RECKKLAMMER);
  589. if p^.value>255 then
  590. d:=new(pstringdef,longinit(p^.value))
  591. else
  592. if p^.value<>255 then
  593. d:=new(pstringdef,shortinit(p^.value))
  594. else
  595. d:=cshortstringdef;
  596. disposetree(p);
  597. end
  598. else
  599. begin
  600. if cs_ansistrings in aktlocalswitches then
  601. d:=cansistringdef
  602. else
  603. d:=cshortstringdef;
  604. end;
  605. stringtype:=d;
  606. end;
  607. function id_type(var s : string) : pdef;
  608. { reads a type definition and returns a pointer }
  609. { to a appropriating pdef, s gets the name of }
  610. { the type to allow name mangling }
  611. begin
  612. s:=pattern;
  613. consume(ID);
  614. { classes can be used also in classes }
  615. if (curobjectname=pattern) and aktobjectdef^.isclass then
  616. begin
  617. id_type:=aktobjectdef;
  618. exit;
  619. end;
  620. { objects can be parameters }
  621. if (testcurobject=2) and (curobjectname=pattern) then
  622. begin
  623. id_type:=aktobjectdef;
  624. exit;
  625. end;
  626. getsym(s,true);
  627. if assigned(srsym) then
  628. begin
  629. if srsym^.typ=unitsym then
  630. begin
  631. consume(POINT);
  632. getsymonlyin(punitsym(srsym)^.unitsymtable,pattern);
  633. s:=pattern;
  634. consume(ID);
  635. end;
  636. if not assigned(srsym) or
  637. (srsym^.typ<>typesym) then
  638. begin
  639. Message(type_e_type_id_expected);
  640. lasttypesym:=ptypesym(srsym);
  641. id_type:=generrordef;
  642. exit;
  643. end;
  644. if not forwardsallowed then
  645. testforward_type(srsym);
  646. end;
  647. lasttypesym:=ptypesym(srsym);
  648. id_type:=ptypesym(srsym)^.definition;
  649. end;
  650. function single_type(var s : string) : pdef;
  651. { reads a string, file type or a type id and returns a name and }
  652. { pdef }
  653. var
  654. hs : string;
  655. begin
  656. case token of
  657. _STRING:
  658. begin
  659. single_type:=stringtype;
  660. s:='STRING';
  661. lasttypesym:=nil;
  662. end;
  663. _FILE:
  664. begin
  665. consume(_FILE);
  666. if token=_OF then
  667. begin
  668. consume(_OF);
  669. single_type:=new(pfiledef,init(ft_typed,single_type(hs)));
  670. s:='FILE$OF$'+hs;
  671. end
  672. else
  673. begin
  674. { single_type:=new(pfiledef,init(ft_untyped,nil));}
  675. single_type:=cfiledef;
  676. s:='FILE';
  677. end;
  678. lasttypesym:=nil;
  679. end;
  680. else single_type:=id_type(s);
  681. end;
  682. end;
  683. function object_dec(const n : stringid;fd : pobjectdef) : pdef;
  684. { this function parses an object or class declaration }
  685. var
  686. actmembertype : symprop;
  687. there_is_a_destructor : boolean;
  688. is_a_class : boolean;
  689. childof : pobjectdef;
  690. aktclass : pobjectdef;
  691. procedure constructor_head;
  692. begin
  693. consume(_CONSTRUCTOR);
  694. { must be at same level as in implementation }
  695. inc(lexlevel);
  696. parse_proc_head(poconstructor);
  697. dec(lexlevel);
  698. if (cs_constructor_name in aktglobalswitches) and (aktprocsym^.name<>'INIT') then
  699. Message(parser_e_constructorname_must_be_init);
  700. aktclass^.options:=aktclass^.options or oo_hasconstructor;
  701. consume(SEMICOLON);
  702. begin
  703. if (aktclass^.options and oo_is_class)<>0 then
  704. begin
  705. { CLASS constructors return the created instance }
  706. aktprocsym^.definition^.retdef:=aktclass;
  707. end
  708. else
  709. begin
  710. { OBJECT constructors return a boolean }
  711. {$IfDef GDB}
  712. {GDB doesn't like unnamed types !}
  713. aktprocsym^.definition^.retdef:=
  714. globaldef('boolean');
  715. {$Else GDB}
  716. aktprocsym^.definition^.retdef:=
  717. new(porddef,init(bool8bit,0,1));
  718. {$Endif GDB}
  719. end;
  720. end;
  721. end;
  722. procedure property_dec;
  723. var
  724. sym : psym;
  725. propertyparas : pdefcoll;
  726. { returns the matching procedure to access a property }
  727. function get_procdef : pprocdef;
  728. var
  729. p : pprocdef;
  730. begin
  731. p:=pprocsym(sym)^.definition;
  732. get_procdef:=nil;
  733. while assigned(p) do
  734. begin
  735. if equal_paras(p^.para1,propertyparas,true) then
  736. break;
  737. p:=p^.nextoverloaded;
  738. end;
  739. get_procdef:=p;
  740. end;
  741. var
  742. hp2,datacoll : pdefcoll;
  743. p,p2 : ppropertysym;
  744. overriden : psym;
  745. hs : string;
  746. code : integer;
  747. varspez : tvarspez;
  748. sc : pstringcontainer;
  749. hp : pdef;
  750. s : string;
  751. declarepos : tfileposinfo;
  752. pp : pprocdef;
  753. pt : ptree;
  754. propname : stringid;
  755. begin
  756. { check for a class }
  757. if (aktclass^.options and oo_is_class=0) then
  758. Message(parser_e_syntax_error);
  759. consume(_PROPERTY);
  760. propertyparas:=nil;
  761. datacoll:=nil;
  762. if token=ID then
  763. begin
  764. p:=new(ppropertysym,init(pattern));
  765. propname:=pattern;
  766. consume(ID);
  767. { property parameters ? }
  768. if token=LECKKLAMMER then
  769. begin
  770. if current_object_option=sp_published then
  771. Message(parser_e_cant_publish_that_property);
  772. { create a list of the parameters in propertyparas }
  773. consume(LECKKLAMMER);
  774. inc(testcurobject);
  775. repeat
  776. if token=_VAR then
  777. begin
  778. consume(_VAR);
  779. varspez:=vs_var;
  780. end
  781. else if token=_CONST then
  782. begin
  783. consume(_CONST);
  784. varspez:=vs_const;
  785. end
  786. else varspez:=vs_value;
  787. sc:=idlist;
  788. if token=COLON then
  789. begin
  790. consume(COLON);
  791. if token=_ARRAY then
  792. begin
  793. {
  794. if (varspez<>vs_const) and
  795. (varspez<>vs_var) then
  796. begin
  797. varspez:=vs_const;
  798. Message(parser_e_illegal_open_parameter);
  799. end;
  800. }
  801. consume(_ARRAY);
  802. consume(_OF);
  803. { define range and type of range }
  804. hp:=new(parraydef,init(0,-1,s32bitdef));
  805. { define field type }
  806. parraydef(hp)^.definition:=single_type(s);
  807. end
  808. else
  809. hp:=single_type(s);
  810. end
  811. else
  812. hp:=cformaldef;
  813. s:=sc^.get_with_tokeninfo(declarepos);
  814. while s<>'' do
  815. begin
  816. new(hp2);
  817. hp2^.paratyp:=varspez;
  818. hp2^.data:=hp;
  819. hp2^.next:=propertyparas;
  820. propertyparas:=hp2;
  821. s:=sc^.get_with_tokeninfo(declarepos);
  822. end;
  823. dispose(sc,done);
  824. if token=SEMICOLON then consume(SEMICOLON)
  825. else break;
  826. until false;
  827. dec(testcurobject);
  828. consume(RECKKLAMMER);
  829. end;
  830. { overriden property ? }
  831. { force property interface, if there is a property parameter }
  832. if (token=COLON) or assigned(propertyparas) then
  833. begin
  834. consume(COLON);
  835. p^.proptype:=single_type(hs);
  836. if (idtoken=_INDEX) then
  837. begin
  838. consume(_INDEX);
  839. p^.options:=p^.options or ppo_indexed;
  840. if token=INTCONST then
  841. val(pattern,p^.index,code);
  842. consume(INTCONST);
  843. { concat a longint to the para template }
  844. new(hp2);
  845. hp2^.paratyp:=vs_value;
  846. hp2^.data:=s32bitdef;
  847. hp2^.next:=propertyparas;
  848. propertyparas:=hp2;
  849. end;
  850. end
  851. else
  852. begin
  853. { do an property override }
  854. overriden:=search_class_member(aktclass,propname);
  855. if assigned(overriden) and (overriden^.typ=propertysym) then
  856. begin
  857. { take the whole info: }
  858. p^.options:=ppropertysym(overriden)^.options;
  859. p^.index:=ppropertysym(overriden)^.index;
  860. p^.proptype:=ppropertysym(overriden)^.proptype;
  861. p^.writeaccesssym:=ppropertysym(overriden)^.writeaccesssym;
  862. p^.readaccesssym:=ppropertysym(overriden)^.readaccesssym;
  863. p^.writeaccessdef:=ppropertysym(overriden)^.writeaccessdef;
  864. p^.readaccessdef:=ppropertysym(overriden)^.readaccessdef;
  865. p^.storedsym:=ppropertysym(overriden)^.storedsym;
  866. p^.storeddef:=ppropertysym(overriden)^.storeddef;
  867. p^.default:=ppropertysym(overriden)^.default;
  868. end
  869. else
  870. begin
  871. p^.proptype:=generrordef;
  872. message(parser_e_no_property_found_to_override);
  873. end;
  874. end;
  875. if (current_object_option=sp_published) and
  876. not(p^.proptype^.is_publishable) then
  877. Message(parser_e_cant_publish_that_property);
  878. { create data defcoll to allow correct parameter checks }
  879. new(datacoll);
  880. datacoll^.paratyp:=vs_value;
  881. datacoll^.data:=p^.proptype;
  882. datacoll^.next:=nil;
  883. if (idtoken=_READ) then
  884. begin
  885. consume(_READ);
  886. sym:=search_class_member(aktclass,pattern);
  887. if not(assigned(sym)) then
  888. begin
  889. Message1(sym_e_unknown_id,pattern);
  890. consume(ID);
  891. end
  892. else
  893. begin
  894. consume(ID);
  895. if (token=POINT) and
  896. ((sym^.typ=varsym) and (pvarsym(sym)^.definition^.deftype=recorddef)) then
  897. begin
  898. consume(POINT);
  899. getsymonlyin(precdef(pvarsym(sym)^.definition)^.symtable,pattern);
  900. if not assigned(srsym) then
  901. Message1(sym_e_illegal_field,pattern);
  902. sym:=srsym;
  903. consume(ID);
  904. end;
  905. end;
  906. if assigned(sym) then
  907. begin
  908. { varsym aren't allowed for an indexed property
  909. or an property with parameters }
  910. if ((sym^.typ=varsym) and
  911. { not necessary, an index forces propertyparas
  912. to be assigned
  913. }
  914. { (((p^.options and ppo_indexed)<>0) or }
  915. assigned(propertyparas)) or
  916. not(sym^.typ in [varsym,procsym]) then
  917. Message(parser_e_ill_property_access_sym);
  918. { search the matching definition }
  919. if sym^.typ=procsym then
  920. begin
  921. pp:=get_procdef;
  922. if not(assigned(pp)) or
  923. not(is_equal(pp^.retdef,p^.proptype)) then
  924. Message(parser_e_ill_property_access_sym);
  925. p^.readaccessdef:=pp;
  926. end
  927. else if sym^.typ=varsym then
  928. begin
  929. if not(is_equal(pvarsym(sym)^.definition,
  930. p^.proptype)) then
  931. Message(parser_e_ill_property_access_sym);
  932. end;
  933. p^.readaccesssym:=sym;
  934. end;
  935. end;
  936. if (idtoken=_WRITE) then
  937. begin
  938. consume(_WRITE);
  939. sym:=search_class_member(aktclass,pattern);
  940. if not(assigned(sym)) then
  941. begin
  942. Message1(sym_e_unknown_id,pattern);
  943. consume(ID);
  944. end
  945. else
  946. begin
  947. consume(ID);
  948. if (token=POINT) and
  949. ((sym^.typ=varsym) and (pvarsym(sym)^.definition^.deftype=recorddef)) then
  950. begin
  951. consume(POINT);
  952. getsymonlyin(precdef(pvarsym(sym)^.definition)^.symtable,pattern);
  953. if not assigned(srsym) then
  954. Message1(sym_e_illegal_field,pattern);
  955. sym:=srsym;
  956. consume(ID);
  957. end;
  958. end;
  959. if assigned(sym) then
  960. begin
  961. if ((sym^.typ=varsym) and
  962. assigned(propertyparas)) or
  963. not(sym^.typ in [varsym,procsym]) then
  964. Message(parser_e_ill_property_access_sym);
  965. { search the matching definition }
  966. if sym^.typ=procsym then
  967. begin
  968. { insert data entry to check access method }
  969. datacoll^.next:=propertyparas;
  970. propertyparas:=datacoll;
  971. pp:=get_procdef;
  972. { ... and remove it }
  973. propertyparas:=propertyparas^.next;
  974. datacoll^.next:=nil;
  975. if not(assigned(pp)) then
  976. Message(parser_e_ill_property_access_sym);
  977. p^.writeaccessdef:=pp;
  978. end
  979. else if sym^.typ=varsym then
  980. begin
  981. if not(is_equal(pvarsym(sym)^.definition,
  982. p^.proptype)) then
  983. Message(parser_e_ill_property_access_sym);
  984. end;
  985. p^.writeaccesssym:=sym;
  986. end;
  987. end;
  988. if (idtoken=_STORED) then
  989. begin
  990. consume(_STORED);
  991. Message(parser_w_stored_not_implemented);
  992. { !!!!!!!! }
  993. end;
  994. if (idtoken=_DEFAULT) then
  995. begin
  996. consume(_DEFAULT);
  997. if not(is_ordinal(p^.proptype) or
  998. ((p^.proptype^.deftype=setdef) and
  999. (psetdef(p^.proptype)^.settype=smallset)
  1000. ) or
  1001. assigned(propertyparas)
  1002. ) then
  1003. Message(parser_e_property_cant_have_a_default_value);
  1004. pt:=comp_expr(true);
  1005. pt:=gentypeconvnode(pt,p^.proptype);
  1006. do_firstpass(pt);
  1007. if not(is_constnode(pt)) then
  1008. Message(parser_e_property_default_value_must_const);
  1009. if pt^.treetype=setconstn then
  1010. p^.default:=plongint(pt^.value_set)^
  1011. else
  1012. p^.default:=pt^.value;
  1013. disposetree(pt);
  1014. end
  1015. else if (idtoken=_NODEFAULT) then
  1016. begin
  1017. consume(_NODEFAULT);
  1018. p^.default:=0;
  1019. end;
  1020. symtablestack^.insert(p);
  1021. { default property ? }
  1022. consume(SEMICOLON);
  1023. if (idtoken=_DEFAULT) then
  1024. begin
  1025. consume(_DEFAULT);
  1026. p2:=search_default_property(aktclass);
  1027. if assigned(p2) then
  1028. message1(parser_e_only_one_default_property,
  1029. pobjectdef(p2^.owner^.defowner)^.objname^)
  1030. else
  1031. begin
  1032. p^.options:=p^.options or ppo_defaultproperty;
  1033. if not(assigned(propertyparas)) then
  1034. message(parser_e_property_need_paras);
  1035. end;
  1036. consume(SEMICOLON);
  1037. end;
  1038. { clean up }
  1039. if assigned(datacoll) then
  1040. disposepdefcoll(datacoll);
  1041. end
  1042. else
  1043. begin
  1044. consume(ID);
  1045. consume(SEMICOLON);
  1046. end;
  1047. if assigned(propertyparas) then
  1048. disposepdefcoll(propertyparas);
  1049. end;
  1050. procedure destructor_head;
  1051. begin
  1052. consume(_DESTRUCTOR);
  1053. inc(lexlevel);
  1054. parse_proc_head(podestructor);
  1055. dec(lexlevel);
  1056. if (cs_constructor_name in aktglobalswitches) and (aktprocsym^.name<>'DONE') then
  1057. Message(parser_e_destructorname_must_be_done);
  1058. aktclass^.options:=aktclass^.options or oo_hasdestructor;
  1059. consume(SEMICOLON);
  1060. if assigned(aktprocsym^.definition^.para1) then
  1061. Message(parser_e_no_paras_for_destructor);
  1062. { no return value }
  1063. aktprocsym^.definition^.retdef:=voiddef;
  1064. end;
  1065. var
  1066. hs : string;
  1067. pcrd : pclassrefdef;
  1068. hp1 : pdef;
  1069. oldprocsym : pprocsym;
  1070. oldparse_only : boolean;
  1071. intmessagetable,strmessagetable,classnamelabel : plabel;
  1072. storetypeforwardsallowed : boolean;
  1073. pt : ptree;
  1074. begin
  1075. {Nowadays aktprocsym may already have a value, so we need to save
  1076. it.}
  1077. oldprocsym:=aktprocsym;
  1078. { forward is resolved }
  1079. if assigned(fd) then
  1080. fd^.options:=fd^.options and not(oo_isforward);
  1081. there_is_a_destructor:=false;
  1082. actmembertype:=sp_public;
  1083. { objects and class types can't be declared local }
  1084. if (symtablestack^.symtabletype<>globalsymtable) and
  1085. (symtablestack^.symtabletype<>staticsymtable) then
  1086. Message(parser_e_no_local_objects);
  1087. storetypeforwardsallowed:=typecanbeforward;
  1088. if m_tp in aktmodeswitches then
  1089. typecanbeforward:=false;
  1090. { distinguish classes and objects }
  1091. if token=_OBJECT then
  1092. begin
  1093. is_a_class:=false;
  1094. consume(_OBJECT)
  1095. end
  1096. else
  1097. begin
  1098. is_a_class:=true;
  1099. consume(_CLASS);
  1100. if not(assigned(fd)) and (token=_OF) then
  1101. begin
  1102. { a hack, but it's easy to handle }
  1103. { class reference type }
  1104. consume(_OF);
  1105. if typecanbeforward then
  1106. forwardsallowed:=true;
  1107. hp1:=single_type(hs);
  1108. { accept hp1, if is a forward def ...}
  1109. if ((lasttypesym<>nil)
  1110. and ((lasttypesym^.properties and sp_forwarddef)<>0)) or
  1111. { or a class
  1112. (if the foward defined type is a class is checked, when
  1113. the forward is resolved)
  1114. }
  1115. ((hp1^.deftype=objectdef) and (
  1116. (pobjectdef(hp1)^.options and oo_is_class)<>0)) then
  1117. begin
  1118. pcrd:=new(pclassrefdef,init(hp1));
  1119. object_dec:=pcrd;
  1120. if assigned(lasttypesym) and ((lasttypesym^.properties and sp_forwarddef)<>0) then
  1121. lasttypesym^.addforwardpointer(ppointerdef(pcrd));
  1122. forwardsallowed:=false;
  1123. end
  1124. else
  1125. begin
  1126. Message(type_e_class_type_expected);
  1127. object_dec:=new(perrordef,init);
  1128. end;
  1129. typecanbeforward:=storetypeforwardsallowed;
  1130. exit;
  1131. end
  1132. { forward class }
  1133. else if not(assigned(fd)) and (token=SEMICOLON) then
  1134. begin
  1135. { also anonym objects aren't allow (o : object a : longint; end;) }
  1136. if n='' then
  1137. begin
  1138. Message(parser_f_no_anonym_objects)
  1139. end;
  1140. if n='TOBJECT' then
  1141. begin
  1142. aktclass:=new(pobjectdef,init(n,nil));
  1143. class_tobject:=aktclass;
  1144. end
  1145. else
  1146. aktclass:=new(pobjectdef,init(n,nil));
  1147. aktclass^.options:=aktclass^.options or oo_is_class or oo_isforward;
  1148. { all classes must have a vmt !! at offset zero }
  1149. if (aktclass^.options and oo_hasvmt)=0 then
  1150. aktclass^.insertvmt;
  1151. object_dec:=aktclass;
  1152. typecanbeforward:=storetypeforwardsallowed;
  1153. exit;
  1154. end;
  1155. end;
  1156. { also anonym objects aren't allow (o : object a : longint; end;) }
  1157. if n='' then
  1158. Message(parser_f_no_anonym_objects);
  1159. { read the parent class }
  1160. if token=LKLAMMER then
  1161. begin
  1162. consume(LKLAMMER);
  1163. { does not allow objects.tobject !! }
  1164. {if token<>ID then
  1165. consume(ID);
  1166. getsym(pattern,true);}
  1167. childof:=pobjectdef(id_type(pattern));
  1168. if (childof^.deftype<>objectdef) then
  1169. begin
  1170. Message(type_e_class_type_expected);
  1171. childof:=nil;
  1172. end
  1173. else
  1174. begin
  1175. { a mix of class and object isn't allowed }
  1176. if (((childof^.options and oo_is_class)<>0) and not is_a_class) or
  1177. (((childof^.options and oo_is_class)=0) and is_a_class) then
  1178. Message(parser_e_mix_of_classes_and_objects);
  1179. end;
  1180. if assigned(fd) then
  1181. begin
  1182. { the forward of the child must be resolved to get
  1183. correct field addresses
  1184. }
  1185. if (childof^.options and oo_isforward)<>0 then
  1186. Message1(parser_e_forward_declaration_must_be_resolved,childof^.objname^);
  1187. aktclass:=fd;
  1188. { we must inherit several options !!
  1189. this was missing !!
  1190. all is now done in set_parent
  1191. including symtable datasize setting PM }
  1192. fd^.set_parent(childof);
  1193. end
  1194. else
  1195. aktclass:=new(pobjectdef,init(n,childof));
  1196. consume(RKLAMMER);
  1197. end
  1198. { if no parent class, then a class get tobject as parent }
  1199. else if is_a_class then
  1200. begin
  1201. { is the current class tobject? }
  1202. { so you could define your own tobject }
  1203. if n='TOBJECT' then
  1204. begin
  1205. if assigned(fd) then
  1206. aktclass:=fd
  1207. else
  1208. aktclass:=new(pobjectdef,init(n,nil));
  1209. class_tobject:=aktclass;
  1210. end
  1211. else
  1212. begin
  1213. childof:=class_tobject;
  1214. if assigned(fd) then
  1215. begin
  1216. { the forward of the child must be resolved to get
  1217. correct field addresses
  1218. }
  1219. if (childof^.options and oo_isforward)<>0 then
  1220. Message1(parser_e_forward_declaration_must_be_resolved,childof^.objname^);
  1221. aktclass:=fd;
  1222. aktclass^.set_parent(childof);
  1223. end
  1224. else
  1225. begin
  1226. aktclass:=new(pobjectdef,init(n,childof));
  1227. aktclass^.set_parent(childof);
  1228. end;
  1229. end;
  1230. end
  1231. else
  1232. aktclass:=new(pobjectdef,init(n,nil));
  1233. { set the class attribute }
  1234. if is_a_class then
  1235. begin
  1236. aktclass^.options:=aktclass^.options or oo_is_class;
  1237. if (cs_generate_rtti in aktlocalswitches) or
  1238. (assigned(aktclass^.childof) and
  1239. ((aktclass^.childof^.options and oo_can_have_published)<>0)
  1240. ) then
  1241. aktclass^.options:=aktclass^.options or oo_can_have_published;
  1242. end;
  1243. aktobjectdef:=aktclass;
  1244. { default access is public }
  1245. actmembertype:=sp_public;
  1246. aktclass^.publicsyms^.next:=symtablestack;
  1247. symtablestack:=aktclass^.publicsyms;
  1248. procinfo._class:=aktclass;
  1249. testcurobject:=1;
  1250. curobjectname:=n;
  1251. { short class declaration ? }
  1252. if (not is_a_class) or (token<>SEMICOLON) then
  1253. begin
  1254. { Parse componenten }
  1255. repeat
  1256. if actmembertype=sp_private then
  1257. aktclass^.options:=aktclass^.options or oo_hasprivate;
  1258. if actmembertype=sp_protected then
  1259. aktclass^.options:=aktclass^.options or oo_hasprotected;
  1260. case token of
  1261. ID : begin
  1262. case idtoken of
  1263. _PRIVATE : begin
  1264. consume(_PRIVATE);
  1265. actmembertype:=sp_private;
  1266. current_object_option:=sp_private;
  1267. end;
  1268. _PROTECTED : begin
  1269. consume(_PROTECTED);
  1270. current_object_option:=sp_protected;
  1271. actmembertype:=sp_protected;
  1272. end;
  1273. _PUBLIC : begin
  1274. consume(_PUBLIC);
  1275. current_object_option:=sp_public;
  1276. actmembertype:=sp_public;
  1277. end;
  1278. _PUBLISHED : begin
  1279. if (aktclass^.options and oo_can_have_published)=0 then
  1280. Message(parser_e_cant_have_published);
  1281. consume(_PUBLISHED);
  1282. current_object_option:=sp_published;
  1283. actmembertype:=sp_published;
  1284. end;
  1285. else
  1286. read_var_decs(false,true,false);
  1287. end;
  1288. end;
  1289. _PROPERTY : property_dec;
  1290. _PROCEDURE,
  1291. _FUNCTION,
  1292. _CLASS : begin
  1293. oldparse_only:=parse_only;
  1294. parse_only:=true;
  1295. parse_proc_dec;
  1296. if idtoken=_MESSAGE then
  1297. begin
  1298. { check parameter type }
  1299. if ((aktprocsym^.definition^.options and pocontainsself)=0) and
  1300. (assigned(aktprocsym^.definition^.para1^.next) or
  1301. (aktprocsym^.definition^.para1^.paratyp<>vs_var)) then
  1302. Message(parser_e_ill_msg_param);
  1303. consume(idtoken);
  1304. pt:=comp_expr(true);
  1305. do_firstpass(pt);
  1306. if pt^.treetype=stringconstn then
  1307. begin
  1308. aktclass^.options:=aktclass^.options or oo_hasmsgstr;
  1309. aktprocsym^.definition^.options:=
  1310. aktprocsym^.definition^.options or pomsgstr;
  1311. aktprocsym^.definition^.messageinf.str:=strnew(pt^.value_str);
  1312. end
  1313. else if is_constintnode(pt) then
  1314. begin
  1315. aktclass^.options:=aktclass^.options or oo_hasmsgint;
  1316. aktprocsym^.definition^.options:=
  1317. aktprocsym^.definition^.options or pomsgint;
  1318. aktprocsym^.definition^.messageinf.i:=pt^.value;
  1319. end
  1320. else
  1321. Message(parser_e_ill_msg_expr);
  1322. disposetree(pt);
  1323. consume(SEMICOLON);
  1324. end
  1325. else
  1326. begin
  1327. {$ifdef OLDOBJECTOPTIONS}
  1328. case idtoken of
  1329. _DYNAMIC,
  1330. _VIRTUAL : begin
  1331. if actmembertype=sp_private then
  1332. Message(parser_w_priv_meth_not_virtual);
  1333. consume(idtoken);
  1334. consume(SEMICOLON);
  1335. aktprocsym^.definition^.options:=aktprocsym^.definition^.options or povirtualmethod;
  1336. aktclass^.options:=aktclass^.options or oo_hasvirtual;
  1337. end;
  1338. _OVERRIDE : begin
  1339. consume(_OVERRIDE);
  1340. consume(SEMICOLON);
  1341. aktprocsym^.definition^.options:=aktprocsym^.definition^.options or
  1342. pooverridingmethod or povirtualmethod;
  1343. end;
  1344. end;
  1345. if idtoken=_ABSTRACT then
  1346. begin
  1347. if (aktprocsym^.definition^.options and povirtualmethod)<>0 then
  1348. aktprocsym^.definition^.options:=aktprocsym^.definition^.options or poabstractmethod
  1349. else
  1350. Message(parser_e_only_virtual_methods_abstract);
  1351. consume(_ABSTRACT);
  1352. consume(SEMICOLON);
  1353. { the method is defined }
  1354. aktprocsym^.definition^.forwarddef:=false;
  1355. end;
  1356. if (cs_static_keyword in aktglobalswitches) and (idtoken=_STATIC) then
  1357. begin
  1358. consume(_STATIC);
  1359. consume(SEMICOLON);
  1360. aktprocsym^.properties:=aktprocsym^.properties or sp_static;
  1361. aktprocsym^.definition^.options:=aktprocsym^.definition^.options or postaticmethod;
  1362. end;
  1363. {$else OLDOBJECTOPTIONS}
  1364. parse_object_proc_directives(aktprocsym);
  1365. {$endif def OLDOBJECTOPTIONS}
  1366. end;
  1367. parse_only:=oldparse_only;
  1368. end;
  1369. _CONSTRUCTOR : begin
  1370. if actmembertype<>sp_public then
  1371. Message(parser_w_constructor_should_be_public);
  1372. oldparse_only:=parse_only;
  1373. parse_only:=true;
  1374. constructor_head;
  1375. {$ifdef OLDOBJECTOPTIONS}
  1376. case idtoken of
  1377. _DYNAMIC,
  1378. _VIRTUAL : begin
  1379. if not(aktclass^.isclass) then
  1380. Message(parser_e_constructor_cannot_be_not_virtual)
  1381. else
  1382. begin
  1383. aktprocsym^.definition^.options:=aktprocsym^.definition^.options or povirtualmethod;
  1384. aktclass^.options:=aktclass^.options or oo_hasvirtual;
  1385. end;
  1386. consume(idtoken);
  1387. consume(SEMICOLON);
  1388. end;
  1389. _OVERRIDE : begin
  1390. if (aktclass^.options and oo_is_class=0) then
  1391. Message(parser_e_constructor_cannot_be_not_virtual)
  1392. else
  1393. aktprocsym^.definition^.options:=aktprocsym^.definition^.options or
  1394. pooverridingmethod or povirtualmethod;
  1395. consume(_OVERRIDE);
  1396. consume(SEMICOLON);
  1397. end;
  1398. end;
  1399. {$else OLDOBJECTOPTIONS}
  1400. parse_object_proc_directives(aktprocsym);
  1401. {$endif def OLDOBJECTOPTIONS}
  1402. parse_only:=oldparse_only;
  1403. end;
  1404. _DESTRUCTOR : begin
  1405. if there_is_a_destructor then
  1406. Message(parser_n_only_one_destructor);
  1407. there_is_a_destructor:=true;
  1408. if actmembertype<>sp_public then
  1409. Message(parser_w_destructor_should_be_public);
  1410. oldparse_only:=parse_only;
  1411. parse_only:=true;
  1412. destructor_head;
  1413. {$ifdef OLDOBJECTOPTIONS}
  1414. case idtoken of
  1415. _DYNAMIC,
  1416. _VIRTUAL : begin
  1417. consume(idtoken);
  1418. consume(SEMICOLON);
  1419. aktprocsym^.definition^.options:=aktprocsym^.definition^.options or povirtualmethod;
  1420. aktclass^.options:=aktclass^.options or oo_hasvirtual;
  1421. end;
  1422. _OVERRIDE : begin
  1423. consume(_OVERRIDE);
  1424. consume(SEMICOLON);
  1425. aktprocsym^.definition^.options:=aktprocsym^.definition^.options or
  1426. pooverridingmethod or povirtualmethod;
  1427. end;
  1428. end;
  1429. {$else OLDOBJECTOPTIONS}
  1430. parse_object_proc_directives(aktprocsym);
  1431. {$endif def OLDOBJECTOPTIONS}
  1432. parse_only:=oldparse_only;
  1433. end;
  1434. _END : begin
  1435. consume(_END);
  1436. break;
  1437. end;
  1438. else
  1439. consume(ID); { Give a ident expected message, like tp7 }
  1440. end;
  1441. until false;
  1442. current_object_option:=sp_public;
  1443. end;
  1444. testcurobject:=0;
  1445. curobjectname:='';
  1446. typecanbeforward:=storetypeforwardsallowed;
  1447. { generate vmt space if needed }
  1448. if ((aktclass^.options and
  1449. (oo_hasvirtual or oo_hasconstructor or
  1450. oo_hasdestructor or oo_is_class))<>0) and
  1451. ((aktclass^.options and
  1452. oo_hasvmt)=0) then
  1453. aktclass^.insertvmt;
  1454. if (cs_smartlink in aktmoduleswitches) then
  1455. datasegment^.concat(new(pai_cut,init));
  1456. { write extended info for classes }
  1457. if is_a_class then
  1458. begin
  1459. if (aktclass^.options and oo_can_have_published)<>0 then
  1460. aktclass^.generate_rtti;
  1461. { write class name }
  1462. getlabel(classnamelabel);
  1463. datasegment^.concat(new(pai_label,init(classnamelabel)));
  1464. datasegment^.concat(new(pai_const,init_8bit(length(aktclass^.objname^))));
  1465. datasegment^.concat(new(pai_string,init(aktclass^.objname^)));
  1466. { generate message and dynamic tables }
  1467. { why generate those if empty ??? }
  1468. if (aktclass^.options and oo_hasmsgstr)<>0 then
  1469. strmessagetable:=genstrmsgtab(aktclass);
  1470. if (aktclass^.options and oo_hasmsgint)<>0 then
  1471. intmessagetable:=genintmsgtab(aktclass);
  1472. { table for string messages }
  1473. if (aktclass^.options and oo_hasmsgstr)<>0 then
  1474. datasegment^.concat(new(pai_const_symbol,init(lab2str(strmessagetable))))
  1475. else
  1476. datasegment^.concat(new(pai_const,init_32bit(0)));
  1477. { interface table }
  1478. datasegment^.concat(new(pai_const,init_32bit(0)));
  1479. { auto table }
  1480. datasegment^.concat(new(pai_const,init_32bit(0)));
  1481. { inittable for con-/destruction }
  1482. if aktclass^.needs_inittable then
  1483. datasegment^.concat(new(pai_const_symbol,init(lab2str(aktclass^.get_inittable_label))))
  1484. else
  1485. datasegment^.concat(new(pai_const,init_32bit(0)));
  1486. { pointer to type info of published section }
  1487. if (aktclass^.options and oo_can_have_published)<>0 then
  1488. datasegment^.concat(new(pai_const_symbol,init(aktclass^.rtti_name)))
  1489. else
  1490. datasegment^.concat(new(pai_const,init_32bit(0)));
  1491. { pointer to field table }
  1492. datasegment^.concat(new(pai_const,init_32bit(0)));
  1493. { pointer to method table }
  1494. datasegment^.concat(new(pai_const,init_32bit(0)));
  1495. { pointer to dynamic table }
  1496. if (aktclass^.options and oo_hasmsgint)<>0 then
  1497. datasegment^.concat(new(pai_const_symbol,init(lab2str(intmessagetable))))
  1498. else
  1499. datasegment^.concat(new(pai_const,init_32bit(0)));
  1500. { pointer to class name string }
  1501. datasegment^.concat(new(pai_const_symbol,init(lab2str(classnamelabel))));
  1502. end;
  1503. {$ifdef GDB}
  1504. { generate the VMT }
  1505. if (cs_debuginfo in aktmoduleswitches) and
  1506. ((aktclass^.options and oo_hasvmt)<>0) then
  1507. begin
  1508. do_count_dbx:=true;
  1509. if assigned(aktclass^.owner) and assigned(aktclass^.owner^.name) then
  1510. datasegment^.concat(new(pai_stabs,init(strpnew('"vmt_'+aktclass^.owner^.name^+n+':S'+
  1511. typeglobalnumber('__vtbl_ptr_type')+'",'+tostr(N_STSYM)+',0,0,'+aktclass^.vmt_mangledname))));
  1512. end;
  1513. {$endif GDB}
  1514. if ((aktclass^.options and oo_hasvmt)<>0) then
  1515. begin
  1516. datasegment^.concat(new(pai_symbol,init_global(aktclass^.vmt_mangledname)));
  1517. { determine the size with publicsyms^.datasize, because }
  1518. { size gives back 4 for classes }
  1519. datasegment^.concat(new(pai_const,init_32bit(aktclass^.publicsyms^.datasize)));
  1520. datasegment^.concat(new(pai_const,init_32bit(-aktclass^.publicsyms^.datasize)));
  1521. { write pointer to parent VMT, this isn't implemented in TP }
  1522. { but this is not used in FPC ? (PM) }
  1523. { it's not used yet, but the delphi-operators as and is need it (FK) }
  1524. { it is not written for parents that don't have any vmt !! }
  1525. if assigned(aktclass^.childof) and
  1526. ((aktclass^.childof^.options and oo_hasvmt)<>0) then
  1527. begin
  1528. datasegment^.concat(new(pai_const_symbol,init(aktclass^.childof^.vmt_mangledname)));
  1529. if aktclass^.childof^.owner^.symtabletype=unitsymtable then
  1530. concat_external(aktclass^.childof^.vmt_mangledname,EXT_NEAR);
  1531. end
  1532. else
  1533. datasegment^.concat(new(pai_const,init_32bit(0)));
  1534. { this generates the entries }
  1535. genvmt(aktclass);
  1536. end;
  1537. { restore old state }
  1538. symtablestack:=symtablestack^.next;
  1539. procinfo._class:=nil;
  1540. aktobjectdef:=nil;
  1541. {Restore the aktprocsym.}
  1542. aktprocsym:=oldprocsym;
  1543. object_dec:=aktclass;
  1544. end;
  1545. { reads a record declaration }
  1546. function record_dec : pdef;
  1547. var
  1548. symtable : psymtable;
  1549. storetypeforwardsallowed : boolean;
  1550. begin
  1551. symtable:=new(psymtable,init(recordsymtable));
  1552. symtable^.next:=symtablestack;
  1553. symtablestack:=symtable;
  1554. consume(_RECORD);
  1555. storetypeforwardsallowed:=typecanbeforward;
  1556. if m_tp in aktmodeswitches then
  1557. typecanbeforward:=false;
  1558. read_var_decs(true,false,false);
  1559. { may be scale record size to a size of n*4 ? }
  1560. if ((symtablestack^.datasize mod aktpackrecords)<>0) then
  1561. inc(symtablestack^.datasize,aktpackrecords-(symtablestack^.datasize mod aktpackrecords));
  1562. consume(_END);
  1563. typecanbeforward:=storetypeforwardsallowed;
  1564. symtablestack:=symtable^.next;
  1565. record_dec:=new(precdef,init(symtable));
  1566. end;
  1567. { reads a type definition and returns a pointer to it }
  1568. function read_type(const name : stringid) : pdef;
  1569. function handle_procvar:Pprocvardef;
  1570. var
  1571. sc : pstringcontainer;
  1572. s : string;
  1573. p : pdef;
  1574. varspez : tvarspez;
  1575. procvardef : pprocvardef;
  1576. begin
  1577. procvardef:=new(pprocvardef,init);
  1578. if token=LKLAMMER then
  1579. begin
  1580. consume(LKLAMMER);
  1581. inc(testcurobject);
  1582. repeat
  1583. case token of
  1584. _VAR :
  1585. begin
  1586. consume(_VAR);
  1587. varspez:=vs_var;
  1588. end;
  1589. _CONST :
  1590. begin
  1591. consume(_CONST);
  1592. varspez:=vs_const;
  1593. end;
  1594. else
  1595. varspez:=vs_value;
  1596. end;
  1597. sc:=idlist;
  1598. if (token=COLON) or (varspez=vs_value) then
  1599. begin
  1600. consume(COLON);
  1601. if token=_ARRAY then
  1602. begin
  1603. consume(_ARRAY);
  1604. consume(_OF);
  1605. { define range and type of range }
  1606. p:=new(Parraydef,init(0,-1,s32bitdef));
  1607. { array of const ? }
  1608. if (token=_CONST) and (m_objpas in aktmodeswitches) then
  1609. begin
  1610. consume(_CONST);
  1611. srsym:=nil;
  1612. if assigned(objpasunit) then
  1613. getsymonlyin(objpasunit,'TVARREC');
  1614. if not assigned(srsym) then
  1615. InternalError(1234124);
  1616. Parraydef(p)^.definition:=ptypesym(srsym)^.definition;
  1617. Parraydef(p)^.IsArrayOfConst:=true;
  1618. end
  1619. else
  1620. begin
  1621. { define field type }
  1622. Parraydef(p)^.definition:=single_type(s);
  1623. end;
  1624. end
  1625. else
  1626. p:=single_type(s);
  1627. end
  1628. else
  1629. p:=cformaldef;
  1630. while not sc^.empty do
  1631. begin
  1632. s:=sc^.get;
  1633. procvardef^.concatdef(p,varspez);
  1634. end;
  1635. dispose(sc,done);
  1636. if token=SEMICOLON then
  1637. consume(SEMICOLON)
  1638. else
  1639. break;
  1640. until false;
  1641. dec(testcurobject);
  1642. consume(RKLAMMER);
  1643. end;
  1644. handle_procvar:=procvardef;
  1645. end;
  1646. var
  1647. hp1,p : pdef;
  1648. aufdef : penumdef;
  1649. aufsym : penumsym;
  1650. ap : parraydef;
  1651. s : stringid;
  1652. l,v,oldaktpackrecords : longint;
  1653. hs : string;
  1654. procedure expr_type;
  1655. var
  1656. pt1,pt2 : ptree;
  1657. begin
  1658. { use of current parsed object ? }
  1659. if (token=ID) and (testcurobject=2) and (curobjectname=pattern) then
  1660. begin
  1661. consume(ID);
  1662. p:=aktobjectdef;
  1663. exit;
  1664. end;
  1665. { we can't accept a equal in type }
  1666. pt1:=comp_expr(not(ignore_equal));
  1667. do_firstpass(pt1);
  1668. if (token=POINTPOINT) then
  1669. begin
  1670. consume(POINTPOINT);
  1671. { get high value of range }
  1672. pt2:=comp_expr(not(ignore_equal));
  1673. do_firstpass(pt2);
  1674. { both must be evaluated to constants now }
  1675. if (pt1^.treetype<>ordconstn) or (pt2^.treetype<>ordconstn) then
  1676. Message(sym_e_error_in_type_def)
  1677. else
  1678. begin
  1679. { check types }
  1680. if not is_equal(pt1^.resulttype,pt2^.resulttype) then
  1681. Message(type_e_mismatch)
  1682. else
  1683. begin
  1684. { Check bounds }
  1685. if pt2^.value<pt1^.value then
  1686. Message(cg_e_upper_lower_than_lower)
  1687. else
  1688. begin
  1689. { All checks passed, create the new def }
  1690. case pt1^.resulttype^.deftype of
  1691. enumdef : p:=new(penumdef,init_subrange(penumdef(pt1^.resulttype),pt1^.value,pt2^.value));
  1692. orddef : begin
  1693. if is_char(pt1^.resulttype) then
  1694. p:=new(porddef,init(uchar,pt1^.value,pt2^.value))
  1695. else
  1696. if is_boolean(pt1^.resulttype) then
  1697. p:=new(porddef,init(bool8bit,pt1^.value,pt2^.value))
  1698. else
  1699. p:=new(porddef,init(uauto,pt1^.value,pt2^.value));
  1700. end;
  1701. end;
  1702. end;
  1703. end;
  1704. end;
  1705. disposetree(pt2);
  1706. end
  1707. else
  1708. begin
  1709. { a simple type renaming }
  1710. if (pt1^.treetype=typen) then
  1711. p:=pt1^.resulttype
  1712. else
  1713. Message(sym_e_error_in_type_def);
  1714. end;
  1715. disposetree(pt1);
  1716. end;
  1717. var
  1718. pt : ptree;
  1719. procedure array_dec;
  1720. var
  1721. lowval,
  1722. highval : longint;
  1723. arraytype : pdef;
  1724. begin
  1725. consume(_ARRAY);
  1726. consume(LECKKLAMMER);
  1727. { defaults }
  1728. arraytype:=generrordef;
  1729. lowval:=$80000000;
  1730. highval:=$7fffffff;
  1731. p:=nil;
  1732. repeat
  1733. { read the expression and check it }
  1734. pt:=expr;
  1735. if pt^.treetype=typen then
  1736. begin
  1737. case pt^.resulttype^.deftype of
  1738. enumdef :
  1739. begin
  1740. lowval:=penumdef(pt^.resulttype)^.min;
  1741. highval:=penumdef(pt^.resulttype)^.max;
  1742. arraytype:=pt^.resulttype;
  1743. end;
  1744. orddef :
  1745. begin
  1746. lowval:=porddef(pt^.resulttype)^.low;
  1747. highval:=porddef(pt^.resulttype)^.high;
  1748. arraytype:=pt^.resulttype;
  1749. end;
  1750. else
  1751. Message(sym_e_error_in_type_def);
  1752. end;
  1753. end
  1754. else
  1755. begin
  1756. do_firstpass(pt);
  1757. if (pt^.treetype=rangen) then
  1758. begin
  1759. if (pt^.left^.treetype=ordconstn) and
  1760. (pt^.right^.treetype=ordconstn) then
  1761. begin
  1762. lowval:=pt^.left^.value;
  1763. highval:=pt^.right^.value;
  1764. if highval<lowval then
  1765. begin
  1766. Message(parser_e_array_lower_less_than_upper_bound);
  1767. highval:=lowval;
  1768. end;
  1769. arraytype:=pt^.right^.resulttype;
  1770. end
  1771. else
  1772. Message(type_e_cant_eval_constant_expr);
  1773. end
  1774. else
  1775. Message(sym_e_error_in_type_def)
  1776. end;
  1777. disposetree(pt);
  1778. { create arraydef }
  1779. if p=nil then
  1780. begin
  1781. ap:=new(parraydef,init(lowval,highval,arraytype));
  1782. p:=ap;
  1783. end
  1784. else
  1785. begin
  1786. ap^.definition:=new(parraydef,init(lowval,highval,arraytype));
  1787. ap:=parraydef(ap^.definition);
  1788. end;
  1789. if token=COMMA then
  1790. consume(COMMA)
  1791. else
  1792. break;
  1793. until false;
  1794. consume(RECKKLAMMER);
  1795. consume(_OF);
  1796. hp1:=read_type('');
  1797. { if no error, set element type }
  1798. if assigned(ap) then
  1799. ap^.definition:=hp1;
  1800. end;
  1801. begin
  1802. p:=nil;
  1803. case token of
  1804. _STRING,_FILE:
  1805. p:=single_type(hs);
  1806. LKLAMMER:
  1807. begin
  1808. consume(LKLAMMER);
  1809. { allow negativ value_str }
  1810. l:=-1;
  1811. aufsym := Nil;
  1812. aufdef:=new(penumdef,init);
  1813. repeat
  1814. s:=pattern;
  1815. consume(ID);
  1816. if token=ASSIGNMENT then
  1817. begin
  1818. consume(ASSIGNMENT);
  1819. v:=get_intconst;
  1820. { please leave that a note, allows type save }
  1821. { declarations in the win32 units ! }
  1822. if v<=l then
  1823. Message(parser_n_duplicate_enum);
  1824. l:=v;
  1825. end
  1826. else
  1827. inc(l);
  1828. constsymtable^.insert(new(penumsym,init(s,aufdef,l)));
  1829. if token=COMMA then
  1830. consume(COMMA)
  1831. else
  1832. break;
  1833. until false;
  1834. {aufdef^.max:=l;
  1835. if we allow unordered enums
  1836. this can be wrong
  1837. min and max are now set in tenumsym.init PM }
  1838. p:=aufdef;
  1839. consume(RKLAMMER);
  1840. end;
  1841. _ARRAY:
  1842. array_dec;
  1843. _SET:
  1844. begin
  1845. consume(_SET);
  1846. consume(_OF);
  1847. hp1:=read_type('');
  1848. if assigned(hp1) then
  1849. begin
  1850. case hp1^.deftype of
  1851. { don't forget that min can be negativ PM }
  1852. enumdef : if penumdef(hp1)^.min>=0 then
  1853. p:=new(psetdef,init(hp1,penumdef(hp1)^.max))
  1854. else
  1855. Message(sym_e_ill_type_decl_set);
  1856. orddef : begin
  1857. case porddef(hp1)^.typ of
  1858. uchar : p:=new(psetdef,init(hp1,255));
  1859. u8bit,s8bit,u16bit,s16bit,s32bit :
  1860. begin
  1861. if (porddef(hp1)^.low>=0) then
  1862. p:=new(psetdef,init(hp1,porddef(hp1)^.high))
  1863. else Message(sym_e_ill_type_decl_set);
  1864. end;
  1865. else Message(sym_e_ill_type_decl_set);
  1866. end;
  1867. end;
  1868. else Message(sym_e_ill_type_decl_set);
  1869. end;
  1870. end
  1871. else
  1872. p:=generrordef;
  1873. end;
  1874. CARET:
  1875. begin
  1876. consume(CARET);
  1877. { forwards allowed only inside TYPE statements }
  1878. if typecanbeforward then
  1879. forwardsallowed:=true;
  1880. hp1:=single_type(hs);
  1881. p:=new(ppointerdef,init(hp1));
  1882. if (lasttypesym<>nil) and ((lasttypesym^.properties and sp_forwarddef)<>0) then
  1883. lasttypesym^.addforwardpointer(ppointerdef(p));
  1884. forwardsallowed:=false;
  1885. end;
  1886. _RECORD:
  1887. p:=record_dec;
  1888. _PACKED:
  1889. begin
  1890. consume(_PACKED);
  1891. if token=_ARRAY then
  1892. array_dec
  1893. else
  1894. begin
  1895. oldaktpackrecords:=aktpackrecords;
  1896. aktpackrecords:=1;
  1897. if token in [_CLASS,_OBJECT] then
  1898. p:=object_dec(name,nil)
  1899. else
  1900. p:=record_dec;
  1901. aktpackrecords:=oldaktpackrecords;
  1902. end;
  1903. end;
  1904. _CLASS,
  1905. _OBJECT:
  1906. p:=object_dec(name,nil);
  1907. _PROCEDURE:
  1908. begin
  1909. consume(_PROCEDURE);
  1910. p:=handle_procvar;
  1911. if token=_OF then
  1912. begin
  1913. consume(_OF);
  1914. consume(_OBJECT);
  1915. pprocvardef(p)^.options:=pprocvardef(p)^.options or pomethodpointer;
  1916. end;
  1917. end;
  1918. _FUNCTION:
  1919. begin
  1920. consume(_FUNCTION);
  1921. p:=handle_procvar;
  1922. consume(COLON);
  1923. pprocvardef(p)^.retdef:=single_type(hs);
  1924. if token=_OF then
  1925. begin
  1926. consume(_OF);
  1927. consume(_OBJECT);
  1928. pprocvardef(p)^.options:=pprocvardef(p)^.options or pomethodpointer;
  1929. end;
  1930. end;
  1931. else
  1932. expr_type;
  1933. end;
  1934. if p=nil then
  1935. p:=generrordef;
  1936. read_type:=p;
  1937. end;
  1938. { reads a type declaration to the symbol table }
  1939. procedure type_dec;
  1940. var
  1941. typename : stringid;
  1942. newtype : ptypesym;
  1943. sym : psym;
  1944. begin
  1945. block_type:=bt_type;
  1946. consume(_TYPE);
  1947. typecanbeforward:=true;
  1948. repeat
  1949. typename:=pattern;
  1950. consume(ID);
  1951. consume(EQUAL);
  1952. { here you loose the strictness of pascal
  1953. for which a redefinition like
  1954. childtype = parenttype;
  1955. child2type = parenttype;
  1956. does not make the two child types equal !!
  1957. here all vars from childtype and child2type
  1958. get the definition of parenttype !! }
  1959. {$ifdef testequaltype}
  1960. if (token = ID) or (token=_FILE) or (token=_STRING) then
  1961. begin
  1962. olddef := single_type(s);
  1963. { make a clone of olddef }
  1964. { is that ok ??? }
  1965. getmem(newdef,SizeOf(olddef));
  1966. move(olddef^,newdef^,SizeOf(olddef));
  1967. newtype:=new(ptypesym,init(typename,newdef));
  1968. symtablestack^.insert(newtype);
  1969. end
  1970. else
  1971. {$endif testequaltype}
  1972. begin
  1973. getsym(typename,false);
  1974. sym:=srsym;
  1975. newtype:=nil;
  1976. { found a symbol with this name? }
  1977. if assigned(sym) then
  1978. begin
  1979. if (sym^.typ=typesym) then
  1980. begin
  1981. if (token=_CLASS) and
  1982. (assigned(ptypesym(sym)^.definition)) and
  1983. (ptypesym(sym)^.definition^.deftype=objectdef) and
  1984. ((pobjectdef(ptypesym(sym)^.definition)^.options and oo_isforward)<>0) and
  1985. ((pobjectdef(ptypesym(sym)^.definition)^.options and oo_is_class)<>0) then
  1986. begin
  1987. { we can ignore the result }
  1988. { the definition is modified }
  1989. object_dec(typename,pobjectdef(ptypesym(sym)^.definition));
  1990. newtype:=ptypesym(sym);
  1991. end
  1992. else
  1993. if sym^.properties=sp_forwarddef then
  1994. begin
  1995. ptypesym(sym)^.updateforwarddef(read_type(typename));
  1996. newtype:=ptypesym(sym);
  1997. end;
  1998. end;
  1999. end;
  2000. { no old type reused ? Then insert this new type }
  2001. if not assigned(newtype) then
  2002. begin
  2003. newtype:=new(ptypesym,init(typename,read_type(typename)));
  2004. newtype:=ptypesym(symtablestack^.insert(newtype));
  2005. end;
  2006. end;
  2007. consume(SEMICOLON);
  2008. if assigned(newtype^.definition) and (newtype^.definition^.deftype=procvardef) then
  2009. parse_var_proc_directives(newtype);
  2010. until token<>ID;
  2011. typecanbeforward:=false;
  2012. {$ifdef tp}
  2013. symtablestack^.foreach(testforward_type);
  2014. {$else}
  2015. symtablestack^.foreach(@testforward_type);
  2016. {$endif}
  2017. resolve_forwards;
  2018. block_type:=bt_general;
  2019. end;
  2020. procedure var_dec;
  2021. { parses varaible declarations and inserts them in }
  2022. { the top symbol table of symtablestack }
  2023. begin
  2024. consume(_VAR);
  2025. read_var_decs(false,false,false);
  2026. end;
  2027. procedure threadvar_dec;
  2028. { parses thread variable declarations and inserts them in }
  2029. { the top symbol table of symtablestack }
  2030. begin
  2031. consume(_THREADVAR);
  2032. if not(symtablestack^.symtabletype in [staticsymtable,globalsymtable]) then
  2033. message(parser_e_threadvars_only_sg);
  2034. read_var_decs(false,false,true);
  2035. end;
  2036. procedure Not_supported_for_inline(t : ttoken);
  2037. begin
  2038. if assigned(aktprocsym) and
  2039. ((aktprocsym^.definition^.options and poinline)<>0) then
  2040. Begin
  2041. Message1(parser_w_not_supported_for_inline,tokenstring(t));
  2042. Message(parser_w_inlining_disabled);
  2043. aktprocsym^.definition^.options:= aktprocsym^.definition^.options and not poinline;
  2044. End;
  2045. end;
  2046. procedure read_declarations(islibrary : boolean);
  2047. begin
  2048. repeat
  2049. case token of
  2050. _LABEL:
  2051. begin
  2052. Not_supported_for_inline(token);
  2053. label_dec;
  2054. end;
  2055. _CONST:
  2056. begin
  2057. Not_supported_for_inline(token);
  2058. const_dec;
  2059. end;
  2060. _TYPE:
  2061. begin
  2062. Not_supported_for_inline(token);
  2063. type_dec;
  2064. end;
  2065. _VAR:
  2066. var_dec;
  2067. _THREADVAR:
  2068. threadvar_dec;
  2069. _CONSTRUCTOR,_DESTRUCTOR,
  2070. _FUNCTION,_PROCEDURE,_OPERATOR,_CLASS:
  2071. begin
  2072. Not_supported_for_inline(token);
  2073. read_proc;
  2074. end;
  2075. _EXPORTS:
  2076. begin
  2077. Not_supported_for_inline(token);
  2078. { here we should be at lexlevel 1, no ? PM }
  2079. if (lexlevel<>main_program_level) or
  2080. (not islibrary and not DLLsource) then
  2081. begin
  2082. Message(parser_e_syntax_error);
  2083. consume_all_until(SEMICOLON);
  2084. end
  2085. else if islibrary then
  2086. read_exports;
  2087. end
  2088. else break;
  2089. end;
  2090. until false;
  2091. end;
  2092. procedure read_interface_declarations;
  2093. begin
  2094. {Since the body is now parsed at lexlevel 1, and the declarations
  2095. must be parsed at the same lexlevel we increase the lexlevel.}
  2096. inc(lexlevel);
  2097. repeat
  2098. case token of
  2099. _CONST : const_dec;
  2100. _TYPE : type_dec;
  2101. _VAR : var_dec;
  2102. _THREADVAR : threadvar_dec;
  2103. _FUNCTION,
  2104. _PROCEDURE,
  2105. _OPERATOR : read_proc;
  2106. else
  2107. break;
  2108. end;
  2109. until false;
  2110. dec(lexlevel);
  2111. end;
  2112. end.
  2113. {
  2114. $Log$
  2115. Revision 1.116 1999-05-13 21:59:34 peter
  2116. * removed oldppu code
  2117. * warning if objpas is loaded from uses
  2118. * first things for new deref writing
  2119. Revision 1.115 1999/05/07 10:36:09 peter
  2120. * fixed crash
  2121. Revision 1.114 1999/05/04 21:44:54 florian
  2122. * changes to compile it with Delphi 4.0
  2123. Revision 1.113 1999/05/01 13:24:30 peter
  2124. * merged nasm compiler
  2125. * old asm moved to oldasm/
  2126. Revision 1.112 1999/04/28 06:02:07 florian
  2127. * changes of Bruessel:
  2128. + message handler can now take an explicit self
  2129. * typinfo fixed: sometimes the type names weren't written
  2130. * the type checking for pointer comparisations and subtraction
  2131. and are now more strict (was also buggy)
  2132. * small bug fix to link.pas to support compiling on another
  2133. drive
  2134. * probable bug in popt386 fixed: call/jmp => push/jmp
  2135. transformation didn't count correctly the jmp references
  2136. + threadvar support
  2137. * warning if ln/sqrt gets an invalid constant argument
  2138. Revision 1.111 1999/04/26 13:31:37 peter
  2139. * release storenumber,double_checksum
  2140. Revision 1.110 1999/04/25 22:42:16 pierre
  2141. + code for initialized vars in Delphi mode
  2142. Revision 1.109 1999/04/21 09:43:45 peter
  2143. * storenumber works
  2144. * fixed some typos in double_checksum
  2145. + incompatible types type1 and type2 message (with storenumber)
  2146. Revision 1.108 1999/04/17 13:16:19 peter
  2147. * fixes for storenumber
  2148. Revision 1.107 1999/04/14 09:14:50 peter
  2149. * first things to store the symbol/def number in the ppu
  2150. Revision 1.106 1999/04/07 15:31:15 pierre
  2151. * all formaldefs are now a sinlge definition
  2152. cformaldef (this was necessary for double_checksum)
  2153. + small part of double_checksum code
  2154. Revision 1.105 1999/03/26 00:05:34 peter
  2155. * released valintern
  2156. + deffile is now removed when compiling is finished
  2157. * ^( compiles now correct
  2158. + static directive
  2159. * shrd fixed
  2160. Revision 1.104 1999/03/24 23:17:13 peter
  2161. * fixed bugs 212,222,225,227,229,231,233
  2162. Revision 1.103 1999/03/22 22:10:25 florian
  2163. * typecanbeforward wasn't always restored in object_dec which
  2164. sometimes caused strange effects
  2165. Revision 1.102 1999/03/05 01:14:26 pierre
  2166. * bug0198 : call conventions for methods
  2167. not yet implemented is the control of same calling convention
  2168. for virtual and child's virtual
  2169. * msgstr and msgint only created if message was found
  2170. who implemented this by the way ?
  2171. it leaks lots of plabels !!!! (check with heaptrc !)
  2172. Revision 1.101 1999/02/25 21:02:41 peter
  2173. * ag386bin updates
  2174. + coff writer
  2175. Revision 1.100 1999/02/24 00:59:14 peter
  2176. * small updates for ag386bin
  2177. Revision 1.99 1999/02/22 23:33:29 florian
  2178. + message directive for integers added
  2179. Revision 1.98 1999/02/22 20:13:36 florian
  2180. + first implementation of message keyword
  2181. Revision 1.97 1999/02/22 02:44:10 peter
  2182. * ag386bin doesn't use i386.pas anymore
  2183. Revision 1.96 1999/02/17 14:20:40 pierre
  2184. * Reference specific bug in recompiling unit solved
  2185. Revision 1.95 1999/01/25 20:13:48 peter
  2186. * fixed crash with forward declared class of ...
  2187. Revision 1.94 1999/01/19 12:17:00 peter
  2188. * fixed constant strings > 255 chars
  2189. Revision 1.93 1999/01/15 13:08:23 peter
  2190. * error if upper<lower in array decl
  2191. Revision 1.92 1999/01/14 21:49:58 peter
  2192. * fixed forwardpointer problem with multiple forwards for the same
  2193. typesym. It now uses a linkedlist instead of a single pointer
  2194. Revision 1.91 1998/12/30 22:15:46 peter
  2195. + farpointer type
  2196. * absolutesym now also stores if its far
  2197. Revision 1.90 1998/12/15 17:16:00 peter
  2198. * fixed const s : ^string
  2199. * first things for const pchar : @string[1]
  2200. Revision 1.89 1998/12/11 00:03:30 peter
  2201. + globtype,tokens,version unit splitted from globals
  2202. Revision 1.88 1998/11/30 09:43:20 pierre
  2203. * some range check bugs fixed (still not working !)
  2204. + added DLL writing support for win32 (also accepts variables)
  2205. + TempAnsi for code that could be used for Temporary ansi strings
  2206. handling
  2207. Revision 1.87 1998/11/29 12:42:24 peter
  2208. * check for constants with array decl
  2209. Revision 1.86 1998/11/28 16:20:52 peter
  2210. + support for dll variables
  2211. Revision 1.85 1998/11/27 14:34:43 peter
  2212. * give error when string[0] decl is found
  2213. Revision 1.84 1998/11/17 10:40:15 peter
  2214. * H+ fixes
  2215. Revision 1.83 1998/11/16 11:28:59 pierre
  2216. * stackcheck removed for i386_win32
  2217. * exportlist does not crash at least !!
  2218. (was need for tests dir !)z
  2219. Revision 1.82 1998/11/16 10:18:07 peter
  2220. * fixes for ansistrings
  2221. Revision 1.81 1998/11/13 15:40:22 pierre
  2222. + added -Se in Makefile cvstest target
  2223. + lexlevel cleanup
  2224. normal_function_level main_program_level and unit_init_level defined
  2225. * tins_cache grown to A_EMMS (gave range check error in asm readers)
  2226. (test added in code !)
  2227. * -Un option was wrong
  2228. * _FAIL and _SELF only keyword inside
  2229. constructors and methods respectively
  2230. Revision 1.80 1998/11/13 10:18:09 peter
  2231. + nil constants
  2232. Revision 1.79 1998/11/05 12:02:51 peter
  2233. * released useansistring
  2234. * removed -Sv, its now available in fpc modes
  2235. Revision 1.78 1998/10/27 13:45:33 pierre
  2236. * classes get a vmt allways
  2237. * better error info (tried to remove
  2238. several error strings introduced by the tpexcept handling)
  2239. Revision 1.77 1998/10/26 22:58:20 florian
  2240. * new introduded problem with classes fix, the parent class wasn't set
  2241. correct, if the class was defined forward before
  2242. Revision 1.76 1998/10/25 23:31:18 peter
  2243. * procvar parsing updated just like psub.pas routine
  2244. Revision 1.75 1998/10/21 08:39:59 florian
  2245. + ansistring operator +
  2246. + $h and string[n] for n>255 added
  2247. * small problem with TP fixed
  2248. Revision 1.74 1998/10/20 13:09:13 peter
  2249. * fixed object(unknown) crash
  2250. Revision 1.73 1998/10/19 08:54:56 pierre
  2251. * wrong stabs info corrected once again !!
  2252. + variable vmt offset with vmt field only if required
  2253. implemented now !!!
  2254. Revision 1.72 1998/10/16 13:12:51 pierre
  2255. * added vmt_offsets in destructors code also !!!
  2256. * vmt_offset code for m68k
  2257. Revision 1.71 1998/10/15 15:13:25 pierre
  2258. + added oo_hasconstructor and oo_hasdestructor
  2259. for objects options
  2260. Revision 1.70 1998/10/13 13:10:22 peter
  2261. * new style for m68k/i386 infos and enums
  2262. Revision 1.69 1998/10/09 12:07:49 pierre
  2263. * typo error for propertyparas dispose corrected
  2264. Revision 1.68 1998/10/09 11:47:54 pierre
  2265. * still more memory leaks fixes !!
  2266. Revision 1.67 1998/10/08 13:48:46 peter
  2267. * fixed memory leaks for do nothing source
  2268. * fixed unit interdependency
  2269. Revision 1.66 1998/10/06 20:43:31 peter
  2270. * fixed set of bugs. like set of false..true set of #1..#255 and
  2271. set of #1..true which was allowed
  2272. Revision 1.65 1998/10/05 22:43:35 peter
  2273. * commited the wrong file :(
  2274. Revision 1.64 1998/10/05 21:33:24 peter
  2275. * fixed 161,165,166,167,168
  2276. Revision 1.63 1998/10/05 13:57:13 peter
  2277. * crash preventions
  2278. Revision 1.62 1998/10/02 17:06:02 peter
  2279. * better error message for unresolved forward types
  2280. Revision 1.61 1998/10/02 09:23:24 peter
  2281. * fixed error msg with type l=<var>
  2282. * block_type bt_const is now set in read_const_dec
  2283. Revision 1.60 1998/09/30 07:40:33 florian
  2284. * better error recovering
  2285. Revision 1.59 1998/09/26 17:45:33 peter
  2286. + idtoken and only one token table
  2287. Revision 1.58 1998/09/25 00:04:01 florian
  2288. * problems when calling class methods fixed
  2289. Revision 1.57 1998/09/24 23:49:09 peter
  2290. + aktmodeswitches
  2291. Revision 1.56 1998/09/23 15:39:09 pierre
  2292. * browser bugfixes
  2293. was adding a reference when looking for the symbol
  2294. if -bSYM_NAME was used
  2295. Revision 1.55 1998/09/21 13:24:44 daniel
  2296. * Memory leak fixed.
  2297. Revision 1.54 1998/09/17 13:41:16 pierre
  2298. sizeof(TPOINT) problem
  2299. Revision 1.53.2.1 1998/09/17 13:12:09 pierre
  2300. * virtual destructor did not set oo_hasvirtual
  2301. (detected with the sizeof(TPoint) problem
  2302. * genloadcallnode was missing
  2303. Revision 1.53 1998/09/09 11:50:52 pierre
  2304. * forward def are not put in record or objects
  2305. + added check for forwards also in record and objects
  2306. * dummy parasymtable for unit initialization removed from
  2307. symtable stack
  2308. Revision 1.52 1998/09/07 23:10:22 florian
  2309. * a lot of stuff fixed regarding rtti and publishing of properties,
  2310. basics should now work
  2311. Revision 1.51 1998/09/07 19:33:22 florian
  2312. + some stuff for property rtti added:
  2313. - NameIndex of the TPropInfo record is now written correctly
  2314. - the DEFAULT/NODEFAULT keyword is supported now
  2315. - the default value and the storedsym/def are now written to
  2316. the PPU fiel
  2317. Revision 1.50 1998/09/07 18:46:08 peter
  2318. * update smartlinking, uses getdatalabel
  2319. * renamed ptree.value vars to value_str,value_real,value_set
  2320. Revision 1.49 1998/09/07 17:37:00 florian
  2321. * first fixes for published properties
  2322. Revision 1.48 1998/09/04 08:42:02 peter
  2323. * updated some error messages
  2324. Revision 1.47 1998/09/03 16:03:18 florian
  2325. + rtti generation
  2326. * init table generation changed
  2327. Revision 1.46 1998/09/01 17:39:48 peter
  2328. + internal constant functions
  2329. Revision 1.45 1998/08/31 12:20:28 peter
  2330. * fixed array_dec when unknown type was used
  2331. Revision 1.44 1998/08/28 10:57:01 peter
  2332. * removed warnings
  2333. Revision 1.43 1998/08/25 13:09:25 pierre
  2334. * corrected mangling sheme :
  2335. cvar add Cprefix to the mixed case name whereas
  2336. export or public use direct name
  2337. Revision 1.42 1998/08/25 12:42:41 pierre
  2338. * CDECL changed to CVAR for variables
  2339. specifications are read in structures also
  2340. + started adding GPC compatibility mode ( option -Sp)
  2341. * names changed to lowercase
  2342. Revision 1.41 1998/08/23 21:04:36 florian
  2343. + rtti generation for classes added
  2344. + new/dispose do now also a call to INITIALIZE/FINALIZE, if necessaray
  2345. Revision 1.40 1998/08/21 15:48:58 pierre
  2346. * more cdecl chagnes
  2347. - better line info
  2348. - changes the definition options of a procvar
  2349. if it is a unnamed type
  2350. Revision 1.39 1998/08/19 00:42:40 peter
  2351. + subrange types for enums
  2352. + checking for bounds type with ranges
  2353. Revision 1.38 1998/08/12 19:20:39 peter
  2354. + public is the same as export for c_vars
  2355. * a exported/public c_var incs now the refcount
  2356. Revision 1.37 1998/08/11 15:31:38 peter
  2357. * write extended to ppu file
  2358. * new version 0.99.7
  2359. Revision 1.36 1998/08/10 14:50:09 peter
  2360. + localswitches, moduleswitches, globalswitches splitting
  2361. Revision 1.35 1998/07/26 21:59:00 florian
  2362. + better support for switch $H
  2363. + index access to ansi strings added
  2364. + assigment of data (records/arrays) containing ansi strings
  2365. Revision 1.34 1998/07/20 22:17:15 florian
  2366. * hex constants in numeric char (#$54#$43 ...) are now allowed
  2367. * there was a bug in record_var_dec which prevents the used
  2368. of nested variant records (for example drivers.tevent of tv)
  2369. Revision 1.33 1998/07/18 17:11:11 florian
  2370. + ansi string constants fixed
  2371. + switch $H partial implemented
  2372. Revision 1.32 1998/07/14 21:46:50 peter
  2373. * updated messages file
  2374. Revision 1.31 1998/07/14 14:46:53 peter
  2375. * released NEWINPUT
  2376. Revision 1.30 1998/07/10 00:00:00 peter
  2377. * fixed ttypesym bug finally
  2378. * fileinfo in the symtable and better using for unused vars
  2379. Revision 1.29 1998/06/25 14:04:21 peter
  2380. + internal inc/dec
  2381. Revision 1.28 1998/06/24 12:26:45 peter
  2382. * stricter var parsing like tp7 and some optimizes with directive
  2383. parsing
  2384. Revision 1.27 1998/06/12 16:15:34 pierre
  2385. * external name 'C_var';
  2386. export name 'intern_C_var';
  2387. cdecl;
  2388. cdecl;external;
  2389. are now supported only with -Sv switch
  2390. Revision 1.25 1998/06/09 16:01:45 pierre
  2391. + added procedure directive parsing for procvars
  2392. (accepted are popstack cdecl and pascal)
  2393. + added C vars with the following syntax
  2394. var C calias 'true_c_name';(can be followed by external)
  2395. reason is that you must add the Cprefix
  2396. which is target dependent
  2397. Revision 1.24 1998/06/05 14:37:32 pierre
  2398. * fixes for inline for operators
  2399. * inline procedure more correctly restricted
  2400. Revision 1.23 1998/06/04 23:51:50 peter
  2401. * m68k compiles
  2402. + .def file creation moved to gendef.pas so it could also be used
  2403. for win32
  2404. Revision 1.22 1998/06/03 22:48:59 peter
  2405. + wordbool,longbool
  2406. * rename bis,von -> high,low
  2407. * moved some systemunit loading/creating to psystem.pas
  2408. Revision 1.21 1998/06/03 22:14:19 florian
  2409. * problem with sizes of classes fixed (if the anchestor was declared
  2410. forward, the compiler doesn't update the child classes size)
  2411. Revision 1.20 1998/05/28 14:35:54 peter
  2412. * nicer error message when no id is used after var
  2413. Revision 1.19 1998/05/23 01:21:19 peter
  2414. + aktasmmode, aktoptprocessor, aktoutputformat
  2415. + smartlink per module $SMARTLINK-/+ (like MMX) and moved to aktswitches
  2416. + $LIBNAME to set the library name where the unit will be put in
  2417. * splitted cgi386 a bit (codeseg to large for bp7)
  2418. * nasm, tasm works again. nasm moved to ag386nsm.pas
  2419. Revision 1.18 1998/05/20 09:42:35 pierre
  2420. + UseTokenInfo now default
  2421. * unit in interface uses and implementation uses gives error now
  2422. * only one error for unknown symbol (uses lastsymknown boolean)
  2423. the problem came from the label code !
  2424. + first inlined procedures and function work
  2425. (warning there might be allowed cases were the result is still wrong !!)
  2426. * UseBrower updated gives a global list of all position of all used symbols
  2427. with switch -gb
  2428. Revision 1.17 1998/05/11 13:07:55 peter
  2429. + $ifdef NEWPPU for the new ppuformat
  2430. + $define GDB not longer required
  2431. * removed all warnings and stripped some log comments
  2432. * no findfirst/findnext anymore to remove smartlink *.o files
  2433. Revision 1.16 1998/05/05 12:05:42 florian
  2434. * problems with properties fixed
  2435. * crash fixed: i:=l when i and l are undefined, was a problem with
  2436. implementation of private/protected
  2437. Revision 1.15 1998/05/01 09:01:23 florian
  2438. + correct semantics of private and protected
  2439. * small fix in variable scope:
  2440. a id can be used in a parameter list of a method, even it is used in
  2441. an anchestor class as field id
  2442. Revision 1.14 1998/05/01 07:43:56 florian
  2443. + basics for rtti implemented
  2444. + switch $m (generate rtti for published sections)
  2445. Revision 1.13 1998/04/30 15:59:41 pierre
  2446. * GDB works again better :
  2447. correct type info in one pass
  2448. + UseTokenInfo for better source position
  2449. * fixed one remaining bug in scanner for line counts
  2450. * several little fixes
  2451. Revision 1.12 1998/04/29 10:33:57 pierre
  2452. + added some code for ansistring (not complete nor working yet)
  2453. * corrected operator overloading
  2454. * corrected nasm output
  2455. + started inline procedures
  2456. + added starstarn : use ** for exponentiation (^ gave problems)
  2457. + started UseTokenInfo cond to get accurate positions
  2458. Revision 1.11 1998/04/28 11:45:52 florian
  2459. * make it compilable with TP
  2460. + small COM problems solved to compile classes.pp
  2461. Revision 1.10 1998/04/27 23:10:28 peter
  2462. + new scanner
  2463. * $makelib -> if smartlink
  2464. * small filename fixes pmodule.setfilename
  2465. * moved import from files.pas -> import.pas
  2466. Revision 1.9 1998/04/10 21:36:56 florian
  2467. + some stuff to support method pointers (procedure of object) added
  2468. (declaration, parameter handling)
  2469. Revision 1.8 1998/04/10 15:39:48 florian
  2470. * more fixes to get classes.pas compiled
  2471. Revision 1.7 1998/04/09 23:02:15 florian
  2472. * small problems solved to get remake3 work
  2473. Revision 1.6 1998/04/09 22:16:35 florian
  2474. * problem with previous REGALLOC solved
  2475. * improved property support
  2476. Revision 1.5 1998/04/08 14:59:20 florian
  2477. * problem with new expr_type solved
  2478. Revision 1.4 1998/04/08 10:26:09 florian
  2479. * correct error handling of virtual constructors
  2480. * problem with new type declaration handling fixed
  2481. Revision 1.3 1998/04/07 22:45:05 florian
  2482. * bug0092, bug0115 and bug0121 fixed
  2483. + packed object/class/array
  2484. Revision 1.2 1998/04/05 13:58:35 peter
  2485. * fixed the -Ss bug
  2486. + warning for Virtual constructors
  2487. * helppages updated with -TGO32V1
  2488. }