ncnv.pas 185 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782
  1. {
  2. Copyright (c) 2000-2002 by Florian Klaempfl
  3. Type checking and register allocation for type converting nodes
  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 ncnv;
  18. {$i fpcdefs.inc}
  19. interface
  20. uses
  21. node,
  22. symtype,
  23. defutil,defcmp,
  24. nld
  25. ;
  26. type
  27. ttypeconvnodeflag = (
  28. { the typeconvnode is a proc_2_procvar, generated internally by an
  29. address operator, such as @proc, Addr(proc), Ofs(proc) or Seg(proc),
  30. which is then going to be converted to a void pointer. Why does it
  31. matter? Because, on i8086 far code memory models you're allowed to
  32. take the address of a _near_ procedure as a void pointer (which the
  33. @ operator does in TP mode), but not as a procvar (in that case the
  34. procedure must be far). }
  35. tcnf_proc_2_procvar_2_voidpointer,
  36. { proc_2_procvar, generated internally by Ofs() }
  37. tcnf_proc_2_procvar_get_offset_only
  38. );
  39. ttypeconvnodeflags = set of ttypeconvnodeflag;
  40. ttypeconvnode = class(tunarynode)
  41. totypedef : tdef;
  42. totypedefderef : tderef;
  43. convtype : tconverttype;
  44. convnodeflags : ttypeconvnodeflags;
  45. warn_pointer_to_signed,
  46. assignment_side: boolean;
  47. constructor create(node : tnode;def:tdef);virtual;
  48. constructor create_explicit(node : tnode;def:tdef);
  49. constructor create_internal(node : tnode;def:tdef);
  50. constructor create_proc_to_procvar(node : tnode);
  51. constructor ppuload(t:tnodetype;ppufile:tcompilerppufile);override;
  52. procedure ppuwrite(ppufile:tcompilerppufile);override;
  53. procedure buildderefimpl;override;
  54. procedure derefimpl;override;
  55. function dogetcopy : tnode;override;
  56. procedure printnodeinfo(var t : text);override;
  57. {$ifdef DEBUG_NODE_XML}
  58. procedure XMLPrintNodeInfo(var T: Text); override;
  59. {$endif DEBUG_NODE_XML}
  60. function pass_1 : tnode;override;
  61. function pass_typecheck:tnode;override;
  62. function simplify(forinline : boolean):tnode; override;
  63. procedure mark_write;override;
  64. function docompare(p: tnode) : boolean; override;
  65. function retains_value_location:boolean;
  66. function assign_allowed:boolean;
  67. procedure second_call_helper(c : tconverttype);
  68. { always called before any other type conversion checks. If it
  69. returns true, the type conversion is ok and no further checks/
  70. handling are required. }
  71. function target_specific_general_typeconv: boolean;virtual;
  72. { called in case of a valid explicit type conversion. Can be used to
  73. replace this explicit type conversion with a different node, or to
  74. reject it after all }
  75. function target_specific_explicit_typeconv: boolean;virtual;
  76. { called when inserttypeconv is used to convert to a def that is equal
  77. according to compare_defs() }
  78. class function target_specific_need_equal_typeconv(fromdef, todef: tdef): boolean; virtual;
  79. protected
  80. function typecheck_int_to_int : tnode; virtual;
  81. function typecheck_cord_to_pointer : tnode; virtual;
  82. function typecheck_chararray_to_string : tnode; virtual;
  83. function typecheck_string_to_chararray : tnode; virtual;
  84. function typecheck_string_to_string : tnode; virtual;
  85. function typecheck_char_to_string : tnode; virtual;
  86. function typecheck_char_to_chararray : tnode; virtual;
  87. function typecheck_int_to_real : tnode; virtual;
  88. function typecheck_real_to_real : tnode; virtual;
  89. function typecheck_real_to_currency : tnode; virtual;
  90. function typecheck_cchar_to_pchar : tnode; virtual;
  91. function typecheck_cstring_to_pchar : tnode; virtual;
  92. function typecheck_cstring_to_int : tnode; virtual;
  93. function typecheck_char_to_char : tnode; virtual;
  94. function typecheck_arrayconstructor_to_set : tnode; virtual;
  95. function typecheck_set_to_set : tnode; virtual;
  96. function typecheck_pchar_to_string : tnode; virtual;
  97. function typecheck_interface_to_string : tnode; virtual;
  98. function typecheck_interface_to_guid : tnode; virtual;
  99. function typecheck_dynarray_to_openarray : tnode; virtual;
  100. function typecheck_pwchar_to_string : tnode; virtual;
  101. function typecheck_variant_to_dynarray : tnode; virtual;
  102. function typecheck_dynarray_to_variant : tnode; virtual;
  103. function typecheck_variant_to_enum : tnode; virtual;
  104. function typecheck_enum_to_variant : tnode; virtual;
  105. function typecheck_proc_to_procvar : tnode; virtual;
  106. function typecheck_variant_to_interface : tnode; virtual;
  107. function typecheck_interface_to_variant : tnode; virtual;
  108. function typecheck_array_2_dynarray : tnode; virtual;
  109. function typecheck_elem_2_openarray : tnode; virtual;
  110. function typecheck_arrayconstructor_to_dynarray : tnode; virtual;
  111. function typecheck_arrayconstructor_to_array : tnode; virtual;
  112. private
  113. function _typecheck_int_to_int : tnode;
  114. function _typecheck_cord_to_pointer : tnode;
  115. function _typecheck_chararray_to_string : tnode;
  116. function _typecheck_string_to_chararray : tnode;
  117. function _typecheck_string_to_string : tnode;
  118. function _typecheck_char_to_string : tnode;
  119. function _typecheck_char_to_chararray : tnode;
  120. function _typecheck_int_to_real : tnode;
  121. function _typecheck_real_to_real : tnode;
  122. function _typecheck_real_to_currency : tnode;
  123. function _typecheck_cchar_to_pchar : tnode;
  124. function _typecheck_cstring_to_pchar : tnode;
  125. function _typecheck_cstring_to_int : tnode;
  126. function _typecheck_char_to_char : tnode;
  127. function _typecheck_arrayconstructor_to_set : tnode;
  128. function _typecheck_set_to_set : tnode;
  129. function _typecheck_pchar_to_string : tnode;
  130. function _typecheck_interface_to_string : tnode;
  131. function _typecheck_interface_to_guid : tnode;
  132. function _typecheck_dynarray_to_openarray : tnode;
  133. function _typecheck_pwchar_to_string : tnode;
  134. function _typecheck_variant_to_dynarray : tnode;
  135. function _typecheck_dynarray_to_variant : tnode;
  136. function _typecheck_variant_to_enum : tnode;
  137. function _typecheck_enum_to_variant : tnode;
  138. function _typecheck_proc_to_procvar : tnode;
  139. function _typecheck_variant_to_interface : tnode;
  140. function _typecheck_interface_to_variant : tnode;
  141. function _typecheck_array_2_dynarray : tnode;
  142. function _typecheck_elem_2_openarray : tnode;
  143. function _typecheck_arrayconstructor_to_dynarray : tnode;
  144. function _typecheck_arrayconstructor_to_array : tnode;
  145. protected
  146. function first_int_to_int : tnode;virtual;
  147. function first_cstring_to_pchar : tnode;virtual;
  148. function first_cstring_to_int : tnode;virtual;
  149. function first_string_to_chararray : tnode;virtual;
  150. function first_char_to_string : tnode;virtual;
  151. function first_char_to_chararray : tnode; virtual;
  152. function first_nothing : tnode;virtual;
  153. function first_array_to_pointer : tnode;virtual;
  154. function first_int_to_real : tnode;virtual;
  155. function first_real_to_real : tnode;virtual;
  156. function first_pointer_to_array : tnode;virtual;
  157. function first_cchar_to_pchar : tnode;virtual;
  158. function first_bool_to_int : tnode;virtual;
  159. function first_int_to_bool : tnode;virtual;
  160. function first_bool_to_bool : tnode;virtual;
  161. function first_proc_to_procvar : tnode;virtual;
  162. function first_nil_to_methodprocvar : tnode;virtual;
  163. function first_set_to_set : tnode;virtual;
  164. function first_cord_to_pointer : tnode;virtual;
  165. function first_ansistring_to_pchar : tnode;virtual;
  166. function first_arrayconstructor_to_set : tnode;virtual;
  167. function first_class_to_intf : tnode;virtual;
  168. function first_char_to_char : tnode;virtual;
  169. function first_string_to_string : tnode;virtual;
  170. function first_call_helper(c : tconverttype) : tnode;
  171. function typecheck_call_helper(c : tconverttype) : tnode;
  172. private
  173. { these wrapper are necessary, because the first_* stuff is called }
  174. { through a table. Without the wrappers override wouldn't have }
  175. { any effect }
  176. function _first_int_to_int : tnode;
  177. function _first_cstring_to_pchar : tnode;
  178. function _first_cstring_to_int : tnode;
  179. function _first_string_to_chararray : tnode;
  180. function _first_char_to_string : tnode;
  181. function _first_char_to_chararray : tnode;
  182. function _first_nothing : tnode;
  183. function _first_array_to_pointer : tnode;
  184. function _first_int_to_real : tnode;
  185. function _first_real_to_real: tnode;
  186. function _first_pointer_to_array : tnode;
  187. function _first_cchar_to_pchar : tnode;
  188. function _first_bool_to_int : tnode;
  189. function _first_int_to_bool : tnode;
  190. function _first_bool_to_bool : tnode;
  191. function _first_proc_to_procvar : tnode;
  192. function _first_nil_to_methodprocvar : tnode;
  193. function _first_cord_to_pointer : tnode;
  194. function _first_ansistring_to_pchar : tnode;
  195. function _first_arrayconstructor_to_set : tnode;
  196. function _first_class_to_intf : tnode;
  197. function _first_char_to_char : tnode;
  198. function _first_set_to_set : tnode;
  199. function _first_string_to_string : tnode;
  200. procedure _second_int_to_int;virtual;
  201. procedure _second_string_to_string;virtual;
  202. procedure _second_cstring_to_pchar;virtual;
  203. procedure _second_cstring_to_int;virtual;
  204. procedure _second_string_to_chararray;virtual;
  205. procedure _second_array_to_pointer;virtual;
  206. procedure _second_pointer_to_array;virtual;
  207. procedure _second_chararray_to_string;virtual;
  208. procedure _second_char_to_string;virtual;
  209. procedure _second_int_to_real;virtual;
  210. procedure _second_real_to_real;virtual;
  211. procedure _second_cord_to_pointer;virtual;
  212. procedure _second_proc_to_procvar;virtual;
  213. procedure _second_nil_to_methodprocvar;virtual;
  214. procedure _second_bool_to_int;virtual;
  215. procedure _second_int_to_bool;virtual;
  216. procedure _second_bool_to_bool;virtual;
  217. procedure _second_set_to_set;virtual;
  218. procedure _second_ansistring_to_pchar;virtual;
  219. procedure _second_class_to_intf;virtual;
  220. procedure _second_char_to_char;virtual;
  221. procedure _second_elem_to_openarray;virtual;
  222. procedure _second_nothing; virtual;
  223. protected
  224. procedure second_int_to_int;virtual;abstract;
  225. procedure second_string_to_string;virtual;abstract;
  226. procedure second_cstring_to_pchar;virtual;abstract;
  227. procedure second_cstring_to_int;virtual;abstract;
  228. procedure second_string_to_chararray;virtual;abstract;
  229. procedure second_array_to_pointer;virtual;abstract;
  230. procedure second_pointer_to_array;virtual;abstract;
  231. procedure second_chararray_to_string;virtual;abstract;
  232. procedure second_char_to_string;virtual;abstract;
  233. procedure second_int_to_real;virtual;abstract;
  234. procedure second_real_to_real;virtual;abstract;
  235. procedure second_cord_to_pointer;virtual;abstract;
  236. procedure second_proc_to_procvar;virtual;abstract;
  237. procedure second_nil_to_methodprocvar;virtual;abstract;
  238. procedure second_bool_to_int;virtual;abstract;
  239. procedure second_int_to_bool;virtual;abstract;
  240. procedure second_bool_to_bool;virtual;abstract;
  241. procedure second_set_to_set;virtual;abstract;
  242. procedure second_ansistring_to_pchar;virtual;abstract;
  243. procedure second_class_to_intf;virtual;abstract;
  244. procedure second_char_to_char;virtual;abstract;
  245. procedure second_elem_to_openarray;virtual;abstract;
  246. procedure second_nothing; virtual;abstract;
  247. end;
  248. ttypeconvnodeclass = class of ttypeconvnode;
  249. { common functionality of as-nodes and is-nodes }
  250. tasisnode = class(tbinarynode)
  251. protected
  252. { if non-standard usage of as-nodes is possible, targets can override
  253. this method and return true in case the conditions are fulfilled }
  254. function target_specific_typecheck: boolean;virtual;
  255. public
  256. function pass_typecheck:tnode;override;
  257. end;
  258. tasnode = class(tasisnode)
  259. { as nodes cannot be translated directly into call nodes bcause:
  260. When using -CR, explicit class typecasts are replaced with as-nodes to perform
  261. class type checking. The problem is that if a typecasted class instance is
  262. passed as a var-parameter, then you cannot replace it with a function call. So the as-node
  263. a) call the as helper to perform the type checking
  264. b) still pass the original instance as parameter to var-parameters
  265. (and in general: to return it as the result of the as-node)
  266. so the call field is required
  267. }
  268. call: tnode;
  269. constructor create(l,r : tnode);virtual;
  270. constructor create_internal(l,r : tnode);virtual;
  271. function pass_1 : tnode;override;
  272. function dogetcopy: tnode;override;
  273. function docompare(p: tnode): boolean; override;
  274. destructor destroy; override;
  275. end;
  276. tasnodeclass = class of tasnode;
  277. tisnode = class(tasisnode)
  278. constructor create(l,r : tnode);virtual;
  279. constructor create_internal(l,r : tnode);virtual;
  280. function pass_1 : tnode;override;
  281. procedure pass_generate_code;override;
  282. end;
  283. tisnodeclass = class of tisnode;
  284. var
  285. ctypeconvnode : ttypeconvnodeclass = ttypeconvnode;
  286. casnode : tasnodeclass = tasnode;
  287. cisnode : tisnodeclass=tisnode;
  288. procedure inserttypeconv(var p:tnode;def:tdef);
  289. procedure inserttypeconv_explicit(var p:tnode;def:tdef);
  290. procedure inserttypeconv_internal(var p:tnode;def:tdef);
  291. procedure arrayconstructor_to_set(var p : tnode);inline;
  292. function arrayconstructor_to_set(p:tnode;freep:boolean):tnode;
  293. function arrayconstructor_can_be_set(p:tnode):boolean;
  294. procedure insert_varargstypeconv(var p : tnode; iscvarargs: boolean);
  295. function maybe_global_proc_to_nested(var fromnode: tnode; todef: tdef): boolean;
  296. implementation
  297. uses
  298. globtype,systems,constexp,compinnr,
  299. cutils,verbose,globals,widestr,ppu,
  300. symconst,symdef,symsym,symcpu,symtable,
  301. ncon,ncal,nset,nadd,nmem,nmat,nbas,nutils,ninl,nflw,
  302. cgbase,procinfo,
  303. htypechk,blockutl,pass_1,cpuinfo;
  304. {*****************************************************************************
  305. Helpers
  306. *****************************************************************************}
  307. type
  308. ttypeconvnodetype = (tct_implicit,tct_explicit,tct_internal);
  309. procedure do_inserttypeconv(var p: tnode;def: tdef; convtype: ttypeconvnodetype);
  310. begin
  311. if not assigned(p.resultdef) then
  312. begin
  313. typecheckpass(p);
  314. if codegenerror then
  315. exit;
  316. end;
  317. { don't insert superfluous type conversions, but
  318. in case of bitpacked accesses, the original type must
  319. remain too so that not too many/few bits are laoded.
  320. Also, in case the deftyp changes, don't ignore because lots of code
  321. expects that if the resultdef is set to e.g. stringdef, it remains
  322. that way (e.g., in case of Java where java_jlstring equals
  323. unicodestring according to equal_defs, but an add node for strings
  324. still expects the resultdef of the node to be a stringdef) }
  325. if equal_defs(p.resultdef,def) and
  326. (p.resultdef.typ=def.typ) and
  327. not is_bitpacked_access(p) and
  328. ((p.blocktype=bt_const) or
  329. not ctypeconvnode.target_specific_need_equal_typeconv(p.resultdef,def)) then
  330. begin
  331. { don't replace encoded string constants to rawbytestring encoding.
  332. preserve the codepage }
  333. if not (is_rawbytestring(def) and (p.nodetype=stringconstn)) then
  334. p.resultdef:=def
  335. end
  336. else
  337. begin
  338. case convtype of
  339. tct_implicit:
  340. p:=ctypeconvnode.create(p,def);
  341. tct_explicit:
  342. p:=ctypeconvnode.create_explicit(p,def);
  343. tct_internal:
  344. p:=ctypeconvnode.create_internal(p,def);
  345. end;
  346. p.fileinfo:=ttypeconvnode(p).left.fileinfo;
  347. typecheckpass(p);
  348. end;
  349. end;
  350. procedure inserttypeconv(var p:tnode;def:tdef);
  351. begin
  352. do_inserttypeconv(p,def,tct_implicit);
  353. end;
  354. procedure inserttypeconv_explicit(var p: tnode; def: tdef);
  355. begin
  356. do_inserttypeconv(p,def,tct_explicit);
  357. end;
  358. procedure inserttypeconv_internal(var p:tnode;def:tdef);
  359. begin
  360. do_inserttypeconv(p,def,tct_internal);
  361. end;
  362. {*****************************************************************************
  363. Array constructor to Set Conversion
  364. *****************************************************************************}
  365. procedure arrayconstructor_to_set(var p : tnode);
  366. begin
  367. p:=arrayconstructor_to_set(p,true);
  368. end;
  369. function arrayconstructor_to_set(p:tnode;freep:boolean):tnode;
  370. var
  371. constp : tsetconstnode;
  372. p2,p3,p4 : tnode;
  373. hdef : tdef;
  374. constset : Pconstset;
  375. constsetlo,
  376. constsethi : TConstExprInt;
  377. procedure update_constsethi(def:tdef; maybetruncenumrange: boolean);
  378. begin
  379. if (def.typ=orddef) and
  380. ((torddef(def).high>=constsethi) or
  381. (torddef(def).low <=constsetlo)) then
  382. begin
  383. if torddef(def).ordtype=uwidechar then
  384. begin
  385. constsethi:=255;
  386. constsetlo:=0;
  387. if hdef=nil then
  388. hdef:=def;
  389. end
  390. else
  391. begin
  392. if (torddef(def).high>=constsethi) then
  393. constsethi:=torddef(def).high;
  394. if (torddef(def).low<=constsetlo) then
  395. constsetlo:=torddef(def).low;
  396. if hdef=nil then
  397. begin
  398. if (constsethi>255) or
  399. (torddef(def).low<0) then
  400. hdef:=u8inttype
  401. else
  402. hdef:=def;
  403. end;
  404. if constsethi>255 then
  405. constsethi:=255;
  406. if constsetlo<0 then
  407. constsetlo:=0;
  408. end;
  409. end
  410. else if (def.typ=enumdef) and
  411. ((tenumdef(def).max>=constsethi) or
  412. (tenumdef(def).min<=constsetlo)) then
  413. begin
  414. if hdef=nil then
  415. hdef:=def;
  416. if (tenumdef(def).max>=constsethi) then
  417. constsethi:=tenumdef(def).max;
  418. if (tenumdef(def).min<=constsetlo) then
  419. constsetlo:=tenumdef(def).min;
  420. { for constant set elements, delphi allows the usage of elements of enumerations which
  421. have value>255 if there is no element with a value > 255 used }
  422. if (maybetruncenumrange) then
  423. begin
  424. if constsethi>255 then
  425. constsethi:=255;
  426. if constsetlo<0 then
  427. constsetlo:=0;
  428. end;
  429. end;
  430. end;
  431. procedure do_set(pos : longint);
  432. begin
  433. if (pos and not $ff)<>0 then
  434. Message(parser_e_illegal_set_expr);
  435. if pos>constsethi then
  436. constsethi:=pos;
  437. if pos<constsetlo then
  438. constsetlo:=pos;
  439. if pos in constset^ then
  440. Message(parser_e_illegal_set_expr);
  441. include(constset^,pos);
  442. end;
  443. var
  444. l : Longint;
  445. lr,hr : TConstExprInt;
  446. hp : tarrayconstructornode;
  447. oldfilepos: tfileposinfo;
  448. begin
  449. { keep in sync with arrayconstructor_can_be_set }
  450. if p.nodetype<>arrayconstructorn then
  451. internalerror(200205105);
  452. new(constset);
  453. constset^:=[];
  454. hdef:=nil;
  455. { make sure to set constsetlo correctly for empty sets }
  456. if assigned(tarrayconstructornode(p).left) then
  457. constsetlo:=high(aint)
  458. else
  459. constsetlo:=0;
  460. constsethi:=0;
  461. constp:=csetconstnode.create(nil,hdef);
  462. constp.value_set:=constset;
  463. result:=constp;
  464. hp:=tarrayconstructornode(p);
  465. if assigned(hp.left) then
  466. begin
  467. while assigned(hp) do
  468. begin
  469. p4:=nil; { will contain the tree to create the set }
  470. {split a range into p2 and p3 }
  471. if hp.left.nodetype=arrayconstructorrangen then
  472. begin
  473. p2:=tarrayconstructorrangenode(hp.left).left;
  474. p3:=tarrayconstructorrangenode(hp.left).right;
  475. tarrayconstructorrangenode(hp.left).left:=nil;
  476. tarrayconstructorrangenode(hp.left).right:=nil;
  477. end
  478. else
  479. begin
  480. p2:=hp.left;
  481. hp.left:=nil;
  482. p3:=nil;
  483. end;
  484. typecheckpass(p2);
  485. set_varstate(p2,vs_read,[vsf_must_be_valid]);
  486. if assigned(p3) then
  487. begin
  488. typecheckpass(p3);
  489. set_varstate(p3,vs_read,[vsf_must_be_valid]);
  490. end;
  491. if codegenerror then
  492. break;
  493. oldfilepos:=current_filepos;
  494. current_filepos:=p2.fileinfo;
  495. case p2.resultdef.typ of
  496. enumdef,
  497. orddef:
  498. begin
  499. { widechars are not yet supported }
  500. if is_widechar(p2.resultdef) then
  501. begin
  502. inserttypeconv(p2,cansichartype);
  503. if (p2.nodetype<>ordconstn) then
  504. incompatibletypes(cwidechartype,cansichartype);
  505. end;
  506. getrange(p2.resultdef,lr,hr);
  507. if assigned(p3) then
  508. begin
  509. if is_widechar(p3.resultdef) then
  510. begin
  511. inserttypeconv(p3,cansichartype);
  512. if (p3.nodetype<>ordconstn) then
  513. begin
  514. current_filepos:=p3.fileinfo;
  515. incompatibletypes(cwidechartype,cansichartype);
  516. end;
  517. end;
  518. { this isn't good, you'll get problems with
  519. type t010 = 0..10;
  520. ts = set of t010;
  521. var s : ts;b : t010
  522. begin s:=[1,2,b]; end.
  523. if is_integer(p3^.resultdef) then
  524. begin
  525. inserttypeconv(p3,u8bitdef);
  526. end;
  527. }
  528. if assigned(hdef) and not(equal_defs(hdef,p3.resultdef)) then
  529. begin
  530. CGMessagePos(p3.fileinfo,type_e_typeconflict_in_set);
  531. end
  532. else
  533. begin
  534. if (p2.nodetype=ordconstn) and (p3.nodetype=ordconstn) then
  535. begin
  536. if not(is_integer(p3.resultdef)) then
  537. hdef:=p3.resultdef
  538. else
  539. begin
  540. inserttypeconv(p3,u8inttype);
  541. inserttypeconv(p2,u8inttype);
  542. end;
  543. if tordconstnode(p2).value.svalue>tordconstnode(p3).value.svalue then
  544. CGMessagePos(p2.fileinfo,type_w_empty_constant_range_set);
  545. for l:=tordconstnode(p2).value.svalue to tordconstnode(p3).value.svalue do
  546. do_set(l);
  547. p2.free;
  548. p3.free;
  549. end
  550. else
  551. begin
  552. update_constsethi(p2.resultdef,false);
  553. inserttypeconv(p2,hdef);
  554. update_constsethi(p3.resultdef,false);
  555. inserttypeconv(p3,hdef);
  556. if assigned(hdef) then
  557. inserttypeconv(p3,hdef)
  558. else
  559. inserttypeconv(p3,u8inttype);
  560. p4:=csetelementnode.create(p2,p3);
  561. end;
  562. end;
  563. end
  564. else
  565. begin
  566. { Single value }
  567. if p2.nodetype=ordconstn then
  568. begin
  569. if not(is_integer(p2.resultdef)) then
  570. update_constsethi(p2.resultdef,true);
  571. if assigned(hdef) then
  572. inserttypeconv(p2,hdef)
  573. else
  574. inserttypeconv(p2,u8inttype);
  575. do_set(tordconstnode(p2).value.svalue);
  576. p2.free;
  577. end
  578. else
  579. begin
  580. update_constsethi(p2.resultdef,false);
  581. if assigned(hdef) then
  582. inserttypeconv(p2,hdef)
  583. else
  584. inserttypeconv(p2,u8inttype);
  585. p4:=csetelementnode.create(p2,nil);
  586. end;
  587. end;
  588. end;
  589. stringdef :
  590. begin
  591. if (p2.nodetype<>stringconstn) then
  592. Message(parser_e_illegal_expression)
  593. { if we've already set elements which are constants }
  594. { throw an error }
  595. else if ((hdef=nil) and assigned(result)) or
  596. not(is_char(hdef)) then
  597. CGMessage(type_e_typeconflict_in_set)
  598. else
  599. for l:=1 to length(pshortstring(tstringconstnode(p2).value_str)^) do
  600. do_set(ord(pshortstring(tstringconstnode(p2).value_str)^[l]));
  601. if hdef=nil then
  602. hdef:=cansichartype;
  603. p2.free;
  604. end;
  605. else
  606. CGMessage(type_e_ordinal_expr_expected);
  607. end;
  608. { insert the set creation tree }
  609. if assigned(p4) then
  610. result:=caddnode.create(addn,result,p4);
  611. { load next and dispose current node }
  612. p2:=hp;
  613. hp:=tarrayconstructornode(tarrayconstructornode(p2).right);
  614. tarrayconstructornode(p2).right:=nil;
  615. if freep then
  616. p2.free;
  617. current_filepos:=oldfilepos;
  618. end;
  619. if (hdef=nil) then
  620. hdef:=u8inttype;
  621. end
  622. else
  623. begin
  624. { empty set [], only remove node }
  625. if freep then
  626. p.free;
  627. end;
  628. { set the initial set type }
  629. constp.resultdef:=csetdef.create(hdef,constsetlo.svalue,constsethi.svalue,true);
  630. { determine the resultdef for the tree }
  631. typecheckpass(result);
  632. end;
  633. function arrayconstructor_can_be_set(p:tnode):boolean;
  634. var
  635. p1,p2 : tnode;
  636. hdef : tdef;
  637. begin
  638. { keep in sync with arrayconstructor_to_set }
  639. if not assigned(p) then
  640. internalerror(2015050401);
  641. if not assigned(tarrayconstructornode(p).left) then
  642. begin
  643. if assigned(tarrayconstructornode(p).right) then
  644. internalerror(2015050103);
  645. result:=true;
  646. end
  647. else
  648. begin
  649. result:=false;
  650. hdef:=nil;
  651. while assigned(p) do
  652. begin
  653. if tarrayconstructornode(p).left.nodetype=arrayconstructorrangen then
  654. begin
  655. p1:=tarrayconstructorrangenode(tarrayconstructornode(p).left).left;
  656. p2:=tarrayconstructorrangenode(tarrayconstructornode(p).left).right;
  657. end
  658. else
  659. begin
  660. p1:=tarrayconstructornode(p).left;
  661. p2:=nil;
  662. end;
  663. case p1.resultdef.typ of
  664. orddef,
  665. enumdef:
  666. begin
  667. if is_widechar(p1.resultdef) then
  668. begin
  669. if p1.nodetype<>ordconstn then
  670. exit
  671. else if tordconstnode(p1).value.uvalue>high(byte) then
  672. exit;
  673. end;
  674. if assigned(p2) then
  675. begin
  676. if is_widechar(p2.resultdef) then
  677. begin
  678. if p2.nodetype<>ordconstn then
  679. exit
  680. else if tordconstnode(p2).value.uvalue>high(byte) then
  681. exit;
  682. end;
  683. { anything to exclude? }
  684. end
  685. else
  686. begin
  687. { anything to exclude? }
  688. end;
  689. end;
  690. stringdef:
  691. if p1.nodetype<>stringconstn then
  692. exit
  693. else if assigned(hdef) and not is_char(hdef) then
  694. exit;
  695. else
  696. exit;
  697. end;
  698. p:=tarrayconstructornode(p).right;
  699. end;
  700. result:=true;
  701. end;
  702. end;
  703. procedure insert_varargstypeconv(var p : tnode; iscvarargs: boolean);
  704. begin
  705. { procvars without arguments in variant arrays are always called by
  706. Delphi }
  707. if not(iscvarargs) then
  708. maybe_call_procvar(p,true);
  709. if not(iscvarargs) and
  710. (p.nodetype=stringconstn) and
  711. { don't cast to AnsiString if already casted to Wide/UnicodeString, issue #18266 }
  712. (tstringconstnode(p).cst_type in [cst_conststring,cst_shortstring,cst_longstring]) then
  713. p:=ctypeconvnode.create_internal(p,getansistringdef)
  714. else
  715. case p.resultdef.typ of
  716. enumdef :
  717. p:=ctypeconvnode.create_internal(p,s32inttype);
  718. arraydef :
  719. begin
  720. if is_chararray(p.resultdef) then
  721. p:=ctypeconvnode.create_internal(p,charpointertype)
  722. else
  723. if is_widechararray(p.resultdef) then
  724. p:=ctypeconvnode.create_internal(p,widecharpointertype)
  725. else
  726. CGMessagePos1(p.fileinfo,type_e_wrong_type_in_array_constructor,p.resultdef.typename);
  727. end;
  728. orddef :
  729. begin
  730. if is_integer(p.resultdef) and
  731. not(is_64bitint(p.resultdef)) then
  732. if not(m_delphi in current_settings.modeswitches) then
  733. p:=ctypeconvnode.create(p,s32inttype)
  734. else
  735. { delphi doesn't generate a range error when passing a
  736. cardinal >= $80000000, but since these are seen as
  737. longint on the callee side, this causes data loss;
  738. as a result, we require an explicit longint()
  739. typecast in FPC mode on the caller side if range
  740. checking should be disabled, but not in Delphi mode }
  741. p:=ctypeconvnode.create_internal(p,s32inttype)
  742. else if is_void(p.resultdef) then
  743. CGMessagePos1(p.fileinfo,type_e_wrong_type_in_array_constructor,p.resultdef.typename)
  744. else if iscvarargs and is_currency(p.resultdef)
  745. and (current_settings.fputype<>fpu_none) then
  746. p:=ctypeconvnode.create(p,s64floattype);
  747. end;
  748. floatdef :
  749. if not(iscvarargs) then
  750. begin
  751. if not(is_currency(p.resultdef)) then
  752. p:=ctypeconvnode.create(p,pbestrealtype^);
  753. end
  754. else
  755. begin
  756. if is_constrealnode(p) and
  757. not(nf_explicit in p.flags) then
  758. MessagePos(p.fileinfo,type_w_double_c_varargs);
  759. if (tfloatdef(p.resultdef).floattype in [s32real,s64currency]) or
  760. (is_constrealnode(p) and
  761. not(nf_explicit in p.flags)) then
  762. p:=ctypeconvnode.create(p,s64floattype);
  763. end;
  764. procvardef :
  765. p:=ctypeconvnode.create(p,voidpointertype);
  766. stringdef:
  767. if iscvarargs then
  768. p:=ctypeconvnode.create(p,charpointertype);
  769. variantdef:
  770. if iscvarargs then
  771. CGMessagePos1(p.fileinfo,type_e_wrong_type_in_array_constructor,p.resultdef.typename);
  772. { maybe warn in case it's not using "packrecords c"? }
  773. recorddef:
  774. if not iscvarargs then
  775. CGMessagePos1(p.fileinfo,type_e_wrong_type_in_array_constructor,p.resultdef.typename);
  776. pointerdef:
  777. ;
  778. classrefdef:
  779. if iscvarargs then
  780. p:=ctypeconvnode.create(p,voidpointertype);
  781. objectdef :
  782. if is_objc_class_or_protocol(p.resultdef) then
  783. p:=ctypeconvnode.create(p,voidpointertype)
  784. else if iscvarargs or
  785. is_object(p.resultdef) then
  786. CGMessagePos1(p.fileinfo,type_e_wrong_type_in_array_constructor,p.resultdef.typename)
  787. else
  788. else
  789. CGMessagePos1(p.fileinfo,type_e_wrong_type_in_array_constructor,p.resultdef.typename);
  790. end;
  791. typecheckpass(p);
  792. end;
  793. { in FPC mode, @procname immediately has to be evaluated as a
  794. procvar. If procname is global, then this will be a global
  795. procvar. Since converting global procvars to local procvars is
  796. not allowed (see point d in defcmp.proc_to_procvar_equal()),
  797. this results in errors when passing global procedures to local
  798. procvar parameters or assigning them to nested procvars. The
  799. solution is to remove the (wrong) conversion to a global procvar,
  800. and instead insert a conversion to the local procvar type. }
  801. function maybe_global_proc_to_nested(var fromnode: tnode; todef: tdef): boolean;
  802. var
  803. hp: tnode;
  804. begin
  805. result:=false;
  806. if (m_nested_procvars in current_settings.modeswitches) and
  807. not(m_tp_procvar in current_settings.modeswitches) and
  808. (todef.typ=procvardef) and
  809. is_nested_pd(tprocvardef(todef)) and
  810. (fromnode.nodetype=typeconvn) and
  811. (ttypeconvnode(fromnode).convtype=tc_proc_2_procvar) and
  812. not is_nested_pd(tprocvardef(fromnode.resultdef)) and
  813. (proc_to_procvar_equal(tprocdef(ttypeconvnode(fromnode).left.resultdef),tprocvardef(todef),false)>=te_convert_l1) then
  814. begin
  815. hp:=fromnode;
  816. fromnode:=ctypeconvnode.create_proc_to_procvar(ttypeconvnode(fromnode).left);
  817. ttypeconvnode(fromnode).totypedef:=todef;
  818. typecheckpass(fromnode);
  819. ttypeconvnode(hp).left:=nil;
  820. hp.free;
  821. result:=true;
  822. end;
  823. end;
  824. { similar as above, but for assigning @classtype.method to a
  825. procvar of object. pexpr.do_proc_call() stores the symtable of classtype
  826. in the loadnode so we can retrieve it here (rather than the symtable in
  827. which method was found, which may be a parent class) }
  828. function maybe_classmethod_to_methodprocvar(var fromnode: tnode; todef: tdef): boolean;
  829. var
  830. hp: tnode;
  831. begin
  832. result:=false;
  833. if not(m_tp_procvar in current_settings.modeswitches) and
  834. (todef.typ=procvardef) and
  835. is_methodpointer(tprocvardef(todef)) and
  836. (fromnode.nodetype=typeconvn) and
  837. (ttypeconvnode(fromnode).convtype=tc_proc_2_procvar) and
  838. is_methodpointer(fromnode.resultdef) and
  839. (po_classmethod in tprocvardef(fromnode.resultdef).procoptions) and
  840. not(po_staticmethod in tprocvardef(fromnode.resultdef).procoptions) and
  841. (proc_to_procvar_equal(tprocdef(ttypeconvnode(fromnode).left.resultdef),tprocvardef(todef),false)>=te_convert_l1) then
  842. begin
  843. hp:=fromnode;
  844. fromnode:=ttypeconvnode(fromnode).left;
  845. if (fromnode.nodetype=loadn) and
  846. not assigned(tloadnode(fromnode).left) then
  847. tloadnode(fromnode).set_mp(cloadvmtaddrnode.create(ctypenode.create(tdef(tloadnode(fromnode).symtable.defowner))));
  848. fromnode:=ctypeconvnode.create_proc_to_procvar(fromnode);
  849. ttypeconvnode(fromnode).totypedef:=todef;
  850. typecheckpass(fromnode);
  851. ttypeconvnode(hp).left:=nil;
  852. hp.free;
  853. result:=true;
  854. end;
  855. end;
  856. {*****************************************************************************
  857. TTYPECONVNODE
  858. *****************************************************************************}
  859. constructor ttypeconvnode.create(node : tnode;def:tdef);
  860. begin
  861. inherited create(typeconvn,node);
  862. convtype:=tc_none;
  863. convnodeflags:=[];
  864. totypedef:=def;
  865. if def=nil then
  866. internalerror(200103281);
  867. fileinfo:=node.fileinfo;
  868. {An attempt to convert the result of a floating point division
  869. (with the / operator) to an integer type will fail. Give a hint
  870. to use the div operator.}
  871. if (node.nodetype=slashn) and (def.typ=orddef) and not(is_currency(def)) then
  872. cgmessage(type_h_use_div_for_int);
  873. {In expressions like int64:=longint+longint, an integer overflow could be avoided
  874. by simply converting the operands to int64 first. Give a hint to do this.}
  875. if (node.nodetype in [addn,subn,muln]) and
  876. (def.typ=orddef) and (node.resultdef<>nil) and (node.resultdef.typ=orddef) and
  877. ((Torddef(node.resultdef).low>=Torddef(def).low) and (Torddef(node.resultdef).high<=Torddef(def).high)) and
  878. ((Torddef(node.resultdef).low>Torddef(def).low) or (Torddef(node.resultdef).high<Torddef(def).high)) then
  879. case node.nodetype of
  880. addn:
  881. cgmessage1(type_h_convert_add_operands_to_prevent_overflow,def.typename);
  882. subn:
  883. cgmessage1(type_h_convert_sub_operands_to_prevent_overflow,def.typename);
  884. muln:
  885. cgmessage1(type_h_convert_mul_operands_to_prevent_overflow,def.typename);
  886. else
  887. ;
  888. end;
  889. end;
  890. constructor ttypeconvnode.create_explicit(node : tnode;def:tdef);
  891. begin
  892. self.create(node,def);
  893. include(flags,nf_explicit);
  894. end;
  895. constructor ttypeconvnode.create_internal(node : tnode;def:tdef);
  896. begin
  897. self.create(node,def);
  898. { handle like explicit conversions }
  899. include(flags,nf_explicit);
  900. include(flags,nf_internal);
  901. end;
  902. constructor ttypeconvnode.create_proc_to_procvar(node : tnode);
  903. begin
  904. self.create(node,voidtype);
  905. convtype:=tc_proc_2_procvar;
  906. end;
  907. constructor ttypeconvnode.ppuload(t:tnodetype;ppufile:tcompilerppufile);
  908. begin
  909. inherited ppuload(t,ppufile);
  910. ppufile.getderef(totypedefderef);
  911. convtype:=tconverttype(ppufile.getbyte);
  912. ppufile.getset(tppuset1(convnodeflags));
  913. end;
  914. procedure ttypeconvnode.ppuwrite(ppufile:tcompilerppufile);
  915. begin
  916. inherited ppuwrite(ppufile);
  917. ppufile.putderef(totypedefderef);
  918. ppufile.putbyte(byte(convtype));
  919. ppufile.putset(tppuset1(convnodeflags));
  920. end;
  921. procedure ttypeconvnode.buildderefimpl;
  922. begin
  923. inherited buildderefimpl;
  924. totypedefderef.build(totypedef);
  925. end;
  926. procedure ttypeconvnode.derefimpl;
  927. begin
  928. inherited derefimpl;
  929. totypedef:=tdef(totypedefderef.resolve);
  930. end;
  931. function ttypeconvnode.dogetcopy : tnode;
  932. var
  933. n : ttypeconvnode;
  934. begin
  935. n:=ttypeconvnode(inherited dogetcopy);
  936. n.convtype:=convtype;
  937. n.convnodeflags:=convnodeflags;
  938. n.totypedef:=totypedef;
  939. n.assignment_side:=assignment_side;
  940. dogetcopy:=n;
  941. end;
  942. procedure ttypeconvnode.printnodeinfo(var t : text);
  943. var
  944. first: Boolean;
  945. i: ttypeconvnodeflag;
  946. begin
  947. inherited printnodeinfo(t);
  948. write(t,', convtype = ',convtype);
  949. write(t,', convnodeflags = [');
  950. first:=true;
  951. for i:=low(ttypeconvnodeflag) to high(ttypeconvnodeflag) do
  952. if i in convnodeflags then
  953. begin
  954. if not first then
  955. write(t,',')
  956. else
  957. first:=false;
  958. write(t,i);
  959. end;
  960. write(t,']');
  961. end;
  962. {$ifdef DEBUG_NODE_XML}
  963. procedure TTypeConvNode.XMLPrintNodeInfo(var T: Text);
  964. var
  965. First: Boolean;
  966. i: TTypeConvNodeFlag;
  967. begin
  968. inherited XMLPrintNodeInfo(T);
  969. Write(T,' convtype="', convtype);
  970. First := True;
  971. for i := Low(TTypeConvNodeFlag) to High(TTypeConvNodeFlag) do
  972. if i in ConvNodeFlags then
  973. begin
  974. if First then
  975. begin
  976. Write(T, '" convnodeflags="', i);
  977. First := False;
  978. end
  979. else
  980. Write(T, ',', i);
  981. end;
  982. { If no flags were printed, this is the closing " for convtype }
  983. Write(T, '"');
  984. end;
  985. {$endif DEBUG_NODE_XML}
  986. function ttypeconvnode.typecheck_cord_to_pointer : tnode;
  987. begin
  988. result:=nil;
  989. if left.nodetype=ordconstn then
  990. begin
  991. { check if we have a valid pointer constant (JM) }
  992. {$if sizeof(pointer) > sizeof(TConstPtrUInt)}
  993. {$if sizeof(TConstPtrUInt) = 4}
  994. if (tordconstnode(left).value < int64(low(longint))) or
  995. (tordconstnode(left).value > int64(high(cardinal))) then
  996. CGMessage(parser_e_range_check_error);
  997. {$else} {$if sizeof(TConstPtrUInt) = 8}
  998. if (tordconstnode(left).value < int64(low(int64))) or
  999. (tordconstnode(left).value > int64(high(qword))) then
  1000. CGMessage(parser_e_range_check_error);
  1001. {$else}
  1002. internalerror(2001020801);
  1003. {$endif} {$endif}
  1004. {$endif}
  1005. if not(nf_explicit in flags) then
  1006. if (tordconstnode(left).value.svalue=0) then
  1007. CGMessage(type_w_zero_to_nil)
  1008. else
  1009. { in Delphi mode, these aren't caught in compare_defs_ext }
  1010. IncompatibleTypes(left.resultdef,resultdef);
  1011. result:=cpointerconstnode.create(TConstPtrUInt(tordconstnode(left).value.uvalue),resultdef);
  1012. end
  1013. else
  1014. internalerror(200104023);
  1015. end;
  1016. function ttypeconvnode.typecheck_chararray_to_string : tnode;
  1017. var
  1018. chartype : string[8];
  1019. newblock : tblocknode;
  1020. newstat : tstatementnode;
  1021. restemp : ttempcreatenode;
  1022. begin
  1023. if is_widechar(tarraydef(left.resultdef).elementdef) then
  1024. chartype:='widechar'
  1025. else
  1026. chartype:='char';
  1027. if tstringdef(resultdef).stringtype=st_shortstring then
  1028. begin
  1029. newblock:=internalstatements(newstat);
  1030. restemp:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,false);
  1031. addstatement(newstat,restemp);
  1032. addstatement(newstat,ccallnode.createintern('fpc_'+chartype+'array_to_shortstr',
  1033. ccallparanode.create(cordconstnode.create(
  1034. ord(tarraydef(left.resultdef).lowrange=0),pasbool1type,false),
  1035. ccallparanode.create(left,ccallparanode.create(
  1036. ctemprefnode.create(restemp),nil)))));
  1037. addstatement(newstat,ctempdeletenode.create_normal_temp(restemp));
  1038. addstatement(newstat,ctemprefnode.create(restemp));
  1039. result:=newblock;
  1040. end
  1041. else if (tstringdef(resultdef).stringtype=st_ansistring) then
  1042. begin
  1043. result:=ccallnode.createinternres(
  1044. 'fpc_'+chartype+'array_to_'+tstringdef(resultdef).stringtypname,
  1045. ccallparanode.create(
  1046. cordconstnode.create(
  1047. ord(tarraydef(left.resultdef).lowrange=0),
  1048. pasbool1type,
  1049. false
  1050. ),
  1051. ccallparanode.create(
  1052. cordconstnode.create(
  1053. getparaencoding(resultdef),
  1054. u16inttype,
  1055. true
  1056. ),
  1057. ccallparanode.create(left,nil)
  1058. )
  1059. ),
  1060. resultdef
  1061. );
  1062. end
  1063. else
  1064. result:=ccallnode.createinternres(
  1065. 'fpc_'+chartype+'array_to_'+tstringdef(resultdef).stringtypname,
  1066. ccallparanode.create(cordconstnode.create(
  1067. ord(tarraydef(left.resultdef).lowrange=0),pasbool1type,false),
  1068. ccallparanode.create(left,nil)),resultdef);
  1069. left:=nil;
  1070. end;
  1071. function ttypeconvnode.typecheck_string_to_chararray : tnode;
  1072. var
  1073. newblock : tblocknode;
  1074. newstat : tstatementnode;
  1075. restemp : ttempcreatenode;
  1076. pchtemp : pchar;
  1077. arrsize : tcgint;
  1078. chartype : string[8];
  1079. begin
  1080. result := nil;
  1081. with tarraydef(resultdef) do
  1082. begin
  1083. if highrange<lowrange then
  1084. internalerror(2005010502);
  1085. arrsize := highrange-lowrange+1;
  1086. end;
  1087. if (left.nodetype = stringconstn) and
  1088. (tstringconstnode(left).cst_type=cst_conststring) then
  1089. begin
  1090. if (m_iso in current_settings.modeswitches) and (arrsize<>tstringconstnode(left).len) and
  1091. is_char(tarraydef(resultdef).elementdef) then
  1092. Message2(type_w_array_size_does_not_match_size_of_constant_string,tostr(tstringconstnode(left).len),tostr(arrsize));
  1093. { if the array of char is large enough we can use the string
  1094. constant directly. This is handled in ncgcnv }
  1095. if (arrsize>=tstringconstnode(left).len) and
  1096. is_char(tarraydef(resultdef).elementdef) then
  1097. begin
  1098. { pad the constant string with #0 to the array len }
  1099. { (2.0.x compatible) }
  1100. if (arrsize>tstringconstnode(left).len) then
  1101. begin
  1102. pchtemp:=concatansistrings(tstringconstnode(left).value_str,pchar(StringOfChar(#0,arrsize-tstringconstnode(left).len)),tstringconstnode(left).len,arrsize-tstringconstnode(left).len);
  1103. left.free;
  1104. left:=cstringconstnode.createpchar(pchtemp,arrsize,nil);
  1105. typecheckpass(left);
  1106. end;
  1107. exit;
  1108. end;
  1109. { Convert to wide/short/ansistring and call default helper }
  1110. if is_widechar(tarraydef(resultdef).elementdef) then
  1111. inserttypeconv(left,cunicodestringtype)
  1112. else
  1113. begin
  1114. if tstringconstnode(left).len>255 then
  1115. inserttypeconv(left,getansistringdef)
  1116. else
  1117. inserttypeconv(left,cshortstringtype);
  1118. end;
  1119. end;
  1120. if is_widechar(tarraydef(resultdef).elementdef) then
  1121. chartype:='widechar'
  1122. else
  1123. chartype:='char';
  1124. newblock:=internalstatements(newstat);
  1125. restemp:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,false);
  1126. addstatement(newstat,restemp);
  1127. addstatement(newstat,ccallnode.createintern('fpc_'+tstringdef(left.resultdef).stringtypname+
  1128. '_to_'+chartype+'array',ccallparanode.create(left,ccallparanode.create(
  1129. ctemprefnode.create(restemp),nil))));
  1130. addstatement(newstat,ctempdeletenode.create_normal_temp(restemp));
  1131. addstatement(newstat,ctemprefnode.create(restemp));
  1132. result:=newblock;
  1133. left:=nil;
  1134. end;
  1135. function ttypeconvnode.typecheck_char_to_string : tnode;
  1136. var
  1137. procname: string[31];
  1138. para : tcallparanode;
  1139. hp : tstringconstnode;
  1140. ws : pcompilerwidestring;
  1141. sa : ansistring;
  1142. cw : tcompilerwidechar;
  1143. l : SizeUInt;
  1144. exprtype : tdef;
  1145. begin
  1146. result:=nil;
  1147. sa:='';
  1148. if (left.nodetype=ordconstn) and
  1149. ((tstringdef(resultdef).stringtype in [st_widestring,st_unicodestring,st_ansistring]) or
  1150. (torddef(left.resultdef).ordtype in [uchar,uwidechar])) then
  1151. begin
  1152. if (tstringdef(resultdef).stringtype in [st_widestring,st_unicodestring]) then
  1153. begin
  1154. initwidestring(ws);
  1155. if torddef(left.resultdef).ordtype=uwidechar then
  1156. concatwidestringchar(ws,tcompilerwidechar(tordconstnode(left).value.uvalue))
  1157. else
  1158. concatwidestringchar(ws,asciichar2unicode(chr(tordconstnode(left).value.uvalue)));
  1159. hp:=cstringconstnode.createunistr(ws);
  1160. hp.changestringtype(resultdef);
  1161. donewidestring(ws);
  1162. end
  1163. else
  1164. begin
  1165. if (torddef(left.resultdef).ordtype=uwidechar) then
  1166. begin
  1167. if (current_settings.sourcecodepage<>CP_UTF8) then
  1168. begin
  1169. if tordconstnode(left).value.uvalue>127 then
  1170. begin
  1171. Message(type_w_unicode_data_loss);
  1172. // compiler has different codepage than a system running an application
  1173. // to prevent wrong codepage and data loss we are converting unicode char
  1174. // using a helper routine. This is not delphi compatible behavior.
  1175. // Delphi converts UniocodeChar to ansistring at the compile time
  1176. // old behavior:
  1177. // hp:=cstringconstnode.createstr(unicode2asciichar(tcompilerwidechar(tordconstnode(left).value.uvalue)));
  1178. para:=ccallparanode.create(left,nil);
  1179. if tstringdef(resultdef).stringtype=st_ansistring then
  1180. para:=ccallparanode.create(cordconstnode.create(getparaencoding(resultdef),u16inttype,true),para);
  1181. result:=ccallnode.createinternres('fpc_uchar_to_'+tstringdef(resultdef).stringtypname,
  1182. para,resultdef);
  1183. left:=nil;
  1184. exit;
  1185. end
  1186. else
  1187. hp:=cstringconstnode.createstr(unicode2asciichar(tcompilerwidechar(tordconstnode(left).value.uvalue)));
  1188. end
  1189. else
  1190. begin
  1191. cw:=tcompilerwidechar(tordconstnode(left).value.uvalue);
  1192. SetLength(sa,5);
  1193. l:=UnicodeToUtf8(@(sa[1]),Length(sa),@cw,1);
  1194. SetLength(sa,l-1);
  1195. hp:=cstringconstnode.createstr(sa);
  1196. end
  1197. end
  1198. else
  1199. hp:=cstringconstnode.createstr(chr(tordconstnode(left).value.uvalue));
  1200. { output string consts in local ansistring encoding }
  1201. if is_ansistring(resultdef) and ((tstringdef(resultdef).encoding=0) or (tstringdef(resultdef).encoding=globals.CP_NONE)) then
  1202. tstringconstnode(hp).changestringtype(getansistringdef)
  1203. else
  1204. tstringconstnode(hp).changestringtype(resultdef);
  1205. end;
  1206. result:=hp;
  1207. end
  1208. else
  1209. { shortstrings are handled 'inline' (except for widechars) }
  1210. if (tstringdef(resultdef).stringtype<>st_shortstring) or
  1211. (torddef(left.resultdef).ordtype=uwidechar) or
  1212. (target_info.system in systems_managed_vm) then
  1213. begin
  1214. { parameter }
  1215. para:=ccallparanode.create(left,nil);
  1216. { encoding required? }
  1217. if tstringdef(resultdef).stringtype=st_ansistring then
  1218. para:=ccallparanode.create(cordconstnode.create(getparaencoding(resultdef),u16inttype,true),para);
  1219. { create the procname }
  1220. if torddef(left.resultdef).ordtype<>uwidechar then
  1221. begin
  1222. procname:='fpc_char_to_';
  1223. if tstringdef(resultdef).stringtype in [st_widestring,st_unicodestring] then
  1224. if nf_explicit in flags then
  1225. Message2(type_w_explicit_string_cast,left.resultdef.typename,resultdef.typename)
  1226. else
  1227. Message2(type_w_implicit_string_cast,left.resultdef.typename,resultdef.typename);
  1228. end
  1229. else
  1230. begin
  1231. procname:='fpc_uchar_to_';
  1232. if not (tstringdef(resultdef).stringtype in [st_widestring,st_unicodestring]) then
  1233. if nf_explicit in flags then
  1234. Message2(type_w_explicit_string_cast_loss,left.resultdef.typename,resultdef.typename)
  1235. else
  1236. Message2(type_w_implicit_string_cast_loss,left.resultdef.typename,resultdef.typename);
  1237. end;
  1238. procname:=procname+tstringdef(resultdef).stringtypname;
  1239. { and finally the call }
  1240. result:=ccallnode.createinternres(procname,para,resultdef);
  1241. left := nil;
  1242. end
  1243. else
  1244. begin
  1245. { use at least u16inttype }
  1246. {$ifdef cpu8bitalu}
  1247. exprtype:=u16inttype;
  1248. {$else cpu8bitalu}
  1249. exprtype:=uinttype;
  1250. {$endif cpu8bitalu}
  1251. { create word(byte(char) shl 8 or 1) for litte endian machines }
  1252. { and word(byte(char) or 256) for big endian machines }
  1253. left := ctypeconvnode.create_internal(left,exprtype);
  1254. if (target_info.endian = endian_little) then
  1255. left := caddnode.create(orn,
  1256. cshlshrnode.create(shln,left,cordconstnode.create(8,exprtype,false)),
  1257. cordconstnode.create(1,exprtype,false))
  1258. else
  1259. left := caddnode.create(orn,left,
  1260. cordconstnode.create(1 shl 8,exprtype,false));
  1261. left := ctypeconvnode.create_internal(left,u16inttype);
  1262. typecheckpass(left);
  1263. end;
  1264. end;
  1265. function ttypeconvnode.typecheck_string_to_string : tnode;
  1266. begin
  1267. result:=nil;
  1268. if (left.nodetype=stringconstn) and
  1269. (((tstringdef(resultdef).stringtype=st_ansistring) and
  1270. (tstringdef(resultdef).encoding<>CP_NONE)
  1271. )
  1272. ) and
  1273. (tstringdef(left.resultdef).stringtype in [st_unicodestring,st_widestring]) then
  1274. begin
  1275. tstringconstnode(left).changestringtype(resultdef);
  1276. Result:=left;
  1277. left:=nil;
  1278. end
  1279. else if (tstringdef(resultdef).stringtype=st_ansistring) and
  1280. (tstringdef(left.resultdef).stringtype=st_ansistring) and
  1281. (tstringdef(resultdef).encoding<>tstringdef(left.resultdef).encoding) then
  1282. begin
  1283. result:=ccallnode.createinternres(
  1284. 'fpc_ansistr_to_ansistr',
  1285. ccallparanode.create(
  1286. cordconstnode.create(
  1287. tstringdef(resultdef).encoding,
  1288. u16inttype,
  1289. true
  1290. ),
  1291. ccallparanode.create(left,nil)
  1292. ),
  1293. resultdef
  1294. );
  1295. left:=nil;
  1296. end
  1297. else if (left.nodetype=stringconstn) and
  1298. (tstringdef(left.resultdef).stringtype in [st_unicodestring,st_widestring]) and
  1299. (tstringdef(resultdef).stringtype=st_shortstring) then
  1300. begin
  1301. if not hasnonasciichars(pcompilerwidestring(tstringconstnode(left).value_str)) then
  1302. begin
  1303. tstringconstnode(left).changestringtype(resultdef);
  1304. Result:=left;
  1305. left:=nil;
  1306. end;
  1307. end
  1308. else if (tstringdef(left.resultdef).stringtype in [st_unicodestring,st_widestring]) and
  1309. not (tstringdef(resultdef).stringtype in [st_unicodestring,st_widestring]) then
  1310. begin
  1311. if nf_explicit in flags then
  1312. Message2(type_w_explicit_string_cast_loss,left.resultdef.typename,resultdef.typename)
  1313. else
  1314. Message2(type_w_implicit_string_cast_loss,left.resultdef.typename,resultdef.typename);
  1315. end
  1316. else if not (tstringdef(left.resultdef).stringtype in [st_unicodestring,st_widestring]) and
  1317. (tstringdef(resultdef).stringtype in [st_unicodestring,st_widestring]) then
  1318. begin
  1319. if nf_explicit in flags then
  1320. Message2(type_w_explicit_string_cast,left.resultdef.typename,resultdef.typename)
  1321. else
  1322. Message2(type_w_implicit_string_cast,left.resultdef.typename,resultdef.typename);
  1323. end
  1324. end;
  1325. function ttypeconvnode.typecheck_char_to_chararray : tnode;
  1326. begin
  1327. result:=nil;
  1328. end;
  1329. function ttypeconvnode.typecheck_char_to_char : tnode;
  1330. var
  1331. hp : tordconstnode;
  1332. begin
  1333. result:=nil;
  1334. if (left.nodetype=ordconstn) and
  1335. ((torddef(resultdef).ordtype<>uchar) or
  1336. (torddef(left.resultdef).ordtype<>uwidechar) or
  1337. (current_settings.sourcecodepage<>CP_UTF8))
  1338. then
  1339. begin
  1340. if (torddef(resultdef).ordtype=uchar) and
  1341. (torddef(left.resultdef).ordtype=uwidechar) and
  1342. (current_settings.sourcecodepage<>CP_UTF8) then
  1343. begin
  1344. if tordconstnode(left).value.uvalue>127 then
  1345. Message(type_w_unicode_data_loss);
  1346. hp:=cordconstnode.create(
  1347. ord(unicode2asciichar(tcompilerwidechar(tordconstnode(left).value.uvalue))),
  1348. cansichartype,true);
  1349. result:=hp;
  1350. end
  1351. else if (torddef(resultdef).ordtype=uwidechar) and
  1352. (torddef(left.resultdef).ordtype=uchar) then
  1353. begin
  1354. hp:=cordconstnode.create(
  1355. asciichar2unicode(chr(tordconstnode(left).value.uvalue)),
  1356. cwidechartype,true);
  1357. result:=hp;
  1358. end
  1359. else
  1360. internalerror(200105131);
  1361. exit;
  1362. end;
  1363. end;
  1364. function ttypeconvnode.typecheck_int_to_int : tnode;
  1365. var
  1366. v : TConstExprInt;
  1367. begin
  1368. result:=nil;
  1369. if left.nodetype=ordconstn then
  1370. begin
  1371. v:=tordconstnode(left).value;
  1372. if is_currency(resultdef) and
  1373. not(nf_internal in flags) then
  1374. v:=v*10000;
  1375. if (resultdef.typ=pointerdef) then
  1376. result:=cpointerconstnode.create(TConstPtrUInt(v.uvalue),resultdef)
  1377. else
  1378. begin
  1379. if is_currency(left.resultdef) then
  1380. begin
  1381. if not(nf_internal in flags) then
  1382. v:=v div 10000;
  1383. end
  1384. else if (resultdef.typ in [orddef,enumdef]) then
  1385. adaptrange(resultdef,v,([nf_internal,nf_absolute]*flags)<>[],nf_explicit in flags,cs_check_range in localswitches);
  1386. result:=cordconstnode.create(v,resultdef,false);
  1387. end;
  1388. end
  1389. else if left.nodetype=pointerconstn then
  1390. begin
  1391. v:=tpointerconstnode(left).value;
  1392. if (resultdef.typ=pointerdef) then
  1393. result:=cpointerconstnode.create(v.uvalue,resultdef)
  1394. else
  1395. begin
  1396. if is_currency(resultdef) and
  1397. not(nf_internal in flags) then
  1398. v:=v*10000;
  1399. result:=cordconstnode.create(v,resultdef,false);
  1400. end;
  1401. end
  1402. else
  1403. begin
  1404. if (is_currency(resultdef) or
  1405. is_currency(left.resultdef)) and
  1406. (nf_internal in flags) then
  1407. begin
  1408. include(flags,nf_is_currency)
  1409. end
  1410. { multiply by 10000 for currency. We need to use getcopy to pass
  1411. the argument because the current node is always disposed. Only
  1412. inserting the multiply in the left node is not possible because
  1413. it'll get in an infinite loop to convert int->currency }
  1414. else if is_currency(resultdef) then
  1415. begin
  1416. result:=caddnode.create(muln,getcopy,cordconstnode.create(10000,resultdef,false));
  1417. include(result.flags,nf_is_currency);
  1418. include(taddnode(result).left.flags,nf_internal);
  1419. end
  1420. else if is_currency(left.resultdef) then
  1421. begin
  1422. result:=cmoddivnode.create(divn,getcopy,cordconstnode.create(10000,resultdef,false));
  1423. include(result.flags,nf_is_currency);
  1424. include(tmoddivnode(result).left.flags,nf_internal);
  1425. end;
  1426. end;
  1427. end;
  1428. function ttypeconvnode.typecheck_int_to_real : tnode;
  1429. var
  1430. rv : bestreal;
  1431. begin
  1432. result:=nil;
  1433. if left.nodetype=ordconstn then
  1434. begin
  1435. rv:=tordconstnode(left).value;
  1436. if is_currency(resultdef) and
  1437. not(nf_internal in flags) then
  1438. rv:=rv*10000.0
  1439. else if is_currency(left.resultdef) and
  1440. not(nf_internal in flags) then
  1441. rv:=rv/10000.0;
  1442. result:=crealconstnode.create(rv,resultdef);
  1443. end
  1444. else
  1445. begin
  1446. if (is_currency(resultdef) or
  1447. is_currency(left.resultdef)) and
  1448. (nf_internal in flags) then
  1449. begin
  1450. include(flags,nf_is_currency)
  1451. end
  1452. { multiply by 10000 for currency. We need to use getcopy to pass
  1453. the argument because the current node is always disposed. Only
  1454. inserting the multiply in the left node is not possible because
  1455. it'll get in an infinite loop to convert int->currency }
  1456. else if is_currency(resultdef) then
  1457. begin
  1458. result:=caddnode.create(muln,getcopy,crealconstnode.create(10000.0,resultdef));
  1459. include(result.flags,nf_is_currency);
  1460. end
  1461. else if is_currency(left.resultdef) then
  1462. begin
  1463. result:=caddnode.create(slashn,getcopy,crealconstnode.create(10000.0,resultdef));
  1464. include(result.flags,nf_is_currency);
  1465. end;
  1466. end;
  1467. end;
  1468. function ttypeconvnode.typecheck_real_to_currency : tnode;
  1469. begin
  1470. if not is_currency(resultdef) then
  1471. internalerror(200304221);
  1472. result:=nil;
  1473. if not(nf_internal in flags) then
  1474. begin
  1475. left:=caddnode.create(muln,left,crealconstnode.create(10000.0,left.resultdef));
  1476. include(left.flags,nf_is_currency);
  1477. { Convert constants directly, else call Round() }
  1478. if left.nodetype=realconstn then
  1479. result:=cordconstnode.create(round(trealconstnode(left).value_real),resultdef,false)
  1480. else
  1481. begin
  1482. result:=cinlinenode.create(in_round_real,false,left);
  1483. { Internal type cast to currency }
  1484. result:=ctypeconvnode.create_internal(result,s64currencytype);
  1485. left:=nil;
  1486. end
  1487. end
  1488. else
  1489. begin
  1490. include(left.flags,nf_is_currency);
  1491. result:=left;
  1492. left:=nil;
  1493. end;
  1494. end;
  1495. function ttypeconvnode.typecheck_real_to_real : tnode;
  1496. begin
  1497. result:=nil;
  1498. if not(nf_internal in flags) then
  1499. begin
  1500. if is_currency(left.resultdef) and not(is_currency(resultdef)) then
  1501. begin
  1502. left:=caddnode.create(slashn,left,crealconstnode.create(10000.0,left.resultdef));
  1503. include(left.flags,nf_is_currency);
  1504. typecheckpass(left);
  1505. end
  1506. else
  1507. if is_currency(resultdef) and not(is_currency(left.resultdef)) then
  1508. begin
  1509. left:=caddnode.create(muln,left,crealconstnode.create(10000.0,left.resultdef));
  1510. include(left.flags,nf_is_currency);
  1511. include(flags,nf_is_currency);
  1512. typecheckpass(left);
  1513. end;
  1514. { comp is handled by the fpu but not a floating type point }
  1515. if is_fpucomp(resultdef) and not(is_fpucomp(left.resultdef)) and
  1516. not (nf_explicit in flags) then
  1517. Message(type_w_convert_real_2_comp);
  1518. end
  1519. else
  1520. include(flags,nf_is_currency);
  1521. end;
  1522. function ttypeconvnode.typecheck_cchar_to_pchar : tnode;
  1523. begin
  1524. result:=nil;
  1525. { handle any constants via cunicodestringtype because the compiler
  1526. cannot convert arbitrary unicodechar constants at compile time to
  1527. a shortstring (since it doesn't know the code page to use) }
  1528. inserttypeconv(left,cunicodestringtype);
  1529. { evaluate again, reset resultdef so the convert_typ
  1530. will be calculated again and cstring_to_pchar will
  1531. be used for futher conversion }
  1532. convtype:=tc_none;
  1533. result:=pass_typecheck;
  1534. end;
  1535. function ttypeconvnode.typecheck_cstring_to_pchar : tnode;
  1536. begin
  1537. result:=nil;
  1538. if is_pwidechar(resultdef) then
  1539. inserttypeconv(left,cunicodestringtype)
  1540. else
  1541. if is_pchar(resultdef) and
  1542. (is_widestring(left.resultdef) or
  1543. is_unicodestring(left.resultdef)) then
  1544. begin
  1545. inserttypeconv(left,getansistringdef);
  1546. { the second pass of second_cstring_to_pchar expects a }
  1547. { strinconstn, but this may become a call to the }
  1548. { widestring manager in case left contains "high ascii" }
  1549. if (left.nodetype<>stringconstn) then
  1550. begin
  1551. result:=left;
  1552. left:=nil;
  1553. end;
  1554. end;
  1555. end;
  1556. function ttypeconvnode.typecheck_cstring_to_int : tnode;
  1557. var
  1558. fcc : cardinal;
  1559. pb : pbyte;
  1560. begin
  1561. result:=nil;
  1562. if left.nodetype<>stringconstn then
  1563. internalerror(200510012);
  1564. if (m_mac in current_settings.modeswitches) and
  1565. is_integer(resultdef) and
  1566. (tstringconstnode(left).cst_type=cst_conststring) and
  1567. (tstringconstnode(left).len=4) then
  1568. begin
  1569. pb:=pbyte(tstringconstnode(left).value_str);
  1570. fcc:=(pb[0] shl 24) or (pb[1] shl 16) or (pb[2] shl 8) or pb[3];
  1571. result:=cordconstnode.create(fcc,u32inttype,false);
  1572. end
  1573. else
  1574. CGMessage2(type_e_illegal_type_conversion,left.resultdef.typename,resultdef.typename);
  1575. end;
  1576. function ttypeconvnode.typecheck_arrayconstructor_to_set : tnode;
  1577. var
  1578. hp : tnode;
  1579. begin
  1580. result:=nil;
  1581. if left.nodetype<>arrayconstructorn then
  1582. internalerror(5546);
  1583. { remove typeconv node }
  1584. hp:=left;
  1585. left:=nil;
  1586. { create a set constructor tree }
  1587. arrayconstructor_to_set(hp);
  1588. if is_emptyset(hp) then
  1589. begin
  1590. { enforce the result type for an empty set }
  1591. hp.resultdef:=resultdef;
  1592. result:=hp;
  1593. end
  1594. else if hp.resultdef<>resultdef then
  1595. begin
  1596. { the set might contain a subrange element (e.g. through a variable),
  1597. thus we need to insert another type conversion }
  1598. if nf_explicit in flags then
  1599. result:=ctypeconvnode.create_explicit(hp,totypedef)
  1600. else if nf_internal in flags then
  1601. result:=ctypeconvnode.create_internal(hp,totypedef)
  1602. else
  1603. result:=ctypeconvnode.create(hp,totypedef);
  1604. end
  1605. else
  1606. result:=hp;
  1607. end;
  1608. function ttypeconvnode.typecheck_set_to_set : tnode;
  1609. begin
  1610. result:=nil;
  1611. { constant sets can be converted by changing the type only }
  1612. if (left.nodetype=setconstn) then
  1613. begin
  1614. left.resultdef:=resultdef;
  1615. result:=left;
  1616. left:=nil;
  1617. exit;
  1618. end;
  1619. end;
  1620. function ttypeconvnode.typecheck_pchar_to_string : tnode;
  1621. var
  1622. newblock : tblocknode;
  1623. newstat : tstatementnode;
  1624. restemp : ttempcreatenode;
  1625. begin
  1626. if tstringdef(resultdef).stringtype=st_shortstring then
  1627. begin
  1628. newblock:=internalstatements(newstat);
  1629. restemp:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,false);
  1630. addstatement(newstat,restemp);
  1631. addstatement(newstat,ccallnode.createintern('fpc_pchar_to_shortstr',ccallparanode.create(left,ccallparanode.create(
  1632. ctemprefnode.create(restemp),nil))));
  1633. addstatement(newstat,ctempdeletenode.create_normal_temp(restemp));
  1634. addstatement(newstat,ctemprefnode.create(restemp));
  1635. result:=newblock;
  1636. end
  1637. else if tstringdef(resultdef).stringtype=st_ansistring then
  1638. result := ccallnode.createinternres(
  1639. 'fpc_pchar_to_'+tstringdef(resultdef).stringtypname,
  1640. ccallparanode.create(
  1641. cordconstnode.create(getparaencoding(resultdef),u16inttype,true),
  1642. ccallparanode.create(left,nil)
  1643. ),
  1644. resultdef
  1645. )
  1646. else
  1647. result := ccallnode.createinternres(
  1648. 'fpc_pchar_to_'+tstringdef(resultdef).stringtypname,
  1649. ccallparanode.create(left,nil),resultdef);
  1650. left:=nil;
  1651. end;
  1652. function ttypeconvnode.typecheck_interface_to_string : tnode;
  1653. begin
  1654. if assigned(tobjectdef(left.resultdef).iidstr) then
  1655. begin
  1656. if not(oo_has_valid_guid in tobjectdef(left.resultdef).objectoptions) then
  1657. CGMessage1(type_e_interface_has_no_guid,tobjectdef(left.resultdef).typename);
  1658. result:=cstringconstnode.createstr(tobjectdef(left.resultdef).iidstr^);
  1659. tstringconstnode(result).changestringtype(cshortstringtype);
  1660. end
  1661. else
  1662. internalerror(2013112913);
  1663. end;
  1664. function ttypeconvnode.typecheck_interface_to_guid : tnode;
  1665. begin
  1666. if assigned(tobjectdef(left.resultdef).iidguid) then
  1667. begin
  1668. if not(oo_has_valid_guid in tobjectdef(left.resultdef).objectoptions) then
  1669. CGMessage1(type_e_interface_has_no_guid,tobjectdef(left.resultdef).typename);
  1670. result:=cguidconstnode.create(tobjectdef(left.resultdef).iidguid^);
  1671. end
  1672. else
  1673. internalerror(2013112914);
  1674. end;
  1675. function ttypeconvnode.typecheck_dynarray_to_openarray : tnode;
  1676. begin
  1677. if (actualtargetnode(@left)^.nodetype in [pointerconstn,niln]) then
  1678. CGMessage(type_e_no_addr_of_constant);
  1679. { a dynamic array is a pointer to an array, so to convert it to }
  1680. { an open array, we have to dereference it (JM) }
  1681. result := ctypeconvnode.create_internal(left,cpointerdef.getreusable(resultdef));
  1682. typecheckpass(result);
  1683. { left is reused }
  1684. left := nil;
  1685. result := cderefnode.create(result);
  1686. include(result.flags,nf_no_checkpointer);
  1687. end;
  1688. function ttypeconvnode.typecheck_pwchar_to_string : tnode;
  1689. var
  1690. newblock : tblocknode;
  1691. newstat : tstatementnode;
  1692. restemp : ttempcreatenode;
  1693. begin
  1694. if tstringdef(resultdef).stringtype=st_shortstring then
  1695. begin
  1696. newblock:=internalstatements(newstat);
  1697. restemp:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,false);
  1698. addstatement(newstat,restemp);
  1699. addstatement(newstat,ccallnode.createintern('fpc_pwidechar_to_shortstr',ccallparanode.create(left,ccallparanode.create(
  1700. ctemprefnode.create(restemp),nil))));
  1701. addstatement(newstat,ctempdeletenode.create_normal_temp(restemp));
  1702. addstatement(newstat,ctemprefnode.create(restemp));
  1703. result:=newblock;
  1704. end
  1705. else if tstringdef(resultdef).stringtype=st_ansistring then
  1706. begin
  1707. result:=ccallnode.createinternres(
  1708. 'fpc_pwidechar_to_'+tstringdef(resultdef).stringtypname,
  1709. ccallparanode.create(
  1710. cordconstnode.create(
  1711. getparaencoding(resultdef),
  1712. u16inttype,
  1713. true
  1714. ),
  1715. ccallparanode.create(left,nil)
  1716. ),
  1717. resultdef
  1718. );
  1719. end
  1720. else
  1721. result := ccallnode.createinternres(
  1722. 'fpc_pwidechar_to_'+tstringdef(resultdef).stringtypname,
  1723. ccallparanode.create(left,nil),resultdef);
  1724. left:=nil;
  1725. end;
  1726. function ttypeconvnode.typecheck_variant_to_dynarray : tnode;
  1727. begin
  1728. result := ccallnode.createinternres(
  1729. 'fpc_variant_to_dynarray',
  1730. ccallparanode.create(caddrnode.create_internal(crttinode.create(tstoreddef(resultdef),initrtti,rdt_normal)),
  1731. ccallparanode.create(left,nil)
  1732. ),resultdef);
  1733. typecheckpass(result);
  1734. left:=nil;
  1735. end;
  1736. function ttypeconvnode.typecheck_dynarray_to_variant : tnode;
  1737. begin
  1738. result := ccallnode.createinternres(
  1739. 'fpc_dynarray_to_variant',
  1740. ccallparanode.create(caddrnode.create_internal(crttinode.create(tstoreddef(left.resultdef),initrtti,rdt_normal)),
  1741. ccallparanode.create(ctypeconvnode.create_explicit(left,voidpointertype),nil)
  1742. ),resultdef);
  1743. typecheckpass(result);
  1744. left:=nil;
  1745. end;
  1746. function ttypeconvnode.typecheck_variant_to_interface : tnode;
  1747. begin
  1748. if def_is_related(tobjectdef(resultdef),tobjectdef(search_system_type('IDISPATCH').typedef)) then
  1749. result := ccallnode.createinternres(
  1750. 'fpc_variant_to_idispatch',
  1751. ccallparanode.create(left,nil)
  1752. ,resultdef)
  1753. else
  1754. result := ccallnode.createinternres(
  1755. 'fpc_variant_to_interface',
  1756. ccallparanode.create(left,nil)
  1757. ,resultdef);
  1758. typecheckpass(result);
  1759. left:=nil;
  1760. end;
  1761. function ttypeconvnode.typecheck_interface_to_variant : tnode;
  1762. begin
  1763. if def_is_related(tobjectdef(left.resultdef),tobjectdef(search_system_type('IDISPATCH').typedef)) then
  1764. result := ccallnode.createinternres(
  1765. 'fpc_idispatch_to_variant',
  1766. ccallparanode.create(left,nil)
  1767. ,resultdef)
  1768. else
  1769. result := ccallnode.createinternres(
  1770. 'fpc_interface_to_variant',
  1771. ccallparanode.create(left,nil)
  1772. ,resultdef);
  1773. typecheckpass(result);
  1774. left:=nil;
  1775. end;
  1776. function ttypeconvnode.typecheck_variant_to_enum : tnode;
  1777. begin
  1778. result := ctypeconvnode.create_internal(left,sinttype);
  1779. result := ctypeconvnode.create_internal(result,resultdef);
  1780. typecheckpass(result);
  1781. { left is reused }
  1782. left := nil;
  1783. end;
  1784. function ttypeconvnode.typecheck_enum_to_variant : tnode;
  1785. begin
  1786. result := ctypeconvnode.create_internal(left,sinttype);
  1787. result := ctypeconvnode.create_internal(result,cvarianttype);
  1788. typecheckpass(result);
  1789. { left is reused }
  1790. left := nil;
  1791. end;
  1792. function ttypeconvnode.typecheck_array_2_dynarray : tnode;
  1793. var
  1794. newstatement : tstatementnode;
  1795. temp : ttempcreatenode;
  1796. temp2 : ttempcreatenode;
  1797. begin
  1798. { create statements with call to getmem+initialize }
  1799. result:=internalstatements(newstatement);
  1800. { create temp for result }
  1801. temp:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,true);
  1802. addstatement(newstatement,temp);
  1803. { get temp for array of lengths }
  1804. temp2:=ctempcreatenode.create(sinttype,sinttype.size,tt_persistent,false);
  1805. addstatement(newstatement,temp2);
  1806. { one dimensional }
  1807. addstatement(newstatement,cassignmentnode.create(
  1808. ctemprefnode.create(temp2),
  1809. cordconstnode.create
  1810. (tarraydef(left.resultdef).highrange+1,s32inttype,true)));
  1811. { create call to fpc_dynarr_setlength }
  1812. addstatement(newstatement,ccallnode.createintern('fpc_dynarray_setlength',
  1813. ccallparanode.create(caddrnode.create_internal
  1814. (ctemprefnode.create(temp2)),
  1815. ccallparanode.create(cordconstnode.create
  1816. (1,s32inttype,true),
  1817. ccallparanode.create(caddrnode.create_internal
  1818. (crttinode.create(tstoreddef(resultdef),initrtti,rdt_normal)),
  1819. ccallparanode.create(
  1820. ctypeconvnode.create_internal(
  1821. ctemprefnode.create(temp),voidpointertype),
  1822. nil))))
  1823. ));
  1824. addstatement(newstatement,ctempdeletenode.create(temp2));
  1825. { copy ... }
  1826. addstatement(newstatement,cassignmentnode.create(
  1827. ctypeconvnode.create_internal(cderefnode.create(ctypeconvnode.create_internal(ctemprefnode.create(temp),voidpointertype)),left.resultdef),
  1828. left
  1829. ));
  1830. { left is reused }
  1831. left:=nil;
  1832. { the last statement should return the value as
  1833. location and type, this is done be referencing the
  1834. temp and converting it first from a persistent temp to
  1835. normal temp }
  1836. addstatement(newstatement,ctempdeletenode.create_normal_temp(temp));
  1837. addstatement(newstatement,ctemprefnode.create(temp));
  1838. end;
  1839. function ttypeconvnode.typecheck_elem_2_openarray : tnode;
  1840. begin
  1841. result:=nil;
  1842. end;
  1843. function ttypeconvnode.typecheck_arrayconstructor_to_dynarray : tnode;
  1844. var
  1845. newstatement,
  1846. assstatement : tstatementnode;
  1847. arrnode : ttempcreatenode;
  1848. temp2 : ttempcreatenode;
  1849. assnode : tnode;
  1850. paracount : integer;
  1851. elemnode : tarrayconstructornode;
  1852. begin
  1853. { assignment of []? }
  1854. if (
  1855. (left.nodetype=arrayconstructorn) and
  1856. not assigned(tarrayconstructornode(left).left)
  1857. ) or
  1858. is_emptyset(left)
  1859. then
  1860. begin
  1861. result:=cnilnode.create;
  1862. exit;
  1863. end;
  1864. if resultdef.typ<>arraydef then
  1865. internalerror(2017050102);
  1866. tarrayconstructornode(left).force_type(tarraydef(resultdef).elementdef);
  1867. result:=internalstatements(newstatement);
  1868. { create temp for result }
  1869. arrnode:=ctempcreatenode.create(totypedef,totypedef.size,tt_persistent,true);
  1870. addstatement(newstatement,arrnode);
  1871. paracount:=0;
  1872. { create an assignment call for each element }
  1873. assnode:=internalstatements(assstatement);
  1874. if left.nodetype=arrayconstructorrangen then
  1875. internalerror(2016021902);
  1876. elemnode:=tarrayconstructornode(left);
  1877. while assigned(elemnode) do
  1878. begin
  1879. { arr[i] := param_i }
  1880. if not assigned(elemnode.left) then
  1881. internalerror(2017050103);
  1882. addstatement(assstatement,
  1883. cassignmentnode.create(
  1884. cvecnode.create(
  1885. ctemprefnode.create(arrnode),
  1886. cordconstnode.create(paracount,tarraydef(totypedef).rangedef,false)),
  1887. elemnode.left));
  1888. elemnode.left:=nil;
  1889. inc(paracount);
  1890. elemnode:=tarrayconstructornode(elemnode.right);
  1891. if assigned(elemnode) and (elemnode.nodetype<>arrayconstructorn) then
  1892. internalerror(2016021903);
  1893. end;
  1894. { get temp for array of lengths }
  1895. temp2:=ctempcreatenode.create_value(sinttype,sinttype.size,tt_persistent,false,cordconstnode.create(paracount,s32inttype,true));
  1896. addstatement(newstatement,temp2);
  1897. { create call to fpc_dynarr_setlength }
  1898. addstatement(newstatement,ccallnode.createintern('fpc_dynarray_setlength',
  1899. ccallparanode.create(caddrnode.create_internal
  1900. (ctemprefnode.create(temp2)),
  1901. ccallparanode.create(cordconstnode.create
  1902. (1,s32inttype,true),
  1903. ccallparanode.create(caddrnode.create_internal
  1904. (crttinode.create(tstoreddef(totypedef),initrtti,rdt_normal)),
  1905. ccallparanode.create(
  1906. ctypeconvnode.create_internal(
  1907. ctemprefnode.create(arrnode),voidpointertype),
  1908. nil))))
  1909. ));
  1910. { add assignment statememnts }
  1911. addstatement(newstatement,ctempdeletenode.create(temp2));
  1912. addstatement(newstatement,assnode);
  1913. { the last statement should return the value as
  1914. location and type, this is done be referencing the
  1915. temp and converting it first from a persistent temp to
  1916. normal temp }
  1917. addstatement(newstatement,ctempdeletenode.create_normal_temp(arrnode));
  1918. addstatement(newstatement,ctemprefnode.create(arrnode));
  1919. end;
  1920. function ttypeconvnode.typecheck_arrayconstructor_to_array : tnode;
  1921. var
  1922. newstatement,
  1923. assstatement : tstatementnode;
  1924. arrnode : ttempcreatenode;
  1925. temp2 : ttempcreatenode;
  1926. assnode : tnode;
  1927. paracount : integer;
  1928. elemnode : tarrayconstructornode;
  1929. begin
  1930. tarrayconstructornode(left).force_type(tarraydef(resultdef).elementdef);
  1931. result:=internalstatements(newstatement);
  1932. { create temp for result }
  1933. arrnode:=ctempcreatenode.create(totypedef,totypedef.size,tt_persistent,true);
  1934. addstatement(newstatement,arrnode);
  1935. paracount:=0;
  1936. { create an assignment call for each element }
  1937. assnode:=internalstatements(assstatement);
  1938. if left.nodetype=arrayconstructorrangen then
  1939. internalerror(2020041402);
  1940. elemnode:=tarrayconstructornode(left);
  1941. while assigned(elemnode) do
  1942. begin
  1943. { arr[i] := param_i }
  1944. if not assigned(elemnode.left) then
  1945. internalerror(2020041403);
  1946. addstatement(assstatement,
  1947. cassignmentnode.create(
  1948. cvecnode.create(
  1949. ctemprefnode.create(arrnode),
  1950. cordconstnode.create(paracount+tarraydef(totypedef).lowrange,tarraydef(totypedef).rangedef,false)),
  1951. elemnode.left));
  1952. elemnode.left:=nil;
  1953. inc(paracount);
  1954. elemnode:=tarrayconstructornode(elemnode.right);
  1955. if assigned(elemnode) and (elemnode.nodetype<>arrayconstructorn) then
  1956. internalerror(2020041404);
  1957. end;
  1958. { get temp for array of lengths }
  1959. temp2:=ctempcreatenode.create_value(sinttype,sinttype.size,tt_persistent,false,cordconstnode.create(paracount,s32inttype,true));
  1960. addstatement(newstatement,temp2);
  1961. { add assignment statememnts }
  1962. addstatement(newstatement,ctempdeletenode.create(temp2));
  1963. addstatement(newstatement,assnode);
  1964. { the last statement should return the value as
  1965. location and type, this is done be referencing the
  1966. temp and converting it first from a persistent temp to
  1967. normal temp }
  1968. addstatement(newstatement,ctempdeletenode.create_normal_temp(arrnode));
  1969. addstatement(newstatement,ctemprefnode.create(arrnode));
  1970. end;
  1971. function ttypeconvnode._typecheck_int_to_int : tnode;
  1972. begin
  1973. result := typecheck_int_to_int;
  1974. end;
  1975. function ttypeconvnode._typecheck_cord_to_pointer : tnode;
  1976. begin
  1977. result := typecheck_cord_to_pointer;
  1978. end;
  1979. function ttypeconvnode._typecheck_chararray_to_string : tnode;
  1980. begin
  1981. result := typecheck_chararray_to_string;
  1982. end;
  1983. function ttypeconvnode._typecheck_string_to_chararray : tnode;
  1984. begin
  1985. result := typecheck_string_to_chararray;
  1986. end;
  1987. function ttypeconvnode._typecheck_string_to_string: tnode;
  1988. begin
  1989. result := typecheck_string_to_string;
  1990. end;
  1991. function ttypeconvnode._typecheck_char_to_string : tnode;
  1992. begin
  1993. result := typecheck_char_to_string;
  1994. end;
  1995. function ttypeconvnode._typecheck_char_to_chararray : tnode;
  1996. begin
  1997. result := typecheck_char_to_chararray;
  1998. end;
  1999. function ttypeconvnode._typecheck_int_to_real : tnode;
  2000. begin
  2001. result := typecheck_int_to_real;
  2002. end;
  2003. function ttypeconvnode._typecheck_real_to_real : tnode;
  2004. begin
  2005. result := typecheck_real_to_real;
  2006. end;
  2007. function ttypeconvnode._typecheck_real_to_currency : tnode;
  2008. begin
  2009. result := typecheck_real_to_currency;
  2010. end;
  2011. function ttypeconvnode._typecheck_cchar_to_pchar : tnode;
  2012. begin
  2013. result := typecheck_cchar_to_pchar;
  2014. end;
  2015. function ttypeconvnode._typecheck_cstring_to_pchar : tnode;
  2016. begin
  2017. result := typecheck_cstring_to_pchar;
  2018. end;
  2019. function ttypeconvnode._typecheck_cstring_to_int : tnode;
  2020. begin
  2021. result := typecheck_cstring_to_int;
  2022. end;
  2023. function ttypeconvnode._typecheck_char_to_char : tnode;
  2024. begin
  2025. result := typecheck_char_to_char;
  2026. end;
  2027. function ttypeconvnode._typecheck_arrayconstructor_to_set : tnode;
  2028. begin
  2029. result := typecheck_arrayconstructor_to_set;
  2030. end;
  2031. function ttypeconvnode._typecheck_set_to_set : tnode;
  2032. begin
  2033. result := typecheck_set_to_set;
  2034. end;
  2035. function ttypeconvnode._typecheck_pchar_to_string : tnode;
  2036. begin
  2037. result := typecheck_pchar_to_string;
  2038. end;
  2039. function ttypeconvnode._typecheck_interface_to_string : tnode;
  2040. begin
  2041. result := typecheck_interface_to_string;
  2042. end;
  2043. function ttypeconvnode._typecheck_interface_to_guid : tnode;
  2044. begin
  2045. result := typecheck_interface_to_guid;
  2046. end;
  2047. function ttypeconvnode._typecheck_dynarray_to_openarray : tnode;
  2048. begin
  2049. result := typecheck_dynarray_to_openarray;
  2050. end;
  2051. function ttypeconvnode._typecheck_pwchar_to_string : tnode;
  2052. begin
  2053. result := typecheck_pwchar_to_string;
  2054. end;
  2055. function ttypeconvnode._typecheck_variant_to_dynarray : tnode;
  2056. begin
  2057. result := typecheck_variant_to_dynarray;
  2058. end;
  2059. function ttypeconvnode._typecheck_dynarray_to_variant : tnode;
  2060. begin
  2061. result := typecheck_dynarray_to_variant;
  2062. end;
  2063. function ttypeconvnode._typecheck_variant_to_enum : tnode;
  2064. begin
  2065. result := typecheck_variant_to_enum;
  2066. end;
  2067. function ttypeconvnode._typecheck_enum_to_variant : tnode;
  2068. begin
  2069. result := typecheck_enum_to_variant;
  2070. end;
  2071. function ttypeconvnode._typecheck_proc_to_procvar : tnode;
  2072. begin
  2073. result := typecheck_proc_to_procvar;
  2074. end;
  2075. function ttypeconvnode._typecheck_variant_to_interface : tnode;
  2076. begin
  2077. result := typecheck_variant_to_interface;
  2078. end;
  2079. function ttypeconvnode._typecheck_interface_to_variant : tnode;
  2080. begin
  2081. result := typecheck_interface_to_variant;
  2082. end;
  2083. function ttypeconvnode._typecheck_array_2_dynarray : tnode;
  2084. begin
  2085. result := typecheck_array_2_dynarray;
  2086. end;
  2087. function ttypeconvnode._typecheck_elem_2_openarray : tnode;
  2088. begin
  2089. result := typecheck_elem_2_openarray;
  2090. end;
  2091. function ttypeconvnode._typecheck_arrayconstructor_to_dynarray : tnode;
  2092. begin
  2093. result:=typecheck_arrayconstructor_to_dynarray;
  2094. end;
  2095. function ttypeconvnode._typecheck_arrayconstructor_to_array : tnode;
  2096. begin
  2097. result:=typecheck_arrayconstructor_to_array;
  2098. end;
  2099. function ttypeconvnode.target_specific_general_typeconv: boolean;
  2100. begin
  2101. result:=false;
  2102. end;
  2103. function ttypeconvnode.target_specific_explicit_typeconv: boolean;
  2104. begin
  2105. result:=false;
  2106. end;
  2107. class function ttypeconvnode.target_specific_need_equal_typeconv(fromdef, todef: tdef): boolean;
  2108. begin
  2109. result:=false;
  2110. end;
  2111. function ttypeconvnode.typecheck_proc_to_procvar : tnode;
  2112. var
  2113. pd : tabstractprocdef;
  2114. copytype : tproccopytyp;
  2115. source: pnode;
  2116. begin
  2117. result:=nil;
  2118. pd:=tabstractprocdef(left.resultdef);
  2119. { create procvardef (default for create_proc_to_procvar is voiddef,
  2120. but if later a regular inserttypeconvnode() is used to insert a type
  2121. conversion to the actual procvardef, totypedef will be set to the
  2122. real procvartype that we are converting to) }
  2123. if assigned(totypedef) and
  2124. (totypedef.typ=procvardef) then
  2125. begin
  2126. { have to do this in typecheckpass so that it's triggered for
  2127. typed constant declarations }
  2128. if po_is_block in tprocvardef(totypedef).procoptions then
  2129. begin
  2130. { can only convert from procdef to procvardef, but in the mean
  2131. time other type conversions may have been inserted (pointers,
  2132. proc2procvar, ...) }
  2133. source:=actualtargetnode(@left);
  2134. while (source^.nodetype=typeconvn) and
  2135. (ttypeconvnode(source^).convtype=tc_proc_2_procvar) and
  2136. (is_void(source^.resultdef) or
  2137. (source^.resultdef.typ=procvardef)) do
  2138. begin
  2139. { won't skip proc2procvar }
  2140. source:=actualtargetnode(@ttypeconvnode(source^).left);
  2141. end;
  2142. if (source^.nodetype=loadn) and
  2143. (source^.resultdef.typ=procdef) and
  2144. not is_nested_pd(tprocdef(source^.resultdef)) and
  2145. not is_objcclass(tdef(source^.resultdef.owner.defowner)) then
  2146. begin
  2147. result:=generate_block_for_procaddr(tloadnode(source^));
  2148. exit;
  2149. end
  2150. else
  2151. CGMessage2(type_e_illegal_type_conversion,left.resultdef.typename,resultdef.typename);
  2152. end;
  2153. resultdef:=totypedef;
  2154. end
  2155. else
  2156. begin
  2157. { only need the address of the method? this is needed
  2158. for @tobject.create. In this case there will be a loadn without
  2159. a methodpointer. }
  2160. if (left.nodetype=loadn) and
  2161. not assigned(tloadnode(left).left) and
  2162. (not(m_nested_procvars in current_settings.modeswitches) or
  2163. not is_nested_pd(tabstractprocdef(tloadnode(left).resultdef))) then
  2164. copytype:=pc_address_only
  2165. else
  2166. copytype:=pc_normal;
  2167. resultdef:=cprocvardef.getreusableprocaddr(pd,copytype);
  2168. end;
  2169. end;
  2170. function ttypeconvnode.typecheck_call_helper(c : tconverttype) : tnode;
  2171. const
  2172. resultdefconvert : array[tconverttype] of pointer = (
  2173. {none} nil,
  2174. {equal} nil,
  2175. {not_possible} nil,
  2176. { string_2_string } @ttypeconvnode._typecheck_string_to_string,
  2177. { char_2_string } @ttypeconvnode._typecheck_char_to_string,
  2178. { char_2_chararray } @ttypeconvnode._typecheck_char_to_chararray,
  2179. { pchar_2_string } @ttypeconvnode._typecheck_pchar_to_string,
  2180. { cchar_2_pchar } @ttypeconvnode._typecheck_cchar_to_pchar,
  2181. { cstring_2_pchar } @ttypeconvnode._typecheck_cstring_to_pchar,
  2182. { cstring_2_int } @ttypeconvnode._typecheck_cstring_to_int,
  2183. { ansistring_2_pchar } nil,
  2184. { string_2_chararray } @ttypeconvnode._typecheck_string_to_chararray,
  2185. { chararray_2_string } @ttypeconvnode._typecheck_chararray_to_string,
  2186. { array_2_pointer } nil,
  2187. { pointer_2_array } nil,
  2188. { int_2_int } @ttypeconvnode._typecheck_int_to_int,
  2189. { int_2_bool } nil,
  2190. { bool_2_bool } nil,
  2191. { bool_2_int } nil,
  2192. { real_2_real } @ttypeconvnode._typecheck_real_to_real,
  2193. { int_2_real } @ttypeconvnode._typecheck_int_to_real,
  2194. { real_2_currency } @ttypeconvnode._typecheck_real_to_currency,
  2195. { proc_2_procvar } @ttypeconvnode._typecheck_proc_to_procvar,
  2196. { nil_2_methodprocvar } nil,
  2197. { arrayconstructor_2_set } @ttypeconvnode._typecheck_arrayconstructor_to_set,
  2198. { set_to_set } @ttypeconvnode._typecheck_set_to_set,
  2199. { cord_2_pointer } @ttypeconvnode._typecheck_cord_to_pointer,
  2200. { intf_2_string } @ttypeconvnode._typecheck_interface_to_string,
  2201. { intf_2_guid } @ttypeconvnode._typecheck_interface_to_guid,
  2202. { class_2_intf } nil,
  2203. { char_2_char } @ttypeconvnode._typecheck_char_to_char,
  2204. { dynarray_2_openarray} @ttypeconvnode._typecheck_dynarray_to_openarray,
  2205. { pwchar_2_string} @ttypeconvnode._typecheck_pwchar_to_string,
  2206. { variant_2_dynarray} @ttypeconvnode._typecheck_variant_to_dynarray,
  2207. { dynarray_2_variant} @ttypeconvnode._typecheck_dynarray_to_variant,
  2208. { variant_2_enum} @ttypeconvnode._typecheck_variant_to_enum,
  2209. { enum_2_variant} @ttypeconvnode._typecheck_enum_to_variant,
  2210. { variant_2_interface} @ttypeconvnode._typecheck_interface_to_variant,
  2211. { interface_2_variant} @ttypeconvnode._typecheck_variant_to_interface,
  2212. { array_2_dynarray} @ttypeconvnode._typecheck_array_2_dynarray,
  2213. { elem_2_openarray } @ttypeconvnode._typecheck_elem_2_openarray,
  2214. { arrayconstructor_2_dynarray } @ttypeconvnode._typecheck_arrayconstructor_to_dynarray,
  2215. { arrayconstructor_2_array } @ttypeconvnode._typecheck_arrayconstructor_to_array
  2216. );
  2217. type
  2218. tprocedureofobject = function : tnode of object;
  2219. var
  2220. r : TMethod;
  2221. begin
  2222. result:=nil;
  2223. { this is a little bit dirty but it works }
  2224. { and should be quite portable too }
  2225. r.Code:=resultdefconvert[c];
  2226. r.Data:=self;
  2227. if assigned(r.Code) then
  2228. result:=tprocedureofobject(r)();
  2229. end;
  2230. function ttypeconvnode.pass_typecheck:tnode;
  2231. var
  2232. hdef : tdef;
  2233. hp : tnode;
  2234. currprocdef : tabstractprocdef;
  2235. aprocdef : tprocdef;
  2236. eq : tequaltype;
  2237. cdoptions : tcompare_defs_options;
  2238. selfnode : tnode;
  2239. newblock: tblocknode;
  2240. newstatement: tstatementnode;
  2241. tempnode: ttempcreatenode;
  2242. begin
  2243. result:=nil;
  2244. resultdef:=totypedef;
  2245. typecheckpass(left);
  2246. if codegenerror then
  2247. exit;
  2248. { When absolute force tc_equal }
  2249. if (nf_absolute in flags) then
  2250. begin
  2251. convtype:=tc_equal;
  2252. { we need to check regability only if something is really regable }
  2253. if ((tstoreddef(left.resultdef).is_intregable) or
  2254. (tstoreddef(resultdef).is_fpuregable)) and
  2255. (
  2256. (tstoreddef(resultdef).is_intregable<>tstoreddef(left.resultdef).is_intregable) or
  2257. (tstoreddef(resultdef).is_fpuregable<>tstoreddef(left.resultdef).is_fpuregable) or
  2258. { like in pdecvar.read_absolute(): if the size changes, the
  2259. register size would also have to change (but second_nothing
  2260. does not handle this) }
  2261. (tstoreddef(resultdef).size<>tstoreddef(left.resultdef).size)) then
  2262. make_not_regable(left,[ra_addr_regable]);
  2263. exit;
  2264. end;
  2265. { tp procvar support. Skip typecasts to procvar, record or set. Those
  2266. convert on the procvar value. This is used to access the
  2267. fields of a methodpointer }
  2268. if not(nf_load_procvar in flags) and
  2269. not(resultdef.typ in [procvardef,recorddef,setdef]) and
  2270. not is_invokable(resultdef) and
  2271. { in case of interface assignments of invokables they'll be converted
  2272. to voidpointertype using an internal conversions; we must not call
  2273. the invokable in that case }
  2274. not (
  2275. (nf_internal in flags) and
  2276. is_invokable(left.resultdef)
  2277. ) then
  2278. maybe_call_procvar(left,true);
  2279. if target_specific_general_typeconv then
  2280. exit;
  2281. if convtype=tc_none then
  2282. begin
  2283. cdoptions:=[cdo_allow_variant,cdo_warn_incompatible_univ];
  2284. { overloaded operators require calls, which is not possible inside
  2285. a constant declaration }
  2286. if (block_type<>bt_const) and
  2287. not(nf_internal in flags) then
  2288. include(cdoptions,cdo_check_operator);
  2289. if nf_explicit in flags then
  2290. include(cdoptions,cdo_explicit);
  2291. if nf_internal in flags then
  2292. include(cdoptions,cdo_internal);
  2293. aprocdef:=nil;
  2294. eq:=compare_defs_ext(left.resultdef,resultdef,left.nodetype,convtype,aprocdef,cdoptions);
  2295. case eq of
  2296. te_exact,
  2297. te_equal :
  2298. begin
  2299. result := simplify(false);
  2300. if assigned(result) then
  2301. exit;
  2302. { in case of bitpacked accesses, the original type must
  2303. remain so that not too many/few bits are laoded }
  2304. if is_bitpacked_access(left) then
  2305. convtype:=tc_int_2_int;
  2306. { Only leave when there is no conversion to do.
  2307. We can still need to call a conversion routine,
  2308. like the routine to convert a stringconstnode }
  2309. if (convtype in [tc_equal,tc_not_possible]) and
  2310. { some conversions, like dynarray to pointer in Delphi
  2311. mode, must not be removed, because then we get memory
  2312. leaks due to missing temp finalization }
  2313. (not is_managed_type(left.resultdef) or
  2314. { different kinds of refcounted types may need calls
  2315. to different kinds of refcounting helpers }
  2316. (resultdef=left.resultdef)) then
  2317. begin
  2318. {$ifdef llvm}
  2319. { we still may have to insert a type conversion at the
  2320. llvm level }
  2321. if (blocktype<>bt_const) and
  2322. (left.resultdef<>resultdef) and
  2323. { if unspecialised generic -> we won't generate any code
  2324. for this, and keeping the type conversion node will
  2325. cause valid_for_assign to fail because the typecast will be from/to something of 0
  2326. bytes to/from something with a non-zero size }
  2327. not is_typeparam(left.resultdef) and
  2328. not is_typeparam(resultdef) then
  2329. result:=nil
  2330. else
  2331. {$endif llvm}
  2332. begin
  2333. left.resultdef:=resultdef;
  2334. if (nf_explicit in flags) and (left.nodetype = addrn) then
  2335. include(taddrnode(left).addrnodeflags,anf_typedaddr);
  2336. result:=left;
  2337. left:=nil;
  2338. end;
  2339. exit;
  2340. end;
  2341. end;
  2342. te_convert_l1,
  2343. te_convert_l2,
  2344. te_convert_l3,
  2345. te_convert_l4,
  2346. te_convert_l5,
  2347. te_convert_l6:
  2348. { nothing to do }
  2349. ;
  2350. te_convert_operator :
  2351. begin
  2352. include(current_procinfo.flags,pi_do_call);
  2353. addsymref(aprocdef.procsym,aprocdef);
  2354. hp:=ccallnode.create(ccallparanode.create(left,nil),Tprocsym(aprocdef.procsym),nil,nil,[],nil);
  2355. { tell explicitly which def we must use !! (PM) }
  2356. tcallnode(hp).procdefinition:=aprocdef;
  2357. left:=nil;
  2358. result:=hp;
  2359. exit;
  2360. end;
  2361. te_incompatible :
  2362. begin
  2363. { convert an array constructor to a set so that we still get
  2364. the error "set of Y incompatible to Z" instead of "array of
  2365. X incompatible to Z" }
  2366. if (resultdef.typ<>arraydef) and
  2367. is_array_constructor(left.resultdef) then
  2368. begin
  2369. arrayconstructor_to_set(left);
  2370. typecheckpass(left);
  2371. end;
  2372. { Procedures have a resultdef of voiddef and functions of their
  2373. own resultdef. They will therefore always be incompatible with
  2374. a procvar. Because isconvertable cannot check for procedures we
  2375. use an extra check for them.}
  2376. if (left.nodetype=calln) and
  2377. (tcallnode(left).required_para_count=0) and
  2378. (resultdef.typ=procvardef) and
  2379. (
  2380. (m_tp_procvar in current_settings.modeswitches) or
  2381. (m_mac_procvar in current_settings.modeswitches)
  2382. ) then
  2383. begin
  2384. if assigned(tcallnode(left).right) then
  2385. begin
  2386. { this is already a procvar, if it is really equal
  2387. is checked below }
  2388. convtype:=tc_equal;
  2389. hp:=tcallnode(left).right.getcopy;
  2390. currprocdef:=tabstractprocdef(hp.resultdef);
  2391. end
  2392. else
  2393. begin
  2394. convtype:=tc_proc_2_procvar;
  2395. currprocdef:=Tprocsym(Tcallnode(left).symtableprocentry).Find_procdef_byprocvardef(Tprocvardef(resultdef));
  2396. hp:=cloadnode.create_procvar(tprocsym(tcallnode(left).symtableprocentry),
  2397. tprocdef(currprocdef),tcallnode(left).symtableproc);
  2398. if (tcallnode(left).symtableprocentry.owner.symtabletype=ObjectSymtable) then
  2399. begin
  2400. selfnode:=tcallnode(left).methodpointer;
  2401. if assigned(selfnode) then
  2402. begin
  2403. { in case the nodetype is a typen, avoid the internal error
  2404. in set_mp and instead let the code error out normally }
  2405. if selfnode.nodetype<>typen then
  2406. tloadnode(hp).set_mp(selfnode.getcopy)
  2407. end
  2408. else
  2409. tloadnode(hp).set_mp(load_self_node);
  2410. end;
  2411. typecheckpass(hp);
  2412. end;
  2413. left.free;
  2414. left:=hp;
  2415. { Now check if the procedure we are going to assign to
  2416. the procvar, is compatible with the procvar's type }
  2417. if not(nf_explicit in flags) and
  2418. (proc_to_procvar_equal(currprocdef,tprocvardef(resultdef),false)=te_incompatible) then
  2419. IncompatibleTypes(left.resultdef,resultdef)
  2420. else
  2421. result:=typecheck_call_helper(convtype);
  2422. exit;
  2423. end
  2424. else if maybe_global_proc_to_nested(left,resultdef) or
  2425. maybe_classmethod_to_methodprocvar(left,resultdef) then
  2426. begin
  2427. result:=left;
  2428. left:=nil;
  2429. exit;
  2430. end;
  2431. { Handle explicit type conversions }
  2432. if nf_explicit in flags then
  2433. begin
  2434. { do common tc_equal cast, except when dealing with proc -> procvar
  2435. (may have to get rid of method pointer) }
  2436. if (left.resultdef.typ<>procdef) or
  2437. (resultdef.typ<>procvardef) then
  2438. convtype:=tc_equal
  2439. else
  2440. convtype:=tc_proc_2_procvar;
  2441. { ordinal constants can be resized to 1,2,4,8 bytes }
  2442. if (left.nodetype=ordconstn) then
  2443. begin
  2444. { Insert typeconv for ordinal to the correct size first on left, after
  2445. that the other conversion can be done }
  2446. hdef:=nil;
  2447. case longint(resultdef.size) of
  2448. 1 :
  2449. hdef:=s8inttype;
  2450. 2 :
  2451. hdef:=s16inttype;
  2452. 4 :
  2453. hdef:=s32inttype;
  2454. 8 :
  2455. hdef:=s64inttype;
  2456. end;
  2457. { we need explicit, because it can also be an enum }
  2458. if assigned(hdef) then
  2459. inserttypeconv_internal(left,hdef)
  2460. else
  2461. CGMessage2(type_e_illegal_type_conversion,left.resultdef.typename,resultdef.typename);
  2462. end;
  2463. { class/interface to class/interface, with checkobject support }
  2464. if is_class_or_interface_or_objc(resultdef) and
  2465. is_class_or_interface_or_objc(left.resultdef) then
  2466. begin
  2467. { check if the types are related }
  2468. if not(nf_internal in flags) and
  2469. (not(def_is_related(tobjectdef(left.resultdef),tobjectdef(resultdef)))) and
  2470. (not(def_is_related(tobjectdef(resultdef),tobjectdef(left.resultdef)))) then
  2471. begin
  2472. { Give an error when typecasting class to interface, this is compatible
  2473. with delphi }
  2474. if is_interface(resultdef) and
  2475. not is_interface(left.resultdef) then
  2476. CGMessage2(type_e_classes_not_related,
  2477. FullTypeName(left.resultdef,resultdef),
  2478. FullTypeName(resultdef,left.resultdef))
  2479. else
  2480. CGMessage2(type_w_classes_not_related,
  2481. FullTypeName(left.resultdef,resultdef),
  2482. FullTypeName(resultdef,left.resultdef))
  2483. end;
  2484. { Add runtime check? }
  2485. if not is_objc_class_or_protocol(resultdef) and
  2486. not is_objc_class_or_protocol(left.resultdef) and
  2487. (cs_check_object in current_settings.localswitches) and
  2488. not(nf_internal in flags) then
  2489. begin
  2490. { we can translate the typeconvnode to 'as' when
  2491. typecasting to a class or interface }
  2492. { we need to make sure the result can still be
  2493. passed as a var parameter }
  2494. newblock:=internalstatements(newstatement);
  2495. if (valid_for_var(left,false)) then
  2496. begin
  2497. tempnode:=ctempcreatenode.create(voidpointertype,voidpointertype.size,tt_persistent,true);
  2498. addstatement(newstatement,tempnode);
  2499. addstatement(newstatement,cassignmentnode.create(
  2500. ctemprefnode.create(tempnode),
  2501. caddrnode.create_internal(left)));
  2502. left:=ctypeconvnode.create_internal(cderefnode.create(ctemprefnode.create(tempnode)),left.resultdef);
  2503. end
  2504. else
  2505. begin
  2506. tempnode:=ctempcreatenode.create(left.resultdef,left.resultdef.size,tt_persistent,true);
  2507. addstatement(newstatement,tempnode);
  2508. addstatement(newstatement,cassignmentnode.create(
  2509. ctemprefnode.create(tempnode),
  2510. left));
  2511. left:=ctemprefnode.create(tempnode);
  2512. end;
  2513. addstatement(newstatement,casnode.create(left.getcopy,cloadvmtaddrnode.create(ctypenode.create(resultdef))));
  2514. addstatement(newstatement,ctempdeletenode.create_normal_temp(tempnode));
  2515. addstatement(newstatement,ctypeconvnode.create_internal(left,resultdef));
  2516. left:=nil;
  2517. result:=newblock;
  2518. exit;
  2519. end;
  2520. end
  2521. else
  2522. begin
  2523. { only if the same size or formal def, and }
  2524. { don't allow type casting of constants to }
  2525. { structured types }
  2526. if not(
  2527. (left.resultdef.typ=formaldef) or
  2528. {$ifdef jvm}
  2529. { enums /are/ class instances on the JVM
  2530. platform }
  2531. (((left.resultdef.typ=enumdef) and
  2532. (resultdef.typ=objectdef)) or
  2533. ((resultdef.typ=enumdef) and
  2534. (left.resultdef.typ=objectdef))) or
  2535. {$endif}
  2536. (
  2537. is_void(left.resultdef) and
  2538. (left.nodetype=derefn)
  2539. ) or
  2540. (
  2541. not(is_open_array(left.resultdef)) and
  2542. not(is_array_constructor(left.resultdef)) and
  2543. not(is_array_of_const(left.resultdef)) and
  2544. (left.resultdef.size=resultdef.size) and
  2545. { disallow casts of const nodes }
  2546. (not is_constnode(left) or
  2547. { however, there are some exceptions }
  2548. (not(resultdef.typ in [arraydef,recorddef,setdef,stringdef,
  2549. filedef,variantdef,objectdef]) or
  2550. is_class_or_interface_or_objc(resultdef) or
  2551. { the softfloat code generates casts <const. float> to record }
  2552. (nf_internal in flags)
  2553. ))
  2554. )
  2555. ) then
  2556. CGMessage2(type_e_illegal_type_conversion,left.resultdef.typename,resultdef.typename)
  2557. else
  2558. begin
  2559. { perform target-specific explicit typecast
  2560. checks }
  2561. if target_specific_explicit_typeconv then
  2562. begin
  2563. result:=simplify(false);
  2564. exit;
  2565. end;
  2566. end;
  2567. end;
  2568. end
  2569. else
  2570. IncompatibleTypes(left.resultdef,resultdef);
  2571. end;
  2572. end;
  2573. end;
  2574. { Give hint or warning for unportable code, exceptions are
  2575. - typecasts from constants
  2576. - void }
  2577. if not(nf_internal in flags) and
  2578. (left.nodetype<>ordconstn) and
  2579. not(is_void(left.resultdef)) and
  2580. (((left.resultdef.typ=orddef) and
  2581. (resultdef.typ in [pointerdef,procvardef,classrefdef])) or
  2582. ((resultdef.typ=orddef) and
  2583. (left.resultdef.typ in [pointerdef,procvardef,classrefdef]))) then
  2584. begin
  2585. {Converting pointers to signed integers is a bad idea. Warn.}
  2586. warn_pointer_to_signed:=(resultdef.typ=orddef) and (Torddef(resultdef).ordtype in [s8bit,s16bit,s32bit,s64bit]);
  2587. { Give a warning when sizes don't match, because then info will be lost }
  2588. if left.resultdef.size=resultdef.size then
  2589. CGMessage(type_h_pointer_to_longint_conv_not_portable)
  2590. else
  2591. CGMessage(type_w_pointer_to_longint_conv_not_portable);
  2592. end;
  2593. { tc_cord_2_pointer still requires a type check, which
  2594. simplify does not do }
  2595. if (convtype<>tc_cord_2_pointer) then
  2596. begin
  2597. result := simplify(false);
  2598. if assigned(result) then
  2599. exit;
  2600. end;
  2601. { now call the resultdef helper to do constant folding }
  2602. result:=typecheck_call_helper(convtype);
  2603. end;
  2604. { some code generators for 64 bit CPUs might not support 32 bit operations, so we can
  2605. disable the following optimization in fpcdefs.inc. Currently the only CPU for which
  2606. this applies is powerpc64
  2607. }
  2608. {$ifndef CPUNO32BITOPS}
  2609. { checks whether we can safely remove typeconversions to bigger types
  2610. in case range and overflow checking are off, and in case
  2611. the result of this node tree is downcasted again to a
  2612. smaller type value afterwards,
  2613. the smaller types being allowed are described by validints, ordinal constants must fit into l..h
  2614. We do this on 64 bit CPUs as well, they benefit from it as well }
  2615. function checkremovebiginttypeconvs(n: tnode; out gotsint: boolean;validints : tordtypeset;const l,h : Tconstexprint): boolean;
  2616. var
  2617. gotminus1,
  2618. gotsigned,
  2619. gotunsigned,
  2620. gotdivmod: boolean;
  2621. { checks whether a node has an accepted resultdef, or originally
  2622. had one but was implicitly converted to s64bit }
  2623. function wasoriginallysmallerint(n: tnode): boolean;
  2624. begin
  2625. if (n.resultdef.typ<>orddef) then
  2626. exit(false);
  2627. gotsigned:=gotsigned or is_signed(n.resultdef);
  2628. gotunsigned:=gotunsigned or not(is_signed(n.resultdef));
  2629. { actually, we should only check right (denominator) nodes here, but
  2630. setting it always is a safe approximation }
  2631. if ((n.nodetype=ordconstn) and
  2632. (tordconstnode(n).value=-1)) then
  2633. gotminus1:=true;
  2634. if (torddef(n.resultdef).ordtype in validints) then
  2635. begin
  2636. if is_signed(n.resultdef) then
  2637. gotsint:=true;
  2638. exit(true);
  2639. end;
  2640. { type conv to a bigger int, we do not like to use? }
  2641. if (torddef(n.resultdef).ordtype in ([s8bit,u8bit,s16bit,u16bit,s32bit,u32bit,s64bit,u64bit]-validints)) and
  2642. { nf_explicit is also set for explicitly typecasted }
  2643. { ordconstn's }
  2644. ([nf_internal,nf_explicit]*n.flags=[]) and
  2645. { either a typeconversion node coming from a smaller type }
  2646. (((n.nodetype=typeconvn) and
  2647. (ttypeconvnode(n).left.resultdef.typ=orddef) and
  2648. (torddef(ttypeconvnode(n).left.resultdef).ordtype in validints)) or
  2649. { or an ordconstnode which has a smaller type}
  2650. ((n.nodetype=ordconstn) and
  2651. (tordconstnode(n).value>=l) and
  2652. (tordconstnode(n).value<=h))) then
  2653. begin
  2654. if ((n.nodetype=typeconvn) and
  2655. is_signed(ttypeconvnode(n).left.resultdef)) or
  2656. ((n.nodetype=ordconstn) and
  2657. (tordconstnode(n).value<0)) then
  2658. begin
  2659. gotsint:=true;
  2660. gotsigned:=true;
  2661. end
  2662. else
  2663. gotunsigned:=true;
  2664. exit(true);
  2665. end;
  2666. result:=false;
  2667. end;
  2668. function docheckremoveinttypeconvs(n: tnode): boolean;
  2669. begin
  2670. if wasoriginallysmallerint(n) then
  2671. exit(true);
  2672. case n.nodetype of
  2673. subn,orn,xorn:
  2674. begin
  2675. { the result could become negative in this case }
  2676. if n.nodetype=subn then
  2677. gotsint:=true;
  2678. result:=
  2679. docheckremoveinttypeconvs(tbinarynode(n).left) and
  2680. docheckremoveinttypeconvs(tbinarynode(n).right);
  2681. end;
  2682. unaryminusn:
  2683. begin
  2684. gotsint:=true;
  2685. result:=docheckremoveinttypeconvs(tunarynode(n).left);
  2686. end;
  2687. shrn:
  2688. begin
  2689. result:=wasoriginallysmallerint(tbinarynode(n).left) and
  2690. docheckremoveinttypeconvs(tbinarynode(n).right);
  2691. end;
  2692. notn:
  2693. result:=docheckremoveinttypeconvs(tunarynode(n).left);
  2694. addn,muln,divn,modn,andn,shln:
  2695. begin
  2696. if n.nodetype in [divn,modn] then
  2697. gotdivmod:=true;
  2698. result:=
  2699. (docheckremoveinttypeconvs(tbinarynode(n).left) and
  2700. docheckremoveinttypeconvs(tbinarynode(n).right) and
  2701. (not(n.nodetype in [modn,divn]) or (not(gotminus1)))
  2702. ) or
  2703. (
  2704. (n.nodetype=andn) and
  2705. (
  2706. { Right node is more likely to be a constant, so check
  2707. this one first }
  2708. wasoriginallysmallerint(tbinarynode(n).right) or
  2709. wasoriginallysmallerint(tbinarynode(n).left)
  2710. )
  2711. );
  2712. end;
  2713. else
  2714. result:=false;
  2715. end;
  2716. end;
  2717. begin { checkremove64bittypeconvs }
  2718. gotdivmod:=false;
  2719. gotsint:=false;
  2720. gotminus1:=false;
  2721. gotsigned:=false;
  2722. gotunsigned:=false;
  2723. result:=
  2724. docheckremoveinttypeconvs(n) and
  2725. (not(gotdivmod) or (gotsigned xor gotunsigned));
  2726. end;
  2727. { remove int type conversions and set the result to the given type }
  2728. procedure doremoveinttypeconvs(level : dword;var n: tnode; todef: tdef; forceunsigned: boolean; signedtype,unsignedtype : tdef);
  2729. var
  2730. newblock: tblocknode;
  2731. newstatements: tstatementnode;
  2732. originaldivtree: tnode;
  2733. tempnode: ttempcreatenode;
  2734. begin
  2735. { we may not recurse into shr nodes:
  2736. dword1:=dword1+((dword2+dword3) shr 2);
  2737. while we can remove an extension on the outermost addition, we cannot
  2738. remove it from the shr
  2739. }
  2740. { Don't downsize into a division operation either, as the numerator can
  2741. be much larger than the result and non-linear properties prevent
  2742. accurate truncation; fixes #39646 [Kit] }
  2743. if (n.nodetype in [shrn,divn,modn]) and (level<>0) then
  2744. begin
  2745. inserttypeconv_internal(n,todef);
  2746. exit;
  2747. end;
  2748. case n.nodetype of
  2749. subn,addn,muln,divn,modn,xorn,andn,orn,shln,shrn:
  2750. begin
  2751. exclude(n.flags,nf_internal);
  2752. if not forceunsigned and
  2753. is_signed(n.resultdef) then
  2754. begin
  2755. originaldivtree:=nil;
  2756. if n.nodetype in [divn,modn] then
  2757. originaldivtree:=n.getcopy;
  2758. doremoveinttypeconvs(level+1,tbinarynode(n).left,signedtype,false,signedtype,unsignedtype);
  2759. doremoveinttypeconvs(level+1,tbinarynode(n).right,signedtype,false,signedtype,unsignedtype);
  2760. n.resultdef:=signedtype;
  2761. if n.nodetype in [divn,modn] then
  2762. begin
  2763. newblock:=internalstatements(newstatements);
  2764. tempnode:=ctempcreatenode.create(n.resultdef,n.resultdef.size,tt_persistent,true);
  2765. addstatement(newstatements,tempnode);
  2766. addstatement(newstatements,cifnode.create_internal(
  2767. caddnode.create_internal(equaln,tbinarynode(n).right.getcopy,cordconstnode.create(-1,n.resultdef,false)),
  2768. cassignmentnode.create_internal(
  2769. ctemprefnode.create(tempnode),
  2770. cmoddivnode.create(n.nodetype,tbinarynode(originaldivtree).left.getcopy,cordconstnode.create(-1,tbinarynode(originaldivtree).right.resultdef,false))
  2771. ),
  2772. cassignmentnode.create_internal(
  2773. ctemprefnode.create(tempnode),n
  2774. )
  2775. )
  2776. );
  2777. addstatement(newstatements,ctempdeletenode.create_normal_temp(tempnode));
  2778. addstatement(newstatements,ctemprefnode.create(tempnode));
  2779. n:=newblock;
  2780. do_typecheckpass(n);
  2781. originaldivtree.free;
  2782. end;
  2783. end
  2784. else
  2785. begin
  2786. doremoveinttypeconvs(level+1,tbinarynode(n).left,unsignedtype,forceunsigned,signedtype,unsignedtype);
  2787. doremoveinttypeconvs(level+1,tbinarynode(n).right,unsignedtype,forceunsigned,signedtype,unsignedtype);
  2788. n.resultdef:=unsignedtype;
  2789. end;
  2790. //if ((n.nodetype=andn) and (tbinarynode(n).left.nodetype=ordconstn) and
  2791. // ((tordconstnode(tbinarynode(n).left).value and $7fffffff)=tordconstnode(tbinarynode(n).left).value)
  2792. // ) then
  2793. // inserttypeconv_internal(tbinarynode(n).right,n.resultdef)
  2794. //else if (n.nodetype=andn) and (tbinarynode(n).right.nodetype=ordconstn) and
  2795. // ((tordconstnode(tbinarynode(n).right).value and $7fffffff)=tordconstnode(tbinarynode(n).right).value) then
  2796. // inserttypeconv_internal(tbinarynode(n).left,n.resultdef);
  2797. end;
  2798. unaryminusn,notn:
  2799. begin
  2800. exclude(n.flags,nf_internal);
  2801. if not forceunsigned and
  2802. is_signed(n.resultdef) then
  2803. begin
  2804. doremoveinttypeconvs(level+1,tunarynode(n).left,signedtype,false,signedtype,unsignedtype);
  2805. n.resultdef:=signedtype;
  2806. end
  2807. else
  2808. begin
  2809. doremoveinttypeconvs(level+1,tunarynode(n).left,unsignedtype,forceunsigned,signedtype,unsignedtype);
  2810. n.resultdef:=unsignedtype;
  2811. end;
  2812. end;
  2813. typeconvn:
  2814. begin
  2815. ttypeconvnode(n).totypedef:=todef;
  2816. { may change the type conversion, e.g. if the old conversion was
  2817. from 64 bit to a 64 bit, and now becomes 64 bit to 32 bit }
  2818. n.resultdef:=nil;
  2819. ttypeconvnode(n).convtype:=tc_none;
  2820. typecheckpass(n);
  2821. end;
  2822. else
  2823. inserttypeconv_internal(n,todef);
  2824. end;
  2825. end;
  2826. {$endif not CPUNO32BITOPS}
  2827. procedure swap_const_value (var val : TConstExprInt; size : longint);
  2828. begin
  2829. case size of
  2830. 1 : {do nothing };
  2831. 2 : if val.signed then
  2832. val.svalue:=swapendian(smallint(val.svalue))
  2833. else
  2834. val.uvalue:=swapendian(word(val.uvalue));
  2835. 4 : if val.signed then
  2836. val.svalue:=swapendian(longint(val.svalue))
  2837. else
  2838. val.uvalue:=swapendian(qword(val.uvalue));
  2839. 8 : if val.signed then
  2840. val.svalue:=swapendian(int64(val.svalue))
  2841. else
  2842. val.uvalue:=swapendian(qword(val.uvalue));
  2843. else
  2844. internalerror(2014111201);
  2845. end;
  2846. end;
  2847. function ttypeconvnode.simplify(forinline : boolean): tnode;
  2848. var
  2849. hp: tnode;
  2850. v: Tconstexprint;
  2851. {$ifndef CPUNO32BITOPS}
  2852. foundsint: boolean;
  2853. {$endif not CPUNO32BITOPS}
  2854. begin
  2855. result := nil;
  2856. { Constant folding and other node transitions to
  2857. remove the typeconv node }
  2858. case left.nodetype of
  2859. stringconstn :
  2860. if (resultdef.typ=stringdef) and
  2861. ((convtype=tc_equal) or
  2862. ((convtype=tc_string_2_string) and
  2863. (
  2864. ((not is_widechararray(left.resultdef) and
  2865. not is_wide_or_unicode_string(left.resultdef)) or
  2866. (tstringdef(resultdef).stringtype in [st_widestring,st_unicodestring,st_ansistring])
  2867. )
  2868. )
  2869. )
  2870. ) then
  2871. begin
  2872. { output string consts in local ansistring encoding }
  2873. if is_ansistring(resultdef) and
  2874. { do not mess with the result type for internally created nodes }
  2875. not(nf_internal in flags) and
  2876. ((tstringdef(resultdef).encoding=0) or (tstringdef(resultdef).encoding=globals.CP_NONE)) then
  2877. tstringconstnode(left).changestringtype(getansistringdef)
  2878. else
  2879. tstringconstnode(left).changestringtype(resultdef);
  2880. result:=left;
  2881. left:=nil;
  2882. exit;
  2883. end
  2884. else if
  2885. (convtype<>tc_cstring_2_pchar) and
  2886. is_dynamicstring(left.resultdef) and
  2887. (tstringconstnode(left).len=0) and
  2888. (resultdef.typ=pointerdef) and
  2889. cstringconstnode.emptydynstrnil then
  2890. begin
  2891. result:=cnilnode.create;
  2892. exit;
  2893. end;
  2894. realconstn :
  2895. begin
  2896. if (convtype = tc_real_2_currency) then
  2897. result := typecheck_real_to_currency
  2898. else if (convtype = tc_real_2_real) then
  2899. result := typecheck_real_to_real
  2900. else
  2901. exit;
  2902. if not(assigned(result)) then
  2903. begin
  2904. result := left;
  2905. left := nil;
  2906. end;
  2907. if (result.nodetype = realconstn) then
  2908. begin
  2909. hp:=result;
  2910. result:=crealconstnode.create(trealconstnode(hp).value_real,resultdef);
  2911. if nf_is_currency in hp.flags then
  2912. include(result.flags,nf_is_currency);
  2913. if ([nf_explicit,nf_internal] * flags <> []) then
  2914. include(result.flags, nf_explicit);
  2915. hp.free;
  2916. end;
  2917. end;
  2918. niln :
  2919. begin
  2920. { nil to ordinal node }
  2921. if (resultdef.typ=orddef) then
  2922. begin
  2923. hp:=cordconstnode.create(0,resultdef,true);
  2924. if ([nf_explicit,nf_internal] * flags <> []) then
  2925. include(hp.flags, nf_explicit);
  2926. result:=hp;
  2927. exit;
  2928. end
  2929. else
  2930. { fold nil to any pointer type }
  2931. if (resultdef.typ=pointerdef) then
  2932. begin
  2933. hp:=cnilnode.create;
  2934. hp.resultdef:=resultdef;
  2935. if ([nf_explicit,nf_internal] * flags <> []) then
  2936. include(hp.flags, nf_explicit);
  2937. result:=hp;
  2938. exit;
  2939. end
  2940. else
  2941. { remove typeconv after niln, but not when the result is a
  2942. methodpointer. The typeconv of the methodpointer will then
  2943. take care of updateing size of niln to OS_64 }
  2944. if not((resultdef.typ=procvardef) and
  2945. not(tprocvardef(resultdef).is_addressonly)) and
  2946. { converting (dynamic array) nil to a an open array is not allowed }
  2947. not is_open_array(resultdef) then
  2948. begin
  2949. left.resultdef:=resultdef;
  2950. if ([nf_explicit,nf_internal] * flags <> []) then
  2951. include(left.flags, nf_explicit);
  2952. result:=left;
  2953. left:=nil;
  2954. exit;
  2955. end;
  2956. end;
  2957. ordconstn :
  2958. begin
  2959. { ordinal contants can be directly converted }
  2960. { but not char to char because it is a widechar to char or via versa }
  2961. { which needs extra code to do the code page transistion }
  2962. { constant ordinal to pointer }
  2963. if (resultdef.typ=pointerdef) and
  2964. (convtype<>tc_cchar_2_pchar) then
  2965. begin
  2966. if (target_info.system in systems_managed_vm) and
  2967. (tordconstnode(left).value<>0) then
  2968. message(parser_e_feature_unsupported_for_vm);
  2969. hp:=cpointerconstnode.create(TConstPtrUInt(tordconstnode(left).value.uvalue),resultdef);
  2970. if ([nf_explicit,nf_internal] * flags <> []) then
  2971. include(hp.flags, nf_explicit);
  2972. result:=hp;
  2973. exit;
  2974. end
  2975. else if is_ordinal(resultdef) and
  2976. not(convtype=tc_char_2_char) then
  2977. begin
  2978. { replace the resultdef and recheck the range }
  2979. if ([nf_explicit,nf_absolute, nf_internal] * flags <> []) then
  2980. include(left.flags, nf_explicit)
  2981. else
  2982. { no longer an ordconst with an explicit typecast }
  2983. exclude(left.flags, nf_explicit);
  2984. { when converting from one boolean type to another, force }
  2985. { booleans to 0/1, and byte/word/long/qwordbool to 0/-1 }
  2986. { (Delphi-compatibile) }
  2987. if is_boolean(left.resultdef) and
  2988. is_boolean(resultdef) and
  2989. (is_cbool(left.resultdef) or
  2990. is_cbool(resultdef)) then
  2991. begin
  2992. if is_pasbool(resultdef) then
  2993. tordconstnode(left).value:=ord(tordconstnode(left).value<>0)
  2994. else
  2995. tordconstnode(left).value:=-ord(tordconstnode(left).value<>0);
  2996. end
  2997. else
  2998. begin
  2999. { for constant values on absolute variables, swapping is required }
  3000. if (target_info.endian = endian_big) and (nf_absolute in flags) then
  3001. swap_const_value(tordconstnode(left).value,tordconstnode(left).resultdef.size);
  3002. if not(nf_generic_para in flags) then
  3003. adaptrange(
  3004. resultdef,tordconstnode(left).value,
  3005. { when evaluating an explicit typecast during inlining, don't warn about
  3006. lost bits; only warn if someone literally typed e.g. byte($1ff) }
  3007. (([nf_internal,nf_absolute]*flags)<>[]) or (forinline and (nf_explicit in flags)),
  3008. nf_explicit in flags,
  3009. cs_check_range in localswitches);
  3010. { swap value back, but according to new type }
  3011. if (target_info.endian = endian_big) and (nf_absolute in flags) then
  3012. swap_const_value(tordconstnode(left).value,resultdef.size);
  3013. { cut off the new value? }
  3014. if resultdef.size<left.resultdef.size then
  3015. case resultdef.size of
  3016. 1:
  3017. if is_signed(resultdef) then
  3018. tordconstnode(left).value:=tordconstnode(left).value and shortint($ff)
  3019. else
  3020. tordconstnode(left).value:=tordconstnode(left).value and byte($ff);
  3021. 2:
  3022. if is_signed(resultdef) then
  3023. tordconstnode(left).value:=tordconstnode(left).value and smallint($ffff)
  3024. else
  3025. tordconstnode(left).value:=tordconstnode(left).value and word($ffff);
  3026. 4:
  3027. if is_signed(resultdef) then
  3028. tordconstnode(left).value:=tordconstnode(left).value and longint($ffffffff)
  3029. else
  3030. tordconstnode(left).value:=tordconstnode(left).value and dword($ffffffff);
  3031. end;
  3032. end;
  3033. left.resultdef:=resultdef;
  3034. tordconstnode(left).typedef:=resultdef;
  3035. if is_signed(resultdef) then
  3036. tordconstnode(left).value.signed:=true
  3037. else
  3038. tordconstnode(left).value.signed:=false;
  3039. result:=left;
  3040. left:=nil;
  3041. exit;
  3042. end
  3043. else if (convtype=tc_int_2_int) and
  3044. is_currency(resultdef) then
  3045. begin
  3046. v:=tordconstnode(left).value;
  3047. if not(nf_internal in flags) and not(is_currency(left.resultdef)) then
  3048. v:=v*10000;
  3049. result:=cordconstnode.create(v,resultdef,false);
  3050. exit;
  3051. end;
  3052. end;
  3053. pointerconstn :
  3054. begin
  3055. { pointerconstn to any pointer is folded too }
  3056. if (resultdef.typ=pointerdef) then
  3057. begin
  3058. left.resultdef:=resultdef;
  3059. if ([nf_explicit,nf_internal] * flags <> []) then
  3060. include(left.flags, nf_explicit)
  3061. else
  3062. { no longer an ordconst with an explicit typecast }
  3063. exclude(left.flags, nf_explicit);
  3064. result:=left;
  3065. left:=nil;
  3066. exit;
  3067. end
  3068. { constant pointer to ordinal }
  3069. else if is_ordinal(resultdef) then
  3070. begin
  3071. hp:=cordconstnode.create(TConstExprInt(tpointerconstnode(left).value),
  3072. resultdef,not(nf_explicit in flags));
  3073. if ([nf_explicit,nf_internal] * flags <> []) then
  3074. include(hp.flags, nf_explicit);
  3075. result:=hp;
  3076. exit;
  3077. end;
  3078. end;
  3079. else
  3080. ;
  3081. end;
  3082. {$ifndef CPUNO32BITOPS}
  3083. { must be done before code below, because we need the
  3084. typeconversions for ordconstn's as well }
  3085. case convtype of
  3086. tc_bool_2_int,
  3087. tc_int_2_bool,
  3088. tc_int_2_int:
  3089. begin
  3090. if (localswitches * [cs_check_range,cs_check_overflow] = []) and
  3091. (resultdef.typ in [pointerdef,orddef,enumdef]) then
  3092. begin
  3093. { avoid unnecessary widening of intermediary calculations
  3094. to 64 bit }
  3095. if (resultdef.size <= 4) and
  3096. is_64bitint(left.resultdef) and
  3097. (left.nodetype in [subn,addn,muln,divn,modn,xorn,andn,orn,notn,unaryminusn,shln,shrn]) and
  3098. checkremovebiginttypeconvs(left,foundsint,[s8bit,u8bit,s16bit,u16bit,s32bit,u32bit],int64(low(longint)),high(cardinal)) then
  3099. doremoveinttypeconvs(0,left,generrordef,not foundsint,s32inttype,u32inttype);
  3100. {$if defined(cpu16bitalu)}
  3101. if (resultdef.size <= 2) and
  3102. (is_32bitint(left.resultdef) or is_64bitint(left.resultdef)) and
  3103. (left.nodetype in [subn,addn,muln,divn,modn,xorn,andn,orn,notn,unaryminusn,shln,shrn]) and
  3104. checkremovebiginttypeconvs(left,foundsint,[s8bit,u8bit,s16bit,u16bit],int64(low(smallint)),high(word)) then
  3105. doremoveinttypeconvs(0,left,generrordef,not foundsint,s16inttype,u16inttype);
  3106. {$endif defined(cpu16bitalu)}
  3107. {$if defined(cpu8bitalu)}
  3108. if (resultdef.size<left.resultdef.size) and
  3109. is_integer(left.resultdef) and
  3110. (left.nodetype in [subn,addn,muln,divn,modn,xorn,andn,orn,notn,unaryminusn,shln,shrn]) and
  3111. checkremovebiginttypeconvs(left,foundsint,[s8bit,u8bit],int64(low(shortint)),high(byte)) then
  3112. doremoveinttypeconvs(0,left,generrordef,not foundsint,s8inttype,u8inttype);
  3113. {$endif defined(cpu8bitalu)}
  3114. { the above simplification may have left a redundant equal
  3115. typeconv (e.g. int32 to int32). If that's the case, we remove it }
  3116. if equal_defs(left.resultdef,resultdef) then
  3117. begin
  3118. result:=left;
  3119. left:=nil;
  3120. exit;
  3121. end;
  3122. if (convtype=tc_int_2_int) and (left.nodetype=typeconvn) and (ttypeconvnode(left).convtype=tc_bool_2_int) then
  3123. begin
  3124. ttypeconvnode(left).totypedef:=resultdef;
  3125. ttypeconvnode(left).resultdef:=resultdef;
  3126. result:=left;
  3127. left:=nil;
  3128. exit;
  3129. end;
  3130. end;
  3131. end;
  3132. else
  3133. ;
  3134. end;
  3135. {$endif not CPUNO32BITOPS}
  3136. end;
  3137. procedure Ttypeconvnode.mark_write;
  3138. begin
  3139. left.mark_write;
  3140. end;
  3141. function ttypeconvnode.first_cord_to_pointer : tnode;
  3142. begin
  3143. result:=nil;
  3144. internalerror(200104043);
  3145. end;
  3146. function ttypeconvnode.first_int_to_int : tnode;
  3147. begin
  3148. first_int_to_int:=nil;
  3149. expectloc:=left.expectloc;
  3150. if not is_void(left.resultdef) then
  3151. begin
  3152. if (left.expectloc<>LOC_REGISTER) and
  3153. ((resultdef.size>left.resultdef.size) or
  3154. (left.expectloc in [LOC_SUBSETREF,LOC_CSUBSETREF,LOC_SUBSETREG,LOC_CSUBSETREG])) then
  3155. expectloc:=LOC_REGISTER
  3156. else
  3157. if (left.expectloc=LOC_CREGISTER) and
  3158. (resultdef.size<left.resultdef.size) then
  3159. expectloc:=LOC_REGISTER;
  3160. end;
  3161. end;
  3162. function ttypeconvnode.first_cstring_to_pchar : tnode;
  3163. begin
  3164. result:=nil;
  3165. expectloc:=LOC_REGISTER;
  3166. end;
  3167. function ttypeconvnode.first_cstring_to_int : tnode;
  3168. begin
  3169. result:=nil;
  3170. internalerror(200510014);
  3171. end;
  3172. function ttypeconvnode.first_string_to_chararray : tnode;
  3173. begin
  3174. first_string_to_chararray:=nil;
  3175. expectloc:=left.expectloc;
  3176. end;
  3177. function ttypeconvnode.first_char_to_string : tnode;
  3178. begin
  3179. first_char_to_string:=nil;
  3180. if tstringdef(resultdef).stringtype=st_shortstring then
  3181. inc(current_procinfo.estimatedtempsize,256);
  3182. expectloc:=LOC_REFERENCE;
  3183. end;
  3184. function ttypeconvnode.first_char_to_chararray : tnode;
  3185. begin
  3186. if resultdef.size <> 1 then
  3187. begin
  3188. { convert first to string, then to chararray }
  3189. inserttypeconv(left,cshortstringtype);
  3190. inserttypeconv(left,resultdef);
  3191. result:=left;
  3192. left := nil;
  3193. exit;
  3194. end;
  3195. result := nil;
  3196. end;
  3197. function ttypeconvnode.first_nothing : tnode;
  3198. begin
  3199. first_nothing:=nil;
  3200. end;
  3201. function ttypeconvnode.first_array_to_pointer : tnode;
  3202. begin
  3203. first_array_to_pointer:=nil;
  3204. make_not_regable(left,[ra_addr_regable]);
  3205. expectloc:=LOC_REGISTER;
  3206. end;
  3207. function ttypeconvnode.first_int_to_real: tnode;
  3208. var
  3209. fname: string[32];
  3210. begin
  3211. if target_info.system in systems_wince then
  3212. begin
  3213. { converting a 64bit integer to a float requires a helper }
  3214. if is_64bitint(left.resultdef) or
  3215. is_currency(left.resultdef) then
  3216. begin
  3217. { hack to avoid double division by 10000, as it's
  3218. already done by typecheckpass.resultdef_int_to_real }
  3219. if is_currency(left.resultdef) then
  3220. left.resultdef := s64inttype;
  3221. if is_signed(left.resultdef) then
  3222. fname:='i64to'
  3223. else
  3224. fname:='ui64to';
  3225. end
  3226. else
  3227. { other integers are supposed to be 32 bit }
  3228. begin
  3229. if is_signed(left.resultdef) then
  3230. fname:='ito'
  3231. else
  3232. fname:='uto';
  3233. firstpass(left);
  3234. end;
  3235. if tfloatdef(resultdef).floattype=s64real then
  3236. fname:=fname+'d'
  3237. else
  3238. fname:=fname+'s';
  3239. result:=ccallnode.createintern(fname,ccallparanode.create(
  3240. left,nil));
  3241. left:=nil;
  3242. firstpass(result);
  3243. exit;
  3244. end
  3245. else
  3246. begin
  3247. { converting a 64bit integer to a float requires a helper }
  3248. if is_64bitint(left.resultdef) or
  3249. is_currency(left.resultdef) then
  3250. begin
  3251. { hack to avoid double division by 10000, as it's
  3252. already done by typecheckpass.resultdef_int_to_real }
  3253. if is_currency(left.resultdef) then
  3254. left.resultdef := s64inttype;
  3255. if is_signed(left.resultdef) then
  3256. fname:='int64_to_'
  3257. else
  3258. { we can't do better currently }
  3259. fname:='qword_to_';
  3260. end
  3261. else
  3262. { other integers are supposed to be 32 bit }
  3263. begin
  3264. if is_signed(left.resultdef) then
  3265. fname:='int32_to_'
  3266. else
  3267. fname:='int64_to_';
  3268. firstpass(left);
  3269. end;
  3270. if tfloatdef(resultdef).floattype=s64real then
  3271. fname:=fname+'float64'
  3272. else
  3273. fname:=fname+'float32';
  3274. result:=ctypeconvnode.create_internal(ccallnode.createintern(fname,ccallparanode.create(
  3275. left,nil)),resultdef);
  3276. left:=nil;
  3277. firstpass(result);
  3278. exit;
  3279. end;
  3280. end;
  3281. function ttypeconvnode.first_real_to_real : tnode;
  3282. begin
  3283. {$ifdef cpufpemu}
  3284. if cs_fp_emulation in current_settings.moduleswitches then
  3285. begin
  3286. if target_info.system in systems_wince then
  3287. begin
  3288. case tfloatdef(left.resultdef).floattype of
  3289. s32real:
  3290. case tfloatdef(resultdef).floattype of
  3291. s64real:
  3292. result:=ccallnode.createintern('stod',ccallparanode.create(left,nil));
  3293. s32real:
  3294. begin
  3295. result:=left;
  3296. left:=nil;
  3297. end;
  3298. else
  3299. internalerror(2005082704);
  3300. end;
  3301. s64real:
  3302. case tfloatdef(resultdef).floattype of
  3303. s32real:
  3304. result:=ccallnode.createintern('dtos',ccallparanode.create(left,nil));
  3305. s64real:
  3306. begin
  3307. result:=left;
  3308. left:=nil;
  3309. end;
  3310. else
  3311. internalerror(2005082703);
  3312. end;
  3313. else
  3314. internalerror(2005082702);
  3315. end;
  3316. left:=nil;
  3317. firstpass(result);
  3318. exit;
  3319. end
  3320. else
  3321. begin
  3322. case tfloatdef(left.resultdef).floattype of
  3323. s32real:
  3324. case tfloatdef(resultdef).floattype of
  3325. s64real:
  3326. result:=ctypeconvnode.create_explicit(ccallnode.createintern('float32_to_float64',ccallparanode.create(
  3327. ctypeconvnode.create_internal(left,search_system_type('FLOAT32REC').typedef),nil)),resultdef);
  3328. s32real:
  3329. begin
  3330. result:=left;
  3331. left:=nil;
  3332. end;
  3333. else
  3334. internalerror(200610151);
  3335. end;
  3336. s64real:
  3337. case tfloatdef(resultdef).floattype of
  3338. s32real:
  3339. result:=ctypeconvnode.create_explicit(ccallnode.createintern('float64_to_float32',ccallparanode.create(
  3340. ctypeconvnode.create_internal(left,search_system_type('FLOAT64').typedef),nil)),resultdef);
  3341. s64real:
  3342. begin
  3343. result:=left;
  3344. left:=nil;
  3345. end;
  3346. else
  3347. internalerror(200610152);
  3348. end;
  3349. else
  3350. internalerror(200610153);
  3351. end;
  3352. left:=nil;
  3353. firstpass(result);
  3354. exit;
  3355. end;
  3356. end
  3357. else
  3358. {$endif cpufpemu}
  3359. begin
  3360. first_real_to_real:=nil;
  3361. if not use_vectorfpu(resultdef) then
  3362. expectloc:=LOC_FPUREGISTER
  3363. else
  3364. expectloc:=LOC_MMREGISTER;
  3365. end;
  3366. end;
  3367. function ttypeconvnode.first_pointer_to_array : tnode;
  3368. begin
  3369. first_pointer_to_array:=nil;
  3370. expectloc:=LOC_REFERENCE;
  3371. end;
  3372. function ttypeconvnode.first_cchar_to_pchar : tnode;
  3373. begin
  3374. first_cchar_to_pchar:=nil;
  3375. internalerror(200104021);
  3376. end;
  3377. function ttypeconvnode.first_bool_to_int : tnode;
  3378. begin
  3379. first_bool_to_int:=nil;
  3380. { byte(boolean) or word(wordbool) or longint(longbool) must
  3381. be accepted for var parameters }
  3382. if (nf_explicit in flags) and
  3383. (left.resultdef.size=resultdef.size) and
  3384. (left.expectloc in [LOC_REFERENCE,LOC_CREFERENCE,LOC_CREGISTER]) then
  3385. begin
  3386. expectloc:=left.expectloc;
  3387. exit;
  3388. end;
  3389. expectloc:=LOC_REGISTER;
  3390. end;
  3391. function ttypeconvnode.first_int_to_bool : tnode;
  3392. begin
  3393. first_int_to_bool:=nil;
  3394. { byte(boolean) or word(wordbool) or longint(longbool) must
  3395. be accepted for var parameters }
  3396. if (nf_explicit in flags) and
  3397. (left.resultdef.size=resultdef.size) and
  3398. (left.expectloc in [LOC_REFERENCE,LOC_CREFERENCE,LOC_CREGISTER]) then
  3399. begin
  3400. {$ifdef xtensa}
  3401. expectloc:=LOC_REGISTER;
  3402. {$else xtensa}
  3403. expectloc:=left.expectloc;
  3404. {$endif xtensa}
  3405. exit;
  3406. end;
  3407. { when converting 64bit int to C-ctyle boolean, first convert to an int32 and then }
  3408. { convert to a boolean (only necessary for 32bit processors) }
  3409. { note: not if left is already a bool (qwordbool that is true, even if
  3410. only because the highest bit is set, must remain true if it is
  3411. --implicitly, unlike integers-- converted to another type of bool),
  3412. Left can already be a bool because this routine can also be called
  3413. from first_bool_to_bool }
  3414. if not is_boolean(left.resultdef) and
  3415. (left.resultdef.size > sizeof(aint)) and
  3416. (left.resultdef.size<>resultdef.size)
  3417. and is_cbool(resultdef) then
  3418. begin
  3419. left:=ctypeconvnode.create_internal(left,s32inttype);
  3420. firstpass(left);
  3421. exit;
  3422. end;
  3423. expectloc:=LOC_REGISTER;
  3424. end;
  3425. function ttypeconvnode.first_bool_to_bool : tnode;
  3426. begin
  3427. first_bool_to_bool:=nil;
  3428. if (left.expectloc in [LOC_FLAGS,LOC_JUMP]) and
  3429. not is_cbool(resultdef) then
  3430. expectloc := left.expectloc
  3431. { the following cases use the code generation for bool_to_int/
  3432. int_to_bool -> also set their expectlocs }
  3433. else if (resultdef.size=left.resultdef.size) and
  3434. (is_cbool(resultdef)=is_cbool(left.resultdef)) then
  3435. result:=first_bool_to_int
  3436. else
  3437. result:=first_int_to_bool
  3438. end;
  3439. function ttypeconvnode.first_char_to_char : tnode;
  3440. var
  3441. fname: string[18];
  3442. begin
  3443. if (torddef(resultdef).ordtype=uchar) and
  3444. (torddef(left.resultdef).ordtype=uwidechar) then
  3445. fname := 'fpc_uchar_to_char'
  3446. else if (torddef(resultdef).ordtype=uwidechar) and
  3447. (torddef(left.resultdef).ordtype=uchar) then
  3448. fname := 'fpc_char_to_uchar'
  3449. else
  3450. internalerror(2007081201);
  3451. result := ccallnode.createintern(fname,ccallparanode.create(left,nil));
  3452. left:=nil;
  3453. firstpass(result);
  3454. end;
  3455. function ttypeconvnode.first_proc_to_procvar : tnode;
  3456. begin
  3457. first_proc_to_procvar:=nil;
  3458. { if we take the address of a nested function, the current function/
  3459. procedure needs a stack frame since it's required to construct
  3460. the nested procvar }
  3461. if is_nested_pd(tprocvardef(resultdef)) then
  3462. include(current_procinfo.flags,pi_needs_stackframe);
  3463. if tabstractprocdef(resultdef).is_addressonly then
  3464. expectloc:=LOC_REGISTER
  3465. else
  3466. expectloc:=left.expectloc;
  3467. end;
  3468. function ttypeconvnode.first_nil_to_methodprocvar : tnode;
  3469. begin
  3470. first_nil_to_methodprocvar:=nil;
  3471. expectloc:=LOC_REGISTER;
  3472. end;
  3473. function ttypeconvnode.first_set_to_set : tnode;
  3474. var
  3475. newstatement : tstatementnode;
  3476. temp : ttempcreatenode;
  3477. begin
  3478. { in theory, we should do range checking here,
  3479. but Delphi doesn't do it either (FK) }
  3480. if left.nodetype=setconstn then
  3481. begin
  3482. left.resultdef:=resultdef;
  3483. result:=left;
  3484. left:=nil;
  3485. end
  3486. { equal sets for the code generator? }
  3487. else if (left.resultdef.size=resultdef.size) and
  3488. (tsetdef(left.resultdef).setbase=tsetdef(resultdef).setbase) then
  3489. { TODO: This causes wrong (but Delphi-compatible) results for disjoint subsets}
  3490. { e.g., this prints true because of this:
  3491. var
  3492. sa: set of 1..2;
  3493. sb: set of 5..6;
  3494. b: byte;
  3495. begin
  3496. b:=1;
  3497. sa:=[1..2];
  3498. sb:=sa;
  3499. writeln(b in sb);
  3500. end.
  3501. }
  3502. begin
  3503. result:=left;
  3504. left:=nil;
  3505. end
  3506. else
  3507. begin
  3508. result:=internalstatements(newstatement);
  3509. { in case left is a smallset expression, it can be an addn or so. }
  3510. { fpc_varset_load expects a formal const parameter, which doesn't }
  3511. { accept set addn's -> assign to a temp first and pass the temp }
  3512. if not(left.expectloc in [LOC_REFERENCE,LOC_CREFERENCE]) then
  3513. begin
  3514. temp:=ctempcreatenode.create(left.resultdef,left.resultdef.size,tt_persistent,false);
  3515. addstatement(newstatement,temp);
  3516. { temp := left }
  3517. addstatement(newstatement,cassignmentnode.create(
  3518. ctemprefnode.create(temp),left));
  3519. addstatement(newstatement,ctempdeletenode.create_normal_temp(temp));
  3520. addstatement(newstatement,ctemprefnode.create(temp));
  3521. left:=result;
  3522. firstpass(left);
  3523. { recreate the result's internalstatements list }
  3524. result:=internalstatements(newstatement);
  3525. end;
  3526. { create temp for result }
  3527. temp:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,true);
  3528. addstatement(newstatement,temp);
  3529. addstatement(newstatement,ccallnode.createintern('fpc_varset_load',
  3530. ccallparanode.create(cordconstnode.create(tsetdef(left.resultdef).setbase div 8 - tsetdef(resultdef).setbase div 8,sinttype,false),
  3531. ccallparanode.create(cordconstnode.create(resultdef.size,sinttype,false),
  3532. ccallparanode.create(ctemprefnode.create(temp),
  3533. ccallparanode.create(cordconstnode.create(left.resultdef.size,sinttype,false),
  3534. ccallparanode.create(left,nil))))))
  3535. );
  3536. addstatement(newstatement,ctempdeletenode.create_normal_temp(temp));
  3537. addstatement(newstatement,ctemprefnode.create(temp));
  3538. left:=nil;
  3539. end;
  3540. end;
  3541. function ttypeconvnode.first_ansistring_to_pchar : tnode;
  3542. begin
  3543. first_ansistring_to_pchar:=nil;
  3544. expectloc:=LOC_REGISTER;
  3545. end;
  3546. function ttypeconvnode.first_arrayconstructor_to_set : tnode;
  3547. begin
  3548. first_arrayconstructor_to_set:=nil;
  3549. internalerror(200104022);
  3550. end;
  3551. function ttypeconvnode.first_class_to_intf : tnode;
  3552. var
  3553. hd : tobjectdef;
  3554. ImplIntf : TImplementedInterface;
  3555. begin
  3556. result:=nil;
  3557. expectloc:=LOC_REGISTER;
  3558. hd:=tobjectdef(left.resultdef);
  3559. while assigned(hd) do
  3560. begin
  3561. ImplIntf:=find_implemented_interface(hd,tobjectdef(resultdef));
  3562. if assigned(ImplIntf) then
  3563. begin
  3564. case ImplIntf.IType of
  3565. etStandard:
  3566. { handle in pass 2 }
  3567. ;
  3568. etFieldValue, etFieldValueClass:
  3569. if is_interface(tobjectdef(resultdef)) then
  3570. begin
  3571. result:=left;
  3572. propaccesslist_to_node(result,tpropertysym(implintf.implementsgetter).owner,tpropertysym(implintf.implementsgetter).propaccesslist[palt_read]);
  3573. { this ensures proper refcounting when field is of class type }
  3574. if not is_interface(result.resultdef) then
  3575. inserttypeconv(result, resultdef);
  3576. left:=nil;
  3577. end
  3578. else
  3579. begin
  3580. internalerror(200802213);
  3581. end;
  3582. etStaticMethodResult, etStaticMethodClass,
  3583. etVirtualMethodResult, etVirtualMethodClass:
  3584. if is_interface(tobjectdef(resultdef)) then
  3585. begin
  3586. { TODO: generating a call to TObject.GetInterface instead could yield
  3587. smaller code size. OTOH, refcounting gotchas are possible that way. }
  3588. { constructor create(l:tnode; v : tprocsym;st : TSymtable; mp: tnode; callflags:tcallnodeflags); }
  3589. result:=ccallnode.create(nil,tprocsym(tpropertysym(implintf.implementsgetter).propaccesslist[palt_read].firstsym^.sym),
  3590. tprocsym(tpropertysym(implintf.implementsgetter).propaccesslist[palt_read].firstsym^.sym).owner,
  3591. left,[],nil);
  3592. addsymref(tpropertysym(implintf.implementsgetter).propaccesslist[palt_read].firstsym^.sym);
  3593. { if it is a class, process it further in a similar way }
  3594. if not is_interface(result.resultdef) then
  3595. inserttypeconv(result, resultdef);
  3596. left:=nil;
  3597. end
  3598. else if is_class(tobjectdef(resultdef)) then
  3599. begin
  3600. internalerror(200802211);
  3601. end
  3602. else
  3603. internalerror(200802231);
  3604. end;
  3605. break;
  3606. end;
  3607. hd:=hd.childof;
  3608. end;
  3609. if hd=nil then
  3610. internalerror(200802164);
  3611. end;
  3612. function ttypeconvnode.first_string_to_string : tnode;
  3613. var
  3614. procname: string[31];
  3615. newblock : tblocknode;
  3616. newstat : tstatementnode;
  3617. restemp : ttempcreatenode;
  3618. begin
  3619. { get the correct procedure name }
  3620. procname := 'fpc_'+tstringdef(left.resultdef).stringtypname+
  3621. '_to_'+tstringdef(resultdef).stringtypname;
  3622. if tstringdef(resultdef).stringtype=st_shortstring then
  3623. begin
  3624. newblock:=internalstatements(newstat);
  3625. restemp:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,false);
  3626. addstatement(newstat,restemp);
  3627. addstatement(newstat,ccallnode.createintern(procname,ccallparanode.create(left,ccallparanode.create(
  3628. ctemprefnode.create(restemp),nil))));
  3629. addstatement(newstat,ctempdeletenode.create_normal_temp(restemp));
  3630. addstatement(newstat,ctemprefnode.create(restemp));
  3631. result:=newblock;
  3632. end
  3633. { encoding parameter required? }
  3634. else if (tstringdef(resultdef).stringtype=st_ansistring) and
  3635. (tstringdef(left.resultdef).stringtype in [st_widestring,st_unicodestring,st_shortstring,st_ansistring]) then
  3636. result:=ccallnode.createinternres(procname,
  3637. ccallparanode.create(cordconstnode.create(getparaencoding(resultdef),u16inttype,true),
  3638. ccallparanode.create(left,nil)),resultdef)
  3639. else
  3640. result:=ccallnode.createinternres(procname,ccallparanode.create(left,nil),resultdef);
  3641. left:=nil;
  3642. end;
  3643. function ttypeconvnode._first_int_to_int : tnode;
  3644. begin
  3645. result:=first_int_to_int;
  3646. end;
  3647. function ttypeconvnode._first_cstring_to_pchar : tnode;
  3648. begin
  3649. result:=first_cstring_to_pchar;
  3650. end;
  3651. function ttypeconvnode._first_cstring_to_int : tnode;
  3652. begin
  3653. result:=first_cstring_to_int;
  3654. end;
  3655. function ttypeconvnode._first_string_to_chararray : tnode;
  3656. begin
  3657. result:=first_string_to_chararray;
  3658. end;
  3659. function ttypeconvnode._first_char_to_string : tnode;
  3660. begin
  3661. result:=first_char_to_string;
  3662. end;
  3663. function ttypeconvnode._first_char_to_chararray: tnode;
  3664. begin
  3665. result:=first_char_to_chararray;
  3666. end;
  3667. function ttypeconvnode._first_nothing : tnode;
  3668. begin
  3669. result:=first_nothing;
  3670. end;
  3671. function ttypeconvnode._first_array_to_pointer : tnode;
  3672. begin
  3673. result:=first_array_to_pointer;
  3674. end;
  3675. function ttypeconvnode._first_int_to_real : tnode;
  3676. begin
  3677. result:=first_int_to_real;
  3678. end;
  3679. function ttypeconvnode._first_real_to_real : tnode;
  3680. begin
  3681. result:=first_real_to_real;
  3682. end;
  3683. function ttypeconvnode._first_pointer_to_array : tnode;
  3684. begin
  3685. result:=first_pointer_to_array;
  3686. end;
  3687. function ttypeconvnode._first_cchar_to_pchar : tnode;
  3688. begin
  3689. result:=first_cchar_to_pchar;
  3690. end;
  3691. function ttypeconvnode._first_bool_to_int : tnode;
  3692. begin
  3693. result:=first_bool_to_int;
  3694. end;
  3695. function ttypeconvnode._first_int_to_bool : tnode;
  3696. begin
  3697. result:=first_int_to_bool;
  3698. end;
  3699. function ttypeconvnode._first_bool_to_bool : tnode;
  3700. begin
  3701. result:=first_bool_to_bool;
  3702. end;
  3703. function ttypeconvnode._first_proc_to_procvar : tnode;
  3704. begin
  3705. result:=first_proc_to_procvar;
  3706. end;
  3707. function ttypeconvnode._first_nil_to_methodprocvar : tnode;
  3708. begin
  3709. result:=first_nil_to_methodprocvar;
  3710. end;
  3711. function ttypeconvnode._first_set_to_set : tnode;
  3712. begin
  3713. result:=first_set_to_set;
  3714. end;
  3715. function ttypeconvnode._first_cord_to_pointer : tnode;
  3716. begin
  3717. result:=first_cord_to_pointer;
  3718. end;
  3719. function ttypeconvnode._first_ansistring_to_pchar : tnode;
  3720. begin
  3721. result:=first_ansistring_to_pchar;
  3722. end;
  3723. function ttypeconvnode._first_arrayconstructor_to_set : tnode;
  3724. begin
  3725. result:=first_arrayconstructor_to_set;
  3726. end;
  3727. function ttypeconvnode._first_class_to_intf : tnode;
  3728. begin
  3729. result:=first_class_to_intf;
  3730. end;
  3731. function ttypeconvnode._first_char_to_char : tnode;
  3732. begin
  3733. result:=first_char_to_char;
  3734. end;
  3735. function ttypeconvnode._first_string_to_string : tnode;
  3736. begin
  3737. result:=first_string_to_string;
  3738. end;
  3739. function ttypeconvnode.first_call_helper(c : tconverttype) : tnode;
  3740. const
  3741. firstconvert : array[tconverttype] of pointer = (
  3742. nil, { none }
  3743. @ttypeconvnode._first_nothing, {equal}
  3744. @ttypeconvnode._first_nothing, {not_possible}
  3745. @ttypeconvnode._first_string_to_string,
  3746. @ttypeconvnode._first_char_to_string,
  3747. @ttypeconvnode._first_char_to_chararray,
  3748. nil, { removed in typecheck_chararray_to_string }
  3749. @ttypeconvnode._first_cchar_to_pchar,
  3750. @ttypeconvnode._first_cstring_to_pchar,
  3751. @ttypeconvnode._first_cstring_to_int,
  3752. @ttypeconvnode._first_ansistring_to_pchar,
  3753. @ttypeconvnode._first_string_to_chararray,
  3754. nil, { removed in typecheck_chararray_to_string }
  3755. @ttypeconvnode._first_array_to_pointer,
  3756. @ttypeconvnode._first_pointer_to_array,
  3757. @ttypeconvnode._first_int_to_int,
  3758. @ttypeconvnode._first_int_to_bool,
  3759. @ttypeconvnode._first_bool_to_bool,
  3760. @ttypeconvnode._first_bool_to_int,
  3761. @ttypeconvnode._first_real_to_real,
  3762. @ttypeconvnode._first_int_to_real,
  3763. nil, { removed in typecheck_real_to_currency }
  3764. @ttypeconvnode._first_proc_to_procvar,
  3765. @ttypeconvnode._first_nil_to_methodprocvar,
  3766. @ttypeconvnode._first_arrayconstructor_to_set,
  3767. @ttypeconvnode._first_set_to_set,
  3768. @ttypeconvnode._first_cord_to_pointer,
  3769. @ttypeconvnode._first_nothing,
  3770. @ttypeconvnode._first_nothing,
  3771. @ttypeconvnode._first_class_to_intf,
  3772. @ttypeconvnode._first_char_to_char,
  3773. @ttypeconvnode._first_nothing,
  3774. @ttypeconvnode._first_nothing,
  3775. nil,
  3776. nil,
  3777. nil,
  3778. nil,
  3779. nil,
  3780. nil,
  3781. nil,
  3782. @ttypeconvnode._first_nothing,
  3783. @ttypeconvnode._first_nothing,
  3784. @ttypeconvnode._first_nothing
  3785. );
  3786. type
  3787. tprocedureofobject = function : tnode of object;
  3788. var
  3789. r : TMethod;
  3790. begin
  3791. { this is a little bit dirty but it works }
  3792. { and should be quite portable too }
  3793. r.Code:=firstconvert[c];
  3794. r.Data:=self;
  3795. if not assigned(r.Code) then
  3796. internalerror(200312081);
  3797. first_call_helper:=tprocedureofobject(r)()
  3798. end;
  3799. function ttypeconvnode.pass_1 : tnode;
  3800. begin
  3801. if warn_pointer_to_signed then
  3802. cgmessage(type_w_pointer_to_signed);
  3803. result:=nil;
  3804. firstpass(left);
  3805. if codegenerror then
  3806. exit;
  3807. expectloc:=left.expectloc;
  3808. if nf_explicit in flags then
  3809. { check if the result could be in a register }
  3810. if (not(tstoreddef(resultdef).is_intregable) and
  3811. not(tstoreddef(resultdef).is_const_intregable) and
  3812. not(tstoreddef(resultdef).is_fpuregable)) or
  3813. ((left.resultdef.typ = floatdef) and
  3814. (resultdef.typ <> floatdef)) then
  3815. make_not_regable(left,[ra_addr_regable]);
  3816. result:=first_call_helper(convtype);
  3817. end;
  3818. function ttypeconvnode.retains_value_location:boolean;
  3819. begin
  3820. result:=assigned(left.resultdef) and
  3821. (
  3822. (convtype=tc_equal) or
  3823. { typecasting from void is always allowed }
  3824. is_void(left.resultdef) or
  3825. (left.resultdef.typ=formaldef) or
  3826. { int 2 int with same size reuses same location, or for
  3827. tp7 mode also allow size < orignal size }
  3828. (
  3829. (convtype=tc_int_2_int) and
  3830. (
  3831. not is_bitpacked_access(left) and
  3832. (resultdef.size=left.resultdef.size) or
  3833. ((m_tp7 in current_settings.modeswitches) and
  3834. (resultdef.size<left.resultdef.size))
  3835. )
  3836. ) or
  3837. { int 2 bool/bool 2 int, explicit typecast, see also nx86cnv }
  3838. ((convtype in [tc_int_2_bool,tc_bool_2_int,tc_bool_2_bool]) and
  3839. (nf_explicit in flags) and
  3840. (resultdef.size=left.resultdef.size)) or
  3841. { on managed platforms, converting an element to an open array
  3842. involves creating an actual array -> value location changes }
  3843. ((convtype=tc_elem_2_openarray) and
  3844. not(target_info.system in systems_managed_vm))
  3845. );
  3846. end;
  3847. function ttypeconvnode.assign_allowed:boolean;
  3848. begin
  3849. result:=retains_value_location;
  3850. { When using only a part of the value it can't be in a register since
  3851. that will load the value in a new register first }
  3852. { the same goes for changing the sign of equal-sized values which
  3853. are smaller than an entire register }
  3854. if result and
  3855. { don't try to check the size of an open array }
  3856. (is_open_array(resultdef) or
  3857. (resultdef.size<left.resultdef.size) or
  3858. ((resultdef.size=left.resultdef.size) and
  3859. (left.resultdef.size<sizeof(aint)) and
  3860. (is_signed(resultdef) xor is_signed(left.resultdef)))) then
  3861. make_not_regable(left,[ra_addr_regable]);
  3862. end;
  3863. function ttypeconvnode.docompare(p: tnode) : boolean;
  3864. begin
  3865. docompare :=
  3866. inherited docompare(p) and
  3867. (convtype = ttypeconvnode(p).convtype) and
  3868. (convnodeflags = ttypeconvnode(p).convnodeflags) and
  3869. equal_defs(totypedef,ttypeconvnode(p).totypedef);
  3870. end;
  3871. procedure ttypeconvnode._second_int_to_int;
  3872. begin
  3873. second_int_to_int;
  3874. end;
  3875. procedure ttypeconvnode._second_string_to_string;
  3876. begin
  3877. second_string_to_string;
  3878. end;
  3879. procedure ttypeconvnode._second_cstring_to_pchar;
  3880. begin
  3881. second_cstring_to_pchar;
  3882. end;
  3883. procedure ttypeconvnode._second_cstring_to_int;
  3884. begin
  3885. second_cstring_to_int;
  3886. end;
  3887. procedure ttypeconvnode._second_string_to_chararray;
  3888. begin
  3889. second_string_to_chararray;
  3890. end;
  3891. procedure ttypeconvnode._second_array_to_pointer;
  3892. begin
  3893. second_array_to_pointer;
  3894. end;
  3895. procedure ttypeconvnode._second_pointer_to_array;
  3896. begin
  3897. second_pointer_to_array;
  3898. end;
  3899. procedure ttypeconvnode._second_chararray_to_string;
  3900. begin
  3901. second_chararray_to_string;
  3902. end;
  3903. procedure ttypeconvnode._second_char_to_string;
  3904. begin
  3905. second_char_to_string;
  3906. end;
  3907. procedure ttypeconvnode._second_int_to_real;
  3908. begin
  3909. second_int_to_real;
  3910. end;
  3911. procedure ttypeconvnode._second_real_to_real;
  3912. begin
  3913. second_real_to_real;
  3914. end;
  3915. procedure ttypeconvnode._second_cord_to_pointer;
  3916. begin
  3917. second_cord_to_pointer;
  3918. end;
  3919. procedure ttypeconvnode._second_proc_to_procvar;
  3920. begin
  3921. second_proc_to_procvar;
  3922. end;
  3923. procedure ttypeconvnode._second_nil_to_methodprocvar;
  3924. begin
  3925. second_nil_to_methodprocvar;
  3926. end;
  3927. procedure ttypeconvnode._second_bool_to_int;
  3928. begin
  3929. second_bool_to_int;
  3930. end;
  3931. procedure ttypeconvnode._second_int_to_bool;
  3932. begin
  3933. second_int_to_bool;
  3934. end;
  3935. procedure ttypeconvnode._second_bool_to_bool;
  3936. begin
  3937. second_bool_to_bool;
  3938. end;
  3939. procedure ttypeconvnode._second_set_to_set;
  3940. begin
  3941. second_set_to_set;
  3942. end;
  3943. procedure ttypeconvnode._second_ansistring_to_pchar;
  3944. begin
  3945. second_ansistring_to_pchar;
  3946. end;
  3947. procedure ttypeconvnode._second_class_to_intf;
  3948. begin
  3949. second_class_to_intf;
  3950. end;
  3951. procedure ttypeconvnode._second_char_to_char;
  3952. begin
  3953. second_char_to_char;
  3954. end;
  3955. procedure ttypeconvnode._second_elem_to_openarray;
  3956. begin
  3957. second_elem_to_openarray;
  3958. end;
  3959. procedure ttypeconvnode._second_nothing;
  3960. begin
  3961. second_nothing;
  3962. end;
  3963. procedure ttypeconvnode.second_call_helper(c : tconverttype);
  3964. const
  3965. secondconvert : array[tconverttype] of pointer = (
  3966. @ttypeconvnode._second_nothing, {none}
  3967. @ttypeconvnode._second_nothing, {equal}
  3968. @ttypeconvnode._second_nothing, {not_possible}
  3969. @ttypeconvnode._second_nothing, {second_string_to_string, handled in resultdef pass }
  3970. @ttypeconvnode._second_char_to_string,
  3971. @ttypeconvnode._second_nothing, {char_to_charray}
  3972. @ttypeconvnode._second_nothing, { pchar_to_string, handled in resultdef pass }
  3973. @ttypeconvnode._second_nothing, {cchar_to_pchar}
  3974. @ttypeconvnode._second_cstring_to_pchar,
  3975. @ttypeconvnode._second_cstring_to_int,
  3976. @ttypeconvnode._second_ansistring_to_pchar,
  3977. @ttypeconvnode._second_string_to_chararray,
  3978. @ttypeconvnode._second_nothing, { chararray_to_string, handled in resultdef pass }
  3979. @ttypeconvnode._second_array_to_pointer,
  3980. @ttypeconvnode._second_pointer_to_array,
  3981. @ttypeconvnode._second_int_to_int,
  3982. @ttypeconvnode._second_int_to_bool,
  3983. @ttypeconvnode._second_bool_to_bool,
  3984. @ttypeconvnode._second_bool_to_int,
  3985. @ttypeconvnode._second_real_to_real,
  3986. @ttypeconvnode._second_int_to_real,
  3987. @ttypeconvnode._second_nothing, { real_to_currency, handled in resultdef pass }
  3988. @ttypeconvnode._second_proc_to_procvar,
  3989. @ttypeconvnode._second_nil_to_methodprocvar,
  3990. @ttypeconvnode._second_nothing, { arrayconstructor_to_set }
  3991. @ttypeconvnode._second_nothing, { second_set_to_set, handled in first pass }
  3992. @ttypeconvnode._second_cord_to_pointer,
  3993. @ttypeconvnode._second_nothing, { interface 2 string }
  3994. @ttypeconvnode._second_nothing, { interface 2 guid }
  3995. @ttypeconvnode._second_class_to_intf,
  3996. @ttypeconvnode._second_char_to_char,
  3997. @ttypeconvnode._second_nothing, { dynarray_2_openarray }
  3998. @ttypeconvnode._second_nothing, { pwchar_2_string }
  3999. @ttypeconvnode._second_nothing, { variant_2_dynarray }
  4000. @ttypeconvnode._second_nothing, { dynarray_2_variant}
  4001. @ttypeconvnode._second_nothing, { variant_2_enum }
  4002. @ttypeconvnode._second_nothing, { enum_2_variant }
  4003. @ttypeconvnode._second_nothing, { variant_2_interface }
  4004. @ttypeconvnode._second_nothing, { interface_2_variant }
  4005. @ttypeconvnode._second_nothing, { array_2_dynarray }
  4006. @ttypeconvnode._second_elem_to_openarray, { elem_2_openarray }
  4007. @ttypeconvnode._second_nothing, { arrayconstructor_2_dynarray }
  4008. @ttypeconvnode._second_nothing { arrayconstructor_2_array }
  4009. );
  4010. type
  4011. tprocedureofobject = procedure of object;
  4012. var
  4013. r : TMethod;
  4014. begin
  4015. { this is a little bit dirty but it works }
  4016. { and should be quite portable too }
  4017. r.Code:=secondconvert[c];
  4018. r.Data:=self;
  4019. tprocedureofobject(r)();
  4020. end;
  4021. {*****************************************************************************
  4022. TASNODE
  4023. *****************************************************************************}
  4024. function tasisnode.target_specific_typecheck: boolean;
  4025. begin
  4026. result:=false;
  4027. end;
  4028. function tasisnode.pass_typecheck: tnode;
  4029. var
  4030. hp : tnode;
  4031. begin
  4032. result:=nil;
  4033. typecheckpass(right);
  4034. typecheckpass(left);
  4035. set_varstate(right,vs_read,[vsf_must_be_valid]);
  4036. set_varstate(left,vs_read,[vsf_must_be_valid]);
  4037. if codegenerror then
  4038. exit;
  4039. if target_specific_typecheck then
  4040. begin
  4041. // ok
  4042. end
  4043. else if (right.resultdef.typ=classrefdef) then
  4044. begin
  4045. { left maybe an interface reference }
  4046. if is_interfacecom(left.resultdef) or
  4047. is_javainterface(left.resultdef) then
  4048. begin
  4049. { relation checks are not possible }
  4050. end
  4051. { or left must be a class }
  4052. else if is_class(left.resultdef) or
  4053. is_javaclass(left.resultdef) then
  4054. begin
  4055. { the operands must be related }
  4056. if (not(def_is_related(tobjectdef(left.resultdef),
  4057. tobjectdef(tclassrefdef(right.resultdef).pointeddef)))) and
  4058. (not(def_is_related(tobjectdef(tclassrefdef(right.resultdef).pointeddef),
  4059. tobjectdef(left.resultdef)))) then
  4060. CGMessage2(type_e_classes_not_related,
  4061. FullTypeName(left.resultdef,tclassrefdef(right.resultdef).pointeddef),
  4062. FullTypeName(tclassrefdef(right.resultdef).pointeddef,left.resultdef));
  4063. end
  4064. else
  4065. CGMessage1(type_e_class_or_cominterface_type_expected,left.resultdef.typename);
  4066. case nodetype of
  4067. isn:
  4068. resultdef:=pasbool1type;
  4069. asn:
  4070. resultdef:=tclassrefdef(right.resultdef).pointeddef;
  4071. else
  4072. ;
  4073. end;
  4074. end
  4075. else if is_interface(right.resultdef) or
  4076. is_dispinterface(right.resultdef) or
  4077. is_javainterface(right.resultdef) then
  4078. begin
  4079. case nodetype of
  4080. isn:
  4081. resultdef:=pasbool1type;
  4082. asn:
  4083. resultdef:=right.resultdef;
  4084. else
  4085. ;
  4086. end;
  4087. { left is a class or interface }
  4088. if is_javainterface(right.resultdef) then
  4089. begin
  4090. if not is_java_class_or_interface(left.resultdef) then
  4091. CGMessage1(type_e_class_or_cominterface_type_expected,left.resultdef.typename);
  4092. end
  4093. else if not(is_class(left.resultdef) or
  4094. is_interfacecom(left.resultdef)) then
  4095. CGMessage1(type_e_class_or_cominterface_type_expected,left.resultdef.typename)
  4096. else
  4097. begin
  4098. { load the GUID of the interface }
  4099. if (right.nodetype=typen) then
  4100. begin
  4101. if tobjectdef(right.resultdef).objecttype=odt_interfacecorba then
  4102. begin
  4103. if assigned(tobjectdef(right.resultdef).iidstr) then
  4104. begin
  4105. hp:=cstringconstnode.createstr(tobjectdef(right.resultdef).iidstr^);
  4106. tstringconstnode(hp).changestringtype(cshortstringtype);
  4107. right.free;
  4108. right:=hp;
  4109. end
  4110. else
  4111. internalerror(201006131);
  4112. end
  4113. else
  4114. begin
  4115. if assigned(tobjectdef(right.resultdef).iidguid) then
  4116. begin
  4117. if not(oo_has_valid_guid in tobjectdef(right.resultdef).objectoptions) then
  4118. CGMessage1(type_e_interface_has_no_guid,tobjectdef(right.resultdef).typename);
  4119. hp:=cguidconstnode.create(tobjectdef(right.resultdef).iidguid^);
  4120. right.free;
  4121. right:=hp;
  4122. end
  4123. else
  4124. internalerror(201006132);
  4125. end;
  4126. typecheckpass(right);
  4127. end;
  4128. end;
  4129. end
  4130. else
  4131. CGMessage1(type_e_class_or_interface_type_expected,right.resultdef.typename);
  4132. end;
  4133. {*****************************************************************************
  4134. TISNODE
  4135. *****************************************************************************}
  4136. constructor tisnode.create(l,r : tnode);
  4137. begin
  4138. inherited create(isn,l,r);
  4139. end;
  4140. constructor tisnode.create_internal(l, r: tnode);
  4141. begin
  4142. create(l,r);
  4143. include(flags,nf_internal);
  4144. end;
  4145. function tisnode.pass_1 : tnode;
  4146. var
  4147. procname: string;
  4148. statement : tstatementnode;
  4149. tempnode : ttempcreatenode;
  4150. begin
  4151. result:=nil;
  4152. { Passing a class type to an "is" expression cannot result in a class
  4153. of that type to be constructed.
  4154. }
  4155. include(right.flags,nf_ignore_for_wpo);
  4156. if is_class(left.resultdef) and
  4157. (right.resultdef.typ=classrefdef) then
  4158. begin
  4159. if (right.nodetype=loadvmtaddrn) and
  4160. (tloadvmtaddrnode(right).left.nodetype=typen) and
  4161. (oo_is_sealed in tobjectdef(tloadvmtaddrnode(right).left.resultdef).objectoptions) and
  4162. equal_defs(left.resultdef,tclassrefdef(right.resultdef).pointeddef) then
  4163. begin
  4164. if might_have_sideeffects(left) or
  4165. (node_complexity(left)>2) then
  4166. begin
  4167. result:=internalstatements(statement);
  4168. tempnode:=ctempcreatenode.create(left.resultdef,left.resultdef.size,tt_persistent,true);
  4169. addstatement(statement,tempnode);
  4170. addstatement(statement,cassignmentnode.create_internal(ctemprefnode.create(tempnode),left));
  4171. addstatement(statement,caddnode.create_internal(andn,
  4172. caddnode.create_internal(unequaln,ctemprefnode.create(tempnode),cnilnode.create),
  4173. caddnode.create_internal(equaln,cloadvmtaddrnode.create(ctemprefnode.create(tempnode)),right)
  4174. )
  4175. );
  4176. left:=nil;
  4177. right:=nil;
  4178. end
  4179. else
  4180. begin
  4181. result:=caddnode.create_internal(andn,
  4182. caddnode.create_internal(unequaln,left.getcopy,cnilnode.create),
  4183. caddnode.create_internal(equaln,cloadvmtaddrnode.create(left.getcopy),right)
  4184. );
  4185. right:=nil;
  4186. end;
  4187. end
  4188. else
  4189. result := ccallnode.createinternres('fpc_do_is',
  4190. ccallparanode.create(left,ccallparanode.create(right,nil)),
  4191. resultdef);
  4192. end
  4193. else
  4194. begin
  4195. if is_class(left.resultdef) then
  4196. if is_shortstring(right.resultdef) then
  4197. procname := 'fpc_class_is_corbaintf'
  4198. else
  4199. procname := 'fpc_class_is_intf'
  4200. else
  4201. if right.resultdef.typ=classrefdef then
  4202. procname := 'fpc_intf_is_class'
  4203. else
  4204. procname := 'fpc_intf_is';
  4205. result := ctypeconvnode.create_internal(ccallnode.createintern(procname,
  4206. ccallparanode.create(right,ccallparanode.create(left,nil))),resultdef);
  4207. end;
  4208. left := nil;
  4209. right := nil;
  4210. //firstpass(call);
  4211. if codegenerror then
  4212. exit;
  4213. end;
  4214. { dummy pass_2, it will never be called, but we need one since }
  4215. { you can't instantiate an abstract class }
  4216. procedure tisnode.pass_generate_code;
  4217. begin
  4218. end;
  4219. {*****************************************************************************
  4220. TASNODE
  4221. *****************************************************************************}
  4222. constructor tasnode.create(l,r : tnode);
  4223. begin
  4224. inherited create(asn,l,r);
  4225. call := nil;
  4226. end;
  4227. constructor tasnode.create_internal(l,r : tnode);
  4228. begin
  4229. create(l,r);
  4230. include(flags,nf_internal);
  4231. end;
  4232. destructor tasnode.destroy;
  4233. begin
  4234. call.free;
  4235. inherited destroy;
  4236. end;
  4237. function tasnode.dogetcopy: tnode;
  4238. begin
  4239. result := inherited dogetcopy;
  4240. if assigned(call) then
  4241. tasnode(result).call := call.getcopy
  4242. else
  4243. tasnode(result).call := nil;
  4244. end;
  4245. function tasnode.docompare(p: tnode): boolean;
  4246. begin
  4247. result:=
  4248. inherited docompare(p) and
  4249. tasnode(p).call.isequal(call);
  4250. end;
  4251. function tasnode.pass_1 : tnode;
  4252. var
  4253. procname: string;
  4254. begin
  4255. result:=nil;
  4256. { Passing a class type to an "as" expression cannot result in a class
  4257. of that type to be constructed.
  4258. We could put this inside the if-block below, but this way it is
  4259. safe for sure even if the code below changes
  4260. }
  4261. if assigned(right) then
  4262. include(right.flags,nf_ignore_for_wpo);
  4263. if not assigned(call) then
  4264. begin
  4265. if is_class(left.resultdef) and
  4266. (right.resultdef.typ=classrefdef) then
  4267. call := ccallnode.createinternres('fpc_do_as',
  4268. ccallparanode.create(left,ccallparanode.create(right,nil)),
  4269. resultdef)
  4270. else
  4271. begin
  4272. if is_class(left.resultdef) then
  4273. if is_shortstring(right.resultdef) then
  4274. procname := 'fpc_class_as_corbaintf'
  4275. else
  4276. procname := 'fpc_class_as_intf'
  4277. else
  4278. if right.resultdef.typ=classrefdef then
  4279. procname := 'fpc_intf_as_class'
  4280. else
  4281. procname := 'fpc_intf_as';
  4282. call := ctypeconvnode.create_internal(ccallnode.createintern(procname,
  4283. ccallparanode.create(right,ccallparanode.create(left,nil))),resultdef);
  4284. end;
  4285. left := nil;
  4286. right := nil;
  4287. firstpass(call);
  4288. if codegenerror then
  4289. exit;
  4290. expectloc:=call.expectloc;
  4291. end;
  4292. end;
  4293. end.