nadd.pas 193 KB

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