ncal.pas 160 KB

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