ncal.pas 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279
  1. {
  2. $Id$
  3. Copyright (c) 1998-2002 by Florian Klaempfl
  4. This file implements the node for sub procedure calling.
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. ****************************************************************************
  17. }
  18. unit ncal;
  19. {$i fpcdefs.inc}
  20. interface
  21. uses
  22. cutils,cclasses,
  23. globtype,cpuinfo,
  24. paramgr,
  25. node,nbas,
  26. {$ifdef state_tracking}
  27. nstate,
  28. {$endif state_tracking}
  29. symbase,symtype,symppu,symsym,symdef,symtable;
  30. type
  31. pcandidate = ^tcandidate;
  32. tcandidate = record
  33. next : pcandidate;
  34. data : tprocdef;
  35. wrongpara,
  36. firstpara : tparaitem;
  37. exact_count,
  38. equal_count,
  39. cl1_count,
  40. cl2_count,
  41. cl3_count,
  42. coper_count : integer; { should be signed }
  43. ordinal_distance : bestreal;
  44. invalid : boolean;
  45. wrongparanr : byte;
  46. end;
  47. tcallnode = class(tbinarynode)
  48. private
  49. { number of parameters passed from the source, this does not include the hidden parameters }
  50. paralength : smallint;
  51. paravisible : boolean;
  52. function candidates_find:pcandidate;
  53. procedure candidates_free(procs:pcandidate);
  54. procedure candidates_list(procs:pcandidate;all:boolean);
  55. procedure candidates_get_information(procs:pcandidate);
  56. function candidates_choose_best(procs:pcandidate;var bestpd:tprocdef):integer;
  57. procedure candidates_find_wrong_para(procs:pcandidate);
  58. {$ifdef EXTDEBUG}
  59. procedure candidates_dump_info(lvl:longint;procs:pcandidate);
  60. {$endif EXTDEBUG}
  61. function gen_self_tree_methodpointer:tnode;
  62. function gen_self_tree:tnode;
  63. function gen_vmt_tree:tnode;
  64. procedure bind_paraitem;
  65. { function return node, this is used to pass the data for a
  66. ret_in_param return value }
  67. _funcretnode : tnode;
  68. procedure setfuncretnode(const returnnode: tnode);
  69. procedure convert_carg_array_of_const;
  70. procedure order_parameters;
  71. public
  72. { the symbol containing the definition of the procedure }
  73. { to call }
  74. symtableprocentry : tprocsym;
  75. symtableprocentryderef : tderef;
  76. { symtable where the entry was found, needed for with support }
  77. symtableproc : tsymtable;
  78. { the definition of the procedure to call }
  79. procdefinition : tabstractprocdef;
  80. procdefinitionderef : tderef;
  81. { tree that contains the pointer to the object for this method }
  82. methodpointer : tnode;
  83. { inline function body }
  84. inlinecode : tnode;
  85. { varargs tparaitems }
  86. varargsparas : tvarargspara;
  87. { node that specifies where the result should be put for calls }
  88. { that return their result in a parameter }
  89. property funcretnode: tnode read _funcretnode write setfuncretnode;
  90. { separately specified resulttype for some compilerprocs (e.g. }
  91. { you can't have a function with an "array of char" resulttype }
  92. { the RTL) (JM) }
  93. restype: ttype;
  94. restypeset: boolean;
  95. { only the processor specific nodes need to override this }
  96. { constructor }
  97. constructor create(l:tnode; v : tprocsym;st : tsymtable; mp : tnode);virtual;
  98. constructor create_def(l:tnode;def:tprocdef;mp:tnode);virtual;
  99. constructor create_procvar(l,r:tnode);
  100. constructor createintern(const name: string; params: tnode);
  101. constructor createinternres(const name: string; params: tnode; const res: ttype);
  102. constructor createinternreturn(const name: string; params: tnode; returnnode : tnode);
  103. destructor destroy;override;
  104. constructor ppuload(t:tnodetype;ppufile:tcompilerppufile);override;
  105. procedure ppuwrite(ppufile:tcompilerppufile);override;
  106. procedure buildderefimpl;override;
  107. procedure derefimpl;override;
  108. function getcopy : tnode;override;
  109. { Goes through all symbols in a class and subclasses and calls
  110. verify abstract for each .
  111. }
  112. procedure verifyabstractcalls;
  113. { called for each definition in a class and verifies if a method
  114. is abstract or not, if it is abstract, give out a warning
  115. }
  116. procedure verifyabstract(p : tnamedindexitem;arg:pointer);
  117. procedure insertintolist(l : tnodelist);override;
  118. function pass_1 : tnode;override;
  119. function det_resulttype:tnode;override;
  120. {$ifdef state_tracking}
  121. function track_state_pass(exec_known:boolean):boolean;override;
  122. {$endif state_tracking}
  123. function docompare(p: tnode): boolean; override;
  124. procedure printnodedata(var t:text);override;
  125. function para_count:longint;
  126. private
  127. AbstractMethodsList : TStringList;
  128. end;
  129. tcallnodeclass = class of tcallnode;
  130. tcallparaflags = (
  131. { flags used by tcallparanode }
  132. cpf_is_colon_para
  133. );
  134. tcallparanode = class(tbinarynode)
  135. public
  136. callparaflags : set of tcallparaflags;
  137. paraitem : tparaitem;
  138. used_by_callnode : boolean;
  139. { only the processor specific nodes need to override this }
  140. { constructor }
  141. constructor create(expr,next : tnode);virtual;
  142. destructor destroy;override;
  143. constructor ppuload(t:tnodetype;ppufile:tcompilerppufile);override;
  144. procedure ppuwrite(ppufile:tcompilerppufile);override;
  145. function getcopy : tnode;override;
  146. procedure insertintolist(l : tnodelist);override;
  147. procedure get_paratype;
  148. procedure insert_typeconv(do_count : boolean);
  149. procedure det_registers;
  150. procedure firstcallparan;
  151. procedure secondcallparan;virtual;abstract;
  152. function docompare(p: tnode): boolean; override;
  153. procedure printnodetree(var t:text);override;
  154. end;
  155. tcallparanodeclass = class of tcallparanode;
  156. function reverseparameters(p: tcallparanode): tcallparanode;
  157. var
  158. ccallnode : tcallnodeclass;
  159. ccallparanode : tcallparanodeclass;
  160. { Current callnode, this is needed for having a link
  161. between the callparanodes and the callnode they belong to }
  162. aktcallnode : tcallnode;
  163. implementation
  164. uses
  165. systems,
  166. verbose,globals,
  167. symconst,defutil,defcmp,
  168. htypechk,pass_1,
  169. ncnv,nld,ninl,nadd,ncon,nmem,
  170. procinfo,
  171. cgbase
  172. ;
  173. type
  174. tobjectinfoitem = class(tlinkedlistitem)
  175. objinfo : tobjectdef;
  176. constructor create(def : tobjectdef);
  177. end;
  178. {****************************************************************************
  179. HELPERS
  180. ****************************************************************************}
  181. function reverseparameters(p: tcallparanode): tcallparanode;
  182. var
  183. hp1, hp2: tcallparanode;
  184. begin
  185. hp1:=nil;
  186. while assigned(p) do
  187. begin
  188. { pull out }
  189. hp2:=p;
  190. p:=tcallparanode(p.right);
  191. { pull in }
  192. hp2.right:=hp1;
  193. hp1:=hp2;
  194. end;
  195. reverseparameters:=hp1;
  196. end;
  197. function gen_high_tree(p:tnode;openstring:boolean):tnode;
  198. var
  199. temp: tnode;
  200. len : integer;
  201. loadconst : boolean;
  202. hightree : tnode;
  203. begin
  204. len:=-1;
  205. loadconst:=true;
  206. hightree:=nil;
  207. case p.resulttype.def.deftype of
  208. arraydef :
  209. begin
  210. { handle via a normal inline in_high_x node }
  211. loadconst := false;
  212. hightree := geninlinenode(in_high_x,false,p.getcopy);
  213. { only substract low(array) if it's <> 0 }
  214. temp := geninlinenode(in_low_x,false,p.getcopy);
  215. resulttypepass(temp);
  216. if (temp.nodetype <> ordconstn) or
  217. (tordconstnode(temp).value <> 0) then
  218. hightree := caddnode.create(subn,hightree,temp)
  219. else
  220. temp.free;
  221. end;
  222. stringdef :
  223. begin
  224. if openstring then
  225. begin
  226. { handle via a normal inline in_high_x node }
  227. loadconst := false;
  228. hightree := geninlinenode(in_high_x,false,p.getcopy);
  229. end
  230. else
  231. begin
  232. { passing a string to an array of char }
  233. if (p.nodetype=stringconstn) then
  234. begin
  235. len:=str_length(p);
  236. if len>0 then
  237. dec(len);
  238. end
  239. else
  240. begin
  241. hightree:=caddnode.create(subn,geninlinenode(in_length_x,false,p.getcopy),
  242. cordconstnode.create(1,s32bittype,false));
  243. loadconst:=false;
  244. end;
  245. end;
  246. end;
  247. else
  248. len:=0;
  249. end;
  250. if loadconst then
  251. hightree:=cordconstnode.create(len,s32bittype,true)
  252. else
  253. begin
  254. if not assigned(hightree) then
  255. internalerror(200304071);
  256. { Need to use explicit, because it can also be a enum }
  257. hightree:=ctypeconvnode.create_explicit(hightree,s32bittype);
  258. end;
  259. result:=hightree;
  260. end;
  261. function is_better_candidate(currpd,bestpd:pcandidate):integer;
  262. var
  263. res : integer;
  264. begin
  265. {
  266. Return values:
  267. > 0 when currpd is better than bestpd
  268. < 0 when bestpd is better than currpd
  269. = 0 when both are equal
  270. To choose the best candidate we use the following order:
  271. - Incompatible flag
  272. - (Smaller) Number of convert operator parameters.
  273. - (Smaller) Number of convertlevel 2 parameters.
  274. - (Smaller) Number of convertlevel 1 parameters.
  275. - (Bigger) Number of exact parameters.
  276. - (Smaller) Number of equal parameters.
  277. - (Smaller) Total of ordinal distance. For example, the distance of a word
  278. to a byte is 65535-255=65280.
  279. }
  280. if bestpd^.invalid then
  281. begin
  282. if currpd^.invalid then
  283. res:=0
  284. else
  285. res:=1;
  286. end
  287. else
  288. if currpd^.invalid then
  289. res:=-1
  290. else
  291. begin
  292. { less operator parameters? }
  293. res:=(bestpd^.coper_count-currpd^.coper_count);
  294. if (res=0) then
  295. begin
  296. { less cl3 parameters? }
  297. res:=(bestpd^.cl3_count-currpd^.cl3_count);
  298. if (res=0) then
  299. begin
  300. { less cl2 parameters? }
  301. res:=(bestpd^.cl2_count-currpd^.cl2_count);
  302. if (res=0) then
  303. begin
  304. { less cl1 parameters? }
  305. res:=(bestpd^.cl1_count-currpd^.cl1_count);
  306. if (res=0) then
  307. begin
  308. { more exact parameters? }
  309. res:=(currpd^.exact_count-bestpd^.exact_count);
  310. if (res=0) then
  311. begin
  312. { less equal parameters? }
  313. res:=(bestpd^.equal_count-currpd^.equal_count);
  314. if (res=0) then
  315. begin
  316. { smaller ordinal distance? }
  317. if (currpd^.ordinal_distance<bestpd^.ordinal_distance) then
  318. res:=1
  319. else
  320. if (currpd^.ordinal_distance>bestpd^.ordinal_distance) then
  321. res:=-1
  322. else
  323. res:=0;
  324. end;
  325. end;
  326. end;
  327. end;
  328. end;
  329. end;
  330. end;
  331. is_better_candidate:=res;
  332. end;
  333. procedure var_para_allowed(var eq:tequaltype;def_from,def_to:Tdef);
  334. begin
  335. { Note: eq must be already valid, it will only be updated! }
  336. case def_to.deftype of
  337. formaldef :
  338. begin
  339. { all types can be passed to a formaldef }
  340. eq:=te_equal;
  341. end;
  342. orddef :
  343. begin
  344. { allows conversion from word to integer and
  345. byte to shortint, but only for TP7 compatibility }
  346. if (m_tp7 in aktmodeswitches) and
  347. (def_from.deftype=orddef) and
  348. (def_from.size=def_to.size) then
  349. eq:=te_convert_l1;
  350. end;
  351. arraydef :
  352. begin
  353. if is_open_array(def_to) and
  354. is_dynamic_array(def_from) and
  355. equal_defs(tarraydef(def_from).elementtype.def,tarraydef(def_to).elementtype.def) then
  356. eq:=te_convert_l2;
  357. end;
  358. pointerdef :
  359. begin
  360. { an implicit pointer conversion is allowed }
  361. if (def_from.deftype=pointerdef) then
  362. eq:=te_convert_l1;
  363. end;
  364. stringdef :
  365. begin
  366. { all shortstrings are allowed, size is not important }
  367. if is_shortstring(def_from) and
  368. is_shortstring(def_to) then
  369. eq:=te_equal;
  370. end;
  371. objectdef :
  372. begin
  373. { child objects can be also passed }
  374. { in non-delphi mode, otherwise }
  375. { they must match exactly, except }
  376. { if they are objects }
  377. if (def_from.deftype=objectdef) and
  378. (
  379. not(m_delphi in aktmodeswitches) or
  380. (
  381. (tobjectdef(def_from).objecttype=odt_object) and
  382. (tobjectdef(def_to).objecttype=odt_object)
  383. )
  384. ) and
  385. (tobjectdef(def_from).is_related(tobjectdef(def_to))) then
  386. eq:=te_convert_l1;
  387. end;
  388. filedef :
  389. begin
  390. { an implicit file conversion is also allowed }
  391. { from a typed file to an untyped one }
  392. if (def_from.deftype=filedef) and
  393. (tfiledef(def_from).filetyp = ft_typed) and
  394. (tfiledef(def_to).filetyp = ft_untyped) then
  395. eq:=te_convert_l1;
  396. end;
  397. end;
  398. end;
  399. procedure para_allowed(var eq:tequaltype;p:tcallparanode;def_to:tdef);
  400. begin
  401. { Note: eq must be already valid, it will only be updated! }
  402. case def_to.deftype of
  403. formaldef :
  404. begin
  405. { all types can be passed to a formaldef }
  406. eq:=te_equal;
  407. end;
  408. stringdef :
  409. begin
  410. { to support ansi/long/wide strings in a proper way }
  411. { string and string[10] are assumed as equal }
  412. { when searching the correct overloaded procedure }
  413. if (p.resulttype.def.deftype=stringdef) and
  414. (tstringdef(def_to).string_typ=tstringdef(p.resulttype.def).string_typ) then
  415. eq:=te_equal
  416. else
  417. { Passing a constant char to ansistring or shortstring or
  418. a widechar to widestring then handle it as equal. }
  419. if (p.left.nodetype=ordconstn) and
  420. (
  421. is_char(p.resulttype.def) and
  422. (is_shortstring(def_to) or is_ansistring(def_to))
  423. ) or
  424. (
  425. is_widechar(p.resulttype.def) and
  426. is_widestring(def_to)
  427. ) then
  428. eq:=te_equal
  429. end;
  430. setdef :
  431. begin
  432. { set can also be a not yet converted array constructor }
  433. if (p.resulttype.def.deftype=arraydef) and
  434. (tarraydef(p.resulttype.def).IsConstructor) and
  435. not(tarraydef(p.resulttype.def).IsVariant) then
  436. eq:=te_equal;
  437. end;
  438. procvardef :
  439. begin
  440. { in tp7 mode proc -> procvar is allowed }
  441. if (m_tp_procvar in aktmodeswitches) and
  442. (p.left.nodetype=calln) and
  443. (proc_to_procvar_equal(tprocdef(tcallnode(p.left).procdefinition),tprocvardef(def_to),true)>=te_equal) then
  444. eq:=te_equal;
  445. end;
  446. end;
  447. end;
  448. {****************************************************************************
  449. TOBJECTINFOITEM
  450. ****************************************************************************}
  451. constructor tobjectinfoitem.create(def : tobjectdef);
  452. begin
  453. inherited create;
  454. objinfo := def;
  455. end;
  456. {****************************************************************************
  457. TCALLPARANODE
  458. ****************************************************************************}
  459. constructor tcallparanode.create(expr,next : tnode);
  460. begin
  461. inherited create(callparan,expr,next);
  462. if not assigned(expr) then
  463. internalerror(200305091);
  464. expr.set_file_line(self);
  465. callparaflags:=[];
  466. end;
  467. destructor tcallparanode.destroy;
  468. begin
  469. { When the node is used by callnode then
  470. we don't destroy left, the callnode takes care of it }
  471. if used_by_callnode then
  472. left:=nil;
  473. inherited destroy;
  474. end;
  475. constructor tcallparanode.ppuload(t:tnodetype;ppufile:tcompilerppufile);
  476. begin
  477. inherited ppuload(t,ppufile);
  478. ppufile.getsmallset(callparaflags);
  479. end;
  480. procedure tcallparanode.ppuwrite(ppufile:tcompilerppufile);
  481. begin
  482. inherited ppuwrite(ppufile);
  483. ppufile.putsmallset(callparaflags);
  484. end;
  485. function tcallparanode.getcopy : tnode;
  486. var
  487. n : tcallparanode;
  488. begin
  489. n:=tcallparanode(inherited getcopy);
  490. n.callparaflags:=callparaflags;
  491. n.paraitem:=paraitem;
  492. result:=n;
  493. end;
  494. procedure tcallparanode.insertintolist(l : tnodelist);
  495. begin
  496. end;
  497. procedure tcallparanode.get_paratype;
  498. var
  499. old_array_constructor : boolean;
  500. begin
  501. inc(parsing_para_level);
  502. if assigned(right) then
  503. tcallparanode(right).get_paratype;
  504. old_array_constructor:=allow_array_constructor;
  505. allow_array_constructor:=true;
  506. resulttypepass(left);
  507. allow_array_constructor:=old_array_constructor;
  508. if codegenerror then
  509. resulttype:=generrortype
  510. else
  511. resulttype:=left.resulttype;
  512. dec(parsing_para_level);
  513. end;
  514. procedure tcallparanode.insert_typeconv(do_count : boolean);
  515. var
  516. oldtype : ttype;
  517. {$ifdef extdebug}
  518. store_count_ref : boolean;
  519. {$endif def extdebug}
  520. begin
  521. inc(parsing_para_level);
  522. {$ifdef extdebug}
  523. if do_count then
  524. begin
  525. store_count_ref:=count_ref;
  526. count_ref:=true;
  527. end;
  528. {$endif def extdebug}
  529. { Be sure to have the resulttype }
  530. if not assigned(left.resulttype.def) then
  531. resulttypepass(left);
  532. if (left.nodetype<>nothingn) then
  533. begin
  534. { Handle varargs and hidden paras directly, no typeconvs or }
  535. { typechecking needed }
  536. if (nf_varargs_para in flags) then
  537. begin
  538. { convert pascal to C types }
  539. case left.resulttype.def.deftype of
  540. stringdef :
  541. inserttypeconv(left,charpointertype);
  542. floatdef :
  543. inserttypeconv(left,s64floattype);
  544. end;
  545. set_varstate(left,vs_used,true);
  546. resulttype:=left.resulttype;
  547. end
  548. else
  549. if (paraitem.is_hidden) then
  550. begin
  551. set_varstate(left,vs_used,true);
  552. resulttype:=left.resulttype;
  553. end
  554. else
  555. begin
  556. { Do we need arrayconstructor -> set conversion, then insert
  557. it here before the arrayconstructor node breaks the tree
  558. with its conversions of enum->ord }
  559. if (left.nodetype=arrayconstructorn) and
  560. (paraitem.paratype.def.deftype=setdef) then
  561. inserttypeconv(left,paraitem.paratype);
  562. { set some settings needed for arrayconstructor }
  563. if is_array_constructor(left.resulttype.def) then
  564. begin
  565. if is_array_of_const(paraitem.paratype.def) then
  566. begin
  567. { force variant array }
  568. include(left.flags,nf_forcevaria);
  569. end
  570. else
  571. begin
  572. include(left.flags,nf_novariaallowed);
  573. { now that the resultting type is know we can insert the required
  574. typeconvs for the array constructor }
  575. tarrayconstructornode(left).force_type(tarraydef(paraitem.paratype.def).elementtype);
  576. end;
  577. end;
  578. { check if local proc/func is assigned to procvar }
  579. if left.resulttype.def.deftype=procvardef then
  580. test_local_to_procvar(tprocvardef(left.resulttype.def),paraitem.paratype.def);
  581. { test conversions }
  582. if not(is_shortstring(left.resulttype.def) and
  583. is_shortstring(paraitem.paratype.def)) and
  584. (paraitem.paratype.def.deftype<>formaldef) then
  585. begin
  586. { Process open parameters }
  587. if paramanager.push_high_param(paraitem.paratyp,paraitem.paratype.def,aktcallnode.procdefinition.proccalloption) then
  588. begin
  589. { insert type conv but hold the ranges of the array }
  590. oldtype:=left.resulttype;
  591. inserttypeconv(left,paraitem.paratype);
  592. left.resulttype:=oldtype;
  593. end
  594. else
  595. begin
  596. { for ordinals, floats and enums, verify if we might cause
  597. some range-check errors. }
  598. if (paraitem.paratype.def.deftype in [enumdef,orddef,floatdef]) and
  599. (left.resulttype.def.deftype in [enumdef,orddef,floatdef]) and
  600. (left.nodetype in [vecn,loadn,calln]) then
  601. begin
  602. if (left.resulttype.def.size>paraitem.paratype.def.size) then
  603. begin
  604. if (cs_check_range in aktlocalswitches) then
  605. Message(type_w_smaller_possible_range_check)
  606. else
  607. Message(type_h_smaller_possible_range_check);
  608. end;
  609. end;
  610. inserttypeconv(left,paraitem.paratype);
  611. end;
  612. if codegenerror then
  613. begin
  614. dec(parsing_para_level);
  615. exit;
  616. end;
  617. end;
  618. { check var strings }
  619. if (cs_strict_var_strings in aktlocalswitches) and
  620. is_shortstring(left.resulttype.def) and
  621. is_shortstring(paraitem.paratype.def) and
  622. (paraitem.paratyp in [vs_out,vs_var]) and
  623. not(is_open_string(paraitem.paratype.def)) and
  624. not(equal_defs(left.resulttype.def,paraitem.paratype.def)) then
  625. begin
  626. aktfilepos:=left.fileinfo;
  627. CGMessage(type_e_strict_var_string_violation);
  628. end;
  629. { Handle formal parameters separate }
  630. if (paraitem.paratype.def.deftype=formaldef) then
  631. begin
  632. { load procvar if a procedure is passed }
  633. if (m_tp_procvar in aktmodeswitches) and
  634. (left.nodetype=calln) and
  635. (is_void(left.resulttype.def)) then
  636. load_procvar_from_calln(left);
  637. case paraitem.paratyp of
  638. vs_var,
  639. vs_out :
  640. begin
  641. if not valid_for_formal_var(left) then
  642. CGMessagePos(left.fileinfo,parser_e_illegal_parameter_list);
  643. end;
  644. vs_const :
  645. begin
  646. if not valid_for_formal_const(left) then
  647. CGMessagePos(left.fileinfo,parser_e_illegal_parameter_list);
  648. end;
  649. end;
  650. end
  651. else
  652. begin
  653. { check if the argument is allowed }
  654. if (paraitem.paratyp in [vs_out,vs_var]) then
  655. valid_for_var(left);
  656. end;
  657. if paraitem.paratyp in [vs_var,vs_const] then
  658. begin
  659. { Causes problems with const ansistrings if also }
  660. { done for vs_const (JM) }
  661. if paraitem.paratyp = vs_var then
  662. set_unique(left);
  663. make_not_regable(left);
  664. end;
  665. { ansistrings out paramaters doesn't need to be }
  666. { unique, they are finalized }
  667. if paraitem.paratyp=vs_out then
  668. make_not_regable(left);
  669. if do_count then
  670. begin
  671. if paraitem.paratyp in [vs_var,vs_out] then
  672. set_varstate(left,vs_used,false)
  673. else
  674. set_varstate(left,vs_used,true);
  675. end;
  676. { must only be done after typeconv PM }
  677. resulttype:=paraitem.paratype;
  678. end;
  679. end;
  680. { process next node }
  681. if assigned(right) then
  682. tcallparanode(right).insert_typeconv(do_count);
  683. dec(parsing_para_level);
  684. {$ifdef extdebug}
  685. if do_count then
  686. count_ref:=store_count_ref;
  687. {$endif def extdebug}
  688. end;
  689. procedure tcallparanode.det_registers;
  690. begin
  691. if assigned(right) then
  692. begin
  693. tcallparanode(right).det_registers;
  694. registers32:=right.registers32;
  695. registersfpu:=right.registersfpu;
  696. {$ifdef SUPPORT_MMX}
  697. registersmmx:=right.registersmmx;
  698. {$endif}
  699. end;
  700. firstpass(left);
  701. if left.registers32>registers32 then
  702. registers32:=left.registers32;
  703. if left.registersfpu>registersfpu then
  704. registersfpu:=left.registersfpu;
  705. {$ifdef SUPPORT_MMX}
  706. if left.registersmmx>registersmmx then
  707. registersmmx:=left.registersmmx;
  708. {$endif SUPPORT_MMX}
  709. end;
  710. procedure tcallparanode.firstcallparan;
  711. begin
  712. if not assigned(left.resulttype.def) then
  713. get_paratype;
  714. det_registers;
  715. end;
  716. function tcallparanode.docompare(p: tnode): boolean;
  717. begin
  718. docompare :=
  719. inherited docompare(p) and
  720. (callparaflags = tcallparanode(p).callparaflags)
  721. ;
  722. end;
  723. procedure tcallparanode.printnodetree(var t:text);
  724. begin
  725. printnodelist(t);
  726. end;
  727. {****************************************************************************
  728. TCALLNODE
  729. ****************************************************************************}
  730. constructor tcallnode.create(l:tnode;v : tprocsym;st : tsymtable; mp : tnode);
  731. begin
  732. inherited create(calln,l,nil);
  733. symtableprocentry:=v;
  734. symtableproc:=st;
  735. include(flags,nf_return_value_used);
  736. methodpointer:=mp;
  737. procdefinition:=nil;
  738. restypeset:=false;
  739. _funcretnode:=nil;
  740. inlinecode:=nil;
  741. paralength:=-1;
  742. varargsparas:=nil;
  743. end;
  744. constructor tcallnode.create_def(l:tnode;def:tprocdef;mp:tnode);
  745. begin
  746. inherited create(calln,l,nil);
  747. symtableprocentry:=nil;
  748. symtableproc:=nil;
  749. include(flags,nf_return_value_used);
  750. methodpointer:=mp;
  751. procdefinition:=def;
  752. restypeset:=false;
  753. _funcretnode:=nil;
  754. inlinecode:=nil;
  755. paralength:=-1;
  756. varargsparas:=nil;
  757. end;
  758. constructor tcallnode.create_procvar(l,r:tnode);
  759. begin
  760. inherited create(calln,l,r);
  761. symtableprocentry:=nil;
  762. symtableproc:=nil;
  763. include(flags,nf_return_value_used);
  764. methodpointer:=nil;
  765. procdefinition:=nil;
  766. restypeset:=false;
  767. _funcretnode:=nil;
  768. inlinecode:=nil;
  769. paralength:=-1;
  770. varargsparas:=nil;
  771. end;
  772. constructor tcallnode.createintern(const name: string; params: tnode);
  773. var
  774. srsym: tsym;
  775. symowner: tsymtable;
  776. begin
  777. if not (cs_compilesystem in aktmoduleswitches) then
  778. begin
  779. srsym := searchsymonlyin(systemunit,name);
  780. symowner := systemunit;
  781. end
  782. else
  783. begin
  784. searchsym(name,srsym,symowner);
  785. if not assigned(srsym) then
  786. searchsym(upper(name),srsym,symowner);
  787. end;
  788. if not assigned(srsym) or
  789. (srsym.typ <> procsym) then
  790. begin
  791. {$ifdef EXTDEBUG}
  792. Comment(V_Error,'unknown compilerproc '+name);
  793. {$endif EXTDEBUG}
  794. internalerror(200107271);
  795. end;
  796. self.create(params,tprocsym(srsym),symowner,nil);
  797. end;
  798. constructor tcallnode.createinternres(const name: string; params: tnode; const res: ttype);
  799. begin
  800. self.createintern(name,params);
  801. restype := res;
  802. restypeset := true;
  803. { both the normal and specified resulttype either have to be returned via a }
  804. { parameter or not, but no mixing (JM) }
  805. if paramanager.ret_in_param(restype.def,pocall_compilerproc) xor
  806. paramanager.ret_in_param(symtableprocentry.first_procdef.rettype.def,symtableprocentry.first_procdef.proccalloption) then
  807. internalerror(200108291);
  808. end;
  809. constructor tcallnode.createinternreturn(const name: string; params: tnode; returnnode : tnode);
  810. begin
  811. self.createintern(name,params);
  812. _funcretnode:=returnnode;
  813. if not paramanager.ret_in_param(symtableprocentry.first_procdef.rettype.def,symtableprocentry.first_procdef.proccalloption) then
  814. internalerror(200204247);
  815. end;
  816. procedure tcallnode.setfuncretnode(const returnnode: tnode);
  817. var
  818. para: tcallparanode;
  819. begin
  820. if assigned(_funcretnode) then
  821. _funcretnode.free;
  822. _funcretnode := returnnode;
  823. { if the resulttype pass hasn't occurred yet, that one will do }
  824. { everything }
  825. if assigned(resulttype.def) then
  826. begin
  827. { these are returned as values, but we can optimize their loading }
  828. { as well }
  829. if is_ansistring(resulttype.def) or
  830. is_widestring(resulttype.def) then
  831. exit;
  832. para := tcallparanode(left);
  833. while assigned(para) do
  834. begin
  835. if para.paraitem.is_hidden and
  836. (vo_is_funcret in tvarsym(para.paraitem.parasym).varoptions) then
  837. begin
  838. para.left.free;
  839. para.left := _funcretnode.getcopy;
  840. exit;
  841. end;
  842. para := tcallparanode(para.right);
  843. end;
  844. { no hidden resultpara found, error! }
  845. internalerror(200306087);
  846. end;
  847. end;
  848. destructor tcallnode.destroy;
  849. begin
  850. methodpointer.free;
  851. _funcretnode.free;
  852. inlinecode.free;
  853. if assigned(varargsparas) then
  854. varargsparas.free;
  855. inherited destroy;
  856. end;
  857. constructor tcallnode.ppuload(t:tnodetype;ppufile:tcompilerppufile);
  858. begin
  859. inherited ppuload(t,ppufile);
  860. ppufile.getderef(symtableprocentryderef);
  861. {$ifdef fpc}
  862. {$warning FIXME: No withsymtable support}
  863. {$endif}
  864. symtableproc:=nil;
  865. ppufile.getderef(procdefinitionderef);
  866. restypeset:=boolean(ppufile.getbyte);
  867. methodpointer:=ppuloadnode(ppufile);
  868. _funcretnode:=ppuloadnode(ppufile);
  869. inlinecode:=ppuloadnode(ppufile);
  870. end;
  871. procedure tcallnode.ppuwrite(ppufile:tcompilerppufile);
  872. begin
  873. inherited ppuwrite(ppufile);
  874. ppufile.putderef(symtableprocentryderef);
  875. ppufile.putderef(procdefinitionderef);
  876. ppufile.putbyte(byte(restypeset));
  877. ppuwritenode(ppufile,methodpointer);
  878. ppuwritenode(ppufile,_funcretnode);
  879. ppuwritenode(ppufile,inlinecode);
  880. end;
  881. procedure tcallnode.buildderefimpl;
  882. begin
  883. inherited buildderefimpl;
  884. symtableprocentryderef.build(symtableprocentry);
  885. procdefinitionderef.build(procdefinition);
  886. if assigned(methodpointer) then
  887. methodpointer.buildderefimpl;
  888. if assigned(_funcretnode) then
  889. _funcretnode.buildderefimpl;
  890. if assigned(inlinecode) then
  891. inlinecode.buildderefimpl;
  892. end;
  893. procedure tcallnode.derefimpl;
  894. var
  895. pt : tcallparanode;
  896. currpara : tparaitem;
  897. begin
  898. inherited derefimpl;
  899. symtableprocentry:=tprocsym(symtableprocentryderef.resolve);
  900. symtableproc:=symtableprocentry.owner;
  901. procdefinition:=tprocdef(procdefinitionderef.resolve);
  902. if assigned(methodpointer) then
  903. methodpointer.derefimpl;
  904. if assigned(_funcretnode) then
  905. _funcretnode.derefimpl;
  906. if assigned(inlinecode) then
  907. inlinecode.derefimpl;
  908. { Connect paraitems }
  909. pt:=tcallparanode(left);
  910. while assigned(pt) and
  911. (nf_varargs_para in pt.flags) do
  912. pt:=tcallparanode(pt.right);
  913. currpara:=tparaitem(procdefinition.Para.last);
  914. while assigned(currpara) do
  915. begin
  916. if not assigned(pt) then
  917. internalerror(200311077);
  918. pt.paraitem:=currpara;
  919. pt:=tcallparanode(pt.right);
  920. currpara:=tparaitem(currpara.previous);
  921. end;
  922. if assigned(currpara) or assigned(pt) then
  923. internalerror(200311078);
  924. end;
  925. function tcallnode.getcopy : tnode;
  926. var
  927. n : tcallnode;
  928. hp : tparaitem;
  929. begin
  930. n:=tcallnode(inherited getcopy);
  931. n.symtableprocentry:=symtableprocentry;
  932. n.symtableproc:=symtableproc;
  933. n.procdefinition:=procdefinition;
  934. n.restype := restype;
  935. n.restypeset := restypeset;
  936. if assigned(methodpointer) then
  937. n.methodpointer:=methodpointer.getcopy
  938. else
  939. n.methodpointer:=nil;
  940. if assigned(_funcretnode) then
  941. n._funcretnode:=_funcretnode.getcopy
  942. else
  943. n._funcretnode:=nil;
  944. if assigned(inlinecode) then
  945. n.inlinecode:=inlinecode.getcopy
  946. else
  947. n.inlinecode:=nil;
  948. if assigned(varargsparas) then
  949. begin
  950. n.varargsparas:=tvarargspara.create;
  951. hp:=tparaitem(varargsparas.first);
  952. while assigned(hp) do
  953. begin
  954. n.varargsparas.concat(hp.getcopy);
  955. hp:=tparaitem(hp.next);
  956. end;
  957. end
  958. else
  959. n.varargsparas:=nil;
  960. result:=n;
  961. end;
  962. procedure tcallnode.insertintolist(l : tnodelist);
  963. begin
  964. end;
  965. procedure tcallnode.convert_carg_array_of_const;
  966. var
  967. hp : tarrayconstructornode;
  968. oldleft : tcallparanode;
  969. begin
  970. oldleft:=tcallparanode(left);
  971. if oldleft.left.nodetype<>arrayconstructorn then
  972. begin
  973. CGMessage1(type_e_wrong_type_in_array_constructor,oldleft.left.resulttype.def.typename);
  974. exit;
  975. end;
  976. { Get arrayconstructor node and insert typeconvs }
  977. hp:=tarrayconstructornode(oldleft.left);
  978. hp.insert_typeconvs;
  979. { Add c args parameters }
  980. { It could be an empty set }
  981. if assigned(hp) and
  982. assigned(hp.left) then
  983. begin
  984. while assigned(hp) do
  985. begin
  986. left:=ccallparanode.create(hp.left,left);
  987. { set callparanode resulttype and flags }
  988. left.resulttype:=hp.left.resulttype;
  989. include(left.flags,nf_varargs_para);
  990. hp.left:=nil;
  991. hp:=tarrayconstructornode(hp.right);
  992. end;
  993. end;
  994. { Remove value of old array of const parameter, but keep it
  995. in the list because it is required for bind_paraitem.
  996. Generate a nothign to keep callparanoed.left valid }
  997. oldleft.left.free;
  998. oldleft.left:=cnothingnode.create;
  999. end;
  1000. procedure tcallnode.verifyabstract(p : tnamedindexitem;arg:pointer);
  1001. var
  1002. hp : tprocdef;
  1003. j: integer;
  1004. begin
  1005. if (tsym(p).typ=procsym) then
  1006. begin
  1007. for j:=1 to tprocsym(p).procdef_count do
  1008. begin
  1009. { index starts at 1 }
  1010. hp:=tprocsym(p).procdef[j];
  1011. { If this is an abstract method insert into the list }
  1012. if (po_abstractmethod in hp.procoptions) then
  1013. AbstractMethodsList.Insert(hp.procsym.name)
  1014. else
  1015. { If this symbol is already in the list, and it is
  1016. an overriding method or dynamic, then remove it from the list
  1017. }
  1018. begin
  1019. { symbol was found }
  1020. if AbstractMethodsList.Find(hp.procsym.name) <> nil then
  1021. begin
  1022. if po_overridingmethod in hp.procoptions then
  1023. AbstractMethodsList.Remove(hp.procsym.name);
  1024. end;
  1025. end;
  1026. end;
  1027. end;
  1028. end;
  1029. procedure tcallnode.verifyabstractcalls;
  1030. var
  1031. objectdf : tobjectdef;
  1032. parents : tlinkedlist;
  1033. objectinfo : tobjectinfoitem;
  1034. stritem : tstringlistitem;
  1035. begin
  1036. objectdf := nil;
  1037. { verify if trying to create an instance of a class which contains
  1038. non-implemented abstract methods }
  1039. { first verify this class type, no class than exit }
  1040. { also, this checking can only be done if the constructor is directly
  1041. called, indirect constructor calls cannot be checked.
  1042. }
  1043. if assigned(methodpointer) then
  1044. begin
  1045. if (methodpointer.resulttype.def.deftype = objectdef) then
  1046. objectdf:=tobjectdef(methodpointer.resulttype.def)
  1047. else
  1048. if (methodpointer.resulttype.def.deftype = classrefdef) and
  1049. (tclassrefdef(methodpointer.resulttype.def).pointertype.def.deftype = objectdef) and
  1050. (methodpointer.nodetype in [typen,loadvmtaddrn]) then
  1051. objectdf:=tobjectdef(tclassrefdef(methodpointer.resulttype.def).pointertype.def);
  1052. end;
  1053. if not assigned(objectdf) then
  1054. exit;
  1055. parents := tlinkedlist.create;
  1056. AbstractMethodsList := tstringlist.create;
  1057. { insert all parents in this class : the first item in the
  1058. list will be the base parent of the class .
  1059. }
  1060. while assigned(objectdf) do
  1061. begin
  1062. objectinfo:=tobjectinfoitem.create(objectdf);
  1063. parents.insert(objectinfo);
  1064. objectdf := objectdf.childof;
  1065. end;
  1066. { now all parents are in the correct order
  1067. insert all abstract methods in the list, and remove
  1068. those which are overriden by parent classes.
  1069. }
  1070. objectinfo:=tobjectinfoitem(parents.first);
  1071. while assigned(objectinfo) do
  1072. begin
  1073. objectdf := objectinfo.objinfo;
  1074. if assigned(objectdf.symtable) then
  1075. objectdf.symtable.foreach({$ifdef FPCPROCVAR}@{$endif}verifyabstract,nil);
  1076. objectinfo:=tobjectinfoitem(objectinfo.next);
  1077. end;
  1078. if assigned(parents) then
  1079. parents.free;
  1080. { Finally give out a warning for each abstract method still in the list }
  1081. stritem := tstringlistitem(AbstractMethodsList.first);
  1082. if assigned(stritem) then
  1083. Message1(type_w_instance_with_abstract,objectdf.objname^);
  1084. while assigned(stritem) do
  1085. begin
  1086. if assigned(stritem.fpstr) then
  1087. Message1(sym_h_param_list,stritem.str);
  1088. stritem := tstringlistitem(stritem.next);
  1089. end;
  1090. if assigned(AbstractMethodsList) then
  1091. AbstractMethodsList.Free;
  1092. end;
  1093. function Tcallnode.candidates_find:pcandidate;
  1094. var
  1095. j : integer;
  1096. pd : tprocdef;
  1097. procs,hp : pcandidate;
  1098. found,
  1099. has_overload_directive : boolean;
  1100. topclassh : tobjectdef;
  1101. srsymtable : tsymtable;
  1102. srprocsym : tprocsym;
  1103. procedure proc_add(pd:tprocdef);
  1104. var
  1105. i : integer;
  1106. begin
  1107. { generate new candidate entry }
  1108. new(hp);
  1109. fillchar(hp^,sizeof(tcandidate),0);
  1110. hp^.data:=pd;
  1111. hp^.next:=procs;
  1112. procs:=hp;
  1113. { Find last parameter, skip all default parameters
  1114. that are not passed. Ignore this skipping for varargs }
  1115. hp^.firstpara:=tparaitem(pd.Para.last);
  1116. if not(po_varargs in pd.procoptions) then
  1117. begin
  1118. for i:=1 to pd.maxparacount-paralength do
  1119. hp^.firstpara:=tparaitem(hp^.firstPara.previous);
  1120. end;
  1121. end;
  1122. begin
  1123. procs:=nil;
  1124. { when the definition has overload directive set, we search for
  1125. overloaded definitions in the class, this only needs to be done once
  1126. for class entries as the tree keeps always the same }
  1127. if (not symtableprocentry.overloadchecked) and
  1128. (symtableprocentry.owner.symtabletype=objectsymtable) and
  1129. (po_overload in symtableprocentry.first_procdef.procoptions) then
  1130. search_class_overloads(symtableprocentry);
  1131. { when the class passed is defined in this unit we
  1132. need to use the scope of that class. This is a trick
  1133. that can be used to access protected members in other
  1134. units. At least kylix supports it this way (PFV) }
  1135. if assigned(symtableproc) and
  1136. (symtableproc.symtabletype=objectsymtable) and
  1137. (symtableproc.defowner.owner.symtabletype in [globalsymtable,staticsymtable]) and
  1138. (symtableproc.defowner.owner.unitid=0) then
  1139. topclassh:=tobjectdef(symtableproc.defowner)
  1140. else
  1141. begin
  1142. if assigned(current_procinfo) then
  1143. topclassh:=current_procinfo.procdef._class
  1144. else
  1145. topclassh:=nil;
  1146. end;
  1147. { link all procedures which have the same # of parameters }
  1148. paravisible:=false;
  1149. for j:=1 to symtableprocentry.procdef_count do
  1150. begin
  1151. pd:=symtableprocentry.procdef[j];
  1152. { Is the procdef visible? This needs to be checked on
  1153. procdef level since a symbol can contain both private and
  1154. public declarations. But the check should not be done
  1155. when the callnode is generated by a property }
  1156. if (nf_isproperty in flags) or
  1157. (pd.owner.symtabletype<>objectsymtable) or
  1158. pd.is_visible_for_object(topclassh) then
  1159. begin
  1160. { we have at least one procedure that is visible }
  1161. paravisible:=true;
  1162. { only when the # of parameter are supported by the
  1163. procedure }
  1164. if (paralength>=pd.minparacount) and
  1165. ((po_varargs in pd.procoptions) or { varargs }
  1166. (paralength<=pd.maxparacount)) then
  1167. proc_add(pd);
  1168. end;
  1169. end;
  1170. { remember if the procedure is declared with the overload directive,
  1171. it's information is still needed also after all procs are removed }
  1172. has_overload_directive:=(po_overload in symtableprocentry.first_procdef.procoptions);
  1173. { when the definition has overload directive set, we search for
  1174. overloaded definitions in the symtablestack. The found
  1175. entries are only added to the procs list and not the procsym, because
  1176. the list can change in every situation }
  1177. if has_overload_directive and
  1178. (symtableprocentry.owner.symtabletype<>objectsymtable) then
  1179. begin
  1180. srsymtable:=symtableprocentry.owner.next;
  1181. while assigned(srsymtable) do
  1182. begin
  1183. if srsymtable.symtabletype in [localsymtable,staticsymtable,globalsymtable] then
  1184. begin
  1185. srprocsym:=tprocsym(srsymtable.speedsearch(symtableprocentry.name,symtableprocentry.speedvalue));
  1186. { process only visible procsyms }
  1187. if assigned(srprocsym) and
  1188. (srprocsym.typ=procsym) and
  1189. srprocsym.is_visible_for_object(topclassh) then
  1190. begin
  1191. { if this procedure doesn't have overload we can stop
  1192. searching }
  1193. if not(po_overload in srprocsym.first_procdef.procoptions) then
  1194. break;
  1195. { process all overloaded definitions }
  1196. for j:=1 to srprocsym.procdef_count do
  1197. begin
  1198. pd:=srprocsym.procdef[j];
  1199. { only when the # of parameter are supported by the
  1200. procedure }
  1201. if (paralength>=pd.minparacount) and
  1202. ((po_varargs in pd.procoptions) or { varargs }
  1203. (paralength<=pd.maxparacount)) then
  1204. begin
  1205. found:=false;
  1206. hp:=procs;
  1207. while assigned(hp) do
  1208. begin
  1209. { Only compare visible parameters for the user }
  1210. if compare_paras(hp^.data.para,pd.para,cp_value_equal_const,[cpo_ignorehidden])>=te_equal then
  1211. begin
  1212. found:=true;
  1213. break;
  1214. end;
  1215. hp:=hp^.next;
  1216. end;
  1217. if not found then
  1218. proc_add(pd);
  1219. end;
  1220. end;
  1221. end;
  1222. end;
  1223. srsymtable:=srsymtable.next;
  1224. end;
  1225. end;
  1226. candidates_find:=procs;
  1227. end;
  1228. procedure tcallnode.candidates_free(procs:pcandidate);
  1229. var
  1230. hpnext,
  1231. hp : pcandidate;
  1232. begin
  1233. hp:=procs;
  1234. while assigned(hp) do
  1235. begin
  1236. hpnext:=hp^.next;
  1237. dispose(hp);
  1238. hp:=hpnext;
  1239. end;
  1240. end;
  1241. procedure tcallnode.candidates_list(procs:pcandidate;all:boolean);
  1242. var
  1243. hp : pcandidate;
  1244. begin
  1245. hp:=procs;
  1246. while assigned(hp) do
  1247. begin
  1248. if all or
  1249. (not hp^.invalid) then
  1250. MessagePos1(hp^.data.fileinfo,sym_h_param_list,hp^.data.fullprocname(false));
  1251. hp:=hp^.next;
  1252. end;
  1253. end;
  1254. {$ifdef EXTDEBUG}
  1255. procedure Tcallnode.candidates_dump_info(lvl:longint;procs:pcandidate);
  1256. function ParaTreeStr(p:tcallparanode):string;
  1257. begin
  1258. result:='';
  1259. while assigned(p) do
  1260. begin
  1261. if result<>'' then
  1262. result:=result+',';
  1263. result:=result+p.resulttype.def.typename;
  1264. p:=tcallparanode(p.right);
  1265. end;
  1266. end;
  1267. var
  1268. hp : pcandidate;
  1269. currpara : tparaitem;
  1270. begin
  1271. if not CheckVerbosity(lvl) then
  1272. exit;
  1273. Comment(lvl+V_LineInfo,'Overloaded callnode: '+symtableprocentry.name+'('+ParaTreeStr(tcallparanode(left))+')');
  1274. hp:=procs;
  1275. while assigned(hp) do
  1276. begin
  1277. Comment(lvl,' '+hp^.data.fullprocname(false));
  1278. if (hp^.invalid) then
  1279. Comment(lvl,' invalid')
  1280. else
  1281. begin
  1282. Comment(lvl,' ex: '+tostr(hp^.exact_count)+
  1283. ' eq: '+tostr(hp^.equal_count)+
  1284. ' l1: '+tostr(hp^.cl1_count)+
  1285. ' l2: '+tostr(hp^.cl2_count)+
  1286. ' l3: '+tostr(hp^.cl3_count)+
  1287. ' oper: '+tostr(hp^.coper_count)+
  1288. ' ord: '+realtostr(hp^.exact_count));
  1289. { Print parameters in left-right order }
  1290. currpara:=hp^.firstpara;
  1291. if assigned(currpara) then
  1292. begin
  1293. while assigned(currpara.next) do
  1294. currpara:=tparaitem(currpara.next);
  1295. end;
  1296. while assigned(currpara) do
  1297. begin
  1298. if (not currpara.is_hidden) then
  1299. Comment(lvl,' - '+currpara.paratype.def.typename+' : '+EqualTypeName[currpara.eqval]);
  1300. currpara:=tparaitem(currpara.previous);
  1301. end;
  1302. end;
  1303. hp:=hp^.next;
  1304. end;
  1305. end;
  1306. {$endif EXTDEBUG}
  1307. procedure Tcallnode.candidates_get_information(procs:pcandidate);
  1308. var
  1309. hp : pcandidate;
  1310. currpara : tparaitem;
  1311. currparanr : byte;
  1312. def_from,
  1313. def_to : tdef;
  1314. pt : tcallparanode;
  1315. eq : tequaltype;
  1316. convtype : tconverttype;
  1317. pdoper : tprocdef;
  1318. begin
  1319. { process all procs }
  1320. hp:=procs;
  1321. while assigned(hp) do
  1322. begin
  1323. { We compare parameters in reverse order (right to left),
  1324. the firstpara is already pointing to the last parameter
  1325. were we need to start comparing }
  1326. currparanr:=paralength;
  1327. currpara:=hp^.firstpara;
  1328. while assigned(currpara) and (currpara.is_hidden) do
  1329. currpara:=tparaitem(currpara.previous);
  1330. pt:=tcallparanode(left);
  1331. while assigned(pt) and assigned(currpara) do
  1332. begin
  1333. { retrieve current parameter definitions to compares }
  1334. eq:=te_incompatible;
  1335. def_from:=pt.resulttype.def;
  1336. def_to:=currpara.paratype.def;
  1337. if not(assigned(def_from)) then
  1338. internalerror(200212091);
  1339. if not(
  1340. assigned(def_to) or
  1341. ((po_varargs in hp^.data.procoptions) and
  1342. (currparanr>hp^.data.minparacount))
  1343. ) then
  1344. internalerror(200212092);
  1345. { varargs are always equal, but not exact }
  1346. if (po_varargs in hp^.data.procoptions) and
  1347. (currparanr>hp^.data.minparacount) then
  1348. begin
  1349. inc(hp^.equal_count);
  1350. eq:=te_equal;
  1351. end
  1352. else
  1353. { same definition -> exact }
  1354. if (def_from=def_to) then
  1355. begin
  1356. inc(hp^.exact_count);
  1357. eq:=te_exact;
  1358. end
  1359. else
  1360. { for value and const parameters check if a integer is constant or
  1361. included in other integer -> equal and calc ordinal_distance }
  1362. if not(currpara.paratyp in [vs_var,vs_out]) and
  1363. is_integer(def_from) and
  1364. is_integer(def_to) and
  1365. is_in_limit(def_from,def_to) then
  1366. begin
  1367. inc(hp^.equal_count);
  1368. eq:=te_equal;
  1369. hp^.ordinal_distance:=hp^.ordinal_distance+
  1370. abs(bestreal(torddef(def_from).low)-bestreal(torddef(def_to).low));
  1371. hp^.ordinal_distance:=hp^.ordinal_distance+
  1372. abs(bestreal(torddef(def_to).high)-bestreal(torddef(def_from).high));
  1373. { Give wrong sign a small penalty, this is need to get a diffrence
  1374. from word->[longword,longint] }
  1375. if is_signed(def_from)<>is_signed(def_to) then
  1376. hp^.ordinal_distance:=hp^.ordinal_distance+1.0;
  1377. end
  1378. else
  1379. { generic type comparision }
  1380. begin
  1381. eq:=compare_defs_ext(def_from,def_to,pt.left.nodetype,
  1382. false,true,convtype,pdoper);
  1383. { when the types are not equal we need to check
  1384. some special case for parameter passing }
  1385. if (eq<te_equal) then
  1386. begin
  1387. if currpara.paratyp in [vs_var,vs_out] then
  1388. begin
  1389. { para requires an equal type so the previous found
  1390. match was not good enough, reset to incompatible }
  1391. eq:=te_incompatible;
  1392. { var_para_allowed will return te_equal and te_convert_l1 to
  1393. make a difference for best matching }
  1394. var_para_allowed(eq,pt.resulttype.def,currpara.paratype.def)
  1395. end
  1396. else
  1397. para_allowed(eq,pt,def_to);
  1398. end;
  1399. case eq of
  1400. te_exact :
  1401. internalerror(200212071); { already checked }
  1402. te_equal :
  1403. inc(hp^.equal_count);
  1404. te_convert_l1 :
  1405. inc(hp^.cl1_count);
  1406. te_convert_l2 :
  1407. inc(hp^.cl2_count);
  1408. te_convert_l3 :
  1409. inc(hp^.cl3_count);
  1410. te_convert_operator :
  1411. inc(hp^.coper_count);
  1412. te_incompatible :
  1413. hp^.invalid:=true;
  1414. else
  1415. internalerror(200212072);
  1416. end;
  1417. end;
  1418. { stop checking when an incompatible parameter is found }
  1419. if hp^.invalid then
  1420. begin
  1421. { store the current parameter info for
  1422. a nice error message when no procedure is found }
  1423. hp^.wrongpara:=currpara;
  1424. hp^.wrongparanr:=currparanr;
  1425. break;
  1426. end;
  1427. {$ifdef EXTDEBUG}
  1428. { store equal in node tree for dump }
  1429. currpara.eqval:=eq;
  1430. {$endif EXTDEBUG}
  1431. { next parameter in the call tree }
  1432. pt:=tcallparanode(pt.right);
  1433. { next parameter for definition, only goto next para
  1434. if we're out of the varargs }
  1435. if not(po_varargs in hp^.data.procoptions) or
  1436. (currparanr<=hp^.data.maxparacount) then
  1437. begin
  1438. { Ignore vs_hidden parameters }
  1439. repeat
  1440. currpara:=tparaitem(currpara.previous);
  1441. until (not assigned(currpara)) or (not currpara.is_hidden);
  1442. end;
  1443. dec(currparanr);
  1444. end;
  1445. if not(hp^.invalid) and
  1446. (assigned(pt) or assigned(currpara) or (currparanr<>0)) then
  1447. internalerror(200212141);
  1448. { next candidate }
  1449. hp:=hp^.next;
  1450. end;
  1451. end;
  1452. function Tcallnode.candidates_choose_best(procs:pcandidate;var bestpd:tprocdef):integer;
  1453. var
  1454. besthpstart,
  1455. hp : pcandidate;
  1456. cntpd,
  1457. res : integer;
  1458. begin
  1459. {
  1460. Returns the number of candidates left and the
  1461. first candidate is returned in pdbest
  1462. }
  1463. { Setup the first procdef as best, only count it as a result
  1464. when it is valid }
  1465. bestpd:=procs^.data;
  1466. if procs^.invalid then
  1467. cntpd:=0
  1468. else
  1469. cntpd:=1;
  1470. if assigned(procs^.next) then
  1471. begin
  1472. besthpstart:=procs;
  1473. hp:=procs^.next;
  1474. while assigned(hp) do
  1475. begin
  1476. res:=is_better_candidate(hp,besthpstart);
  1477. if (res>0) then
  1478. begin
  1479. { hp is better, flag all procs to be incompatible }
  1480. while (besthpstart<>hp) do
  1481. begin
  1482. besthpstart^.invalid:=true;
  1483. besthpstart:=besthpstart^.next;
  1484. end;
  1485. { besthpstart is already set to hp }
  1486. bestpd:=besthpstart^.data;
  1487. cntpd:=1;
  1488. end
  1489. else
  1490. if (res<0) then
  1491. begin
  1492. { besthpstart is better, flag current hp to be incompatible }
  1493. hp^.invalid:=true;
  1494. end
  1495. else
  1496. begin
  1497. { res=0, both are valid }
  1498. if not hp^.invalid then
  1499. inc(cntpd);
  1500. end;
  1501. hp:=hp^.next;
  1502. end;
  1503. end;
  1504. candidates_choose_best:=cntpd;
  1505. end;
  1506. procedure tcallnode.candidates_find_wrong_para(procs:pcandidate);
  1507. var
  1508. currparanr : smallint;
  1509. hp : pcandidate;
  1510. pt : tcallparanode;
  1511. begin
  1512. { Only process the first overloaded procdef }
  1513. hp:=procs;
  1514. { Find callparanode corresponding to the argument }
  1515. pt:=tcallparanode(left);
  1516. currparanr:=paralength;
  1517. while assigned(pt) and
  1518. (currparanr>hp^.wrongparanr) do
  1519. begin
  1520. pt:=tcallparanode(pt.right);
  1521. dec(currparanr);
  1522. end;
  1523. if (currparanr<>hp^.wrongparanr) or
  1524. not assigned(pt) then
  1525. internalerror(200212094);
  1526. { Show error message, when it was a var or out parameter
  1527. guess that it is a missing typeconv }
  1528. if hp^.wrongpara.paratyp in [vs_var,vs_out] then
  1529. CGMessagePos2(left.fileinfo,parser_e_call_by_ref_without_typeconv,
  1530. pt.resulttype.def.typename,hp^.wrongpara.paratype.def.typename)
  1531. else
  1532. CGMessagePos3(pt.fileinfo,type_e_wrong_parameter_type,
  1533. tostr(hp^.wrongparanr),pt.resulttype.def.typename,hp^.wrongpara.paratype.def.typename);
  1534. end;
  1535. function tcallnode.gen_self_tree_methodpointer:tnode;
  1536. var
  1537. hsym : tvarsym;
  1538. begin
  1539. { find self field in methodpointer record }
  1540. hsym:=tvarsym(trecorddef(methodpointertype.def).symtable.search('self'));
  1541. if not assigned(hsym) then
  1542. internalerror(200305251);
  1543. { Load tmehodpointer(right).self }
  1544. result:=csubscriptnode.create(
  1545. hsym,
  1546. ctypeconvnode.create_explicit(right.getcopy,methodpointertype));
  1547. end;
  1548. function tcallnode.gen_self_tree:tnode;
  1549. var
  1550. selftree : tnode;
  1551. begin
  1552. selftree:=nil;
  1553. { inherited }
  1554. if (nf_inherited in flags) then
  1555. selftree:=load_self_node
  1556. else
  1557. { constructors }
  1558. if (procdefinition.proctypeoption=potype_constructor) then
  1559. begin
  1560. { push 0 as self when allocation is needed }
  1561. if (methodpointer.resulttype.def.deftype=classrefdef) or
  1562. (nf_new_call in flags) then
  1563. selftree:=cpointerconstnode.create(0,voidpointertype)
  1564. else
  1565. begin
  1566. if methodpointer.nodetype=typen then
  1567. selftree:=load_self_node
  1568. else
  1569. selftree:=methodpointer.getcopy;
  1570. end;
  1571. end
  1572. else
  1573. { Calling a static/class method }
  1574. if (po_classmethod in procdefinition.procoptions) or
  1575. (po_staticmethod in procdefinition.procoptions) then
  1576. begin
  1577. if (procdefinition.deftype<>procdef) then
  1578. internalerror(200305062);
  1579. if (oo_has_vmt in tprocdef(procdefinition)._class.objectoptions) then
  1580. begin
  1581. { we only need the vmt, loading self is not required and there is no
  1582. need to check for typen, because that will always get the
  1583. loadvmtaddrnode added }
  1584. selftree:=methodpointer.getcopy;
  1585. if methodpointer.resulttype.def.deftype<>classrefdef then
  1586. selftree:=cloadvmtaddrnode.create(selftree);
  1587. end
  1588. else
  1589. selftree:=cpointerconstnode.create(0,voidpointertype);
  1590. end
  1591. else
  1592. begin
  1593. if methodpointer.nodetype=typen then
  1594. selftree:=load_self_node
  1595. else
  1596. selftree:=methodpointer.getcopy;
  1597. end;
  1598. result:=selftree;
  1599. end;
  1600. function tcallnode.gen_vmt_tree:tnode;
  1601. var
  1602. vmttree : tnode;
  1603. begin
  1604. vmttree:=nil;
  1605. if not(procdefinition.proctypeoption in [potype_constructor,potype_destructor]) then
  1606. internalerror(200305051);
  1607. { inherited call, no create/destroy }
  1608. if (nf_inherited in flags) then
  1609. vmttree:=cpointerconstnode.create(0,voidpointertype)
  1610. else
  1611. { do not create/destroy when called from member function
  1612. without specifying self explicit }
  1613. if (nf_member_call in flags) then
  1614. begin
  1615. if (methodpointer.resulttype.def.deftype=classrefdef) and
  1616. (procdefinition.proctypeoption=potype_constructor) then
  1617. vmttree:=methodpointer.getcopy
  1618. else
  1619. vmttree:=cpointerconstnode.create(0,voidpointertype);
  1620. end
  1621. else
  1622. { constructor with extended syntax called from new }
  1623. if (nf_new_call in flags) then
  1624. vmttree:=cloadvmtaddrnode.create(ctypenode.create(methodpointer.resulttype))
  1625. else
  1626. { destructor with extended syntax called from dispose }
  1627. if (nf_dispose_call in flags) then
  1628. vmttree:=cloadvmtaddrnode.create(methodpointer.getcopy)
  1629. else
  1630. if (methodpointer.resulttype.def.deftype=classrefdef) then
  1631. begin
  1632. { constructor call via classreference => allocate memory }
  1633. if (procdefinition.proctypeoption=potype_constructor) and
  1634. is_class(tclassrefdef(methodpointer.resulttype.def).pointertype.def) then
  1635. begin
  1636. vmttree:=methodpointer.getcopy;
  1637. { Only a typenode can be passed when it is called with <class of xx>.create }
  1638. if vmttree.nodetype=typen then
  1639. vmttree:=cloadvmtaddrnode.create(vmttree);
  1640. end
  1641. else
  1642. vmttree:=cpointerconstnode.create(0,voidpointertype);
  1643. end
  1644. else
  1645. { class }
  1646. if is_class(methodpointer.resulttype.def) then
  1647. begin
  1648. { destructor: release instance, flag(vmt)=1
  1649. constructor: direct call, do nothing, leave vmt=0 }
  1650. if (procdefinition.proctypeoption=potype_destructor) then
  1651. vmttree:=cpointerconstnode.create(1,voidpointertype)
  1652. else
  1653. vmttree:=cpointerconstnode.create(0,voidpointertype);
  1654. end
  1655. else
  1656. { object }
  1657. begin
  1658. { destructor: direct call, no dispose, vmt=0
  1659. constructor: initialize object, load vmt }
  1660. if (procdefinition.proctypeoption=potype_constructor) then
  1661. { old styled inherited call? }
  1662. if (methodpointer.nodetype=typen) then
  1663. vmttree:=cpointerconstnode.create(0,voidpointertype)
  1664. else
  1665. vmttree:=cloadvmtaddrnode.create(ctypenode.create(methodpointer.resulttype))
  1666. else
  1667. vmttree:=cpointerconstnode.create(0,voidpointertype);
  1668. end;
  1669. result:=vmttree;
  1670. end;
  1671. procedure tcallnode.bind_paraitem;
  1672. var
  1673. i : integer;
  1674. pt : tcallparanode;
  1675. oldppt : ^tcallparanode;
  1676. varargspara,
  1677. currpara : tparaitem;
  1678. used_by_callnode : boolean;
  1679. hiddentree : tnode;
  1680. newstatement : tstatementnode;
  1681. temp : ttempcreatenode;
  1682. begin
  1683. pt:=tcallparanode(left);
  1684. oldppt:=@left;
  1685. { flag all callparanodes that belong to the varargs }
  1686. i:=paralength;
  1687. while (i>procdefinition.maxparacount) do
  1688. begin
  1689. include(pt.flags,nf_varargs_para);
  1690. oldppt:[email protected];
  1691. pt:=tcallparanode(pt.right);
  1692. dec(i);
  1693. end;
  1694. { skip varargs that are inserted by array of const }
  1695. while assigned(pt) and
  1696. (nf_varargs_para in pt.flags) do
  1697. pt:=tcallparanode(pt.right);
  1698. { process normal parameters and insert hidden parameters }
  1699. currpara:=tparaitem(procdefinition.Para.last);
  1700. while assigned(currpara) do
  1701. begin
  1702. if currpara.is_hidden then
  1703. begin
  1704. { generate hidden tree }
  1705. used_by_callnode:=false;
  1706. hiddentree:=nil;
  1707. if (vo_is_funcret in tvarsym(currpara.parasym).varoptions) then
  1708. begin
  1709. { Generate funcretnode if not specified }
  1710. if assigned(funcretnode) then
  1711. begin
  1712. hiddentree:=funcretnode.getcopy;
  1713. end
  1714. else
  1715. begin
  1716. hiddentree:=internalstatements(newstatement);
  1717. { need to use resulttype instead of procdefinition.rettype,
  1718. because they can be different }
  1719. temp:=ctempcreatenode.create(resulttype,resulttype.def.size,tt_persistent);
  1720. addstatement(newstatement,temp);
  1721. addstatement(newstatement,ctempdeletenode.create_normal_temp(temp));
  1722. addstatement(newstatement,ctemprefnode.create(temp));
  1723. end;
  1724. end
  1725. else
  1726. if vo_is_high_value in tvarsym(currpara.parasym).varoptions then
  1727. begin
  1728. if not assigned(pt) then
  1729. internalerror(200304082);
  1730. { we need the information of the next parameter }
  1731. hiddentree:=gen_high_tree(pt.left,is_open_string(tparaitem(currpara.previous).paratype.def));
  1732. end
  1733. else
  1734. if vo_is_self in tvarsym(currpara.parasym).varoptions then
  1735. begin
  1736. if assigned(right) then
  1737. hiddentree:=gen_self_tree_methodpointer
  1738. else
  1739. hiddentree:=gen_self_tree;
  1740. end
  1741. else
  1742. if vo_is_vmt in tvarsym(currpara.parasym).varoptions then
  1743. begin
  1744. hiddentree:=gen_vmt_tree;
  1745. end
  1746. else
  1747. if vo_is_parentfp in tvarsym(currpara.parasym).varoptions then
  1748. begin
  1749. if not(assigned(procdefinition.owner.defowner)) then
  1750. internalerror(200309287);
  1751. hiddentree:=cloadparentfpnode.create(tprocdef(procdefinition.owner.defowner));
  1752. end;
  1753. { add the hidden parameter }
  1754. if not assigned(hiddentree) then
  1755. internalerror(200304073);
  1756. { Already insert para and let the previous node point to
  1757. this new node }
  1758. pt:=ccallparanode.create(hiddentree,oldppt^);
  1759. pt.used_by_callnode:=used_by_callnode;
  1760. oldppt^:=pt;
  1761. end;
  1762. if not assigned(pt) then
  1763. internalerror(200310052);
  1764. pt.paraitem:=currpara;
  1765. oldppt:[email protected];
  1766. pt:=tcallparanode(pt.right);
  1767. currpara:=tparaitem(currpara.previous)
  1768. end;
  1769. { Create paraitems for varargs }
  1770. pt:=tcallparanode(left);
  1771. while assigned(pt) do
  1772. begin
  1773. if nf_varargs_para in pt.flags then
  1774. begin
  1775. if not assigned(varargsparas) then
  1776. varargsparas:=tvarargspara.create;
  1777. varargspara:=tparaitem.create;
  1778. varargspara.paratyp:=vs_value;
  1779. varargspara.paratype:=pt.resulttype;
  1780. { varargspara is left-right, use insert
  1781. instead of concat }
  1782. varargsparas.insert(varargspara);
  1783. pt.paraitem:=varargspara;
  1784. end;
  1785. pt:=tcallparanode(pt.right);
  1786. end;
  1787. end;
  1788. function tcallnode.det_resulttype:tnode;
  1789. var
  1790. procs : pcandidate;
  1791. oldcallnode : tcallnode;
  1792. hpt : tnode;
  1793. pt : tcallparanode;
  1794. lastpara : longint;
  1795. currpara : tparaitem;
  1796. cand_cnt : integer;
  1797. i : longint;
  1798. method_must_be_valid,
  1799. is_const : boolean;
  1800. label
  1801. errorexit;
  1802. begin
  1803. result:=nil;
  1804. procs:=nil;
  1805. oldcallnode:=aktcallnode;
  1806. aktcallnode:=nil;
  1807. { determine length of parameter list }
  1808. pt:=tcallparanode(left);
  1809. paralength:=0;
  1810. while assigned(pt) do
  1811. begin
  1812. inc(paralength);
  1813. pt:=tcallparanode(pt.right);
  1814. end;
  1815. { determine the type of the parameters }
  1816. if assigned(left) then
  1817. begin
  1818. tcallparanode(left).get_paratype;
  1819. if codegenerror then
  1820. goto errorexit;
  1821. end;
  1822. { procedure variable ? }
  1823. if assigned(right) then
  1824. begin
  1825. set_varstate(right,vs_used,true);
  1826. resulttypepass(right);
  1827. if codegenerror then
  1828. exit;
  1829. procdefinition:=tabstractprocdef(right.resulttype.def);
  1830. { Compare parameters from right to left }
  1831. currpara:=tparaitem(procdefinition.Para.last);
  1832. while assigned(currpara) and (currpara.is_hidden) do
  1833. currpara:=tparaitem(currpara.previous);
  1834. pt:=tcallparanode(left);
  1835. lastpara:=paralength;
  1836. while assigned(currpara) and assigned(pt) do
  1837. begin
  1838. { only goto next para if we're out of the varargs }
  1839. if not(po_varargs in procdefinition.procoptions) or
  1840. (lastpara<=procdefinition.maxparacount) then
  1841. begin
  1842. repeat
  1843. currpara:=tparaitem(currpara.previous);
  1844. until (not assigned(currpara)) or (not currpara.is_hidden);
  1845. end;
  1846. pt:=tcallparanode(pt.right);
  1847. dec(lastpara);
  1848. end;
  1849. if assigned(pt) or
  1850. (assigned(currpara) and
  1851. not assigned(currpara.defaultvalue)) then
  1852. begin
  1853. if assigned(pt) then
  1854. aktfilepos:=pt.fileinfo;
  1855. CGMessage(parser_e_wrong_parameter_size);
  1856. goto errorexit;
  1857. end;
  1858. end
  1859. else
  1860. { not a procedure variable }
  1861. begin
  1862. { do we know the procedure to call ? }
  1863. if not(assigned(procdefinition)) then
  1864. begin
  1865. procs:=candidates_find;
  1866. { no procedures found? then there is something wrong
  1867. with the parameter size or the procedures are
  1868. not accessible }
  1869. if not assigned(procs) then
  1870. begin
  1871. { when it's an auto inherited call and there
  1872. is no procedure found, but the procedures
  1873. were defined with overload directive and at
  1874. least two procedures are defined then we ignore
  1875. this inherited by inserting a nothingn. Only
  1876. do this ugly hack in Delphi mode as it looks more
  1877. like a bug. It's also not documented }
  1878. if (m_delphi in aktmodeswitches) and
  1879. (nf_anon_inherited in flags) and
  1880. (symtableprocentry.owner.symtabletype=objectsymtable) and
  1881. (po_overload in symtableprocentry.first_procdef.procoptions) and
  1882. (symtableprocentry.procdef_count>=2) then
  1883. result:=cnothingnode.create
  1884. else
  1885. begin
  1886. { in tp mode we can try to convert to procvar if
  1887. there are no parameters specified. Only try it
  1888. when there is only one proc definition, else the
  1889. loadnode will give a strange error }
  1890. if not(assigned(left)) and
  1891. not(nf_inherited in flags) and
  1892. (m_tp_procvar in aktmodeswitches) and
  1893. (symtableprocentry.procdef_count=1) then
  1894. begin
  1895. hpt:=cloadnode.create(tprocsym(symtableprocentry),symtableproc);
  1896. if assigned(methodpointer) then
  1897. tloadnode(hpt).set_mp(methodpointer.getcopy);
  1898. resulttypepass(hpt);
  1899. result:=hpt;
  1900. end
  1901. else
  1902. begin
  1903. if assigned(left) then
  1904. aktfilepos:=left.fileinfo;
  1905. if paravisible then
  1906. begin
  1907. CGMessage(parser_e_wrong_parameter_size);
  1908. symtableprocentry.write_parameter_lists(nil);
  1909. end
  1910. else
  1911. CGMessage(parser_e_cant_access_private_member);
  1912. end;
  1913. end;
  1914. goto errorexit;
  1915. end;
  1916. { Retrieve information about the candidates }
  1917. candidates_get_information(procs);
  1918. {$ifdef EXTDEBUG}
  1919. { Display info when multiple candidates are found }
  1920. if assigned(procs^.next) then
  1921. candidates_dump_info(V_Debug,procs);
  1922. {$endif EXTDEBUG}
  1923. { Choose the best candidate and count the number of
  1924. candidates left }
  1925. cand_cnt:=candidates_choose_best(procs,tprocdef(procdefinition));
  1926. { All parameters are checked, check if there are any
  1927. procedures left }
  1928. if cand_cnt>0 then
  1929. begin
  1930. { Multiple candidates left? }
  1931. if cand_cnt>1 then
  1932. begin
  1933. CGMessage(cg_e_cant_choose_overload_function);
  1934. {$ifdef EXTDEBUG}
  1935. candidates_dump_info(V_Hint,procs);
  1936. {$else}
  1937. candidates_list(procs,false);
  1938. {$endif EXTDEBUG}
  1939. { we'll just use the first candidate to make the
  1940. call }
  1941. end;
  1942. { assign procdefinition }
  1943. if symtableproc=nil then
  1944. symtableproc:=procdefinition.owner;
  1945. { update browser information }
  1946. if make_ref then
  1947. begin
  1948. tprocdef(procdefinition).lastref:=tref.create(tprocdef(procdefinition).lastref,@fileinfo);
  1949. inc(tprocdef(procdefinition).refcount);
  1950. if tprocdef(procdefinition).defref=nil then
  1951. tprocdef(procdefinition).defref:=tprocdef(procdefinition).lastref;
  1952. end;
  1953. end
  1954. else
  1955. begin
  1956. { No candidates left, this must be a type error,
  1957. because wrong size is already checked. procdefinition
  1958. is filled with the first (random) definition that is
  1959. found. We use this definition to display a nice error
  1960. message that the wrong type is passed }
  1961. candidates_find_wrong_para(procs);
  1962. candidates_list(procs,true);
  1963. {$ifdef EXTDEBUG}
  1964. candidates_dump_info(V_Hint,procs);
  1965. {$endif EXTDEBUG}
  1966. { We can not proceed, release all procs and exit }
  1967. candidates_free(procs);
  1968. goto errorexit;
  1969. end;
  1970. candidates_free(procs);
  1971. end; { end of procedure to call determination }
  1972. end;
  1973. { add needed default parameters }
  1974. if assigned(procdefinition) and
  1975. (paralength<procdefinition.maxparacount) then
  1976. begin
  1977. currpara:=tparaitem(procdefinition.Para.first);
  1978. i:=0;
  1979. while (i<paralength) do
  1980. begin
  1981. if not assigned(currpara) then
  1982. internalerror(200306181);
  1983. if not currpara.is_hidden then
  1984. inc(i);
  1985. currpara:=tparaitem(currpara.next);
  1986. end;
  1987. while assigned(currpara) and
  1988. currpara.is_hidden do
  1989. currpara:=tparaitem(currpara.next);
  1990. while assigned(currpara) do
  1991. begin
  1992. if not assigned(currpara.defaultvalue) then
  1993. internalerror(200212142);
  1994. left:=ccallparanode.create(genconstsymtree(tconstsym(currpara.defaultvalue)),left);
  1995. currpara:=tparaitem(currpara.next);
  1996. end;
  1997. end;
  1998. { handle predefined procedures }
  1999. is_const:=(po_internconst in procdefinition.procoptions) and
  2000. ((block_type in [bt_const,bt_type]) or
  2001. (assigned(left) and (tcallparanode(left).left.nodetype in [realconstn,ordconstn])));
  2002. if (procdefinition.proccalloption=pocall_internproc) or is_const then
  2003. begin
  2004. if assigned(left) then
  2005. begin
  2006. { ptr and settextbuf needs two args }
  2007. if assigned(tcallparanode(left).right) then
  2008. begin
  2009. hpt:=geninlinenode(tprocdef(procdefinition).extnumber,is_const,left);
  2010. left:=nil;
  2011. end
  2012. else
  2013. begin
  2014. hpt:=geninlinenode(tprocdef(procdefinition).extnumber,is_const,tcallparanode(left).left);
  2015. tcallparanode(left).left:=nil;
  2016. end;
  2017. end
  2018. else
  2019. hpt:=geninlinenode(tprocdef(procdefinition).extnumber,is_const,nil);
  2020. result:=hpt;
  2021. goto errorexit;
  2022. end;
  2023. { ensure that the result type is set }
  2024. if not restypeset then
  2025. begin
  2026. { constructors return their current class type, not the type where the
  2027. constructor is declared, this can be different because of inheritance }
  2028. if (procdefinition.proctypeoption=potype_constructor) and
  2029. assigned(methodpointer) and
  2030. assigned(methodpointer.resulttype.def) and
  2031. (methodpointer.resulttype.def.deftype=classrefdef) then
  2032. resulttype:=tclassrefdef(methodpointer.resulttype.def).pointertype
  2033. else
  2034. resulttype:=procdefinition.rettype;
  2035. end
  2036. else
  2037. resulttype:=restype;
  2038. if resulttype.def.needs_inittable then
  2039. include(current_procinfo.flags,pi_needs_implicit_finally);
  2040. if assigned(methodpointer) then
  2041. begin
  2042. resulttypepass(methodpointer);
  2043. { direct call to inherited abstract method, then we
  2044. can already give a error in the compiler instead
  2045. of a runtime error }
  2046. if (nf_inherited in flags) and
  2047. (po_abstractmethod in procdefinition.procoptions) then
  2048. CGMessage(cg_e_cant_call_abstract_method);
  2049. { if an inherited con- or destructor should be }
  2050. { called in a con- or destructor then a warning }
  2051. { will be made }
  2052. { con- and destructors need a pointer to the vmt }
  2053. if (nf_inherited in flags) and
  2054. (procdefinition.proctypeoption in [potype_constructor,potype_destructor]) and
  2055. is_object(methodpointer.resulttype.def) and
  2056. not(current_procinfo.procdef.proctypeoption in [potype_constructor,potype_destructor]) then
  2057. CGMessage(cg_w_member_cd_call_from_method);
  2058. if methodpointer.nodetype<>typen then
  2059. begin
  2060. hpt:=methodpointer;
  2061. while assigned(hpt) and (hpt.nodetype in [subscriptn,vecn]) do
  2062. hpt:=tunarynode(hpt).left;
  2063. if (procdefinition.proctypeoption=potype_constructor) and
  2064. assigned(symtableproc) and
  2065. (symtableproc.symtabletype=withsymtable) and
  2066. (tnode(twithsymtable(symtableproc).withrefnode).nodetype=temprefn) then
  2067. CGmessage(cg_e_cannot_call_cons_dest_inside_with);
  2068. { R.Init then R will be initialized by the constructor,
  2069. Also allow it for simple loads }
  2070. if (procdefinition.proctypeoption=potype_constructor) or
  2071. ((hpt.nodetype=loadn) and
  2072. (
  2073. (methodpointer.resulttype.def.deftype=classrefdef) or
  2074. (
  2075. (methodpointer.resulttype.def.deftype=objectdef) and
  2076. not(oo_has_virtual in tobjectdef(methodpointer.resulttype.def).objectoptions)
  2077. )
  2078. )
  2079. ) then
  2080. method_must_be_valid:=false
  2081. else
  2082. method_must_be_valid:=true;
  2083. set_varstate(methodpointer,vs_used,method_must_be_valid);
  2084. { The object is already used if it is called once }
  2085. if (hpt.nodetype=loadn) and
  2086. (tloadnode(hpt).symtableentry.typ=varsym) then
  2087. tvarsym(tloadnode(hpt).symtableentry).varstate:=vs_used;
  2088. end;
  2089. { if we are calling the constructor check for abstract
  2090. methods. Ignore inherited and member calls, because the
  2091. class is then already created }
  2092. if (procdefinition.proctypeoption=potype_constructor) and
  2093. not(nf_inherited in flags) and
  2094. not(nf_member_call in flags) then
  2095. verifyabstractcalls;
  2096. end
  2097. else
  2098. begin
  2099. { When this is method the methodpointer must be available }
  2100. if (right=nil) and
  2101. (procdefinition.owner.symtabletype=objectsymtable) then
  2102. internalerror(200305061);
  2103. end;
  2104. { Change loading of array of const to varargs }
  2105. if assigned(left) and
  2106. is_array_of_const(tparaitem(procdefinition.para.last).paratype.def) and
  2107. (procdefinition.proccalloption in [pocall_cppdecl,pocall_cdecl]) then
  2108. convert_carg_array_of_const;
  2109. { bind paraitems to the callparanodes and insert hidden parameters }
  2110. aktcallnode:=self;
  2111. bind_paraitem;
  2112. { methodpointer is only needed for virtual calls, and
  2113. it should then be loaded with the VMT }
  2114. if (po_virtualmethod in procdefinition.procoptions) and
  2115. not(assigned(methodpointer) and
  2116. (methodpointer.nodetype=typen)) then
  2117. begin
  2118. if not assigned(methodpointer) then
  2119. internalerror(200305063);
  2120. if (methodpointer.resulttype.def.deftype<>classrefdef) then
  2121. begin
  2122. methodpointer:=cloadvmtaddrnode.create(methodpointer);
  2123. resulttypepass(methodpointer);
  2124. end;
  2125. end
  2126. else
  2127. begin
  2128. { not needed anymore }
  2129. methodpointer.free;
  2130. methodpointer:=nil;
  2131. end;
  2132. { insert type conversions for parameters }
  2133. if assigned(left) then
  2134. tcallparanode(left).insert_typeconv(true);
  2135. errorexit:
  2136. aktcallnode:=oldcallnode;
  2137. end;
  2138. procedure tcallnode.order_parameters;
  2139. var
  2140. hp,hpcurr,hpnext,hpfirst,hpprev : tcallparanode;
  2141. currloc : tcgloc;
  2142. begin
  2143. hpfirst:=nil;
  2144. hpcurr:=tcallparanode(left);
  2145. while assigned(hpcurr) do
  2146. begin
  2147. { pull out }
  2148. hpnext:=tcallparanode(hpcurr.right);
  2149. { pull in at the correct place.
  2150. Used order:
  2151. 1. LOC_REFERENCE with smallest offset (x86 only)
  2152. 2. LOC_REFERENCE with most registers
  2153. 3. LOC_REGISTER with most registers }
  2154. currloc:=hpcurr.paraitem.paraloc[callerside].loc;
  2155. hpprev:=nil;
  2156. hp:=hpfirst;
  2157. while assigned(hp) do
  2158. begin
  2159. case currloc of
  2160. LOC_REFERENCE :
  2161. begin
  2162. case hp.paraitem.paraloc[callerside].loc of
  2163. LOC_REFERENCE :
  2164. begin
  2165. { Offset is calculated like:
  2166. sub esp,12
  2167. mov [esp+8],para3
  2168. mov [esp+4],para2
  2169. mov [esp],para1
  2170. call function
  2171. That means the for pushes the para with the
  2172. highest offset (see para3) needs to be pushed first
  2173. }
  2174. if (hpcurr.registers32>hp.registers32)
  2175. {$ifdef x86}
  2176. or (hpcurr.paraitem.paraloc[callerside].reference.offset>hp.paraitem.paraloc[callerside].reference.offset)
  2177. {$endif x86}
  2178. then
  2179. break;
  2180. end;
  2181. LOC_REGISTER,
  2182. LOC_FPUREGISTER :
  2183. break;
  2184. end;
  2185. end;
  2186. LOC_FPUREGISTER,
  2187. LOC_REGISTER :
  2188. begin
  2189. if (hp.paraitem.paraloc[callerside].loc=currloc) and
  2190. (hpcurr.registers32>hp.registers32) then
  2191. break;
  2192. end;
  2193. end;
  2194. hpprev:=hp;
  2195. hp:=tcallparanode(hp.right);
  2196. end;
  2197. hpcurr.right:=hp;
  2198. if assigned(hpprev) then
  2199. hpprev.right:=hpcurr
  2200. else
  2201. hpfirst:=hpcurr;
  2202. { next }
  2203. hpcurr:=hpnext;
  2204. end;
  2205. left:=hpfirst;
  2206. end;
  2207. function tcallnode.pass_1 : tnode;
  2208. {$ifdef m68k}
  2209. var
  2210. regi : tregister;
  2211. {$endif}
  2212. label
  2213. errorexit;
  2214. begin
  2215. result:=nil;
  2216. { calculate the parameter info for the procdef }
  2217. if not procdefinition.has_paraloc_info then
  2218. begin
  2219. paramanager.create_paraloc_info(procdefinition,callerside);
  2220. procdefinition.has_paraloc_info:=true;
  2221. end;
  2222. { calculate the parameter info for varargs }
  2223. if assigned(varargsparas) then
  2224. paramanager.create_varargs_paraloc_info(procdefinition,varargsparas);
  2225. { work trough all parameters to get the register requirements }
  2226. if assigned(left) then
  2227. tcallparanode(left).det_registers;
  2228. { order parameters }
  2229. order_parameters;
  2230. { function result node }
  2231. if assigned(_funcretnode) then
  2232. firstpass(_funcretnode);
  2233. { procedure variable ? }
  2234. if assigned(right) then
  2235. begin
  2236. firstpass(right);
  2237. { procedure does a call }
  2238. if not (block_type in [bt_const,bt_type]) then
  2239. include(current_procinfo.flags,pi_do_call);
  2240. end
  2241. else
  2242. { not a procedure variable }
  2243. begin
  2244. { calc the correture value for the register }
  2245. { handle predefined procedures }
  2246. if (procdefinition.proccalloption=pocall_inline) then
  2247. begin
  2248. { inherit flags }
  2249. current_procinfo.flags:=current_procinfo.flags+((procdefinition as tprocdef).inlininginfo^.flags*inherited_inlining_flags);
  2250. if assigned(methodpointer) then
  2251. CGMessage(cg_e_unable_inline_object_methods);
  2252. if assigned(right) then
  2253. CGMessage(cg_e_unable_inline_procvar);
  2254. if not assigned(inlinecode) then
  2255. begin
  2256. if assigned(tprocdef(procdefinition).inlininginfo^.code) then
  2257. inlinecode:=tprocdef(procdefinition).inlininginfo^.code.getcopy
  2258. else
  2259. CGMessage(cg_e_no_code_for_inline_stored);
  2260. if assigned(inlinecode) then
  2261. begin
  2262. { consider it has not inlined if called
  2263. again inside the args }
  2264. procdefinition.proccalloption:=pocall_default;
  2265. firstpass(inlinecode);
  2266. end;
  2267. end;
  2268. end
  2269. else
  2270. begin
  2271. if not (block_type in [bt_const,bt_type]) then
  2272. include(current_procinfo.flags,pi_do_call);
  2273. end;
  2274. end;
  2275. { get a register for the return value }
  2276. if (not is_void(resulttype.def)) then
  2277. begin
  2278. if paramanager.ret_in_param(resulttype.def,procdefinition.proccalloption) then
  2279. begin
  2280. expectloc:=LOC_REFERENCE;
  2281. end
  2282. else
  2283. { for win32 records returned in EDX:EAX, we
  2284. move them to memory after ... }
  2285. if (resulttype.def.deftype=recorddef) then
  2286. begin
  2287. expectloc:=LOC_CREFERENCE;
  2288. end
  2289. else
  2290. { ansi/widestrings must be registered, so we can dispose them }
  2291. if is_ansistring(resulttype.def) or
  2292. is_widestring(resulttype.def) then
  2293. begin
  2294. expectloc:=LOC_CREFERENCE;
  2295. registers32:=1;
  2296. end
  2297. else
  2298. { we have only to handle the result if it is used }
  2299. if (nf_return_value_used in flags) then
  2300. begin
  2301. case resulttype.def.deftype of
  2302. enumdef,
  2303. orddef :
  2304. begin
  2305. if (procdefinition.proctypeoption=potype_constructor) then
  2306. begin
  2307. expectloc:=LOC_REGISTER;
  2308. registers32:=1;
  2309. end
  2310. else
  2311. begin
  2312. expectloc:=LOC_REGISTER;
  2313. if is_64bit(resulttype.def) then
  2314. registers32:=2
  2315. else
  2316. registers32:=1;
  2317. end;
  2318. end;
  2319. floatdef :
  2320. begin
  2321. expectloc:=LOC_FPUREGISTER;
  2322. {$ifdef cpufpemu}
  2323. if (cs_fp_emulation in aktmoduleswitches) then
  2324. registers32:=1
  2325. else
  2326. {$endif cpufpemu}
  2327. {$ifdef m68k}
  2328. if (tfloatdef(resulttype.def).typ=s32real) then
  2329. registers32:=1
  2330. else
  2331. {$endif m68k}
  2332. registersfpu:=1;
  2333. end;
  2334. else
  2335. begin
  2336. expectloc:=LOC_REGISTER;
  2337. registers32:=1;
  2338. end;
  2339. end;
  2340. end
  2341. else
  2342. expectloc:=LOC_VOID;
  2343. end
  2344. else
  2345. expectloc:=LOC_VOID;
  2346. {$ifdef m68k}
  2347. { we need one more address register for virtual calls on m68k }
  2348. if (po_virtualmethod in procdefinition.procoptions) then
  2349. inc(registers32);
  2350. {$endif m68k}
  2351. { a fpu can be used in any procedure !! }
  2352. {$ifdef i386}
  2353. registersfpu:=procdefinition.fpu_used;
  2354. {$endif i386}
  2355. { if this is a call to a method calc the registers }
  2356. if (methodpointer<>nil) then
  2357. begin
  2358. if methodpointer.nodetype<>typen then
  2359. begin
  2360. firstpass(methodpointer);
  2361. registersfpu:=max(methodpointer.registersfpu,registersfpu);
  2362. registers32:=max(methodpointer.registers32,registers32);
  2363. {$ifdef SUPPORT_MMX }
  2364. registersmmx:=max(methodpointer.registersmmx,registersmmx);
  2365. {$endif SUPPORT_MMX}
  2366. end;
  2367. end;
  2368. { determine the registers of the procedure variable }
  2369. { is this OK for inlined procs also ?? (PM) }
  2370. if assigned(inlinecode) then
  2371. begin
  2372. registersfpu:=max(inlinecode.registersfpu,registersfpu);
  2373. registers32:=max(inlinecode.registers32,registers32);
  2374. {$ifdef SUPPORT_MMX}
  2375. registersmmx:=max(inlinecode.registersmmx,registersmmx);
  2376. {$endif SUPPORT_MMX}
  2377. end;
  2378. { determine the registers of the procedure variable }
  2379. { is this OK for inlined procs also ?? (PM) }
  2380. if assigned(right) then
  2381. begin
  2382. registersfpu:=max(right.registersfpu,registersfpu);
  2383. registers32:=max(right.registers32,registers32);
  2384. {$ifdef SUPPORT_MMX}
  2385. registersmmx:=max(right.registersmmx,registersmmx);
  2386. {$endif SUPPORT_MMX}
  2387. end;
  2388. { determine the registers of the procedure }
  2389. if assigned(left) then
  2390. begin
  2391. registersfpu:=max(left.registersfpu,registersfpu);
  2392. registers32:=max(left.registers32,registers32);
  2393. {$ifdef SUPPORT_MMX}
  2394. registersmmx:=max(left.registersmmx,registersmmx);
  2395. {$endif SUPPORT_MMX}
  2396. end;
  2397. errorexit:
  2398. if assigned(inlinecode) then
  2399. procdefinition.proccalloption:=pocall_inline;
  2400. end;
  2401. {$ifdef state_tracking}
  2402. function Tcallnode.track_state_pass(exec_known:boolean):boolean;
  2403. var hp:Tcallparanode;
  2404. value:Tnode;
  2405. begin
  2406. track_state_pass:=false;
  2407. hp:=Tcallparanode(left);
  2408. while assigned(hp) do
  2409. begin
  2410. if left.track_state_pass(exec_known) then
  2411. begin
  2412. left.resulttype.def:=nil;
  2413. do_resulttypepass(left);
  2414. end;
  2415. value:=aktstate.find_fact(hp.left);
  2416. if value<>nil then
  2417. begin
  2418. track_state_pass:=true;
  2419. hp.left.destroy;
  2420. hp.left:=value.getcopy;
  2421. do_resulttypepass(hp.left);
  2422. end;
  2423. hp:=Tcallparanode(hp.right);
  2424. end;
  2425. end;
  2426. {$endif}
  2427. function tcallnode.para_count:longint;
  2428. var
  2429. ppn : tcallparanode;
  2430. begin
  2431. result:=0;
  2432. ppn:=tcallparanode(left);
  2433. while assigned(ppn) do
  2434. begin
  2435. if not(assigned(ppn.paraitem) and
  2436. ppn.paraitem.is_hidden) then
  2437. inc(result);
  2438. ppn:=tcallparanode(ppn.right);
  2439. end;
  2440. end;
  2441. function tcallnode.docompare(p: tnode): boolean;
  2442. begin
  2443. docompare :=
  2444. inherited docompare(p) and
  2445. (symtableprocentry = tcallnode(p).symtableprocentry) and
  2446. (procdefinition = tcallnode(p).procdefinition) and
  2447. (methodpointer.isequal(tcallnode(p).methodpointer)) and
  2448. ((restypeset and tcallnode(p).restypeset and
  2449. (equal_defs(restype.def,tcallnode(p).restype.def))) or
  2450. (not restypeset and not tcallnode(p).restypeset));
  2451. end;
  2452. procedure tcallnode.printnodedata(var t:text);
  2453. begin
  2454. if assigned(procdefinition) and
  2455. (procdefinition.deftype=procdef) then
  2456. writeln(t,printnodeindention,'proc = ',tprocdef(procdefinition).fullprocname(true))
  2457. else
  2458. begin
  2459. if assigned(symtableprocentry) then
  2460. writeln(t,printnodeindention,'proc = ',symtableprocentry.name)
  2461. else
  2462. writeln(t,printnodeindention,'proc = <nil>');
  2463. end;
  2464. printnode(t,methodpointer);
  2465. printnode(t,right);
  2466. printnode(t,left);
  2467. end;
  2468. begin
  2469. ccallnode:=tcallnode;
  2470. ccallparanode:=tcallparanode;
  2471. end.
  2472. {
  2473. $Log$
  2474. Revision 1.217 2003-12-28 22:09:12 florian
  2475. + setting of bit 6 of cr for c var args on ppc implemented
  2476. Revision 1.216 2003/12/21 19:42:42 florian
  2477. * fixed ppc inlining stuff
  2478. * fixed wrong unit writing
  2479. + added some sse stuff
  2480. Revision 1.215 2003/12/20 12:38:51 florian
  2481. * some x86-64 compilation fixe
  2482. Revision 1.214 2003/12/16 22:09:31 florian
  2483. * better inheritence of procinfo flags of inlined procedures
  2484. Revision 1.213 2003/12/16 21:29:24 florian
  2485. + inlined procedures inherit procinfo flags
  2486. Revision 1.212 2003/12/08 22:37:28 peter
  2487. * paralength is private again
  2488. Revision 1.211 2003/12/08 16:34:23 peter
  2489. * varargspara is left-right, so adding paraitems needs insert
  2490. instead of concat
  2491. Revision 1.210 2003/12/01 18:44:15 peter
  2492. * fixed some crashes
  2493. * fixed varargs and register calling probs
  2494. Revision 1.209 2003/11/28 17:24:22 peter
  2495. * reversed offset calculation for caller side so it works
  2496. correctly for interfaces
  2497. Revision 1.208 2003/11/23 17:05:15 peter
  2498. * register calling is left-right
  2499. * parameter ordering
  2500. * left-right calling inserts result parameter last
  2501. Revision 1.207 2003/11/10 22:02:52 peter
  2502. * cross unit inlining fixed
  2503. Revision 1.206 2003/11/10 19:09:29 peter
  2504. * procvar default value support
  2505. Revision 1.205 2003/11/06 15:54:32 peter
  2506. * fixed calling classmethod for other object from classmethod
  2507. Revision 1.204 2003/11/01 16:17:48 peter
  2508. * use explicit typecast when generating the high value
  2509. Revision 1.203 2003/10/31 15:52:58 peter
  2510. * support creating classes using <class of tobject>.create
  2511. Revision 1.202 2003/10/30 16:23:13 peter
  2512. * don't search for overloads in parents for constructors
  2513. Revision 1.201 2003/10/29 22:01:20 florian
  2514. * fixed passing of dyn. arrays to open array parameters
  2515. Revision 1.200 2003/10/23 14:44:07 peter
  2516. * splitted buildderef and buildderefimpl to fix interface crc
  2517. calculation
  2518. Revision 1.199 2003/10/22 20:40:00 peter
  2519. * write derefdata in a separate ppu entry
  2520. Revision 1.198 2003/10/21 18:17:02 peter
  2521. * only search for overloaded constructors in classes
  2522. Revision 1.197 2003/10/21 15:14:55 peter
  2523. * also search in parents for overloads when calling a constructor
  2524. Revision 1.196 2003/10/13 14:05:12 peter
  2525. * removed is_visible_for_proc
  2526. * search also for class overloads when finding interface
  2527. implementations
  2528. Revision 1.195 2003/10/09 21:31:37 daniel
  2529. * Register allocator splitted, ans abstract now
  2530. Revision 1.194 2003/10/09 15:00:13 florian
  2531. * fixed constructor call in class methods
  2532. Revision 1.193 2003/10/08 19:19:45 peter
  2533. * set_varstate cleanup
  2534. Revision 1.192 2003/10/07 21:14:32 peter
  2535. * compare_paras() has a parameter to ignore hidden parameters
  2536. * cross unit overload searching ignores hidden parameters when
  2537. comparing parameter lists. Now function(string):string is
  2538. not overriden with procedure(string) which has the same visible
  2539. parameter list
  2540. Revision 1.191 2003/10/05 21:21:52 peter
  2541. * c style array of const generates callparanodes
  2542. * varargs paraloc fixes
  2543. Revision 1.190 2003/10/05 12:54:17 peter
  2544. * don't check for abstract methods when the constructor is called
  2545. by inherited
  2546. * fix private member error instead of wrong number of parameters
  2547. Revision 1.189 2003/10/04 19:00:52 florian
  2548. * fixed TP 6.0 styled inherited call; fixes IDE with 1.1
  2549. Revision 1.188 2003/10/03 22:00:33 peter
  2550. * parameter alignment fixes
  2551. Revision 1.187 2003/10/03 14:44:38 peter
  2552. * fix IE when callnode was firstpassed twice
  2553. Revision 1.186 2003/10/02 21:13:46 peter
  2554. * protected visibility fixes
  2555. Revision 1.185 2003/10/01 20:34:48 peter
  2556. * procinfo unit contains tprocinfo
  2557. * cginfo renamed to cgbase
  2558. * moved cgmessage to verbose
  2559. * fixed ppc and sparc compiles
  2560. Revision 1.184 2003/09/28 21:44:55 peter
  2561. * fix check that filedef needs var para
  2562. Revision 1.183 2003/09/28 17:55:03 peter
  2563. * parent framepointer changed to hidden parameter
  2564. * tloadparentfpnode added
  2565. Revision 1.182 2003/09/25 21:28:00 peter
  2566. * parameter fixes
  2567. Revision 1.181 2003/09/23 17:56:05 peter
  2568. * locals and paras are allocated in the code generation
  2569. * tvarsym.localloc contains the location of para/local when
  2570. generating code for the current procedure
  2571. Revision 1.180 2003/09/16 16:17:01 peter
  2572. * varspez in calls to push_addr_param
  2573. Revision 1.179 2003/09/07 22:09:35 peter
  2574. * preparations for different default calling conventions
  2575. * various RA fixes
  2576. Revision 1.178 2003/09/06 22:27:08 florian
  2577. * fixed web bug 2669
  2578. * cosmetic fix in printnode
  2579. * tobjectdef.gettypename implemented
  2580. Revision 1.177 2003/09/03 15:55:00 peter
  2581. * NEWRA branch merged
  2582. Revision 1.176.2.3 2003/08/31 21:07:44 daniel
  2583. * callparatemp ripped
  2584. Revision 1.176.2.2 2003/08/27 20:23:55 peter
  2585. * remove old ra code
  2586. Revision 1.176.2.1 2003/08/27 19:55:54 peter
  2587. * first tregister patch
  2588. Revision 1.176 2003/08/23 18:42:57 peter
  2589. * only check for size matches when parameter is enum,ord,float
  2590. Revision 1.175 2003/08/10 17:25:23 peter
  2591. * fixed some reported bugs
  2592. Revision 1.174 2003/07/25 09:54:57 jonas
  2593. * fixed bogus abstract method warnings
  2594. Revision 1.173 2003/06/25 18:31:23 peter
  2595. * sym,def resolving partly rewritten to support also parent objects
  2596. not directly available through the uses clause
  2597. Revision 1.172 2003/06/17 16:34:44 jonas
  2598. * lots of newra fixes (need getfuncretparaloc implementation for i386)!
  2599. * renamed all_intregisters to volatile_intregisters and made it
  2600. processor dependent
  2601. Revision 1.171 2003/06/15 16:47:33 jonas
  2602. * fixed revious commit
  2603. Revision 1.170 2003/06/15 15:10:57 jonas
  2604. * callparatemp fix: if a threadvar is a parameter, that paramter also
  2605. does a call
  2606. Revision 1.169 2003/06/13 21:19:30 peter
  2607. * current_procdef removed, use current_procinfo.procdef instead
  2608. Revision 1.168 2003/06/08 20:01:53 jonas
  2609. * optimized assignments with on the right side a function that returns
  2610. an ansi- or widestring
  2611. Revision 1.167 2003/06/08 18:27:15 jonas
  2612. + ability to change the location of a ttempref node with changelocation()
  2613. method. Useful to use instead of copying the contents from one temp to
  2614. another
  2615. + some shortstring optimizations in tassignmentnode that avoid some
  2616. copying (required some shortstring optimizations to be moved from
  2617. resulttype to firstpass, because they work on callnodes and string
  2618. addnodes are only changed to callnodes in the firstpass)
  2619. * allow setting/changing the funcretnode of callnodes after the
  2620. resulttypepass has been done, funcretnode is now a property
  2621. (all of the above should have a quite big effect on callparatemp)
  2622. Revision 1.166 2003/06/08 11:42:33 peter
  2623. * creating class with abstract call checking fixed
  2624. * there will be only one warning for each class, the methods
  2625. are listed as hint
  2626. Revision 1.165 2003/06/07 20:26:32 peter
  2627. * re-resolving added instead of reloading from ppu
  2628. * tderef object added to store deref info for resolving
  2629. Revision 1.164 2003/06/03 21:05:48 peter
  2630. * fix check for procedure without parameters
  2631. * calling constructor as member will not allocate memory
  2632. Revision 1.163 2003/06/03 13:01:59 daniel
  2633. * Register allocator finished
  2634. Revision 1.162 2003/05/26 21:17:17 peter
  2635. * procinlinenode removed
  2636. * aktexit2label removed, fast exit removed
  2637. + tcallnode.inlined_pass_2 added
  2638. Revision 1.161 2003/05/25 11:34:17 peter
  2639. * methodpointer self pushing fixed
  2640. Revision 1.160 2003/05/25 08:59:16 peter
  2641. * inline fixes
  2642. Revision 1.159 2003/05/24 17:16:37 jonas
  2643. * added missing firstpass for callparatemp code
  2644. Revision 1.158 2003/05/23 14:27:35 peter
  2645. * remove some unit dependencies
  2646. * current_procinfo changes to store more info
  2647. Revision 1.157 2003/05/17 14:05:58 jonas
  2648. * fixed callparatemp for ansi/widestring and interfacecoms
  2649. Revision 1.156 2003/05/17 13:30:08 jonas
  2650. * changed tt_persistant to tt_persistent :)
  2651. * tempcreatenode now doesn't accept a boolean anymore for persistent
  2652. temps, but a ttemptype, so you can also create ansistring temps etc
  2653. Revision 1.155 2003/05/16 14:33:31 peter
  2654. * regvar fixes
  2655. Revision 1.154 2003/05/14 19:35:50 jonas
  2656. * fixed callparatemp so it works with vs_var, vs_out and formal const
  2657. parameters
  2658. Revision 1.153 2003/05/13 20:53:41 peter
  2659. * constructors return in register
  2660. Revision 1.152 2003/05/13 15:18:49 peter
  2661. * fixed various crashes
  2662. Revision 1.151 2003/05/11 21:37:03 peter
  2663. * moved implicit exception frame from ncgutil to psub
  2664. * constructor/destructor helpers moved from cobj/ncgutil to psub
  2665. Revision 1.150 2003/05/11 14:45:12 peter
  2666. * tloadnode does not support objectsymtable,withsymtable anymore
  2667. * withnode cleanup
  2668. * direct with rewritten to use temprefnode
  2669. Revision 1.149 2003/05/09 17:47:02 peter
  2670. * self moved to hidden parameter
  2671. * removed hdisposen,hnewn,selfn
  2672. Revision 1.148 2003/05/05 14:53:16 peter
  2673. * vs_hidden replaced by is_hidden boolean
  2674. Revision 1.147 2003/04/27 11:21:33 peter
  2675. * aktprocdef renamed to current_procinfo.procdef
  2676. * procinfo renamed to current_procinfo
  2677. * procinfo will now be stored in current_module so it can be
  2678. cleaned up properly
  2679. * gen_main_procsym changed to create_main_proc and release_main_proc
  2680. to also generate a tprocinfo structure
  2681. * fixed unit implicit initfinal
  2682. Revision 1.146 2003/04/27 09:08:44 jonas
  2683. * do callparatemp stuff only after the parameters have been firstpassed,
  2684. because some nodes are turned into calls during the firstpass
  2685. Revision 1.145 2003/04/27 07:29:50 peter
  2686. * current_procinfo.procdef cleanup, current_procdef is now always nil when parsing
  2687. a new procdef declaration
  2688. * aktprocsym removed
  2689. * lexlevel removed, use symtable.symtablelevel instead
  2690. * implicit init/final code uses the normal genentry/genexit
  2691. * funcret state checking updated for new funcret handling
  2692. Revision 1.144 2003/04/25 20:59:33 peter
  2693. * removed funcretn,funcretsym, function result is now in varsym
  2694. and aliases for result and function name are added using absolutesym
  2695. * vs_hidden parameter for funcret passed in parameter
  2696. * vs_hidden fixes
  2697. * writenode changed to printnode and released from extdebug
  2698. * -vp option added to generate a tree.log with the nodetree
  2699. * nicer printnode for statements, callnode
  2700. Revision 1.143 2002/04/25 20:15:39 florian
  2701. * block nodes within expressions shouldn't release the used registers,
  2702. fixed using a flag till the new rg is ready
  2703. Revision 1.142 2003/04/23 20:16:04 peter
  2704. + added currency support based on int64
  2705. + is_64bit for use in cg units instead of is_64bitint
  2706. * removed cgmessage from n386add, replace with internalerrors
  2707. Revision 1.141 2003/04/23 13:21:06 peter
  2708. * fix warning for calling constructor inside constructor
  2709. Revision 1.140 2003/04/23 12:35:34 florian
  2710. * fixed several issues with powerpc
  2711. + applied a patch from Jonas for nested function calls (PowerPC only)
  2712. * ...
  2713. Revision 1.139 2003/04/22 23:50:22 peter
  2714. * firstpass uses expectloc
  2715. * checks if there are differences between the expectloc and
  2716. location.loc from secondpass in EXTDEBUG
  2717. Revision 1.138 2003/04/22 09:53:33 peter
  2718. * fix insert_typeconv to handle new varargs which don't have a
  2719. paraitem set
  2720. Revision 1.137 2003/04/11 16:02:05 peter
  2721. * don't firstpass typen
  2722. Revision 1.136 2003/04/11 15:51:04 peter
  2723. * support subscript,vec for setting methodpointer varstate
  2724. Revision 1.135 2003/04/10 17:57:52 peter
  2725. * vs_hidden released
  2726. Revision 1.134 2003/04/07 11:58:22 jonas
  2727. * more vs_invisible fixes
  2728. Revision 1.133 2003/04/07 10:40:21 jonas
  2729. * fixed VS_HIDDEN for high parameter so it works again
  2730. Revision 1.132 2003/04/04 15:38:56 peter
  2731. * moved generic code from n386cal to ncgcal, i386 now also
  2732. uses the generic ncgcal
  2733. Revision 1.131 2003/03/17 18:54:23 peter
  2734. * fix missing self setting for method to procvar conversion in
  2735. tp_procvar mode
  2736. Revision 1.130 2003/03/17 16:54:41 peter
  2737. * support DefaultHandler and anonymous inheritance fixed
  2738. for message methods
  2739. Revision 1.129 2003/03/17 15:54:22 peter
  2740. * store symoptions also for procdef
  2741. * check symoptions (private,public) when calculating possible
  2742. overload candidates
  2743. Revision 1.128 2003/02/19 22:00:14 daniel
  2744. * Code generator converted to new register notation
  2745. - Horribily outdated todo.txt removed
  2746. Revision 1.127 2003/01/16 22:13:52 peter
  2747. * convert_l3 convertlevel added. This level is used for conversions
  2748. where information can be lost like converting widestring->ansistring
  2749. or dword->byte
  2750. Revision 1.126 2003/01/15 01:44:32 peter
  2751. * merged methodpointer fixes from 1.0.x
  2752. Revision 1.125 2003/01/12 17:52:07 peter
  2753. * only check for auto inherited in objectsymtable
  2754. Revision 1.124 2003/01/09 21:45:46 peter
  2755. * extended information about overloaded candidates when compiled
  2756. with EXTDEBUG
  2757. Revision 1.123 2002/12/26 18:24:33 jonas
  2758. * fixed check for whether or not a high parameter was already generated
  2759. * no type checking/conversions for invisible parameters
  2760. Revision 1.122 2002/12/15 22:50:00 florian
  2761. + some stuff for the new hidden parameter handling added
  2762. Revision 1.121 2002/12/15 21:34:15 peter
  2763. * give sign difference between ordinals a small penalty. This is
  2764. needed to get word->[longword|longint] working
  2765. Revision 1.120 2002/12/15 21:30:12 florian
  2766. * tcallnode.paraitem introduced, all references to defcoll removed
  2767. Revision 1.119 2002/12/15 20:59:58 peter
  2768. * fix crash with default parameters
  2769. Revision 1.118 2002/12/15 11:26:02 peter
  2770. * ignore vs_hidden parameters when choosing overloaded proc
  2771. Revision 1.117 2002/12/11 22:42:28 peter
  2772. * tcallnode.det_resulttype rewrite, merged code from nice_ncal and
  2773. the old code. The new code collects the information about possible
  2774. candidates only once resultting in much less calls to type compare
  2775. routines
  2776. Revision 1.116 2002/12/07 14:27:07 carl
  2777. * 3% memory optimization
  2778. * changed some types
  2779. + added type checking with different size for call node and for
  2780. parameters
  2781. Revision 1.115 2002/12/06 17:51:10 peter
  2782. * merged cdecl and array fixes
  2783. Revision 1.114 2002/12/06 16:56:58 peter
  2784. * only compile cs_fp_emulation support when cpufpuemu is defined
  2785. * define cpufpuemu for m68k only
  2786. Revision 1.113 2002/11/27 20:04:38 peter
  2787. * cdecl array of const fixes
  2788. Revision 1.112 2002/11/27 15:33:46 peter
  2789. * the never ending story of tp procvar hacks
  2790. Revision 1.111 2002/11/27 02:31:17 peter
  2791. * fixed inlinetree parsing in det_resulttype
  2792. Revision 1.110 2002/11/25 18:43:32 carl
  2793. - removed the invalid if <> checking (Delphi is strange on this)
  2794. + implemented abstract warning on instance creation of class with
  2795. abstract methods.
  2796. * some error message cleanups
  2797. Revision 1.109 2002/11/25 17:43:17 peter
  2798. * splitted defbase in defutil,symutil,defcmp
  2799. * merged isconvertable and is_equal into compare_defs(_ext)
  2800. * made operator search faster by walking the list only once
  2801. Revision 1.108 2002/11/18 17:31:54 peter
  2802. * pass proccalloption to ret_in_xxx and push_xxx functions
  2803. Revision 1.107 2002/11/15 01:58:50 peter
  2804. * merged changes from 1.0.7 up to 04-11
  2805. - -V option for generating bug report tracing
  2806. - more tracing for option parsing
  2807. - errors for cdecl and high()
  2808. - win32 import stabs
  2809. - win32 records<=8 are returned in eax:edx (turned off by default)
  2810. - heaptrc update
  2811. - more info for temp management in .s file with EXTDEBUG
  2812. Revision 1.106 2002/10/14 18:20:30 carl
  2813. * var parameter checking for classes and interfaces in Delphi mode
  2814. Revision 1.105 2002/10/06 21:02:17 peter
  2815. * fixed limit checking for qword
  2816. Revision 1.104 2002/10/05 15:15:45 peter
  2817. * Write unknwon compiler proc using Comment and only in Extdebug
  2818. Revision 1.103 2002/10/05 12:43:25 carl
  2819. * fixes for Delphi 6 compilation
  2820. (warning : Some features do not work under Delphi)
  2821. Revision 1.102 2002/10/05 00:48:57 peter
  2822. * support inherited; support for overload as it is handled by
  2823. delphi. This is only for delphi mode as it is working is
  2824. undocumented and hard to predict what is done
  2825. Revision 1.101 2002/09/16 14:11:12 peter
  2826. * add argument to equal_paras() to support default values or not
  2827. Revision 1.100 2002/09/15 17:49:59 peter
  2828. * don't have strict var parameter checking for procedures in the
  2829. system unit
  2830. Revision 1.99 2002/09/09 19:30:34 peter
  2831. * don't allow convertable parameters for var and out parameters in
  2832. delphi and tp mode
  2833. Revision 1.98 2002/09/07 15:25:02 peter
  2834. * old logs removed and tabs fixed
  2835. Revision 1.97 2002/09/07 12:16:05 carl
  2836. * second part bug report 1996 fix, testrange in cordconstnode
  2837. only called if option is set (also make parsing a tiny faster)
  2838. Revision 1.96 2002/09/05 14:53:41 peter
  2839. * fixed old callnode.det_resulttype code
  2840. * old ncal code is default again
  2841. Revision 1.95 2002/09/03 21:32:49 daniel
  2842. * Small bugfix for procdef selection
  2843. Revision 1.94 2002/09/03 19:27:22 daniel
  2844. * Activated new ncal code
  2845. Revision 1.93 2002/09/03 16:26:26 daniel
  2846. * Make Tprocdef.defs protected
  2847. Revision 1.92 2002/09/01 13:28:37 daniel
  2848. - write_access fields removed in favor of a flag
  2849. Revision 1.91 2002/09/01 12:14:15 peter
  2850. * remove debug line
  2851. * containself methods can be called directly
  2852. Revision 1.90 2002/09/01 08:01:16 daniel
  2853. * Removed sets from Tcallnode.det_resulttype
  2854. + Added read/write notifications of variables. These will be usefull
  2855. for providing information for several optimizations. For example
  2856. the value of the loop variable of a for loop does matter is the
  2857. variable is read after the for loop, but if it's no longer used
  2858. or written, it doesn't matter and this can be used to optimize
  2859. the loop code generation.
  2860. Revision 1.89 2002/08/23 16:13:16 peter
  2861. * also firstpass funcretrefnode if available. This was breaking the
  2862. asnode compilerproc code
  2863. Revision 1.88 2002/08/20 10:31:26 daniel
  2864. * Tcallnode.det_resulttype rewritten
  2865. Revision 1.87 2002/08/19 19:36:42 peter
  2866. * More fixes for cross unit inlining, all tnodes are now implemented
  2867. * Moved pocall_internconst to po_internconst because it is not a
  2868. calling type at all and it conflicted when inlining of these small
  2869. functions was requested
  2870. Revision 1.86 2002/08/17 22:09:44 florian
  2871. * result type handling in tcgcal.pass_2 overhauled
  2872. * better tnode.dowrite
  2873. * some ppc stuff fixed
  2874. Revision 1.85 2002/08/17 09:23:34 florian
  2875. * first part of current_procinfo rewrite
  2876. Revision 1.84 2002/08/16 14:24:57 carl
  2877. * issameref() to test if two references are the same (then emit no opcodes)
  2878. + ret_in_reg to replace ret_in_acc
  2879. (fix some register allocation bugs at the same time)
  2880. + save_std_register now has an extra parameter which is the
  2881. usedinproc registers
  2882. Revision 1.83 2002/07/20 11:57:53 florian
  2883. * types.pas renamed to defbase.pas because D6 contains a types
  2884. unit so this would conflicts if D6 programms are compiled
  2885. + Willamette/SSE2 instructions to assembler added
  2886. Revision 1.82 2002/07/19 11:41:35 daniel
  2887. * State tracker work
  2888. * The whilen and repeatn are now completely unified into whilerepeatn. This
  2889. allows the state tracker to change while nodes automatically into
  2890. repeat nodes.
  2891. * Resulttypepass improvements to the notn. 'not not a' is optimized away and
  2892. 'not(a>b)' is optimized into 'a<=b'.
  2893. * Resulttypepass improvements to the whilerepeatn. 'while not a' is optimized
  2894. by removing the notn and later switchting the true and falselabels. The
  2895. same is done with 'repeat until not a'.
  2896. Revision 1.81 2002/07/15 18:03:14 florian
  2897. * readded removed changes
  2898. Revision 1.79 2002/07/11 14:41:27 florian
  2899. * start of the new generic parameter handling
  2900. Revision 1.80 2002/07/14 18:00:43 daniel
  2901. + Added the beginning of a state tracker. This will track the values of
  2902. variables through procedures and optimize things away.
  2903. Revision 1.78 2002/07/04 20:43:00 florian
  2904. * first x86-64 patches
  2905. }