ncal.pas 158 KB

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