nadd.pas 194 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743
  1. {
  2. Copyright (c) 1998-2002 by Florian Klaempfl
  3. Type checking and simplification for add 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 nadd;
  18. {$i fpcdefs.inc}
  19. {$modeswitch nestedprocvars}
  20. { define addstringopt}
  21. interface
  22. uses
  23. node,symtype;
  24. type
  25. taddnode = class(tbinopnode)
  26. private
  27. resultrealdefderef: tderef;
  28. function pass_typecheck_internal:tnode;
  29. public
  30. resultrealdef : tdef;
  31. constructor create(tt : tnodetype;l,r : tnode);override;
  32. constructor create_internal(tt:tnodetype;l,r:tnode);
  33. constructor ppuload(t:tnodetype;ppufile:tcompilerppufile);override;
  34. procedure ppuwrite(ppufile:tcompilerppufile);override;
  35. procedure buildderefimpl;override;
  36. procedure derefimpl;override;
  37. function pass_1 : tnode;override;
  38. function pass_typecheck:tnode;override;
  39. function simplify(forinline: boolean) : tnode;override;
  40. function dogetcopy : tnode;override;
  41. function docompare(p: tnode): boolean; override;
  42. {$ifdef state_tracking}
  43. function track_state_pass(exec_known:boolean):boolean;override;
  44. {$endif}
  45. protected
  46. { override the following if you want to implement }
  47. { parts explicitely in the code generator (JM) }
  48. function first_addstring: tnode; virtual;
  49. function first_addset: tnode; virtual;
  50. function first_adddynarray : tnode; virtual;
  51. { only implements "muln" nodes, the rest always has to be done in }
  52. { the code generator for performance reasons (JM) }
  53. function first_add64bitint: tnode; virtual;
  54. function first_addpointer: tnode; virtual;
  55. function first_cmppointer: tnode; virtual;
  56. { override and return false if you can handle 32x32->64 }
  57. { bit multiplies directly in your code generator. If }
  58. { this function is overridden to return false, you can }
  59. { get multiplies with left/right both s32bit or u32bit, }
  60. { and resultdef of the muln s64bit or u64bit }
  61. function use_generic_mul32to64: boolean; virtual;
  62. { override and return false if code generator can handle }
  63. { full 64 bit multiplies. }
  64. function use_generic_mul64bit: boolean; virtual;
  65. {$ifdef cpuneedsmulhelper}
  66. { override to customize to decide if the code generator }
  67. { can handle a given multiply node directly, or it needs helpers }
  68. function use_mul_helper: boolean; virtual;
  69. {$endif cpuneedsmulhelper}
  70. { shall be overriden if the target cpu supports
  71. an fma instruction
  72. }
  73. function use_fma : boolean; virtual;
  74. { This routine calls internal runtime library helpers
  75. for all floating point arithmetic in the case
  76. where the emulation switches is on. Otherwise
  77. returns nil, and everything must be done in
  78. the code generation phase.
  79. }
  80. function first_addfloat : tnode; virtual;
  81. {
  82. generates softfloat code for the node
  83. }
  84. function first_addfloat_soft: tnode; virtual;
  85. private
  86. { checks whether a muln can be calculated as a 32bit }
  87. { * 32bit -> 64 bit }
  88. function try_make_mul32to64: boolean;
  89. { Match against the ranges, i.e.:
  90. var a:1..10;
  91. begin
  92. if a>0 then
  93. ...
  94. always evaluates to true. (DM)
  95. }
  96. function cmp_of_disjunct_ranges(var res : boolean) : boolean;
  97. { tries to replace the current node by a fma node }
  98. function try_fma(ld,rd : tdef) : tnode;
  99. end;
  100. taddnodeclass = class of taddnode;
  101. var
  102. { caddnode is used to create nodes of the add type }
  103. { the virtual constructor allows to assign }
  104. { another class type to caddnode => processor }
  105. { specific node types can be created }
  106. caddnode : taddnodeclass = taddnode;
  107. implementation
  108. uses
  109. {$IFNDEF USE_FAKE_SYSUTILS}
  110. sysutils,
  111. {$ELSE}
  112. fksysutl,
  113. {$ENDIF}
  114. globtype,systems,constexp,compinnr,
  115. cutils,verbose,globals,widestr,
  116. tokens,
  117. symconst,symdef,symsym,symcpu,symtable,defutil,defcmp,
  118. cgbase,
  119. htypechk,pass_1,
  120. nld,nbas,nmat,ncnv,ncon,nset,nopt,ncal,ninl,nmem,nutils,
  121. {$ifdef state_tracking}
  122. nstate,
  123. {$endif}
  124. cpuinfo;
  125. {*****************************************************************************
  126. TADDNODE
  127. *****************************************************************************}
  128. {$maxfpuregisters 0}
  129. function getbestreal(t1,t2 : tdef) : tdef;
  130. const
  131. floatweight : array[tfloattype] of byte =
  132. (2,3,4,5,0,1,6);
  133. begin
  134. if t1.typ=floatdef then
  135. begin
  136. result:=t1;
  137. if t2.typ=floatdef then
  138. begin
  139. { when a comp or currency is used, use always the
  140. best float type to calculate the result }
  141. if (tfloatdef(t1).floattype in [s64comp,s64currency]) or
  142. (tfloatdef(t2).floattype in [s64comp,s64currency]) or
  143. (cs_excessprecision in current_settings.localswitches) then
  144. result:=pbestrealtype^
  145. else
  146. if floatweight[tfloatdef(t2).floattype]>floatweight[tfloatdef(t1).floattype] then
  147. result:=t2;
  148. end;
  149. end
  150. else if t2.typ=floatdef then
  151. result:=t2
  152. else internalerror(200508061);
  153. end;
  154. constructor taddnode.create(tt : tnodetype;l,r : tnode);
  155. begin
  156. inherited create(tt,l,r);
  157. end;
  158. constructor taddnode.create_internal(tt:tnodetype;l,r:tnode);
  159. begin
  160. create(tt,l,r);
  161. include(flags,nf_internal);
  162. end;
  163. constructor taddnode.ppuload(t: tnodetype; ppufile: tcompilerppufile);
  164. begin
  165. inherited ppuload(t, ppufile);
  166. ppufile.getderef(resultrealdefderef);
  167. end;
  168. procedure taddnode.ppuwrite(ppufile: tcompilerppufile);
  169. begin
  170. inherited ppuwrite(ppufile);
  171. ppufile.putderef(resultrealdefderef);
  172. end;
  173. procedure taddnode.buildderefimpl;
  174. begin
  175. inherited buildderefimpl;
  176. resultrealdefderef.build(resultrealdef);
  177. end;
  178. procedure taddnode.derefimpl;
  179. begin
  180. inherited derefimpl;
  181. resultrealdef:=tdef(resultrealdefderef.resolve);
  182. end;
  183. function taddnode.cmp_of_disjunct_ranges(var res : boolean) : boolean;
  184. var
  185. hp : tnode;
  186. realdef : tdef;
  187. v : tconstexprint;
  188. begin
  189. result:=false;
  190. { check for comparision with known result because the ranges of the operands don't overlap }
  191. if (is_constintnode(right) and (left.resultdef.typ=orddef) and
  192. { don't ignore type checks }
  193. is_subequal(right.resultdef,left.resultdef)) or
  194. (is_constintnode(left) and (right.resultdef.typ=orddef) and
  195. { don't ignore type checks }
  196. is_subequal(left.resultdef,right.resultdef)) then
  197. begin
  198. if is_constintnode(right) then
  199. begin
  200. hp:=left;
  201. v:=Tordconstnode(right).value;
  202. end
  203. else
  204. begin
  205. hp:=right;
  206. v:=Tordconstnode(left).value;
  207. end;
  208. realdef:=hp.resultdef;
  209. { stop with finding the real def when we either encounter
  210. a) an explicit type conversion (then the value has to be
  211. re-interpreted)
  212. b) an "absolute" type conversion (also requires
  213. re-interpretation)
  214. }
  215. while (hp.nodetype=typeconvn) and
  216. ([nf_internal,nf_explicit,nf_absolute] * hp.flags = []) do
  217. begin
  218. hp:=ttypeconvnode(hp).left;
  219. realdef:=hp.resultdef;
  220. end;
  221. { could become an errordef in case of errors }
  222. if realdef.typ<>orddef then
  223. exit;
  224. if is_constintnode(left) then
  225. with torddef(realdef) do
  226. case nodetype of
  227. ltn:
  228. if v<low then
  229. begin
  230. result:=true;
  231. res:=true;
  232. end
  233. else if v>=high then
  234. begin
  235. result:=true;
  236. res:=false;
  237. end;
  238. lten:
  239. if v<=low then
  240. begin
  241. result:=true;
  242. res:=true;
  243. end
  244. else if v>high then
  245. begin
  246. result:=true;
  247. res:=false;
  248. end;
  249. gtn:
  250. if v<=low then
  251. begin
  252. result:=true;
  253. res:=false;
  254. end
  255. else if v>high then
  256. begin
  257. result:=true;
  258. res:=true;
  259. end;
  260. gten :
  261. if v<low then
  262. begin
  263. result:=true;
  264. res:=false;
  265. end
  266. else if v>=high then
  267. begin
  268. result:=true;
  269. res:=true;
  270. end;
  271. equaln:
  272. if (v<low) or (v>high) then
  273. begin
  274. result:=true;
  275. res:=false;
  276. end;
  277. unequaln:
  278. if (v<low) or (v>high) then
  279. begin
  280. result:=true;
  281. res:=true;
  282. end;
  283. else
  284. ;
  285. end
  286. else
  287. with torddef(realdef) do
  288. case nodetype of
  289. ltn:
  290. if high<v then
  291. begin
  292. result:=true;
  293. res:=true;
  294. end
  295. else if low>=v then
  296. begin
  297. result:=true;
  298. res:=false;
  299. end;
  300. lten:
  301. if high<=v then
  302. begin
  303. result:=true;
  304. res:=true;
  305. end
  306. else if low>v then
  307. begin
  308. result:=true;
  309. res:=false;
  310. end;
  311. gtn:
  312. if high<=v then
  313. begin
  314. result:=true;
  315. res:=false;
  316. end
  317. else if low>v then
  318. begin
  319. result:=true;
  320. res:=true;
  321. end;
  322. gten:
  323. if high<v then
  324. begin
  325. result:=true;
  326. res:=false;
  327. end
  328. else if low>=v then
  329. begin
  330. result:=true;
  331. res:=true;
  332. end;
  333. equaln:
  334. if (v<low) or (v>high) then
  335. begin
  336. result:=true;
  337. res:=false;
  338. end;
  339. unequaln:
  340. if (v<low) or (v>high) then
  341. begin
  342. result:=true;
  343. res:=true;
  344. end;
  345. else
  346. ;
  347. end;
  348. end;
  349. end;
  350. function taddnode.simplify(forinline : boolean) : tnode;
  351. function is_range_test(nodel, noder: taddnode; out value: tnode; var cl,cr: Tconstexprint): boolean;
  352. const
  353. is_upper_test: array[ltn..gten] of boolean = (true,true,false,false);
  354. inclusive_adjust: array[boolean,ltn..gten] of integer = ((-1,0,1,0),
  355. (1,0,-1,0));
  356. var
  357. swapl, swapr: Boolean;
  358. valuer: tnode;
  359. t: Tconstexprint;
  360. begin
  361. result:=false;
  362. swapl:=false;
  363. swapr:=false;
  364. if nodel.left.nodetype=ordconstn then
  365. begin
  366. swapl:=true;
  367. cl:=tordconstnode(nodel.left).value;
  368. value:=nodel.right;
  369. end
  370. else if nodel.right.nodetype=ordconstn then
  371. begin
  372. cl:=tordconstnode(nodel.right).value;
  373. value:=nodel.left;
  374. end
  375. else
  376. exit;
  377. if noder.left.nodetype=ordconstn then
  378. begin
  379. swapl:=true;
  380. cr:=tordconstnode(noder.left).value;
  381. valuer:=noder.right;
  382. end
  383. else if noder.right.nodetype=ordconstn then
  384. begin
  385. cr:=tordconstnode(noder.right).value;
  386. valuer:=noder.left;
  387. end
  388. else
  389. exit;
  390. if not value.isequal(valuer) then
  391. exit;
  392. { this could be simplified too, but probably never happens }
  393. if (is_upper_test[nodel.nodetype] xor swapl)=(is_upper_test[noder.nodetype] xor swapr) then
  394. exit;
  395. cl:=cl+inclusive_adjust[swapl,nodel.nodetype];
  396. cr:=cr+inclusive_adjust[swapr,noder.nodetype];
  397. if is_upper_test[nodel.nodetype] xor swapl then
  398. begin
  399. t:=cl;
  400. cl:=cr;
  401. cr:=t;
  402. end;
  403. if cl>cr then
  404. exit;
  405. result:=true;
  406. end;
  407. function IsLengthZero(n1,n2 : tnode) : Boolean;
  408. begin
  409. result:=is_inlinefunction(n1,in_length_x) and is_constintvalue(n2,0) and not(is_shortstring(tinlinenode(n1).left.resultdef));
  410. end;
  411. function TransformLengthZero(n1,n2 : tnode) : tnode;
  412. var
  413. len : Tconstexprint;
  414. lentype : tdef;
  415. begin
  416. if is_dynamic_array(tinlinenode(n1).left.resultdef) then
  417. len:=-1
  418. else
  419. len:=0;
  420. if is_widestring(tinlinenode(n1).left.resultdef) and (tf_winlikewidestring in target_info.flags) then
  421. lentype:=u32inttype
  422. else
  423. lentype:=sizesinttype;
  424. result:=caddnode.create_internal(orn,
  425. caddnode.create_internal(equaln,ctypeconvnode.create_internal(tinlinenode(n1).left.getcopy,voidpointertype),
  426. cpointerconstnode.create(0,voidpointertype)),
  427. caddnode.create_internal(equaln,
  428. ctypeconvnode.create_internal(
  429. cderefnode.create(
  430. caddnode.create_internal(subn,ctypeconvnode.create_internal(tinlinenode(n1).left.getcopy,voidpointertype),
  431. cordconstnode.create(lentype.size,lentype,false))
  432. ),lentype
  433. ),
  434. cordconstnode.create(len,lentype,false))
  435. );
  436. end;
  437. function GetCopyAndTypeCheck: tnode;
  438. begin
  439. result:=getcopy;
  440. result.resultdef:=nil;
  441. result:=ctypeconvnode.create_internal(result,resultdef);
  442. do_typecheckpass(result);
  443. end;
  444. function IsAndOrAndNot(n1,n2,n3,n4 : tnode): Boolean;
  445. begin
  446. result:=(n4.nodetype=notn) and
  447. tnotnode(n4).left.isequal(n2);
  448. end;
  449. function TransformAndOrAndNot(n1,n2,n3,n4 : tnode): tnode;
  450. begin
  451. result:=caddnode.create_internal(xorn,n3.getcopy,
  452. caddnode.create_internal(andn,caddnode.create_internal(xorn,n3.getcopy,n1.getcopy),n2.getcopy));
  453. end;
  454. function SwapRightWithLeftRight : tnode;
  455. var
  456. hp : tnode;
  457. begin
  458. hp:=right;
  459. right:=taddnode(left).right;
  460. taddnode(left).right:=hp;
  461. left:=left.simplify(forinline);
  462. if resultdef.typ<>pointerdef then
  463. begin
  464. { ensure that the constant is not expanded to a larger type due to overflow,
  465. but this is only useful if no pointer operation is done }
  466. left:=ctypeconvnode.create_internal(left,resultdef);
  467. do_typecheckpass(left);
  468. end;
  469. result:=GetCopyAndTypeCheck;
  470. end;
  471. function SwapRightWithLeftLeft : tnode;
  472. var
  473. hp,hp2 : tnode;
  474. begin
  475. { keep the order of val+const else pointer and string operations might cause an error }
  476. hp:=taddnode(left).left;
  477. taddnode(left).left:=taddnode(left).right;
  478. taddnode(left).right:=right;
  479. left.resultdef:=nil;
  480. do_typecheckpass(left);
  481. hp2:=left.simplify(forinline);
  482. if assigned(hp2) then
  483. left:=hp2;
  484. if resultdef.typ<>pointerdef then
  485. begin
  486. { ensure that the constant is not expanded to a larger type due to overflow,
  487. but this is only useful if no pointer operation is done }
  488. left:=ctypeconvnode.create_internal(left,resultdef);
  489. do_typecheckpass(left);
  490. end
  491. else if tpointerdef(resultdef).pointeddef.size>1 then
  492. { the constants were already multiplied by the pointer element size }
  493. left:=cmoddivnode.create(divn,left,cordconstnode.create(tpointerdef(resultdef).pointeddef.size,left.resultdef,false));
  494. right:=left;
  495. left:=hp;
  496. result:=GetCopyAndTypeCheck;
  497. end;
  498. function SwapLeftWithRightRight : tnode;
  499. var
  500. hp,hp2 : tnode;
  501. begin
  502. { keep the order of val+const else string operations might cause an error }
  503. hp:=taddnode(right).right;
  504. taddnode(right).right:=taddnode(right).left;
  505. taddnode(right).left:=left;
  506. right.resultdef:=nil;
  507. do_typecheckpass(right);
  508. hp2:=right.simplify(forinline);
  509. if assigned(hp2) then
  510. right:=hp2;
  511. if resultdef.typ<>pointerdef then
  512. begin
  513. { ensure that the constant is not expanded to a larger type due to overflow,
  514. but this is only useful if no pointer operation is done }
  515. right:=ctypeconvnode.create_internal(right,resultdef);
  516. do_typecheckpass(right);
  517. end;
  518. left:=right;
  519. right:=hp;
  520. result:=GetCopyAndTypeCheck;
  521. end;
  522. function SwapLeftWithRightLeft : tnode;
  523. var
  524. hp: tnode;
  525. begin
  526. hp:=left;
  527. left:=taddnode(right).left;
  528. taddnode(right).left:=hp;
  529. right:=right.simplify(false);
  530. result:=GetCopyAndTypeCheck;
  531. end;
  532. var
  533. hp: taddnode;
  534. t,vl,lefttarget,righttarget: tnode;
  535. lt,rt,nt : tnodetype;
  536. hdef,
  537. rd,ld , inttype: tdef;
  538. rv,lv,v : tconstexprint;
  539. rvd,lvd : bestreal;
  540. ws1,ws2 : pcompilerwidestring;
  541. concatstrings : boolean;
  542. c1,c2 : array[0..1] of char;
  543. s1,s2 : pchar;
  544. l1,l2 : longint;
  545. resultset : Tconstset;
  546. res,
  547. b : boolean;
  548. cr, cl : Tconstexprint;
  549. v2p, c2p, c1p, v1p: pnode;
  550. p1,p2: TConstPtrUInt;
  551. begin
  552. result:=nil;
  553. l1:=0;
  554. l2:=0;
  555. s1:=nil;
  556. s2:=nil;
  557. { load easier access variables }
  558. rd:=right.resultdef;
  559. ld:=left.resultdef;
  560. rt:=right.nodetype;
  561. lt:=left.nodetype;
  562. if (nodetype = slashn) and
  563. (((rt = ordconstn) and
  564. (tordconstnode(right).value = 0)) or
  565. ((rt = realconstn) and
  566. (trealconstnode(right).value_real = 0.0))) then
  567. begin
  568. if floating_point_range_check_error then
  569. begin
  570. result:=crealconstnode.create(1,pbestrealtype^);
  571. Message(parser_e_division_by_zero);
  572. exit;
  573. end;
  574. end;
  575. { both are int constants }
  576. if (
  577. is_constintnode(left) and
  578. is_constintnode(right)
  579. ) or
  580. (
  581. is_constboolnode(left) and
  582. is_constboolnode(right) and
  583. (nodetype in [slashn,ltn,lten,gtn,gten,equaln,unequaln,andn,xorn,orn])
  584. ) or
  585. (
  586. is_constenumnode(left) and
  587. is_constenumnode(right) and
  588. (allowenumop(nodetype) or (nf_internal in flags))
  589. ) or
  590. (
  591. (lt = pointerconstn) and
  592. is_constintnode(right) and
  593. (nodetype in [addn,subn])
  594. ) or
  595. (
  596. (rt = pointerconstn) and
  597. is_constintnode(left) and
  598. (nodetype=addn)
  599. ) or
  600. (
  601. (lt in [pointerconstn,niln]) and
  602. (rt in [pointerconstn,niln]) and
  603. (nodetype in [ltn,lten,gtn,gten,equaln,unequaln,subn])
  604. ) or
  605. (
  606. (lt = ordconstn) and (ld.typ = orddef) and is_currency(ld) and
  607. (rt = ordconstn) and (rd.typ = orddef) and is_currency(rd)
  608. ) then
  609. begin
  610. t:=nil;
  611. { load values }
  612. case lt of
  613. ordconstn:
  614. lv:=tordconstnode(left).value;
  615. pointerconstn:
  616. lv:=tpointerconstnode(left).value;
  617. niln:
  618. lv:=0;
  619. else
  620. internalerror(2002080202);
  621. end;
  622. case rt of
  623. ordconstn:
  624. rv:=tordconstnode(right).value;
  625. pointerconstn:
  626. rv:=tpointerconstnode(right).value;
  627. niln:
  628. rv:=0;
  629. else
  630. internalerror(2002080203);
  631. end;
  632. { type checking already took care of multiplying }
  633. { integer constants with pointeddef.size if necessary }
  634. case nodetype of
  635. addn :
  636. begin
  637. v:=lv+rv;
  638. if v.overflow then
  639. begin
  640. Message(parser_e_arithmetic_operation_overflow);
  641. { Recover }
  642. t:=genintconstnode(0)
  643. end
  644. else if (lt=pointerconstn) or (rt=pointerconstn) then
  645. t := cpointerconstnode.create(qword(v),resultdef)
  646. else
  647. if is_integer(ld) then
  648. t := create_simplified_ord_const(v,resultdef,forinline,cs_check_overflow in localswitches)
  649. else
  650. t := cordconstnode.create(v,resultdef,(ld.typ<>enumdef));
  651. end;
  652. subn :
  653. begin
  654. v:=lv-rv;
  655. if v.overflow then
  656. begin
  657. Message(parser_e_arithmetic_operation_overflow);
  658. { Recover }
  659. t:=genintconstnode(0)
  660. end
  661. else if (lt=pointerconstn) then
  662. { pointer-pointer results in an integer }
  663. if (rt=pointerconstn) then
  664. begin
  665. if not(nf_has_pointerdiv in flags) then
  666. internalerror(2008030101);
  667. t := cpointerconstnode.create(qword(v),resultdef)
  668. end
  669. else
  670. t := cpointerconstnode.create(qword(v),resultdef)
  671. else
  672. if is_integer(ld) then
  673. t := create_simplified_ord_const(v,resultdef,forinline,cs_check_overflow in localswitches)
  674. else
  675. t:=cordconstnode.create(v,resultdef,(ld.typ<>enumdef));
  676. end;
  677. muln :
  678. begin
  679. v:=lv*rv;
  680. if v.overflow then
  681. begin
  682. message(parser_e_arithmetic_operation_overflow);
  683. { Recover }
  684. t:=genintconstnode(0)
  685. end
  686. else
  687. t := create_simplified_ord_const(v,resultdef,forinline,cs_check_overflow in localswitches)
  688. end;
  689. xorn :
  690. if is_integer(ld) then
  691. t := create_simplified_ord_const(lv xor rv,resultdef,forinline,false)
  692. else
  693. t:=cordconstnode.create(lv xor rv,resultdef,true);
  694. orn :
  695. if is_integer(ld) then
  696. t:=create_simplified_ord_const(lv or rv,resultdef,forinline,false)
  697. else
  698. t:=cordconstnode.create(lv or rv,resultdef,true);
  699. andn :
  700. if is_integer(ld) then
  701. t:=create_simplified_ord_const(lv and rv,resultdef,forinline,false)
  702. else
  703. t:=cordconstnode.create(lv and rv,resultdef,true);
  704. ltn :
  705. t:=cordconstnode.create(ord(lv<rv),pasbool1type,true);
  706. lten :
  707. t:=cordconstnode.create(ord(lv<=rv),pasbool1type,true);
  708. gtn :
  709. t:=cordconstnode.create(ord(lv>rv),pasbool1type,true);
  710. gten :
  711. t:=cordconstnode.create(ord(lv>=rv),pasbool1type,true);
  712. equaln :
  713. t:=cordconstnode.create(ord(lv=rv),pasbool1type,true);
  714. unequaln :
  715. t:=cordconstnode.create(ord(lv<>rv),pasbool1type,true);
  716. slashn :
  717. begin
  718. { int/int becomes a real }
  719. rvd:=rv;
  720. lvd:=lv;
  721. t:=crealconstnode.create(lvd/rvd,resultrealdef);
  722. end;
  723. else
  724. internalerror(2008022101);
  725. end;
  726. result:=t;
  727. exit;
  728. end
  729. else if cmp_of_disjunct_ranges(res) then
  730. begin
  731. if res then
  732. t:=Cordconstnode.create(1,pasbool1type,true)
  733. else
  734. t:=Cordconstnode.create(0,pasbool1type,true);
  735. { don't do this optimization, if the variable expression might
  736. have a side effect }
  737. if (is_constintnode(left) and might_have_sideeffects(right)) or
  738. (is_constintnode(right) and might_have_sideeffects(left)) then
  739. t.free
  740. else
  741. result:=t;
  742. exit;
  743. end;
  744. { For operations that follow the commutative law, put integer constants on the right }
  745. if (nodetype in [addn,orn,xorn,andn,muln]) and
  746. is_constintnode(left) and (is_integer(right.resultdef) or is_pointer(right.resultdef)) then
  747. SwapLeftRight;
  748. { Add,Sub,Mul,Or,Xor,Andn with constant 0, 1 or -1? }
  749. if is_constintnode(right) and (is_integer(ld) or is_pointer(ld)) then
  750. begin
  751. if (tordconstnode(right).value = 0) and (nodetype in [addn,subn,orn,xorn,andn,muln]) then
  752. begin
  753. case nodetype of
  754. addn,subn,orn,xorn:
  755. result := PruneKeepLeft();
  756. andn,muln:
  757. begin
  758. if (cs_opt_level4 in current_settings.optimizerswitches) or
  759. not might_have_sideeffects(left) then
  760. result:=cordconstnode.create(0,resultdef,true);
  761. end
  762. else
  763. ;
  764. end;
  765. end
  766. else if (tordconstnode(right).value = 1) and (nodetype=muln) then
  767. { insert type conversion in case it is a 32*32 to 64 bit multiplication optimization,
  768. the type conversion does not hurt because it is normally removed later on
  769. }
  770. result := ctypeconvnode.create_internal(PruneKeepLeft(),resultdef)
  771. else if (tordconstnode(right).value = -1) and (nodetype=muln) then
  772. result := ctypeconvnode.create_internal(cunaryminusnode.create(PruneKeepLeft()),ld)
  773. { try to fold
  774. op op
  775. / \ / \
  776. op const1 or op const1
  777. / \ / \
  778. const2 val val const2
  779. }
  780. else if (left.nodetype=nodetype) and
  781. { there might be a mul operation e.g. longint*longint => int64 in this case
  782. we cannot do this optimziation, see e.g. tests/webtbs/tw36587.pp on arm }
  783. (compare_defs(resultdef,ld,nothingn)=te_exact) then
  784. begin
  785. if is_constintnode(taddnode(left).left) then
  786. begin
  787. case left.nodetype of
  788. xorn,
  789. addn,
  790. andn,
  791. orn,
  792. muln:
  793. Result:=SwapRightWithLeftRight;
  794. else
  795. ;
  796. end;
  797. end
  798. else if is_constintnode(taddnode(left).right) then
  799. begin
  800. case left.nodetype of
  801. xorn,
  802. addn,
  803. andn,
  804. orn,
  805. muln:
  806. Result:=SwapRightWithLeftLeft;
  807. else
  808. ;
  809. end;
  810. end
  811. end;
  812. if assigned(result) then
  813. exit;
  814. end;
  815. { Deal with anti-commutative subtraction }
  816. if (nodetype = subn) then
  817. begin
  818. { change "0 - val" to "-val" }
  819. if is_constintnode(left) and (is_integer(right.resultdef) or is_pointer(right.resultdef)) then
  820. begin
  821. if (tordconstnode(left).value = 0) then
  822. result := ctypeconvnode.create_internal(cunaryminusnode.create(right.getcopy),right.resultdef);
  823. end
  824. { convert n - n mod const into n div const*const }
  825. else if (right.nodetype=modn) and is_constintnode(tmoddivnode(right).right) and
  826. (left.isequal(tmoddivnode(right).left)) and not(might_have_sideeffects(left)) { and
  827. not(cs_check_overflow in localswitches) } then
  828. begin
  829. result:=caddnode.create(muln,cmoddivnode.create(divn,left,tmoddivnode(right).right.getcopy),tmoddivnode(right).right);
  830. left:=nil;
  831. tmoddivnode(right).right:=nil;
  832. exit;
  833. end;
  834. end;
  835. { both real constants ? }
  836. if (lt=realconstn) and (rt=realconstn) then
  837. begin
  838. lvd:=trealconstnode(left).value_real;
  839. rvd:=trealconstnode(right).value_real;
  840. case nodetype of
  841. addn :
  842. t:=crealconstnode.create(lvd+rvd,resultrealdef);
  843. subn :
  844. t:=crealconstnode.create(lvd-rvd,resultrealdef);
  845. muln :
  846. t:=crealconstnode.create(lvd*rvd,resultrealdef);
  847. starstarn:
  848. begin
  849. if lvd<0 then
  850. begin
  851. Message(parser_e_invalid_float_operation);
  852. t:=crealconstnode.create(0,resultrealdef);
  853. end
  854. else if lvd=0 then
  855. t:=crealconstnode.create(1.0,resultrealdef)
  856. else
  857. t:=crealconstnode.create(exp(ln(lvd)*rvd),resultrealdef);
  858. end;
  859. slashn :
  860. t:=crealconstnode.create(lvd/rvd,resultrealdef);
  861. ltn :
  862. t:=cordconstnode.create(ord(lvd<rvd),pasbool1type,true);
  863. lten :
  864. t:=cordconstnode.create(ord(lvd<=rvd),pasbool1type,true);
  865. gtn :
  866. t:=cordconstnode.create(ord(lvd>rvd),pasbool1type,true);
  867. gten :
  868. t:=cordconstnode.create(ord(lvd>=rvd),pasbool1type,true);
  869. equaln :
  870. t:=cordconstnode.create(ord(lvd=rvd),pasbool1type,true);
  871. unequaln :
  872. t:=cordconstnode.create(ord(lvd<>rvd),pasbool1type,true);
  873. else
  874. internalerror(2008022102);
  875. end;
  876. result:=t;
  877. if nf_is_currency in flags then
  878. include(result.flags,nf_is_currency);
  879. exit;
  880. end;
  881. if is_real(resultdef) then
  882. begin
  883. if (nodetype=addn) then
  884. begin
  885. { -left+right => right-left,
  886. this operation is always valid }
  887. if (left.nodetype=unaryminusn) then
  888. begin
  889. t := tunaryminusnode(left).PruneKeepLeft();
  890. result:=caddnode.create(subn,PruneKeepRight(),t);
  891. exit;
  892. end;
  893. { left+(-right) => left-right,
  894. this operation is always valid }
  895. if (right.nodetype=unaryminusn) then
  896. begin
  897. t := tunaryminusnode(right).PruneKeepLeft();
  898. result:=caddnode.create(subn,PruneKeepLeft(),t);
  899. exit;
  900. end;
  901. end;
  902. { left-(-right) => left+right,
  903. this operation is always valid }
  904. if (nodetype=subn) and (right.nodetype=unaryminusn) then
  905. begin
  906. t := tunaryminusnode(right).PruneKeepLeft();
  907. result:=caddnode.create(addn,PruneKeepLeft(),t);
  908. exit;
  909. end;
  910. { (-left)*(-right) => left*right, and
  911. (-left)/(-right) => left/right,
  912. these operations are always valid }
  913. if (nodetype in [muln,slashn]) and (left.nodetype=unaryminusn) and (right.nodetype=unaryminusn) then
  914. begin
  915. t := tunaryminusnode(right).PruneKeepLeft();
  916. result:=caddnode.create(nodetype,tunaryminusnode(left).PruneKeepLeft(),t);
  917. exit;
  918. end;
  919. { optimize operations with real constants, but only if fast math is switched on as
  920. the operations could change e.g. the sign of 0 so they cannot be optimized always
  921. }
  922. if is_real(resultdef) then
  923. begin
  924. if lt=realconstn then
  925. begin
  926. if (trealconstnode(left).value_real=0) and (nodetype in [addn,muln,subn,slashn]) then
  927. begin
  928. case nodetype of
  929. addn:
  930. begin
  931. { -0.0+(+0.0)=+0.0 so we cannot carry out this optimization if no fastmath is passed }
  932. if not(cs_opt_fastmath in current_settings.optimizerswitches) then
  933. begin
  934. result:=PruneKeepRight();
  935. exit;
  936. end;
  937. end;
  938. slashn,
  939. muln:
  940. if not(might_have_sideeffects(right,[mhs_exceptions])) then
  941. begin
  942. result:=PruneKeepLeft;
  943. exit;
  944. end;
  945. subn:
  946. begin
  947. t := PruneKeepRight();
  948. result:=ctypeconvnode.create_internal(cunaryminusnode.create(t),rd);
  949. exit;
  950. end;
  951. else
  952. Internalerror(2020060801);
  953. end;
  954. end
  955. else if (trealconstnode(left).value_real=1) and (nodetype=muln) then
  956. begin
  957. result:=right.getcopy;
  958. exit;
  959. end
  960. else if (trealconstnode(left).value_real=2) and (nodetype=muln) and not(might_have_sideeffects(right,[mhs_exceptions])) and
  961. (node_complexity(right)<=1) then
  962. begin
  963. result:=caddnode.create_internal(addn,right.getcopy,right.getcopy);
  964. exit;
  965. end;
  966. end
  967. else if rt=realconstn then
  968. begin
  969. if (trealconstnode(right).value_real=0) and (nodetype in [addn,muln,subn]) then
  970. begin
  971. case nodetype of
  972. subn,
  973. addn:
  974. begin
  975. result:=left.getcopy;
  976. exit;
  977. end;
  978. muln:
  979. if not(might_have_sideeffects(left,[mhs_exceptions])) then
  980. begin
  981. result:=right.getcopy;
  982. exit;
  983. end;
  984. else
  985. Internalerror(2020060802);
  986. end;
  987. end
  988. else if (trealconstnode(right).value_real=1) and (nodetype in [muln,slashn]) then
  989. begin
  990. result:=left.getcopy;
  991. exit;
  992. end
  993. else if (trealconstnode(right).value_real=2) and (nodetype=muln) and not(might_have_sideeffects(left,[mhs_exceptions])) and
  994. (node_complexity(left)<=1) then
  995. begin
  996. result:=caddnode.create_internal(addn,left.getcopy,left.getcopy);
  997. exit;
  998. end;
  999. end
  1000. { optimize a/a and a-a }
  1001. else if (((cs_opt_level2 in current_settings.optimizerswitches) and (nodetype=subn)) or
  1002. (([cs_opt_fastmath,cs_opt_level2]*current_settings.optimizerswitches=[cs_opt_fastmath,cs_opt_level2]) and (nodetype=slashn))
  1003. ) and
  1004. left.isequal(right) and not(might_have_sideeffects(left,[mhs_exceptions])) then
  1005. begin
  1006. case nodetype of
  1007. subn:
  1008. result:=crealconstnode.create(0,ld);
  1009. slashn:
  1010. result:=crealconstnode.create(1,ld);
  1011. else
  1012. Internalerror(2020060901);
  1013. end;
  1014. end;
  1015. end;
  1016. end;
  1017. {$if sizeof(bestrealrec) = sizeof(bestreal)}
  1018. { replace .../const by a multiplication, but only if fastmath is enabled or
  1019. the division is done by a power of 2, do not mess with special floating point values like Inf etc.
  1020. do this after constant folding to avoid unnecessary precision loss if
  1021. an slash expresion would be first converted into a multiplication and later
  1022. folded }
  1023. if (nodetype=slashn) and
  1024. { do not mess with currency and comp types }
  1025. (not(is_currency(rd)) and
  1026. not((rd.typ=floatdef) and
  1027. (tfloatdef(rd).floattype=s64comp)
  1028. )
  1029. ) and
  1030. (((cs_opt_fastmath in current_settings.optimizerswitches) and (rt=ordconstn)) or
  1031. ((cs_opt_fastmath in current_settings.optimizerswitches) and (rt=realconstn) and
  1032. (bestrealrec(trealconstnode(right).value_real).SpecialType in [fsPositive,fsNegative])
  1033. ) or
  1034. ((rt=realconstn) and
  1035. (bestrealrec(trealconstnode(right).value_real).SpecialType in [fsPositive,fsNegative]) and
  1036. { mantissa returns the mantissa/fraction without the hidden 1, so power of two means only the hidden
  1037. bit is set => mantissa must be 0 }
  1038. (bestrealrec(trealconstnode(right).value_real).Mantissa=0)
  1039. )
  1040. ) then
  1041. case rt of
  1042. ordconstn:
  1043. begin
  1044. { the normal code handles div/0 }
  1045. if (tordconstnode(right).value<>0) then
  1046. begin
  1047. nodetype:=muln;
  1048. t:=crealconstnode.create(1/tordconstnode(right).value,resultdef);
  1049. right.free;
  1050. right:=t;
  1051. exit;
  1052. end;
  1053. end;
  1054. realconstn:
  1055. begin
  1056. nodetype:=muln;
  1057. trealconstnode(right).value_real:=1.0/trealconstnode(right).value_real;
  1058. exit;
  1059. end;
  1060. else
  1061. ;
  1062. end;
  1063. {$endif sizeof(bestrealrec) = sizeof(bestreal)}
  1064. { first, we handle widestrings, so we can check later for }
  1065. { stringconstn only }
  1066. { widechars are converted above to widestrings too }
  1067. { this isn't ver y efficient, but I don't think }
  1068. { that it does matter that much (FK) }
  1069. if (lt=stringconstn) and (rt=stringconstn) and
  1070. (tstringconstnode(left).cst_type in [cst_widestring,cst_unicodestring]) and
  1071. (tstringconstnode(right).cst_type in [cst_widestring,cst_unicodestring]) then
  1072. begin
  1073. initwidestring(ws1);
  1074. initwidestring(ws2);
  1075. copywidestring(pcompilerwidestring(tstringconstnode(left).value_str),ws1);
  1076. copywidestring(pcompilerwidestring(tstringconstnode(right).value_str),ws2);
  1077. case nodetype of
  1078. addn :
  1079. begin
  1080. concatwidestrings(ws1,ws2);
  1081. t:=cstringconstnode.createunistr(ws1);
  1082. end;
  1083. ltn :
  1084. t:=cordconstnode.create(byte(comparewidestrings(ws1,ws2)<0),pasbool1type,true);
  1085. lten :
  1086. t:=cordconstnode.create(byte(comparewidestrings(ws1,ws2)<=0),pasbool1type,true);
  1087. gtn :
  1088. t:=cordconstnode.create(byte(comparewidestrings(ws1,ws2)>0),pasbool1type,true);
  1089. gten :
  1090. t:=cordconstnode.create(byte(comparewidestrings(ws1,ws2)>=0),pasbool1type,true);
  1091. equaln :
  1092. t:=cordconstnode.create(byte(comparewidestrings(ws1,ws2)=0),pasbool1type,true);
  1093. unequaln :
  1094. t:=cordconstnode.create(byte(comparewidestrings(ws1,ws2)<>0),pasbool1type,true);
  1095. else
  1096. internalerror(2008022103);
  1097. end;
  1098. donewidestring(ws1);
  1099. donewidestring(ws2);
  1100. result:=t;
  1101. exit;
  1102. end;
  1103. { concating strings ? }
  1104. concatstrings:=false;
  1105. if (lt=ordconstn) and (rt=ordconstn) and
  1106. is_char(ld) and is_char(rd) then
  1107. begin
  1108. c1[0]:=char(int64(tordconstnode(left).value));
  1109. c1[1]:=#0;
  1110. l1:=1;
  1111. c2[0]:=char(int64(tordconstnode(right).value));
  1112. c2[1]:=#0;
  1113. l2:=1;
  1114. s1:=@c1[0];
  1115. s2:=@c2[0];
  1116. concatstrings:=true;
  1117. end
  1118. else if (lt=stringconstn) and (rt=ordconstn) and is_char(rd) then
  1119. begin
  1120. s1:=tstringconstnode(left).value_str;
  1121. l1:=tstringconstnode(left).len;
  1122. c2[0]:=char(int64(tordconstnode(right).value));
  1123. c2[1]:=#0;
  1124. s2:=@c2[0];
  1125. l2:=1;
  1126. concatstrings:=true;
  1127. end
  1128. else if (lt=ordconstn) and (rt=stringconstn) and is_char(ld) then
  1129. begin
  1130. c1[0]:=char(int64(tordconstnode(left).value));
  1131. c1[1]:=#0;
  1132. l1:=1;
  1133. s1:=@c1[0];
  1134. s2:=tstringconstnode(right).value_str;
  1135. l2:=tstringconstnode(right).len;
  1136. concatstrings:=true;
  1137. end
  1138. else if (lt=stringconstn) and (rt=stringconstn) then
  1139. begin
  1140. s1:=tstringconstnode(left).value_str;
  1141. l1:=tstringconstnode(left).len;
  1142. s2:=tstringconstnode(right).value_str;
  1143. l2:=tstringconstnode(right).len;
  1144. concatstrings:=true;
  1145. end;
  1146. if concatstrings then
  1147. begin
  1148. case nodetype of
  1149. addn :
  1150. begin
  1151. t:=cstringconstnode.createpchar(concatansistrings(s1,s2,l1,l2),l1+l2,nil);
  1152. typecheckpass(t);
  1153. if not is_ansistring(resultdef) or
  1154. (tstringdef(resultdef).encoding<>globals.CP_NONE) then
  1155. tstringconstnode(t).changestringtype(resultdef)
  1156. else
  1157. tstringconstnode(t).changestringtype(getansistringdef)
  1158. end;
  1159. ltn :
  1160. t:=cordconstnode.create(byte(compareansistrings(s1,s2,l1,l2)<0),pasbool1type,true);
  1161. lten :
  1162. t:=cordconstnode.create(byte(compareansistrings(s1,s2,l1,l2)<=0),pasbool1type,true);
  1163. gtn :
  1164. t:=cordconstnode.create(byte(compareansistrings(s1,s2,l1,l2)>0),pasbool1type,true);
  1165. gten :
  1166. t:=cordconstnode.create(byte(compareansistrings(s1,s2,l1,l2)>=0),pasbool1type,true);
  1167. equaln :
  1168. t:=cordconstnode.create(byte(compareansistrings(s1,s2,l1,l2)=0),pasbool1type,true);
  1169. unequaln :
  1170. t:=cordconstnode.create(byte(compareansistrings(s1,s2,l1,l2)<>0),pasbool1type,true);
  1171. else
  1172. internalerror(2008022104);
  1173. end;
  1174. result:=t;
  1175. exit;
  1176. end;
  1177. { set constant evaluation }
  1178. if (right.nodetype=setconstn) and
  1179. not assigned(tsetconstnode(right).left) and
  1180. (left.nodetype=setconstn) and
  1181. not assigned(tsetconstnode(left).left) then
  1182. begin
  1183. case nodetype of
  1184. addn :
  1185. begin
  1186. resultset:=tsetconstnode(right).value_set^ + tsetconstnode(left).value_set^;
  1187. t:=csetconstnode.create(@resultset,resultdef);
  1188. end;
  1189. muln :
  1190. begin
  1191. resultset:=tsetconstnode(right).value_set^ * tsetconstnode(left).value_set^;
  1192. t:=csetconstnode.create(@resultset,resultdef);
  1193. end;
  1194. subn :
  1195. begin
  1196. resultset:=tsetconstnode(left).value_set^ - tsetconstnode(right).value_set^;
  1197. t:=csetconstnode.create(@resultset,resultdef);
  1198. end;
  1199. symdifn :
  1200. begin
  1201. resultset:=tsetconstnode(right).value_set^ >< tsetconstnode(left).value_set^;
  1202. t:=csetconstnode.create(@resultset,resultdef);
  1203. end;
  1204. unequaln :
  1205. begin
  1206. b:=tsetconstnode(right).value_set^ <> tsetconstnode(left).value_set^;
  1207. t:=cordconstnode.create(byte(b),pasbool1type,true);
  1208. end;
  1209. equaln :
  1210. begin
  1211. b:=tsetconstnode(right).value_set^ = tsetconstnode(left).value_set^;
  1212. t:=cordconstnode.create(byte(b),pasbool1type,true);
  1213. end;
  1214. lten :
  1215. begin
  1216. b:=tsetconstnode(left).value_set^ <= tsetconstnode(right).value_set^;
  1217. t:=cordconstnode.create(byte(b),pasbool1type,true);
  1218. end;
  1219. gten :
  1220. begin
  1221. b:=tsetconstnode(left).value_set^ >= tsetconstnode(right).value_set^;
  1222. t:=cordconstnode.create(byte(b),pasbool1type,true);
  1223. end;
  1224. else
  1225. internalerror(2008022105);
  1226. end;
  1227. result:=t;
  1228. exit;
  1229. end;
  1230. { in case of expressions having no side effect, we can simplify boolean expressions
  1231. containing constants }
  1232. if is_boolean(ld) and is_boolean(rd) then
  1233. begin
  1234. if is_constboolnode(left) then
  1235. begin
  1236. if ((nodetype=andn) and (tordconstnode(left).value<>0)) or
  1237. ((nodetype=orn) and (tordconstnode(left).value=0)) or
  1238. ((nodetype=xorn) and (tordconstnode(left).value=0)) then
  1239. begin
  1240. Result := PruneKeepRight();
  1241. exit;
  1242. end
  1243. else if not(might_have_sideeffects(right)) and
  1244. (((nodetype=orn) and (tordconstnode(left).value<>0)) or
  1245. ((nodetype=andn) and (tordconstnode(left).value=0))) then
  1246. begin
  1247. Result := PruneKeepLeft();
  1248. exit;
  1249. end
  1250. else if ((nodetype=xorn) and (tordconstnode(left).value<>0)) then
  1251. begin
  1252. Result := cnotnode.create(PruneKeepRight());
  1253. exit;
  1254. end
  1255. end
  1256. else if is_constboolnode(right) then
  1257. begin
  1258. if ((nodetype=andn) and (tordconstnode(right).value<>0)) or
  1259. ((nodetype=orn) and (tordconstnode(right).value=0)) or
  1260. ((nodetype=xorn) and (tordconstnode(right).value=0)) then
  1261. begin
  1262. result := PruneKeepLeft();
  1263. exit;
  1264. end
  1265. else if not(might_have_sideeffects(left)) and
  1266. (((nodetype=orn) and (tordconstnode(right).value<>0)) or
  1267. ((nodetype=andn) and (tordconstnode(right).value=0))) then
  1268. begin
  1269. result := PruneKeepRight();
  1270. exit;
  1271. end
  1272. else if ((nodetype=xorn) and (tordconstnode(right).value<>0)) then
  1273. begin
  1274. result := cnotnode.create(PruneKeepLeft());
  1275. exit;
  1276. end
  1277. end;
  1278. end;
  1279. { check if
  1280. typeinfo(<type1>)=/<>typeinfo(<type2>)
  1281. can be evaluated at compile time
  1282. }
  1283. lefttarget:=actualtargetnode(@left)^;
  1284. righttarget:=actualtargetnode(@right)^;
  1285. if (nodetype in [equaln,unequaln]) and (lefttarget.nodetype=inlinen) and (righttarget.nodetype=inlinen) and
  1286. (tinlinenode(lefttarget).inlinenumber=in_typeinfo_x) and (tinlinenode(righttarget).inlinenumber=in_typeinfo_x) and
  1287. not (tinlinenode(lefttarget).left.resultdef.typ in [undefineddef,errordef]) and
  1288. not (tinlinenode(righttarget).left.resultdef.typ in [undefineddef,errordef]) then
  1289. begin
  1290. case nodetype of
  1291. equaln:
  1292. result:=cordconstnode.create(ord(tinlinenode(lefttarget).left.resultdef=tinlinenode(righttarget).left.resultdef),bool8type,false);
  1293. unequaln:
  1294. result:=cordconstnode.create(ord(tinlinenode(lefttarget).left.resultdef<>tinlinenode(righttarget).left.resultdef),bool8type,false);
  1295. else
  1296. Internalerror(2020092901);
  1297. end;
  1298. exit;
  1299. end;
  1300. if is_constpointernode(left) and is_constpointernode(right) then
  1301. begin
  1302. p1:=0;
  1303. p2:=0;
  1304. if left.nodetype=pointerconstn then
  1305. p1:=tpointerconstnode(left).value;
  1306. if right.nodetype=pointerconstn then
  1307. p2:=tpointerconstnode(right).value;
  1308. case nodetype of
  1309. equaln:
  1310. result:=cordconstnode.create(ord(p1=p2),bool8type,false);
  1311. unequaln:
  1312. result:=cordconstnode.create(ord(p1<>p2),bool8type,false);
  1313. gtn:
  1314. result:=cordconstnode.create(ord(p1>p2),bool8type,false);
  1315. ltn:
  1316. result:=cordconstnode.create(ord(p1<p2),bool8type,false);
  1317. gten:
  1318. result:=cordconstnode.create(ord(p1>=p2),bool8type,false);
  1319. lten:
  1320. result:=cordconstnode.create(ord(p1<=p2),bool8type,false);
  1321. else
  1322. Internalerror(2020100101);
  1323. end;
  1324. exit;
  1325. end;
  1326. { slow simplifications and/or more sophisticated transformations which might make debugging harder }
  1327. if cs_opt_level2 in current_settings.optimizerswitches then
  1328. begin
  1329. if nodetype in [addn,muln,subn] then
  1330. begin
  1331. { convert a+const1-const2 into a+const1+(-const2) so it is folded later on }
  1332. if (left.nodetype=addn) and
  1333. (nodetype=subn) and
  1334. (cs_opt_fastmath in current_settings.optimizerswitches) and (rt=realconstn) and (taddnode(left).right.nodetype=realconstn) and
  1335. (compare_defs(resultdef,ld,nothingn)=te_exact) then
  1336. begin
  1337. Result:=getcopy;
  1338. Result.nodetype:=addn;
  1339. taddnode(result).right:=cunaryminusnode.create(taddnode(result).right);
  1340. exit;
  1341. end;
  1342. { convert a-const1+const2 into a+(-const1)+const2 so it is folded later on }
  1343. if (left.nodetype=subn) and
  1344. (nodetype=addn) and
  1345. (cs_opt_fastmath in current_settings.optimizerswitches) and (rt=realconstn) and (taddnode(left).right.nodetype=realconstn) and
  1346. (compare_defs(resultdef,ld,nothingn)=te_exact) then
  1347. begin
  1348. Result:=getcopy;
  1349. taddnode(Result).left.nodetype:=addn;
  1350. taddnode(taddnode(Result).left).right:=cunaryminusnode.create(taddnode(taddnode(Result).left).right);
  1351. exit;
  1352. end;
  1353. { try to fold
  1354. op
  1355. / \
  1356. op const1
  1357. / \
  1358. val const2
  1359. while operating on strings or reals
  1360. }
  1361. if (left.nodetype=nodetype) and
  1362. (((nodetype=addn) and ((rt=stringconstn) or is_constcharnode(right)) and ((taddnode(left).right.nodetype=stringconstn) or is_constcharnode(taddnode(left).right))) or
  1363. ((nodetype in [addn,muln,subn]) and (cs_opt_fastmath in current_settings.optimizerswitches) and (rt=realconstn) and (taddnode(left).right.nodetype=realconstn))
  1364. ) and
  1365. (compare_defs(resultdef,ld,nothingn)=te_exact) then
  1366. begin
  1367. { SwapRightWithLeftLeft moves the nodes around in way that we need to insert a minus
  1368. on left.right: a-b-c becomes b-c-a so we
  1369. need
  1370. 1) insert a minus bevor b
  1371. 2) make the current node an add node, see below
  1372. }
  1373. if nodetype=subn then
  1374. begin
  1375. taddnode(left).right:=cunaryminusnode.create(taddnode(left).right);
  1376. do_typecheckpass(taddnode(left).right);
  1377. end;
  1378. Result:=SwapRightWithLeftLeft;
  1379. if nodetype=subn then
  1380. begin
  1381. Result.nodetype:=addn;
  1382. do_typecheckpass(Result);
  1383. end;
  1384. exit;
  1385. end;
  1386. { try to fold
  1387. op
  1388. / \
  1389. const1 op
  1390. / \
  1391. const2 val
  1392. while operating on strings or reals
  1393. }
  1394. if (right.nodetype=nodetype) and
  1395. (((nodetype=addn) and ((lt=stringconstn) or is_constcharnode(left)) and ((taddnode(right).left.nodetype=stringconstn) or is_constcharnode(taddnode(right).left))) or
  1396. ((nodetype in [addn,muln]) and (cs_opt_fastmath in current_settings.optimizerswitches) and (lt=realconstn) and (taddnode(right).left.nodetype=realconstn))
  1397. ) and
  1398. (compare_defs(resultdef,rd,nothingn)=te_exact) then
  1399. begin
  1400. Result:=SwapLeftWithRightRight;
  1401. exit;
  1402. end;
  1403. {
  1404. reorder string expressions with parentheses:
  1405. (s1+(s2+(s3+s4...))) into s1+s2+s3+s4 ...
  1406. so fpc_*_concat_multi can be used efficiently
  1407. }
  1408. hp:=self;
  1409. while (hp.right.nodetype=hp.nodetype) and (hp.resultdef.typ=stringdef) and
  1410. (compare_defs(hp.resultdef,hp.right.resultdef,nothingn)=te_exact) and
  1411. (compare_defs(hp.resultdef,hp.left.resultdef,nothingn)=te_exact) and
  1412. (compare_defs(hp.resultdef,taddnode(hp.right).left.resultdef,nothingn)=te_exact) and
  1413. (compare_defs(hp.resultdef,taddnode(hp.right).right.resultdef,nothingn)=te_exact) do
  1414. begin
  1415. t:=hp.left;
  1416. hp.left:=hp.right;
  1417. hp.right:=taddnode(hp.left).right;
  1418. taddnode(hp.left).right:=taddnode(hp.left).left;
  1419. taddnode(hp.left).left:=t;
  1420. hp:=taddnode(hp.left);
  1421. end;
  1422. end;
  1423. { the comparison is might be expensive and the nodes are usually only
  1424. equal if some previous optimizations were done so don't check
  1425. this simplification always
  1426. }
  1427. if is_boolean(ld) and is_boolean(rd) then
  1428. begin
  1429. { transform unsigned comparisons of (v>=x) and (v<=y)
  1430. into (v-x)<=(y-x)
  1431. }
  1432. if (nodetype=andn) and
  1433. (left.nodetype in [ltn,lten,gtn,gten]) and
  1434. (right.nodetype in [ltn,lten,gtn,gten]) and
  1435. (not might_have_sideeffects(left)) and
  1436. (not might_have_sideeffects(right)) and
  1437. is_range_test(taddnode(left),taddnode(right),vl,cl,cr) and
  1438. { avoid optimization being applied to (<string. var > charconst1) and (<string. var < charconst2) }
  1439. (vl.resultdef.typ in [orddef,enumdef]) then
  1440. begin
  1441. hdef:=get_unsigned_inttype(vl.resultdef);
  1442. vl:=ctypeconvnode.create_internal(vl.getcopy,hdef);
  1443. result:=caddnode.create_internal(lten,
  1444. ctypeconvnode.create_internal(caddnode.create_internal(subn,vl,cordconstnode.create(cl,hdef,false)),hdef),
  1445. cordconstnode.create(cr-cl,hdef,false));
  1446. exit;
  1447. end;
  1448. {
  1449. (v1=const1) and (v2=const2)
  1450. can be converted into
  1451. ((v1 xor const1) or (v2 xor const2))=0
  1452. }
  1453. if (nodetype=andn) and
  1454. (left.nodetype=equaln) and
  1455. (right.nodetype=equaln) and
  1456. (not might_have_sideeffects(left)) and
  1457. (not might_have_sideeffects(right,[mhs_exceptions])) and
  1458. (is_constintnode(taddnode(left).left) or is_constintnode(taddnode(left).right) or
  1459. is_constpointernode(taddnode(left).left) or is_constpointernode(taddnode(left).right) or
  1460. is_constcharnode(taddnode(left).left) or is_constcharnode(taddnode(left).right)) and
  1461. (is_constintnode(taddnode(right).left) or is_constintnode(taddnode(right).right) or
  1462. is_constpointernode(taddnode(right).left) or is_constpointernode(taddnode(right).right) or
  1463. is_constcharnode(taddnode(right).left) or is_constcharnode(taddnode(right).right)) then
  1464. begin
  1465. if is_constnode(taddnode(left).left) then
  1466. begin
  1467. v1p:=@taddnode(left).right;
  1468. c1p:=@taddnode(left).left;
  1469. end
  1470. else
  1471. begin
  1472. v1p:=@taddnode(left).left;
  1473. c1p:=@taddnode(left).right;
  1474. end;
  1475. if is_constnode(taddnode(right).left) then
  1476. begin
  1477. v2p:=@taddnode(right).right;
  1478. c2p:=@taddnode(right).left;
  1479. end
  1480. else
  1481. begin
  1482. v2p:=@taddnode(right).left;
  1483. c2p:=@taddnode(right).right;
  1484. end;
  1485. if v1p^.resultdef.size=v2p^.resultdef.size then
  1486. begin
  1487. case v1p^.resultdef.size of
  1488. 1:
  1489. inttype:=u8inttype;
  1490. 2:
  1491. inttype:=u16inttype;
  1492. 4:
  1493. inttype:=u32inttype;
  1494. 8:
  1495. inttype:=u64inttype;
  1496. else
  1497. Internalerror(2020060101);
  1498. end;
  1499. result:=caddnode.create_internal(equaln,
  1500. caddnode.create_internal(orn,
  1501. caddnode.create_internal(xorn,ctypeconvnode.create_internal(v1p^.getcopy,inttype),
  1502. ctypeconvnode.create_internal(c1p^.getcopy,inttype)),
  1503. caddnode.create_internal(xorn,ctypeconvnode.create_internal(v2p^.getcopy,inttype),
  1504. ctypeconvnode.create_internal(c2p^.getcopy,inttype))
  1505. ),
  1506. cordconstnode.create(0,inttype,false));
  1507. end;
  1508. end;
  1509. { even when short circuit boolean evaluation is active, this
  1510. optimization cannot be performed in case the node has
  1511. side effects, because this can change the result (e.g., in an
  1512. or-node that calls the same function twice and first returns
  1513. false and then true because of a global state change }
  1514. if left.isequal(right) and not might_have_sideeffects(left) then
  1515. begin
  1516. case nodetype of
  1517. andn,orn:
  1518. begin
  1519. result:=PruneKeepLeft();
  1520. exit;
  1521. end;
  1522. {
  1523. xorn:
  1524. begin
  1525. result:=cordconstnode.create(0,resultdef,true);
  1526. exit;
  1527. end;
  1528. }
  1529. else
  1530. ;
  1531. end;
  1532. end
  1533. { short to full boolean evalution possible and useful? }
  1534. else if not(might_have_sideeffects(right,[mhs_exceptions])) and doshortbooleval(self) then
  1535. begin
  1536. case nodetype of
  1537. andn,orn:
  1538. begin
  1539. { full boolean evaluation is only useful if the nodes are not too complex and if no jumps must be converted,
  1540. further, we need to know the expectloc }
  1541. if (node_complexity(right)<=2) and
  1542. not(left.expectloc in [LOC_JUMP,LOC_INVALID]) and not(right.expectloc in [LOC_JUMP,LOC_INVALID]) then
  1543. begin
  1544. { we need to copy the whole tree to force another pass_1 }
  1545. include(localswitches,cs_full_boolean_eval);
  1546. exclude(flags,nf_short_bool);
  1547. result:=getcopy;
  1548. exit;
  1549. end;
  1550. end;
  1551. else
  1552. ;
  1553. end;
  1554. end
  1555. end;
  1556. if is_integer(ld) and is_integer(rd) then
  1557. begin
  1558. if (cs_opt_level3 in current_settings.optimizerswitches) and
  1559. left.isequal(right) and not might_have_sideeffects(left) then
  1560. begin
  1561. case nodetype of
  1562. andn,orn:
  1563. begin
  1564. result:=PruneKeepLeft();
  1565. exit;
  1566. end;
  1567. xorn,
  1568. subn,
  1569. unequaln,
  1570. ltn,
  1571. gtn:
  1572. begin
  1573. result:=cordconstnode.create(0,resultdef,true);
  1574. exit;
  1575. end;
  1576. equaln,
  1577. lten,
  1578. gten:
  1579. begin
  1580. result:=cordconstnode.create(1,resultdef,true);
  1581. exit;
  1582. end;
  1583. else
  1584. ;
  1585. end;
  1586. end
  1587. {$ifndef jvm}
  1588. else if (nodetype=equaln) and MatchAndTransformNodesCommutative(left,right,@IsLengthZero,@TransformLengthZero,Result) then
  1589. exit
  1590. {$endif jvm}
  1591. ;
  1592. end;
  1593. { using sqr(x) for reals instead of x*x might reduces register pressure and/or
  1594. memory accesses while sqr(<real>) has no drawback }
  1595. if
  1596. {$ifdef cpufpemu}
  1597. (current_settings.fputype<>fpu_soft) and
  1598. not(cs_fp_emulation in current_settings.moduleswitches) and
  1599. {$endif cpufpemu}
  1600. {$ifdef xtensa}
  1601. (FPUXTENSA_DOUBLE in fpu_capabilities[current_settings.fputype]) and
  1602. {$endif xtensa}
  1603. (nodetype=muln) and
  1604. is_real(ld) and is_real(rd) and
  1605. left.isequal(right) and
  1606. not(might_have_sideeffects(left)) then
  1607. begin
  1608. result:=cinlinenode.create(in_sqr_real,false,PruneKeepLeft());
  1609. inserttypeconv(result,resultdef);
  1610. exit;
  1611. end;
  1612. {$ifdef cpurox}
  1613. { optimize (i shl x) or (i shr (bitsizeof(i)-x)) into rol(x,i) (and different flavours with shl/shr swapped etc.) }
  1614. if (nodetype=orn)
  1615. {$ifdef m68k}
  1616. and (CPUM68K_HAS_ROLROR in cpu_capabilities[current_settings.cputype])
  1617. {$endif m68k}
  1618. {$ifndef cpu64bitalu}
  1619. and (ld.typ=orddef) and
  1620. not(torddef(ld).ordtype in [s64bit,u64bit,scurrency])
  1621. {$endif cpu64bitalu}
  1622. then
  1623. begin
  1624. if (left.nodetype=shrn) and (right.nodetype=shln) and
  1625. is_constintnode(tshlshrnode(left).right) and
  1626. is_constintnode(tshlshrnode(right).right) and
  1627. (tordconstnode(tshlshrnode(right).right).value>0) and
  1628. (tordconstnode(tshlshrnode(left).right).value>0) and
  1629. tshlshrnode(left).left.isequal(tshlshrnode(right).left) and
  1630. not(might_have_sideeffects(tshlshrnode(left).left)) then
  1631. begin
  1632. if (tordconstnode(tshlshrnode(left).right).value=
  1633. tshlshrnode(left).left.resultdef.size*8-tordconstnode(tshlshrnode(right).right).value) then
  1634. begin
  1635. result:=cinlinenode.create(in_ror_x_y,false,
  1636. ccallparanode.create(tshlshrnode(left).PruneKeepRight(),
  1637. ccallparanode.create(tshlshrnode(left).PruneKeepLeft(),nil)));
  1638. exit;
  1639. end
  1640. else if (tordconstnode(tshlshrnode(right).right).value=
  1641. tshlshrnode(left).left.resultdef.size*8-tordconstnode(tshlshrnode(left).right).value) then
  1642. begin
  1643. result:=cinlinenode.create(in_rol_x_y,false,
  1644. ccallparanode.create(tshlshrnode(right).PruneKeepRight(),
  1645. ccallparanode.create(tshlshrnode(left).PruneKeepLeft(),nil)));
  1646. exit;
  1647. end;
  1648. end;
  1649. if (left.nodetype=shln) and (right.nodetype=shrn) and
  1650. is_constintnode(tshlshrnode(left).right) and
  1651. is_constintnode(tshlshrnode(right).right) and
  1652. (tordconstnode(tshlshrnode(right).right).value>0) and
  1653. (tordconstnode(tshlshrnode(left).right).value>0) and
  1654. tshlshrnode(left).left.isequal(tshlshrnode(right).left) and
  1655. not(might_have_sideeffects(tshlshrnode(left).left)) then
  1656. begin
  1657. if (tordconstnode(tshlshrnode(left).right).value=
  1658. tshlshrnode(left).left.resultdef.size*8-tordconstnode(tshlshrnode(right).right).value)
  1659. then
  1660. begin
  1661. result:=cinlinenode.create(in_rol_x_y,false,
  1662. ccallparanode.create(tshlshrnode(left).PruneKeepRight(),
  1663. ccallparanode.create(tshlshrnode(left).PruneKeepLeft(),nil)));
  1664. exit;
  1665. end
  1666. else if (tordconstnode(tshlshrnode(right).right).value=
  1667. tshlshrnode(left).left.resultdef.size*8-tordconstnode(tshlshrnode(left).right).value)
  1668. then
  1669. begin
  1670. result:=cinlinenode.create(in_ror_x_y,false,
  1671. ccallparanode.create(tshlshrnode(right).PruneKeepRight(),
  1672. ccallparanode.create(tshlshrnode(left).PruneKeepLeft(),nil)));
  1673. exit;
  1674. end;
  1675. end;
  1676. end;
  1677. {$endif cpurox}
  1678. { optimize
  1679. (a and b) or (c and not(b))
  1680. into
  1681. c xor ((c xor a) and b)
  1682. }
  1683. if (nodetype=orn) and
  1684. (ld.typ=orddef) and
  1685. (left.nodetype=andn) and
  1686. (right.nodetype=andn) and
  1687. (not(is_boolean(resultdef)) or not(might_have_sideeffects(self,[mhs_exceptions])) or not(doshortbooleval(self))) and
  1688. { this test is not needed but it speeds up the test and allows to bail out early }
  1689. ((taddnode(left).left.nodetype=notn) or (taddnode(left).right.nodetype=notn) or
  1690. (taddnode(right).left.nodetype=notn) or (taddnode(right).right.nodetype=notn)
  1691. ) and
  1692. not(might_have_sideeffects(self)) then
  1693. begin
  1694. if MatchAndTransformNodesCommutative(taddnode(left).left,taddnode(left).right,taddnode(right).left,taddnode(right).right,
  1695. @IsAndOrAndNot,@TransformAndOrAndNot,Result) then
  1696. exit;
  1697. end;
  1698. { optimize tests for a single bit:
  1699. (a and one_bit_mask_const) = <> one_bit_mask_const
  1700. into
  1701. (a and one_bit_mask_const) <> = 0
  1702. }
  1703. if (nodetype in [equaln,unequaln]) then
  1704. begin
  1705. if (lt=andn) and (rt=ordconstn) then
  1706. begin
  1707. t:=left;
  1708. cr:=tordconstnode(right).value;
  1709. end
  1710. else
  1711. if (rt=andn) and (lt=ordconstn) then
  1712. begin
  1713. t:=right;
  1714. cr:=tordconstnode(left).value;
  1715. end
  1716. else
  1717. begin
  1718. t:=nil;
  1719. cr:=0;
  1720. end;
  1721. { using cr.uvalue is fine as we are interested only in the bit pattern }
  1722. if (t<>nil) and (PopCnt(cr.uvalue) = 1) then
  1723. begin
  1724. if is_constintnode(taddnode(t).left) then
  1725. vl:=taddnode(t).left
  1726. else
  1727. if is_constintnode(taddnode(t).right) then
  1728. vl:=taddnode(t).right
  1729. else
  1730. vl:=nil;
  1731. if (vl<>nil) and (tordconstnode(vl).value=cr) then
  1732. begin
  1733. if nodetype=equaln then
  1734. nt:=unequaln
  1735. else
  1736. nt:=equaln;
  1737. result:=caddnode.create(nt,t,cordconstnode.create(0,vl.resultdef,false));
  1738. Include(flags, nf_do_not_execute);
  1739. if t=left then
  1740. left:=nil
  1741. else
  1742. right:=nil;
  1743. exit;
  1744. end;
  1745. end;
  1746. end;
  1747. end;
  1748. end;
  1749. function taddnode.dogetcopy: tnode;
  1750. var
  1751. n: taddnode;
  1752. begin
  1753. n:=taddnode(inherited dogetcopy);
  1754. n.resultrealdef:=resultrealdef;
  1755. result:=n;
  1756. end;
  1757. function taddnode.docompare(p: tnode): boolean;
  1758. begin
  1759. result:=
  1760. inherited docompare(p) and
  1761. equal_defs(taddnode(p).resultrealdef,resultrealdef);
  1762. end;
  1763. function taddnode.pass_typecheck:tnode;
  1764. begin
  1765. { This function is small to keep the stack small for recursive of
  1766. large + operations }
  1767. typecheckpass(left);
  1768. typecheckpass(right);
  1769. result:=pass_typecheck_internal;
  1770. end;
  1771. function taddnode.pass_typecheck_internal:tnode;
  1772. var
  1773. hp : tnode;
  1774. rd,ld,nd : tdef;
  1775. hsym : tfieldvarsym;
  1776. llow,lhigh,
  1777. rlow,rhigh : tconstexprint;
  1778. strtype : tstringtype;
  1779. res,
  1780. b : boolean;
  1781. lt,rt : tnodetype;
  1782. ot : tnodetype;
  1783. {$ifdef state_tracking}
  1784. factval : Tnode;
  1785. change : boolean;
  1786. {$endif}
  1787. function maybe_cast_ordconst(var n: tnode; adef: tdef): boolean;
  1788. begin
  1789. result:=(tordconstnode(n).value>=torddef(adef).low) and
  1790. (tordconstnode(n).value<=torddef(adef).high);
  1791. if result then
  1792. inserttypeconv(n,adef);
  1793. end;
  1794. function maybe_convert_to_insert:tnode;
  1795. function element_count(arrconstr: tarrayconstructornode):asizeint;
  1796. begin
  1797. result:=0;
  1798. while assigned(arrconstr) do
  1799. begin
  1800. if arrconstr.nodetype=arrayconstructorrangen then
  1801. internalerror(2018052501);
  1802. inc(result);
  1803. arrconstr:=tarrayconstructornode(tarrayconstructornode(arrconstr).right);
  1804. end;
  1805. end;
  1806. var
  1807. elem : tnode;
  1808. para : tcallparanode;
  1809. isarrconstrl,
  1810. isarrconstrr : boolean;
  1811. index : asizeint;
  1812. begin
  1813. result:=nil;
  1814. isarrconstrl:=left.nodetype=arrayconstructorn;
  1815. isarrconstrr:=right.nodetype=arrayconstructorn;
  1816. if not assigned(aktassignmentnode) or
  1817. (aktassignmentnode.right<>self) or
  1818. not(
  1819. isarrconstrl or
  1820. isarrconstrr
  1821. ) or
  1822. not(
  1823. left.isequal(aktassignmentnode.left) or
  1824. right.isequal(aktassignmentnode.left)
  1825. ) or
  1826. not valid_for_var(aktassignmentnode.left,false) or
  1827. (isarrconstrl and (element_count(tarrayconstructornode(left))>1)) or
  1828. (isarrconstrr and (element_count(tarrayconstructornode(right))>1)) then
  1829. exit;
  1830. if isarrconstrl then
  1831. begin
  1832. index:=0;
  1833. elem:=tarrayconstructornode(left).left;
  1834. tarrayconstructornode(left).left:=nil;
  1835. end
  1836. else
  1837. begin
  1838. index:=high(asizeint);
  1839. elem:=tarrayconstructornode(right).left;
  1840. tarrayconstructornode(right).left:=nil;
  1841. end;
  1842. { we use the fact that insert() caps the index to avoid a copy }
  1843. para:=ccallparanode.create(
  1844. cordconstnode.create(index,sizesinttype,false),
  1845. ccallparanode.create(
  1846. aktassignmentnode.left.getcopy,
  1847. ccallparanode.create(
  1848. elem,nil)));
  1849. result:=cinlinenode.create(in_insert_x_y_z,false,para);
  1850. include(aktassignmentnode.flags,nf_assign_done_in_right);
  1851. end;
  1852. begin
  1853. result:=nil;
  1854. rlow:=0;
  1855. llow:=0;
  1856. rhigh:=0;
  1857. lhigh:=0;
  1858. { avoid any problems with type parameters later on }
  1859. if is_typeparam(left.resultdef) or is_typeparam(right.resultdef) then
  1860. begin
  1861. resultdef:=cundefinedtype;
  1862. exit;
  1863. end;
  1864. { both left and right need to be valid }
  1865. set_varstate(left,vs_read,[vsf_must_be_valid]);
  1866. set_varstate(right,vs_read,[vsf_must_be_valid]);
  1867. if codegenerror then
  1868. exit;
  1869. { tp procvar support. Omit for converted assigned() nodes }
  1870. if not (nf_load_procvar in flags) then
  1871. begin
  1872. maybe_call_procvar(left,true);
  1873. maybe_call_procvar(right,true);
  1874. end
  1875. else
  1876. if not (nodetype in [equaln,unequaln]) then
  1877. InternalError(2013091601);
  1878. { allow operator overloading }
  1879. hp:=self;
  1880. if is_array_constructor(left.resultdef) or is_array_constructor(right.resultdef) then
  1881. begin
  1882. { check whether there is a suitable operator for the array constructor
  1883. (but only if the "+" array operator isn't used), if not fall back to sets }
  1884. if (
  1885. (nodetype<>addn) or
  1886. not (m_array_operators in current_settings.modeswitches) or
  1887. (is_array_constructor(left.resultdef) and not is_dynamic_array(right.resultdef)) or
  1888. (not is_dynamic_array(left.resultdef) and is_array_constructor(right.resultdef))
  1889. ) and
  1890. not isbinaryoverloaded(hp,[ocf_check_only]) then
  1891. begin
  1892. if is_array_constructor(left.resultdef) then
  1893. begin
  1894. arrayconstructor_to_set(left);
  1895. typecheckpass(left);
  1896. end;
  1897. if is_array_constructor(right.resultdef) then
  1898. begin
  1899. arrayconstructor_to_set(right);
  1900. typecheckpass(right);
  1901. end;
  1902. end;
  1903. end;
  1904. if is_dynamic_array(left.resultdef) and is_dynamic_array(right.resultdef) and
  1905. (nodetype=addn) and
  1906. (m_array_operators in current_settings.modeswitches) and
  1907. isbinaryoverloaded(hp,[ocf_check_non_overloadable,ocf_check_only]) then
  1908. message3(parser_w_operator_overloaded_hidden_3,left.resultdef.typename,arraytokeninfo[_PLUS].str,right.resultdef.typename);
  1909. if isbinaryoverloaded(hp,[]) then
  1910. begin
  1911. result:=hp;
  1912. exit;
  1913. end;
  1914. { Stop checking when an error was found in the operator checking }
  1915. if codegenerror then
  1916. begin
  1917. result:=cerrornode.create;
  1918. exit;
  1919. end;
  1920. { Kylix allows enum+ordconstn in an enum type declaration, we need to do
  1921. the conversion here before the constant folding }
  1922. if (m_delphi in current_settings.modeswitches) and
  1923. (blocktype in [bt_type,bt_const_type,bt_var_type]) then
  1924. begin
  1925. if (left.resultdef.typ=enumdef) and
  1926. (right.resultdef.typ=orddef) then
  1927. begin
  1928. { insert explicit typecast to default signed int }
  1929. left:=ctypeconvnode.create_internal(left,sinttype);
  1930. typecheckpass(left);
  1931. end
  1932. else
  1933. if (left.resultdef.typ=orddef) and
  1934. (right.resultdef.typ=enumdef) then
  1935. begin
  1936. { insert explicit typecast to default signed int }
  1937. right:=ctypeconvnode.create_internal(right,sinttype);
  1938. typecheckpass(right);
  1939. end;
  1940. end;
  1941. { is one a real float, then both need to be floats, this
  1942. need to be done before the constant folding so constant
  1943. operation on a float and int are also handled }
  1944. {$ifdef x86}
  1945. { use extended as default real type only when the x87 fpu is used }
  1946. {$if defined(i386) or defined(i8086)}
  1947. if not(current_settings.fputype=fpu_x87) then
  1948. resultrealdef:=s64floattype
  1949. else
  1950. resultrealdef:=pbestrealtype^;
  1951. {$endif i386 or i8086}
  1952. {$ifdef x86_64}
  1953. { x86-64 has no x87 only mode, so use always double as default }
  1954. resultrealdef:=s64floattype;
  1955. {$endif x86_6}
  1956. {$else not x86}
  1957. resultrealdef:=pbestrealtype^;
  1958. {$endif not x86}
  1959. if (right.resultdef.typ=floatdef) or (left.resultdef.typ=floatdef) then
  1960. begin
  1961. { when both floattypes are already equal then use that
  1962. floattype for results }
  1963. if (right.resultdef.typ=floatdef) and
  1964. (left.resultdef.typ=floatdef) and
  1965. (tfloatdef(left.resultdef).floattype=tfloatdef(right.resultdef).floattype) and
  1966. not(tfloatdef(left.resultdef).floattype in [s64comp,s64currency]) then
  1967. begin
  1968. if cs_excessprecision in current_settings.localswitches then
  1969. begin
  1970. resultrealdef:=pbestrealtype^;
  1971. inserttypeconv(right,resultrealdef);
  1972. inserttypeconv(left,resultrealdef);
  1973. end
  1974. else
  1975. resultrealdef:=left.resultdef
  1976. end
  1977. { when there is a currency type then use currency, but
  1978. only when currency is defined as float }
  1979. else
  1980. if (is_currency(right.resultdef) or
  1981. is_currency(left.resultdef)) and
  1982. ((s64currencytype.typ = floatdef) or
  1983. (nodetype <> slashn)) then
  1984. begin
  1985. resultrealdef:=s64currencytype;
  1986. inserttypeconv(right,resultrealdef);
  1987. inserttypeconv(left,resultrealdef);
  1988. end
  1989. else
  1990. begin
  1991. resultrealdef:=getbestreal(left.resultdef,right.resultdef);
  1992. inserttypeconv(right,resultrealdef);
  1993. inserttypeconv(left,resultrealdef);
  1994. end;
  1995. end;
  1996. { If both operands are constant and there is a unicodestring
  1997. or unicodestring then convert everything to unicodestring }
  1998. if is_constnode(right) and is_constnode(left) and
  1999. (is_unicodestring(right.resultdef) or
  2000. is_unicodestring(left.resultdef)) then
  2001. begin
  2002. inserttypeconv(right,cunicodestringtype);
  2003. inserttypeconv(left,cunicodestringtype);
  2004. end;
  2005. { If both operands are constant and there is a widechar
  2006. or widestring then convert everything to widestring. This
  2007. allows constant folding like char+widechar }
  2008. if is_constnode(right) and is_constnode(left) and
  2009. (is_widestring(right.resultdef) or
  2010. is_widestring(left.resultdef) or
  2011. is_widechar(right.resultdef) or
  2012. is_widechar(left.resultdef)) then
  2013. begin
  2014. inserttypeconv(right,cwidestringtype);
  2015. inserttypeconv(left,cwidestringtype);
  2016. end;
  2017. { load easier access variables }
  2018. rd:=right.resultdef;
  2019. ld:=left.resultdef;
  2020. rt:=right.nodetype;
  2021. lt:=left.nodetype;
  2022. { 4 character constant strings are compatible with orddef }
  2023. { in macpas mode (become cardinals) }
  2024. if (m_mac in current_settings.modeswitches) and
  2025. { only allow for comparisons, additions etc are }
  2026. { normally program errors }
  2027. (nodetype in [ltn,lten,gtn,gten,unequaln,equaln]) and
  2028. (((lt=stringconstn) and
  2029. (tstringconstnode(left).len=4) and
  2030. (rd.typ=orddef)) or
  2031. ((rt=stringconstn) and
  2032. (tstringconstnode(right).len=4) and
  2033. (ld.typ=orddef))) then
  2034. begin
  2035. if (rt=stringconstn) then
  2036. begin
  2037. inserttypeconv(right,u32inttype);
  2038. rt:=right.nodetype;
  2039. rd:=right.resultdef;
  2040. end
  2041. else
  2042. begin
  2043. inserttypeconv(left,u32inttype);
  2044. lt:=left.nodetype;
  2045. ld:=left.resultdef;
  2046. end;
  2047. end;
  2048. { but an int/int gives real/real! }
  2049. if (nodetype=slashn) and not(is_vector(left.resultdef)) and not(is_vector(right.resultdef)) then
  2050. begin
  2051. if is_currency(left.resultdef) and
  2052. is_currency(right.resultdef) then
  2053. { In case of currency, converting to float means dividing by 10000 }
  2054. { However, since this is already a division, both divisions by }
  2055. { 10000 are eliminated when we divide the results -> we can skip }
  2056. { them. }
  2057. if s64currencytype.typ = floatdef then
  2058. begin
  2059. { there's no s64comptype or so, how do we avoid the type conversion?
  2060. left.resultdef := s64comptype;
  2061. right.resultdef := s64comptype; }
  2062. end
  2063. else
  2064. begin
  2065. left.resultdef := s64inttype;
  2066. right.resultdef := s64inttype;
  2067. end;
  2068. if current_settings.fputype=fpu_none then
  2069. begin
  2070. Message(parser_e_unsupported_real);
  2071. result:=cerrornode.create;
  2072. exit;
  2073. end
  2074. else
  2075. begin
  2076. inserttypeconv(right,resultrealdef);
  2077. inserttypeconv(left,resultrealdef);
  2078. end;
  2079. end
  2080. { if both are orddefs then check sub types }
  2081. else if (ld.typ=orddef) and (rd.typ=orddef) then
  2082. begin
  2083. { set for & and | operations in macpas mode: they only work on }
  2084. { booleans, and always short circuit evaluation }
  2085. if (nf_short_bool in flags) then
  2086. begin
  2087. if not is_boolean(ld) then
  2088. begin
  2089. inserttypeconv(left,pasbool1type);
  2090. ld := left.resultdef;
  2091. end;
  2092. if not is_boolean(rd) then
  2093. begin
  2094. inserttypeconv(right,pasbool1type);
  2095. rd := right.resultdef;
  2096. end;
  2097. end;
  2098. { 2 booleans? }
  2099. if (is_boolean(ld) and is_boolean(rd)) then
  2100. begin
  2101. case nodetype of
  2102. xorn,
  2103. andn,
  2104. orn:
  2105. begin
  2106. { in case of xor or 'and' with cbool: convert both to Pascal bool and then
  2107. perform the xor/and to prevent issues with "longbool(1) and/xor
  2108. longbool(2)" }
  2109. if (is_cbool(ld) or is_cbool(rd)) and
  2110. (nodetype in [xorn,andn]) then
  2111. begin
  2112. resultdef:=nil;
  2113. if is_cbool(ld) then
  2114. begin
  2115. left:=ctypeconvnode.create(left,pasbool8type);
  2116. ttypeconvnode(left).convtype:=tc_bool_2_bool;
  2117. firstpass(left);
  2118. if not is_cbool(rd) or
  2119. (ld.size>=rd.size) then
  2120. resultdef:=ld;
  2121. end;
  2122. if is_cbool(rd) then
  2123. begin
  2124. right:=ctypeconvnode.Create(right,pasbool8type);
  2125. ttypeconvnode(right).convtype:=tc_bool_2_bool;
  2126. firstpass(right);
  2127. if not assigned(resultdef) then
  2128. resultdef:=rd;
  2129. end;
  2130. result:=ctypeconvnode.create_explicit(caddnode.create(nodetype,left,right),resultdef);
  2131. ttypeconvnode(result).convtype:=tc_bool_2_bool;
  2132. left:=nil;
  2133. right:=nil;
  2134. exit;
  2135. end;
  2136. { Make sides equal to the largest boolean }
  2137. if (torddef(left.resultdef).size>torddef(right.resultdef).size) or
  2138. (is_cbool(left.resultdef) and not is_cbool(right.resultdef)) then
  2139. begin
  2140. right:=ctypeconvnode.create_internal(right,left.resultdef);
  2141. ttypeconvnode(right).convtype:=tc_bool_2_bool;
  2142. typecheckpass(right);
  2143. end
  2144. else if (torddef(left.resultdef).size<torddef(right.resultdef).size) or
  2145. (not is_cbool(left.resultdef) and is_cbool(right.resultdef)) then
  2146. begin
  2147. left:=ctypeconvnode.create_internal(left,right.resultdef);
  2148. ttypeconvnode(left).convtype:=tc_bool_2_bool;
  2149. typecheckpass(left);
  2150. end;
  2151. end;
  2152. ltn,
  2153. lten,
  2154. gtn,
  2155. gten:
  2156. begin
  2157. { convert both to pasbool to perform the comparison (so
  2158. that longbool(4) = longbool(2), since both represent
  2159. "true" }
  2160. inserttypeconv(left,pasbool1type);
  2161. inserttypeconv(right,pasbool1type);
  2162. end;
  2163. unequaln,
  2164. equaln:
  2165. begin
  2166. { Remove any compares with constants }
  2167. if (left.nodetype=ordconstn) then
  2168. begin
  2169. hp:=right;
  2170. b:=(tordconstnode(left).value<>0);
  2171. ot:=nodetype;
  2172. right:=nil;
  2173. if (not(b) and (ot=equaln)) or
  2174. (b and (ot=unequaln)) then
  2175. begin
  2176. hp:=cnotnode.create(hp);
  2177. end;
  2178. result:=hp;
  2179. exit;
  2180. end;
  2181. if (right.nodetype=ordconstn) then
  2182. begin
  2183. hp:=left;
  2184. b:=(tordconstnode(right).value<>0);
  2185. ot:=nodetype;
  2186. left:=nil;
  2187. if (not(b) and (ot=equaln)) or
  2188. (b and (ot=unequaln)) then
  2189. begin
  2190. hp:=cnotnode.create(hp);
  2191. end;
  2192. result:=hp;
  2193. exit;
  2194. end;
  2195. { Delphi-compatibility: convert both to pasbool to
  2196. perform the equality comparison }
  2197. inserttypeconv(left,pasbool1type);
  2198. inserttypeconv(right,pasbool1type);
  2199. end;
  2200. else
  2201. begin
  2202. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  2203. result:=cnothingnode.create;
  2204. exit;
  2205. end;
  2206. end;
  2207. end
  2208. { Both are chars? }
  2209. else if is_char(rd) and is_char(ld) then
  2210. begin
  2211. if nodetype=addn then
  2212. begin
  2213. resultdef:=cshortstringtype;
  2214. if not(is_constcharnode(left) and is_constcharnode(right)) then
  2215. begin
  2216. inserttypeconv(left,cshortstringtype);
  2217. {$ifdef addstringopt}
  2218. hp := genaddsstringcharoptnode(self);
  2219. result := hp;
  2220. exit;
  2221. {$endif addstringopt}
  2222. end
  2223. end
  2224. else if not(nodetype in [ltn,lten,gtn,gten,unequaln,equaln]) then
  2225. begin
  2226. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  2227. result:=cnothingnode.create;
  2228. exit;
  2229. end;
  2230. end
  2231. { There is a widechar? }
  2232. else if is_widechar(rd) or is_widechar(ld) then
  2233. begin
  2234. { widechar+widechar gives unicodestring }
  2235. if nodetype=addn then
  2236. begin
  2237. inserttypeconv(left,cunicodestringtype);
  2238. if (torddef(rd).ordtype<>uwidechar) then
  2239. inserttypeconv(right,cwidechartype);
  2240. resultdef:=cunicodestringtype;
  2241. end
  2242. else
  2243. begin
  2244. if (torddef(ld).ordtype<>uwidechar) then
  2245. inserttypeconv(left,cwidechartype);
  2246. if (torddef(rd).ordtype<>uwidechar) then
  2247. inserttypeconv(right,cwidechartype);
  2248. end;
  2249. end
  2250. { is there a currency type ? }
  2251. else if ((torddef(rd).ordtype=scurrency) or (torddef(ld).ordtype=scurrency)) then
  2252. begin
  2253. if (torddef(ld).ordtype<>scurrency) then
  2254. inserttypeconv(left,s64currencytype);
  2255. if (torddef(rd).ordtype<>scurrency) then
  2256. inserttypeconv(right,s64currencytype);
  2257. end
  2258. { leave some constant integer expressions alone in case the
  2259. resultdef of the integer types doesn't influence the outcome,
  2260. because the forced type conversions below can otherwise result
  2261. in unexpected results (such as high(qword)<high(int64) returning
  2262. true because high(qword) gets converted to int64) }
  2263. else if is_integer(ld) and is_integer(rd) and
  2264. (lt=ordconstn) and (rt=ordconstn) and
  2265. (nodetype in [equaln,unequaln,gtn,gten,ltn,lten]) then
  2266. begin
  2267. end
  2268. { "and" does't care about the sign of integers }
  2269. { "xor", "or" and compares don't need extension to native int }
  2270. { size either as long as both values are signed or unsigned }
  2271. { "xor" and "or" also don't care about the sign if the values }
  2272. { occupy an entire register }
  2273. { don't do it if either type is 64 bit (except for "and"), }
  2274. { since in that case we can't safely find a "common" type }
  2275. else if is_integer(ld) and is_integer(rd) and
  2276. ((nodetype=andn) or
  2277. ((nodetype in [orn,xorn,equaln,unequaln,gtn,gten,ltn,lten]) and
  2278. not is_64bitint(ld) and not is_64bitint(rd) and
  2279. (is_signed(ld)=is_signed(rd)))) then
  2280. begin
  2281. { Delphi-compatible: prefer unsigned type for "and", when the
  2282. unsigned type is bigger than the signed one, and also bigger
  2283. than min(native_int, 32-bit) }
  2284. if (is_oversizedint(rd) or is_nativeint(rd) or is_32bitint(rd)) and
  2285. (rd.size>=ld.size) and
  2286. not is_signed(rd) and is_signed(ld) then
  2287. inserttypeconv_internal(left,rd)
  2288. else if (is_oversizedint(ld) or is_nativeint(ld) or is_32bitint(ld)) and
  2289. (ld.size>=rd.size) and
  2290. not is_signed(ld) and is_signed(rd) then
  2291. inserttypeconv_internal(right,ld)
  2292. else
  2293. begin
  2294. { not to left right.resultdef, because that may
  2295. cause a range error if left and right's def don't
  2296. completely overlap }
  2297. nd:=get_common_intdef(torddef(ld),torddef(rd),true);
  2298. inserttypeconv(left,nd);
  2299. inserttypeconv(right,nd);
  2300. end;
  2301. end
  2302. { don't extend (sign-mismatched) comparisons if either side is a constant
  2303. whose value is within range of opposite side }
  2304. else if is_integer(ld) and is_integer(rd) and
  2305. (nodetype in [equaln,unequaln,gtn,gten,ltn,lten]) and
  2306. (is_signed(ld)<>is_signed(rd)) and
  2307. (
  2308. ((lt=ordconstn) and maybe_cast_ordconst(left,rd)) or
  2309. ((rt=ordconstn) and maybe_cast_ordconst(right,ld))
  2310. ) then
  2311. begin
  2312. { done here }
  2313. end
  2314. { is there a signed 64 bit type ? }
  2315. else if ((torddef(rd).ordtype=s64bit) or (torddef(ld).ordtype=s64bit)) then
  2316. begin
  2317. if (torddef(ld).ordtype<>s64bit) then
  2318. inserttypeconv(left,s64inttype);
  2319. if (torddef(rd).ordtype<>s64bit) then
  2320. inserttypeconv(right,s64inttype);
  2321. end
  2322. { is there a unsigned 64 bit type ? }
  2323. else if ((torddef(rd).ordtype=u64bit) or (torddef(ld).ordtype=u64bit)) then
  2324. begin
  2325. if (torddef(ld).ordtype<>u64bit) then
  2326. inserttypeconv(left,u64inttype);
  2327. if (torddef(rd).ordtype<>u64bit) then
  2328. inserttypeconv(right,u64inttype);
  2329. end
  2330. { is there a larger int? }
  2331. else if is_oversizedint(rd) or is_oversizedint(ld) then
  2332. begin
  2333. nd:=get_common_intdef(torddef(ld),torddef(rd),false);
  2334. inserttypeconv(right,nd);
  2335. inserttypeconv(left,nd);
  2336. end
  2337. { is there a native unsigned int? }
  2338. else if is_nativeuint(rd) or is_nativeuint(ld) then
  2339. begin
  2340. { convert positive constants to uinttype }
  2341. if (not is_nativeuint(ld)) and
  2342. is_constintnode(left) and
  2343. (tordconstnode(left).value >= 0) then
  2344. inserttypeconv(left,uinttype);
  2345. if (not is_nativeuint(rd)) and
  2346. is_constintnode(right) and
  2347. (tordconstnode(right).value >= 0) then
  2348. inserttypeconv(right,uinttype);
  2349. { when one of the operand is signed or the operation is subn then perform
  2350. the operation in a larger signed type, can't use rd/ld here because there
  2351. could be already typeconvs inserted.
  2352. This is compatible with the code below for other unsigned types (PFV) }
  2353. if is_signed(left.resultdef) or
  2354. is_signed(right.resultdef) or
  2355. ((nodetype=subn)
  2356. {$if defined(cpu8bitalu) or defined(cpu16bitalu)}
  2357. and not (m_tp7 in current_settings.modeswitches)
  2358. {$endif}
  2359. ) then
  2360. begin
  2361. if nodetype<>subn then
  2362. CGMessage(type_h_mixed_signed_unsigned);
  2363. { mark as internal in case added for a subn, so }
  2364. { ttypeconvnode.simplify can remove the larger }
  2365. { typecast again if semantically correct. Even }
  2366. { if we could detect that here already, we }
  2367. { mustn't do it here because that would change }
  2368. { overload choosing behaviour etc. The code in }
  2369. { ncnv.pas is run after that is already decided }
  2370. if (not is_signed(left.resultdef) and
  2371. not is_signed(right.resultdef)) or
  2372. (nodetype in [orn,xorn]) then
  2373. include(flags,nf_internal);
  2374. { get next larger signed int type }
  2375. nd:=get_common_intdef(torddef(sinttype),torddef(uinttype),false);
  2376. inserttypeconv(left,nd);
  2377. inserttypeconv(right,nd);
  2378. end
  2379. else
  2380. begin
  2381. if not is_nativeuint(left.resultdef) then
  2382. inserttypeconv(left,uinttype);
  2383. if not is_nativeuint(right.resultdef) then
  2384. inserttypeconv(right,uinttype);
  2385. end;
  2386. end
  2387. { generic ord conversion is sinttype }
  2388. else
  2389. begin
  2390. { When there is a signed type or there is a minus operation
  2391. or in TP mode for 16-bit CPUs
  2392. we convert to signed int. Otherwise (both are unsigned) we keep
  2393. the result also unsigned. This is compatible with Delphi (PFV) }
  2394. if is_signed(ld) or
  2395. is_signed(rd) or
  2396. (([m_iso,m_extpas]*current_settings.modeswitches)<>[]) or
  2397. {$if defined(cpu16bitalu)}
  2398. (m_tp7 in current_settings.modeswitches) or
  2399. {$endif}
  2400. (nodetype=subn) then
  2401. begin
  2402. inserttypeconv(right,sinttype);
  2403. inserttypeconv(left,sinttype);
  2404. end
  2405. else
  2406. begin
  2407. inserttypeconv(right,uinttype);
  2408. inserttypeconv(left,uinttype);
  2409. end;
  2410. end;
  2411. end
  2412. { if both are floatdefs, conversion is already done before constant folding }
  2413. else if (ld.typ=floatdef) then
  2414. begin
  2415. if not(nodetype in [addn,subn,muln,slashn,equaln,unequaln,ltn,lten,gtn,gten]) then
  2416. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  2417. end
  2418. { left side a setdef, must be before string processing,
  2419. else array constructor can be seen as array of char (PFV) }
  2420. else if (ld.typ=setdef) then
  2421. begin
  2422. if not(nodetype in [addn,subn,symdifn,muln,equaln,unequaln,lten,gten]) then
  2423. CGMessage(type_e_set_operation_unknown);
  2424. { right must either be a set or a set element }
  2425. if (rd.typ<>setdef) and
  2426. (rt<>setelementn) then
  2427. CGMessage(type_e_mismatch)
  2428. { Make operands the same setdef. If one's elementtype fits }
  2429. { entirely inside the other's, pick the one with the largest }
  2430. { range. Otherwise create a new setdef with a range which }
  2431. { can contain both. }
  2432. else if not(equal_defs(ld,rd)) then
  2433. begin
  2434. { note: ld cannot be an empty set with elementdef=nil in }
  2435. { case right is not a set, arrayconstructor_to_set takes }
  2436. { care of that }
  2437. { 1: rd is a set with an assigned elementdef, and ld is }
  2438. { either an empty set without elementdef or a set whose }
  2439. { elementdef fits in rd's elementdef -> convert to rd }
  2440. if ((rd.typ=setdef) and
  2441. assigned(tsetdef(rd).elementdef) and
  2442. (not assigned(tsetdef(ld).elementdef) or
  2443. is_in_limit(ld,rd))) then
  2444. inserttypeconv(left,rd)
  2445. { 2: rd is either an empty set without elementdef or a set }
  2446. { whose elementdef fits in ld's elementdef, or a set }
  2447. { element whose def fits in ld's elementdef -> convert }
  2448. { to ld. ld's elementdef can't be nil here, is caught }
  2449. { previous case and "note:" above }
  2450. else if ((rd.typ=setdef) and
  2451. (not assigned(tsetdef(rd).elementdef) or
  2452. is_in_limit(rd,ld))) or
  2453. ((rd.typ<>setdef) and
  2454. is_in_limit(rd,tsetdef(ld).elementdef)) then
  2455. if (rd.typ=setdef) then
  2456. inserttypeconv(right,ld)
  2457. else
  2458. inserttypeconv(right,tsetdef(ld).elementdef)
  2459. { 3: otherwise create setdef which encompasses both, taking }
  2460. { into account empty sets without elementdef }
  2461. else
  2462. begin
  2463. if assigned(tsetdef(ld).elementdef) then
  2464. begin
  2465. llow:=tsetdef(ld).setbase;
  2466. lhigh:=tsetdef(ld).setmax;
  2467. end;
  2468. if (rd.typ=setdef) then
  2469. if assigned(tsetdef(rd).elementdef) then
  2470. begin
  2471. rlow:=tsetdef(rd).setbase;
  2472. rhigh:=tsetdef(rd).setmax;
  2473. end
  2474. else
  2475. begin
  2476. { ld's elementdef must have been valid }
  2477. rlow:=llow;
  2478. rhigh:=lhigh;
  2479. end
  2480. else
  2481. getrange(rd,rlow,rhigh);
  2482. if not assigned(tsetdef(ld).elementdef) then
  2483. begin
  2484. llow:=rlow;
  2485. lhigh:=rhigh;
  2486. end;
  2487. nd:=csetdef.create(tsetdef(ld).elementdef,min(llow,rlow).svalue,max(lhigh,rhigh).svalue,true);
  2488. inserttypeconv(left,nd);
  2489. if (rd.typ=setdef) then
  2490. inserttypeconv(right,nd)
  2491. else
  2492. inserttypeconv(right,tsetdef(nd).elementdef);
  2493. end;
  2494. end;
  2495. end
  2496. { pointer comparision and subtraction }
  2497. else if (
  2498. (rd.typ=pointerdef) and (ld.typ=pointerdef)
  2499. ) or
  2500. { compare/add pchar to variable (not stringconst) char arrays
  2501. by addresses like BP/Delphi }
  2502. (
  2503. (nodetype in [equaln,unequaln,subn,addn]) and
  2504. (
  2505. ((is_pchar(ld) or (lt=niln)) and is_chararray(rd) and (rt<>stringconstn)) or
  2506. ((is_pchar(rd) or (rt=niln)) and is_chararray(ld) and (lt<>stringconstn))
  2507. )
  2508. ) then
  2509. begin
  2510. { convert char array to pointer }
  2511. if is_chararray(rd) then
  2512. begin
  2513. inserttypeconv(right,charpointertype);
  2514. rd:=right.resultdef;
  2515. end
  2516. else if is_chararray(ld) then
  2517. begin
  2518. inserttypeconv(left,charpointertype);
  2519. ld:=left.resultdef;
  2520. end;
  2521. case nodetype of
  2522. equaln,unequaln :
  2523. begin
  2524. if is_voidpointer(right.resultdef) then
  2525. inserttypeconv(right,left.resultdef)
  2526. else if is_voidpointer(left.resultdef) then
  2527. inserttypeconv(left,right.resultdef)
  2528. else if not(equal_defs(ld,rd)) then
  2529. IncompatibleTypes(ld,rd);
  2530. { now that the type checking is done, convert both to charpointer, }
  2531. { because methodpointers are 8 bytes even though only the first 4 }
  2532. { bytes must be compared. This can happen here if we are in }
  2533. { TP/Delphi mode, because there @methodpointer = voidpointer (but }
  2534. { a voidpointer of 8 bytes). A conversion to voidpointer would be }
  2535. { optimized away, since the result already was a voidpointer, so }
  2536. { use a charpointer instead (JM) }
  2537. {$if defined(jvm)}
  2538. inserttypeconv_internal(left,java_jlobject);
  2539. inserttypeconv_internal(right,java_jlobject);
  2540. {$elseif defined(i8086)}
  2541. if is_hugepointer(left.resultdef) then
  2542. inserttypeconv_internal(left,charhugepointertype)
  2543. else if is_farpointer(left.resultdef) then
  2544. inserttypeconv_internal(left,charfarpointertype)
  2545. else
  2546. inserttypeconv_internal(left,charnearpointertype);
  2547. if is_hugepointer(right.resultdef) then
  2548. inserttypeconv_internal(right,charhugepointertype)
  2549. else if is_farpointer(right.resultdef) then
  2550. inserttypeconv_internal(right,charfarpointertype)
  2551. else
  2552. inserttypeconv_internal(right,charnearpointertype);
  2553. {$else}
  2554. inserttypeconv_internal(left,charpointertype);
  2555. inserttypeconv_internal(right,charpointertype);
  2556. {$endif jvm}
  2557. end;
  2558. ltn,lten,gtn,gten:
  2559. begin
  2560. if (cs_extsyntax in current_settings.moduleswitches) or
  2561. (nf_internal in flags) then
  2562. begin
  2563. if is_voidpointer(right.resultdef) then
  2564. inserttypeconv(right,left.resultdef)
  2565. else if is_voidpointer(left.resultdef) then
  2566. inserttypeconv(left,right.resultdef)
  2567. else if not(equal_defs(ld,rd)) then
  2568. IncompatibleTypes(ld,rd);
  2569. end
  2570. else
  2571. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  2572. end;
  2573. subn:
  2574. begin
  2575. if (cs_extsyntax in current_settings.moduleswitches) or
  2576. (nf_internal in flags) then
  2577. begin
  2578. if is_voidpointer(right.resultdef) then
  2579. begin
  2580. if is_big_untyped_addrnode(right) then
  2581. CGMessage1(type_w_untyped_arithmetic_unportable,node2opstr(nodetype));
  2582. inserttypeconv(right,left.resultdef)
  2583. end
  2584. else if is_voidpointer(left.resultdef) then
  2585. inserttypeconv(left,right.resultdef)
  2586. else if not(equal_defs(ld,rd)) then
  2587. IncompatibleTypes(ld,rd);
  2588. end
  2589. else
  2590. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  2591. if not(nf_has_pointerdiv in flags) and
  2592. (tpointerdef(rd).pointeddef.size>1) then
  2593. begin
  2594. hp:=getcopy;
  2595. include(hp.flags,nf_has_pointerdiv);
  2596. result:=cmoddivnode.create(divn,hp,
  2597. cordconstnode.create(tpointerdef(rd).pointeddef.size,tpointerdef(rd).pointer_subtraction_result_type,false));
  2598. end;
  2599. resultdef:=tpointerdef(rd).pointer_subtraction_result_type;
  2600. exit;
  2601. end;
  2602. else
  2603. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  2604. end;
  2605. end
  2606. { is one of the operands a string?,
  2607. chararrays are also handled as strings (after conversion), also take
  2608. care of chararray+chararray and chararray+char.
  2609. Note: Must be done after pointerdef+pointerdef has been checked, else
  2610. pchar is converted to string }
  2611. else if (rd.typ=stringdef) or
  2612. (ld.typ=stringdef) or
  2613. { stringconstn's can be arraydefs }
  2614. (lt=stringconstn) or
  2615. (rt=stringconstn) or
  2616. ((is_pchar(rd) or is_chararray(rd) or is_char(rd) or is_open_chararray(rd) or
  2617. is_pwidechar(rd) or is_widechararray(rd) or is_widechar(rd) or is_open_widechararray(rd)) and
  2618. (is_pchar(ld) or is_chararray(ld) or is_char(ld) or is_open_chararray(ld) or
  2619. is_pwidechar(ld) or is_widechararray(ld) or is_widechar(ld) or is_open_widechararray(ld))) then
  2620. begin
  2621. if (nodetype in [addn,equaln,unequaln,lten,gten,ltn,gtn]) then
  2622. begin
  2623. { Is there a unicodestring? }
  2624. if is_unicodestring(rd) or is_unicodestring(ld) or
  2625. ((m_default_unicodestring in current_settings.modeswitches) and
  2626. (cs_refcountedstrings in current_settings.localswitches) and
  2627. (
  2628. is_pwidechar(rd) or is_widechararray(rd) or is_open_widechararray(rd) or (lt = stringconstn) or
  2629. is_pwidechar(ld) or is_widechararray(ld) or is_open_widechararray(ld) or (rt = stringconstn)
  2630. )
  2631. ) then
  2632. strtype:=st_unicodestring
  2633. else
  2634. { Is there a widestring? }
  2635. if is_widestring(rd) or is_widestring(ld) or
  2636. is_pwidechar(rd) or is_widechararray(rd) or is_widechar(rd) or is_open_widechararray(rd) or
  2637. is_pwidechar(ld) or is_widechararray(ld) or is_widechar(ld) or is_open_widechararray(ld) then
  2638. strtype:=st_widestring
  2639. else
  2640. if is_ansistring(rd) or is_ansistring(ld) or
  2641. ((cs_refcountedstrings in current_settings.localswitches) and
  2642. //todo: Move some of this to longstring's then they are implemented?
  2643. (
  2644. is_pchar(rd) or (is_chararray(rd) and (rd.size > 255)) or is_open_chararray(rd) or (lt = stringconstn) or
  2645. is_pchar(ld) or (is_chararray(ld) and (ld.size > 255)) or is_open_chararray(ld) or (rt = stringconstn)
  2646. )
  2647. ) then
  2648. strtype:=st_ansistring
  2649. else
  2650. if is_longstring(rd) or is_longstring(ld) then
  2651. strtype:=st_longstring
  2652. else
  2653. begin
  2654. { TODO: todo: add a warning/hint here if one converting a too large array}
  2655. { nodes is PChar, array [with size > 255] or OpenArrayOfChar.
  2656. Note: Delphi halts with error if "array [0..xx] of char"
  2657. is assigned to ShortString and string length is less
  2658. then array size }
  2659. strtype:= st_shortstring;
  2660. end;
  2661. // Now convert nodes to common string type
  2662. case strtype of
  2663. st_widestring :
  2664. begin
  2665. if not(is_widestring(rd)) then
  2666. inserttypeconv(right,cwidestringtype);
  2667. if not(is_widestring(ld)) then
  2668. inserttypeconv(left,cwidestringtype);
  2669. end;
  2670. st_unicodestring :
  2671. begin
  2672. if not(is_unicodestring(rd)) then
  2673. if not ((ld.size=0) and (nodetype in [equaln,unequaln])) then
  2674. inserttypeconv(right,cunicodestringtype);
  2675. if not(is_unicodestring(ld)) then
  2676. if not ((rd.size=0) and (nodetype in [equaln,unequaln])) then
  2677. inserttypeconv(left,cunicodestringtype);
  2678. end;
  2679. st_ansistring :
  2680. begin
  2681. { use same code page if possible (don't force same code
  2682. page in case both are ansistrings with code page <>
  2683. CP_NONE, since then data loss can occur: the ansistring
  2684. helpers will convert them at run time to an encoding
  2685. that can represent both encodings) }
  2686. if is_ansistring(ld) and
  2687. (tstringdef(ld).encoding<>0) and
  2688. (tstringdef(ld).encoding<>globals.CP_NONE) and
  2689. (not is_ansistring(rd) or
  2690. (tstringdef(rd).encoding=0) or
  2691. (tstringdef(rd).encoding=globals.CP_NONE)) then
  2692. inserttypeconv(right,ld)
  2693. else if is_ansistring(rd) and
  2694. (tstringdef(rd).encoding<>0) and
  2695. (tstringdef(rd).encoding<>globals.CP_NONE) and
  2696. (not is_ansistring(ld) or
  2697. (tstringdef(ld).encoding=0) or
  2698. (tstringdef(ld).encoding=globals.CP_NONE)) then
  2699. inserttypeconv(left,rd)
  2700. else
  2701. begin
  2702. if not is_ansistring(ld) then
  2703. inserttypeconv(left,getansistringdef);
  2704. if not is_ansistring(rd) then
  2705. inserttypeconv(right,getansistringdef);
  2706. end;
  2707. end;
  2708. st_longstring :
  2709. begin
  2710. if not(is_longstring(rd)) then
  2711. inserttypeconv(right,clongstringtype);
  2712. if not(is_longstring(ld)) then
  2713. inserttypeconv(left,clongstringtype);
  2714. end;
  2715. st_shortstring :
  2716. begin
  2717. if not(is_shortstring(ld)) then
  2718. inserttypeconv(left,cshortstringtype);
  2719. { don't convert char, that can be handled by the optimized node }
  2720. if not(is_shortstring(rd) or is_char(rd)) then
  2721. inserttypeconv(right,cshortstringtype);
  2722. end;
  2723. end;
  2724. end
  2725. else
  2726. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  2727. end
  2728. { implicit pointer object type comparison }
  2729. else if is_implicit_pointer_object_type(rd) or is_implicit_pointer_object_type(ld) then
  2730. begin
  2731. if (nodetype in [equaln,unequaln]) then
  2732. begin
  2733. if is_implicit_pointer_object_type(rd) and is_implicit_pointer_object_type(ld) then
  2734. begin
  2735. if def_is_related(tobjectdef(rd),tobjectdef(ld)) then
  2736. inserttypeconv(right,left.resultdef)
  2737. else
  2738. inserttypeconv(left,right.resultdef);
  2739. end
  2740. else if is_implicit_pointer_object_type(rd) then
  2741. inserttypeconv(left,right.resultdef)
  2742. else
  2743. inserttypeconv(right,left.resultdef);
  2744. end
  2745. else
  2746. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  2747. end
  2748. else if (rd.typ=classrefdef) and (ld.typ=classrefdef) then
  2749. begin
  2750. if (nodetype in [equaln,unequaln]) then
  2751. begin
  2752. if def_is_related(tobjectdef(tclassrefdef(rd).pointeddef),
  2753. tobjectdef(tclassrefdef(ld).pointeddef)) then
  2754. inserttypeconv(right,left.resultdef)
  2755. else
  2756. inserttypeconv(left,right.resultdef);
  2757. end
  2758. else
  2759. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  2760. end
  2761. { allow comparison with nil pointer }
  2762. else if is_implicit_pointer_object_type(rd) or (rd.typ=classrefdef) then
  2763. begin
  2764. if (nodetype in [equaln,unequaln]) then
  2765. inserttypeconv(left,right.resultdef)
  2766. else
  2767. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  2768. end
  2769. else if is_implicit_pointer_object_type(ld) or (ld.typ=classrefdef) then
  2770. begin
  2771. if (nodetype in [equaln,unequaln]) then
  2772. inserttypeconv(right,left.resultdef)
  2773. else
  2774. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  2775. end
  2776. { support procvar=nil,procvar<>nil }
  2777. else if ((ld.typ=procvardef) and (rt=niln)) or
  2778. ((rd.typ=procvardef) and (lt=niln)) then
  2779. begin
  2780. if not(nodetype in [equaln,unequaln]) then
  2781. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  2782. { find proc field in methodpointer record }
  2783. hsym:=tfieldvarsym(trecorddef(methodpointertype).symtable.Find('proc'));
  2784. if not assigned(hsym) then
  2785. internalerror(200412043);
  2786. { For methodpointers compare only tmethodpointer.proc }
  2787. if (rd.typ=procvardef) and
  2788. (not tprocvardef(rd).is_addressonly) then
  2789. begin
  2790. right:=csubscriptnode.create(
  2791. hsym,
  2792. ctypeconvnode.create_internal(right,methodpointertype));
  2793. typecheckpass(right);
  2794. end;
  2795. if (ld.typ=procvardef) and
  2796. (not tprocvardef(ld).is_addressonly) then
  2797. begin
  2798. left:=csubscriptnode.create(
  2799. hsym,
  2800. ctypeconvnode.create_internal(left,methodpointertype));
  2801. typecheckpass(left);
  2802. end;
  2803. if lt=niln then
  2804. inserttypeconv_explicit(left,right.resultdef)
  2805. else
  2806. inserttypeconv_explicit(right,left.resultdef)
  2807. end
  2808. { <dyn. array>+<dyn. array> ? }
  2809. else if (nodetype=addn) and (is_dynamic_array(ld) or is_dynamic_array(rd)) then
  2810. begin
  2811. { empty array to add? }
  2812. if (right.nodetype=arrayconstructorn) and (tarrayconstructornode(right).left=nil) then
  2813. begin
  2814. result:=left;
  2815. left:=nil;
  2816. exit;
  2817. end
  2818. else if (left.nodetype=arrayconstructorn) and (tarrayconstructornode(left).left=nil) then
  2819. begin
  2820. result:=right;
  2821. right:=nil;
  2822. exit;
  2823. end
  2824. else
  2825. begin
  2826. result:=maybe_convert_to_insert;
  2827. if assigned(result) then
  2828. exit;
  2829. if not(is_dynamic_array(ld)) then
  2830. inserttypeconv(left,rd);
  2831. if not(is_dynamic_array(rd)) then
  2832. inserttypeconv(right,ld);
  2833. end;
  2834. end
  2835. { support dynamicarray=nil,dynamicarray<>nil }
  2836. else if (is_dynamic_array(ld) and (rt=niln)) or
  2837. (is_dynamic_array(rd) and (lt=niln)) or
  2838. (is_dynamic_array(ld) and is_dynamic_array(rd)) then
  2839. begin
  2840. if not(nodetype in [equaln,unequaln]) then
  2841. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  2842. if lt=niln then
  2843. inserttypeconv_explicit(left,right.resultdef)
  2844. else
  2845. inserttypeconv_explicit(right,left.resultdef)
  2846. end
  2847. {$ifdef SUPPORT_MMX}
  2848. { mmx support, this must be before the zero based array
  2849. check }
  2850. else if (cs_mmx in current_settings.localswitches) and
  2851. is_mmx_able_array(ld) and
  2852. is_mmx_able_array(rd) and
  2853. equal_defs(ld,rd) then
  2854. begin
  2855. case nodetype of
  2856. addn,subn,xorn,orn,andn:
  2857. ;
  2858. { mul is a little bit restricted }
  2859. muln:
  2860. if not(mmx_type(ld) in [mmxu16bit,mmxs16bit,mmxfixed16]) then
  2861. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  2862. else
  2863. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  2864. end;
  2865. end
  2866. {$endif SUPPORT_MMX}
  2867. { vector support, this must be before the zero based array
  2868. check }
  2869. else if (cs_support_vectors in current_settings.globalswitches) and
  2870. fits_in_mm_register(ld) and
  2871. fits_in_mm_register(rd) and
  2872. equal_defs(ld,rd) then
  2873. begin
  2874. if not(nodetype in [addn,subn,xorn,orn,andn,muln,slashn]) then
  2875. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  2876. { both defs must be equal, so taking left or right as resultdef doesn't matter }
  2877. resultdef:=to_hwvectordef(left.resultdef,false);
  2878. end
  2879. { this is a little bit dangerous, also the left type }
  2880. { pointer to should be checked! This broke the mmx support }
  2881. else if (rd.typ=pointerdef) or
  2882. (is_zero_based_array(rd) and (rt<>stringconstn)) then
  2883. begin
  2884. if is_zero_based_array(rd) then
  2885. begin
  2886. resultdef:=cpointerdef.getreusable(tarraydef(rd).elementdef);
  2887. inserttypeconv(right,resultdef);
  2888. end
  2889. else
  2890. resultdef:=right.resultdef;
  2891. inserttypeconv(left,tpointerdef(right.resultdef).pointer_arithmetic_int_type);
  2892. if nodetype=addn then
  2893. begin
  2894. if (rt=niln) then
  2895. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,'NIL');
  2896. if (not(cs_extsyntax in current_settings.moduleswitches) and not(nf_internal in flags)) or
  2897. (not (is_pchar(ld) or is_chararray(ld) or is_open_chararray(ld) or is_widechar(ld) or is_widechararray(ld) or is_open_widechararray(ld)) and
  2898. not(cs_pointermath in current_settings.localswitches) and
  2899. not((ld.typ=pointerdef) and tpointerdef(ld).has_pointer_math)) then
  2900. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  2901. if (rd.typ=pointerdef) and
  2902. (tpointerdef(rd).pointeddef.size>1) then
  2903. begin
  2904. left:=caddnode.create(muln,left,
  2905. cordconstnode.create(tpointerdef(rd).pointeddef.size,tpointerdef(right.resultdef).pointer_arithmetic_int_type,true));
  2906. typecheckpass(left);
  2907. end;
  2908. end
  2909. else
  2910. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  2911. end
  2912. else if (ld.typ=pointerdef) or
  2913. (is_zero_based_array(ld) and (lt<>stringconstn)) then
  2914. begin
  2915. if is_zero_based_array(ld) then
  2916. begin
  2917. resultdef:=cpointerdef.getreusable(tarraydef(ld).elementdef);
  2918. inserttypeconv(left,resultdef);
  2919. end
  2920. else
  2921. resultdef:=left.resultdef;
  2922. inserttypeconv(right,tpointerdef(left.resultdef).pointer_arithmetic_int_type);
  2923. if nodetype in [addn,subn] then
  2924. begin
  2925. if (lt=niln) then
  2926. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),'NIL',rd.typename);
  2927. if (not(cs_extsyntax in current_settings.moduleswitches) and not(nf_internal in flags)) or
  2928. (not (is_pchar(ld) or is_chararray(ld) or is_open_chararray(ld) or is_widechar(ld) or is_widechararray(ld) or is_open_widechararray(ld)) and
  2929. not(cs_pointermath in current_settings.localswitches) and
  2930. not((ld.typ=pointerdef) and tpointerdef(ld).has_pointer_math)) then
  2931. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  2932. if (ld.typ=pointerdef) then
  2933. begin
  2934. if is_big_untyped_addrnode(left) then
  2935. CGMessage1(type_w_untyped_arithmetic_unportable,node2opstr(nodetype));
  2936. if (tpointerdef(ld).pointeddef.size>1) then
  2937. begin
  2938. right:=caddnode.create(muln,right,
  2939. cordconstnode.create(tpointerdef(ld).pointeddef.size,tpointerdef(left.resultdef).pointer_arithmetic_int_type,true));
  2940. typecheckpass(right);
  2941. end
  2942. end else
  2943. if is_zero_based_array(ld) and
  2944. (tarraydef(ld).elementdef.size>1) then
  2945. begin
  2946. right:=caddnode.create(muln,right,
  2947. cordconstnode.create(tarraydef(ld).elementdef.size,tpointerdef(left.resultdef).pointer_arithmetic_int_type,true));
  2948. typecheckpass(right);
  2949. end;
  2950. end
  2951. else
  2952. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  2953. end
  2954. else if (rd.typ=procvardef) and
  2955. (ld.typ=procvardef) and
  2956. equal_defs(rd,ld) then
  2957. begin
  2958. if (nodetype in [equaln,unequaln]) then
  2959. begin
  2960. if tprocvardef(rd).is_addressonly then
  2961. begin
  2962. inserttypeconv_internal(right,voidcodepointertype);
  2963. inserttypeconv_internal(left,voidcodepointertype);
  2964. end
  2965. else
  2966. begin
  2967. { find proc field in methodpointer record }
  2968. hsym:=tfieldvarsym(trecorddef(methodpointertype).symtable.Find('proc'));
  2969. if not assigned(hsym) then
  2970. internalerror(2004120405);
  2971. { Compare tmehodpointer(left).proc }
  2972. right:=csubscriptnode.create(
  2973. hsym,
  2974. ctypeconvnode.create_internal(right,methodpointertype));
  2975. typecheckpass(right);
  2976. left:=csubscriptnode.create(
  2977. hsym,
  2978. ctypeconvnode.create_internal(left,methodpointertype));
  2979. typecheckpass(left);
  2980. end;
  2981. end
  2982. else
  2983. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  2984. end
  2985. { enums }
  2986. else if (ld.typ=enumdef) and (rd.typ=enumdef) then
  2987. begin
  2988. if allowenumop(nodetype) or (nf_internal in flags) then
  2989. inserttypeconv(right,left.resultdef)
  2990. else
  2991. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),ld.typename,rd.typename);
  2992. end
  2993. { generic conversion, this is for error recovery }
  2994. else
  2995. begin
  2996. inserttypeconv(left,sinttype);
  2997. inserttypeconv(right,sinttype);
  2998. end;
  2999. if cmp_of_disjunct_ranges(res) and not(nf_internal in flags) then
  3000. begin
  3001. if res then
  3002. CGMessage(type_w_comparison_always_true)
  3003. else
  3004. CGMessage(type_w_comparison_always_false);
  3005. end;
  3006. { set resultdef if not already done }
  3007. if not assigned(resultdef) then
  3008. begin
  3009. case nodetype of
  3010. ltn,lten,gtn,gten,equaln,unequaln :
  3011. resultdef:=pasbool1type;
  3012. slashn :
  3013. resultdef:=resultrealdef;
  3014. addn:
  3015. begin
  3016. { for strings, return is always a 255 char string }
  3017. if is_shortstring(left.resultdef) then
  3018. resultdef:=cshortstringtype
  3019. else
  3020. { for ansistrings set resultdef to assignment left node
  3021. if it is an assignment and left node expects ansistring }
  3022. if is_ansistring(left.resultdef) and
  3023. assigned(aktassignmentnode) and
  3024. (aktassignmentnode.right=self) and
  3025. is_ansistring(aktassignmentnode.left.resultdef) then
  3026. resultdef:=aktassignmentnode.left.resultdef
  3027. else
  3028. resultdef:=left.resultdef;
  3029. end;
  3030. else
  3031. resultdef:=left.resultdef;
  3032. end;
  3033. end;
  3034. { when the result is currency we need some extra code for
  3035. multiplication and division. this should not be done when
  3036. the muln or slashn node is created internally }
  3037. if not(nf_is_currency in flags) and
  3038. is_currency(resultdef) then
  3039. begin
  3040. case nodetype of
  3041. slashn :
  3042. begin
  3043. { slashn will only work with floats }
  3044. hp:=caddnode.create(muln,getcopy,crealconstnode.create(10000.0,s64currencytype));
  3045. include(hp.flags,nf_is_currency);
  3046. result:=hp;
  3047. end;
  3048. muln :
  3049. begin
  3050. hp:=nil;
  3051. if s64currencytype.typ=floatdef then
  3052. begin
  3053. { if left is a currency integer constant, we can get rid of the factor 10000 }
  3054. { int64(...) causes a cast on currency, so it is the currency value multiplied by 10000 }
  3055. if (left.nodetype=realconstn) and (is_currency(left.resultdef)) and (not(nf_is_currency in left.flags)) and ((trunc(trealconstnode(left).value_real) mod 10000)=0) then
  3056. begin
  3057. { trealconstnode expects that value_real and value_currency contain valid values }
  3058. {$ifdef FPC_CURRENCY_IS_INT64}
  3059. trealconstnode(left).value_currency:=pint64(@(trealconstnode(left).value_currency))^ div 10000;
  3060. {$else}
  3061. trealconstnode(left).value_currency:=trealconstnode(left).value_currency / 10000;
  3062. {$endif}
  3063. trealconstnode(left).value_real:=trealconstnode(left).value_real/10000;
  3064. end
  3065. { or if right is an integer constant, we can get rid of its factor 10000 }
  3066. else if (right.nodetype=realconstn) and (is_currency(right.resultdef)) and (not(nf_is_currency in right.flags)) and ((trunc(trealconstnode(right).value_real) mod 10000)=0) then
  3067. begin
  3068. { trealconstnode expects that value and value_currency contain valid values }
  3069. {$ifdef FPC_CURRENCY_IS_INT64}
  3070. trealconstnode(right).value_currency:=pint64(@(trealconstnode(right).value_currency))^ div 10000;
  3071. {$else}
  3072. trealconstnode(right).value_currency:=trealconstnode(right).value_currency / 10000;
  3073. {$endif}
  3074. trealconstnode(right).value_real:=trealconstnode(right).value_real/10000;
  3075. end
  3076. else
  3077. begin
  3078. hp:=caddnode.create(slashn,getcopy,crealconstnode.create(10000.0,s64currencytype));
  3079. include(hp.flags,nf_is_currency);
  3080. end;
  3081. end
  3082. else
  3083. begin
  3084. { if left is a currency integer constant, we can get rid of the factor 10000 }
  3085. if (left.nodetype=ordconstn) and (is_currency(left.resultdef)) and ((tordconstnode(left).value mod 10000)=0) then
  3086. tordconstnode(left).value:=tordconstnode(left).value div 10000
  3087. { or if right is an integer constant, we can get rid of its factor 10000 }
  3088. else if (right.nodetype=ordconstn) and (is_currency(right.resultdef)) and ((tordconstnode(right).value mod 10000)=0) then
  3089. tordconstnode(right).value:=tordconstnode(right).value div 10000
  3090. else if (right.nodetype=muln) and is_currency(right.resultdef) and
  3091. { do not test swapped here as the internal conversions are only create as "var."*"10000" }
  3092. is_currency(taddnode(right).right.resultdef) and (taddnode(right).right.nodetype=ordconstn) and (tordconstnode(taddnode(right).right).value=10000) and
  3093. is_currency(taddnode(right).left.resultdef) and (taddnode(right).left.nodetype=typeconvn) then
  3094. begin
  3095. hp:=taddnode(right).left.getcopy;
  3096. include(hp.flags,nf_is_currency);
  3097. right.free;
  3098. right:=hp;
  3099. hp:=nil;
  3100. end
  3101. else if (left.nodetype=muln) and is_currency(left.resultdef) and
  3102. { do not test swapped here as the internal conversions are only create as "var."*"10000" }
  3103. is_currency(taddnode(left).right.resultdef) and (taddnode(left).right.nodetype=ordconstn) and (tordconstnode(taddnode(left).right).value=10000) and
  3104. is_currency(taddnode(left).left.resultdef) and (taddnode(left).left.nodetype=typeconvn) then
  3105. begin
  3106. hp:=taddnode(left).left.getcopy;
  3107. include(hp.flags,nf_is_currency);
  3108. left.free;
  3109. left:=hp;
  3110. hp:=nil;
  3111. end
  3112. else
  3113. begin
  3114. hp:=cmoddivnode.create(divn,getcopy,cordconstnode.create(10000,s64currencytype,false));
  3115. include(hp.flags,nf_is_currency);
  3116. end
  3117. end;
  3118. result:=hp
  3119. end;
  3120. else
  3121. ;
  3122. end;
  3123. end;
  3124. if not(codegenerror) and
  3125. not assigned(result) then
  3126. result:=simplify(false);
  3127. end;
  3128. function taddnode.first_addstring: tnode;
  3129. const
  3130. swap_relation: array [ltn..unequaln] of Tnodetype=(gtn, gten, ltn, lten, equaln, unequaln);
  3131. var
  3132. p: tnode;
  3133. newstatement : tstatementnode;
  3134. tempnode : ttempcreatenode;
  3135. cmpfuncname: string;
  3136. para: tcallparanode;
  3137. begin
  3138. result:=nil;
  3139. { when we get here, we are sure that both the left and the right }
  3140. { node are both strings of the same stringtype (JM) }
  3141. case nodetype of
  3142. addn:
  3143. begin
  3144. if (left.nodetype=stringconstn) and (tstringconstnode(left).len=0) then
  3145. begin
  3146. result:=right;
  3147. left.free;
  3148. left:=nil;
  3149. right:=nil;
  3150. exit;
  3151. end;
  3152. if (right.nodetype=stringconstn) and (tstringconstnode(right).len=0) then
  3153. begin
  3154. result:=left;
  3155. left:=nil;
  3156. right.free;
  3157. right:=nil;
  3158. exit;
  3159. end;
  3160. { create the call to the concat routine both strings as arguments }
  3161. if assigned(aktassignmentnode) and
  3162. (aktassignmentnode.right=self) and
  3163. (
  3164. (aktassignmentnode.left.resultdef=resultdef) or
  3165. (
  3166. is_shortstring(aktassignmentnode.left.resultdef) and
  3167. is_shortstring(resultdef)
  3168. )
  3169. ) and
  3170. valid_for_var(aktassignmentnode.left,false) then
  3171. begin
  3172. para:=ccallparanode.create(
  3173. right,
  3174. ccallparanode.create(
  3175. left,
  3176. ccallparanode.create(aktassignmentnode.left.getcopy,nil)
  3177. )
  3178. );
  3179. if is_ansistring(resultdef) then
  3180. para:=ccallparanode.create(
  3181. cordconstnode.create(
  3182. { don't use getparaencoding(), we have to know
  3183. when the result is rawbytestring }
  3184. tstringdef(resultdef).encoding,
  3185. u16inttype,
  3186. true
  3187. ),
  3188. para
  3189. );
  3190. result:=ccallnode.createintern(
  3191. 'fpc_'+tstringdef(resultdef).stringtypname+'_concat',
  3192. para
  3193. );
  3194. include(aktassignmentnode.flags,nf_assign_done_in_right);
  3195. firstpass(result);
  3196. end
  3197. else
  3198. begin
  3199. result:=internalstatements(newstatement);
  3200. tempnode:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,true);
  3201. addstatement(newstatement,tempnode);
  3202. { initialize the temp, since it will be passed to a
  3203. var-parameter (and finalization, which is performed by the
  3204. ttempcreate node and which takes care of the initialization
  3205. on native targets, is a noop on managed VM targets) }
  3206. if (target_info.system in systems_managed_vm) and
  3207. is_managed_type(resultdef) then
  3208. addstatement(newstatement,cinlinenode.create(in_setlength_x,
  3209. false,
  3210. ccallparanode.create(genintconstnode(0),
  3211. ccallparanode.create(ctemprefnode.create(tempnode),nil))));
  3212. para:=ccallparanode.create(
  3213. right,
  3214. ccallparanode.create(
  3215. left,
  3216. ccallparanode.create(ctemprefnode.create(tempnode),nil)
  3217. )
  3218. );
  3219. if is_ansistring(resultdef) then
  3220. para:=ccallparanode.create(
  3221. cordconstnode.create(
  3222. { don't use getparaencoding(), we have to know
  3223. when the result is rawbytestring }
  3224. tstringdef(resultdef).encoding,
  3225. u16inttype,
  3226. true
  3227. ),
  3228. para
  3229. );
  3230. addstatement(
  3231. newstatement,
  3232. ccallnode.createintern(
  3233. 'fpc_'+tstringdef(resultdef).stringtypname+'_concat',
  3234. para
  3235. )
  3236. );
  3237. addstatement(newstatement,ctempdeletenode.create_normal_temp(tempnode));
  3238. addstatement(newstatement,ctemprefnode.create(tempnode));
  3239. end;
  3240. { we reused the arguments }
  3241. left := nil;
  3242. right := nil;
  3243. end;
  3244. ltn,lten,gtn,gten,equaln,unequaln :
  3245. begin
  3246. { generate better code for comparison with empty string, we
  3247. only need to compare the length with 0 }
  3248. if (nodetype in [equaln,unequaln,gtn,gten,ltn,lten]) and
  3249. (((left.nodetype=stringconstn) and (tstringconstnode(left).len=0)) or
  3250. ((right.nodetype=stringconstn) and (tstringconstnode(right).len=0))) then
  3251. begin
  3252. { switch so that the constant is always on the right }
  3253. if left.nodetype = stringconstn then
  3254. begin
  3255. p := left;
  3256. left := right;
  3257. right := p;
  3258. nodetype:=swap_relation[nodetype];
  3259. end;
  3260. if is_shortstring(left.resultdef) or
  3261. (nodetype in [gtn,gten,ltn,lten]) or
  3262. (target_info.system in systems_managed_vm) then
  3263. { compare the length with 0 }
  3264. result := caddnode.create(nodetype,
  3265. cinlinenode.create(in_length_x,false,left),
  3266. cordconstnode.create(0,s8inttype,false))
  3267. else { nodetype in [equaln,unequaln] }
  3268. begin
  3269. if is_widestring(left.resultdef) and (tf_winlikewidestring in target_info.flags) then
  3270. begin
  3271. { windows like widestrings requires that we also check the length }
  3272. result:=cinlinenode.create(in_length_x,false,left);
  3273. { and compare its result with 0 }
  3274. result:=caddnode.create(equaln,result,cordconstnode.create(0,s8inttype,false));
  3275. if nodetype=unequaln then
  3276. result:=cnotnode.create(result);
  3277. end
  3278. else
  3279. begin
  3280. { compare the pointer with nil (for ansistrings etc), }
  3281. { faster than getting the length (JM) }
  3282. result:= caddnode.create(nodetype,
  3283. ctypeconvnode.create_internal(left,voidpointertype),
  3284. cpointerconstnode.create(0,voidpointertype));
  3285. end;
  3286. end;
  3287. { left is reused }
  3288. left := nil;
  3289. { right isn't }
  3290. right.free;
  3291. right := nil;
  3292. exit;
  3293. end;
  3294. { no string constant -> call compare routine }
  3295. cmpfuncname := 'fpc_'+tstringdef(left.resultdef).stringtypname+'_compare';
  3296. { for equality checks use optimized version }
  3297. if nodetype in [equaln,unequaln] then
  3298. cmpfuncname := cmpfuncname + '_equal';
  3299. result := ccallnode.createintern(cmpfuncname,
  3300. ccallparanode.create(right,ccallparanode.create(left,nil)));
  3301. { and compare its result with 0 according to the original operator }
  3302. result := caddnode.create(nodetype,result,
  3303. cordconstnode.create(0,s8inttype,false));
  3304. left := nil;
  3305. right := nil;
  3306. end;
  3307. else
  3308. internalerror(2019050520);
  3309. end;
  3310. end;
  3311. function taddnode.first_addset : tnode;
  3312. procedure call_varset_helper(const n : string);
  3313. var
  3314. newstatement : tstatementnode;
  3315. temp : ttempcreatenode;
  3316. begin
  3317. { directly load the result set into the assignee if possible }
  3318. if assigned(aktassignmentnode) and
  3319. (aktassignmentnode.right=self) and
  3320. (aktassignmentnode.left.resultdef=resultdef) and
  3321. valid_for_var(aktassignmentnode.left,false) then
  3322. begin
  3323. result:=ccallnode.createintern(n,
  3324. ccallparanode.create(cordconstnode.create(resultdef.size,sinttype,false),
  3325. ccallparanode.create(aktassignmentnode.left.getcopy,
  3326. ccallparanode.create(right,
  3327. ccallparanode.create(left,nil))))
  3328. );
  3329. { remove reused parts from original node }
  3330. left:=nil;
  3331. right:=nil;
  3332. include(aktassignmentnode.flags,nf_assign_done_in_right);
  3333. firstpass(result);
  3334. end
  3335. else
  3336. begin
  3337. { add two var sets }
  3338. result:=internalstatements(newstatement);
  3339. { create temp for result }
  3340. temp:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,true);
  3341. addstatement(newstatement,temp);
  3342. addstatement(newstatement,ccallnode.createintern(n,
  3343. ccallparanode.create(cordconstnode.create(resultdef.size,sinttype,false),
  3344. ccallparanode.create(ctemprefnode.create(temp),
  3345. ccallparanode.create(right,
  3346. ccallparanode.create(left,nil)))))
  3347. );
  3348. { remove reused parts from original node }
  3349. left:=nil;
  3350. right:=nil;
  3351. { the last statement should return the value as
  3352. location and type, this is done be referencing the
  3353. temp and converting it first from a persistent temp to
  3354. normal temp }
  3355. addstatement(newstatement,ctempdeletenode.create_normal_temp(temp));
  3356. addstatement(newstatement,ctemprefnode.create(temp));
  3357. end;
  3358. end;
  3359. var
  3360. procname: string[31];
  3361. tempn: tnode;
  3362. newstatement : tstatementnode;
  3363. temp : ttempcreatenode;
  3364. begin
  3365. result:=nil;
  3366. case nodetype of
  3367. equaln,unequaln,lten,gten:
  3368. begin
  3369. case nodetype of
  3370. equaln,unequaln:
  3371. procname := 'fpc_varset_comp_sets';
  3372. lten,gten:
  3373. begin
  3374. procname := 'fpc_varset_contains_sets';
  3375. { (left >= right) = (right <= left) }
  3376. if nodetype = gten then
  3377. begin
  3378. tempn := left;
  3379. left := right;
  3380. right := tempn;
  3381. end;
  3382. end;
  3383. else
  3384. internalerror(2013112911);
  3385. end;
  3386. result := ccallnode.createinternres(procname,
  3387. ccallparanode.create(cordconstnode.create(left.resultdef.size,sinttype,false),
  3388. ccallparanode.create(right,
  3389. ccallparanode.create(left,nil))),resultdef);
  3390. { left and right are reused as parameters }
  3391. left := nil;
  3392. right := nil;
  3393. { for an unequaln, we have to negate the result of comp_sets }
  3394. if nodetype = unequaln then
  3395. result := cnotnode.create(result);
  3396. end;
  3397. addn:
  3398. begin
  3399. { optimize first loading of a set }
  3400. if (right.nodetype=setelementn) and
  3401. not(assigned(tsetelementnode(right).right)) and
  3402. is_emptyset(left) then
  3403. begin
  3404. result:=internalstatements(newstatement);
  3405. { create temp for result }
  3406. temp:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,true);
  3407. addstatement(newstatement,temp);
  3408. { adjust for set base }
  3409. tsetelementnode(right).left:=caddnode.create(subn,
  3410. ctypeconvnode.create_internal(tsetelementnode(right).left,sinttype),
  3411. cordconstnode.create(tsetdef(resultdef).setbase,sinttype,false));
  3412. addstatement(newstatement,ccallnode.createintern('fpc_varset_create_element',
  3413. ccallparanode.create(ctemprefnode.create(temp),
  3414. ccallparanode.create(cordconstnode.create(resultdef.size,sinttype,false),
  3415. ccallparanode.create(tsetelementnode(right).left,nil))))
  3416. );
  3417. { the last statement should return the value as
  3418. location and type, this is done be referencing the
  3419. temp and converting it first from a persistent temp to
  3420. normal temp }
  3421. addstatement(newstatement,ctempdeletenode.create_normal_temp(temp));
  3422. addstatement(newstatement,ctemprefnode.create(temp));
  3423. tsetelementnode(right).left := nil;
  3424. end
  3425. else
  3426. begin
  3427. if right.nodetype=setelementn then
  3428. begin
  3429. result:=internalstatements(newstatement);
  3430. { create temp for result }
  3431. temp:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,true);
  3432. addstatement(newstatement,temp);
  3433. { adjust for set base }
  3434. tsetelementnode(right).left:=caddnode.create(subn,
  3435. ctypeconvnode.create_internal(tsetelementnode(right).left,sinttype),
  3436. cordconstnode.create(tsetdef(resultdef).setbase,sinttype,false));
  3437. { add a range or a single element? }
  3438. if assigned(tsetelementnode(right).right) then
  3439. begin
  3440. { adjust for set base }
  3441. tsetelementnode(right).right:=caddnode.create(subn,
  3442. ctypeconvnode.create_internal(tsetelementnode(right).right,sinttype),
  3443. cordconstnode.create(tsetdef(resultdef).setbase,sinttype,false));
  3444. addstatement(newstatement,ccallnode.createintern('fpc_varset_set_range',
  3445. ccallparanode.create(cordconstnode.create(resultdef.size,sinttype,false),
  3446. ccallparanode.create(tsetelementnode(right).right,
  3447. ccallparanode.create(tsetelementnode(right).left,
  3448. ccallparanode.create(ctemprefnode.create(temp),
  3449. ccallparanode.create(left,nil))))))
  3450. );
  3451. end
  3452. else
  3453. addstatement(newstatement,ccallnode.createintern('fpc_varset_set',
  3454. ccallparanode.create(cordconstnode.create(resultdef.size,sinttype,false),
  3455. ccallparanode.create(ctypeconvnode.create_internal(tsetelementnode(right).left,sinttype),
  3456. ccallparanode.create(ctemprefnode.create(temp),
  3457. ccallparanode.create(left,nil)))))
  3458. );
  3459. { remove reused parts from original node }
  3460. tsetelementnode(right).right:=nil;
  3461. tsetelementnode(right).left:=nil;
  3462. left:=nil;
  3463. { the last statement should return the value as
  3464. location and type, this is done be referencing the
  3465. temp and converting it first from a persistent temp to
  3466. normal temp }
  3467. addstatement(newstatement,ctempdeletenode.create_normal_temp(temp));
  3468. addstatement(newstatement,ctemprefnode.create(temp));
  3469. end
  3470. else
  3471. call_varset_helper('fpc_varset_add_sets');
  3472. end
  3473. end;
  3474. subn:
  3475. call_varset_helper('fpc_varset_sub_sets');
  3476. symdifn:
  3477. call_varset_helper('fpc_varset_symdif_sets');
  3478. muln:
  3479. call_varset_helper('fpc_varset_mul_sets');
  3480. else
  3481. internalerror(200609241);
  3482. end;
  3483. end;
  3484. function taddnode.first_adddynarray : tnode;
  3485. var
  3486. newstatement : tstatementnode;
  3487. tempnode (*,tempnode2*) : ttempcreatenode;
  3488. para: tcallparanode;
  3489. begin
  3490. result:=nil;
  3491. { when we get here, we are sure that both the left and the right }
  3492. { node are both strings of the same stringtype (JM) }
  3493. case nodetype of
  3494. addn:
  3495. begin
  3496. if (left.nodetype=arrayconstructorn) and (tarrayconstructornode(left).isempty) then
  3497. begin
  3498. result:=right;
  3499. left.free;
  3500. left:=nil;
  3501. right:=nil;
  3502. exit;
  3503. end;
  3504. if (right.nodetype=arrayconstructorn) and (tarrayconstructornode(right).isempty) then
  3505. begin
  3506. result:=left;
  3507. left:=nil;
  3508. right.free;
  3509. right:=nil;
  3510. exit;
  3511. end;
  3512. { create the call to the concat routine both strings as arguments }
  3513. if assigned(aktassignmentnode) and
  3514. (aktassignmentnode.right=self) and
  3515. (aktassignmentnode.left.resultdef=resultdef) and
  3516. valid_for_var(aktassignmentnode.left,false) then
  3517. begin
  3518. para:=ccallparanode.create(
  3519. ctypeconvnode.create_internal(right,voidcodepointertype),
  3520. ccallparanode.create(
  3521. ctypeconvnode.create_internal(left,voidcodepointertype),
  3522. ccallparanode.create(
  3523. caddrnode.create_internal(crttinode.create(tstoreddef(resultdef),initrtti,rdt_normal)),
  3524. ccallparanode.create(
  3525. ctypeconvnode.create_internal(aktassignmentnode.left.getcopy,voidcodepointertype),nil)
  3526. )));
  3527. result:=ccallnode.createintern(
  3528. 'fpc_dynarray_concat',
  3529. para
  3530. );
  3531. include(aktassignmentnode.flags,nf_assign_done_in_right);
  3532. firstpass(result);
  3533. end
  3534. else
  3535. begin
  3536. result:=internalstatements(newstatement);
  3537. tempnode:=ctempcreatenode.create(resultdef,resultdef.size,tt_persistent,true);
  3538. addstatement(newstatement,tempnode);
  3539. { initialize the temp, since it will be passed to a
  3540. var-parameter (and finalization, which is performed by the
  3541. ttempcreate node and which takes care of the initialization
  3542. on native targets, is a noop on managed VM targets) }
  3543. if (target_info.system in systems_managed_vm) and
  3544. is_managed_type(resultdef) then
  3545. addstatement(newstatement,cinlinenode.create(in_setlength_x,
  3546. false,
  3547. ccallparanode.create(genintconstnode(0),
  3548. ccallparanode.create(ctemprefnode.create(tempnode),nil))));
  3549. para:=ccallparanode.create(
  3550. ctypeconvnode.create_internal(right,voidcodepointertype),
  3551. ccallparanode.create(
  3552. ctypeconvnode.create_internal(left,voidcodepointertype),
  3553. ccallparanode.create(
  3554. caddrnode.create_internal(crttinode.create(tstoreddef(resultdef),initrtti,rdt_normal)),
  3555. ccallparanode.create(
  3556. ctypeconvnode.create_internal(ctemprefnode.create(tempnode),voidcodepointertype),nil)
  3557. )));
  3558. addstatement(
  3559. newstatement,
  3560. ccallnode.createintern(
  3561. 'fpc_dynarray_concat',
  3562. para
  3563. )
  3564. );
  3565. addstatement(newstatement,ctempdeletenode.create_normal_temp(tempnode));
  3566. addstatement(newstatement,ctemprefnode.create(tempnode));
  3567. end;
  3568. { we reused the arguments }
  3569. left := nil;
  3570. right := nil;
  3571. end;
  3572. unequaln,equaln:
  3573. { nothing to do }
  3574. ;
  3575. else
  3576. Internalerror(2018030301);
  3577. end;
  3578. end;
  3579. function taddnode.use_generic_mul32to64: boolean;
  3580. begin
  3581. result := true;
  3582. end;
  3583. function taddnode.use_generic_mul64bit: boolean;
  3584. begin
  3585. result := true;
  3586. end;
  3587. function taddnode.try_make_mul32to64: boolean;
  3588. function canbe32bitint(v: tconstexprint; out canbesignedconst, canbeunsignedconst: boolean): boolean;
  3589. begin
  3590. result := ((v >= int64(low(longint))) and (v <= int64(high(longint)))) or
  3591. ((v >= qword(low(cardinal))) and (v <= qword(high(cardinal))));
  3592. canbesignedconst:=v<=int64(high(longint));
  3593. canbeunsignedconst:=v>=0;
  3594. end;
  3595. function is_32bitordconst(n: tnode; out canbesignedconst, canbeunsignedconst: boolean): boolean;
  3596. begin
  3597. canbesignedconst:=false;
  3598. canbeunsignedconst:=false;
  3599. result := (n.nodetype = ordconstn) and
  3600. canbe32bitint(tordconstnode(n).value, canbesignedconst, canbeunsignedconst);
  3601. end;
  3602. function is_32to64typeconv(n: tnode): boolean;
  3603. begin
  3604. result := (n.nodetype = typeconvn) and
  3605. is_integer(ttypeconvnode(n).left.resultdef) and
  3606. not is_64bit(ttypeconvnode(n).left.resultdef);
  3607. end;
  3608. var
  3609. temp: tnode;
  3610. leftoriginallysigned,
  3611. canbesignedconst, canbeunsignedconst, swapped: boolean;
  3612. begin
  3613. result := false;
  3614. swapped := false;
  3615. { make sure that if there is a constant, that it's on the right }
  3616. if left.nodetype = ordconstn then
  3617. begin
  3618. swapleftright;
  3619. swapped := true;
  3620. end;
  3621. if is_32to64typeconv(left) then
  3622. begin
  3623. leftoriginallysigned:=is_signed(ttypeconvnode(left).left.resultdef);
  3624. if ((is_32bitordconst(right,canbesignedconst, canbeunsignedconst) and
  3625. ((leftoriginallysigned and canbesignedconst) or
  3626. (not leftoriginallysigned and canbeunsignedconst))) or
  3627. (is_32to64typeconv(right) and
  3628. ((leftoriginallysigned =
  3629. is_signed(ttypeconvnode(right).left.resultdef)) or
  3630. (leftoriginallysigned and
  3631. (torddef(ttypeconvnode(right).left.resultdef).ordtype in [u8bit,u16bit]))))) then
  3632. begin
  3633. temp := ttypeconvnode(left).left;
  3634. ttypeconvnode(left).left := nil;
  3635. left.free;
  3636. left := temp;
  3637. if (right.nodetype = typeconvn) then
  3638. begin
  3639. temp := ttypeconvnode(right).left;
  3640. ttypeconvnode(right).left := nil;
  3641. right.free;
  3642. right := temp;
  3643. end;
  3644. if (is_signed(left.resultdef)) then
  3645. begin
  3646. inserttypeconv_internal(left,s32inttype);
  3647. inserttypeconv_internal(right,s32inttype);
  3648. end
  3649. else
  3650. begin
  3651. inserttypeconv_internal(left,u32inttype);
  3652. inserttypeconv_internal(right,u32inttype);
  3653. end;
  3654. firstpass(left);
  3655. firstpass(right);
  3656. result := true;
  3657. end;
  3658. end;
  3659. { pass_Typecheck caches left/right type and resultdef, so restore the
  3660. original order }
  3661. if not result and swapped then
  3662. swapleftright;
  3663. end;
  3664. function taddnode.use_fma : boolean;
  3665. begin
  3666. result:=false;
  3667. end;
  3668. function taddnode.try_fma(ld,rd : tdef) : tnode;
  3669. var
  3670. inlinennr : tinlinenumber;
  3671. begin
  3672. result:=nil;
  3673. if (cs_opt_fastmath in current_settings.optimizerswitches) and
  3674. use_fma and
  3675. (nodetype in [addn,subn]) and
  3676. (rd.typ=floatdef) and (ld.typ=floatdef) and
  3677. (is_single(rd) or is_double(rd)) and
  3678. equal_defs(rd,ld) and
  3679. { transforming a*b+c into fma(a,b,c) makes only sense if c can be
  3680. calculated easily. Consider a*b+c*d which results in
  3681. fmul
  3682. fmul
  3683. fadd
  3684. and in
  3685. fmul
  3686. fma
  3687. when using the fma optimization. On a super scalar architecture, the first instruction
  3688. sequence requires clock_cycles(fmul)+clock_cycles(fadd) clock cycles because the fmuls can be executed in parallel.
  3689. The second sequence requires clock_cycles(fmul)+clock_cycles(fma) because the fma has to wait for the
  3690. result of the fmul. Since typically clock_cycles(fma)>clock_cycles(fadd) applies, the first sequence is better.
  3691. }
  3692. (((left.nodetype=muln) and (node_complexity(right)<3)) or
  3693. ((right.nodetype=muln) and (node_complexity(left)<3)) or
  3694. ((left.nodetype=inlinen) and
  3695. (tinlinenode(left).inlinenumber=in_sqr_real) and
  3696. (node_complexity(right)<3)) or
  3697. ((right.nodetype=inlinen) and
  3698. (tinlinenode(right).inlinenumber=in_sqr_real) and
  3699. (node_complexity(left)<3))
  3700. ) then
  3701. begin
  3702. case tfloatdef(ld).floattype of
  3703. s32real:
  3704. inlinennr:=in_fma_single;
  3705. s64real:
  3706. inlinennr:=in_fma_double;
  3707. s80real:
  3708. inlinennr:=in_fma_extended;
  3709. s128real:
  3710. inlinennr:=in_fma_float128;
  3711. else
  3712. internalerror(2014042601);
  3713. end;
  3714. if left.nodetype=muln then
  3715. begin
  3716. if nodetype=subn then
  3717. result:=cinlinenode.create(inlinennr,false,ccallparanode.create(cunaryminusnode.create(right),
  3718. ccallparanode.create(taddnode(left).right,
  3719. ccallparanode.create(taddnode(left).left,nil
  3720. ))))
  3721. else
  3722. result:=cinlinenode.create(inlinennr,false,ccallparanode.create(right,
  3723. ccallparanode.create(taddnode(left).right,
  3724. ccallparanode.create(taddnode(left).left,nil
  3725. ))));
  3726. right:=nil;
  3727. taddnode(left).right:=nil;
  3728. taddnode(left).left:=nil;
  3729. end
  3730. else if right.nodetype=muln then
  3731. begin
  3732. if nodetype=subn then
  3733. result:=cinlinenode.create(inlinennr,false,ccallparanode.create(left,
  3734. ccallparanode.create(cunaryminusnode.create(taddnode(right).right),
  3735. ccallparanode.create(taddnode(right).left,nil
  3736. ))))
  3737. else
  3738. result:=cinlinenode.create(inlinennr,false,ccallparanode.create(left,
  3739. ccallparanode.create(taddnode(right).right,
  3740. ccallparanode.create(taddnode(right).left,nil
  3741. ))));
  3742. left:=nil;
  3743. taddnode(right).right:=nil;
  3744. taddnode(right).left:=nil;
  3745. end
  3746. else if (left.nodetype=inlinen) and (tinlinenode(left).inlinenumber=in_sqr_real) then
  3747. begin
  3748. if node_complexity(tinlinenode(left).left)=0 then
  3749. begin
  3750. if nodetype=subn then
  3751. result:=cinlinenode.create(inlinennr,false,ccallparanode.create(cunaryminusnode.create(right),
  3752. ccallparanode.create(tinlinenode(left).left.getcopy,
  3753. ccallparanode.create(tinlinenode(left).left.getcopy,nil
  3754. ))))
  3755. else
  3756. result:=cinlinenode.create(inlinennr,false,ccallparanode.create(right,
  3757. ccallparanode.create(tinlinenode(left).left.getcopy,
  3758. ccallparanode.create(tinlinenode(left).left.getcopy,nil
  3759. ))));
  3760. right:=nil;
  3761. end;
  3762. end
  3763. { we get here only if right is a sqr node }
  3764. else if (right.nodetype=inlinen) and (tinlinenode(right).inlinenumber=in_sqr_real) then
  3765. begin
  3766. if node_complexity(tinlinenode(right).left)=0 then
  3767. begin
  3768. if nodetype=subn then
  3769. result:=cinlinenode.create(inlinennr,false,ccallparanode.create(left,
  3770. ccallparanode.create(cunaryminusnode.create(tinlinenode(right).left.getcopy),
  3771. ccallparanode.create(tinlinenode(right).left.getcopy,nil
  3772. ))))
  3773. else
  3774. result:=cinlinenode.create(inlinennr,false,ccallparanode.create(left,
  3775. ccallparanode.create(tinlinenode(right).left.getcopy,
  3776. ccallparanode.create(tinlinenode(right).left.getcopy,nil
  3777. ))));
  3778. left:=nil;
  3779. end;
  3780. end;
  3781. end;
  3782. end;
  3783. function taddnode.first_add64bitint: tnode;
  3784. var
  3785. procname: string[31];
  3786. power: longint;
  3787. begin
  3788. result := nil;
  3789. { create helper calls mul }
  3790. if nodetype <> muln then
  3791. exit;
  3792. { make sure that if there is a constant, that it's on the right }
  3793. if left.nodetype = ordconstn then
  3794. swapleftright;
  3795. { can we use a shift instead of a mul? }
  3796. if not (cs_check_overflow in current_settings.localswitches) and
  3797. (right.nodetype = ordconstn) and
  3798. ispowerof2(tordconstnode(right).value,power) then
  3799. begin
  3800. tordconstnode(right).value := power;
  3801. result := cshlshrnode.create(shln,left,right);
  3802. { left and right are reused }
  3803. left := nil;
  3804. right := nil;
  3805. { return firstpassed new node }
  3806. exit;
  3807. end;
  3808. if try_make_mul32to64 then
  3809. begin
  3810. { this uses the same criteria for signedness as the 32 to 64-bit mul
  3811. handling in the i386 code generator }
  3812. if is_signed(left.resultdef) and is_signed(right.resultdef) then
  3813. procname := 'fpc_mul_longint_to_int64'
  3814. else
  3815. procname := 'fpc_mul_dword_to_qword';
  3816. right := ccallparanode.create(right,ccallparanode.create(left,nil));
  3817. result := ccallnode.createintern(procname,right);
  3818. left := nil;
  3819. right := nil;
  3820. end
  3821. else
  3822. begin
  3823. { can full 64-bit multiplication be handled inline? }
  3824. if not use_generic_mul64bit then
  3825. begin
  3826. { generic handling replaces this node with call to fpc_mul_int64,
  3827. whose result is int64 }
  3828. if is_currency(resultdef) then
  3829. resultdef:=s64inttype;
  3830. exit;
  3831. end;
  3832. { when currency is used set the result of the
  3833. parameters to s64bit, so they are not converted }
  3834. if is_currency(resultdef) then
  3835. begin
  3836. left.resultdef:=s64inttype;
  3837. right.resultdef:=s64inttype;
  3838. end;
  3839. { otherwise, create the parameters for the helper }
  3840. right := ccallparanode.create(right,ccallparanode.create(left,nil));
  3841. left := nil;
  3842. { only qword needs the unsigned code, the
  3843. signed code is also used for currency }
  3844. if is_signed(resultdef) then
  3845. procname := 'fpc_mul_int64'
  3846. else
  3847. procname := 'fpc_mul_qword';
  3848. if cs_check_overflow in current_settings.localswitches then
  3849. procname := procname + '_checkoverflow';
  3850. result := ccallnode.createintern(procname,right);
  3851. right := nil;
  3852. end;
  3853. end;
  3854. function taddnode.first_addpointer: tnode;
  3855. begin
  3856. result:=nil;
  3857. expectloc:=LOC_REGISTER;
  3858. end;
  3859. function taddnode.first_cmppointer: tnode;
  3860. begin
  3861. result:=nil;
  3862. expectloc:=LOC_FLAGS;
  3863. end;
  3864. function taddnode.first_addfloat_soft : tnode;
  3865. var
  3866. procname: string[31];
  3867. { do we need to reverse the result ? }
  3868. notnode : boolean;
  3869. fdef : tdef;
  3870. begin
  3871. notnode:=false;
  3872. result:=nil;
  3873. fdef:=nil;
  3874. if not(target_info.system in systems_wince) then
  3875. begin
  3876. case tfloatdef(left.resultdef).floattype of
  3877. s32real:
  3878. begin
  3879. fdef:=search_system_type('FLOAT32REC').typedef;
  3880. procname:='float32';
  3881. end;
  3882. s64real:
  3883. begin
  3884. fdef:=search_system_type('FLOAT64').typedef;
  3885. procname:='float64';
  3886. end;
  3887. {!!! not yet implemented
  3888. s128real:
  3889. }
  3890. else
  3891. internalerror(2005082601);
  3892. end;
  3893. case nodetype of
  3894. addn:
  3895. procname:=procname+'_add';
  3896. muln:
  3897. procname:=procname+'_mul';
  3898. subn:
  3899. procname:=procname+'_sub';
  3900. slashn:
  3901. procname:=procname+'_div';
  3902. ltn:
  3903. procname:=procname+'_lt';
  3904. lten:
  3905. procname:=procname+'_le';
  3906. gtn:
  3907. begin
  3908. procname:=procname+'_lt';
  3909. swapleftright;
  3910. end;
  3911. gten:
  3912. begin
  3913. procname:=procname+'_le';
  3914. swapleftright;
  3915. end;
  3916. equaln:
  3917. procname:=procname+'_eq';
  3918. unequaln:
  3919. begin
  3920. procname:=procname+'_eq';
  3921. notnode:=true;
  3922. end;
  3923. else
  3924. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),left.resultdef.typename,right.resultdef.typename);
  3925. end;
  3926. end
  3927. else
  3928. begin
  3929. case nodetype of
  3930. addn:
  3931. procname:='add';
  3932. muln:
  3933. procname:='mul';
  3934. subn:
  3935. procname:='sub';
  3936. slashn:
  3937. procname:='div';
  3938. ltn:
  3939. procname:='lt';
  3940. lten:
  3941. procname:='le';
  3942. gtn:
  3943. procname:='gt';
  3944. gten:
  3945. procname:='ge';
  3946. equaln:
  3947. procname:='eq';
  3948. unequaln:
  3949. procname:='ne';
  3950. else
  3951. begin
  3952. CGMessage3(type_e_operator_not_supported_for_types,node2opstr(nodetype),left.resultdef.typename,right.resultdef.typename);
  3953. exit;
  3954. end;
  3955. end;
  3956. case tfloatdef(left.resultdef).floattype of
  3957. s32real:
  3958. begin
  3959. procname:=procname+'s';
  3960. if nodetype in [addn,muln,subn,slashn] then
  3961. procname:=lower(procname);
  3962. end;
  3963. s64real:
  3964. procname:=procname+'d';
  3965. {!!! not yet implemented
  3966. s128real:
  3967. }
  3968. else
  3969. internalerror(2005082602);
  3970. end;
  3971. end;
  3972. { cast softfpu result? }
  3973. if not(target_info.system in systems_wince) then
  3974. begin
  3975. if nodetype in [ltn,lten,gtn,gten,equaln,unequaln] then
  3976. resultdef:=pasbool1type;
  3977. result:=ctypeconvnode.create_internal(ccallnode.createintern(procname,ccallparanode.create(
  3978. ctypeconvnode.create_internal(right,fdef),
  3979. ccallparanode.create(
  3980. ctypeconvnode.create_internal(left,fdef),nil))),resultdef);
  3981. end
  3982. else
  3983. result:=ccallnode.createintern(procname,ccallparanode.create(right,
  3984. ccallparanode.create(left,nil)));
  3985. left:=nil;
  3986. right:=nil;
  3987. { do we need to reverse the result }
  3988. if notnode then
  3989. result:=cnotnode.create(result);
  3990. end;
  3991. function taddnode.first_addfloat : tnode;
  3992. begin
  3993. result := nil;
  3994. { In non-emulation mode, real opcodes are
  3995. emitted for floating point values.
  3996. }
  3997. if not ((cs_fp_emulation in current_settings.moduleswitches)
  3998. {$ifdef cpufpemu}
  3999. or (current_settings.fputype=fpu_soft)
  4000. {$endif cpufpemu}
  4001. ) then
  4002. exit;
  4003. result:=first_addfloat_soft
  4004. end;
  4005. {$ifdef cpuneedsmulhelper}
  4006. function taddnode.use_mul_helper: boolean;
  4007. begin
  4008. result:=(nodetype=muln) and
  4009. not(torddef(resultdef).ordtype in [u8bit,s8bit
  4010. {$if defined(cpu16bitalu) or defined(avr)},u16bit,s16bit{$endif}]);
  4011. end;
  4012. {$endif cpuneedsmulhelper}
  4013. function taddnode.pass_1 : tnode;
  4014. function isconstsetfewelements(p : tnode) : boolean;
  4015. begin
  4016. result:=(p.nodetype=setconstn) and (tsetconstnode(p).elements<=4);
  4017. end;
  4018. var
  4019. {$ifdef addstringopt}
  4020. hp : tnode;
  4021. {$endif addstringopt}
  4022. rd,ld : tdef;
  4023. i,i2 : longint;
  4024. lt,rt : tnodetype;
  4025. {$ifdef cpuneedsmulhelper}
  4026. procname : string[32];
  4027. {$endif cpuneedsmulhelper}
  4028. tempn,varsetnode: tnode;
  4029. mulnode : taddnode;
  4030. constsetnode : tsetconstnode;
  4031. trycreateinnodes : Boolean;
  4032. begin
  4033. result:=nil;
  4034. { Can we optimize multiple string additions into a single call?
  4035. This need to be done on a complete tree to detect the multiple
  4036. add nodes and is therefor done before the subtrees are processed }
  4037. if canbemultistringadd(self) then
  4038. begin
  4039. result:=genmultistringadd(self);
  4040. exit;
  4041. end;
  4042. { Can we optimize multiple dyn. array additions into a single call?
  4043. This need to be done on a complete tree to detect the multiple
  4044. add nodes and is therefor done before the subtrees are processed }
  4045. if (m_array_operators in current_settings.modeswitches) and canbemultidynarrayadd(self) then
  4046. begin
  4047. result:=genmultidynarrayadd(self);
  4048. exit;
  4049. end;
  4050. { typical set tests like (s*[const. set])<>/=[] can be converted into an or'ed chain of in tests
  4051. for var sets if const. set contains only a few elements }
  4052. if (cs_opt_level1 in current_settings.optimizerswitches) and (nodetype in [unequaln,equaln]) and (left.resultdef.typ=setdef) and not(is_smallset(left.resultdef)) then
  4053. begin
  4054. trycreateinnodes:=false;
  4055. mulnode:=nil;
  4056. if (is_emptyset(right) and (left.nodetype=muln) and
  4057. (isconstsetfewelements(taddnode(left).right) or isconstsetfewelements(taddnode(left).left))) then
  4058. begin
  4059. trycreateinnodes:=true;
  4060. mulnode:=taddnode(left);
  4061. end
  4062. else if (is_emptyset(left) and (right.nodetype=muln) and
  4063. (isconstsetfewelements(taddnode(right).right) or isconstsetfewelements(taddnode(right).left))) then
  4064. begin
  4065. trycreateinnodes:=true;
  4066. mulnode:=taddnode(right);
  4067. end;
  4068. if trycreateinnodes then
  4069. begin
  4070. constsetnode:=nil;
  4071. varsetnode:=nil;
  4072. if isconstsetfewelements(mulnode.right) then
  4073. begin
  4074. constsetnode:=tsetconstnode(mulnode.right);
  4075. varsetnode:=mulnode.left;
  4076. end
  4077. else
  4078. begin
  4079. constsetnode:=tsetconstnode(mulnode.left);
  4080. varsetnode:=mulnode.right;
  4081. end;
  4082. { the node is copied so it might have no side effects, if the complexity is too, cse should fix it, so
  4083. do not check complexity }
  4084. if not(might_have_sideeffects(varsetnode)) then
  4085. begin
  4086. result:=nil;
  4087. for i:=low(tconstset) to high(tconstset) do
  4088. if i in constsetnode.value_set^ then
  4089. begin
  4090. tempn:=cinnode.create(cordconstnode.create(i,tsetdef(constsetnode.resultdef).elementdef,false),varsetnode.getcopy);
  4091. if assigned(result) then
  4092. result:=caddnode.create_internal(orn,result,tempn)
  4093. else
  4094. result:=tempn;
  4095. end;
  4096. if nodetype=equaln then
  4097. result:=cnotnode.create(result);
  4098. exit;
  4099. end;
  4100. end;
  4101. end;
  4102. { first do the two subtrees }
  4103. firstpass(left);
  4104. firstpass(right);
  4105. if codegenerror then
  4106. exit;
  4107. { load easier access variables }
  4108. rd:=right.resultdef;
  4109. ld:=left.resultdef;
  4110. rt:=right.nodetype;
  4111. lt:=left.nodetype;
  4112. { int/int gives real/real! }
  4113. if nodetype=slashn then
  4114. begin
  4115. {$ifdef cpufpemu}
  4116. result:=first_addfloat;
  4117. if assigned(result) then
  4118. exit;
  4119. {$endif cpufpemu}
  4120. expectloc:=LOC_FPUREGISTER;
  4121. end
  4122. { if both are orddefs then check sub types }
  4123. else if (ld.typ=orddef) and (rd.typ=orddef) then
  4124. begin
  4125. { optimize multiplacation by a power of 2 }
  4126. if not(cs_check_overflow in current_settings.localswitches) and
  4127. (nodetype = muln) and
  4128. (((left.nodetype = ordconstn) and
  4129. ispowerof2(tordconstnode(left).value,i)) or
  4130. ((right.nodetype = ordconstn) and
  4131. ispowerof2(tordconstnode(right).value,i2))) then
  4132. begin
  4133. { it could be that we are converting a 32x32 -> 64 multiplication:
  4134. in this case, we have to restore the type conversion }
  4135. inserttypeconv_internal(left,resultdef);
  4136. inserttypeconv_internal(right,resultdef);
  4137. if ((left.nodetype = ordconstn) and
  4138. ispowerof2(tordconstnode(left).value,i)) then
  4139. begin
  4140. tordconstnode(left).value := i;
  4141. result := cshlshrnode.create(shln,right,left);
  4142. end
  4143. else
  4144. begin
  4145. tordconstnode(right).value := i2;
  4146. result := cshlshrnode.create(shln,left,right);
  4147. end;
  4148. result.resultdef := resultdef;
  4149. left := nil;
  4150. right := nil;
  4151. exit;
  4152. end;
  4153. { 2 booleans ? }
  4154. if is_boolean(ld) and is_boolean(rd) then
  4155. begin
  4156. if doshortbooleval(self) then
  4157. expectloc:=LOC_JUMP
  4158. else
  4159. begin
  4160. if nodetype in [ltn,lten,gtn,gten,equaln,unequaln] then
  4161. expectloc:=LOC_FLAGS
  4162. else
  4163. expectloc:=LOC_REGISTER;
  4164. end;
  4165. end
  4166. else
  4167. { Both are chars? only convert to shortstrings for addn }
  4168. if is_char(ld) then
  4169. begin
  4170. if nodetype=addn then
  4171. internalerror(200103291);
  4172. expectloc:=LOC_FLAGS;
  4173. end
  4174. else if (nodetype=muln) and
  4175. is_64bitint(resultdef) and
  4176. not use_generic_mul32to64 and
  4177. try_make_mul32to64 then
  4178. begin
  4179. { if the code generator can handle 32 to 64-bit muls,
  4180. we're done here }
  4181. expectloc:=LOC_REGISTER;
  4182. end
  4183. {$if not defined(cpu64bitalu) and not defined(cpuhighleveltarget)}
  4184. { is there a 64 bit type ? }
  4185. else if (torddef(ld).ordtype in [s64bit,u64bit,scurrency]) then
  4186. begin
  4187. result := first_add64bitint;
  4188. if assigned(result) then
  4189. exit;
  4190. if nodetype in [addn,subn,muln,andn,orn,xorn] then
  4191. expectloc:=LOC_REGISTER
  4192. else
  4193. expectloc:=LOC_JUMP;
  4194. end
  4195. {$elseif defined(llvm) and defined(cpu32bitalu)}
  4196. { llvm does not support 128 bit math on 32 bit targets, which is
  4197. necessary for overflow checking 64 bit operations }
  4198. else if (torddef(ld).ordtype in [s64bit,u64bit,scurrency]) and
  4199. (cs_check_overflow in current_settings.localswitches) and
  4200. (nodetype in [addn,subn,muln]) then
  4201. begin
  4202. result := first_add64bitint;
  4203. if assigned(result) then
  4204. exit;
  4205. if nodetype in [addn,subn,muln,andn,orn,xorn] then
  4206. expectloc:=LOC_REGISTER
  4207. else
  4208. expectloc:=LOC_JUMP;
  4209. end
  4210. {$endif not(cpu64bitalu) and not(cpuhighleveltarget)}
  4211. { generic 32bit conversion }
  4212. else
  4213. begin
  4214. {$ifdef cpuneedsmulhelper}
  4215. if use_mul_helper then
  4216. begin
  4217. result := nil;
  4218. case torddef(resultdef).ordtype of
  4219. s8bit:
  4220. procname := 'fpc_mul_shortint';
  4221. u8bit:
  4222. procname := 'fpc_mul_byte';
  4223. s16bit:
  4224. procname := 'fpc_mul_integer';
  4225. u16bit:
  4226. procname := 'fpc_mul_word';
  4227. s32bit:
  4228. procname := 'fpc_mul_longint';
  4229. u32bit:
  4230. procname := 'fpc_mul_dword';
  4231. else
  4232. internalerror(2011022301);
  4233. end;
  4234. if cs_check_overflow in current_settings.localswitches then
  4235. procname:=procname+'_checkoverflow';
  4236. result := ccallnode.createintern(procname,
  4237. ccallparanode.create(right,
  4238. ccallparanode.create(left,nil)));
  4239. left := nil;
  4240. right := nil;
  4241. firstpass(result);
  4242. exit;
  4243. end;
  4244. {$endif cpuneedsmulhelper}
  4245. if nodetype in [addn,subn,muln,andn,orn,xorn] then
  4246. expectloc:=LOC_REGISTER
  4247. {$if not defined(cpuhighleveltarget)}
  4248. else if torddef(ld).size>sizeof(aint) then
  4249. expectloc:=LOC_JUMP
  4250. {$endif}
  4251. else
  4252. expectloc:=LOC_FLAGS;
  4253. end;
  4254. end
  4255. { left side a setdef, must be before string processing,
  4256. else array constructor can be seen as array of char (PFV) }
  4257. else if (ld.typ=setdef) then
  4258. begin
  4259. { small sets are handled inline by the compiler.
  4260. small set doesn't have support for adding ranges }
  4261. if is_smallset(ld) and
  4262. not(
  4263. (right.nodetype=setelementn) and
  4264. assigned(tsetelementnode(right).right)
  4265. ) then
  4266. begin
  4267. if nodetype in [ltn,lten,gtn,gten,equaln,unequaln] then
  4268. expectloc:=LOC_FLAGS
  4269. else
  4270. expectloc:=LOC_REGISTER;
  4271. end
  4272. else
  4273. begin
  4274. result := first_addset;
  4275. if assigned(result) then
  4276. exit;
  4277. expectloc:=LOC_CREFERENCE;
  4278. end;
  4279. end
  4280. { compare pchar by addresses like BP/Delphi }
  4281. else if is_pchar(ld) then
  4282. begin
  4283. if nodetype in [addn,subn,muln,andn,orn,xorn] then
  4284. result:=first_addpointer
  4285. else
  4286. result:=first_cmppointer;
  4287. end
  4288. { is one of the operands a string }
  4289. else if (ld.typ=stringdef) then
  4290. begin
  4291. if is_widestring(ld) then
  4292. begin
  4293. { this is only for add, the comparison is handled later }
  4294. expectloc:=LOC_REGISTER;
  4295. end
  4296. else if is_unicodestring(ld) then
  4297. begin
  4298. { this is only for add, the comparison is handled later }
  4299. expectloc:=LOC_REGISTER;
  4300. end
  4301. else if is_ansistring(ld) then
  4302. begin
  4303. { this is only for add, the comparison is handled later }
  4304. expectloc:=LOC_REGISTER;
  4305. end
  4306. else if is_longstring(ld) then
  4307. begin
  4308. { this is only for add, the comparison is handled later }
  4309. expectloc:=LOC_REFERENCE;
  4310. end
  4311. else
  4312. begin
  4313. {$ifdef addstringopt}
  4314. { can create a call which isn't handled by callparatemp }
  4315. if canbeaddsstringcharoptnode(self) then
  4316. begin
  4317. hp := genaddsstringcharoptnode(self);
  4318. pass_1 := hp;
  4319. exit;
  4320. end
  4321. else
  4322. {$endif addstringopt}
  4323. begin
  4324. { Fix right to be shortstring }
  4325. if is_char(right.resultdef) then
  4326. begin
  4327. inserttypeconv(right,cshortstringtype);
  4328. firstpass(right);
  4329. end;
  4330. end;
  4331. {$ifdef addstringopt}
  4332. { can create a call which isn't handled by callparatemp }
  4333. if canbeaddsstringcsstringoptnode(self) then
  4334. begin
  4335. hp := genaddsstringcsstringoptnode(self);
  4336. pass_1 := hp;
  4337. exit;
  4338. end;
  4339. {$endif addstringopt}
  4340. end;
  4341. { otherwise, let addstring convert everything }
  4342. result := first_addstring;
  4343. exit;
  4344. end
  4345. { is one a real float ? }
  4346. else if (rd.typ=floatdef) or (ld.typ=floatdef) then
  4347. begin
  4348. {$ifdef cpufpemu}
  4349. result:=first_addfloat;
  4350. if assigned(result) then
  4351. exit;
  4352. {$endif cpufpemu}
  4353. if nodetype in [addn,subn,muln,andn,orn,xorn] then
  4354. expectloc:=LOC_FPUREGISTER
  4355. else
  4356. expectloc:=LOC_FLAGS;
  4357. result:=try_fma(ld,rd);
  4358. if assigned(result) then
  4359. exit;
  4360. end
  4361. { pointer comperation and subtraction }
  4362. else if (ld.typ=pointerdef) then
  4363. begin
  4364. if nodetype in [addn,subn,muln,andn,orn,xorn] then
  4365. result:=first_addpointer
  4366. else
  4367. result:=first_cmppointer;
  4368. end
  4369. else if is_implicit_pointer_object_type(ld) then
  4370. begin
  4371. if ld.size>sizeof(aint) then
  4372. expectloc:=LOC_JUMP
  4373. else
  4374. expectloc:=LOC_FLAGS;
  4375. end
  4376. else if (ld.typ=classrefdef) then
  4377. begin
  4378. if ld.size>sizeof(aint) then
  4379. expectloc:=LOC_JUMP
  4380. else
  4381. expectloc:=LOC_FLAGS;
  4382. end
  4383. { support procvar=nil,procvar<>nil }
  4384. else if ((ld.typ=procvardef) and (rt=niln)) or
  4385. ((rd.typ=procvardef) and (lt=niln)) then
  4386. begin
  4387. if (ld.typ=procvardef) and (tprocvardef(ld).size>sizeof(aint)) or
  4388. (rd.typ=procvardef) and (tprocvardef(rd).size>sizeof(aint)) then
  4389. expectloc:=LOC_JUMP
  4390. else
  4391. expectloc:=LOC_FLAGS;
  4392. end
  4393. {$ifdef SUPPORT_MMX}
  4394. { mmx support, this must be before the zero based array
  4395. check }
  4396. else if (cs_mmx in current_settings.localswitches) and is_mmx_able_array(ld) and
  4397. is_mmx_able_array(rd) then
  4398. begin
  4399. expectloc:=LOC_MMXREGISTER;
  4400. end
  4401. {$endif SUPPORT_MMX}
  4402. else if (rd.typ=pointerdef) or (ld.typ=pointerdef) then
  4403. begin
  4404. result:=first_addpointer;
  4405. end
  4406. else if (rd.typ=procvardef) and
  4407. (ld.typ=procvardef) and
  4408. equal_defs(rd,ld) then
  4409. begin
  4410. if tprocvardef(ld).size>sizeof(aint) then
  4411. expectloc:=LOC_JUMP
  4412. else
  4413. expectloc:=LOC_FLAGS;
  4414. end
  4415. else if (ld.typ=enumdef) then
  4416. begin
  4417. if tenumdef(ld).size>sizeof(aint) then
  4418. expectloc:=LOC_JUMP
  4419. else
  4420. expectloc:=LOC_FLAGS;
  4421. end
  4422. {$ifdef SUPPORT_MMX}
  4423. else if (cs_mmx in current_settings.localswitches) and
  4424. is_mmx_able_array(ld) and
  4425. is_mmx_able_array(rd) then
  4426. begin
  4427. expectloc:=LOC_MMXREGISTER;
  4428. end
  4429. {$endif SUPPORT_MMX}
  4430. else if is_dynamic_array(ld) or is_dynamic_array(rd) then
  4431. begin
  4432. result:=first_adddynarray;
  4433. exit;
  4434. end
  4435. { the general solution is to convert to 32 bit int }
  4436. else
  4437. begin
  4438. expectloc:=LOC_REGISTER;
  4439. end;
  4440. end;
  4441. {$ifdef state_tracking}
  4442. function Taddnode.track_state_pass(exec_known:boolean):boolean;
  4443. var factval:Tnode;
  4444. begin
  4445. track_state_pass:=false;
  4446. if left.track_state_pass(exec_known) then
  4447. begin
  4448. track_state_pass:=true;
  4449. left.resultdef:=nil;
  4450. do_typecheckpass(left);
  4451. end;
  4452. factval:=aktstate.find_fact(left);
  4453. if factval<>nil then
  4454. begin
  4455. track_state_pass:=true;
  4456. left.destroy;
  4457. left:=factval.getcopy;
  4458. end;
  4459. if right.track_state_pass(exec_known) then
  4460. begin
  4461. track_state_pass:=true;
  4462. right.resultdef:=nil;
  4463. do_typecheckpass(right);
  4464. end;
  4465. factval:=aktstate.find_fact(right);
  4466. if factval<>nil then
  4467. begin
  4468. track_state_pass:=true;
  4469. right.destroy;
  4470. right:=factval.getcopy;
  4471. end;
  4472. end;
  4473. {$endif}
  4474. end.