pexpr.pas 107 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886
  1. {
  2. Copyright (c) 1998-2002 by Florian Klaempfl
  3. Does parsing of expression for Free Pascal
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. ****************************************************************************
  16. }
  17. unit pexpr;
  18. {$i fpcdefs.inc}
  19. interface
  20. uses
  21. symtype,symdef,symbase,
  22. node,ncal,
  23. tokens,globtype,globals,constexp;
  24. { reads a whole expression }
  25. function expr : tnode;
  26. { reads an expression without assignements and .. }
  27. function comp_expr(accept_equal : boolean):tnode;
  28. { reads a single factor }
  29. function factor(getaddr : boolean) : tnode;
  30. procedure string_dec(var def: tdef);
  31. procedure propaccesslist_to_node(var p1:tnode;st:TSymtable;pl:tpropaccesslist);
  32. function node_to_propaccesslist(p1:tnode):tpropaccesslist;
  33. function parse_paras(__colon,__namedpara : boolean;end_of_paras : ttoken) : tnode;
  34. { the ID token has to be consumed before calling this function }
  35. procedure do_member_read(classh:tobjectdef;getaddr : boolean;sym : tsym;var p1 : tnode;var again : boolean;callflags:tcallnodeflags);
  36. function get_intconst:TConstExprInt;
  37. function get_stringconst:string;
  38. implementation
  39. uses
  40. { common }
  41. cutils,
  42. { global }
  43. verbose,
  44. systems,widestr,
  45. { symtable }
  46. symconst,symtable,symsym,defutil,defcmp,
  47. { module }
  48. fmodule,ppu,
  49. { pass 1 }
  50. pass_1,htypechk,
  51. nmat,nadd,nmem,nset,ncnv,ninl,ncon,nld,nflw,nbas,nutils,
  52. { parser }
  53. scanner,
  54. pbase,pinline,ptype,
  55. { codegen }
  56. cgbase,procinfo,cpuinfo
  57. ;
  58. { sub_expr(opmultiply) is need to get -1 ** 4 to be
  59. read as - (1**4) and not (-1)**4 PM }
  60. type
  61. Toperator_precedence=(opcompare,opaddition,opmultiply,oppower);
  62. const
  63. highest_precedence = oppower;
  64. function sub_expr(pred_level:Toperator_precedence;accept_equal : boolean):tnode;forward;
  65. const
  66. { true, if the inherited call is anonymous }
  67. anon_inherited : boolean = false;
  68. { last def found, only used by anon. inherited calls to insert proper type casts }
  69. srdef : tdef = nil;
  70. procedure string_dec(var def:tdef);
  71. { reads a string type with optional length }
  72. { and returns a pointer to the string }
  73. { definition }
  74. var
  75. p : tnode;
  76. begin
  77. def:=cshortstringtype;
  78. consume(_STRING);
  79. if try_to_consume(_LECKKLAMMER) then
  80. begin
  81. p:=comp_expr(true);
  82. if not is_constintnode(p) then
  83. begin
  84. Message(parser_e_illegal_expression);
  85. { error recovery }
  86. consume(_RECKKLAMMER);
  87. end
  88. else
  89. begin
  90. if (tordconstnode(p).value<=0) then
  91. begin
  92. Message(parser_e_invalid_string_size);
  93. tordconstnode(p).value:=255;
  94. end;
  95. consume(_RECKKLAMMER);
  96. if tordconstnode(p).value>255 then
  97. begin
  98. { longstring is currently unsupported (CEC)! }
  99. { t:=tstringdef.createlong(tordconstnode(p).value))}
  100. Message(parser_e_invalid_string_size);
  101. tordconstnode(p).value:=255;
  102. def:=tstringdef.createshort(int64(tordconstnode(p).value));
  103. end
  104. else
  105. if tordconstnode(p).value<>255 then
  106. def:=tstringdef.createshort(int64(tordconstnode(p).value));
  107. end;
  108. p.free;
  109. end
  110. else
  111. begin
  112. if cs_ansistrings in current_settings.localswitches then
  113. def:=cansistringtype
  114. else
  115. def:=cshortstringtype;
  116. end;
  117. end;
  118. procedure propaccesslist_to_node(var p1:tnode;st:TSymtable;pl:tpropaccesslist);
  119. var
  120. plist : ppropaccesslistitem;
  121. begin
  122. plist:=pl.firstsym;
  123. while assigned(plist) do
  124. begin
  125. case plist^.sltype of
  126. sl_load :
  127. begin
  128. addsymref(plist^.sym);
  129. if not assigned(st) then
  130. st:=plist^.sym.owner;
  131. { p1 can already contain the loadnode of
  132. the class variable. When there is no tree yet we
  133. may need to load it for with or objects }
  134. if not assigned(p1) then
  135. begin
  136. case st.symtabletype of
  137. withsymtable :
  138. p1:=tnode(twithsymtable(st).withrefnode).getcopy;
  139. ObjectSymtable :
  140. p1:=load_self_node;
  141. end;
  142. end;
  143. if assigned(p1) then
  144. p1:=csubscriptnode.create(plist^.sym,p1)
  145. else
  146. p1:=cloadnode.create(plist^.sym,st);
  147. end;
  148. sl_subscript :
  149. begin
  150. addsymref(plist^.sym);
  151. p1:=csubscriptnode.create(plist^.sym,p1);
  152. end;
  153. sl_typeconv :
  154. p1:=ctypeconvnode.create_explicit(p1,plist^.def);
  155. sl_absolutetype :
  156. begin
  157. p1:=ctypeconvnode.create(p1,plist^.def);
  158. include(p1.flags,nf_absolute);
  159. end;
  160. sl_vec :
  161. p1:=cvecnode.create(p1,cordconstnode.create(plist^.value,plist^.valuedef,true));
  162. else
  163. internalerror(200110205);
  164. end;
  165. plist:=plist^.next;
  166. end;
  167. end;
  168. function node_to_propaccesslist(p1:tnode):tpropaccesslist;
  169. var
  170. sl : tpropaccesslist;
  171. procedure addnode(p:tnode);
  172. begin
  173. case p.nodetype of
  174. subscriptn :
  175. begin
  176. addnode(tsubscriptnode(p).left);
  177. sl.addsym(sl_subscript,tsubscriptnode(p).vs);
  178. end;
  179. typeconvn :
  180. begin
  181. addnode(ttypeconvnode(p).left);
  182. if nf_absolute in ttypeconvnode(p).flags then
  183. sl.addtype(sl_absolutetype,ttypeconvnode(p).totypedef)
  184. else
  185. sl.addtype(sl_typeconv,ttypeconvnode(p).totypedef);
  186. end;
  187. vecn :
  188. begin
  189. addnode(tvecnode(p).left);
  190. if tvecnode(p).right.nodetype=ordconstn then
  191. sl.addconst(sl_vec,tordconstnode(tvecnode(p).right).value,tvecnode(p).right.resultdef)
  192. else
  193. begin
  194. Message(parser_e_illegal_expression);
  195. { recovery }
  196. sl.addconst(sl_vec,0,tvecnode(p).right.resultdef);
  197. end;
  198. end;
  199. loadn :
  200. sl.addsym(sl_load,tloadnode(p).symtableentry);
  201. else
  202. internalerror(200310282);
  203. end;
  204. end;
  205. begin
  206. sl:=tpropaccesslist.create;
  207. addnode(p1);
  208. result:=sl;
  209. end;
  210. function parse_paras(__colon,__namedpara : boolean;end_of_paras : ttoken) : tnode;
  211. var
  212. p1,p2,argname : tnode;
  213. prev_in_args,
  214. old_named_args_allowed,
  215. old_allow_array_constructor : boolean;
  216. begin
  217. if token=end_of_paras then
  218. begin
  219. parse_paras:=nil;
  220. exit;
  221. end;
  222. { save old values }
  223. prev_in_args:=in_args;
  224. old_allow_array_constructor:=allow_array_constructor;
  225. old_named_args_allowed:=named_args_allowed;
  226. { set para parsing values }
  227. in_args:=true;
  228. named_args_allowed:=false;
  229. allow_array_constructor:=true;
  230. p2:=nil;
  231. repeat
  232. if __namedpara then
  233. begin
  234. if token=_COMMA then
  235. begin
  236. { empty parameter }
  237. p2:=ccallparanode.create(cnothingnode.create,p2);
  238. end
  239. else
  240. begin
  241. named_args_allowed:=true;
  242. p1:=comp_expr(true);
  243. named_args_allowed:=false;
  244. if found_arg_name then
  245. begin
  246. argname:=p1;
  247. p1:=comp_expr(true);
  248. p2:=ccallparanode.create(p1,p2);
  249. tcallparanode(p2).parametername:=argname;
  250. end
  251. else
  252. p2:=ccallparanode.create(p1,p2);
  253. found_arg_name:=false;
  254. end;
  255. end
  256. else
  257. begin
  258. p1:=comp_expr(true);
  259. p2:=ccallparanode.create(p1,p2);
  260. end;
  261. { it's for the str(l:5,s); }
  262. if __colon and (token=_COLON) then
  263. begin
  264. consume(_COLON);
  265. p1:=comp_expr(true);
  266. p2:=ccallparanode.create(p1,p2);
  267. include(tcallparanode(p2).callparaflags,cpf_is_colon_para);
  268. if try_to_consume(_COLON) then
  269. begin
  270. p1:=comp_expr(true);
  271. p2:=ccallparanode.create(p1,p2);
  272. include(tcallparanode(p2).callparaflags,cpf_is_colon_para);
  273. end
  274. end;
  275. until not try_to_consume(_COMMA);
  276. allow_array_constructor:=old_allow_array_constructor;
  277. in_args:=prev_in_args;
  278. named_args_allowed:=old_named_args_allowed;
  279. parse_paras:=p2;
  280. end;
  281. function gen_c_style_operator(ntyp:tnodetype;p1,p2:tnode) : tnode;
  282. var
  283. hp : tnode;
  284. hdef : tdef;
  285. temp : ttempcreatenode;
  286. newstatement : tstatementnode;
  287. begin
  288. { Properties are not allowed, because the write can
  289. be different from the read }
  290. if (nf_isproperty in p1.flags) then
  291. begin
  292. Message(type_e_variable_id_expected);
  293. { We can continue with the loading,
  294. it'll not create errors. Only the expected
  295. result can be wrong }
  296. end;
  297. hp:=p1;
  298. while assigned(hp) and
  299. (hp.nodetype in [derefn,subscriptn,vecn,typeconvn]) do
  300. hp:=tunarynode(hp).left;
  301. if not assigned(hp) then
  302. internalerror(200410121);
  303. if (hp.nodetype=calln) then
  304. begin
  305. typecheckpass(p1);
  306. result:=internalstatements(newstatement);
  307. hdef:=tpointerdef.create(p1.resultdef);
  308. temp:=ctempcreatenode.create(hdef,sizeof(aint),tt_persistent,false);
  309. addstatement(newstatement,temp);
  310. addstatement(newstatement,cassignmentnode.create(ctemprefnode.create(temp),caddrnode.create_internal(p1)));
  311. addstatement(newstatement,cassignmentnode.create(
  312. cderefnode.create(ctemprefnode.create(temp)),
  313. caddnode.create(ntyp,
  314. cderefnode.create(ctemprefnode.create(temp)),
  315. p2)));
  316. addstatement(newstatement,ctempdeletenode.create(temp));
  317. end
  318. else
  319. result:=cassignmentnode.create(p1,caddnode.create(ntyp,p1.getcopy,p2));
  320. end;
  321. function statement_syssym(l : byte) : tnode;
  322. var
  323. p1,p2,paras : tnode;
  324. err,
  325. prev_in_args : boolean;
  326. begin
  327. prev_in_args:=in_args;
  328. case l of
  329. in_new_x :
  330. begin
  331. if afterassignment or in_args then
  332. statement_syssym:=new_function
  333. else
  334. statement_syssym:=new_dispose_statement(true);
  335. end;
  336. in_dispose_x :
  337. begin
  338. statement_syssym:=new_dispose_statement(false);
  339. end;
  340. in_ord_x :
  341. begin
  342. consume(_LKLAMMER);
  343. in_args:=true;
  344. p1:=comp_expr(true);
  345. consume(_RKLAMMER);
  346. p1:=geninlinenode(in_ord_x,false,p1);
  347. statement_syssym := p1;
  348. end;
  349. in_exit :
  350. begin
  351. if try_to_consume(_LKLAMMER) then
  352. begin
  353. if not (m_mac in current_settings.modeswitches) then
  354. begin
  355. if not(try_to_consume(_RKLAMMER)) then
  356. begin
  357. p1:=comp_expr(true);
  358. consume(_RKLAMMER);
  359. if (block_type=bt_except) then
  360. begin
  361. Message(parser_e_exit_with_argument_not__possible);
  362. { recovery }
  363. p1.free;
  364. p1:=nil;
  365. end
  366. else if (not assigned(current_procinfo) or
  367. is_void(current_procinfo.procdef.returndef)) then
  368. begin
  369. Message(parser_e_void_function);
  370. { recovery }
  371. p1.free;
  372. p1:=nil;
  373. end;
  374. end
  375. else
  376. p1:=nil;
  377. end
  378. else
  379. begin
  380. if not (current_procinfo.procdef.procsym.name = pattern) then
  381. Message(parser_e_macpas_exit_wrong_param);
  382. consume(_ID);
  383. consume(_RKLAMMER);
  384. p1:=nil;
  385. end
  386. end
  387. else
  388. p1:=nil;
  389. statement_syssym:=cexitnode.create(p1);
  390. end;
  391. in_break :
  392. begin
  393. statement_syssym:=cbreaknode.create
  394. end;
  395. in_continue :
  396. begin
  397. statement_syssym:=ccontinuenode.create
  398. end;
  399. in_leave :
  400. begin
  401. if m_mac in current_settings.modeswitches then
  402. statement_syssym:=cbreaknode.create
  403. else
  404. begin
  405. Message1(sym_e_id_not_found, orgpattern);
  406. statement_syssym:=cerrornode.create;
  407. end;
  408. end;
  409. in_cycle :
  410. begin
  411. if m_mac in current_settings.modeswitches then
  412. statement_syssym:=ccontinuenode.create
  413. else
  414. begin
  415. Message1(sym_e_id_not_found, orgpattern);
  416. statement_syssym:=cerrornode.create;
  417. end;
  418. end;
  419. in_typeof_x :
  420. begin
  421. consume(_LKLAMMER);
  422. in_args:=true;
  423. p1:=comp_expr(true);
  424. consume(_RKLAMMER);
  425. if p1.nodetype=typen then
  426. ttypenode(p1).allowed:=true;
  427. { Allow classrefdef, which is required for
  428. Typeof(self) in static class methods }
  429. if (p1.resultdef.typ = objectdef) or
  430. (assigned(current_procinfo) and
  431. ((po_classmethod in current_procinfo.procdef.procoptions) or
  432. (po_staticmethod in current_procinfo.procdef.procoptions)) and
  433. (p1.resultdef.typ=classrefdef)) then
  434. statement_syssym:=geninlinenode(in_typeof_x,false,p1)
  435. else
  436. begin
  437. Message(parser_e_class_id_expected);
  438. p1.destroy;
  439. statement_syssym:=cerrornode.create;
  440. end;
  441. end;
  442. in_sizeof_x,
  443. in_bitsizeof_x :
  444. begin
  445. consume(_LKLAMMER);
  446. in_args:=true;
  447. p1:=comp_expr(true);
  448. consume(_RKLAMMER);
  449. if (p1.nodetype<>typen) and
  450. (
  451. (is_object(p1.resultdef) and
  452. (oo_has_constructor in tobjectdef(p1.resultdef).objectoptions)) or
  453. is_open_array(p1.resultdef) or
  454. is_array_of_const(p1.resultdef) or
  455. is_open_string(p1.resultdef)
  456. ) then
  457. begin
  458. statement_syssym:=geninlinenode(in_sizeof_x,false,p1);
  459. { no packed bit support for these things }
  460. if (l = in_bitsizeof_x) then
  461. statement_syssym:=caddnode.create(muln,statement_syssym,cordconstnode.create(8,sinttype,true));
  462. end
  463. else
  464. begin
  465. if (l = in_sizeof_x) or
  466. (not((p1.nodetype = vecn) and
  467. is_packed_array(tvecnode(p1).left.resultdef)) and
  468. not((p1.nodetype = subscriptn) and
  469. is_packed_record_or_object(tsubscriptnode(p1).left.resultdef))) then
  470. begin
  471. statement_syssym:=cordconstnode.create(p1.resultdef.size,sinttype,true);
  472. if (l = in_bitsizeof_x) then
  473. statement_syssym:=caddnode.create(muln,statement_syssym,cordconstnode.create(8,sinttype,true));
  474. end
  475. else
  476. statement_syssym:=cordconstnode.create(p1.resultdef.packedbitsize,sinttype,true);
  477. { p1 not needed !}
  478. p1.destroy;
  479. end;
  480. end;
  481. in_typeinfo_x :
  482. begin
  483. consume(_LKLAMMER);
  484. in_args:=true;
  485. p1:=comp_expr(true);
  486. { When reading a class type it is parsed as loadvmtaddrn,
  487. typeinfo only needs the type so we remove the loadvmtaddrn }
  488. if p1.nodetype=loadvmtaddrn then
  489. begin
  490. p2:=tloadvmtaddrnode(p1).left;
  491. tloadvmtaddrnode(p1).left:=nil;
  492. p1.free;
  493. p1:=p2;
  494. end;
  495. if p1.nodetype=typen then
  496. ttypenode(p1).allowed:=true;
  497. { else
  498. begin
  499. p1.destroy;
  500. p1:=cerrornode.create;
  501. Message(parser_e_illegal_parameter_list);
  502. end;}
  503. consume(_RKLAMMER);
  504. p2:=geninlinenode(in_typeinfo_x,false,p1);
  505. statement_syssym:=p2;
  506. end;
  507. {$ifdef SUPPORT_UNALIGNED}
  508. in_unaligned_x :
  509. begin
  510. err:=false;
  511. consume(_LKLAMMER);
  512. in_args:=true;
  513. p1:=comp_expr(true);
  514. p2:=ccallparanode.create(p1,nil);
  515. p2:=geninlinenode(in_unaligned_x,false,p2);
  516. consume(_RKLAMMER);
  517. statement_syssym:=p2;
  518. end;
  519. {$endif SUPPORT_UNALIGNED}
  520. in_assigned_x :
  521. begin
  522. err:=false;
  523. consume(_LKLAMMER);
  524. in_args:=true;
  525. p1:=comp_expr(true);
  526. { When reading a class type it is parsed as loadvmtaddrn,
  527. typeinfo only needs the type so we remove the loadvmtaddrn }
  528. if p1.nodetype=loadvmtaddrn then
  529. begin
  530. p2:=tloadvmtaddrnode(p1).left;
  531. tloadvmtaddrnode(p1).left:=nil;
  532. p1.free;
  533. p1:=p2;
  534. end;
  535. if not codegenerror then
  536. begin
  537. case p1.resultdef.typ of
  538. procdef, { procvar }
  539. pointerdef,
  540. procvardef,
  541. classrefdef : ;
  542. objectdef :
  543. if not is_class_or_interface(p1.resultdef) then
  544. begin
  545. Message(parser_e_illegal_parameter_list);
  546. err:=true;
  547. end;
  548. arraydef :
  549. if not is_dynamic_array(p1.resultdef) then
  550. begin
  551. Message(parser_e_illegal_parameter_list);
  552. err:=true;
  553. end;
  554. else
  555. begin
  556. Message(parser_e_illegal_parameter_list);
  557. err:=true;
  558. end;
  559. end;
  560. end
  561. else
  562. err:=true;
  563. if not err then
  564. begin
  565. p2:=ccallparanode.create(p1,nil);
  566. p2:=geninlinenode(in_assigned_x,false,p2);
  567. end
  568. else
  569. begin
  570. p1.free;
  571. p2:=cerrornode.create;
  572. end;
  573. consume(_RKLAMMER);
  574. statement_syssym:=p2;
  575. end;
  576. in_addr_x :
  577. begin
  578. consume(_LKLAMMER);
  579. in_args:=true;
  580. p1:=comp_expr(true);
  581. p1:=caddrnode.create(p1);
  582. if cs_typed_addresses in current_settings.localswitches then
  583. include(p1.flags,nf_typedaddr);
  584. consume(_RKLAMMER);
  585. statement_syssym:=p1;
  586. end;
  587. in_ofs_x :
  588. begin
  589. consume(_LKLAMMER);
  590. in_args:=true;
  591. p1:=comp_expr(true);
  592. p1:=caddrnode.create(p1);
  593. do_typecheckpass(p1);
  594. { Ofs() returns a cardinal/qword, not a pointer }
  595. p1.resultdef:=uinttype;
  596. consume(_RKLAMMER);
  597. statement_syssym:=p1;
  598. end;
  599. in_seg_x :
  600. begin
  601. consume(_LKLAMMER);
  602. in_args:=true;
  603. p1:=comp_expr(true);
  604. p1:=geninlinenode(in_seg_x,false,p1);
  605. consume(_RKLAMMER);
  606. statement_syssym:=p1;
  607. end;
  608. in_high_x,
  609. in_low_x :
  610. begin
  611. consume(_LKLAMMER);
  612. in_args:=true;
  613. p1:=comp_expr(true);
  614. p2:=geninlinenode(l,false,p1);
  615. consume(_RKLAMMER);
  616. statement_syssym:=p2;
  617. end;
  618. in_succ_x,
  619. in_pred_x :
  620. begin
  621. consume(_LKLAMMER);
  622. in_args:=true;
  623. p1:=comp_expr(true);
  624. p2:=geninlinenode(l,false,p1);
  625. consume(_RKLAMMER);
  626. statement_syssym:=p2;
  627. end;
  628. in_inc_x,
  629. in_dec_x :
  630. begin
  631. consume(_LKLAMMER);
  632. in_args:=true;
  633. p1:=comp_expr(true);
  634. if try_to_consume(_COMMA) then
  635. p2:=ccallparanode.create(comp_expr(true),nil)
  636. else
  637. p2:=nil;
  638. p2:=ccallparanode.create(p1,p2);
  639. statement_syssym:=geninlinenode(l,false,p2);
  640. consume(_RKLAMMER);
  641. end;
  642. in_slice_x:
  643. begin
  644. if not(in_args) then
  645. begin
  646. message(parser_e_illegal_slice);
  647. consume(_LKLAMMER);
  648. in_args:=true;
  649. comp_expr(true).free;
  650. if try_to_consume(_COMMA) then
  651. comp_expr(true).free;
  652. statement_syssym:=cerrornode.create;
  653. consume(_RKLAMMER);
  654. end
  655. else
  656. begin
  657. consume(_LKLAMMER);
  658. in_args:=true;
  659. p1:=comp_expr(true);
  660. Consume(_COMMA);
  661. if not(codegenerror) then
  662. p2:=ccallparanode.create(comp_expr(true),nil)
  663. else
  664. p2:=cerrornode.create;
  665. p2:=ccallparanode.create(p1,p2);
  666. statement_syssym:=geninlinenode(l,false,p2);
  667. consume(_RKLAMMER);
  668. end;
  669. end;
  670. in_initialize_x:
  671. begin
  672. statement_syssym:=inline_initialize;
  673. end;
  674. in_finalize_x:
  675. begin
  676. statement_syssym:=inline_finalize;
  677. end;
  678. in_copy_x:
  679. begin
  680. statement_syssym:=inline_copy;
  681. end;
  682. in_concat_x :
  683. begin
  684. consume(_LKLAMMER);
  685. in_args:=true;
  686. { Translate to x:=x+y[+z]. The addnode will do the
  687. type checking }
  688. p2:=nil;
  689. repeat
  690. p1:=comp_expr(true);
  691. if p2<>nil then
  692. p2:=caddnode.create(addn,p2,p1)
  693. else
  694. begin
  695. { Force string type if it isn't yet }
  696. if not(
  697. (p1.resultdef.typ=stringdef) or
  698. is_chararray(p1.resultdef) or
  699. is_char(p1.resultdef)
  700. ) then
  701. inserttypeconv(p1,cshortstringtype);
  702. p2:=p1;
  703. end;
  704. until not try_to_consume(_COMMA);
  705. consume(_RKLAMMER);
  706. statement_syssym:=p2;
  707. end;
  708. in_read_x,
  709. in_readln_x,
  710. in_readstr_x:
  711. begin
  712. if try_to_consume(_LKLAMMER) then
  713. begin
  714. paras:=parse_paras(false,false,_RKLAMMER);
  715. consume(_RKLAMMER);
  716. end
  717. else
  718. paras:=nil;
  719. p1:=geninlinenode(l,false,paras);
  720. statement_syssym := p1;
  721. end;
  722. in_setlength_x:
  723. begin
  724. statement_syssym := inline_setlength;
  725. end;
  726. in_length_x:
  727. begin
  728. consume(_LKLAMMER);
  729. in_args:=true;
  730. p1:=comp_expr(true);
  731. p2:=geninlinenode(l,false,p1);
  732. consume(_RKLAMMER);
  733. statement_syssym:=p2;
  734. end;
  735. in_write_x,
  736. in_writeln_x,
  737. in_writestr_x :
  738. begin
  739. if try_to_consume(_LKLAMMER) then
  740. begin
  741. paras:=parse_paras(true,false,_RKLAMMER);
  742. consume(_RKLAMMER);
  743. end
  744. else
  745. paras:=nil;
  746. p1 := geninlinenode(l,false,paras);
  747. statement_syssym := p1;
  748. end;
  749. in_str_x_string :
  750. begin
  751. consume(_LKLAMMER);
  752. paras:=parse_paras(true,false,_RKLAMMER);
  753. consume(_RKLAMMER);
  754. p1 := geninlinenode(l,false,paras);
  755. statement_syssym := p1;
  756. end;
  757. in_val_x:
  758. Begin
  759. consume(_LKLAMMER);
  760. in_args := true;
  761. p1:= ccallparanode.create(comp_expr(true), nil);
  762. consume(_COMMA);
  763. p2 := ccallparanode.create(comp_expr(true),p1);
  764. if try_to_consume(_COMMA) then
  765. p2 := ccallparanode.create(comp_expr(true),p2);
  766. consume(_RKLAMMER);
  767. p2 := geninlinenode(l,false,p2);
  768. statement_syssym := p2;
  769. End;
  770. in_include_x_y,
  771. in_exclude_x_y :
  772. begin
  773. consume(_LKLAMMER);
  774. in_args:=true;
  775. p1:=comp_expr(true);
  776. consume(_COMMA);
  777. p2:=comp_expr(true);
  778. statement_syssym:=geninlinenode(l,false,ccallparanode.create(p1,ccallparanode.create(p2,nil)));
  779. consume(_RKLAMMER);
  780. end;
  781. in_pack_x_y_z,
  782. in_unpack_x_y_z :
  783. begin
  784. consume(_LKLAMMER);
  785. in_args:=true;
  786. p1:=comp_expr(true);
  787. consume(_COMMA);
  788. p2:=comp_expr(true);
  789. consume(_COMMA);
  790. paras:=comp_expr(true);
  791. statement_syssym:=geninlinenode(l,false,ccallparanode.create(p1,ccallparanode.create(p2,ccallparanode.create(paras,nil))));
  792. consume(_RKLAMMER);
  793. end;
  794. in_assert_x_y :
  795. begin
  796. consume(_LKLAMMER);
  797. in_args:=true;
  798. p1:=comp_expr(true);
  799. if try_to_consume(_COMMA) then
  800. p2:=comp_expr(true)
  801. else
  802. begin
  803. { then insert an empty string }
  804. p2:=cstringconstnode.createstr('');
  805. end;
  806. statement_syssym:=geninlinenode(l,false,ccallparanode.create(p1,ccallparanode.create(p2,nil)));
  807. consume(_RKLAMMER);
  808. end;
  809. in_get_frame:
  810. begin
  811. statement_syssym:=geninlinenode(l,false,nil);
  812. end;
  813. (*
  814. in_get_caller_frame:
  815. begin
  816. if try_to_consume(_LKLAMMER) then
  817. begin
  818. {You used to call get_caller_frame as get_caller_frame(get_frame),
  819. however, as a stack frame may not exist, it does more harm than
  820. good, so ignore it.}
  821. in_args:=true;
  822. p1:=comp_expr(true);
  823. p1.destroy;
  824. consume(_RKLAMMER);
  825. end;
  826. statement_syssym:=geninlinenode(l,false,nil);
  827. end;
  828. *)
  829. else
  830. internalerror(15);
  831. end;
  832. in_args:=prev_in_args;
  833. end;
  834. function maybe_load_methodpointer(st:TSymtable;var p1:tnode):boolean;
  835. begin
  836. maybe_load_methodpointer:=false;
  837. if not assigned(p1) then
  838. begin
  839. case st.symtabletype of
  840. withsymtable :
  841. begin
  842. if (st.defowner.typ=objectdef) then
  843. p1:=tnode(twithsymtable(st).withrefnode).getcopy;
  844. end;
  845. ObjectSymtable :
  846. begin
  847. p1:=load_self_node;
  848. { We are calling a member }
  849. maybe_load_methodpointer:=true;
  850. end;
  851. end;
  852. end;
  853. end;
  854. { reads the parameter for a subroutine call }
  855. procedure do_proc_call(sym:tsym;st:TSymtable;obj:tobjectdef;getaddr:boolean;var again : boolean;var p1:tnode;callflags:tcallnodeflags);
  856. var
  857. membercall,
  858. prevafterassn : boolean;
  859. i : integer;
  860. para,p2 : tnode;
  861. currpara : tparavarsym;
  862. aprocdef : tprocdef;
  863. begin
  864. prevafterassn:=afterassignment;
  865. afterassignment:=false;
  866. membercall:=false;
  867. aprocdef:=nil;
  868. { when it is a call to a member we need to load the
  869. methodpointer first }
  870. membercall:=maybe_load_methodpointer(st,p1);
  871. { When we are expecting a procvar we also need
  872. to get the address in some cases }
  873. if assigned(getprocvardef) then
  874. begin
  875. if (block_type=bt_const) or
  876. getaddr then
  877. begin
  878. aprocdef:=Tprocsym(sym).Find_procdef_byprocvardef(getprocvardef);
  879. getaddr:=true;
  880. end
  881. else
  882. if (m_tp_procvar in current_settings.modeswitches) or
  883. (m_mac_procvar in current_settings.modeswitches) then
  884. begin
  885. aprocdef:=Tprocsym(sym).Find_procdef_byprocvardef(getprocvardef);
  886. if assigned(aprocdef) then
  887. getaddr:=true;
  888. end;
  889. end;
  890. { only need to get the address of the procedure? }
  891. if getaddr then
  892. begin
  893. { Retrieve info which procvar to call. For tp_procvar the
  894. aprocdef is already loaded above so we can reuse it }
  895. if not assigned(aprocdef) and
  896. assigned(getprocvardef) then
  897. aprocdef:=Tprocsym(sym).Find_procdef_byprocvardef(getprocvardef);
  898. { generate a methodcallnode or proccallnode }
  899. { we shouldn't convert things like @tcollection.load }
  900. p2:=cloadnode.create_procvar(sym,aprocdef,st);
  901. if assigned(p1) then
  902. begin
  903. { for loading methodpointer of an inherited function
  904. we use self as instance and load the address of
  905. the function directly and not through the vmt (PFV) }
  906. if (cnf_inherited in callflags) then
  907. begin
  908. include(p2.flags,nf_inherited);
  909. p1.free;
  910. p1:=load_self_node;
  911. end;
  912. if (p1.nodetype<>typen) then
  913. tloadnode(p2).set_mp(p1)
  914. else
  915. p1.free;
  916. end;
  917. p1:=p2;
  918. { no postfix operators }
  919. again:=false;
  920. end
  921. else
  922. begin
  923. para:=nil;
  924. if anon_inherited then
  925. begin
  926. if not assigned(current_procinfo) then
  927. internalerror(200305054);
  928. for i:=0 to current_procinfo.procdef.paras.count-1 do
  929. begin
  930. currpara:=tparavarsym(current_procinfo.procdef.paras[i]);
  931. if not(vo_is_hidden_para in currpara.varoptions) then
  932. begin
  933. { inheritance by msgint? }
  934. if assigned(srdef) then
  935. { anonymous inherited via msgid calls only require a var parameter for
  936. both methods, so we need some type casting here }
  937. para:=ccallparanode.create(ctypeconvnode.create_internal(ctypeconvnode.create_internal(
  938. cloadnode.create(currpara,currpara.owner),cformaltype),tparavarsym(tprocdef(srdef).paras[i]).vardef),
  939. para)
  940. else
  941. para:=ccallparanode.create(cloadnode.create(currpara,currpara.owner),para);
  942. end;
  943. end;
  944. end
  945. else
  946. begin
  947. if try_to_consume(_LKLAMMER) then
  948. begin
  949. para:=parse_paras(false,false,_RKLAMMER);
  950. consume(_RKLAMMER);
  951. end;
  952. end;
  953. { indicate if this call was generated by a member and
  954. no explicit self is used, this is needed to determine
  955. how to handle a destructor call (PFV) }
  956. if membercall then
  957. include(callflags,cnf_member_call);
  958. if assigned(obj) then
  959. begin
  960. if (st.symtabletype<>ObjectSymtable) then
  961. internalerror(200310031);
  962. p1:=ccallnode.create(para,tprocsym(sym),obj.symtable,p1,callflags);
  963. end
  964. else
  965. p1:=ccallnode.create(para,tprocsym(sym),st,p1,callflags);
  966. end;
  967. afterassignment:=prevafterassn;
  968. end;
  969. procedure handle_procvar(pv : tprocvardef;var p2 : tnode);
  970. var
  971. hp,hp2 : tnode;
  972. hpp : ^tnode;
  973. currprocdef : tprocdef;
  974. begin
  975. if not assigned(pv) then
  976. internalerror(200301121);
  977. if (m_tp_procvar in current_settings.modeswitches) or
  978. (m_mac_procvar in current_settings.modeswitches) then
  979. begin
  980. hp:=p2;
  981. hpp:=@p2;
  982. while assigned(hp) and
  983. (hp.nodetype=typeconvn) do
  984. begin
  985. hp:=ttypeconvnode(hp).left;
  986. { save orignal address of the old tree so we can replace the node }
  987. hpp:=@hp;
  988. end;
  989. if (hp.nodetype=calln) and
  990. { a procvar can't have parameters! }
  991. not assigned(tcallnode(hp).left) then
  992. begin
  993. currprocdef:=tcallnode(hp).symtableprocentry.Find_procdef_byprocvardef(pv);
  994. if assigned(currprocdef) then
  995. begin
  996. hp2:=cloadnode.create_procvar(tprocsym(tcallnode(hp).symtableprocentry),currprocdef,tcallnode(hp).symtableproc);
  997. if (po_methodpointer in pv.procoptions) then
  998. tloadnode(hp2).set_mp(tcallnode(hp).methodpointer.getcopy);
  999. hp.destroy;
  1000. { replace the old callnode with the new loadnode }
  1001. hpp^:=hp2;
  1002. end;
  1003. end;
  1004. end;
  1005. end;
  1006. { the following procedure handles the access to a property symbol }
  1007. procedure handle_propertysym(propsym : tpropertysym;st : TSymtable;var p1 : tnode);
  1008. var
  1009. paras : tnode;
  1010. p2 : tnode;
  1011. membercall : boolean;
  1012. callflags : tcallnodeflags;
  1013. propaccesslist : tpropaccesslist;
  1014. function getpropaccesslist(pap:tpropaccesslisttypes):boolean;
  1015. var
  1016. hpropsym : tpropertysym;
  1017. begin
  1018. result:=false;
  1019. { find property in the overriden list }
  1020. hpropsym:=propsym;
  1021. repeat
  1022. propaccesslist:=hpropsym.propaccesslist[pap];
  1023. if not propaccesslist.empty then
  1024. begin
  1025. result:=true;
  1026. exit;
  1027. end;
  1028. hpropsym:=hpropsym.overridenpropsym;
  1029. until not assigned(hpropsym);
  1030. end;
  1031. begin
  1032. { property parameters? read them only if the property really }
  1033. { has parameters }
  1034. paras:=nil;
  1035. if (ppo_hasparameters in propsym.propoptions) then
  1036. begin
  1037. if try_to_consume(_LECKKLAMMER) then
  1038. begin
  1039. paras:=parse_paras(false,false,_RECKKLAMMER);
  1040. consume(_RECKKLAMMER);
  1041. end;
  1042. end;
  1043. { indexed property }
  1044. if (ppo_indexed in propsym.propoptions) then
  1045. begin
  1046. p2:=cordconstnode.create(propsym.index,propsym.indexdef,true);
  1047. paras:=ccallparanode.create(p2,paras);
  1048. end;
  1049. { we need only a write property if a := follows }
  1050. { if not(afterassignment) and not(in_args) then }
  1051. if token=_ASSIGNMENT then
  1052. begin
  1053. if getpropaccesslist(palt_write) then
  1054. begin
  1055. case propaccesslist.firstsym^.sym.typ of
  1056. procsym :
  1057. begin
  1058. callflags:=[];
  1059. { generate the method call }
  1060. membercall:=maybe_load_methodpointer(st,p1);
  1061. if membercall then
  1062. include(callflags,cnf_member_call);
  1063. p1:=ccallnode.create(paras,tprocsym(propaccesslist.firstsym^.sym),st,p1,callflags);
  1064. addsymref(propaccesslist.firstsym^.sym);
  1065. paras:=nil;
  1066. consume(_ASSIGNMENT);
  1067. { read the expression }
  1068. if propsym.propdef.typ=procvardef then
  1069. getprocvardef:=tprocvardef(propsym.propdef);
  1070. p2:=comp_expr(true);
  1071. if assigned(getprocvardef) then
  1072. handle_procvar(getprocvardef,p2);
  1073. tcallnode(p1).left:=ccallparanode.create(p2,tcallnode(p1).left);
  1074. { mark as property, both the tcallnode and the real call block }
  1075. include(p1.flags,nf_isproperty);
  1076. getprocvardef:=nil;
  1077. end;
  1078. fieldvarsym :
  1079. begin
  1080. { generate access code }
  1081. propaccesslist_to_node(p1,st,propaccesslist);
  1082. include(p1.flags,nf_isproperty);
  1083. consume(_ASSIGNMENT);
  1084. { read the expression }
  1085. p2:=comp_expr(true);
  1086. p1:=cassignmentnode.create(p1,p2);
  1087. end
  1088. else
  1089. begin
  1090. p1:=cerrornode.create;
  1091. Message(parser_e_no_procedure_to_access_property);
  1092. end;
  1093. end;
  1094. end
  1095. else
  1096. begin
  1097. p1:=cerrornode.create;
  1098. Message(parser_e_no_procedure_to_access_property);
  1099. end;
  1100. end
  1101. else
  1102. begin
  1103. if getpropaccesslist(palt_read) then
  1104. begin
  1105. case propaccesslist.firstsym^.sym.typ of
  1106. fieldvarsym :
  1107. begin
  1108. { generate access code }
  1109. propaccesslist_to_node(p1,st,propaccesslist);
  1110. include(p1.flags,nf_isproperty);
  1111. end;
  1112. procsym :
  1113. begin
  1114. callflags:=[];
  1115. { generate the method call }
  1116. membercall:=maybe_load_methodpointer(st,p1);
  1117. if membercall then
  1118. include(callflags,cnf_member_call);
  1119. p1:=ccallnode.create(paras,tprocsym(propaccesslist.firstsym^.sym),st,p1,callflags);
  1120. paras:=nil;
  1121. include(p1.flags,nf_isproperty);
  1122. end
  1123. else
  1124. begin
  1125. p1:=cerrornode.create;
  1126. Message(type_e_mismatch);
  1127. end;
  1128. end;
  1129. end
  1130. else
  1131. begin
  1132. { error, no function to read property }
  1133. p1:=cerrornode.create;
  1134. Message(parser_e_no_procedure_to_access_property);
  1135. end;
  1136. end;
  1137. { release paras if not used }
  1138. if assigned(paras) then
  1139. paras.free;
  1140. end;
  1141. { the ID token has to be consumed before calling this function }
  1142. procedure do_member_read(classh:tobjectdef;getaddr : boolean;sym : tsym;var p1 : tnode;var again : boolean;callflags:tcallnodeflags);
  1143. var
  1144. static_name : string;
  1145. isclassref : boolean;
  1146. srsymtable : TSymtable;
  1147. begin
  1148. if sym=nil then
  1149. begin
  1150. { pattern is still valid unless
  1151. there is another ID just after the ID of sym }
  1152. Message1(sym_e_id_no_member,orgpattern);
  1153. p1.free;
  1154. p1:=cerrornode.create;
  1155. { try to clean up }
  1156. again:=false;
  1157. end
  1158. else
  1159. begin
  1160. if assigned(p1) then
  1161. begin
  1162. if not assigned(p1.resultdef) then
  1163. do_typecheckpass(p1);
  1164. isclassref:=(p1.resultdef.typ=classrefdef);
  1165. end
  1166. else
  1167. isclassref:=false;
  1168. { we assume, that only procsyms and varsyms are in an object }
  1169. { symbol table, for classes, properties are allowed }
  1170. case sym.typ of
  1171. procsym:
  1172. begin
  1173. do_proc_call(sym,sym.owner,classh,
  1174. (getaddr and not(token in [_CARET,_POINT])),
  1175. again,p1,callflags);
  1176. { we need to know which procedure is called }
  1177. do_typecheckpass(p1);
  1178. { calling using classref? }
  1179. if isclassref and
  1180. (p1.nodetype=calln) and
  1181. assigned(tcallnode(p1).procdefinition) and
  1182. not(po_classmethod in tcallnode(p1).procdefinition.procoptions) and
  1183. not(tcallnode(p1).procdefinition.proctypeoption=potype_constructor) then
  1184. Message(parser_e_only_class_methods_via_class_ref);
  1185. end;
  1186. fieldvarsym:
  1187. begin
  1188. if (sp_static in sym.symoptions) then
  1189. begin
  1190. static_name:=lower(sym.owner.name^)+'_'+sym.name;
  1191. searchsym(static_name,sym,srsymtable);
  1192. if assigned(sym) then
  1193. check_hints(sym,sym.symoptions);
  1194. p1.free;
  1195. p1:=cloadnode.create(sym,srsymtable);
  1196. end
  1197. else
  1198. begin
  1199. if isclassref then
  1200. if assigned(p1) and
  1201. is_self_node(p1) then
  1202. Message(parser_e_only_class_methods)
  1203. else
  1204. Message(parser_e_only_class_methods_via_class_ref);
  1205. p1:=csubscriptnode.create(sym,p1);
  1206. end;
  1207. end;
  1208. propertysym:
  1209. begin
  1210. if isclassref then
  1211. Message(parser_e_only_class_methods_via_class_ref);
  1212. handle_propertysym(tpropertysym(sym),sym.owner,p1);
  1213. end;
  1214. typesym:
  1215. begin
  1216. p1:=ctypenode.create(ttypesym(sym).typedef);
  1217. end;
  1218. else internalerror(16);
  1219. end;
  1220. end;
  1221. end;
  1222. {****************************************************************************
  1223. Factor
  1224. ****************************************************************************}
  1225. function is_member_read(sym: tsym; st: tsymtable; var p1: tnode;
  1226. out memberparentdef: tdef): boolean;
  1227. var
  1228. hdef : tdef;
  1229. begin
  1230. result:=true;
  1231. memberparentdef:=nil;
  1232. case st.symtabletype of
  1233. ObjectSymtable:
  1234. begin
  1235. memberparentdef:=tdef(st.defowner);
  1236. exit;
  1237. end;
  1238. WithSymtable:
  1239. begin
  1240. if assigned(p1) then
  1241. internalerror(2007012002);
  1242. hdef:=tnode(twithsymtable(st).withrefnode).resultdef;
  1243. p1:=tnode(twithsymtable(st).withrefnode).getcopy;
  1244. if not(hdef.typ in [objectdef,classrefdef]) then
  1245. exit;
  1246. if (hdef.typ=classrefdef) then
  1247. hdef:=tclassrefdef(hdef).pointeddef;
  1248. memberparentdef:=hdef;
  1249. end;
  1250. else
  1251. result:=false;
  1252. end;
  1253. end;
  1254. {$maxfpuregisters 0}
  1255. function factor(getaddr : boolean) : tnode;
  1256. {---------------------------------------------
  1257. Factor_read_id
  1258. ---------------------------------------------}
  1259. procedure factor_read_id(var p1:tnode;var again:boolean);
  1260. var
  1261. pc : pchar;
  1262. srsym : tsym;
  1263. unit_found : boolean;
  1264. srsymtable : TSymtable;
  1265. hdef : tdef;
  1266. orgstoredpattern,
  1267. storedpattern : string;
  1268. len : longint;
  1269. begin
  1270. { allow post fix operators }
  1271. again:=true;
  1272. { first check for identifier }
  1273. if token<>_ID then
  1274. begin
  1275. srsym:=generrorsym;
  1276. srsymtable:=nil;
  1277. consume(_ID);
  1278. end
  1279. else
  1280. begin
  1281. searchsym(pattern,srsym,srsymtable);
  1282. { handle unit specification like System.Writeln }
  1283. unit_found:=try_consume_unitsym(srsym,srsymtable);
  1284. storedpattern:=pattern;
  1285. orgstoredpattern:=orgpattern;
  1286. consume(_ID);
  1287. { named parameter support }
  1288. found_arg_name:=false;
  1289. if not(unit_found) and
  1290. named_args_allowed and
  1291. (token=_ASSIGNMENT) then
  1292. begin
  1293. found_arg_name:=true;
  1294. p1:=cstringconstnode.createstr(storedpattern);
  1295. consume(_ASSIGNMENT);
  1296. exit;
  1297. end;
  1298. { if nothing found give error and return errorsym }
  1299. if assigned(srsym) then
  1300. check_hints(srsym,srsym.symoptions)
  1301. else
  1302. begin
  1303. identifier_not_found(orgstoredpattern);
  1304. srsym:=generrorsym;
  1305. srsymtable:=nil;
  1306. end;
  1307. end;
  1308. { Access to funcret or need to call the function? }
  1309. if (srsym.typ in [absolutevarsym,localvarsym,paravarsym]) and
  1310. (vo_is_funcret in tabstractvarsym(srsym).varoptions) and
  1311. (
  1312. (token=_LKLAMMER) or
  1313. (
  1314. (
  1315. (m_tp7 in current_settings.modeswitches) or
  1316. (m_delphi in current_settings.modeswitches)
  1317. ) and
  1318. (afterassignment or in_args) and
  1319. not(vo_is_result in tabstractvarsym(srsym).varoptions)
  1320. )
  1321. ) then
  1322. begin
  1323. hdef:=tdef(srsym.owner.defowner);
  1324. if assigned(hdef) and
  1325. (hdef.typ=procdef) then
  1326. srsym:=tprocdef(hdef).procsym
  1327. else
  1328. begin
  1329. Message(parser_e_illegal_expression);
  1330. srsym:=generrorsym;
  1331. end;
  1332. srsymtable:=srsym.owner;
  1333. end;
  1334. begin
  1335. case srsym.typ of
  1336. absolutevarsym :
  1337. begin
  1338. if (tabsolutevarsym(srsym).abstyp=tovar) then
  1339. begin
  1340. p1:=nil;
  1341. propaccesslist_to_node(p1,nil,tabsolutevarsym(srsym).ref);
  1342. p1:=ctypeconvnode.create(p1,tabsolutevarsym(srsym).vardef);
  1343. include(p1.flags,nf_absolute);
  1344. end
  1345. else
  1346. p1:=cloadnode.create(srsym,srsymtable);
  1347. end;
  1348. staticvarsym,
  1349. localvarsym,
  1350. paravarsym,
  1351. fieldvarsym :
  1352. begin
  1353. { check if we are reading a field of an object/class/ }
  1354. { record. is_member_read() will deal with withsymtables }
  1355. { if needed. }
  1356. if is_member_read(srsym,srsymtable,p1,hdef) then
  1357. begin
  1358. { if the field was originally found in an }
  1359. { objectsymtable, it means it's part of self }
  1360. if (srsymtable.symtabletype=ObjectSymtable) then
  1361. p1:=load_self_node;
  1362. { now, if the field itself is part of an objectsymtab }
  1363. { (it can be even if it was found in a withsymtable, }
  1364. { e.g., "with classinstance do field := 5"), then }
  1365. { let do_member_read handle it }
  1366. if (srsym.owner.symtabletype=ObjectSymtable) then
  1367. do_member_read(tobjectdef(hdef),getaddr,srsym,p1,again,[])
  1368. else
  1369. { otherwise it's a regular record subscript }
  1370. p1:=csubscriptnode.create(srsym,p1);
  1371. end
  1372. else
  1373. { regular non-field load }
  1374. p1:=cloadnode.create(srsym,srsymtable);
  1375. end;
  1376. syssym :
  1377. begin
  1378. p1:=statement_syssym(tsyssym(srsym).number);
  1379. end;
  1380. typesym :
  1381. begin
  1382. hdef:=ttypesym(srsym).typedef;
  1383. if not assigned(hdef) then
  1384. begin
  1385. again:=false;
  1386. end
  1387. else
  1388. begin
  1389. { We need to know if this unit uses Variants }
  1390. if (hdef=cvarianttype) and
  1391. not(cs_compilesystem in current_settings.moduleswitches) then
  1392. current_module.flags:=current_module.flags or uf_uses_variants;
  1393. if (block_type<>bt_specialize) and
  1394. try_to_consume(_LKLAMMER) then
  1395. begin
  1396. p1:=comp_expr(true);
  1397. consume(_RKLAMMER);
  1398. p1:=ctypeconvnode.create_explicit(p1,hdef);
  1399. end
  1400. else { not LKLAMMER }
  1401. if (token=_POINT) and
  1402. is_object(hdef) then
  1403. begin
  1404. consume(_POINT);
  1405. if assigned(current_procinfo) and
  1406. assigned(current_procinfo.procdef._class) and
  1407. not(getaddr) then
  1408. begin
  1409. if current_procinfo.procdef._class.is_related(tobjectdef(hdef)) then
  1410. begin
  1411. p1:=ctypenode.create(hdef);
  1412. { search also in inherited methods }
  1413. searchsym_in_class(tobjectdef(hdef),current_procinfo.procdef._class,pattern,srsym,srsymtable);
  1414. if assigned(srsym) then
  1415. check_hints(srsym,srsym.symoptions);
  1416. consume(_ID);
  1417. do_member_read(tobjectdef(hdef),false,srsym,p1,again,[]);
  1418. end
  1419. else
  1420. begin
  1421. Message(parser_e_no_super_class);
  1422. again:=false;
  1423. end;
  1424. end
  1425. else
  1426. begin
  1427. { allows @TObject.Load }
  1428. { also allows static methods and variables }
  1429. p1:=ctypenode.create(hdef);
  1430. { TP allows also @TMenu.Load if Load is only }
  1431. { defined in an anchestor class }
  1432. srsym:=search_class_member(tobjectdef(hdef),pattern);
  1433. if assigned(srsym) then
  1434. begin
  1435. check_hints(srsym,srsym.symoptions);
  1436. if not(getaddr) and not(sp_static in srsym.symoptions) then
  1437. Message(sym_e_only_static_in_static)
  1438. else
  1439. begin
  1440. consume(_ID);
  1441. do_member_read(tobjectdef(hdef),getaddr,srsym,p1,again,[]);
  1442. end;
  1443. end
  1444. else
  1445. Message1(sym_e_id_no_member,orgpattern);
  1446. end;
  1447. end
  1448. else
  1449. begin
  1450. { class reference ? }
  1451. if is_class(hdef) then
  1452. begin
  1453. if getaddr and (token=_POINT) then
  1454. begin
  1455. consume(_POINT);
  1456. { allows @Object.Method }
  1457. { also allows static methods and variables }
  1458. p1:=ctypenode.create(hdef);
  1459. { TP allows also @TMenu.Load if Load is only }
  1460. { defined in an anchestor class }
  1461. srsym:=search_class_member(tobjectdef(hdef),pattern);
  1462. if assigned(srsym) then
  1463. begin
  1464. check_hints(srsym,srsym.symoptions);
  1465. consume(_ID);
  1466. do_member_read(tobjectdef(hdef),getaddr,srsym,p1,again,[]);
  1467. end
  1468. else
  1469. begin
  1470. Message1(sym_e_id_no_member,orgpattern);
  1471. consume(_ID);
  1472. end;
  1473. end
  1474. else
  1475. begin
  1476. p1:=ctypenode.create(hdef);
  1477. { For a type block we simply return only
  1478. the type. For all other blocks we return
  1479. a loadvmt node }
  1480. if not(block_type in [bt_type,bt_specialize]) then
  1481. p1:=cloadvmtaddrnode.create(p1);
  1482. end;
  1483. end
  1484. else
  1485. p1:=ctypenode.create(hdef);
  1486. end;
  1487. end;
  1488. end;
  1489. enumsym :
  1490. begin
  1491. p1:=genenumnode(tenumsym(srsym));
  1492. end;
  1493. constsym :
  1494. begin
  1495. case tconstsym(srsym).consttyp of
  1496. constord :
  1497. begin
  1498. if tconstsym(srsym).constdef=nil then
  1499. internalerror(200403232);
  1500. p1:=cordconstnode.create(tconstsym(srsym).value.valueord,tconstsym(srsym).constdef,true);
  1501. end;
  1502. conststring :
  1503. begin
  1504. len:=tconstsym(srsym).value.len;
  1505. if not(cs_ansistrings in current_settings.localswitches) and (len>255) then
  1506. len:=255;
  1507. getmem(pc,len+1);
  1508. move(pchar(tconstsym(srsym).value.valueptr)^,pc^,len);
  1509. pc[len]:=#0;
  1510. p1:=cstringconstnode.createpchar(pc,len);
  1511. end;
  1512. constwstring :
  1513. p1:=cstringconstnode.createwstr(pcompilerwidestring(tconstsym(srsym).value.valueptr));
  1514. constreal :
  1515. p1:=crealconstnode.create(pbestreal(tconstsym(srsym).value.valueptr)^,pbestrealtype^);
  1516. constset :
  1517. p1:=csetconstnode.create(pconstset(tconstsym(srsym).value.valueptr),tconstsym(srsym).constdef);
  1518. constpointer :
  1519. p1:=cpointerconstnode.create(tconstsym(srsym).value.valueordptr,tconstsym(srsym).constdef);
  1520. constnil :
  1521. p1:=cnilnode.create;
  1522. constresourcestring:
  1523. begin
  1524. p1:=cloadnode.create(srsym,srsymtable);
  1525. do_typecheckpass(p1);
  1526. p1.resultdef:=cansistringtype;
  1527. end;
  1528. constguid :
  1529. p1:=cguidconstnode.create(pguid(tconstsym(srsym).value.valueptr)^);
  1530. else
  1531. internalerror(200507181);
  1532. end;
  1533. end;
  1534. procsym :
  1535. begin
  1536. { check if it's a method/class method }
  1537. if is_member_read(srsym,srsymtable,p1,hdef) then
  1538. begin
  1539. { not srsymtable.symtabletype since that can be }
  1540. { withsymtable as well }
  1541. if (srsym.owner.symtabletype=ObjectSymtable) then
  1542. do_member_read(tobjectdef(hdef),getaddr,srsym,p1,again,[])
  1543. else
  1544. { no procsyms in records (yet) }
  1545. internalerror(2007012006);
  1546. end
  1547. else
  1548. { regular procedure/function call }
  1549. do_proc_call(srsym,srsymtable,nil,
  1550. (getaddr and not(token in [_CARET,_POINT])),
  1551. again,p1,[]);
  1552. end;
  1553. propertysym :
  1554. begin
  1555. { property of a class/object? }
  1556. if is_member_read(srsym,srsymtable,p1,hdef) then
  1557. begin
  1558. { not srsymtable.symtabletype since that can be }
  1559. { withsymtable as well }
  1560. if (srsym.owner.symtabletype=ObjectSymtable) then
  1561. do_member_read(tobjectdef(hdef),getaddr,srsym,p1,again,[])
  1562. else
  1563. { no propertysyms in records (yet) }
  1564. internalerror(2007012006);
  1565. end
  1566. else
  1567. { no method pointer }
  1568. begin
  1569. p1:=nil;
  1570. handle_propertysym(tpropertysym(srsym),srsymtable,p1);
  1571. end;
  1572. end;
  1573. labelsym :
  1574. begin
  1575. { Support @label }
  1576. if getaddr then
  1577. begin
  1578. if srsym.owner<>current_procinfo.procdef.localst then
  1579. CGMessage(parser_e_label_outside_proc);
  1580. p1:=cloadnode.create(srsym,srsym.owner)
  1581. end
  1582. else
  1583. begin
  1584. consume(_COLON);
  1585. if tlabelsym(srsym).defined then
  1586. Message(sym_e_label_already_defined);
  1587. tlabelsym(srsym).defined:=true;
  1588. p1:=clabelnode.create(nil,tlabelsym(srsym));
  1589. tlabelsym(srsym).code:=p1;
  1590. end;
  1591. end;
  1592. errorsym :
  1593. begin
  1594. p1:=cerrornode.create;
  1595. if try_to_consume(_LKLAMMER) then
  1596. begin
  1597. parse_paras(false,false,_RKLAMMER);
  1598. consume(_RKLAMMER);
  1599. end;
  1600. end;
  1601. else
  1602. begin
  1603. p1:=cerrornode.create;
  1604. Message(parser_e_illegal_expression);
  1605. end;
  1606. end; { end case }
  1607. end;
  1608. end;
  1609. {---------------------------------------------
  1610. Factor_Read_Set
  1611. ---------------------------------------------}
  1612. { Read a set between [] }
  1613. function factor_read_set:tnode;
  1614. var
  1615. p1,p2 : tnode;
  1616. lastp,
  1617. buildp : tarrayconstructornode;
  1618. begin
  1619. buildp:=nil;
  1620. { be sure that a least one arrayconstructn is used, also for an
  1621. empty [] }
  1622. if token=_RECKKLAMMER then
  1623. buildp:=carrayconstructornode.create(nil,buildp)
  1624. else
  1625. repeat
  1626. p1:=comp_expr(true);
  1627. if try_to_consume(_POINTPOINT) then
  1628. begin
  1629. p2:=comp_expr(true);
  1630. p1:=carrayconstructorrangenode.create(p1,p2);
  1631. end;
  1632. { insert at the end of the tree, to get the correct order }
  1633. if not assigned(buildp) then
  1634. begin
  1635. buildp:=carrayconstructornode.create(p1,nil);
  1636. lastp:=buildp;
  1637. end
  1638. else
  1639. begin
  1640. lastp.right:=carrayconstructornode.create(p1,nil);
  1641. lastp:=tarrayconstructornode(lastp.right);
  1642. end;
  1643. { there could be more elements }
  1644. until not try_to_consume(_COMMA);
  1645. factor_read_set:=buildp;
  1646. end;
  1647. {---------------------------------------------
  1648. PostFixOperators
  1649. ---------------------------------------------}
  1650. procedure postfixoperators(var p1:tnode;var again:boolean);
  1651. { tries to avoid syntax errors after invalid qualifiers }
  1652. procedure recoverconsume_postfixops;
  1653. begin
  1654. repeat
  1655. if not try_to_consume(_CARET) then
  1656. if try_to_consume(_POINT) then
  1657. try_to_consume(_ID)
  1658. else if try_to_consume(_LECKKLAMMER) then
  1659. begin
  1660. repeat
  1661. comp_expr(true);
  1662. until not try_to_consume(_COMMA);
  1663. consume(_RECKKLAMMER);
  1664. end
  1665. else
  1666. break;
  1667. until false;
  1668. end;
  1669. procedure handle_variantarray;
  1670. var
  1671. p4 : tnode;
  1672. newstatement : tstatementnode;
  1673. tempresultvariant,
  1674. temp : ttempcreatenode;
  1675. paras : tcallparanode;
  1676. newblock : tnode;
  1677. countindices : aint;
  1678. begin
  1679. { create statements with call initialize the arguments and
  1680. call fpc_dynarr_setlength }
  1681. newblock:=internalstatements(newstatement);
  1682. { get temp for array of indicies,
  1683. we set the real size later }
  1684. temp:=ctempcreatenode.create(s32inttype,4,tt_persistent,false);
  1685. addstatement(newstatement,temp);
  1686. countindices:=0;
  1687. repeat
  1688. p4:=comp_expr(true);
  1689. addstatement(newstatement,cassignmentnode.create(
  1690. ctemprefnode.create_offset(temp,countindices*s32inttype.size),p4));
  1691. inc(countindices);
  1692. until not try_to_consume(_COMMA);
  1693. { set real size }
  1694. temp.size:=countindices*s32inttype.size;
  1695. consume(_RECKKLAMMER);
  1696. { we need only a write access if a := follows }
  1697. if token=_ASSIGNMENT then
  1698. begin
  1699. consume(_ASSIGNMENT);
  1700. p4:=comp_expr(true);
  1701. { create call to fpc_vararray_put }
  1702. paras:=ccallparanode.create(cordconstnode.create
  1703. (countindices,s32inttype,true),
  1704. ccallparanode.create(caddrnode.create_internal
  1705. (ctemprefnode.create(temp)),
  1706. ccallparanode.create(ctypeconvnode.create_internal(p4,cvarianttype),
  1707. ccallparanode.create(p1
  1708. ,nil))));
  1709. addstatement(newstatement,ccallnode.createintern('fpc_vararray_put',paras));
  1710. addstatement(newstatement,ctempdeletenode.create(temp));
  1711. end
  1712. else
  1713. begin
  1714. { create temp for result }
  1715. tempresultvariant:=ctempcreatenode.create(cvarianttype,cvarianttype.size,tt_persistent,true);
  1716. addstatement(newstatement,tempresultvariant);
  1717. { create call to fpc_vararray_get }
  1718. paras:=ccallparanode.create(cordconstnode.create
  1719. (countindices,s32inttype,true),
  1720. ccallparanode.create(caddrnode.create_internal
  1721. (ctemprefnode.create(temp)),
  1722. ccallparanode.create(p1,
  1723. ccallparanode.create(
  1724. ctemprefnode.create(tempresultvariant)
  1725. ,nil))));
  1726. addstatement(newstatement,ccallnode.createintern('fpc_vararray_get',paras));
  1727. addstatement(newstatement,ctempdeletenode.create(temp));
  1728. { the last statement should return the value as
  1729. location and type, this is done be referencing the
  1730. temp and converting it first from a persistent temp to
  1731. normal temp }
  1732. addstatement(newstatement,ctempdeletenode.create_normal_temp(tempresultvariant));
  1733. addstatement(newstatement,ctemprefnode.create(tempresultvariant));
  1734. end;
  1735. p1:=newblock;
  1736. end;
  1737. var
  1738. protsym : tpropertysym;
  1739. p2,p3 : tnode;
  1740. srsym : tsym;
  1741. srsymtable : TSymtable;
  1742. classh : tobjectdef;
  1743. { shouldn't be used that often, so the extra overhead is ok to save
  1744. stack space }
  1745. dispatchstring : ansistring;
  1746. label
  1747. skipreckklammercheck;
  1748. begin
  1749. again:=true;
  1750. while again do
  1751. begin
  1752. { we need the resultdef }
  1753. do_typecheckpass(p1);
  1754. if codegenerror then
  1755. begin
  1756. recoverconsume_postfixops;
  1757. exit;
  1758. end;
  1759. { handle token }
  1760. case token of
  1761. _CARET:
  1762. begin
  1763. consume(_CARET);
  1764. { support tp/mac procvar^ if the procvar returns a
  1765. pointer type }
  1766. if ((m_tp_procvar in current_settings.modeswitches) or
  1767. (m_mac_procvar in current_settings.modeswitches)) and
  1768. (p1.resultdef.typ=procvardef) and
  1769. (tprocvardef(p1.resultdef).returndef.typ=pointerdef) then
  1770. begin
  1771. p1:=ccallnode.create_procvar(nil,p1);
  1772. typecheckpass(p1);
  1773. end;
  1774. if (p1.resultdef.typ<>pointerdef) then
  1775. begin
  1776. { ^ as binary operator is a problem!!!! (FK) }
  1777. again:=false;
  1778. Message(parser_e_invalid_qualifier);
  1779. recoverconsume_postfixops;
  1780. p1.destroy;
  1781. p1:=cerrornode.create;
  1782. end
  1783. else
  1784. p1:=cderefnode.create(p1);
  1785. end;
  1786. _LECKKLAMMER:
  1787. begin
  1788. if is_class_or_interface(p1.resultdef) then
  1789. begin
  1790. { default property }
  1791. protsym:=search_default_property(tobjectdef(p1.resultdef));
  1792. if not(assigned(protsym)) then
  1793. begin
  1794. p1.destroy;
  1795. p1:=cerrornode.create;
  1796. again:=false;
  1797. message(parser_e_no_default_property_available);
  1798. end
  1799. else
  1800. begin
  1801. { The property symbol is referenced indirect }
  1802. protsym.IncRefCount;
  1803. handle_propertysym(protsym,protsym.owner,p1);
  1804. end;
  1805. end
  1806. else
  1807. begin
  1808. consume(_LECKKLAMMER);
  1809. repeat
  1810. case p1.resultdef.typ of
  1811. pointerdef:
  1812. begin
  1813. { support delphi autoderef }
  1814. if (tpointerdef(p1.resultdef).pointeddef.typ=arraydef) and
  1815. (m_autoderef in current_settings.modeswitches) then
  1816. p1:=cderefnode.create(p1);
  1817. p2:=comp_expr(true);
  1818. { Support Pbytevar[0..9] which returns array [0..9].}
  1819. if try_to_consume(_POINTPOINT) then
  1820. p2:=crangenode.create(p2,comp_expr(true));
  1821. p1:=cvecnode.create(p1,p2);
  1822. end;
  1823. variantdef:
  1824. begin
  1825. handle_variantarray;
  1826. { the RECKKLAMMER is already read }
  1827. goto skipreckklammercheck;
  1828. end;
  1829. stringdef :
  1830. begin
  1831. p2:=comp_expr(true);
  1832. { Support string[0..9] which returns array [0..9] of char.}
  1833. if try_to_consume(_POINTPOINT) then
  1834. p2:=crangenode.create(p2,comp_expr(true));
  1835. p1:=cvecnode.create(p1,p2);
  1836. end;
  1837. arraydef:
  1838. begin
  1839. p2:=comp_expr(true);
  1840. { support SEG:OFS for go32v2 Mem[] }
  1841. if (target_info.system in [system_i386_go32v2,system_i386_watcom]) and
  1842. (p1.nodetype=loadn) and
  1843. assigned(tloadnode(p1).symtableentry) and
  1844. assigned(tloadnode(p1).symtableentry.owner.name) and
  1845. (tloadnode(p1).symtableentry.owner.name^='SYSTEM') and
  1846. ((tloadnode(p1).symtableentry.name='MEM') or
  1847. (tloadnode(p1).symtableentry.name='MEMW') or
  1848. (tloadnode(p1).symtableentry.name='MEML')) then
  1849. begin
  1850. if try_to_consume(_COLON) then
  1851. begin
  1852. p3:=caddnode.create(muln,cordconstnode.create($10,s32inttype,false),p2);
  1853. p2:=comp_expr(true);
  1854. p2:=caddnode.create(addn,p2,p3);
  1855. if try_to_consume(_POINTPOINT) then
  1856. { Support mem[$a000:$0000..$07ff] which returns array [0..$7ff] of memtype.}
  1857. p2:=crangenode.create(p2,caddnode.create(addn,comp_expr(true),p3.getcopy));
  1858. p1:=cvecnode.create(p1,p2);
  1859. include(tvecnode(p1).flags,nf_memseg);
  1860. include(tvecnode(p1).flags,nf_memindex);
  1861. end
  1862. else
  1863. begin
  1864. if try_to_consume(_POINTPOINT) then
  1865. { Support mem[$80000000..$80000002] which returns array [0..2] of memtype.}
  1866. p2:=crangenode.create(p2,comp_expr(true));
  1867. p1:=cvecnode.create(p1,p2);
  1868. include(tvecnode(p1).flags,nf_memindex);
  1869. end;
  1870. end
  1871. else
  1872. begin
  1873. if try_to_consume(_POINTPOINT) then
  1874. { Support arrayvar[0..9] which returns array [0..9] of arraytype.}
  1875. p2:=crangenode.create(p2,comp_expr(true));
  1876. p1:=cvecnode.create(p1,p2);
  1877. end;
  1878. end;
  1879. else
  1880. begin
  1881. if p1.resultdef.typ<>undefineddef then
  1882. Message(parser_e_invalid_qualifier);
  1883. p1.destroy;
  1884. p1:=cerrornode.create;
  1885. comp_expr(true);
  1886. again:=false;
  1887. end;
  1888. end;
  1889. do_typecheckpass(p1);
  1890. until not try_to_consume(_COMMA);
  1891. consume(_RECKKLAMMER);
  1892. { handle_variantarray eats the RECKKLAMMER and jumps here }
  1893. skipreckklammercheck:
  1894. end;
  1895. end;
  1896. _POINT :
  1897. begin
  1898. consume(_POINT);
  1899. if (p1.resultdef.typ=pointerdef) and
  1900. (m_autoderef in current_settings.modeswitches) then
  1901. begin
  1902. p1:=cderefnode.create(p1);
  1903. do_typecheckpass(p1);
  1904. end;
  1905. case p1.resultdef.typ of
  1906. recorddef:
  1907. begin
  1908. if token=_ID then
  1909. begin
  1910. srsym:=tsym(trecorddef(p1.resultdef).symtable.Find(pattern));
  1911. if assigned(srsym) and
  1912. (srsym.typ=fieldvarsym) then
  1913. begin
  1914. check_hints(srsym,srsym.symoptions);
  1915. p1:=csubscriptnode.create(srsym,p1)
  1916. end
  1917. else
  1918. begin
  1919. Message1(sym_e_illegal_field,pattern);
  1920. p1.destroy;
  1921. p1:=cerrornode.create;
  1922. end;
  1923. end;
  1924. consume(_ID);
  1925. end;
  1926. variantdef:
  1927. begin
  1928. { dispatch call? }
  1929. if token=_ID then
  1930. begin
  1931. dispatchstring:=orgpattern;
  1932. consume(_ID);
  1933. if try_to_consume(_LKLAMMER) then
  1934. begin
  1935. p2:=parse_paras(false,true,_RKLAMMER);
  1936. consume(_RKLAMMER);
  1937. end
  1938. else
  1939. p2:=nil;
  1940. p1:=translate_disp_call(p1,p2,dispatchstring,0,afterassignment);
  1941. end
  1942. else { Error }
  1943. Consume(_ID);
  1944. end;
  1945. classrefdef:
  1946. begin
  1947. if token=_ID then
  1948. begin
  1949. classh:=tobjectdef(tclassrefdef(p1.resultdef).pointeddef);
  1950. searchsym_in_class(classh,classh,pattern,srsym,srsymtable);
  1951. if assigned(srsym) then
  1952. begin
  1953. check_hints(srsym,srsym.symoptions);
  1954. consume(_ID);
  1955. do_member_read(classh,getaddr,srsym,p1,again,[]);
  1956. end
  1957. else
  1958. begin
  1959. Message1(sym_e_id_no_member,orgpattern);
  1960. p1.destroy;
  1961. p1:=cerrornode.create;
  1962. { try to clean up }
  1963. consume(_ID);
  1964. end;
  1965. end
  1966. else { Error }
  1967. Consume(_ID);
  1968. end;
  1969. objectdef:
  1970. begin
  1971. if token=_ID then
  1972. begin
  1973. classh:=tobjectdef(p1.resultdef);
  1974. searchsym_in_class(classh,classh,pattern,srsym,srsymtable);
  1975. if assigned(srsym) then
  1976. begin
  1977. check_hints(srsym,srsym.symoptions);
  1978. consume(_ID);
  1979. do_member_read(classh,getaddr,srsym,p1,again,[]);
  1980. end
  1981. else
  1982. begin
  1983. Message1(sym_e_id_no_member,orgpattern);
  1984. p1.destroy;
  1985. p1:=cerrornode.create;
  1986. { try to clean up }
  1987. consume(_ID);
  1988. end;
  1989. end
  1990. else { Error }
  1991. Consume(_ID);
  1992. end;
  1993. pointerdef:
  1994. begin
  1995. Message(parser_e_invalid_qualifier);
  1996. if tpointerdef(p1.resultdef).pointeddef.typ in [recorddef,objectdef,classrefdef] then
  1997. Message(parser_h_maybe_deref_caret_missing);
  1998. end;
  1999. else
  2000. begin
  2001. if p1.resultdef.typ<>undefineddef then
  2002. Message(parser_e_invalid_qualifier);
  2003. p1.destroy;
  2004. p1:=cerrornode.create;
  2005. { Error }
  2006. consume(_ID);
  2007. end;
  2008. end;
  2009. end;
  2010. else
  2011. begin
  2012. { is this a procedure variable ? }
  2013. if assigned(p1.resultdef) and
  2014. (p1.resultdef.typ=procvardef) then
  2015. begin
  2016. { Typenode for typecasting or expecting a procvar }
  2017. if (p1.nodetype=typen) or
  2018. (
  2019. assigned(getprocvardef) and
  2020. equal_defs(p1.resultdef,getprocvardef)
  2021. ) then
  2022. begin
  2023. if try_to_consume(_LKLAMMER) then
  2024. begin
  2025. p1:=comp_expr(true);
  2026. consume(_RKLAMMER);
  2027. p1:=ctypeconvnode.create_explicit(p1,p1.resultdef);
  2028. end
  2029. else
  2030. again:=false
  2031. end
  2032. else
  2033. begin
  2034. if try_to_consume(_LKLAMMER) then
  2035. begin
  2036. p2:=parse_paras(false,false,_RKLAMMER);
  2037. consume(_RKLAMMER);
  2038. p1:=ccallnode.create_procvar(p2,p1);
  2039. { proc():= is never possible }
  2040. if token=_ASSIGNMENT then
  2041. begin
  2042. Message(parser_e_illegal_expression);
  2043. p1.free;
  2044. p1:=cerrornode.create;
  2045. again:=false;
  2046. end;
  2047. end
  2048. else
  2049. again:=false;
  2050. end;
  2051. end
  2052. else
  2053. again:=false;
  2054. end;
  2055. end;
  2056. end; { while again }
  2057. end;
  2058. {---------------------------------------------
  2059. Factor (Main)
  2060. ---------------------------------------------}
  2061. var
  2062. l : longint;
  2063. ic : int64;
  2064. qc : qword;
  2065. oldp1,
  2066. p1 : tnode;
  2067. code : integer;
  2068. again : boolean;
  2069. srsym : tsym;
  2070. srsymtable : TSymtable;
  2071. pd : tprocdef;
  2072. hclassdef : tobjectdef;
  2073. d : bestreal;
  2074. cur : currency;
  2075. hs,hsorg : string;
  2076. hdef : tdef;
  2077. filepos : tfileposinfo;
  2078. begin
  2079. oldp1:=nil;
  2080. p1:=nil;
  2081. filepos:=current_tokenpos;
  2082. again:=false;
  2083. if token=_ID then
  2084. begin
  2085. again:=true;
  2086. { Handle references to self }
  2087. if (idtoken=_SELF) and
  2088. not(block_type in [bt_const,bt_type]) and
  2089. assigned(current_procinfo) and
  2090. assigned(current_procinfo.procdef._class) then
  2091. begin
  2092. p1:=load_self_node;
  2093. consume(_ID);
  2094. again:=true;
  2095. end
  2096. else
  2097. factor_read_id(p1,again);
  2098. if again then
  2099. begin
  2100. if (p1<>oldp1) then
  2101. begin
  2102. if assigned(p1) then
  2103. p1.fileinfo:=filepos;
  2104. oldp1:=p1;
  2105. filepos:=current_tokenpos;
  2106. end;
  2107. { handle post fix operators }
  2108. postfixoperators(p1,again);
  2109. end;
  2110. end
  2111. else
  2112. case token of
  2113. _RETURN :
  2114. begin
  2115. consume(_RETURN);
  2116. if not(token in [_SEMICOLON,_ELSE,_END]) then
  2117. p1 := cexitnode.create(comp_expr(true))
  2118. else
  2119. p1 := cexitnode.create(nil);
  2120. end;
  2121. _INHERITED :
  2122. begin
  2123. again:=true;
  2124. consume(_INHERITED);
  2125. if assigned(current_procinfo) and
  2126. assigned(current_procinfo.procdef._class) then
  2127. begin
  2128. hclassdef:=current_procinfo.procdef._class.childof;
  2129. { if inherited; only then we need the method with
  2130. the same name }
  2131. if token in endtokens then
  2132. begin
  2133. hs:=current_procinfo.procdef.procsym.name;
  2134. hsorg:=current_procinfo.procdef.procsym.realname;
  2135. anon_inherited:=true;
  2136. { For message methods we need to search using the message
  2137. number or string }
  2138. pd:=tprocdef(tprocsym(current_procinfo.procdef.procsym).ProcdefList[0]);
  2139. srdef:=nil;
  2140. if (po_msgint in pd.procoptions) then
  2141. searchsym_in_class_by_msgint(hclassdef,pd.messageinf.i,srdef,srsym,srsymtable)
  2142. else
  2143. if (po_msgstr in pd.procoptions) then
  2144. searchsym_in_class_by_msgstr(hclassdef,pd.messageinf.str^,srsym,srsymtable)
  2145. else
  2146. searchsym_in_class(hclassdef,current_procinfo.procdef._class,hs,srsym,srsymtable);
  2147. end
  2148. else
  2149. begin
  2150. hs:=pattern;
  2151. hsorg:=orgpattern;
  2152. consume(_ID);
  2153. anon_inherited:=false;
  2154. searchsym_in_class(hclassdef,current_procinfo.procdef._class,hs,srsym,srsymtable);
  2155. end;
  2156. if assigned(srsym) then
  2157. begin
  2158. check_hints(srsym,srsym.symoptions);
  2159. { load the procdef from the inherited class and
  2160. not from self }
  2161. if srsym.typ in [procsym,propertysym] then
  2162. begin
  2163. if (srsym.typ = procsym) then
  2164. begin
  2165. hdef:=hclassdef;
  2166. if (po_classmethod in current_procinfo.procdef.procoptions) or
  2167. (po_staticmethod in current_procinfo.procdef.procoptions) then
  2168. hdef:=tclassrefdef.create(hdef);
  2169. p1:=ctypenode.create(hdef);
  2170. end;
  2171. end
  2172. else
  2173. begin
  2174. Message(parser_e_methode_id_expected);
  2175. p1:=cerrornode.create;
  2176. end;
  2177. do_member_read(hclassdef,getaddr,srsym,p1,again,[cnf_inherited,cnf_anon_inherited]);
  2178. end
  2179. else
  2180. begin
  2181. if anon_inherited then
  2182. begin
  2183. { For message methods we need to call DefaultHandler }
  2184. if (po_msgint in pd.procoptions) or
  2185. (po_msgstr in pd.procoptions) then
  2186. begin
  2187. searchsym_in_class(hclassdef,hclassdef,'DEFAULTHANDLER',srsym,srsymtable);
  2188. if not assigned(srsym) or
  2189. (srsym.typ<>procsym) then
  2190. internalerror(200303171);
  2191. p1:=nil;
  2192. do_proc_call(srsym,srsym.owner,hclassdef,false,again,p1,[]);
  2193. end
  2194. else
  2195. begin
  2196. { we need to ignore the inherited; }
  2197. p1:=cnothingnode.create;
  2198. end;
  2199. end
  2200. else
  2201. begin
  2202. Message1(sym_e_id_no_member,hsorg);
  2203. p1:=cerrornode.create;
  2204. end;
  2205. again:=false;
  2206. end;
  2207. { turn auto inheriting off }
  2208. anon_inherited:=false;
  2209. end
  2210. else
  2211. begin
  2212. Message(parser_e_generic_methods_only_in_methods);
  2213. again:=false;
  2214. p1:=cerrornode.create;
  2215. end;
  2216. postfixoperators(p1,again);
  2217. end;
  2218. _INTCONST :
  2219. begin
  2220. {Try first wether the value fits in an int64.}
  2221. val(pattern,ic,code);
  2222. if code=0 then
  2223. begin
  2224. consume(_INTCONST);
  2225. int_to_type(ic,hdef);
  2226. p1:=cordconstnode.create(ic,hdef,true);
  2227. end
  2228. else
  2229. begin
  2230. { try qword next }
  2231. val(pattern,qc,code);
  2232. if code=0 then
  2233. begin
  2234. consume(_INTCONST);
  2235. int_to_type(qc,hdef);
  2236. p1:=cordconstnode.create(qc,hdef,true);
  2237. end;
  2238. end;
  2239. if code<>0 then
  2240. begin
  2241. { finally float }
  2242. val(pattern,d,code);
  2243. if code<>0 then
  2244. begin
  2245. Message(parser_e_invalid_integer);
  2246. consume(_INTCONST);
  2247. l:=1;
  2248. p1:=cordconstnode.create(l,sinttype,true);
  2249. end
  2250. else
  2251. begin
  2252. consume(_INTCONST);
  2253. p1:=crealconstnode.create(d,pbestrealtype^);
  2254. end;
  2255. end
  2256. else
  2257. { the necessary range checking has already been done by val }
  2258. tordconstnode(p1).rangecheck:=false;
  2259. end;
  2260. _REALNUMBER :
  2261. begin
  2262. val(pattern,d,code);
  2263. if code<>0 then
  2264. begin
  2265. Message(parser_e_error_in_real);
  2266. d:=1.0;
  2267. end;
  2268. consume(_REALNUMBER);
  2269. {$ifdef FPC_REAL2REAL_FIXED}
  2270. if (current_settings.minfpconstprec=s32real) and
  2271. (d = single(d)) then
  2272. p1:=crealconstnode.create(d,s32floattype)
  2273. else if (current_settings.minfpconstprec=s64real) and
  2274. (d = double(d)) then
  2275. p1:=crealconstnode.create(d,s64floattype)
  2276. else
  2277. {$endif FPC_REAL2REAL_FIXED}
  2278. p1:=crealconstnode.create(d,pbestrealtype^);
  2279. {$ifdef FPC_HAS_STR_CURRENCY}
  2280. val(pattern,cur,code);
  2281. if code=0 then
  2282. trealconstnode(p1).value_currency:=cur;
  2283. {$endif FPC_HAS_STR_CURRENCY}
  2284. end;
  2285. _STRING :
  2286. begin
  2287. string_dec(hdef);
  2288. { STRING can be also a type cast }
  2289. if try_to_consume(_LKLAMMER) then
  2290. begin
  2291. p1:=comp_expr(true);
  2292. consume(_RKLAMMER);
  2293. p1:=ctypeconvnode.create_explicit(p1,hdef);
  2294. { handle postfix operators here e.g. string(a)[10] }
  2295. again:=true;
  2296. postfixoperators(p1,again);
  2297. end
  2298. else
  2299. p1:=ctypenode.create(hdef);
  2300. end;
  2301. _FILE :
  2302. begin
  2303. hdef:=cfiletype;
  2304. consume(_FILE);
  2305. { FILE can be also a type cast }
  2306. if try_to_consume(_LKLAMMER) then
  2307. begin
  2308. p1:=comp_expr(true);
  2309. consume(_RKLAMMER);
  2310. p1:=ctypeconvnode.create_explicit(p1,hdef);
  2311. { handle postfix operators here e.g. string(a)[10] }
  2312. again:=true;
  2313. postfixoperators(p1,again);
  2314. end
  2315. else
  2316. begin
  2317. p1:=ctypenode.create(hdef);
  2318. end;
  2319. end;
  2320. _CSTRING :
  2321. begin
  2322. p1:=cstringconstnode.createstr(pattern);
  2323. consume(_CSTRING);
  2324. end;
  2325. _CCHAR :
  2326. begin
  2327. p1:=cordconstnode.create(ord(pattern[1]),cchartype,true);
  2328. consume(_CCHAR);
  2329. end;
  2330. _CWSTRING:
  2331. begin
  2332. p1:=cstringconstnode.createwstr(patternw);
  2333. consume(_CWSTRING);
  2334. end;
  2335. _CWCHAR:
  2336. begin
  2337. p1:=cordconstnode.create(ord(getcharwidestring(patternw,0)),cwidechartype,true);
  2338. consume(_CWCHAR);
  2339. end;
  2340. _KLAMMERAFFE :
  2341. begin
  2342. consume(_KLAMMERAFFE);
  2343. got_addrn:=true;
  2344. { support both @<x> and @(<x>) }
  2345. if try_to_consume(_LKLAMMER) then
  2346. begin
  2347. p1:=factor(true);
  2348. if token in [_CARET,_POINT,_LECKKLAMMER] then
  2349. begin
  2350. again:=true;
  2351. postfixoperators(p1,again);
  2352. end;
  2353. consume(_RKLAMMER);
  2354. end
  2355. else
  2356. p1:=factor(true);
  2357. if token in [_CARET,_POINT,_LECKKLAMMER] then
  2358. begin
  2359. again:=true;
  2360. postfixoperators(p1,again);
  2361. end;
  2362. got_addrn:=false;
  2363. p1:=caddrnode.create(p1);
  2364. if cs_typed_addresses in current_settings.localswitches then
  2365. include(p1.flags,nf_typedaddr);
  2366. { Store the procvar that we are expecting, the
  2367. addrn will use the information to find the correct
  2368. procdef or it will return an error }
  2369. if assigned(getprocvardef) and
  2370. (taddrnode(p1).left.nodetype = loadn) then
  2371. taddrnode(p1).getprocvardef:=getprocvardef;
  2372. end;
  2373. _LKLAMMER :
  2374. begin
  2375. consume(_LKLAMMER);
  2376. p1:=comp_expr(true);
  2377. consume(_RKLAMMER);
  2378. { it's not a good solution }
  2379. { but (a+b)^ makes some problems }
  2380. if token in [_CARET,_POINT,_LECKKLAMMER] then
  2381. begin
  2382. again:=true;
  2383. postfixoperators(p1,again);
  2384. end;
  2385. end;
  2386. _LECKKLAMMER :
  2387. begin
  2388. consume(_LECKKLAMMER);
  2389. p1:=factor_read_set;
  2390. consume(_RECKKLAMMER);
  2391. end;
  2392. _PLUS :
  2393. begin
  2394. consume(_PLUS);
  2395. p1:=factor(false);
  2396. { we must generate a new node to do 0+<p1> otherwise the + will
  2397. not be checked }
  2398. p1:=caddnode.create(addn,genintconstnode(0),p1);
  2399. end;
  2400. _MINUS :
  2401. begin
  2402. consume(_MINUS);
  2403. if (token = _INTCONST) then
  2404. begin
  2405. { ugly hack, but necessary to be able to parse }
  2406. { -9223372036854775808 as int64 (JM) }
  2407. pattern := '-'+pattern;
  2408. p1:=sub_expr(oppower,false);
  2409. { -1 ** 4 should be - (1 ** 4) and not
  2410. (-1) ** 4
  2411. This was the reason of tw0869.pp test failure PM }
  2412. if p1.nodetype=starstarn then
  2413. begin
  2414. if tbinarynode(p1).left.nodetype=ordconstn then
  2415. begin
  2416. tordconstnode(tbinarynode(p1).left).value:=-tordconstnode(tbinarynode(p1).left).value;
  2417. p1:=cunaryminusnode.create(p1);
  2418. end
  2419. else if tbinarynode(p1).left.nodetype=realconstn then
  2420. begin
  2421. trealconstnode(tbinarynode(p1).left).value_real:=-trealconstnode(tbinarynode(p1).left).value_real;
  2422. trealconstnode(tbinarynode(p1).left).value_currency:=-trealconstnode(tbinarynode(p1).left).value_currency;
  2423. p1:=cunaryminusnode.create(p1);
  2424. end
  2425. else
  2426. internalerror(20021029);
  2427. end;
  2428. end
  2429. else
  2430. begin
  2431. p1:=sub_expr(oppower,false);
  2432. p1:=cunaryminusnode.create(p1);
  2433. end;
  2434. end;
  2435. _OP_NOT :
  2436. begin
  2437. consume(_OP_NOT);
  2438. p1:=factor(false);
  2439. p1:=cnotnode.create(p1);
  2440. end;
  2441. _TRUE :
  2442. begin
  2443. consume(_TRUE);
  2444. p1:=cordconstnode.create(1,booltype,false);
  2445. end;
  2446. _FALSE :
  2447. begin
  2448. consume(_FALSE);
  2449. p1:=cordconstnode.create(0,booltype,false);
  2450. end;
  2451. _NIL :
  2452. begin
  2453. consume(_NIL);
  2454. p1:=cnilnode.create;
  2455. { It's really ugly code nil^, but delphi allows it }
  2456. if token in [_CARET] then
  2457. begin
  2458. again:=true;
  2459. postfixoperators(p1,again);
  2460. end;
  2461. end;
  2462. else
  2463. begin
  2464. Message(parser_e_illegal_expression);
  2465. p1:=cerrornode.create;
  2466. { recover }
  2467. consume(token);
  2468. end;
  2469. end;
  2470. { generate error node if no node is created }
  2471. if not assigned(p1) then
  2472. begin
  2473. {$ifdef EXTDEBUG}
  2474. Comment(V_Warning,'factor: p1=nil');
  2475. {$endif}
  2476. p1:=cerrornode.create;
  2477. end;
  2478. { get the resultdef for the node }
  2479. if (not assigned(p1.resultdef)) then
  2480. do_typecheckpass(p1);
  2481. if assigned(p1) and
  2482. (p1<>oldp1) then
  2483. p1.fileinfo:=filepos;
  2484. factor:=p1;
  2485. end;
  2486. {$maxfpuregisters default}
  2487. {****************************************************************************
  2488. Sub_Expr
  2489. ****************************************************************************}
  2490. const
  2491. { Warning these stay be ordered !! }
  2492. operator_levels:array[Toperator_precedence] of set of Ttoken=
  2493. ([_LT,_LTE,_GT,_GTE,_EQUAL,_UNEQUAL,_OP_IN],
  2494. [_PLUS,_MINUS,_OP_OR,_PIPE,_OP_XOR],
  2495. [_CARET,_SYMDIF,_STARSTAR,_STAR,_SLASH,
  2496. _OP_AS,_OP_IS,_OP_AND,_AMPERSAND,_OP_DIV,_OP_MOD,_OP_SHL,_OP_SHR],
  2497. [_STARSTAR] );
  2498. function sub_expr(pred_level:Toperator_precedence;accept_equal : boolean):tnode;
  2499. {Reads a subexpression while the operators are of the current precedence
  2500. level, or any higher level. Replaces the old term, simpl_expr and
  2501. simpl2_expr.}
  2502. var
  2503. p1,p2 : tnode;
  2504. oldt : Ttoken;
  2505. filepos : tfileposinfo;
  2506. begin
  2507. if pred_level=highest_precedence then
  2508. p1:=factor(false)
  2509. else
  2510. p1:=sub_expr(succ(pred_level),true);
  2511. repeat
  2512. if (token in operator_levels[pred_level]) and
  2513. ((token<>_EQUAL) or accept_equal) then
  2514. begin
  2515. oldt:=token;
  2516. filepos:=current_tokenpos;
  2517. consume(token);
  2518. if pred_level=highest_precedence then
  2519. p2:=factor(false)
  2520. else
  2521. p2:=sub_expr(succ(pred_level),true);
  2522. case oldt of
  2523. _PLUS :
  2524. p1:=caddnode.create(addn,p1,p2);
  2525. _MINUS :
  2526. p1:=caddnode.create(subn,p1,p2);
  2527. _STAR :
  2528. p1:=caddnode.create(muln,p1,p2);
  2529. _SLASH :
  2530. p1:=caddnode.create(slashn,p1,p2);
  2531. _EQUAL :
  2532. p1:=caddnode.create(equaln,p1,p2);
  2533. _GT :
  2534. p1:=caddnode.create(gtn,p1,p2);
  2535. _LT :
  2536. p1:=caddnode.create(ltn,p1,p2);
  2537. _GTE :
  2538. p1:=caddnode.create(gten,p1,p2);
  2539. _LTE :
  2540. p1:=caddnode.create(lten,p1,p2);
  2541. _SYMDIF :
  2542. p1:=caddnode.create(symdifn,p1,p2);
  2543. _STARSTAR :
  2544. p1:=caddnode.create(starstarn,p1,p2);
  2545. _OP_AS :
  2546. p1:=casnode.create(p1,p2);
  2547. _OP_IN :
  2548. p1:=cinnode.create(p1,p2);
  2549. _OP_IS :
  2550. p1:=cisnode.create(p1,p2);
  2551. _OP_OR,
  2552. _PIPE {macpas only} :
  2553. begin
  2554. p1:=caddnode.create(orn,p1,p2);
  2555. if (oldt = _PIPE) then
  2556. include(p1.flags,nf_short_bool);
  2557. end;
  2558. _OP_AND,
  2559. _AMPERSAND {macpas only} :
  2560. begin
  2561. p1:=caddnode.create(andn,p1,p2);
  2562. if (oldt = _AMPERSAND) then
  2563. include(p1.flags,nf_short_bool);
  2564. end;
  2565. _OP_DIV :
  2566. p1:=cmoddivnode.create(divn,p1,p2);
  2567. _OP_NOT :
  2568. p1:=cnotnode.create(p1);
  2569. _OP_MOD :
  2570. p1:=cmoddivnode.create(modn,p1,p2);
  2571. _OP_SHL :
  2572. p1:=cshlshrnode.create(shln,p1,p2);
  2573. _OP_SHR :
  2574. p1:=cshlshrnode.create(shrn,p1,p2);
  2575. _OP_XOR :
  2576. p1:=caddnode.create(xorn,p1,p2);
  2577. _ASSIGNMENT :
  2578. p1:=cassignmentnode.create(p1,p2);
  2579. _UNEQUAL :
  2580. p1:=caddnode.create(unequaln,p1,p2);
  2581. end;
  2582. p1.fileinfo:=filepos;
  2583. end
  2584. else
  2585. break;
  2586. until false;
  2587. sub_expr:=p1;
  2588. end;
  2589. function comp_expr(accept_equal : boolean):tnode;
  2590. var
  2591. oldafterassignment : boolean;
  2592. p1 : tnode;
  2593. begin
  2594. oldafterassignment:=afterassignment;
  2595. afterassignment:=true;
  2596. p1:=sub_expr(opcompare,accept_equal);
  2597. { get the resultdef for this expression }
  2598. if not assigned(p1.resultdef) then
  2599. do_typecheckpass(p1);
  2600. afterassignment:=oldafterassignment;
  2601. comp_expr:=p1;
  2602. end;
  2603. function expr : tnode;
  2604. var
  2605. p1,p2 : tnode;
  2606. oldafterassignment : boolean;
  2607. oldp1 : tnode;
  2608. filepos : tfileposinfo;
  2609. begin
  2610. oldafterassignment:=afterassignment;
  2611. p1:=sub_expr(opcompare,true);
  2612. { get the resultdef for this expression }
  2613. if not assigned(p1.resultdef) then
  2614. do_typecheckpass(p1);
  2615. filepos:=current_tokenpos;
  2616. if token in [_ASSIGNMENT,_PLUSASN,_MINUSASN,_STARASN,_SLASHASN] then
  2617. afterassignment:=true;
  2618. oldp1:=p1;
  2619. case token of
  2620. _POINTPOINT :
  2621. begin
  2622. consume(_POINTPOINT);
  2623. p2:=sub_expr(opcompare,true);
  2624. p1:=crangenode.create(p1,p2);
  2625. end;
  2626. _ASSIGNMENT :
  2627. begin
  2628. consume(_ASSIGNMENT);
  2629. if (p1.resultdef.typ=procvardef) then
  2630. getprocvardef:=tprocvardef(p1.resultdef);
  2631. p2:=sub_expr(opcompare,true);
  2632. if assigned(getprocvardef) then
  2633. handle_procvar(getprocvardef,p2);
  2634. getprocvardef:=nil;
  2635. p1:=cassignmentnode.create(p1,p2);
  2636. end;
  2637. _PLUSASN :
  2638. begin
  2639. consume(_PLUSASN);
  2640. p2:=sub_expr(opcompare,true);
  2641. p1:=gen_c_style_operator(addn,p1,p2);
  2642. end;
  2643. _MINUSASN :
  2644. begin
  2645. consume(_MINUSASN);
  2646. p2:=sub_expr(opcompare,true);
  2647. p1:=gen_c_style_operator(subn,p1,p2);
  2648. end;
  2649. _STARASN :
  2650. begin
  2651. consume(_STARASN );
  2652. p2:=sub_expr(opcompare,true);
  2653. p1:=gen_c_style_operator(muln,p1,p2);
  2654. end;
  2655. _SLASHASN :
  2656. begin
  2657. consume(_SLASHASN );
  2658. p2:=sub_expr(opcompare,true);
  2659. p1:=gen_c_style_operator(slashn,p1,p2);
  2660. end;
  2661. end;
  2662. { get the resultdef for this expression }
  2663. if not assigned(p1.resultdef) then
  2664. do_typecheckpass(p1);
  2665. afterassignment:=oldafterassignment;
  2666. if p1<>oldp1 then
  2667. p1.fileinfo:=filepos;
  2668. expr:=p1;
  2669. end;
  2670. function get_intconst:TConstExprInt;
  2671. {Reads an expression, tries to evalute it and check if it is an integer
  2672. constant. Then the constant is returned.}
  2673. var
  2674. p:tnode;
  2675. begin
  2676. result:=0;
  2677. p:=comp_expr(true);
  2678. if not codegenerror then
  2679. begin
  2680. if (p.nodetype<>ordconstn) or
  2681. not(is_integer(p.resultdef)) then
  2682. Message(parser_e_illegal_expression)
  2683. else
  2684. result:=tordconstnode(p).value;
  2685. end;
  2686. p.free;
  2687. end;
  2688. function get_stringconst:string;
  2689. {Reads an expression, tries to evaluate it and checks if it is a string
  2690. constant. Then the constant is returned.}
  2691. var
  2692. p:tnode;
  2693. begin
  2694. get_stringconst:='';
  2695. p:=comp_expr(true);
  2696. if p.nodetype<>stringconstn then
  2697. begin
  2698. if (p.nodetype=ordconstn) and is_char(p.resultdef) then
  2699. get_stringconst:=char(int64(tordconstnode(p).value))
  2700. else
  2701. Message(parser_e_illegal_expression);
  2702. end
  2703. else
  2704. get_stringconst:=strpas(tstringconstnode(p).value_str);
  2705. p.free;
  2706. end;
  2707. end.