ncal.pas 149 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690
  1. {
  2. This file implements the node for sub procedure calling.
  3. Copyright (c) 1998-2002 by Florian Klaempfl
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. ****************************************************************************
  16. }
  17. unit ncal;
  18. {$i fpcdefs.inc}
  19. interface
  20. uses
  21. cutils,cclasses,
  22. globtype,constexp,
  23. paramgr,parabase,
  24. node,nbas,nutils,
  25. {$ifdef state_tracking}
  26. nstate,
  27. {$endif state_tracking}
  28. symbase,symtype,symsym,symdef,symtable;
  29. type
  30. tcallnodeflag = (
  31. cnf_typedefset,
  32. cnf_return_value_used,
  33. cnf_do_inline,
  34. cnf_inherited,
  35. cnf_anon_inherited,
  36. cnf_new_call,
  37. cnf_dispose_call,
  38. cnf_member_call, { called with implicit methodpointer tree }
  39. cnf_uses_varargs, { varargs are used in the declaration }
  40. cnf_create_failed, { exception thrown in constructor -> don't call beforedestruction }
  41. cnf_objc_processed, { the procedure name has been set to the appropriate objc_msgSend* variant -> don't process again }
  42. cnf_objc_id_call { the procedure is a member call via id -> any ObjC method of any ObjC type in scope is fair game }
  43. );
  44. tcallnodeflags = set of tcallnodeflag;
  45. tcallparanode = class;
  46. tcallnode = class(tbinarynode)
  47. private
  48. { number of parameters passed from the source, this does not include the hidden parameters }
  49. paralength : smallint;
  50. function is_simple_para_load(p:tnode; may_be_in_reg: boolean):boolean;
  51. procedure maybe_load_in_temp(var p:tnode);
  52. function gen_high_tree(var p:tnode;paradef:tdef):tnode;
  53. function gen_self_tree_methodpointer:tnode;
  54. function gen_self_tree:tnode;
  55. function gen_vmt_tree:tnode;
  56. procedure gen_hidden_parameters;
  57. function funcret_can_be_reused:boolean;
  58. procedure maybe_create_funcret_node;
  59. procedure bind_parasym;
  60. procedure add_init_statement(n:tnode);
  61. procedure add_done_statement(n:tnode);
  62. procedure convert_carg_array_of_const;
  63. procedure order_parameters;
  64. procedure check_inlining;
  65. function pass1_normal:tnode;
  66. procedure register_created_object_types;
  67. protected
  68. procedure objc_convert_to_message_send;virtual;
  69. private
  70. { inlining support }
  71. inlinelocals : TFPObjectList;
  72. inlineinitstatement,
  73. inlinecleanupstatement : tstatementnode;
  74. procedure createinlineparas;
  75. function replaceparaload(var n: tnode; arg: pointer): foreachnoderesult;
  76. procedure createlocaltemps(p:TObject;arg:pointer);
  77. function optimize_funcret_assignment(inlineblock: tblocknode): tnode;
  78. function pass1_inline:tnode;
  79. protected
  80. pushedparasize : longint;
  81. { Objective-C support: force the call node to call the routine with
  82. this name rather than the name of symtableprocentry (don't store
  83. to ppu, is set while processing the node) }
  84. fobjcforcedprocname: pshortstring;
  85. public
  86. { the symbol containing the definition of the procedure }
  87. { to call }
  88. symtableprocentry : tprocsym;
  89. symtableprocentryderef : tderef;
  90. { symtable where the entry was found, needed for with support }
  91. symtableproc : TSymtable;
  92. { the definition of the procedure to call }
  93. procdefinition : tabstractprocdef;
  94. procdefinitionderef : tderef;
  95. { tree that contains the pointer to the object for this method }
  96. methodpointer : tnode;
  97. { initialize/finalization of temps }
  98. callinitblock,
  99. callcleanupblock : tblocknode;
  100. { function return node for initialized types or supplied return variable.
  101. When the result is passed in a parameter then it is set to nil }
  102. funcretnode : tnode;
  103. { varargs parasyms }
  104. varargsparas : tvarargsparalist;
  105. { separately specified resultdef for some compilerprocs (e.g. }
  106. { you can't have a function with an "array of char" resultdef }
  107. { the RTL) (JM) }
  108. typedef: tdef;
  109. callnodeflags : tcallnodeflags;
  110. { only the processor specific nodes need to override this }
  111. { constructor }
  112. constructor create(l:tnode; v : tprocsym;st : TSymtable; mp: tnode; callflags:tcallnodeflags);virtual;
  113. constructor create_procvar(l,r:tnode);
  114. constructor createintern(const name: string; params: tnode);
  115. constructor createinternfromunit(const fromunit, procname: string; params: tnode);
  116. constructor createinternres(const name: string; params: tnode; res:tdef);
  117. constructor createinternresfromunit(const fromunit, procname: string; params: tnode; res:tdef);
  118. constructor createinternreturn(const name: string; params: tnode; returnnode : tnode);
  119. destructor destroy;override;
  120. constructor ppuload(t:tnodetype;ppufile:tcompilerppufile);override;
  121. procedure ppuwrite(ppufile:tcompilerppufile);override;
  122. procedure buildderefimpl;override;
  123. procedure derefimpl;override;
  124. function dogetcopy : tnode;override;
  125. { Goes through all symbols in a class and subclasses and calls
  126. verify abstract for each .
  127. }
  128. procedure verifyabstractcalls;
  129. { called for each definition in a class and verifies if a method
  130. is abstract or not, if it is abstract, give out a warning
  131. }
  132. procedure verifyabstract(sym:TObject;arg:pointer);
  133. procedure insertintolist(l : tnodelist);override;
  134. function pass_1 : tnode;override;
  135. function pass_typecheck:tnode;override;
  136. {$ifdef state_tracking}
  137. function track_state_pass(exec_known:boolean):boolean;override;
  138. {$endif state_tracking}
  139. function docompare(p: tnode): boolean; override;
  140. procedure printnodedata(var t:text);override;
  141. function para_count:longint;
  142. function required_para_count:longint;
  143. { checks if there are any parameters which end up at the stack, i.e.
  144. which have LOC_REFERENCE and set pi_has_stackparameter if this applies }
  145. procedure check_stack_parameters;
  146. { force the name of the to-be-called routine to a particular string,
  147. used for Objective-C message sending. }
  148. property parameters : tnode read left write left;
  149. private
  150. AbstractMethodsList : TFPHashList;
  151. end;
  152. tcallnodeclass = class of tcallnode;
  153. tcallparaflag = (
  154. cpf_is_colon_para,
  155. cpf_varargs_para { belongs this para to varargs }
  156. );
  157. tcallparaflags = set of tcallparaflag;
  158. tcallparanode = class(ttertiarynode)
  159. public
  160. callparaflags : tcallparaflags;
  161. parasym : tparavarsym;
  162. { only the processor specific nodes need to override this }
  163. { constructor }
  164. constructor create(expr,next : tnode);virtual;
  165. destructor destroy;override;
  166. constructor ppuload(t:tnodetype;ppufile:tcompilerppufile);override;
  167. procedure ppuwrite(ppufile:tcompilerppufile);override;
  168. function dogetcopy : tnode;override;
  169. procedure insertintolist(l : tnodelist);override;
  170. function pass_typecheck : tnode;override;
  171. function pass_1 : tnode;override;
  172. procedure get_paratype;
  173. procedure firstcallparan;
  174. procedure insert_typeconv;
  175. procedure secondcallparan;virtual;abstract;
  176. function docompare(p: tnode): boolean; override;
  177. procedure printnodetree(var t:text);override;
  178. { returns whether a parameter contains a type conversion from }
  179. { a refcounted into a non-refcounted type }
  180. function can_be_inlined: boolean;
  181. property nextpara : tnode read right write right;
  182. property parametername : tnode read third write third;
  183. end;
  184. tcallparanodeclass = class of tcallparanode;
  185. function reverseparameters(p: tcallparanode): tcallparanode;
  186. function translate_disp_call(selfnode,parametersnode,putvalue : tnode;methodname : ansistring;dispid : longint;resultdef : tdef) : tnode;
  187. var
  188. ccallnode : tcallnodeclass;
  189. ccallparanode : tcallparanodeclass;
  190. { Current callnode, this is needed for having a link
  191. between the callparanodes and the callnode they belong to }
  192. aktcallnode : tcallnode;
  193. implementation
  194. uses
  195. systems,
  196. verbose,globals,
  197. symconst,defutil,defcmp,
  198. htypechk,pass_1,
  199. ncnv,nld,ninl,nadd,ncon,nmem,nset,nobjc,
  200. objcutil,
  201. procinfo,cpuinfo,
  202. cgbase,
  203. wpobase
  204. ;
  205. type
  206. tobjectinfoitem = class(tlinkedlistitem)
  207. objinfo : tobjectdef;
  208. constructor create(def : tobjectdef);
  209. end;
  210. {****************************************************************************
  211. HELPERS
  212. ****************************************************************************}
  213. function reverseparameters(p: tcallparanode): tcallparanode;
  214. var
  215. hp1, hp2: tcallparanode;
  216. begin
  217. hp1:=nil;
  218. while assigned(p) do
  219. begin
  220. { pull out }
  221. hp2:=p;
  222. p:=tcallparanode(p.right);
  223. { pull in }
  224. hp2.right:=hp1;
  225. hp1:=hp2;
  226. end;
  227. reverseparameters:=hp1;
  228. end;
  229. function translate_disp_call(selfnode,parametersnode,putvalue : tnode;methodname : ansistring;dispid : longint;resultdef : tdef) : tnode;
  230. const
  231. DISPATCH_METHOD = $1;
  232. DISPATCH_PROPERTYGET = $2;
  233. DISPATCH_PROPERTYPUT = $4;
  234. DISPATCH_PROPERTYPUTREF = $8;
  235. DISPATCH_CONSTRUCT = $4000;
  236. var
  237. statements : tstatementnode;
  238. result_data,
  239. params : ttempcreatenode;
  240. paramssize : cardinal;
  241. calldescnode : tdataconstnode;
  242. resultvalue : tnode;
  243. para : tcallparanode;
  244. currargpos,
  245. namedparacount,
  246. paracount : longint;
  247. assignmenttype,
  248. vardatadef,
  249. pvardatadef : tdef;
  250. dispatchbyref : boolean;
  251. useresult: boolean;
  252. restype: byte;
  253. calldesc : packed record
  254. calltype,argcount,namedargcount : byte;
  255. { size of argtypes is unknown at compile time
  256. so this is basically a dummy }
  257. argtypes : array[0..255] of byte;
  258. { argtypes is followed by method name
  259. names of named parameters, each being
  260. a zero terminated string
  261. }
  262. end;
  263. names : ansistring;
  264. dispintfinvoke,
  265. variantdispatch : boolean;
  266. procedure increase_paramssize;
  267. begin
  268. { for now we pass everything by reference
  269. case para.left.resultdef.typ of
  270. variantdef:
  271. inc(paramssize,para.left.resultdef.size);
  272. else
  273. }
  274. inc(paramssize,voidpointertype.size);
  275. {
  276. end;
  277. }
  278. end;
  279. function getvardef(sourcedef: TDef): longint;
  280. begin
  281. if is_ansistring(sourcedef) then
  282. result:=varStrArg
  283. else
  284. if is_interface(sourcedef) then
  285. begin
  286. { distinct IDispatch and IUnknown interfaces }
  287. if tobjectdef(sourcedef).is_related(tobjectdef(search_system_type('IDISPATCH').typedef)) then
  288. result:=vardispatch
  289. else
  290. result:=varunknown;
  291. end
  292. else
  293. result:=sourcedef.getvardef;
  294. end;
  295. begin
  296. variantdispatch:=selfnode.resultdef.typ=variantdef;
  297. dispintfinvoke:=not(variantdispatch);
  298. result:=internalstatements(statements);
  299. fillchar(calldesc,sizeof(calldesc),0);
  300. useresult := assigned(resultdef) and not is_void(resultdef);
  301. if useresult then
  302. begin
  303. { get temp for the result }
  304. result_data:=ctempcreatenode.create(colevarianttype,colevarianttype.size,tt_persistent,true);
  305. addstatement(statements,result_data);
  306. end;
  307. { first, count and check parameters }
  308. para:=tcallparanode(parametersnode);
  309. paracount:=0;
  310. namedparacount:=0;
  311. paramssize:=0;
  312. while assigned(para) do
  313. begin
  314. typecheckpass(para.left);
  315. { skip non parameters }
  316. if para.left.nodetype=nothingn then
  317. begin
  318. para:=tcallparanode(para.nextpara);
  319. continue;
  320. end;
  321. inc(paracount);
  322. { insert some extra casts }
  323. if is_constintnode(para.left) and not(is_64bitint(para.left.resultdef)) then
  324. begin
  325. para.left:=ctypeconvnode.create_internal(para.left,s32inttype);
  326. typecheckpass(para.left);
  327. end
  328. else if para.left.nodetype=stringconstn then
  329. begin
  330. para.left:=ctypeconvnode.create_internal(para.left,cwidestringtype);
  331. typecheckpass(para.left);
  332. end
  333. { force automatable boolean type }
  334. else if is_boolean(para.left.resultdef) then
  335. begin
  336. para.left:=ctypeconvnode.create_internal(para.left,bool16type);
  337. typecheckpass(para.left);
  338. end
  339. { force automatable float type }
  340. else if is_extended(para.left.resultdef)
  341. and (current_settings.fputype<>fpu_none) then
  342. begin
  343. para.left:=ctypeconvnode.create_internal(para.left,s64floattype);
  344. typecheckpass(para.left);
  345. end;
  346. if assigned(para.parametername) then
  347. begin
  348. typecheckpass(para.left);
  349. inc(namedparacount);
  350. end;
  351. if para.left.nodetype<>nothingn then
  352. if not is_automatable(para.left.resultdef) then
  353. CGMessagePos1(para.left.fileinfo,type_e_not_automatable,para.left.resultdef.typename);
  354. { we've to know the parameter size to allocate the temp. space }
  355. increase_paramssize;
  356. para:=tcallparanode(para.nextpara);
  357. end;
  358. if assigned(putvalue) then
  359. calldesc.calltype:=DISPATCH_PROPERTYPUT
  360. else
  361. calldesc.calltype:=DISPATCH_METHOD;
  362. calldesc.argcount:=paracount;
  363. { allocate space }
  364. params:=ctempcreatenode.create(voidtype,paramssize,tt_persistent,true);
  365. addstatement(statements,params);
  366. calldescnode:=cdataconstnode.create;
  367. if dispintfinvoke then
  368. begin
  369. { dispid }
  370. calldescnode.append(dispid,sizeof(dispid));
  371. { restype }
  372. if useresult then
  373. restype:=getvardef(resultdef)
  374. else
  375. restype:=0;
  376. calldescnode.append(restype,sizeof(restype));
  377. end;
  378. { build up parameters and description }
  379. para:=tcallparanode(parametersnode);
  380. currargpos:=0;
  381. paramssize:=0;
  382. names := '';
  383. while assigned(para) do
  384. begin
  385. { skip non parameters }
  386. if para.left.nodetype=nothingn then
  387. begin
  388. para:=tcallparanode(para.nextpara);
  389. continue;
  390. end;
  391. if assigned(para.parametername) then
  392. begin
  393. if para.parametername.nodetype=stringconstn then
  394. names:=names+tstringconstnode(para.parametername).value_str+#0
  395. else
  396. internalerror(200611041);
  397. end;
  398. dispatchbyref:=(assigned(para.parasym) and (para.parasym.varspez in [vs_var,vs_out])) or
  399. (para.left.resultdef.typ in [variantdef]);
  400. { assign the argument/parameter to the temporary location }
  401. if dispatchbyref then
  402. addstatement(statements,cassignmentnode.create(
  403. ctypeconvnode.create_internal(cderefnode.create(caddnode.create(addn,
  404. caddrnode.create(ctemprefnode.create(params)),
  405. cordconstnode.create(qword(paramssize),ptruinttype,false)
  406. )),voidpointertype),
  407. ctypeconvnode.create_internal(caddrnode.create_internal(para.left),voidpointertype)))
  408. else
  409. begin
  410. case para.left.resultdef.size of
  411. 1..4:
  412. assignmenttype:=u32inttype;
  413. 8:
  414. assignmenttype:=u64inttype;
  415. else
  416. internalerror(2007042801);
  417. end;
  418. addstatement(statements,cassignmentnode.create(
  419. ctypeconvnode.create_internal(cderefnode.create(caddnode.create(addn,
  420. caddrnode.create(ctemprefnode.create(params)),
  421. cordconstnode.create(paramssize,ptruinttype,false)
  422. )),assignmenttype),
  423. ctypeconvnode.create_internal(para.left,assignmenttype)));
  424. end;
  425. calldesc.argtypes[currargpos]:=getvardef(para.left.resultdef);
  426. if dispatchbyref then
  427. calldesc.argtypes[currargpos]:=calldesc.argtypes[currargpos] or $80;
  428. increase_paramssize;
  429. para.left:=nil;
  430. inc(currargpos);
  431. para:=tcallparanode(para.nextpara);
  432. end;
  433. { old argument list skeleton isn't needed anymore }
  434. parametersnode.free;
  435. calldescnode.append(calldesc,3+calldesc.argcount);
  436. pvardatadef:=tpointerdef(search_system_type('PVARDATA').typedef);
  437. if useresult then
  438. resultvalue:=caddrnode.create(ctemprefnode.create(result_data))
  439. else
  440. resultvalue:=cpointerconstnode.create(0,voidpointertype);
  441. if variantdispatch then
  442. begin
  443. methodname:=methodname+#0;
  444. calldescnode.append(pointer(methodname)^,length(methodname));
  445. calldescnode.append(pointer(names)^,length(names));
  446. { actual call }
  447. vardatadef:=trecorddef(search_system_type('TVARDATA').typedef);
  448. addstatement(statements,ccallnode.createintern('fpc_dispinvoke_variant',
  449. { parameters are passed always reverted, i.e. the last comes first }
  450. ccallparanode.create(caddrnode.create(ctemprefnode.create(params)),
  451. ccallparanode.create(caddrnode.create(calldescnode),
  452. ccallparanode.create(ctypeconvnode.create_internal(selfnode,vardatadef),
  453. ccallparanode.create(ctypeconvnode.create_internal(resultvalue,pvardatadef),nil)))))
  454. );
  455. end
  456. else
  457. begin
  458. addstatement(statements,ccallnode.createintern('fpc_dispatch_by_id',
  459. { parameters are passed always reverted, i.e. the last comes first }
  460. ccallparanode.create(caddrnode.create(ctemprefnode.create(params)),
  461. ccallparanode.create(caddrnode.create(calldescnode),
  462. ccallparanode.create(ctypeconvnode.create_internal(selfnode,voidpointertype),
  463. ccallparanode.create(ctypeconvnode.create_internal(resultvalue,pvardatadef),nil)))))
  464. );
  465. end;
  466. addstatement(statements,ctempdeletenode.create(params));
  467. if useresult then
  468. begin
  469. { clean up }
  470. addstatement(statements,ctempdeletenode.create_normal_temp(result_data));
  471. addstatement(statements,ctemprefnode.create(result_data));
  472. end;
  473. end;
  474. {****************************************************************************
  475. TOBJECTINFOITEM
  476. ****************************************************************************}
  477. constructor tobjectinfoitem.create(def : tobjectdef);
  478. begin
  479. inherited create;
  480. objinfo := def;
  481. end;
  482. {****************************************************************************
  483. TCALLPARANODE
  484. ****************************************************************************}
  485. constructor tcallparanode.create(expr,next : tnode);
  486. begin
  487. inherited create(callparan,expr,next,nil);
  488. if not assigned(expr) then
  489. internalerror(200305091);
  490. expr.fileinfo:=fileinfo;
  491. callparaflags:=[];
  492. if expr.nodetype = typeconvn then
  493. ttypeconvnode(expr).warn_pointer_to_signed:=false;
  494. end;
  495. destructor tcallparanode.destroy;
  496. begin
  497. inherited destroy;
  498. end;
  499. constructor tcallparanode.ppuload(t:tnodetype;ppufile:tcompilerppufile);
  500. begin
  501. inherited ppuload(t,ppufile);
  502. ppufile.getsmallset(callparaflags);
  503. end;
  504. procedure tcallparanode.ppuwrite(ppufile:tcompilerppufile);
  505. begin
  506. inherited ppuwrite(ppufile);
  507. ppufile.putsmallset(callparaflags);
  508. end;
  509. function tcallparanode.dogetcopy : tnode;
  510. var
  511. n : tcallparanode;
  512. begin
  513. n:=tcallparanode(inherited dogetcopy);
  514. n.callparaflags:=callparaflags;
  515. n.parasym:=parasym;
  516. result:=n;
  517. end;
  518. procedure tcallparanode.insertintolist(l : tnodelist);
  519. begin
  520. end;
  521. function tcallparanode.pass_typecheck : tnode;
  522. begin
  523. { need to use get_paratype }
  524. internalerror(200709251);
  525. result:=nil;
  526. end;
  527. function tcallparanode.pass_1 : tnode;
  528. begin
  529. { need to use firstcallparan }
  530. internalerror(200709252);
  531. result:=nil;
  532. end;
  533. procedure tcallparanode.get_paratype;
  534. var
  535. old_array_constructor : boolean;
  536. begin
  537. if assigned(right) then
  538. tcallparanode(right).get_paratype;
  539. old_array_constructor:=allow_array_constructor;
  540. allow_array_constructor:=true;
  541. typecheckpass(left);
  542. allow_array_constructor:=old_array_constructor;
  543. if codegenerror then
  544. resultdef:=generrordef
  545. else
  546. resultdef:=left.resultdef;
  547. end;
  548. procedure tcallparanode.firstcallparan;
  549. begin
  550. if assigned(right) then
  551. tcallparanode(right).firstcallparan;
  552. if not assigned(left.resultdef) then
  553. get_paratype;
  554. firstpass(left);
  555. expectloc:=left.expectloc;
  556. end;
  557. procedure tcallparanode.insert_typeconv;
  558. var
  559. olddef : tdef;
  560. hp : tnode;
  561. block : tblocknode;
  562. statements : tstatementnode;
  563. temp : ttempcreatenode;
  564. begin
  565. { Be sure to have the resultdef }
  566. if not assigned(left.resultdef) then
  567. typecheckpass(left);
  568. if (left.nodetype<>nothingn) then
  569. begin
  570. { Convert tp procvars, this is needs to be done
  571. here to make the change permanent. in the overload
  572. choosing the changes are only made temporarily }
  573. if (left.resultdef.typ=procvardef) and
  574. not(parasym.vardef.typ in [procvardef,formaldef]) then
  575. begin
  576. if maybe_call_procvar(left,true) then
  577. resultdef:=left.resultdef;
  578. end;
  579. { Remove implicitly inserted typecast to pointer for
  580. @procvar in macpas }
  581. if (m_mac_procvar in current_settings.modeswitches) and
  582. (parasym.vardef.typ=procvardef) and
  583. (left.nodetype=typeconvn) and
  584. is_voidpointer(left.resultdef) and
  585. (ttypeconvnode(left).left.nodetype=typeconvn) and
  586. (ttypeconvnode(ttypeconvnode(left).left).convtype=tc_proc_2_procvar) then
  587. begin
  588. hp:=left;
  589. left:=ttypeconvnode(left).left;
  590. ttypeconvnode(hp).left:=nil;
  591. hp.free;
  592. end;
  593. { Handle varargs and hidden paras directly, no typeconvs or }
  594. { pass_typechecking needed }
  595. if (cpf_varargs_para in callparaflags) then
  596. begin
  597. { this should only happen vor C varargs }
  598. { the necessary conversions have already been performed in }
  599. { tarrayconstructornode.insert_typeconvs }
  600. set_varstate(left,vs_read,[vsf_must_be_valid]);
  601. insert_varargstypeconv(left,true);
  602. resultdef:=left.resultdef;
  603. { also update parasym type to get the correct parameter location
  604. for the new types }
  605. parasym.vardef:=left.resultdef;
  606. end
  607. else
  608. if (vo_is_hidden_para in parasym.varoptions) then
  609. begin
  610. set_varstate(left,vs_read,[vsf_must_be_valid]);
  611. resultdef:=left.resultdef;
  612. end
  613. else
  614. begin
  615. { Do we need arrayconstructor -> set conversion, then insert
  616. it here before the arrayconstructor node breaks the tree
  617. with its conversions of enum->ord }
  618. if (left.nodetype=arrayconstructorn) and
  619. (parasym.vardef.typ=setdef) then
  620. inserttypeconv(left,parasym.vardef);
  621. { set some settings needed for arrayconstructor }
  622. if is_array_constructor(left.resultdef) then
  623. begin
  624. if left.nodetype<>arrayconstructorn then
  625. internalerror(200504041);
  626. if is_array_of_const(parasym.vardef) then
  627. begin
  628. { force variant array }
  629. include(left.flags,nf_forcevaria);
  630. end
  631. else
  632. begin
  633. include(left.flags,nf_novariaallowed);
  634. { now that the resultting type is know we can insert the required
  635. typeconvs for the array constructor }
  636. if parasym.vardef.typ=arraydef then
  637. tarrayconstructornode(left).force_type(tarraydef(parasym.vardef).elementdef);
  638. end;
  639. end;
  640. { check if local proc/func is assigned to procvar }
  641. if left.resultdef.typ=procvardef then
  642. test_local_to_procvar(tprocvardef(left.resultdef),parasym.vardef);
  643. { test conversions }
  644. if not(is_shortstring(left.resultdef) and
  645. is_shortstring(parasym.vardef)) and
  646. (parasym.vardef.typ<>formaldef) and
  647. not(parasym.univpara) then
  648. begin
  649. { Process open parameters }
  650. if paramanager.push_high_param(parasym.varspez,parasym.vardef,aktcallnode.procdefinition.proccalloption) then
  651. begin
  652. { insert type conv but hold the ranges of the array }
  653. olddef:=left.resultdef;
  654. inserttypeconv(left,parasym.vardef);
  655. left.resultdef:=olddef;
  656. end
  657. else
  658. begin
  659. check_ranges(left.fileinfo,left,parasym.vardef);
  660. inserttypeconv(left,parasym.vardef);
  661. end;
  662. if codegenerror then
  663. exit;
  664. end;
  665. { truncate shortstring value parameters at the caller side if }
  666. { they are passed by value (if passed by reference, then the }
  667. { callee will truncate when copying in the string) }
  668. { This happens e.g. on x86_64 for small strings }
  669. if is_shortstring(left.resultdef) and
  670. is_shortstring(parasym.vardef) and
  671. (parasym.varspez=vs_value) and
  672. not paramanager.push_addr_param(parasym.varspez,parasym.vardef,
  673. aktcallnode.procdefinition.proccalloption) and
  674. ((is_open_string(left.resultdef) and
  675. (tstringdef(parasym.vardef).len < 255)) or
  676. (not is_open_string(left.resultdef) and
  677. { when a stringconstn is typeconverted, then only its }
  678. { def is modified, not the contents (needed because in }
  679. { Delphi/TP, if you pass a longer string to a const }
  680. { parameter, then the callee has to see this longer }
  681. { string) }
  682. (((left.nodetype<>stringconstn) and
  683. (tstringdef(parasym.vardef).len<tstringdef(left.resultdef).len)) or
  684. ((left.nodetype=stringconstn) and
  685. (tstringdef(parasym.vardef).len<tstringconstnode(left).len))))) then
  686. begin
  687. block:=internalstatements(statements);
  688. { temp for the new string }
  689. temp:=ctempcreatenode.create(parasym.vardef,parasym.vardef.size,
  690. tt_persistent,true);
  691. addstatement(statements,temp);
  692. { assign parameter to temp }
  693. addstatement(statements,cassignmentnode.create(ctemprefnode.create(temp),left));
  694. left:=nil;
  695. { release temp after next use }
  696. addstatement(statements,ctempdeletenode.create_normal_temp(temp));
  697. addstatement(statements,ctemprefnode.create(temp));
  698. typecheckpass(tnode(block));
  699. left:=block;
  700. end;
  701. { check var strings }
  702. if (cs_strict_var_strings in current_settings.localswitches) and
  703. is_shortstring(left.resultdef) and
  704. is_shortstring(parasym.vardef) and
  705. (parasym.varspez in [vs_out,vs_var]) and
  706. not(is_open_string(parasym.vardef)) and
  707. not(equal_defs(left.resultdef,parasym.vardef)) then
  708. begin
  709. CGMessagePos(left.fileinfo,type_e_strict_var_string_violation);
  710. end;
  711. { passing a value to an "univ" parameter implies an explicit
  712. typecast to the parameter type. Must be done before the
  713. valid_for_var() check, since the typecast can result in
  714. an invalid lvalue in case of var/out parameters. }
  715. if (parasym.univpara) then
  716. begin
  717. { load procvar if a procedure is passed }
  718. if ((m_tp_procvar in current_settings.modeswitches) or
  719. (m_mac_procvar in current_settings.modeswitches)) and
  720. (left.nodetype=calln) and
  721. (is_void(left.resultdef)) then
  722. begin
  723. load_procvar_from_calln(left);
  724. { load_procvar_from_calln() creates a loadn for a
  725. a procedure, which means that the type conversion
  726. below will type convert the first instruction
  727. bytes of the procedure -> convert to a procvar }
  728. left:=ctypeconvnode.create_proc_to_procvar(left);
  729. typecheckpass(left);
  730. end;
  731. inserttypeconv_explicit(left,parasym.vardef);
  732. end;
  733. { Handle formal parameters separate }
  734. if (parasym.vardef.typ=formaldef) then
  735. begin
  736. { load procvar if a procedure is passed }
  737. if ((m_tp_procvar in current_settings.modeswitches) or
  738. (m_mac_procvar in current_settings.modeswitches)) and
  739. (left.nodetype=calln) and
  740. (is_void(left.resultdef)) then
  741. load_procvar_from_calln(left);
  742. case parasym.varspez of
  743. vs_var,
  744. vs_out :
  745. begin
  746. if not valid_for_formal_var(left,true) then
  747. CGMessagePos(left.fileinfo,parser_e_illegal_parameter_list);
  748. end;
  749. vs_const :
  750. begin
  751. if not valid_for_formal_const(left,true) then
  752. CGMessagePos(left.fileinfo,parser_e_illegal_parameter_list);
  753. end;
  754. end;
  755. end
  756. else
  757. begin
  758. { check if the argument is allowed }
  759. if (parasym.varspez in [vs_out,vs_var]) then
  760. valid_for_var(left,true);
  761. end;
  762. if parasym.varspez in [vs_var,vs_out] then
  763. set_unique(left);
  764. { When the address needs to be pushed then the register is
  765. not regable. Exception is when the location is also a var
  766. parameter and we can pass the address transparently (but
  767. that is handled by make_not_regable if ra_addr_regable is
  768. passed, and make_not_regable always needs to called for
  769. the ra_addr_taken info for non-invisble parameters) }
  770. if (
  771. not(
  772. (vo_is_hidden_para in parasym.varoptions) and
  773. (left.resultdef.typ in [pointerdef,classrefdef])
  774. ) and
  775. paramanager.push_addr_param(parasym.varspez,parasym.vardef,
  776. aktcallnode.procdefinition.proccalloption)
  777. ) then
  778. { pushing the address of a variable to take the place of a temp }
  779. { as the complex function result of a function does not make its }
  780. { address escape the current block, as the "address of the }
  781. { function result" is not something which can be stored }
  782. { persistently by the callee (it becomes invalid when the callee }
  783. { returns) }
  784. if not(vo_is_funcret in parasym.varoptions) then
  785. make_not_regable(left,[ra_addr_regable,ra_addr_taken])
  786. else
  787. make_not_regable(left,[ra_addr_regable]);
  788. case parasym.varspez of
  789. vs_out :
  790. begin
  791. { first set written separately to avoid false }
  792. { uninitialized warnings (tbs/tb0542) }
  793. set_varstate(left,vs_written,[]);
  794. set_varstate(left,vs_readwritten,[]);
  795. end;
  796. vs_var :
  797. set_varstate(left,vs_readwritten,[vsf_must_be_valid,vsf_use_hints]);
  798. else
  799. set_varstate(left,vs_read,[vsf_must_be_valid]);
  800. end;
  801. { must only be done after typeconv PM }
  802. resultdef:=parasym.vardef;
  803. end;
  804. end;
  805. { process next node }
  806. if assigned(right) then
  807. tcallparanode(right).insert_typeconv;
  808. end;
  809. function tcallparanode.can_be_inlined: boolean;
  810. var
  811. n: tnode;
  812. begin
  813. n:=left;
  814. result:=false;
  815. while assigned(n) and
  816. (n.nodetype=typeconvn) do
  817. begin
  818. { look for type conversion nodes which convert a }
  819. { refcounted type into a non-refcounted type }
  820. if (not n.resultdef.needs_inittable or
  821. is_class(n.resultdef)) and
  822. (ttypeconvnode(n).left.resultdef.needs_inittable and
  823. not is_class(ttypeconvnode(n).left.resultdef)) then
  824. exit;
  825. n:=ttypeconvnode(n).left;
  826. end;
  827. { also check for dereferencing constant pointers, like }
  828. { tsomerecord(nil^) passed to a const r: tsomerecord }
  829. { parameter }
  830. if (n.nodetype=derefn) then
  831. begin
  832. repeat
  833. n:=tunarynode(n).left;
  834. until (n.nodetype<>typeconvn);
  835. if (n.nodetype in [niln,pointerconstn]) then
  836. exit
  837. end;
  838. result:=true;
  839. end;
  840. function tcallparanode.docompare(p: tnode): boolean;
  841. begin
  842. docompare :=
  843. inherited docompare(p) and
  844. (callparaflags = tcallparanode(p).callparaflags)
  845. ;
  846. end;
  847. procedure tcallparanode.printnodetree(var t:text);
  848. begin
  849. printnodelist(t);
  850. end;
  851. {****************************************************************************
  852. TCALLNODE
  853. ****************************************************************************}
  854. constructor tcallnode.create(l:tnode;v : tprocsym;st : TSymtable; mp: tnode; callflags:tcallnodeflags);
  855. begin
  856. inherited create(calln,l,nil);
  857. symtableprocentry:=v;
  858. symtableproc:=st;
  859. callnodeflags:=callflags+[cnf_return_value_used];
  860. methodpointer:=mp;
  861. callinitblock:=nil;
  862. callcleanupblock:=nil;
  863. procdefinition:=nil;
  864. funcretnode:=nil;
  865. paralength:=-1;
  866. varargsparas:=nil;
  867. end;
  868. constructor tcallnode.create_procvar(l,r:tnode);
  869. begin
  870. inherited create(calln,l,r);
  871. symtableprocentry:=nil;
  872. symtableproc:=nil;
  873. methodpointer:=nil;
  874. callinitblock:=nil;
  875. callcleanupblock:=nil;
  876. procdefinition:=nil;
  877. callnodeflags:=[cnf_return_value_used];
  878. funcretnode:=nil;
  879. paralength:=-1;
  880. varargsparas:=nil;
  881. end;
  882. constructor tcallnode.createintern(const name: string; params: tnode);
  883. var
  884. srsym: tsym;
  885. begin
  886. srsym := tsym(systemunit.Find(name));
  887. if not assigned(srsym) and
  888. (cs_compilesystem in current_settings.moduleswitches) then
  889. srsym := tsym(systemunit.Find(upper(name)));
  890. if not assigned(srsym) or
  891. (srsym.typ<>procsym) then
  892. Message1(cg_f_unknown_compilerproc,name);
  893. create(params,tprocsym(srsym),srsym.owner,nil,[]);
  894. end;
  895. constructor tcallnode.createinternfromunit(const fromunit, procname: string; params: tnode);
  896. var
  897. srsym: tsym;
  898. srsymtable: tsymtable;
  899. begin
  900. if not searchsym_in_named_module(fromunit,procname,srsym,srsymtable) or
  901. (srsym.typ<>procsym) then
  902. Message1(cg_f_unknown_compilerproc,fromunit+'.'+procname);
  903. create(params,tprocsym(srsym),srsymtable,nil,[]);
  904. end;
  905. constructor tcallnode.createinternres(const name: string; params: tnode; res:tdef);
  906. var
  907. pd : tprocdef;
  908. begin
  909. createintern(name,params);
  910. typedef:=res;
  911. include(callnodeflags,cnf_typedefset);
  912. pd:=tprocdef(symtableprocentry.ProcdefList[0]);
  913. { both the normal and specified resultdef either have to be returned via a }
  914. { parameter or not, but no mixing (JM) }
  915. if paramanager.ret_in_param(typedef,pd.proccalloption) xor
  916. paramanager.ret_in_param(pd.returndef,pd.proccalloption) then
  917. internalerror(200108291);
  918. end;
  919. constructor tcallnode.createinternresfromunit(const fromunit, procname: string; params: tnode; res:tdef);
  920. var
  921. pd : tprocdef;
  922. begin
  923. createinternfromunit(fromunit,procname,params);
  924. typedef:=res;
  925. include(callnodeflags,cnf_typedefset);
  926. pd:=tprocdef(symtableprocentry.ProcdefList[0]);
  927. { both the normal and specified resultdef either have to be returned via a }
  928. { parameter or not, but no mixing (JM) }
  929. if paramanager.ret_in_param(typedef,pd.proccalloption) xor
  930. paramanager.ret_in_param(pd.returndef,pd.proccalloption) then
  931. internalerror(200108291);
  932. end;
  933. constructor tcallnode.createinternreturn(const name: string; params: tnode; returnnode : tnode);
  934. begin
  935. createintern(name,params);
  936. funcretnode:=returnnode;
  937. end;
  938. destructor tcallnode.destroy;
  939. begin
  940. methodpointer.free;
  941. callinitblock.free;
  942. callcleanupblock.free;
  943. funcretnode.free;
  944. if assigned(varargsparas) then
  945. varargsparas.free;
  946. stringdispose(fobjcforcedprocname);
  947. inherited destroy;
  948. end;
  949. constructor tcallnode.ppuload(t:tnodetype;ppufile:tcompilerppufile);
  950. begin
  951. callinitblock:=tblocknode(ppuloadnode(ppufile));
  952. methodpointer:=ppuloadnode(ppufile);
  953. callcleanupblock:=tblocknode(ppuloadnode(ppufile));
  954. funcretnode:=ppuloadnode(ppufile);
  955. inherited ppuload(t,ppufile);
  956. ppufile.getderef(symtableprocentryderef);
  957. { TODO: FIXME: No withsymtable support}
  958. symtableproc:=nil;
  959. ppufile.getderef(procdefinitionderef);
  960. ppufile.getsmallset(callnodeflags);
  961. end;
  962. procedure tcallnode.ppuwrite(ppufile:tcompilerppufile);
  963. begin
  964. ppuwritenode(ppufile,callinitblock);
  965. ppuwritenode(ppufile,methodpointer);
  966. ppuwritenode(ppufile,callcleanupblock);
  967. ppuwritenode(ppufile,funcretnode);
  968. inherited ppuwrite(ppufile);
  969. ppufile.putderef(symtableprocentryderef);
  970. ppufile.putderef(procdefinitionderef);
  971. ppufile.putsmallset(callnodeflags);
  972. end;
  973. procedure tcallnode.buildderefimpl;
  974. begin
  975. inherited buildderefimpl;
  976. symtableprocentryderef.build(symtableprocentry);
  977. procdefinitionderef.build(procdefinition);
  978. if assigned(methodpointer) then
  979. methodpointer.buildderefimpl;
  980. if assigned(callinitblock) then
  981. callinitblock.buildderefimpl;
  982. if assigned(callcleanupblock) then
  983. callcleanupblock.buildderefimpl;
  984. if assigned(funcretnode) then
  985. funcretnode.buildderefimpl;
  986. end;
  987. procedure tcallnode.derefimpl;
  988. var
  989. pt : tcallparanode;
  990. i : integer;
  991. begin
  992. inherited derefimpl;
  993. symtableprocentry:=tprocsym(symtableprocentryderef.resolve);
  994. if assigned(symtableprocentry) then
  995. symtableproc:=symtableprocentry.owner;
  996. procdefinition:=tabstractprocdef(procdefinitionderef.resolve);
  997. if assigned(methodpointer) then
  998. methodpointer.derefimpl;
  999. if assigned(callinitblock) then
  1000. callinitblock.derefimpl;
  1001. if assigned(callcleanupblock) then
  1002. callcleanupblock.derefimpl;
  1003. if assigned(funcretnode) then
  1004. funcretnode.derefimpl;
  1005. { Connect parasyms }
  1006. pt:=tcallparanode(left);
  1007. while assigned(pt) and
  1008. (cpf_varargs_para in pt.callparaflags) do
  1009. pt:=tcallparanode(pt.right);
  1010. for i:=procdefinition.paras.count-1 downto 0 do
  1011. begin
  1012. if not assigned(pt) then
  1013. internalerror(200311077);
  1014. pt.parasym:=tparavarsym(procdefinition.paras[i]);
  1015. pt:=tcallparanode(pt.right);
  1016. end;
  1017. if assigned(pt) then
  1018. internalerror(200311078);
  1019. end;
  1020. function tcallnode.dogetcopy : tnode;
  1021. var
  1022. n : tcallnode;
  1023. i : integer;
  1024. hp,hpn : tparavarsym;
  1025. oldleft : tnode;
  1026. begin
  1027. { Need to use a hack here to prevent the parameters from being copied.
  1028. The parameters must be copied between callinitblock/callcleanupblock because
  1029. they can reference methodpointer }
  1030. oldleft:=left;
  1031. left:=nil;
  1032. n:=tcallnode(inherited dogetcopy);
  1033. left:=oldleft;
  1034. n.symtableprocentry:=symtableprocentry;
  1035. n.symtableproc:=symtableproc;
  1036. n.procdefinition:=procdefinition;
  1037. n.typedef := typedef;
  1038. n.callnodeflags := callnodeflags;
  1039. if assigned(callinitblock) then
  1040. n.callinitblock:=tblocknode(callinitblock.dogetcopy)
  1041. else
  1042. n.callinitblock:=nil;
  1043. { callinitblock is copied, now references to the temp will also be copied
  1044. correctly. We can now copy the parameters, funcret and methodpointer }
  1045. if assigned(left) then
  1046. n.left:=left.dogetcopy
  1047. else
  1048. n.left:=nil;
  1049. if assigned(methodpointer) then
  1050. n.methodpointer:=methodpointer.dogetcopy
  1051. else
  1052. n.methodpointer:=nil;
  1053. if assigned(funcretnode) then
  1054. n.funcretnode:=funcretnode.dogetcopy
  1055. else
  1056. n.funcretnode:=nil;
  1057. if assigned(callcleanupblock) then
  1058. n.callcleanupblock:=tblocknode(callcleanupblock.dogetcopy)
  1059. else
  1060. n.callcleanupblock:=nil;
  1061. if assigned(varargsparas) then
  1062. begin
  1063. n.varargsparas:=tvarargsparalist.create(true);
  1064. for i:=0 to varargsparas.count-1 do
  1065. begin
  1066. hp:=tparavarsym(varargsparas[i]);
  1067. hpn:=tparavarsym.create(hp.realname,hp.paranr,hp.varspez,hp.vardef,[]);
  1068. n.varargsparas.add(hpn);
  1069. end;
  1070. end
  1071. else
  1072. n.varargsparas:=nil;
  1073. result:=n;
  1074. end;
  1075. function tcallnode.docompare(p: tnode): boolean;
  1076. begin
  1077. docompare :=
  1078. inherited docompare(p) and
  1079. (symtableprocentry = tcallnode(p).symtableprocentry) and
  1080. (procdefinition = tcallnode(p).procdefinition) and
  1081. (methodpointer.isequal(tcallnode(p).methodpointer)) and
  1082. (((cnf_typedefset in callnodeflags) and (cnf_typedefset in tcallnode(p).callnodeflags) and
  1083. (equal_defs(typedef,tcallnode(p).typedef))) or
  1084. (not(cnf_typedefset in callnodeflags) and not(cnf_typedefset in tcallnode(p).callnodeflags)));
  1085. end;
  1086. procedure tcallnode.printnodedata(var t:text);
  1087. begin
  1088. if assigned(procdefinition) and
  1089. (procdefinition.typ=procdef) then
  1090. writeln(t,printnodeindention,'proc = ',tprocdef(procdefinition).fullprocname(true))
  1091. else
  1092. begin
  1093. if assigned(symtableprocentry) then
  1094. writeln(t,printnodeindention,'proc = ',symtableprocentry.name)
  1095. else
  1096. writeln(t,printnodeindention,'proc = <nil>');
  1097. end;
  1098. if assigned(methodpointer) then
  1099. begin
  1100. writeln(t,printnodeindention,'methodpointer =');
  1101. printnode(t,methodpointer);
  1102. end;
  1103. if assigned(callinitblock) then
  1104. begin
  1105. writeln(t,printnodeindention,'callinitblock =');
  1106. printnode(t,callinitblock);
  1107. end;
  1108. if assigned(callcleanupblock) then
  1109. begin
  1110. writeln(t,printnodeindention,'callcleanupblock =');
  1111. printnode(t,callcleanupblock);
  1112. end;
  1113. if assigned(right) then
  1114. begin
  1115. writeln(t,printnodeindention,'right =');
  1116. printnode(t,right);
  1117. end;
  1118. if assigned(left) then
  1119. begin
  1120. writeln(t,printnodeindention,'left =');
  1121. printnode(t,left);
  1122. end;
  1123. end;
  1124. procedure tcallnode.insertintolist(l : tnodelist);
  1125. begin
  1126. end;
  1127. procedure tcallnode.add_init_statement(n:tnode);
  1128. var
  1129. lastinitstatement : tstatementnode;
  1130. begin
  1131. if not assigned(callinitblock) then
  1132. callinitblock:=internalstatements(lastinitstatement)
  1133. else
  1134. lastinitstatement:=laststatement(callinitblock);
  1135. { all these nodes must be immediately typechecked, because this routine }
  1136. { can be called from pass_1 (i.e., after typecheck has already run) and }
  1137. { moreover, the entire blocks themselves are also only typechecked in }
  1138. { pass_1, while the the typeinfo is already required after the }
  1139. { typecheck pass for simplify purposes (not yet perfect, because the }
  1140. { statementnodes themselves are not typechecked this way) }
  1141. typecheckpass(n);
  1142. addstatement(lastinitstatement,n);
  1143. end;
  1144. procedure tcallnode.add_done_statement(n:tnode);
  1145. var
  1146. lastdonestatement : tstatementnode;
  1147. begin
  1148. if not assigned(callcleanupblock) then
  1149. callcleanupblock:=internalstatements(lastdonestatement)
  1150. else
  1151. lastdonestatement:=laststatement(callcleanupblock);
  1152. { see comments in add_init_statement }
  1153. typecheckpass(n);
  1154. addstatement(lastdonestatement,n);
  1155. end;
  1156. function tcallnode.para_count:longint;
  1157. var
  1158. ppn : tcallparanode;
  1159. begin
  1160. result:=0;
  1161. ppn:=tcallparanode(left);
  1162. while assigned(ppn) do
  1163. begin
  1164. if not(assigned(ppn.parasym) and
  1165. (vo_is_hidden_para in ppn.parasym.varoptions)) then
  1166. inc(result);
  1167. ppn:=tcallparanode(ppn.right);
  1168. end;
  1169. end;
  1170. function tcallnode.required_para_count: longint;
  1171. var
  1172. ppn : tcallparanode;
  1173. begin
  1174. result:=0;
  1175. ppn:=tcallparanode(left);
  1176. while assigned(ppn) do
  1177. begin
  1178. if not(assigned(ppn.parasym) and
  1179. ((vo_is_hidden_para in ppn.parasym.varoptions) or
  1180. assigned(ppn.parasym.defaultconstsym))) then
  1181. inc(result);
  1182. ppn:=tcallparanode(ppn.right);
  1183. end;
  1184. end;
  1185. function tcallnode.is_simple_para_load(p:tnode; may_be_in_reg: boolean):boolean;
  1186. var
  1187. hp : tnode;
  1188. begin
  1189. hp:=p;
  1190. while assigned(hp) and
  1191. (hp.nodetype=typeconvn) and
  1192. (ttypeconvnode(hp).convtype=tc_equal) do
  1193. hp:=tunarynode(hp).left;
  1194. result:=(hp.nodetype in [typen,loadvmtaddrn,loadn,temprefn,arrayconstructorn,addrn]);
  1195. if result and
  1196. not(may_be_in_reg) then
  1197. case hp.nodetype of
  1198. loadn:
  1199. result:=(tabstractvarsym(tloadnode(hp).symtableentry).varregable in [vr_none,vr_addr]);
  1200. temprefn:
  1201. result:=not(ti_may_be_in_reg in ttemprefnode(hp).tempinfo^.flags);
  1202. end;
  1203. end;
  1204. procedure tcallnode.maybe_load_in_temp(var p:tnode);
  1205. var
  1206. loadp,
  1207. refp : tnode;
  1208. hdef : tdef;
  1209. ptemp : ttempcreatenode;
  1210. usederef : boolean;
  1211. begin
  1212. { Load all complex loads into a temp to prevent
  1213. double calls to a function. We can't simply check for a hp.nodetype=calln }
  1214. if assigned(p) and
  1215. not is_simple_para_load(p,true) then
  1216. begin
  1217. { temp create }
  1218. usederef:=(p.resultdef.typ in [arraydef,recorddef]) or
  1219. is_shortstring(p.resultdef) or
  1220. is_object(p.resultdef);
  1221. if usederef then
  1222. hdef:=tpointerdef.create(p.resultdef)
  1223. else
  1224. hdef:=p.resultdef;
  1225. ptemp:=ctempcreatenode.create(hdef,hdef.size,tt_persistent,true);
  1226. if usederef then
  1227. begin
  1228. loadp:=caddrnode.create_internal(p);
  1229. refp:=cderefnode.create(ctemprefnode.create(ptemp));
  1230. end
  1231. else
  1232. begin
  1233. loadp:=p;
  1234. refp:=ctemprefnode.create(ptemp)
  1235. end;
  1236. add_init_statement(ptemp);
  1237. add_init_statement(cassignmentnode.create(
  1238. ctemprefnode.create(ptemp),
  1239. loadp));
  1240. add_done_statement(ctempdeletenode.create(ptemp));
  1241. { new tree is only a temp reference }
  1242. p:=refp;
  1243. typecheckpass(p);
  1244. end;
  1245. end;
  1246. function tcallnode.gen_high_tree(var p:tnode;paradef:tdef):tnode;
  1247. { When passing an array to an open array, or a string to an open string,
  1248. some code is needed that generates the high bound of the array. This
  1249. function returns a tree containing the nodes for it. }
  1250. var
  1251. temp: tnode;
  1252. len : integer;
  1253. loadconst : boolean;
  1254. hightree,l,r : tnode;
  1255. defkind: tdeftyp;
  1256. begin
  1257. len:=-1;
  1258. loadconst:=true;
  1259. hightree:=nil;
  1260. { constant strings are internally stored as array of char, but if the
  1261. parameter is a string also treat it like one }
  1262. defkind:=p.resultdef.typ;
  1263. if (p.nodetype=stringconstn) and
  1264. (paradef.typ=stringdef) then
  1265. defkind:=stringdef;
  1266. case defkind of
  1267. arraydef :
  1268. begin
  1269. if (paradef.typ<>arraydef) then
  1270. internalerror(200405241);
  1271. { passing a string to an array of char }
  1272. if (p.nodetype=stringconstn) and
  1273. is_char(tarraydef(paradef).elementdef) then
  1274. begin
  1275. len:=tstringconstnode(p).len;
  1276. if len>0 then
  1277. dec(len);
  1278. end
  1279. else
  1280. { handle special case of passing an single array to an array of array }
  1281. if compare_defs(tarraydef(paradef).elementdef,p.resultdef,nothingn)>=te_equal then
  1282. len:=0
  1283. else
  1284. begin
  1285. { handle via a normal inline in_high_x node }
  1286. loadconst:=false;
  1287. { slice? }
  1288. if (p.nodetype=inlinen) and (tinlinenode(p).inlinenumber=in_slice_x) then
  1289. with Tcallparanode(Tinlinenode(p).left) do
  1290. begin
  1291. {Array slice using slice builtin function.}
  1292. l:=Tcallparanode(right).left;
  1293. hightree:=caddnode.create(subn,l,genintconstnode(1));
  1294. Tcallparanode(right).left:=nil;
  1295. {Remove the inline node.}
  1296. temp:=p;
  1297. p:=left;
  1298. Tcallparanode(tinlinenode(temp).left).left:=nil;
  1299. temp.free;
  1300. typecheckpass(hightree);
  1301. end
  1302. else if (p.nodetype=vecn) and (Tvecnode(p).right.nodetype=rangen) then
  1303. begin
  1304. {Array slice using .. operator.}
  1305. with Trangenode(Tvecnode(p).right) do
  1306. begin
  1307. l:=left; {Get lower bound.}
  1308. r:=right; {Get upper bound.}
  1309. end;
  1310. {In the procedure the array range is 0..(upper_bound-lower_bound).}
  1311. hightree:=caddnode.create(subn,r,l);
  1312. {Replace the rangnode in the tree by its lower_bound, and
  1313. dispose the rangenode.}
  1314. temp:=Tvecnode(p).right;
  1315. Tvecnode(p).right:=l.getcopy;
  1316. {Typecheckpass can only be performed *after* the l.getcopy since it
  1317. can modify the tree, and l is in the hightree.}
  1318. typecheckpass(hightree);
  1319. with Trangenode(temp) do
  1320. begin
  1321. left:=nil;
  1322. right:=nil;
  1323. end;
  1324. temp.free;
  1325. {Tree changed from p[l..h] to p[l], recalculate resultdef.}
  1326. p.resultdef:=nil;
  1327. typecheckpass(p);
  1328. end
  1329. else
  1330. begin
  1331. maybe_load_in_temp(p);
  1332. hightree:=geninlinenode(in_high_x,false,p.getcopy);
  1333. typecheckpass(hightree);
  1334. { only substract low(array) if it's <> 0 }
  1335. temp:=geninlinenode(in_low_x,false,p.getcopy);
  1336. typecheckpass(temp);
  1337. if (temp.nodetype <> ordconstn) or
  1338. (tordconstnode(temp).value <> 0) then
  1339. hightree := caddnode.create(subn,hightree,temp)
  1340. else
  1341. temp.free;
  1342. end;
  1343. end;
  1344. end;
  1345. stringdef :
  1346. begin
  1347. if is_open_string(paradef) then
  1348. begin
  1349. { a stringconstn is not a simple parameter and hence would be
  1350. loaded in a temp, but in that case the high() node
  1351. a) goes wrong (it cannot deal with a temp node)
  1352. b) would give a generic result instead of one specific to
  1353. this constant string
  1354. }
  1355. if p.nodetype<>stringconstn then
  1356. maybe_load_in_temp(p);
  1357. { handle via a normal inline in_high_x node }
  1358. loadconst := false;
  1359. hightree := geninlinenode(in_high_x,false,p.getcopy);
  1360. end
  1361. else
  1362. { handle special case of passing an single string to an array of string }
  1363. if compare_defs(tarraydef(paradef).elementdef,p.resultdef,nothingn)>=te_equal then
  1364. len:=0
  1365. else
  1366. { passing a string to an array of char }
  1367. if (p.nodetype=stringconstn) and
  1368. is_char(tarraydef(paradef).elementdef) then
  1369. begin
  1370. len:=tstringconstnode(p).len;
  1371. if len>0 then
  1372. dec(len);
  1373. end
  1374. else
  1375. begin
  1376. maybe_load_in_temp(p);
  1377. hightree:=caddnode.create(subn,geninlinenode(in_length_x,false,p.getcopy),
  1378. cordconstnode.create(1,sinttype,false));
  1379. loadconst:=false;
  1380. end;
  1381. end;
  1382. else
  1383. len:=0;
  1384. end;
  1385. if loadconst then
  1386. hightree:=cordconstnode.create(len,sinttype,true)
  1387. else
  1388. begin
  1389. if not assigned(hightree) then
  1390. internalerror(200304071);
  1391. { Need to use explicit, because it can also be a enum }
  1392. hightree:=ctypeconvnode.create_internal(hightree,sinttype);
  1393. end;
  1394. result:=hightree;
  1395. end;
  1396. function tcallnode.gen_self_tree_methodpointer:tnode;
  1397. var
  1398. hsym : tfieldvarsym;
  1399. begin
  1400. { find self field in methodpointer record }
  1401. hsym:=tfieldvarsym(trecorddef(methodpointertype).symtable.Find('self'));
  1402. if not assigned(hsym) then
  1403. internalerror(200305251);
  1404. { Load tmehodpointer(right).self }
  1405. result:=csubscriptnode.create(
  1406. hsym,
  1407. ctypeconvnode.create_internal(right.getcopy,methodpointertype));
  1408. end;
  1409. function tcallnode.gen_self_tree:tnode;
  1410. var
  1411. selftree : tnode;
  1412. begin
  1413. selftree:=nil;
  1414. { When methodpointer was a callnode we must load it first into a
  1415. temp to prevent processing the callnode twice }
  1416. if (methodpointer.nodetype=calln) then
  1417. internalerror(200405121);
  1418. { Objective-C: objc_convert_to_message_send() already did all necessary
  1419. transformation on the methodpointer }
  1420. if (procdefinition.typ=procdef) and
  1421. (po_objc in tprocdef(procdefinition).procoptions) then
  1422. selftree:=methodpointer.getcopy
  1423. { inherited }
  1424. else if (cnf_inherited in callnodeflags) then
  1425. begin
  1426. selftree:=load_self_node;
  1427. { we can call an inherited class static/method from a regular method
  1428. -> self node must change from instance pointer to vmt pointer)
  1429. }
  1430. if (procdefinition.procoptions*[po_classmethod,po_staticmethod] <> []) and
  1431. (selftree.resultdef.typ<>classrefdef) then
  1432. selftree:=cloadvmtaddrnode.create(selftree);
  1433. end
  1434. else
  1435. { constructors }
  1436. if (procdefinition.proctypeoption=potype_constructor) then
  1437. begin
  1438. { push 0 as self when allocation is needed }
  1439. if (methodpointer.resultdef.typ=classrefdef) or
  1440. (cnf_new_call in callnodeflags) then
  1441. selftree:=cpointerconstnode.create(0,voidpointertype)
  1442. else
  1443. begin
  1444. if methodpointer.nodetype=typen then
  1445. selftree:=load_self_node
  1446. else
  1447. selftree:=methodpointer.getcopy;
  1448. end;
  1449. end
  1450. else
  1451. { Calling a static/class method }
  1452. if (po_classmethod in procdefinition.procoptions) or
  1453. (po_staticmethod in procdefinition.procoptions) then
  1454. begin
  1455. if (procdefinition.typ<>procdef) then
  1456. internalerror(200305062);
  1457. if (oo_has_vmt in tprocdef(procdefinition)._class.objectoptions) then
  1458. begin
  1459. { we only need the vmt, loading self is not required and there is no
  1460. need to check for typen, because that will always get the
  1461. loadvmtaddrnode added }
  1462. selftree:=methodpointer.getcopy;
  1463. if (methodpointer.resultdef.typ<>classrefdef) or
  1464. (methodpointer.nodetype = typen) then
  1465. selftree:=cloadvmtaddrnode.create(selftree);
  1466. end
  1467. else
  1468. selftree:=cpointerconstnode.create(0,voidpointertype);
  1469. end
  1470. else
  1471. begin
  1472. if methodpointer.nodetype=typen then
  1473. selftree:=load_self_node
  1474. else
  1475. selftree:=methodpointer.getcopy;
  1476. end;
  1477. result:=selftree;
  1478. end;
  1479. procedure tcallnode.register_created_object_types;
  1480. function checklive(def: tdef): boolean;
  1481. begin
  1482. if assigned(current_procinfo) and
  1483. not(po_inline in current_procinfo.procdef.procoptions) and
  1484. not wpoinfomanager.symbol_live(current_procinfo.procdef.mangledname) then
  1485. begin
  1486. {$ifdef debug_deadcode}
  1487. writeln(' NOT adding creadion of ',def.typename,' because performed in dead stripped proc: ',current_procinfo.procdef.typename);
  1488. {$endif debug_deadcode}
  1489. result:=false;
  1490. end
  1491. else
  1492. result:=true;
  1493. end;
  1494. var
  1495. crefdef,
  1496. systobjectdef : tdef;
  1497. begin
  1498. { only makes sense for methods }
  1499. if not assigned(methodpointer) then
  1500. exit;
  1501. if (methodpointer.resultdef.typ=classrefdef) then
  1502. begin
  1503. { constructor call via classreference => allocate memory }
  1504. if (procdefinition.proctypeoption=potype_constructor) then
  1505. begin
  1506. { Only a typenode can be passed when it is called with <class of xx>.create }
  1507. if (methodpointer.nodetype=typen) then
  1508. begin
  1509. if checklive(methodpointer.resultdef) then
  1510. { we know the exact class type being created }
  1511. tclassrefdef(methodpointer.resultdef).pointeddef.register_created_object_type
  1512. end
  1513. else
  1514. begin
  1515. { the loadvmtaddrnode is already created in case of classtype.create }
  1516. if (methodpointer.nodetype=loadvmtaddrn) and
  1517. (tloadvmtaddrnode(methodpointer).left.nodetype=typen) then
  1518. begin
  1519. if checklive(methodpointer.resultdef) then
  1520. tclassrefdef(methodpointer.resultdef).pointeddef.register_created_object_type
  1521. end
  1522. else
  1523. begin
  1524. if checklive(methodpointer.resultdef) then
  1525. begin
  1526. { special case: if the classref comes from x.classtype (with classtype,
  1527. being tobject.classtype) then the created instance is x or a descendant
  1528. of x (rather than tobject or a descendant of tobject)
  1529. }
  1530. systobjectdef:=search_system_type('TOBJECT').typedef;
  1531. if (methodpointer.nodetype=calln) and
  1532. { not a procvar call }
  1533. not assigned(right) and
  1534. { procdef is owned by system.tobject }
  1535. (tprocdef(tcallnode(methodpointer).procdefinition).owner.defowner=systobjectdef) and
  1536. { we're calling system.tobject.classtype }
  1537. (tcallnode(methodpointer).symtableprocentry.name='CLASSTYPE') and
  1538. { could again be a classrefdef, but unlikely }
  1539. (tcallnode(methodpointer).methodpointer.resultdef.typ=objectdef) and
  1540. { don't go through this trouble if it was already a tobject }
  1541. (tcallnode(methodpointer).methodpointer.resultdef<>systobjectdef) then
  1542. begin
  1543. { register this object type as classref, so all descendents will also
  1544. be marked as instantiatable (only the pointeddef will actually be
  1545. recorded, so it's no problem that the clasrefdef is only temporary)
  1546. }
  1547. crefdef:=tclassrefdef.create(tcallnode(methodpointer).methodpointer.resultdef);
  1548. { and register it }
  1549. crefdef.register_created_object_type;
  1550. end
  1551. else
  1552. { the created class can be any child class as well -> register classrefdef }
  1553. methodpointer.resultdef.register_created_object_type;
  1554. end;
  1555. end;
  1556. end;
  1557. end
  1558. end
  1559. else
  1560. { Old style object }
  1561. if is_object(methodpointer.resultdef) then
  1562. begin
  1563. { constructor with extended syntax called from new }
  1564. if (cnf_new_call in callnodeflags) then
  1565. begin
  1566. if checklive(methodpointer.resultdef) then
  1567. methodpointer.resultdef.register_created_object_type;
  1568. end
  1569. else
  1570. { normal object call like obj.proc }
  1571. if not(cnf_dispose_call in callnodeflags) and
  1572. not(cnf_inherited in callnodeflags) and
  1573. not(cnf_member_call in callnodeflags) then
  1574. begin
  1575. if (procdefinition.proctypeoption=potype_constructor) then
  1576. begin
  1577. if (methodpointer.nodetype<>typen) and
  1578. checklive(methodpointer.resultdef) then
  1579. methodpointer.resultdef.register_created_object_type;
  1580. end
  1581. end;
  1582. end;
  1583. end;
  1584. procedure tcallnode.objc_convert_to_message_send;
  1585. var
  1586. block,
  1587. selftree : tnode;
  1588. statements : tstatementnode;
  1589. field : tfieldvarsym;
  1590. temp : ttempcreatenode;
  1591. selfrestype,
  1592. objcsupertype : tdef;
  1593. srsym : tsym;
  1594. srsymtable : tsymtable;
  1595. msgsendname : string;
  1596. begin
  1597. { typecheck pass must already have run on the call node,
  1598. because pass1 calls this method
  1599. }
  1600. { default behaviour: call objc_msgSend and friends;
  1601. 64 bit targets for Mac OS X can override this as they
  1602. can call messages via an indirect function call similar to
  1603. dynamically linked functions, ARM maybe as well (not checked)
  1604. Which variant of objc_msgSend is used depends on the
  1605. result type, and on whether or not it's an inherited call.
  1606. }
  1607. { make sure we don't perform this transformation twice in case
  1608. firstpass would be called multiple times }
  1609. include(callnodeflags,cnf_objc_processed);
  1610. { A) set the appropriate objc_msgSend* variant to call }
  1611. { record returned via implicit pointer }
  1612. if paramanager.ret_in_param(resultdef,procdefinition.proccalloption) then
  1613. begin
  1614. if not(cnf_inherited in callnodeflags) then
  1615. msgsendname:='OBJC_MSGSEND_STRET'
  1616. {$if defined(onlymacosx10_6) or defined(arm) }
  1617. else if (target_info.system in systems_objc_nfabi) then
  1618. msgsendname:='OBJC_MSGSENDSUPER2_STRET'
  1619. {$endif onlymacosx10_6 or arm}
  1620. else
  1621. msgsendname:='OBJC_MSGSENDSUPER_STRET'
  1622. end
  1623. {$ifdef i386}
  1624. { special case for fpu results on i386 for non-inherited calls }
  1625. { TODO: also for x86_64 "extended" results }
  1626. else if (resultdef.typ=floatdef) and
  1627. not(cnf_inherited in callnodeflags) then
  1628. msgsendname:='OBJC_MSGSEND_FPRET'
  1629. {$endif}
  1630. { default }
  1631. else if not(cnf_inherited in callnodeflags) then
  1632. msgsendname:='OBJC_MSGSEND'
  1633. {$if defined(onlymacosx10_6) or defined(arm) }
  1634. else if (target_info.system in systems_objc_nfabi) then
  1635. msgsendname:='OBJC_MSGSENDSUPER2'
  1636. {$endif onlymacosx10_6 or arm}
  1637. else
  1638. msgsendname:='OBJC_MSGSENDSUPER';
  1639. { get the mangled name }
  1640. if not searchsym_in_named_module('OBJC',msgsendname,srsym,srsymtable) or
  1641. (srsym.typ<>procsym) or
  1642. (tprocsym(srsym).ProcdefList.count<>1) then
  1643. Message1(cg_f_unknown_compilerproc,'objc.'+msgsendname);
  1644. fobjcforcedprocname:=stringdup(tprocdef(tprocsym(srsym).ProcdefList[0]).mangledname);
  1645. { B) Handle self }
  1646. { 1) in case of sending a message to a superclass, self is a pointer to
  1647. an objc_super record
  1648. }
  1649. if (cnf_inherited in callnodeflags) then
  1650. begin
  1651. block:=internalstatements(statements);
  1652. objcsupertype:=search_named_unit_globaltype('OBJC','OBJC_SUPER').typedef;
  1653. if (objcsupertype.typ<>recorddef) then
  1654. internalerror(2009032901);
  1655. { temp for the for the objc_super record }
  1656. temp:=ctempcreatenode.create(objcsupertype,objcsupertype.size,tt_persistent,false);
  1657. addstatement(statements,temp);
  1658. { initialize objc_super record }
  1659. selftree:=load_self_node;
  1660. { we can call an inherited class static/method from a regular method
  1661. -> self node must change from instance pointer to vmt pointer)
  1662. }
  1663. if (po_classmethod in procdefinition.procoptions) and
  1664. (selftree.resultdef.typ<>classrefdef) then
  1665. begin
  1666. selftree:=cloadvmtaddrnode.create(selftree);
  1667. typecheckpass(selftree);
  1668. end;
  1669. selfrestype:=selftree.resultdef;
  1670. field:=tfieldvarsym(trecorddef(objcsupertype).symtable.find('RECEIVER'));
  1671. if not assigned(field) then
  1672. internalerror(2009032902);
  1673. { first the destination object/class instance }
  1674. addstatement(statements,
  1675. cassignmentnode.create(
  1676. csubscriptnode.create(field,ctemprefnode.create(temp)),
  1677. selftree
  1678. )
  1679. );
  1680. { and secondly, the class type in which the selector must be looked
  1681. up (the parent class in case of an instance method, the parent's
  1682. metaclass in case of a class method) }
  1683. field:=tfieldvarsym(trecorddef(objcsupertype).symtable.find('_CLASS'));
  1684. if not assigned(field) then
  1685. internalerror(2009032903);
  1686. addstatement(statements,
  1687. cassignmentnode.create(
  1688. csubscriptnode.create(field,ctemprefnode.create(temp)),
  1689. objcsuperclassnode(selftree.resultdef)
  1690. )
  1691. );
  1692. { result of this block is the address of this temp }
  1693. addstatement(statements,ctypeconvnode.create_internal(
  1694. caddrnode.create_internal(ctemprefnode.create(temp)),selfrestype)
  1695. );
  1696. { replace the method pointer with the address of this temp }
  1697. methodpointer.free;
  1698. methodpointer:=block;
  1699. typecheckpass(block);
  1700. end
  1701. else
  1702. { 2) regular call (not inherited) }
  1703. begin
  1704. { a) If we're calling a class method, use a class ref. }
  1705. if (po_classmethod in procdefinition.procoptions) and
  1706. ((methodpointer.nodetype=typen) or
  1707. (methodpointer.resultdef.typ<>classrefdef)) then
  1708. begin
  1709. methodpointer:=cloadvmtaddrnode.create(methodpointer);
  1710. firstpass(methodpointer);
  1711. end;
  1712. end;
  1713. end;
  1714. function tcallnode.gen_vmt_tree:tnode;
  1715. var
  1716. vmttree : tnode;
  1717. begin
  1718. vmttree:=nil;
  1719. if not(procdefinition.proctypeoption in [potype_constructor,potype_destructor]) then
  1720. internalerror(200305051);
  1721. { When methodpointer was a callnode we must load it first into a
  1722. temp to prevent the processing callnode twice }
  1723. if (methodpointer.nodetype=calln) then
  1724. internalerror(200405122);
  1725. { Handle classes and legacy objects separate to make it
  1726. more maintainable }
  1727. if (methodpointer.resultdef.typ=classrefdef) then
  1728. begin
  1729. if not is_class(tclassrefdef(methodpointer.resultdef).pointeddef) then
  1730. internalerror(200501041);
  1731. { constructor call via classreference => allocate memory }
  1732. if (procdefinition.proctypeoption=potype_constructor) then
  1733. begin
  1734. vmttree:=methodpointer.getcopy;
  1735. { Only a typenode can be passed when it is called with <class of xx>.create }
  1736. if vmttree.nodetype=typen then
  1737. vmttree:=cloadvmtaddrnode.create(vmttree);
  1738. end
  1739. else
  1740. begin
  1741. { Call afterconstruction }
  1742. vmttree:=cpointerconstnode.create(1,voidpointertype);
  1743. end;
  1744. end
  1745. else
  1746. { Class style objects }
  1747. if is_class(methodpointer.resultdef) then
  1748. begin
  1749. { inherited call, no create/destroy }
  1750. if (cnf_inherited in callnodeflags) then
  1751. vmttree:=cpointerconstnode.create(0,voidpointertype)
  1752. else
  1753. { do not create/destroy when called from member function
  1754. without specifying self explicit }
  1755. if (cnf_member_call in callnodeflags) then
  1756. begin
  1757. { destructor (in the same class, since cnf_member_call):
  1758. if not called from a destructor then
  1759. call beforedestruction and release instance, vmt=1
  1760. else
  1761. don't release instance, vmt=0
  1762. constructor (in the same class, since cnf_member_call):
  1763. if called from a constructor then
  1764. don't call afterconstruction, vmt=0
  1765. else
  1766. call afterconstrution, vmt=1 }
  1767. if (procdefinition.proctypeoption=potype_destructor) then
  1768. if (current_procinfo.procdef.proctypeoption<>potype_constructor) then
  1769. vmttree:=cpointerconstnode.create(1,voidpointertype)
  1770. else
  1771. vmttree:=cpointerconstnode.create(0,voidpointertype)
  1772. else if (current_procinfo.procdef.proctypeoption=potype_constructor) and
  1773. (procdefinition.proctypeoption=potype_constructor) then
  1774. vmttree:=cpointerconstnode.create(0,voidpointertype)
  1775. else
  1776. vmttree:=cpointerconstnode.create(1,voidpointertype);
  1777. end
  1778. else
  1779. { normal call to method like cl1.proc }
  1780. begin
  1781. { destructor:
  1782. if not called from exception block in constructor
  1783. call beforedestruction and release instance, vmt=1
  1784. else
  1785. don't call beforedestruction and release instance, vmt=-1
  1786. constructor:
  1787. if called from a constructor in the same class using self.create then
  1788. don't call afterconstruction, vmt=0
  1789. else
  1790. call afterconstruction, vmt=1 }
  1791. if (procdefinition.proctypeoption=potype_destructor) then
  1792. if not(cnf_create_failed in callnodeflags) then
  1793. vmttree:=cpointerconstnode.create(1,voidpointertype)
  1794. else
  1795. vmttree:=cpointerconstnode.create(TConstPtrUInt(-1),voidpointertype)
  1796. else
  1797. begin
  1798. if (current_procinfo.procdef.proctypeoption=potype_constructor) and
  1799. (procdefinition.proctypeoption=potype_constructor) and
  1800. (nf_is_self in methodpointer.flags) then
  1801. vmttree:=cpointerconstnode.create(0,voidpointertype)
  1802. else
  1803. vmttree:=cpointerconstnode.create(1,voidpointertype);
  1804. end;
  1805. end;
  1806. end
  1807. else
  1808. { Old style object }
  1809. begin
  1810. { constructor with extended syntax called from new }
  1811. if (cnf_new_call in callnodeflags) then
  1812. vmttree:=cloadvmtaddrnode.create(ctypenode.create(methodpointer.resultdef))
  1813. else
  1814. { destructor with extended syntax called from dispose }
  1815. if (cnf_dispose_call in callnodeflags) then
  1816. vmttree:=cloadvmtaddrnode.create(methodpointer.getcopy)
  1817. else
  1818. { inherited call, no create/destroy }
  1819. if (cnf_inherited in callnodeflags) then
  1820. vmttree:=cpointerconstnode.create(0,voidpointertype)
  1821. else
  1822. { do not create/destroy when called from member function
  1823. without specifying self explicit }
  1824. if (cnf_member_call in callnodeflags) then
  1825. begin
  1826. { destructor: don't release instance, vmt=0
  1827. constructor: don't initialize instance, vmt=0 }
  1828. vmttree:=cpointerconstnode.create(0,voidpointertype)
  1829. end
  1830. else
  1831. { normal object call like obj.proc }
  1832. begin
  1833. { destructor: direct call, no dispose, vmt=0
  1834. constructor: initialize object, load vmt }
  1835. if (procdefinition.proctypeoption=potype_constructor) then
  1836. begin
  1837. { old styled inherited call? }
  1838. if (methodpointer.nodetype=typen) then
  1839. vmttree:=cpointerconstnode.create(0,voidpointertype)
  1840. else
  1841. vmttree:=cloadvmtaddrnode.create(ctypenode.create(methodpointer.resultdef))
  1842. end
  1843. else
  1844. vmttree:=cpointerconstnode.create(0,voidpointertype);
  1845. end;
  1846. end;
  1847. result:=vmttree;
  1848. end;
  1849. function check_funcret_used_as_para(var n: tnode; arg: pointer): foreachnoderesult;
  1850. var
  1851. destsym : tsym absolute arg;
  1852. begin
  1853. result := fen_false;
  1854. if (n.nodetype=loadn) and
  1855. (tloadnode(n).symtableentry = destsym) then
  1856. result := fen_norecurse_true;
  1857. end;
  1858. function tcallnode.funcret_can_be_reused:boolean;
  1859. var
  1860. realassignmenttarget: tnode;
  1861. alignment: longint;
  1862. begin
  1863. result:=false;
  1864. { we are processing an assignment node? }
  1865. if not(assigned(aktassignmentnode) and
  1866. (aktassignmentnode.right=self) and
  1867. (aktassignmentnode.left.resultdef=resultdef)) then
  1868. exit;
  1869. { destination must be able to be passed as var parameter }
  1870. if not valid_for_var(aktassignmentnode.left,false) then
  1871. exit;
  1872. { destination must be a simple load so it doesn't need a temp when
  1873. it is evaluated }
  1874. if not is_simple_para_load(aktassignmentnode.left,false) then
  1875. exit;
  1876. { remove possible typecasts }
  1877. realassignmenttarget:=aktassignmentnode.left.actualtargetnode;
  1878. { when it is not passed in a parameter it will only be used after the
  1879. function call }
  1880. if not paramanager.ret_in_param(resultdef,procdefinition.proccalloption) then
  1881. begin
  1882. result:=true;
  1883. exit;
  1884. end;
  1885. { if the result is the same as the self parameter (in case of objects),
  1886. we can't optimise. We have to check this explicitly becaise
  1887. hidden parameters such as self have not yet been inserted at this
  1888. point
  1889. }
  1890. if assigned(methodpointer) and
  1891. realassignmenttarget.isequal(methodpointer.actualtargetnode) then
  1892. exit;
  1893. { when we substitute a function result inside an inlined function,
  1894. we may take the address of this function result. Therefore the
  1895. substituted function result may not be in a register, as we cannot
  1896. take its address in that case }
  1897. if (realassignmenttarget.nodetype=temprefn) and
  1898. not(ti_addr_taken in ttemprefnode(realassignmenttarget).tempinfo^.flags) and
  1899. not(ti_may_be_in_reg in ttemprefnode(realassignmenttarget).tempinfo^.flags) then
  1900. begin
  1901. result:=true;
  1902. exit;
  1903. end;
  1904. if (realassignmenttarget.nodetype=loadn) and
  1905. { nested procedures may access the current procedure's locals }
  1906. (procdefinition.parast.symtablelevel=normal_function_level) and
  1907. { must be a local variable, a value para or a hidden function result }
  1908. { parameter (which can be passed by address, but in that case it got }
  1909. { through these same checks at the caller side and is thus safe }
  1910. (
  1911. (tloadnode(realassignmenttarget).symtableentry.typ=localvarsym) or
  1912. (
  1913. (tloadnode(realassignmenttarget).symtableentry.typ=paravarsym) and
  1914. ((tparavarsym(tloadnode(realassignmenttarget).symtableentry).varspez = vs_value) or
  1915. (vo_is_funcret in tparavarsym(tloadnode(realassignmenttarget).symtableentry).varoptions))
  1916. )
  1917. ) and
  1918. { the address may not have been taken of the variable/parameter, because }
  1919. { otherwise it's possible that the called function can access it via a }
  1920. { global variable or other stored state }
  1921. (
  1922. not(tabstractvarsym(tloadnode(realassignmenttarget).symtableentry).addr_taken) and
  1923. (tabstractvarsym(tloadnode(realassignmenttarget).symtableentry).varregable in [vr_none,vr_addr])
  1924. ) then
  1925. begin
  1926. { If the funcret is also used as a parameter we can't optimize becuase the funcret
  1927. and the parameter will point to the same address. That means that a change of the result variable
  1928. will result also in a change of the parameter value }
  1929. result:=not foreachnodestatic(left,@check_funcret_used_as_para,tloadnode(realassignmenttarget).symtableentry);
  1930. { ensure that it is aligned using the default alignment }
  1931. alignment:=tabstractvarsym(tloadnode(realassignmenttarget).symtableentry).vardef.alignment;
  1932. if (used_align(alignment,target_info.alignment.localalignmin,target_info.alignment.localalignmax)<>
  1933. used_align(alignment,current_settings.alignment.localalignmin,current_settings.alignment.localalignmax)) then
  1934. result:=false;
  1935. exit;
  1936. end;
  1937. end;
  1938. procedure tcallnode.maybe_create_funcret_node;
  1939. var
  1940. temp : ttempcreatenode;
  1941. begin
  1942. { For the function result we need to create a temp node for:
  1943. - Inlined functions
  1944. - Types requiring initialization/finalization
  1945. - Types passed in parameters }
  1946. if not is_void(resultdef) and
  1947. not assigned(funcretnode) and
  1948. (
  1949. (cnf_do_inline in callnodeflags) or
  1950. resultdef.needs_inittable or
  1951. paramanager.ret_in_param(resultdef,procdefinition.proccalloption)
  1952. ) then
  1953. begin
  1954. { Optimize calls like x:=f() where we can use x directly as
  1955. result instead of using a temp. Condition is that x cannot be accessed from f().
  1956. This implies that x is a local variable or value parameter of the current block
  1957. and its address is not passed to f. One problem: what if someone takes the
  1958. address of x, puts it in a pointer variable/field and then accesses it that way
  1959. from within the function? This is solved (in a conservative way) using the
  1960. ti_addr_taken flag.
  1961. When the result is not not passed in a parameter there are no problem because
  1962. then it means only reference counted types (eg. ansistrings) that need a decr
  1963. of the refcount before being assigned. This is all done after the call so there
  1964. is no issue with exceptions and possible use of the old value in the called
  1965. function }
  1966. if funcret_can_be_reused then
  1967. begin
  1968. funcretnode:=aktassignmentnode.left.getcopy;
  1969. include(funcretnode.flags,nf_is_funcret);
  1970. { notify the assignment node that the assignment can be removed }
  1971. include(aktassignmentnode.flags,nf_assign_done_in_right);
  1972. end
  1973. else
  1974. begin
  1975. temp:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,false);
  1976. include(temp.flags,nf_is_funcret);
  1977. add_init_statement(temp);
  1978. { When the function result is not used in an inlined function
  1979. we need to delete the temp. This can currently only be done by
  1980. a tempdeletenode and not after converting it to a normal temp }
  1981. if not(cnf_return_value_used in callnodeflags) and
  1982. (cnf_do_inline in callnodeflags) then
  1983. add_done_statement(ctempdeletenode.create(temp))
  1984. else
  1985. add_done_statement(ctempdeletenode.create_normal_temp(temp));
  1986. funcretnode:=ctemprefnode.create(temp);
  1987. include(funcretnode.flags,nf_is_funcret);
  1988. end;
  1989. end;
  1990. end;
  1991. procedure tcallnode.gen_hidden_parameters;
  1992. var
  1993. para : tcallparanode;
  1994. begin
  1995. para:=tcallparanode(left);
  1996. while assigned(para) do
  1997. begin
  1998. { The processing of high() and typeinfo() is already
  1999. done in the typecheckpass. We only need to process the
  2000. nodes that still have a nothingn }
  2001. if (vo_is_hidden_para in para.parasym.varoptions) and
  2002. (para.left.nodetype=nothingn) then
  2003. begin
  2004. { remove dummy nothingn }
  2005. para.left.free;
  2006. para.left:=nil;
  2007. { generate the corresponding nodes for the hidden parameter type }
  2008. if (vo_is_funcret in para.parasym.varoptions) then
  2009. begin
  2010. if not assigned(funcretnode) then
  2011. internalerror(200709083);
  2012. para.left:=funcretnode;
  2013. funcretnode:=nil;
  2014. end
  2015. else
  2016. if vo_is_self in para.parasym.varoptions then
  2017. begin
  2018. if assigned(right) then
  2019. para.left:=gen_self_tree_methodpointer
  2020. else
  2021. para.left:=gen_self_tree;
  2022. end
  2023. else
  2024. if vo_is_vmt in para.parasym.varoptions then
  2025. begin
  2026. para.left:=gen_vmt_tree;
  2027. end
  2028. {$if defined(powerpc) or defined(m68k)}
  2029. else
  2030. if vo_is_syscall_lib in para.parasym.varoptions then
  2031. begin
  2032. { lib parameter has no special type but proccalloptions must be a syscall }
  2033. para.left:=cloadnode.create(tprocdef(procdefinition).libsym,tprocdef(procdefinition).libsym.owner);
  2034. end
  2035. {$endif powerpc or m68k}
  2036. else
  2037. if vo_is_parentfp in para.parasym.varoptions then
  2038. begin
  2039. if not(assigned(procdefinition.owner.defowner)) then
  2040. internalerror(200309287);
  2041. para.left:=cloadparentfpnode.create(tprocdef(procdefinition.owner.defowner));
  2042. end
  2043. else
  2044. if vo_is_range_check in para.parasym.varoptions then
  2045. begin
  2046. para.left:=cordconstnode.create(Ord(cs_check_range in current_settings.localswitches),booltype,false);
  2047. end
  2048. else
  2049. if vo_is_overflow_check in para.parasym.varoptions then
  2050. begin
  2051. para.left:=cordconstnode.create(Ord(cs_check_overflow in current_settings.localswitches),booltype,false);
  2052. end
  2053. else
  2054. if vo_is_msgsel in para.parasym.varoptions then
  2055. begin
  2056. para.left:=cobjcselectornode.create(cstringconstnode.createstr(tprocdef(procdefinition).messageinf.str^));
  2057. end;
  2058. end;
  2059. if not assigned(para.left) then
  2060. internalerror(200709084);
  2061. para:=tcallparanode(para.right);
  2062. end;
  2063. end;
  2064. procedure tcallnode.verifyabstract(sym:TObject;arg:pointer);
  2065. var
  2066. pd : tprocdef;
  2067. i : longint;
  2068. j : integer;
  2069. hs : string;
  2070. begin
  2071. if (tsym(sym).typ<>procsym) then
  2072. exit;
  2073. for i:=0 to tprocsym(sym).ProcdefList.Count-1 do
  2074. begin
  2075. pd:=tprocdef(tprocsym(sym).ProcdefList[i]);
  2076. hs:=pd.procsym.name+pd.typename_paras(false);
  2077. j:=AbstractMethodsList.FindIndexOf(hs);
  2078. if j<>-1 then
  2079. AbstractMethodsList[j]:=pd
  2080. else
  2081. AbstractMethodsList.Add(hs,pd);
  2082. end;
  2083. end;
  2084. procedure tcallnode.verifyabstractcalls;
  2085. var
  2086. objectdf : tobjectdef;
  2087. parents : tlinkedlist;
  2088. objectinfo : tobjectinfoitem;
  2089. pd : tprocdef;
  2090. i : integer;
  2091. begin
  2092. objectdf := nil;
  2093. { verify if trying to create an instance of a class which contains
  2094. non-implemented abstract methods }
  2095. { first verify this class type, no class than exit }
  2096. { also, this checking can only be done if the constructor is directly
  2097. called, indirect constructor calls cannot be checked.
  2098. }
  2099. if assigned(methodpointer) and
  2100. not (nf_is_self in methodpointer.flags) then
  2101. begin
  2102. if (methodpointer.resultdef.typ = objectdef) then
  2103. objectdf:=tobjectdef(methodpointer.resultdef)
  2104. else
  2105. if (methodpointer.resultdef.typ = classrefdef) and
  2106. (tclassrefdef(methodpointer.resultdef).pointeddef.typ = objectdef) and
  2107. (methodpointer.nodetype in [typen,loadvmtaddrn]) then
  2108. objectdf:=tobjectdef(tclassrefdef(methodpointer.resultdef).pointeddef);
  2109. end;
  2110. if not assigned(objectdf) then
  2111. exit;
  2112. parents := tlinkedlist.create;
  2113. AbstractMethodsList := TFPHashList.create;
  2114. { insert all parents in this class : the first item in the
  2115. list will be the base parent of the class .
  2116. }
  2117. while assigned(objectdf) do
  2118. begin
  2119. objectinfo:=tobjectinfoitem.create(objectdf);
  2120. parents.insert(objectinfo);
  2121. objectdf := objectdf.childof;
  2122. end;
  2123. { now all parents are in the correct order
  2124. insert all abstract methods in the list, and remove
  2125. those which are overriden by parent classes.
  2126. }
  2127. objectinfo:=tobjectinfoitem(parents.first);
  2128. while assigned(objectinfo) do
  2129. begin
  2130. objectdf := objectinfo.objinfo;
  2131. if assigned(objectdf.symtable) then
  2132. objectdf.symtable.SymList.ForEachCall(@verifyabstract,nil);
  2133. objectinfo:=tobjectinfoitem(objectinfo.next);
  2134. end;
  2135. if assigned(parents) then
  2136. parents.free;
  2137. { Finally give out a warning for each abstract method still in the list }
  2138. for i:=0 to AbstractMethodsList.Count-1 do
  2139. begin
  2140. pd:=tprocdef(AbstractMethodsList[i]);
  2141. if po_abstractmethod in pd.procoptions then
  2142. begin
  2143. Message2(type_w_instance_with_abstract,objectdf.objrealname^,pd.procsym.RealName);
  2144. MessagePos1(pd.fileinfo,sym_h_abstract_method_list,pd.fullprocname(true));
  2145. end;
  2146. end;
  2147. if assigned(AbstractMethodsList) then
  2148. AbstractMethodsList.Free;
  2149. end;
  2150. procedure tcallnode.convert_carg_array_of_const;
  2151. var
  2152. hp : tarrayconstructornode;
  2153. oldleft : tcallparanode;
  2154. begin
  2155. oldleft:=tcallparanode(left);
  2156. if oldleft.left.nodetype<>arrayconstructorn then
  2157. begin
  2158. CGMessage1(type_e_wrong_type_in_array_constructor,oldleft.left.resultdef.typename);
  2159. exit;
  2160. end;
  2161. include(callnodeflags,cnf_uses_varargs);
  2162. { Get arrayconstructor node and insert typeconvs }
  2163. hp:=tarrayconstructornode(oldleft.left);
  2164. { Add c args parameters }
  2165. { It could be an empty set }
  2166. if assigned(hp) and
  2167. assigned(hp.left) then
  2168. begin
  2169. while assigned(hp) do
  2170. begin
  2171. left:=ccallparanode.create(hp.left,left);
  2172. { set callparanode resultdef and flags }
  2173. left.resultdef:=hp.left.resultdef;
  2174. include(tcallparanode(left).callparaflags,cpf_varargs_para);
  2175. hp.left:=nil;
  2176. hp:=tarrayconstructornode(hp.right);
  2177. end;
  2178. end;
  2179. { Remove value of old array of const parameter, but keep it
  2180. in the list because it is required for bind_parasym.
  2181. Generate a nothign to keep callparanoed.left valid }
  2182. oldleft.left.free;
  2183. oldleft.left:=cnothingnode.create;
  2184. end;
  2185. procedure tcallnode.bind_parasym;
  2186. type
  2187. pcallparanode = ^tcallparanode;
  2188. var
  2189. i : integer;
  2190. pt : tcallparanode;
  2191. oldppt : pcallparanode;
  2192. varargspara,
  2193. currpara : tparavarsym;
  2194. hiddentree : tnode;
  2195. begin
  2196. pt:=tcallparanode(left);
  2197. oldppt:=pcallparanode(@left);
  2198. { flag all callparanodes that belong to the varargs }
  2199. i:=paralength;
  2200. while (i>procdefinition.maxparacount) do
  2201. begin
  2202. include(pt.callparaflags,cpf_varargs_para);
  2203. oldppt:=pcallparanode(@pt.right);
  2204. pt:=tcallparanode(pt.right);
  2205. dec(i);
  2206. end;
  2207. { skip varargs that are inserted by array of const }
  2208. while assigned(pt) and
  2209. (cpf_varargs_para in pt.callparaflags) do
  2210. pt:=tcallparanode(pt.right);
  2211. { process normal parameters and insert hidden parameter nodes, the content
  2212. of the hidden parameters will be updated in pass1 }
  2213. for i:=procdefinition.paras.count-1 downto 0 do
  2214. begin
  2215. currpara:=tparavarsym(procdefinition.paras[i]);
  2216. if vo_is_hidden_para in currpara.varoptions then
  2217. begin
  2218. { Here we handle only the parameters that depend on
  2219. the types of the previous parameter. The typeconversion
  2220. can change the type in the next step. For example passing
  2221. an array can be change to a pointer and a deref }
  2222. if vo_is_high_para in currpara.varoptions then
  2223. begin
  2224. if not assigned(pt) or (i=0) then
  2225. internalerror(200304081);
  2226. { we need the information of the previous parameter }
  2227. hiddentree:=gen_high_tree(pt.left,tparavarsym(procdefinition.paras[i-1]).vardef);
  2228. end
  2229. else
  2230. if vo_is_typinfo_para in currpara.varoptions then
  2231. begin
  2232. if not assigned(pt) or (i=0) then
  2233. internalerror(200304082);
  2234. hiddentree:=caddrnode.create_internal(
  2235. crttinode.create(Tstoreddef(pt.resultdef),fullrtti,rdt_normal)
  2236. );
  2237. end
  2238. else
  2239. hiddentree:=cnothingnode.create;
  2240. pt:=ccallparanode.create(hiddentree,oldppt^);
  2241. oldppt^:=pt;
  2242. end;
  2243. if not assigned(pt) then
  2244. internalerror(200310052);
  2245. pt.parasym:=currpara;
  2246. oldppt:=pcallparanode(@pt.right);
  2247. pt:=tcallparanode(pt.right);
  2248. end;
  2249. { Create parasyms for varargs, first count the number of varargs paras,
  2250. then insert the parameters with numbering in reverse order. The SortParas
  2251. will set the correct order at the end}
  2252. pt:=tcallparanode(left);
  2253. i:=0;
  2254. while assigned(pt) do
  2255. begin
  2256. if cpf_varargs_para in pt.callparaflags then
  2257. inc(i);
  2258. pt:=tcallparanode(pt.right);
  2259. end;
  2260. if (i>0) then
  2261. begin
  2262. varargsparas:=tvarargsparalist.create;
  2263. pt:=tcallparanode(left);
  2264. while assigned(pt) do
  2265. begin
  2266. if cpf_varargs_para in pt.callparaflags then
  2267. begin
  2268. varargspara:=tparavarsym.create('va'+tostr(i),i,vs_value,pt.resultdef,[]);
  2269. dec(i);
  2270. { varargspara is left-right, use insert
  2271. instead of concat }
  2272. varargsparas.add(varargspara);
  2273. pt.parasym:=varargspara;
  2274. end;
  2275. pt:=tcallparanode(pt.right);
  2276. end;
  2277. varargsparas.sortparas;
  2278. end;
  2279. end;
  2280. function tcallnode.pass_typecheck:tnode;
  2281. var
  2282. candidates : tcallcandidates;
  2283. oldcallnode : tcallnode;
  2284. hpt : tnode;
  2285. pt : tcallparanode;
  2286. lastpara : longint;
  2287. paraidx,
  2288. cand_cnt : integer;
  2289. i : longint;
  2290. ignorevisibility,
  2291. is_const : boolean;
  2292. statements : tstatementnode;
  2293. converted_result_data : ttempcreatenode;
  2294. label
  2295. errorexit;
  2296. begin
  2297. result:=nil;
  2298. candidates:=nil;
  2299. oldcallnode:=aktcallnode;
  2300. aktcallnode:=self;
  2301. { determine length of parameter list }
  2302. pt:=tcallparanode(left);
  2303. paralength:=0;
  2304. while assigned(pt) do
  2305. begin
  2306. inc(paralength);
  2307. pt:=tcallparanode(pt.right);
  2308. end;
  2309. { determine the type of the parameters }
  2310. if assigned(left) then
  2311. begin
  2312. tcallparanode(left).get_paratype;
  2313. if codegenerror then
  2314. goto errorexit;
  2315. end;
  2316. if assigned(methodpointer) then
  2317. typecheckpass(methodpointer);
  2318. { procedure variable ? }
  2319. if assigned(right) then
  2320. begin
  2321. set_varstate(right,vs_read,[vsf_must_be_valid]);
  2322. typecheckpass(right);
  2323. if codegenerror then
  2324. exit;
  2325. procdefinition:=tabstractprocdef(right.resultdef);
  2326. { Compare parameters from right to left }
  2327. paraidx:=procdefinition.Paras.count-1;
  2328. { Skip default parameters }
  2329. if not(po_varargs in procdefinition.procoptions) then
  2330. begin
  2331. { ignore hidden parameters }
  2332. while (paraidx>=0) and (vo_is_hidden_para in tparavarsym(procdefinition.paras[paraidx]).varoptions) do
  2333. dec(paraidx);
  2334. for i:=1 to procdefinition.maxparacount-paralength do
  2335. begin
  2336. if paraidx<0 then
  2337. internalerror(200402261);
  2338. if not assigned(tparavarsym(procdefinition.paras[paraidx]).defaultconstsym) then
  2339. begin
  2340. CGMessage1(parser_e_wrong_parameter_size,'<Procedure Variable>');
  2341. goto errorexit;
  2342. end;
  2343. dec(paraidx);
  2344. end;
  2345. end;
  2346. while (paraidx>=0) and (vo_is_hidden_para in tparavarsym(procdefinition.paras[paraidx]).varoptions) do
  2347. dec(paraidx);
  2348. pt:=tcallparanode(left);
  2349. lastpara:=paralength;
  2350. while (paraidx>=0) and assigned(pt) do
  2351. begin
  2352. { only goto next para if we're out of the varargs }
  2353. if not(po_varargs in procdefinition.procoptions) or
  2354. (lastpara<=procdefinition.maxparacount) then
  2355. begin
  2356. repeat
  2357. dec(paraidx);
  2358. until (paraidx<0) or not(vo_is_hidden_para in tparavarsym(procdefinition.paras[paraidx]).varoptions);
  2359. end;
  2360. pt:=tcallparanode(pt.right);
  2361. dec(lastpara);
  2362. end;
  2363. if assigned(pt) or
  2364. ((paraidx>=0) and
  2365. not assigned(tparavarsym(procdefinition.paras[paraidx]).defaultconstsym)) then
  2366. begin
  2367. if assigned(pt) then
  2368. current_filepos:=pt.fileinfo;
  2369. CGMessage1(parser_e_wrong_parameter_size,'<Procedure Variable>');
  2370. goto errorexit;
  2371. end;
  2372. end
  2373. else
  2374. { not a procedure variable }
  2375. begin
  2376. { do we know the procedure to call ? }
  2377. if not(assigned(procdefinition)) then
  2378. begin
  2379. { ignore possible private for properties or in delphi mode for anon. inherited (FK) }
  2380. ignorevisibility:=(nf_isproperty in flags) or
  2381. ((m_delphi in current_settings.modeswitches) and (cnf_anon_inherited in callnodeflags));
  2382. candidates:=tcallcandidates.create(symtableprocentry,symtableproc,left,ignorevisibility,not(nf_isproperty in flags),cnf_objc_id_call in callnodeflags);
  2383. { no procedures found? then there is something wrong
  2384. with the parameter size or the procedures are
  2385. not accessible }
  2386. if candidates.count=0 then
  2387. begin
  2388. { when it's an auto inherited call and there
  2389. is no procedure found, but the procedures
  2390. were defined with overload directive and at
  2391. least two procedures are defined then we ignore
  2392. this inherited by inserting a nothingn. Only
  2393. do this ugly hack in Delphi mode as it looks more
  2394. like a bug. It's also not documented }
  2395. if (m_delphi in current_settings.modeswitches) and
  2396. (cnf_anon_inherited in callnodeflags) and
  2397. (symtableprocentry.owner.symtabletype=ObjectSymtable) and
  2398. (po_overload in tprocdef(symtableprocentry.ProcdefList[0]).procoptions) and
  2399. (symtableprocentry.ProcdefList.Count>=2) then
  2400. result:=cnothingnode.create
  2401. else
  2402. begin
  2403. { in tp mode we can try to convert to procvar if
  2404. there are no parameters specified }
  2405. if not(assigned(left)) and
  2406. not(cnf_inherited in callnodeflags) and
  2407. ((m_tp_procvar in current_settings.modeswitches) or
  2408. (m_mac_procvar in current_settings.modeswitches)) and
  2409. (not assigned(methodpointer) or
  2410. (methodpointer.nodetype <> typen)) then
  2411. begin
  2412. hpt:=cloadnode.create(tprocsym(symtableprocentry),symtableproc);
  2413. if assigned(methodpointer) then
  2414. tloadnode(hpt).set_mp(methodpointer.getcopy);
  2415. typecheckpass(hpt);
  2416. result:=hpt;
  2417. end
  2418. else
  2419. begin
  2420. CGMessagePos1(fileinfo,parser_e_wrong_parameter_size,symtableprocentry.realname);
  2421. symtableprocentry.write_parameter_lists(nil);
  2422. end;
  2423. end;
  2424. candidates.free;
  2425. goto errorexit;
  2426. end;
  2427. { Retrieve information about the candidates }
  2428. candidates.get_information;
  2429. {$ifdef EXTDEBUG}
  2430. { Display info when multiple candidates are found }
  2431. if candidates.count>1 then
  2432. candidates.dump_info(V_Debug);
  2433. {$endif EXTDEBUG}
  2434. { Choose the best candidate and count the number of
  2435. candidates left }
  2436. cand_cnt:=candidates.choose_best(procdefinition,
  2437. assigned(left) and
  2438. not assigned(tcallparanode(left).right) and
  2439. (tcallparanode(left).left.resultdef.typ=variantdef));
  2440. { All parameters are checked, check if there are any
  2441. procedures left }
  2442. if cand_cnt>0 then
  2443. begin
  2444. { Multiple candidates left? }
  2445. if cand_cnt>1 then
  2446. begin
  2447. CGMessage(type_e_cant_choose_overload_function);
  2448. {$ifdef EXTDEBUG}
  2449. candidates.dump_info(V_Hint);
  2450. {$else EXTDEBUG}
  2451. candidates.list(false);
  2452. {$endif EXTDEBUG}
  2453. { we'll just use the first candidate to make the
  2454. call }
  2455. end;
  2456. { assign procdefinition }
  2457. if symtableproc=nil then
  2458. symtableproc:=procdefinition.owner;
  2459. end
  2460. else
  2461. begin
  2462. { No candidates left, this must be a type error,
  2463. because wrong size is already checked. procdefinition
  2464. is filled with the first (random) definition that is
  2465. found. We use this definition to display a nice error
  2466. message that the wrong type is passed }
  2467. candidates.find_wrong_para;
  2468. candidates.list(true);
  2469. {$ifdef EXTDEBUG}
  2470. candidates.dump_info(V_Hint);
  2471. {$endif EXTDEBUG}
  2472. { We can not proceed, release all procs and exit }
  2473. candidates.free;
  2474. goto errorexit;
  2475. end;
  2476. candidates.free;
  2477. end; { end of procedure to call determination }
  2478. end;
  2479. { check for hints (deprecated etc) }
  2480. if (procdefinition.typ = procdef) then
  2481. check_hints(tprocdef(procdefinition).procsym,tprocdef(procdefinition).symoptions,tprocdef(procdefinition).deprecatedmsg);
  2482. { add needed default parameters }
  2483. if assigned(procdefinition) and
  2484. (paralength<procdefinition.maxparacount) then
  2485. begin
  2486. paraidx:=0;
  2487. i:=0;
  2488. while (i<paralength) do
  2489. begin
  2490. if paraidx>=procdefinition.Paras.count then
  2491. internalerror(200306181);
  2492. if not(vo_is_hidden_para in tparavarsym(procdefinition.paras[paraidx]).varoptions) then
  2493. inc(i);
  2494. inc(paraidx);
  2495. end;
  2496. while (paraidx<procdefinition.paras.count) and (vo_is_hidden_para in tparavarsym(procdefinition.paras[paraidx]).varoptions) do
  2497. inc(paraidx);
  2498. while (paraidx<procdefinition.paras.count) do
  2499. begin
  2500. if not assigned(tparavarsym(procdefinition.paras[paraidx]).defaultconstsym) then
  2501. internalerror(200212142);
  2502. left:=ccallparanode.create(genconstsymtree(
  2503. tconstsym(tparavarsym(procdefinition.paras[paraidx]).defaultconstsym)),left);
  2504. { Ignore vs_hidden parameters }
  2505. repeat
  2506. inc(paraidx);
  2507. until (paraidx>=procdefinition.paras.count) or not(vo_is_hidden_para in tparavarsym(procdefinition.paras[paraidx]).varoptions);
  2508. end;
  2509. end;
  2510. { recursive call? }
  2511. if assigned(current_procinfo) and
  2512. (procdefinition=current_procinfo.procdef) then
  2513. include(current_procinfo.flags,pi_is_recursive);
  2514. { handle predefined procedures }
  2515. is_const:=(po_internconst in procdefinition.procoptions) and
  2516. ((block_type in [bt_const,bt_type,bt_const_type,bt_var_type]) or
  2517. (assigned(left) and (tcallparanode(left).left.nodetype in [realconstn,ordconstn])));
  2518. if (procdefinition.proccalloption=pocall_internproc) or is_const then
  2519. begin
  2520. if assigned(left) then
  2521. begin
  2522. { ptr and settextbuf needs two args }
  2523. if assigned(tcallparanode(left).right) then
  2524. begin
  2525. hpt:=geninlinenode(tprocdef(procdefinition).extnumber,is_const,left);
  2526. left:=nil;
  2527. end
  2528. else
  2529. begin
  2530. hpt:=geninlinenode(tprocdef(procdefinition).extnumber,is_const,tcallparanode(left).left);
  2531. tcallparanode(left).left:=nil;
  2532. end;
  2533. end
  2534. else
  2535. hpt:=geninlinenode(tprocdef(procdefinition).extnumber,is_const,nil);
  2536. result:=hpt;
  2537. goto errorexit;
  2538. end;
  2539. { ensure that the result type is set }
  2540. if not(cnf_typedefset in callnodeflags) then
  2541. begin
  2542. { constructors return their current class type, not the type where the
  2543. constructor is declared, this can be different because of inheritance }
  2544. if (procdefinition.proctypeoption=potype_constructor) and
  2545. assigned(methodpointer) and
  2546. assigned(methodpointer.resultdef) and
  2547. (methodpointer.resultdef.typ=classrefdef) then
  2548. resultdef:=tclassrefdef(methodpointer.resultdef).pointeddef
  2549. else
  2550. { Member call to a (inherited) constructor from the class, the return
  2551. value is always self, so we change it to voidtype to generate an
  2552. error and to prevent users from generating non-working code
  2553. when they expect to clone the current instance, see bug 3662 (PFV) }
  2554. if (procdefinition.proctypeoption=potype_constructor) and
  2555. is_class(tprocdef(procdefinition)._class) and
  2556. assigned(methodpointer) and
  2557. (nf_is_self in methodpointer.flags) then
  2558. resultdef:=voidtype
  2559. else
  2560. resultdef:=procdefinition.returndef;
  2561. end
  2562. else
  2563. resultdef:=typedef;
  2564. { Check object/class for methods }
  2565. if assigned(methodpointer) then
  2566. begin
  2567. { direct call to inherited abstract method, then we
  2568. can already give a error in the compiler instead
  2569. of a runtime error }
  2570. if (cnf_inherited in callnodeflags) and
  2571. (po_abstractmethod in procdefinition.procoptions) then
  2572. begin
  2573. if (m_delphi in current_settings.modeswitches) and
  2574. (cnf_anon_inherited in callnodeflags) then
  2575. begin
  2576. CGMessage(cg_h_inherited_ignored);
  2577. result:=cnothingnode.create;
  2578. exit;
  2579. end
  2580. else
  2581. CGMessage(cg_e_cant_call_abstract_method);
  2582. end;
  2583. { if an inherited con- or destructor should be }
  2584. { called in a con- or destructor then a warning }
  2585. { will be made }
  2586. { con- and destructors need a pointer to the vmt }
  2587. if (cnf_inherited in callnodeflags) and
  2588. (procdefinition.proctypeoption in [potype_constructor,potype_destructor]) and
  2589. is_object(methodpointer.resultdef) and
  2590. not(current_procinfo.procdef.proctypeoption in [potype_constructor,potype_destructor]) then
  2591. CGMessage(cg_w_member_cd_call_from_method);
  2592. if methodpointer.nodetype<>typen then
  2593. begin
  2594. { Remove all postfix operators }
  2595. hpt:=methodpointer;
  2596. while assigned(hpt) and (hpt.nodetype in [subscriptn,vecn]) do
  2597. hpt:=tunarynode(hpt).left;
  2598. if ((hpt.nodetype=loadvmtaddrn) or
  2599. ((hpt.nodetype=loadn) and assigned(tloadnode(hpt).resultdef) and (tloadnode(hpt).resultdef.typ=classrefdef))) and
  2600. not (procdefinition.proctypeoption=potype_constructor) and
  2601. not (po_classmethod in procdefinition.procoptions) and
  2602. not (po_staticmethod in procdefinition.procoptions) then
  2603. { error: we are calling instance method from the class method/static method }
  2604. CGMessage(parser_e_only_class_members);
  2605. if (procdefinition.proctypeoption=potype_constructor) and
  2606. assigned(symtableproc) and
  2607. (symtableproc.symtabletype=withsymtable) and
  2608. (tnode(twithsymtable(symtableproc).withrefnode).nodetype=temprefn) then
  2609. CGmessage(cg_e_cannot_call_cons_dest_inside_with);
  2610. { R.Init then R will be initialized by the constructor,
  2611. Also allow it for simple loads }
  2612. if (procdefinition.proctypeoption=potype_constructor) or
  2613. ((hpt.nodetype=loadn) and
  2614. (methodpointer.resultdef.typ=objectdef) and
  2615. not(oo_has_virtual in tobjectdef(methodpointer.resultdef).objectoptions)
  2616. ) then
  2617. { a constructor will and a method may write something to }
  2618. { the fields }
  2619. set_varstate(methodpointer,vs_readwritten,[])
  2620. else
  2621. set_varstate(methodpointer,vs_read,[vsf_must_be_valid]);
  2622. end;
  2623. { if we are calling the constructor check for abstract
  2624. methods. Ignore inherited and member calls, because the
  2625. class is then already created }
  2626. if (procdefinition.proctypeoption=potype_constructor) and
  2627. not(cnf_inherited in callnodeflags) and
  2628. not(cnf_member_call in callnodeflags) then
  2629. verifyabstractcalls;
  2630. end
  2631. else
  2632. begin
  2633. { When this is method the methodpointer must be available }
  2634. if (right=nil) and
  2635. (procdefinition.owner.symtabletype=ObjectSymtable) and
  2636. not([po_staticmethod,po_classmethod] <= procdefinition.procoptions) then
  2637. internalerror(200305061);
  2638. end;
  2639. { Set flag that the procedure uses varargs, also if they are not passed it is still
  2640. needed for x86_64 to pass the number of SSE registers used }
  2641. if po_varargs in procdefinition.procoptions then
  2642. include(callnodeflags,cnf_uses_varargs);
  2643. { Change loading of array of const to varargs }
  2644. if assigned(left) and
  2645. is_array_of_const(tparavarsym(procdefinition.paras[procdefinition.paras.count-1]).vardef) and
  2646. (procdefinition.proccalloption in [pocall_cppdecl,pocall_cdecl]) then
  2647. convert_carg_array_of_const;
  2648. { bind parasyms to the callparanodes and insert hidden parameters }
  2649. bind_parasym;
  2650. { insert type conversions for parameters }
  2651. if assigned(left) then
  2652. tcallparanode(left).insert_typeconv;
  2653. { dispinterface methode invoke? }
  2654. if assigned(methodpointer) and is_dispinterface(methodpointer.resultdef) then
  2655. begin
  2656. { if the result is used, we've to insert a call to convert the type to be on the "safe side" }
  2657. if (cnf_return_value_used in callnodeflags) and not is_void(procdefinition.returndef) then
  2658. begin
  2659. result:=internalstatements(statements);
  2660. converted_result_data:=ctempcreatenode.create(procdefinition.returndef,sizeof(procdefinition.returndef),tt_persistent,true);
  2661. addstatement(statements,converted_result_data);
  2662. addstatement(statements,cassignmentnode.create(ctemprefnode.create(converted_result_data),
  2663. ctypeconvnode.create_internal(translate_disp_call(methodpointer,parameters,nil,'',tprocdef(procdefinition).dispid,procdefinition.returndef),
  2664. procdefinition.returndef)));
  2665. addstatement(statements,ctempdeletenode.create_normal_temp(converted_result_data));
  2666. addstatement(statements,ctemprefnode.create(converted_result_data));
  2667. end
  2668. else
  2669. result:=translate_disp_call(methodpointer,parameters,nil,'',tprocdef(procdefinition).dispid,voidtype);
  2670. { don't free reused nodes }
  2671. methodpointer:=nil;
  2672. parameters:=nil;
  2673. end;
  2674. errorexit:
  2675. aktcallnode:=oldcallnode;
  2676. end;
  2677. procedure tcallnode.order_parameters;
  2678. var
  2679. hp,hpcurr,hpnext,hpfirst,hpprev : tcallparanode;
  2680. currloc : tcgloc;
  2681. begin
  2682. hpfirst:=nil;
  2683. hpcurr:=tcallparanode(left);
  2684. while assigned(hpcurr) do
  2685. begin
  2686. { pull out }
  2687. hpnext:=tcallparanode(hpcurr.right);
  2688. { pull in at the correct place.
  2689. Used order:
  2690. 1. LOC_REFERENCE with smallest offset (i386 only)
  2691. 2. LOC_REFERENCE with least complexity (non-i386 only)
  2692. 3. LOC_REFERENCE with most complexity (non-i386 only)
  2693. 4. LOC_REGISTER with most complexity
  2694. 5. LOC_REGISTER with least complexity
  2695. For the moment we only look at the first parameter field. Combining it
  2696. with multiple parameter fields will make things a lot complexer (PFV)
  2697. The reason for the difference regarding complexity ordering
  2698. between LOC_REFERENCE and LOC_REGISTER is mainly for calls:
  2699. we first want to treat the LOC_REFERENCE destinations whose
  2700. calculation does not require a call, because their location
  2701. may contain registers which might otherwise have to be saved
  2702. if a call has to be evaluated first. The calculated value is
  2703. stored on the stack and will thus no longer occupy any
  2704. register.
  2705. Similarly, for the register parameters we first want to
  2706. evaluate the calls, because otherwise the already loaded
  2707. register parameters will have to be saved so the intermediate
  2708. call can be evaluated (JM) }
  2709. if not assigned(hpcurr.parasym.paraloc[callerside].location) then
  2710. internalerror(200412152);
  2711. currloc:=hpcurr.parasym.paraloc[callerside].location^.loc;
  2712. hpprev:=nil;
  2713. hp:=hpfirst;
  2714. while assigned(hp) do
  2715. begin
  2716. case currloc of
  2717. LOC_REFERENCE :
  2718. begin
  2719. case hp.parasym.paraloc[callerside].location^.loc of
  2720. LOC_REFERENCE :
  2721. begin
  2722. { Offset is calculated like:
  2723. sub esp,12
  2724. mov [esp+8],para3
  2725. mov [esp+4],para2
  2726. mov [esp],para1
  2727. call function
  2728. That means the for pushes the para with the
  2729. highest offset (see para3) needs to be pushed first
  2730. }
  2731. {$ifdef i386}
  2732. { the i386 code generator expects all reference }
  2733. { parameter to be in this order so it can use }
  2734. { pushes }
  2735. if (hpcurr.parasym.paraloc[callerside].location^.reference.offset>hp.parasym.paraloc[callerside].location^.reference.offset) then
  2736. {$else i386}
  2737. if (node_complexity(hpcurr)<node_complexity(hp)) then
  2738. {$endif i386}
  2739. break;
  2740. end;
  2741. LOC_MMREGISTER,
  2742. LOC_REGISTER,
  2743. LOC_FPUREGISTER :
  2744. break;
  2745. end;
  2746. end;
  2747. LOC_MMREGISTER,
  2748. LOC_FPUREGISTER,
  2749. LOC_REGISTER :
  2750. begin
  2751. if (hp.parasym.paraloc[callerside].location^.loc<>LOC_REFERENCE) and
  2752. (node_complexity(hpcurr)>node_complexity(hp)) then
  2753. break;
  2754. end;
  2755. end;
  2756. hpprev:=hp;
  2757. hp:=tcallparanode(hp.right);
  2758. end;
  2759. hpcurr.right:=hp;
  2760. if assigned(hpprev) then
  2761. hpprev.right:=hpcurr
  2762. else
  2763. hpfirst:=hpcurr;
  2764. { next }
  2765. hpcurr:=hpnext;
  2766. end;
  2767. left:=hpfirst;
  2768. end;
  2769. procedure tcallnode.check_stack_parameters;
  2770. var
  2771. hp : tcallparanode;
  2772. begin
  2773. hp:=tcallparanode(left);
  2774. while assigned(hp) do
  2775. begin
  2776. if assigned(hp.parasym) and
  2777. assigned(hp.parasym.paraloc[callerside].location) and
  2778. (hp.parasym.paraloc[callerside].location^.loc=LOC_REFERENCE) then
  2779. include(current_procinfo.flags,pi_has_stackparameter);
  2780. hp:=tcallparanode(hp.right);
  2781. end;
  2782. end;
  2783. procedure tcallnode.check_inlining;
  2784. var
  2785. st : tsymtable;
  2786. para : tcallparanode;
  2787. begin
  2788. { Can we inline the procedure? }
  2789. if ([po_inline,po_has_inlininginfo] <= procdefinition.procoptions) then
  2790. begin
  2791. include(callnodeflags,cnf_do_inline);
  2792. { Check if we can inline the procedure when it references proc/var that
  2793. are not in the globally available }
  2794. st:=procdefinition.owner;
  2795. if (st.symtabletype=ObjectSymtable) then
  2796. st:=st.defowner.owner;
  2797. if (pi_uses_static_symtable in tprocdef(procdefinition).inlininginfo^.flags) and
  2798. (st.symtabletype=globalsymtable) and
  2799. (not st.iscurrentunit) then
  2800. begin
  2801. Comment(V_lineinfo+V_Debug,'Not inlining "'+tprocdef(procdefinition).procsym.realname+'", references static symtable');
  2802. exclude(callnodeflags,cnf_do_inline);
  2803. end;
  2804. para:=tcallparanode(parameters);
  2805. while assigned(para) do
  2806. begin
  2807. if not para.can_be_inlined then
  2808. begin
  2809. Comment(V_lineinfo+V_Debug,'Not inlining "'+tprocdef(procdefinition).procsym.realname+'", invocation parameter contains an unsafe/unsupported construct');
  2810. exclude(callnodeflags,cnf_do_inline);
  2811. break;
  2812. end;
  2813. para:=tcallparanode(para.nextpara);
  2814. end;
  2815. end;
  2816. end;
  2817. function tcallnode.pass_1 : tnode;
  2818. begin
  2819. result:=nil;
  2820. { convert Objective-C calls into a message call }
  2821. if (procdefinition.typ=procdef) and
  2822. (po_objc in tprocdef(procdefinition).procoptions) then
  2823. begin
  2824. if not(cnf_objc_processed in callnodeflags) then
  2825. objc_convert_to_message_send;
  2826. end
  2827. else
  2828. begin
  2829. { The following don't apply to obj-c: obj-c methods can never be
  2830. inlined because they're always virtual and the destination can
  2831. change at run, and for the same reason we also can't perform
  2832. WPO on them (+ they have no constructors) }
  2833. { Check if the call can be inlined, sets the cnf_do_inline flag }
  2834. check_inlining;
  2835. { must be called before maybe_load_in_temp(methodpointer), because
  2836. it converts the methodpointer into a temp in case it's a call
  2837. (and we want to know the original call)
  2838. }
  2839. register_created_object_types;
  2840. end;
  2841. { Maybe optimize the loading of the methodpointer using a temp. When the methodpointer
  2842. is a calln this is even required to not execute the calln twice.
  2843. This needs to be done after the resulttype pass, because in the resulttype we can still convert the
  2844. calln to a loadn (PFV) }
  2845. if assigned(methodpointer) then
  2846. maybe_load_in_temp(methodpointer);
  2847. { Create destination (temp or assignment-variable reuse) for function result if it not yet set }
  2848. maybe_create_funcret_node;
  2849. { Insert the self,vmt,function result in the parameters }
  2850. gen_hidden_parameters;
  2851. { Remove useless nodes from init/final blocks }
  2852. { (simplify depends on typecheck info) }
  2853. if assigned(callinitblock) then
  2854. begin
  2855. typecheckpass(tnode(callinitblock));
  2856. dosimplify(tnode(callinitblock));
  2857. end;
  2858. if assigned(callcleanupblock) then
  2859. begin
  2860. typecheckpass(tnode(callcleanupblock));
  2861. dosimplify(tnode(callcleanupblock));
  2862. end;
  2863. { Continue with checking a normal call or generate the inlined code }
  2864. if cnf_do_inline in callnodeflags then
  2865. result:=pass1_inline
  2866. else
  2867. result:=pass1_normal;
  2868. end;
  2869. function tcallnode.pass1_normal : tnode;
  2870. begin
  2871. result:=nil;
  2872. { calculate the parameter info for the procdef }
  2873. if not procdefinition.has_paraloc_info then
  2874. begin
  2875. procdefinition.requiredargarea:=paramanager.create_paraloc_info(procdefinition,callerside);
  2876. procdefinition.has_paraloc_info:=true;
  2877. end;
  2878. { calculate the parameter size needed for this call include varargs if they are available }
  2879. if assigned(varargsparas) then
  2880. pushedparasize:=paramanager.create_varargs_paraloc_info(procdefinition,varargsparas)
  2881. else
  2882. pushedparasize:=procdefinition.requiredargarea;
  2883. { record maximum parameter size used in this proc }
  2884. current_procinfo.allocate_push_parasize(pushedparasize);
  2885. { check for stacked parameters }
  2886. if assigned(left) and
  2887. (current_settings.optimizerswitches*[cs_opt_stackframe,cs_opt_level1]<>[]) then
  2888. check_stack_parameters;
  2889. if assigned(callinitblock) then
  2890. firstpass(tnode(callinitblock));
  2891. { function result node (tempref or simple load) }
  2892. if assigned(funcretnode) then
  2893. firstpass(funcretnode);
  2894. { parameters }
  2895. if assigned(left) then
  2896. tcallparanode(left).firstcallparan;
  2897. { procedure variable ? }
  2898. if assigned(right) then
  2899. firstpass(right);
  2900. if assigned(methodpointer) and
  2901. (methodpointer.nodetype<>typen) then
  2902. firstpass(methodpointer);
  2903. if assigned(callcleanupblock) then
  2904. firstpass(tnode(callcleanupblock));
  2905. if not (block_type in [bt_const,bt_type,bt_const_type,bt_var_type]) then
  2906. include(current_procinfo.flags,pi_do_call);
  2907. { order parameters }
  2908. order_parameters;
  2909. { get a register for the return value }
  2910. if (not is_void(resultdef)) then
  2911. begin
  2912. if paramanager.ret_in_param(resultdef,procdefinition.proccalloption) then
  2913. begin
  2914. expectloc:=LOC_REFERENCE;
  2915. end
  2916. else
  2917. { ansi/widestrings must be registered, so we can dispose them }
  2918. if is_ansistring(resultdef) or
  2919. is_widestring(resultdef) or
  2920. is_unicodestring(resultdef) then
  2921. begin
  2922. expectloc:=LOC_REFERENCE;
  2923. end
  2924. else
  2925. { we have only to handle the result if it is used }
  2926. if (cnf_return_value_used in callnodeflags) then
  2927. begin
  2928. case resultdef.typ of
  2929. enumdef,
  2930. orddef :
  2931. begin
  2932. expectloc:=LOC_REGISTER;
  2933. end;
  2934. floatdef :
  2935. begin
  2936. expectloc:=LOC_FPUREGISTER;
  2937. end;
  2938. else
  2939. begin
  2940. expectloc:=procdefinition.funcretloc[callerside].loc;
  2941. end;
  2942. end;
  2943. end
  2944. else
  2945. expectloc:=LOC_VOID;
  2946. end
  2947. else
  2948. expectloc:=LOC_VOID;
  2949. end;
  2950. {$ifdef state_tracking}
  2951. function Tcallnode.track_state_pass(exec_known:boolean):boolean;
  2952. var hp:Tcallparanode;
  2953. value:Tnode;
  2954. begin
  2955. track_state_pass:=false;
  2956. hp:=Tcallparanode(left);
  2957. while assigned(hp) do
  2958. begin
  2959. if left.track_state_pass(exec_known) then
  2960. begin
  2961. left.resultdef:=nil;
  2962. do_typecheckpass(left);
  2963. end;
  2964. value:=aktstate.find_fact(hp.left);
  2965. if value<>nil then
  2966. begin
  2967. track_state_pass:=true;
  2968. hp.left.destroy;
  2969. hp.left:=value.getcopy;
  2970. do_typecheckpass(hp.left);
  2971. end;
  2972. hp:=Tcallparanode(hp.right);
  2973. end;
  2974. end;
  2975. {$endif}
  2976. {**************************************************************************
  2977. INLINING SUPPORT
  2978. **************************************************************************}
  2979. function tcallnode.replaceparaload(var n: tnode; arg: pointer): foreachnoderesult;
  2980. var
  2981. paras: tcallparanode;
  2982. temp: tnode;
  2983. indexnr : integer;
  2984. begin
  2985. result := fen_false;
  2986. n.fileinfo := pfileposinfo(arg)^;
  2987. if (n.nodetype = loadn) then
  2988. begin
  2989. case tloadnode(n).symtableentry.typ of
  2990. paravarsym :
  2991. begin
  2992. paras := tcallparanode(left);
  2993. while assigned(paras) and
  2994. (paras.parasym <> tloadnode(n).symtableentry) do
  2995. paras := tcallparanode(paras.right);
  2996. if assigned(paras) then
  2997. begin
  2998. n.free;
  2999. n := paras.left.getcopy;
  3000. typecheckpass(n);
  3001. result := fen_true;
  3002. end;
  3003. end;
  3004. localvarsym :
  3005. begin
  3006. { local? }
  3007. if (tloadnode(n).symtableentry.owner <> tprocdef(procdefinition).localst) then
  3008. exit;
  3009. indexnr:=tloadnode(n).symtableentry.owner.SymList.IndexOf(tloadnode(n).symtableentry);
  3010. if (indexnr >= inlinelocals.count) or
  3011. not assigned(inlinelocals[indexnr]) then
  3012. internalerror(20040720);
  3013. temp := tnode(inlinelocals[indexnr]).getcopy;
  3014. n.free;
  3015. n := temp;
  3016. typecheckpass(n);
  3017. result := fen_true;
  3018. end;
  3019. end;
  3020. end;
  3021. end;
  3022. procedure tcallnode.createlocaltemps(p:TObject;arg:pointer);
  3023. var
  3024. tempnode: ttempcreatenode;
  3025. indexnr : integer;
  3026. begin
  3027. if (TSym(p).typ <> localvarsym) then
  3028. exit;
  3029. indexnr:=TSym(p).Owner.SymList.IndexOf(p);
  3030. if (indexnr >= inlinelocals.count) then
  3031. inlinelocals.count:=indexnr+10;
  3032. if (vo_is_funcret in tabstractvarsym(p).varoptions) then
  3033. begin
  3034. if not assigned(funcretnode) then
  3035. internalerror(200709081);
  3036. inlinelocals[indexnr] := funcretnode.getcopy
  3037. end
  3038. else
  3039. begin
  3040. tempnode :=ctempcreatenode.create(tabstractvarsym(p).vardef,tabstractvarsym(p).vardef.size,tt_persistent,tabstractvarsym(p).is_regvar(false));
  3041. addstatement(inlineinitstatement,tempnode);
  3042. addstatement(inlinecleanupstatement,ctempdeletenode.create(tempnode));
  3043. { inherit addr_taken flag }
  3044. if (tabstractvarsym(p).addr_taken) then
  3045. include(tempnode.tempinfo^.flags,ti_addr_taken);
  3046. inlinelocals[indexnr] := ctemprefnode.create(tempnode);
  3047. end;
  3048. end;
  3049. function nonlocalvars(var n: tnode; arg: pointer): foreachnoderesult;
  3050. begin
  3051. result := fen_false;
  3052. { this is just to play it safe, there are more safe situations }
  3053. if (n.nodetype = derefn) or
  3054. ((n.nodetype = loadn) and
  3055. { globals and fields of (possibly global) objects could always be changed in the callee }
  3056. ((tloadnode(n).symtable.symtabletype in [globalsymtable,ObjectSymtable]) or
  3057. { statics can only be modified by functions in the same unit }
  3058. ((tloadnode(n).symtable.symtabletype = staticsymtable) and
  3059. (tloadnode(n).symtable = TSymtable(arg))))) or
  3060. ((n.nodetype = subscriptn) and
  3061. (tsubscriptnode(n).vs.owner.symtabletype = ObjectSymtable)) then
  3062. result := fen_norecurse_true;
  3063. end;
  3064. procedure tcallnode.createinlineparas;
  3065. var
  3066. para: tcallparanode;
  3067. tempnode: ttempcreatenode;
  3068. n: tnode;
  3069. paraaddr: taddrnode;
  3070. ptrtype: tpointerdef;
  3071. paracomplexity: longint;
  3072. begin
  3073. { parameters }
  3074. para := tcallparanode(left);
  3075. while assigned(para) do
  3076. begin
  3077. if (para.parasym.typ = paravarsym) then
  3078. begin
  3079. { must take copy of para.left, because if it contains a }
  3080. { temprefn pointing to a copied temp (e.g. methodpointer), }
  3081. { then this parameter must be changed to point to the copy of }
  3082. { that temp (JM) }
  3083. n := para.left.getcopy;
  3084. para.left.free;
  3085. para.left := n;
  3086. firstpass(para.left);
  3087. { create temps for value parameters, function result and also for }
  3088. { const parameters which are passed by value instead of by reference }
  3089. { we need to take care that we use the type of the defined parameter and not of the
  3090. passed parameter, because these can be different in case of a formaldef (PFV) }
  3091. paracomplexity := node_complexity(para.left);
  3092. { check if we have to create a temp, assign the parameter's }
  3093. { contents to that temp and then substitute the paramter }
  3094. { with the temp everywhere in the function }
  3095. if
  3096. ((tparavarsym(para.parasym).varregable in [vr_none,vr_addr]) and
  3097. not(para.left.expectloc in [LOC_REFERENCE,LOC_CREFERENCE])) or
  3098. { we can't assign to formaldef temps }
  3099. ((para.parasym.vardef.typ<>formaldef) and
  3100. (
  3101. { if paracomplexity > 1, we normally take the address of }
  3102. { the parameter expression, store it in a temp and }
  3103. { substitute the dereferenced temp in the inlined function }
  3104. { We can't do this if we can't take the address of the }
  3105. { parameter expression, so in that case assign to a temp }
  3106. not(para.left.expectloc in [LOC_REFERENCE,LOC_CREFERENCE,LOC_CONSTANT]) or
  3107. ((paracomplexity > 1) and
  3108. (not valid_for_addr(para.left,false) or
  3109. (para.left.nodetype = calln) or
  3110. is_constnode(para.left))) or
  3111. { we do not need to create a temp for value parameters }
  3112. { which are not modified in the inlined function }
  3113. { const parameters can get vs_readwritten if their }
  3114. { address is taken }
  3115. ((((para.parasym.varspez = vs_value) and
  3116. (para.parasym.varstate in [vs_initialised,vs_declared,vs_read])) or
  3117. { in case of const, this is only necessary if the }
  3118. { variable would be passed by value normally, or if }
  3119. { there is such a variable somewhere in an expression }
  3120. ((para.parasym.varspez = vs_const) and
  3121. (not paramanager.push_addr_param(vs_const,para.parasym.vardef,procdefinition.proccalloption) or
  3122. (paracomplexity > 1)))) and
  3123. { however, if we pass a global variable, an object field or}
  3124. { an expression containing a pointer dereference as }
  3125. { parameter, this value could be modified in other ways as }
  3126. { well and in such cases create a temp to be on the safe }
  3127. { side }
  3128. foreachnodestatic(para.left,@nonlocalvars,pointer(symtableproc))) or
  3129. { value parameters of which we know they are modified by }
  3130. { definition have to be copied to a temp }
  3131. { the same goes for cases of "x:=f(x)" where x is passed }
  3132. { as value parameter to f(), at least if we optimized }
  3133. { invocation by setting the funcretnode to x to avoid }
  3134. { assignment afterwards (since x may be read inside the }
  3135. { function after it modified result==x) }
  3136. ((para.parasym.varspez = vs_value) and
  3137. (not(para.parasym.varstate in [vs_initialised,vs_declared,vs_read]) or
  3138. (assigned(aktassignmentnode) and
  3139. (aktassignmentnode.right=self) and
  3140. (nf_assign_done_in_right in aktassignmentnode.flags) and
  3141. aktassignmentnode.left.isequal(para.left)))) or
  3142. { the compiler expects that it can take the address of parameters passed by reference in
  3143. the case of const so we can't replace the node simply by a constant node
  3144. When playing with this code, ensure that
  3145. function f(const a,b : longint) : longint;inline;
  3146. begin
  3147. result:=a*b;
  3148. end;
  3149. [...]
  3150. ...:=f(10,20));
  3151. [...]
  3152. is still folded. (FK)
  3153. }
  3154. ((para.parasym.varspez = vs_const) and
  3155. { const para's can get vs_readwritten if their address }
  3156. { is taken }
  3157. ((para.parasym.varstate = vs_readwritten) or
  3158. { call-by-reference const's may need to be passed by }
  3159. { reference to function called in the inlined code }
  3160. (paramanager.push_addr_param(vs_const,para.parasym.vardef,procdefinition.proccalloption) and
  3161. not valid_for_addr(para.left,false))
  3162. ))
  3163. )
  3164. ) then
  3165. begin
  3166. if para.left.nodetype<>temprefn then
  3167. begin
  3168. tempnode := ctempcreatenode.create(para.parasym.vardef,para.parasym.vardef.size,tt_persistent,tparavarsym(para.parasym).is_regvar(false));
  3169. addstatement(inlineinitstatement,tempnode);
  3170. addstatement(inlinecleanupstatement,ctempdeletenode.create(tempnode));
  3171. addstatement(inlineinitstatement,cassignmentnode.create(ctemprefnode.create(tempnode),
  3172. para.left));
  3173. para.left := ctemprefnode.create(tempnode);
  3174. { inherit addr_taken flag }
  3175. if (tabstractvarsym(para.parasym).addr_taken) then
  3176. include(tempnode.tempinfo^.flags,ti_addr_taken);
  3177. end;
  3178. end
  3179. { otherwise if the parameter is "complex", take the address }
  3180. { of the parameter expression, store it in a temp and replace }
  3181. { occurrences of the parameter with dereferencings of this }
  3182. { temp }
  3183. else if (paracomplexity > 1) then
  3184. begin
  3185. ptrtype:=tpointerdef.create(para.left.resultdef);
  3186. tempnode := ctempcreatenode.create(ptrtype,ptrtype.size,tt_persistent,tparavarsym(para.parasym).is_regvar(true));
  3187. addstatement(inlineinitstatement,tempnode);
  3188. addstatement(inlinecleanupstatement,ctempdeletenode.create(tempnode));
  3189. { inherit addr_taken flag }
  3190. if (tabstractvarsym(para.parasym).addr_taken) then
  3191. include(tempnode.tempinfo^.flags,ti_addr_taken);
  3192. paraaddr:=caddrnode.create_internal(para.left);
  3193. include(paraaddr.flags,nf_typedaddr);
  3194. addstatement(inlineinitstatement,cassignmentnode.create(ctemprefnode.create(tempnode),
  3195. paraaddr));
  3196. para.left:=cderefnode.create(ctemprefnode.create(tempnode));
  3197. end;
  3198. end;
  3199. para := tcallparanode(para.right);
  3200. end;
  3201. { local variables }
  3202. if not assigned(tprocdef(procdefinition).localst) or
  3203. (tprocdef(procdefinition).localst.SymList.count = 0) then
  3204. exit;
  3205. inlinelocals.count:=tprocdef(procdefinition).localst.SymList.count;
  3206. tprocdef(procdefinition).localst.SymList.ForEachCall(@createlocaltemps,nil);
  3207. end;
  3208. function tcallnode.optimize_funcret_assignment(inlineblock: tblocknode): tnode;
  3209. var
  3210. hp : tstatementnode;
  3211. hp2 : tnode;
  3212. resassign : tassignmentnode;
  3213. begin
  3214. result:=nil;
  3215. if not assigned(funcretnode) or
  3216. not(cnf_return_value_used in callnodeflags) then
  3217. exit;
  3218. { tempcreatenode for the function result }
  3219. hp:=tstatementnode(inlineblock.left);
  3220. if not(assigned(hp)) or
  3221. (hp.left.nodetype <> tempcreaten) or
  3222. not(nf_is_funcret in hp.left.flags) then
  3223. exit;
  3224. { constant assignment? right must be a constant (mainly to avoid trying
  3225. to reuse local temps which may already be freed afterwards once these
  3226. checks are made looser) }
  3227. hp:=tstatementnode(hp.right);
  3228. if not(assigned(hp)) or
  3229. (hp.left.nodetype<>assignn) or
  3230. not is_constnode(tassignmentnode(hp.left).right) then
  3231. exit;
  3232. { left must be function result }
  3233. resassign:=tassignmentnode(hp.left);
  3234. hp2:=resassign.left;
  3235. { can have extra type conversion due to absolute mapping
  3236. of <fucntionname> on function result var }
  3237. if (hp2.nodetype=typeconvn) and (ttypeconvnode(hp2).convtype=tc_equal) then
  3238. hp2:=ttypeconvnode(hp2).left;
  3239. if (hp2.nodetype<>temprefn) or
  3240. not(nf_is_funcret in hp2.flags) then
  3241. exit;
  3242. { tempdelete to normal of the function result }
  3243. hp:=tstatementnode(hp.right);
  3244. if not(assigned(hp)) or
  3245. (hp.left.nodetype <> tempdeleten) then
  3246. exit;
  3247. { the function result once more }
  3248. hp:=tstatementnode(hp.right);
  3249. if not(assigned(hp)) or
  3250. (hp.left.nodetype<>temprefn) or
  3251. not(nf_is_funcret in hp.left.flags) then
  3252. exit;
  3253. { should be the end }
  3254. if assigned(hp.right) then
  3255. exit;
  3256. { we made it! }
  3257. result:=tassignmentnode(resassign).right.getcopy;
  3258. firstpass(result);
  3259. end;
  3260. function tcallnode.pass1_inline:tnode;
  3261. var
  3262. n,
  3263. body : tnode;
  3264. para : tcallparanode;
  3265. inlineblock,
  3266. inlinecleanupblock : tblocknode;
  3267. begin
  3268. result:=nil;
  3269. if not(assigned(tprocdef(procdefinition).inlininginfo) and
  3270. assigned(tprocdef(procdefinition).inlininginfo^.code)) then
  3271. internalerror(200412021);
  3272. inlinelocals:=TFPObjectList.create(true);
  3273. { inherit flags }
  3274. current_procinfo.flags := current_procinfo.flags + ((procdefinition as tprocdef).inlininginfo^.flags*inherited_inlining_flags);
  3275. { Create new code block for inlining }
  3276. inlineblock:=internalstatements(inlineinitstatement);
  3277. inlinecleanupblock:=internalstatements(inlinecleanupstatement);
  3278. if assigned(callinitblock) then
  3279. addstatement(inlineinitstatement,callinitblock.getcopy);
  3280. { replace complex parameters with temps }
  3281. createinlineparas;
  3282. { create a copy of the body and replace parameter loads with the parameter values }
  3283. body:=tprocdef(procdefinition).inlininginfo^.code.getcopy;
  3284. foreachnode(pm_preprocess,body,@replaceparaload,@fileinfo);
  3285. { Concat the body and finalization parts }
  3286. addstatement(inlineinitstatement,body);
  3287. addstatement(inlineinitstatement,inlinecleanupblock);
  3288. inlinecleanupblock:=nil;
  3289. if assigned(callcleanupblock) then
  3290. addstatement(inlineinitstatement,callcleanupblock.getcopy);
  3291. { the last statement of the new inline block must return the
  3292. location and type of the function result.
  3293. This is not needed when the result is not used, also the tempnode is then
  3294. already destroyed by a tempdelete in the callcleanupblock tree }
  3295. if not is_void(resultdef) and
  3296. (cnf_return_value_used in callnodeflags) then
  3297. begin
  3298. if assigned(funcretnode) then
  3299. addstatement(inlineinitstatement,funcretnode.getcopy)
  3300. else
  3301. begin
  3302. para:=tcallparanode(left);
  3303. while assigned(para) do
  3304. begin
  3305. if (vo_is_hidden_para in para.parasym.varoptions) and
  3306. (vo_is_funcret in para.parasym.varoptions) then
  3307. begin
  3308. addstatement(inlineinitstatement,para.left.getcopy);
  3309. break;
  3310. end;
  3311. para:=tcallparanode(para.right);
  3312. end;
  3313. end;
  3314. end;
  3315. { consider it must not be inlined if called
  3316. again inside the args or itself }
  3317. exclude(procdefinition.procoptions,po_inline);
  3318. typecheckpass(tnode(inlineblock));
  3319. dosimplify(tnode(inlineblock));
  3320. firstpass(tnode(inlineblock));
  3321. include(procdefinition.procoptions,po_inline);
  3322. result:=inlineblock;
  3323. { if the function result is used then verify that the blocknode
  3324. returns the same result type as the original callnode }
  3325. if (cnf_return_value_used in callnodeflags) and
  3326. (result.resultdef<>resultdef) then
  3327. internalerror(200709171);
  3328. { free the temps for the locals }
  3329. inlinelocals.free;
  3330. inlinelocals:=nil;
  3331. inlineinitstatement:=nil;
  3332. inlinecleanupstatement:=nil;
  3333. { if all that's left of the inlined function is an constant assignment
  3334. to the result, replace the whole block with the constant only }
  3335. n:=optimize_funcret_assignment(inlineblock);
  3336. if assigned(n) then
  3337. begin
  3338. inlineblock.free;
  3339. result:=n;
  3340. end;
  3341. {$ifdef DEBUGINLINE}
  3342. writeln;
  3343. writeln('**************************',tprocdef(procdefinition).mangledname);
  3344. printnode(output,result);
  3345. {$endif DEBUGINLINE}
  3346. end;
  3347. begin
  3348. ccallnode:=tcallnode;
  3349. ccallparanode:=tcallparanode;
  3350. end.