pdecl.pas 109 KB

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