ninl.pas 209 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343
  1. {
  2. Copyright (c) 1998-2007 by Florian Klaempfl
  3. Type checking and register allocation for inline 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 ninl;
  18. {$i fpcdefs.inc}
  19. interface
  20. uses
  21. node,htypechk,symtype,compinnr;
  22. type
  23. tinlinenode = class(tunarynode)
  24. inlinenumber : tinlinenumber;
  25. constructor create(number : tinlinenumber;is_const:boolean;l : tnode);virtual;
  26. constructor createintern(number : tinlinenumber;is_const:boolean;l : tnode);virtual;
  27. constructor ppuload(t:tnodetype;ppufile:tcompilerppufile);override;
  28. procedure ppuwrite(ppufile:tcompilerppufile);override;
  29. function dogetcopy : tnode;override;
  30. procedure printnodeinfo(var t : text);override;
  31. function pass_1 : tnode;override;
  32. function pass_typecheck:tnode;override;
  33. function pass_typecheck_cpu:tnode;virtual;
  34. function simplify(forinline : boolean): tnode;override;
  35. function docompare(p: tnode): boolean; override;
  36. procedure mark_write;override;
  37. { returns a node tree where the inc/dec are replaced by add/sub }
  38. function getaddsub_for_incdec : tnode;
  39. { pack and unpack are changed into for-loops by the compiler }
  40. function first_pack_unpack: tnode; virtual;
  41. property parameters : tnode read left write left;
  42. protected
  43. { All the following routines currently
  44. call compilerprocs, unless they are
  45. overridden in which case, the code
  46. generator handles them.
  47. }
  48. function first_pi: tnode ; virtual;
  49. function first_arctan_real: tnode; virtual;
  50. function first_abs_real: tnode; virtual;
  51. function first_sqr_real: tnode; virtual;
  52. function first_sqrt_real: tnode; virtual;
  53. function first_ln_real: tnode; virtual;
  54. function first_cos_real: tnode; virtual;
  55. function first_sin_real: tnode; virtual;
  56. function first_exp_real: tnode; virtual;
  57. function first_frac_real: tnode; virtual;
  58. function first_round_real: tnode; virtual;
  59. function first_trunc_real: tnode; virtual;
  60. function first_int_real: tnode; virtual;
  61. function first_abs_long: tnode; virtual;
  62. function first_IncDec: tnode; virtual;
  63. function first_IncludeExclude: tnode; virtual;
  64. function first_get_frame: tnode; virtual;
  65. function first_setlength: tnode; virtual;
  66. function first_copy: tnode; virtual;
  67. { This one by default generates an internal error, because such
  68. nodes are not generated by the parser. It's however used internally
  69. by the JVM backend to create new dynamic arrays. }
  70. function first_new: tnode; virtual;
  71. function first_length: tnode; virtual;
  72. function first_box: tnode; virtual; abstract;
  73. function first_unbox: tnode; virtual; abstract;
  74. function first_assigned: tnode; virtual;
  75. function first_assert: tnode; virtual;
  76. function first_popcnt: tnode; virtual;
  77. { override these for Seg() support }
  78. function typecheck_seg: tnode; virtual;
  79. function first_seg: tnode; virtual;
  80. function first_sar: tnode; virtual;
  81. function first_fma : tnode; virtual;
  82. {$if not defined(cpu64bitalu) and not defined(cpuhighleveltarget)}
  83. function first_ShiftRot_assign_64bitint: tnode; virtual;
  84. {$endif not cpu64bitalu and not cpuhighleveltarget}
  85. function first_AndOrXorShiftRot_assign: tnode; virtual;
  86. function first_NegNot_assign: tnode; virtual;
  87. function first_cpu : tnode; virtual;
  88. procedure CheckParameters(count : integer);
  89. private
  90. function handle_str: tnode;
  91. function handle_reset_rewrite_typed: tnode;
  92. function handle_text_read_write(filepara,params:Ttertiarynode;var newstatement:Tnode):boolean;
  93. function handle_typed_read_write(filepara,params:Ttertiarynode;var newstatement:Tnode):boolean;
  94. function handle_read_write: tnode;
  95. function handle_val: tnode;
  96. function handle_default: tnode;
  97. function handle_setlength: tnode;
  98. function handle_copy: tnode;
  99. function handle_box: tnode;
  100. function handle_unbox: tnode;
  101. function handle_insert:tnode;
  102. function handle_delete:tnode;
  103. function handle_concat:tnode;
  104. end;
  105. tinlinenodeclass = class of tinlinenode;
  106. var
  107. cinlinenode : tinlinenodeclass = tinlinenode;
  108. function geninlinenode(number : tinlinenumber;is_const:boolean;l : tnode) : tinlinenode;
  109. implementation
  110. uses
  111. verbose,globals,systems,constexp,
  112. globtype,cutils,cclasses,fmodule,
  113. symconst,symdef,symsym,symcpu,symtable,paramgr,defcmp,defutil,symbase,
  114. cpuinfo,
  115. pass_1,
  116. ncal,ncon,ncnv,nadd,nld,nbas,nflw,nmem,nmat,nutils,
  117. nobjc,objcdef,
  118. cgbase,procinfo;
  119. function geninlinenode(number : tinlinenumber;is_const:boolean;l : tnode) : tinlinenode;
  120. begin
  121. geninlinenode:=cinlinenode.create(number,is_const,l);
  122. end;
  123. {*****************************************************************************
  124. TINLINENODE
  125. *****************************************************************************}
  126. constructor tinlinenode.create(number : tinlinenumber;is_const:boolean;l : tnode);
  127. begin
  128. inherited create(inlinen,l);
  129. if is_const then
  130. include(flags,nf_inlineconst);
  131. inlinenumber:=number;
  132. end;
  133. constructor tinlinenode.createintern(number : tinlinenumber; is_const : boolean;
  134. l : tnode);
  135. begin
  136. create(number,is_const,l);
  137. include(flags,nf_internal);
  138. end;
  139. constructor tinlinenode.ppuload(t:tnodetype;ppufile:tcompilerppufile);
  140. begin
  141. inherited ppuload(t,ppufile);
  142. inlinenumber:=tinlinenumber(ppufile.getlongint);
  143. end;
  144. procedure tinlinenode.ppuwrite(ppufile:tcompilerppufile);
  145. begin
  146. inherited ppuwrite(ppufile);
  147. ppufile.putlongint(longint(inlinenumber));
  148. end;
  149. function tinlinenode.dogetcopy : tnode;
  150. var
  151. n : tinlinenode;
  152. begin
  153. n:=tinlinenode(inherited dogetcopy);
  154. n.inlinenumber:=inlinenumber;
  155. result:=n;
  156. end;
  157. procedure tinlinenode.printnodeinfo(var t : text);
  158. begin
  159. inherited;
  160. write(t,', inlinenumber = ',inlinenumber);
  161. end;
  162. function get_str_int_func(def: tdef): string;
  163. var
  164. ordtype: tordtype;
  165. begin
  166. ordtype := torddef(def).ordtype;
  167. if not (ordtype in [scurrency,s64bit,u64bit,s32bit,u32bit,s16bit,u16bit,s8bit,u8bit]) then
  168. internalerror(2013032603);
  169. if is_oversizedord(def) then
  170. begin
  171. case ordtype of
  172. scurrency,
  173. s64bit: exit('int64');
  174. u64bit: exit('qword');
  175. s32bit: exit('longint');
  176. u32bit: exit('longword');
  177. s16bit: exit('smallint');
  178. u16bit: exit('word');
  179. else
  180. internalerror(2013032604);
  181. end;
  182. end
  183. else
  184. begin
  185. if is_nativeuint(def) then
  186. exit('uint')
  187. else
  188. exit('sint');
  189. end;
  190. internalerror(2013032605);
  191. end;
  192. function tinlinenode.handle_str : tnode;
  193. var
  194. lenpara,
  195. fracpara,
  196. newparas,
  197. tmppara,
  198. dest,
  199. source : tcallparanode;
  200. procname: string;
  201. is_real,is_enum : boolean;
  202. rt : aint;
  203. begin
  204. result := cerrornode.create;
  205. { get destination string }
  206. dest := tcallparanode(left);
  207. { get source para (number) }
  208. source := dest;
  209. while assigned(source.right) do
  210. source := tcallparanode(source.right);
  211. { destination parameter must be a normal (not a colon) parameter, this
  212. check is needed because str(v:len) also has 2 parameters }
  213. if (source=dest) or
  214. (cpf_is_colon_para in tcallparanode(dest).callparaflags) then
  215. begin
  216. CGMessage1(parser_e_wrong_parameter_size,'Str');
  217. exit;
  218. end;
  219. { in case we are in a generic definition, we cannot
  220. do all checks, the parameters might be type parameters }
  221. if df_generic in current_procinfo.procdef.defoptions then
  222. begin
  223. result.Free;
  224. result:=nil;
  225. resultdef:=voidtype;
  226. exit;
  227. end;
  228. is_real:=(source.resultdef.typ = floatdef) or is_currency(source.resultdef);
  229. is_enum:=source.left.resultdef.typ=enumdef;
  230. if ((dest.left.resultdef.typ<>stringdef) and
  231. not(is_chararray(dest.left.resultdef))) or
  232. not(is_real or is_enum or
  233. (source.left.resultdef.typ=orddef)) then
  234. begin
  235. CGMessagePos(fileinfo,parser_e_illegal_expression);
  236. exit;
  237. end;
  238. { get len/frac parameters }
  239. lenpara := nil;
  240. fracpara := nil;
  241. if (cpf_is_colon_para in tcallparanode(dest.right).callparaflags) then
  242. begin
  243. lenpara := tcallparanode(dest.right);
  244. { we can let the callnode do the type checking of these parameters too, }
  245. { but then the error messages aren't as nice }
  246. if not is_integer(lenpara.resultdef) then
  247. begin
  248. CGMessagePos1(lenpara.fileinfo,
  249. type_e_integer_expr_expected,lenpara.resultdef.typename);
  250. exit;
  251. end;
  252. if (cpf_is_colon_para in tcallparanode(lenpara.right).callparaflags) then
  253. begin
  254. { parameters are in reverse order! }
  255. fracpara := lenpara;
  256. lenpara := tcallparanode(lenpara.right);
  257. if not is_real then
  258. begin
  259. CGMessagePos(lenpara.fileinfo,parser_e_illegal_colon_qualifier);
  260. exit
  261. end;
  262. if not is_integer(lenpara.resultdef) then
  263. begin
  264. CGMessagePos1(lenpara.fileinfo,
  265. type_e_integer_expr_expected,lenpara.resultdef.typename);
  266. exit;
  267. end;
  268. end;
  269. end;
  270. { generate the parameter list for the compilerproc }
  271. newparas := dest;
  272. { if we have a float parameter, insert the realtype, len and fracpara parameters }
  273. if is_real then
  274. begin
  275. { insert realtype parameter }
  276. if not is_currency(source.resultdef) then
  277. begin
  278. rt:=ord(tfloatdef(source.left.resultdef).floattype);
  279. newparas.right := ccallparanode.create(cordconstnode.create(
  280. rt,s32inttype,true),newparas.right);
  281. tmppara:=tcallparanode(newparas.right);
  282. end
  283. else
  284. tmppara:=newparas;
  285. { if necessary, insert a fraction parameter }
  286. if not assigned(fracpara) then
  287. begin
  288. tmppara.right := ccallparanode.create(
  289. cordconstnode.create(int64(-1),s32inttype,false),
  290. tmppara.right);
  291. fracpara := tcallparanode(tmppara.right);
  292. end;
  293. { if necessary, insert a length para }
  294. if not assigned(lenpara) then
  295. fracpara.right := ccallparanode.create(
  296. cordconstnode.create(int64(-32767),s32inttype,false),
  297. fracpara.right);
  298. end
  299. else if is_enum then
  300. begin
  301. {Insert a reference to the ord2string index.}
  302. newparas.right:=Ccallparanode.create(
  303. Caddrnode.create_internal(
  304. Crttinode.create(Tenumdef(source.left.resultdef),fullrtti,rdt_normal)
  305. ),
  306. newparas.right);
  307. {Insert a reference to the typinfo.}
  308. newparas.right:=Ccallparanode.create(
  309. Caddrnode.create_internal(
  310. Crttinode.create(Tenumdef(source.left.resultdef),fullrtti,rdt_ord2str)
  311. ),
  312. newparas.right);
  313. {Insert a type conversion from the enumeration to longint.}
  314. source.left:=Ctypeconvnode.create_internal(source.left,s32inttype);
  315. typecheckpass(source.left);
  316. { if necessary, insert a length para }
  317. if not assigned(lenpara) then
  318. Tcallparanode(Tcallparanode(newparas.right).right).right:=
  319. Ccallparanode.create(
  320. cordconstnode.create(int64(-1),s32inttype,false),
  321. Tcallparanode(Tcallparanode(newparas.right).right).right
  322. );
  323. end
  324. else
  325. { for a normal parameter, insert a only length parameter if one is missing }
  326. if not assigned(lenpara) then
  327. newparas.right := ccallparanode.create(cordconstnode.create(int64(-1),s32inttype,false),
  328. newparas.right);
  329. { remove the parameters from the original node so they won't get disposed, }
  330. { since they're reused }
  331. left := nil;
  332. { create procedure name }
  333. if is_chararray(dest.resultdef) then
  334. procname:='fpc_chararray_'
  335. else
  336. procname := 'fpc_' + tstringdef(dest.resultdef).stringtypname+'_';
  337. if is_real then
  338. if is_currency(source.resultdef) then
  339. procname := procname + 'currency'
  340. else
  341. procname := procname + 'float'
  342. else if is_enum then
  343. procname:=procname+'enum'
  344. else
  345. case torddef(source.resultdef).ordtype of
  346. pasbool1,pasbool8,pasbool16,pasbool32,pasbool64,
  347. bool8bit,bool16bit,bool32bit,bool64bit:
  348. procname := procname + 'bool';
  349. else
  350. procname := procname + get_str_int_func(source.resultdef);
  351. end;
  352. { for ansistrings insert the encoding argument }
  353. if is_ansistring(dest.resultdef) then
  354. newparas:=ccallparanode.create(cordconstnode.create(
  355. getparaencoding(dest.resultdef),u16inttype,true),newparas);
  356. { free the errornode we generated in the beginning }
  357. result.free;
  358. { create the call node, }
  359. result := ccallnode.createintern(procname,newparas);
  360. end;
  361. function tinlinenode.handle_default: tnode;
  362. function getdefaultvarsym(def:tdef):tnode;
  363. var
  364. hashedid : thashedidstring;
  365. srsym : tsym;
  366. srsymtable : tsymtable;
  367. defaultname : tidstring;
  368. begin
  369. if not assigned(def) or
  370. not (def.typ in [arraydef,recorddef,variantdef,objectdef,procvardef]) or
  371. ((def.typ=objectdef) and not is_object(def)) then
  372. internalerror(201202101);
  373. { extra '$' prefix because on darwin the result of makemangledname
  374. is prefixed by '_' and hence adding a '$' at the start of the
  375. prefix passed to makemangledname doesn't help (the whole point of
  376. the copy() operation below is to ensure that the id does not start
  377. with a '$', because that is interpreted specially by the symtable
  378. routines -- that's also why we prefix with '$_', so it will still
  379. work if make_mangledname() would somehow return a name that already
  380. starts with '$' }
  381. defaultname:='$_'+make_mangledname('zero',def.owner,def.typesym.Name);
  382. { can't hardcode the position of the '$', e.g. on darwin an underscore
  383. is added }
  384. hashedid.id:=copy(defaultname,2,255);
  385. { the default sym is always part of the current procedure/function }
  386. srsymtable:=current_procinfo.procdef.localst;
  387. srsym:=tsym(srsymtable.findwithhash(hashedid));
  388. if not assigned(srsym) then
  389. begin
  390. { no valid default variable found, so create it }
  391. srsym:=clocalvarsym.create(defaultname,vs_const,def,[],true);
  392. srsymtable.insert(srsym);
  393. { mark the staticvarsym as typedconst }
  394. include(tabstractvarsym(srsym).varoptions,vo_is_typed_const);
  395. include(tabstractvarsym(srsym).varoptions,vo_is_default_var);
  396. { The variable has a value assigned }
  397. tabstractvarsym(srsym).varstate:=vs_initialised;
  398. { the variable can't be placed in a register }
  399. tabstractvarsym(srsym).varregable:=vr_none;
  400. end;
  401. result:=cloadnode.create(srsym,srsymtable);
  402. end;
  403. var
  404. def : tdef;
  405. begin
  406. if not assigned(left) or (left.nodetype<>typen) then
  407. internalerror(2012032101);
  408. def:=ttypenode(left).typedef;
  409. result:=nil;
  410. case def.typ of
  411. enumdef,
  412. orddef:
  413. { don't do a rangecheck as Default will also return 0
  414. for the following types (Delphi compatible):
  415. TRange1 = -10..-5;
  416. TRange2 = 5..10;
  417. TEnum = (a:=5;b:=10); }
  418. result:=cordconstnode.create(0,def,false);
  419. classrefdef,
  420. pointerdef:
  421. result:=cpointerconstnode.create(0,def);
  422. procvardef:
  423. if tprocvardef(def).size<>sizeof(pint) then
  424. result:=getdefaultvarsym(def)
  425. else
  426. result:=cpointerconstnode.create(0,def);
  427. stringdef:
  428. result:=cstringconstnode.createstr('');
  429. floatdef:
  430. result:=crealconstnode.create(0,def);
  431. objectdef:
  432. begin
  433. if is_implicit_pointer_object_type(def) then
  434. result:=cpointerconstnode.create(0,def)
  435. else
  436. if is_object(def) then
  437. begin
  438. { Delphi does not recursively check whether
  439. an object contains unsupported types }
  440. if not (m_delphi in current_settings.modeswitches) and
  441. not is_valid_for_default(def) then
  442. Message(type_e_type_not_allowed_for_default);
  443. result:=getdefaultvarsym(def);
  444. end
  445. else
  446. Message(type_e_type_not_allowed_for_default);
  447. end;
  448. variantdef,
  449. recorddef:
  450. begin
  451. { Delphi does not recursively check whether a record
  452. contains unsupported types }
  453. if (def.typ=recorddef) and not (m_delphi in current_settings.modeswitches) and
  454. not is_valid_for_default(def) then
  455. Message(type_e_type_not_allowed_for_default);
  456. result:=getdefaultvarsym(def);
  457. end;
  458. setdef:
  459. begin
  460. result:=csetconstnode.create(nil,def);
  461. New(tsetconstnode(result).value_set);
  462. tsetconstnode(result).value_set^:=[];
  463. end;
  464. arraydef:
  465. begin
  466. { can other array types be parsed by single_type? }
  467. if ado_isdynamicarray in tarraydef(def).arrayoptions then
  468. result:=cpointerconstnode.create(0,def)
  469. else
  470. begin
  471. result:=getdefaultvarsym(def);
  472. end;
  473. end;
  474. undefineddef:
  475. begin
  476. if sp_generic_dummy in def.typesym.symoptions then
  477. begin
  478. { this matches the error messages that are printed
  479. in case of non-Delphi modes }
  480. Message(parser_e_no_generics_as_types);
  481. Message(type_e_type_id_expected);
  482. end
  483. else
  484. result:=cpointerconstnode.create(0,def);
  485. end;
  486. else
  487. Message(type_e_type_not_allowed_for_default);
  488. end;
  489. if not assigned(result) then
  490. result:=cerrornode.create;
  491. end;
  492. function tinlinenode.handle_reset_rewrite_typed: tnode;
  493. begin
  494. { since this is a "in_xxxx_typedfile" node, we can be sure we have }
  495. { a typed file as argument and we don't have to check it again (JM) }
  496. { add the recsize parameter }
  497. { iso mode extension with name? }
  498. if inlinenumber in [in_reset_typedfile_name,in_rewrite_typedfile_name] then
  499. begin
  500. left := ccallparanode.create(cordconstnode.create(
  501. tfiledef(tcallparanode(tcallparanode(left).nextpara).paravalue.resultdef).typedfiledef.size,s32inttype,true),left);
  502. end
  503. else
  504. begin
  505. { note: for some reason, the parameter of intern procedures with only one }
  506. { parameter is gets lifted out of its original tcallparanode (see round }
  507. { line 1306 of ncal.pas), so recreate a tcallparanode here (JM) }
  508. left := ccallparanode.create(cordconstnode.create(
  509. tfiledef(left.resultdef).typedfiledef.size,s32inttype,true),
  510. ccallparanode.create(left,nil));
  511. end;
  512. { create the correct call }
  513. if m_isolike_io in current_settings.modeswitches then
  514. begin
  515. case inlinenumber of
  516. in_reset_typedfile:
  517. result := ccallnode.createintern('fpc_reset_typed_iso',left);
  518. in_reset_typedfile_name:
  519. result := ccallnode.createintern('fpc_reset_typed_name_iso',left);
  520. in_rewrite_typedfile:
  521. result := ccallnode.createintern('fpc_rewrite_typed_iso',left);
  522. in_rewrite_typedfile_name:
  523. result := ccallnode.createintern('fpc_rewrite_typed_name_iso',left);
  524. else
  525. internalerror(2016101501);
  526. end;
  527. end
  528. else
  529. begin
  530. if inlinenumber=in_reset_typedfile then
  531. result := ccallnode.createintern('fpc_reset_typed',left)
  532. else
  533. result := ccallnode.createintern('fpc_rewrite_typed',left);
  534. end;
  535. { make sure left doesn't get disposed, since we use it in the new call }
  536. left := nil;
  537. end;
  538. procedure maybe_convert_to_string(var n: tnode);
  539. begin
  540. { stringconstnodes are arrays of char. It's much more }
  541. { efficient to write a constant string, so convert }
  542. { either to shortstring or ansistring depending on }
  543. { length }
  544. if (n.nodetype=stringconstn) then
  545. if is_chararray(n.resultdef) then
  546. if (tstringconstnode(n).len<=255) then
  547. inserttypeconv(n,cshortstringtype)
  548. else
  549. inserttypeconv(n,getansistringdef)
  550. else if is_widechararray(n.resultdef) then
  551. inserttypeconv(n,cunicodestringtype);
  552. end;
  553. procedure get_read_write_int_func(def: tdef; out func_suffix: string; out readfunctype: tdef);
  554. var
  555. ordtype: tordtype;
  556. begin
  557. ordtype := torddef(def).ordtype;
  558. if is_oversizedint(def) then
  559. begin
  560. case ordtype of
  561. s64bit:
  562. begin
  563. func_suffix := 'int64';
  564. readfunctype:=s64inttype;
  565. end;
  566. u64bit :
  567. begin
  568. func_suffix := 'qword';
  569. readfunctype:=u64inttype;
  570. end;
  571. s32bit:
  572. begin
  573. func_suffix := 'longint';
  574. readfunctype:=s32inttype;
  575. end;
  576. u32bit :
  577. begin
  578. func_suffix := 'longword';
  579. readfunctype:=u32inttype;
  580. end;
  581. s16bit:
  582. begin
  583. func_suffix := 'smallint';
  584. readfunctype:=s16inttype;
  585. end;
  586. u16bit :
  587. begin
  588. func_suffix := 'word';
  589. readfunctype:=u16inttype;
  590. end;
  591. else
  592. internalerror(2013032602);
  593. end;
  594. end
  595. else
  596. begin
  597. case ordtype of
  598. s64bit,
  599. s32bit,
  600. s16bit,
  601. s8bit:
  602. begin
  603. func_suffix := 'sint';
  604. readfunctype := sinttype;
  605. end;
  606. u64bit,
  607. u32bit,
  608. u16bit,
  609. u8bit:
  610. begin
  611. func_suffix := 'uint';
  612. readfunctype := uinttype;
  613. end;
  614. else
  615. internalerror(2013032601);
  616. end;
  617. end;
  618. end;
  619. function Tinlinenode.handle_text_read_write(filepara,params:Ttertiarynode;var newstatement:Tnode):boolean;
  620. {Read(ln)/write(ln) for text files.}
  621. const procprefixes:array[boolean] of string[15]=('fpc_write_text_','fpc_read_text_');
  622. var error_para,is_real,special_handling,found_error,do_read:boolean;
  623. p1:Tnode;
  624. nextpara,
  625. indexpara,
  626. lenpara,
  627. para,
  628. fracpara:Tcallparanode;
  629. temp:Ttempcreatenode;
  630. readfunctype:Tdef;
  631. name:string[63];
  632. func_suffix:string[8];
  633. begin
  634. para:=Tcallparanode(params);
  635. found_error:=false;
  636. do_read:=inlinenumber in [in_read_x,in_readln_x,in_readstr_x];
  637. name:='';
  638. while assigned(para) do
  639. begin
  640. { is this parameter faulty? }
  641. error_para:=false;
  642. { is this parameter a real? }
  643. is_real:=false;
  644. { type used for the read(), this is used to check
  645. whether a temp is needed for range checking }
  646. readfunctype:=nil;
  647. { can't read/write types }
  648. if (para.left.nodetype=typen) and not(ttypenode(para.left).typedef.typ=undefineddef) then
  649. begin
  650. CGMessagePos(para.fileinfo,type_e_cant_read_write_type);
  651. error_para := true;
  652. end;
  653. { support writeln(procvar) }
  654. if para.left.resultdef.typ=procvardef then
  655. begin
  656. p1:=ccallnode.create_procvar(nil,para.left);
  657. typecheckpass(p1);
  658. para.left:=p1;
  659. end;
  660. if inlinenumber in [in_write_x,in_writeln_x] then
  661. { prefer strings to chararrays }
  662. maybe_convert_to_string(para.left);
  663. case para.left.resultdef.typ of
  664. stringdef :
  665. name:=procprefixes[do_read]+tstringdef(para.left.resultdef).stringtypname;
  666. pointerdef :
  667. begin
  668. if (not is_pchar(para.left.resultdef)) or do_read then
  669. begin
  670. CGMessagePos(para.fileinfo,type_e_cant_read_write_type);
  671. error_para := true;
  672. end
  673. else
  674. name:=procprefixes[do_read]+'pchar_as_pointer';
  675. end;
  676. floatdef :
  677. begin
  678. is_real:=true;
  679. if Tfloatdef(para.left.resultdef).floattype=s64currency then
  680. name := procprefixes[do_read]+'currency'
  681. else
  682. begin
  683. name := procprefixes[do_read]+'float';
  684. readfunctype:=pbestrealtype^;
  685. end;
  686. { iso pascal needs a different handler }
  687. if (m_isolike_io in current_settings.modeswitches) and do_read then
  688. name:=name+'_iso';
  689. end;
  690. enumdef:
  691. begin
  692. name:=procprefixes[do_read]+'enum';
  693. readfunctype:=s32inttype;
  694. end;
  695. orddef :
  696. begin
  697. case Torddef(para.left.resultdef).ordtype of
  698. s8bit,
  699. s16bit,
  700. s32bit,
  701. s64bit,
  702. u8bit,
  703. u16bit,
  704. u32bit,
  705. u64bit:
  706. begin
  707. get_read_write_int_func(para.left.resultdef,func_suffix,readfunctype);
  708. name := procprefixes[do_read]+func_suffix;
  709. if (m_isolike_io in current_settings.modeswitches) and do_read then
  710. name:=name+'_iso';
  711. end;
  712. uchar :
  713. begin
  714. name := procprefixes[do_read]+'char';
  715. { iso pascal needs a different handler }
  716. if (m_isolike_io in current_settings.modeswitches) and do_read then
  717. name:=name+'_iso';
  718. readfunctype:=cansichartype;
  719. end;
  720. uwidechar :
  721. begin
  722. name := procprefixes[do_read]+'widechar';
  723. readfunctype:=cwidechartype;
  724. end;
  725. scurrency:
  726. begin
  727. name := procprefixes[do_read]+'currency';
  728. { iso pascal needs a different handler }
  729. if (m_isolike_io in current_settings.modeswitches) and do_read then
  730. name:=name+'_iso';
  731. readfunctype:=s64currencytype;
  732. is_real:=true;
  733. end;
  734. pasbool1,
  735. pasbool8,
  736. pasbool16,
  737. pasbool32,
  738. pasbool64,
  739. bool8bit,
  740. bool16bit,
  741. bool32bit,
  742. bool64bit:
  743. if do_read then
  744. begin
  745. CGMessagePos(para.fileinfo,type_e_cant_read_write_type);
  746. error_para := true;
  747. end
  748. else
  749. begin
  750. name := procprefixes[do_read]+'boolean';
  751. readfunctype:=pasbool1type;
  752. end
  753. else
  754. begin
  755. CGMessagePos(para.fileinfo,type_e_cant_read_write_type);
  756. error_para := true;
  757. end;
  758. end;
  759. end;
  760. variantdef :
  761. name:=procprefixes[do_read]+'variant';
  762. arraydef :
  763. begin
  764. if is_chararray(para.left.resultdef) then
  765. name := procprefixes[do_read]+'pchar_as_array'
  766. else
  767. begin
  768. CGMessagePos(para.fileinfo,type_e_cant_read_write_type);
  769. error_para := true;
  770. end
  771. end;
  772. { generic parameter }
  773. undefineddef:
  774. { don't try to generate any code for a writeln on a generic parameter }
  775. error_para:=true;
  776. else
  777. begin
  778. CGMessagePos(para.fileinfo,type_e_cant_read_write_type);
  779. error_para := true;
  780. end;
  781. end;
  782. { iso pascal needs a different handler }
  783. if (m_isolike_io in current_settings.modeswitches) and not(do_read) then
  784. name:=name+'_iso';
  785. { check for length/fractional colon para's }
  786. fracpara:=nil;
  787. lenpara:=nil;
  788. indexpara:=nil;
  789. if assigned(para.right) and
  790. (cpf_is_colon_para in tcallparanode(para.right).callparaflags) then
  791. begin
  792. lenpara := tcallparanode(para.right);
  793. if assigned(lenpara.right) and
  794. (cpf_is_colon_para in tcallparanode(lenpara.right).callparaflags) then
  795. fracpara:=tcallparanode(lenpara.right);
  796. end;
  797. { get the next parameter now already, because we're going }
  798. { to muck around with the pointers }
  799. if assigned(fracpara) then
  800. nextpara := tcallparanode(fracpara.right)
  801. else if assigned(lenpara) then
  802. nextpara := tcallparanode(lenpara.right)
  803. else
  804. nextpara := tcallparanode(para.right);
  805. { check if a fracpara is allowed }
  806. if assigned(fracpara) and not is_real then
  807. begin
  808. CGMessagePos(fracpara.fileinfo,parser_e_illegal_colon_qualifier);
  809. error_para := true;
  810. end
  811. else if assigned(lenpara) and do_read then
  812. begin
  813. { I think this is already filtered out by parsing, but I'm not sure (JM) }
  814. CGMessagePos(lenpara.fileinfo,parser_e_illegal_colon_qualifier);
  815. error_para := true;
  816. end;
  817. { adjust found_error }
  818. found_error := found_error or error_para;
  819. if not error_para then
  820. begin
  821. special_handling:=false;
  822. { create dummy frac/len para's if necessary }
  823. if not do_read then
  824. begin
  825. { difference in default value for floats and the rest :( }
  826. if not is_real then
  827. begin
  828. if not assigned(lenpara) then
  829. begin
  830. if m_isolike_io in current_settings.modeswitches then
  831. lenpara := ccallparanode.create(
  832. cordconstnode.create(-1,s32inttype,false),nil)
  833. else
  834. lenpara := ccallparanode.create(
  835. cordconstnode.create(0,s32inttype,false),nil);
  836. end
  837. else
  838. { make sure we don't pass the successive }
  839. { parameters too. We also already have a }
  840. { reference to the next parameter in }
  841. { nextpara }
  842. lenpara.right := nil;
  843. end
  844. else
  845. begin
  846. if not assigned(lenpara) then
  847. lenpara := ccallparanode.create(
  848. cordconstnode.create(int64(-32767),s32inttype,false),nil);
  849. { also create a default fracpara if necessary }
  850. if not assigned(fracpara) then
  851. fracpara := ccallparanode.create(
  852. cordconstnode.create(int64(-1),s32inttype,false),nil);
  853. { add it to the lenpara }
  854. lenpara.right := fracpara;
  855. if not is_currency(para.left.resultdef) then
  856. begin
  857. { and add the realtype para (this also removes the link }
  858. { to any parameters coming after it) }
  859. fracpara.right := ccallparanode.create(
  860. cordconstnode.create(ord(tfloatdef(para.left.resultdef).floattype),
  861. s32inttype,true),nil);
  862. end
  863. else
  864. fracpara.right:=nil;
  865. end;
  866. if para.left.resultdef.typ=enumdef then
  867. begin
  868. {To write(ln) an enum we need a some extra parameters.}
  869. {Insert a reference to the ord2string index.}
  870. indexpara:=Ccallparanode.create(
  871. Caddrnode.create_internal(
  872. Crttinode.create(Tenumdef(para.left.resultdef),fullrtti,rdt_normal)
  873. ),
  874. nil);
  875. {Insert a reference to the typinfo.}
  876. indexpara:=Ccallparanode.create(
  877. Caddrnode.create_internal(
  878. Crttinode.create(Tenumdef(para.left.resultdef),fullrtti,rdt_ord2str)
  879. ),
  880. indexpara);
  881. {Insert a type conversion to to convert the enum to longint.}
  882. para.left:=Ctypeconvnode.create_internal(para.left,s32inttype);
  883. typecheckpass(para.left);
  884. end;
  885. end
  886. else
  887. begin
  888. {To read(ln) an enum we need a an extra parameter.}
  889. if para.left.resultdef.typ=enumdef then
  890. begin
  891. {Insert a reference to the string2ord index.}
  892. indexpara:=Ccallparanode.create(Caddrnode.create_internal(
  893. Crttinode.create(Tenumdef(para.left.resultdef),fullrtti,rdt_str2ord)
  894. ),nil);
  895. {Insert a type conversion to to convert the enum to longint.}
  896. para.left:=Ctypeconvnode.create_internal(para.left,s32inttype);
  897. typecheckpass(para.left);
  898. end;
  899. { special handling of reading small numbers, because the helpers }
  900. { expect a longint/card/bestreal var parameter. Use a temp. can't }
  901. { use functions because then the call to FPC_IOCHECK destroys }
  902. { their result before we can store it }
  903. if (readfunctype<>nil) and (para.left.resultdef<>readfunctype) then
  904. special_handling:=true;
  905. end;
  906. if special_handling then
  907. begin
  908. { since we're not going to pass the parameter as var-parameter }
  909. { to the read function, manually check whether the parameter }
  910. { can be used as var-parameter (e.g., whether it isn't a }
  911. { property) }
  912. valid_for_var(para.left,true);
  913. { create the parameter list: the temp ... }
  914. temp := ctempcreatenode.create(readfunctype,readfunctype.size,tt_persistent,false);
  915. addstatement(Tstatementnode(newstatement),temp);
  916. { ... and the file }
  917. p1 := ccallparanode.create(ctemprefnode.create(temp),
  918. filepara.getcopy);
  919. Tcallparanode(Tcallparanode(p1).right).right:=indexpara;
  920. { create the call to the helper }
  921. addstatement(Tstatementnode(newstatement),
  922. ccallnode.createintern(name,tcallparanode(p1)));
  923. { assign the result to the original var (this automatically }
  924. { takes care of range checking) }
  925. addstatement(Tstatementnode(newstatement),
  926. cassignmentnode.create(para.left,
  927. ctemprefnode.create(temp)));
  928. { release the temp location }
  929. addstatement(Tstatementnode(newstatement),ctempdeletenode.create(temp));
  930. { statement of para is used }
  931. para.left := nil;
  932. { free the enclosing tcallparanode, but not the }
  933. { parameters coming after it }
  934. para.right := nil;
  935. para.free;
  936. end
  937. else
  938. { read of non s/u-8/16bit, or a write }
  939. begin
  940. { add the filepara to the current parameter }
  941. para.right := filepara.getcopy;
  942. {Add the lenpara and the indexpara(s) (fracpara and realtype are
  943. already linked with the lenpara if necessary).}
  944. if indexpara=nil then
  945. Tcallparanode(para.right).right:=lenpara
  946. else
  947. begin
  948. if lenpara=nil then
  949. Tcallparanode(para.right).right:=indexpara
  950. else
  951. begin
  952. Tcallparanode(para.right).right:=lenpara;
  953. lenpara.right:=indexpara;
  954. end;
  955. { indexpara.right:=lenpara;}
  956. end;
  957. { in case of writing a chararray, add whether it's zero-based }
  958. if para.left.resultdef.typ=arraydef then
  959. para := ccallparanode.create(cordconstnode.create(
  960. ord(tarraydef(para.left.resultdef).lowrange=0),pasbool1type,false),para)
  961. else
  962. { in case of reading an ansistring pass a codepage argument }
  963. if do_read and is_ansistring(para.left.resultdef) then
  964. para:=ccallparanode.create(cordconstnode.create(
  965. getparaencoding(para.left.resultdef),u16inttype,true),para);
  966. { create the call statement }
  967. addstatement(Tstatementnode(newstatement),
  968. ccallnode.createintern(name,para));
  969. end
  970. end
  971. else
  972. { error_para = true }
  973. begin
  974. { free the parameter, since it isn't referenced anywhere anymore }
  975. para.right := nil;
  976. para.free;
  977. if assigned(lenpara) then
  978. begin
  979. lenpara.right := nil;
  980. lenpara.free;
  981. end;
  982. if assigned(fracpara) then
  983. begin
  984. fracpara.right := nil;
  985. fracpara.free;
  986. end;
  987. end;
  988. { process next parameter }
  989. para := nextpara;
  990. end;
  991. { if no error, add the write(ln)/read(ln) end calls }
  992. if not found_error then
  993. begin
  994. case inlinenumber of
  995. in_read_x,
  996. in_readstr_x:
  997. name:='fpc_read_end';
  998. in_write_x,
  999. in_writestr_x:
  1000. name:='fpc_write_end';
  1001. in_readln_x:
  1002. begin
  1003. name:='fpc_readln_end';
  1004. if m_isolike_io in current_settings.modeswitches then
  1005. name:=name+'_iso';
  1006. end;
  1007. in_writeln_x:
  1008. name:='fpc_writeln_end';
  1009. else
  1010. internalerror(2019050516);
  1011. end;
  1012. addstatement(Tstatementnode(newstatement),ccallnode.createintern(name,filepara.getcopy));
  1013. end;
  1014. handle_text_read_write:=found_error;
  1015. end;
  1016. function Tinlinenode.handle_typed_read_write(filepara,params:Ttertiarynode;var newstatement:Tnode):boolean;
  1017. {Read/write for typed files.}
  1018. const procprefixes:array[boolean,boolean] of string[19]=(('fpc_typed_write','fpc_typed_read'),
  1019. ('fpc_typed_write','fpc_typed_read_iso'));
  1020. procnamesdisplay:array[boolean,boolean] of string[8] = (('Write','Read'),('WriteStr','ReadStr'));
  1021. var found_error,do_read,is_rwstr:boolean;
  1022. para,nextpara:Tcallparanode;
  1023. p1:Tnode;
  1024. temp:Ttempcreatenode;
  1025. begin
  1026. found_error:=false;
  1027. para:=Tcallparanode(params);
  1028. do_read:=inlinenumber in [in_read_x,in_readln_x,in_readstr_x];
  1029. is_rwstr := inlinenumber in [in_readstr_x,in_writestr_x];
  1030. temp:=nil;
  1031. { add the typesize to the filepara }
  1032. if filepara.resultdef.typ=filedef then
  1033. filepara.right := ccallparanode.create(cordconstnode.create(
  1034. tfiledef(filepara.resultdef).typedfiledef.size,s32inttype,true),nil);
  1035. { check for "no parameters" (you need at least one extra para for typed files) }
  1036. if not assigned(para) then
  1037. begin
  1038. CGMessage1(parser_e_wrong_parameter_size,procnamesdisplay[is_rwstr,do_read]);
  1039. found_error := true;
  1040. end;
  1041. { process all parameters }
  1042. while assigned(para) do
  1043. begin
  1044. { check if valid parameter }
  1045. if para.left.nodetype=typen then
  1046. begin
  1047. CGMessagePos(para.left.fileinfo,type_e_cant_read_write_type);
  1048. found_error := true;
  1049. end;
  1050. { support writeln(procvar) }
  1051. if (para.left.resultdef.typ=procvardef) then
  1052. begin
  1053. p1:=ccallnode.create_procvar(nil,para.left);
  1054. typecheckpass(p1);
  1055. para.left:=p1;
  1056. end;
  1057. if filepara.resultdef.typ=filedef then
  1058. inserttypeconv(para.left,tfiledef(filepara.resultdef).typedfiledef);
  1059. if assigned(para.right) and
  1060. (cpf_is_colon_para in tcallparanode(para.right).callparaflags) then
  1061. begin
  1062. CGMessagePos(para.right.fileinfo,parser_e_illegal_colon_qualifier);
  1063. { skip all colon para's }
  1064. nextpara := tcallparanode(tcallparanode(para.right).right);
  1065. while assigned(nextpara) and (cpf_is_colon_para in nextpara.callparaflags) do
  1066. nextpara := tcallparanode(nextpara.right);
  1067. found_error := true;
  1068. end
  1069. else
  1070. { get next parameter }
  1071. nextpara := tcallparanode(para.right);
  1072. { When we have a call, we have a problem: you can't pass the }
  1073. { result of a call as a formal const parameter. Solution: }
  1074. { assign the result to a temp and pass this temp as parameter }
  1075. { This is not very efficient, but write(typedfile,x) is }
  1076. { already slow by itself anyway (no buffering) (JM) }
  1077. { Actually, thge same goes for every non-simple expression }
  1078. { (such as an addition, ...) -> put everything but load nodes }
  1079. { into temps (JM) }
  1080. { of course, this must only be allowed for writes!!! (JM) }
  1081. if not(do_read) and (para.left.nodetype <> loadn) then
  1082. begin
  1083. { create temp for result }
  1084. temp := ctempcreatenode.create(para.left.resultdef,
  1085. para.left.resultdef.size,tt_persistent,false);
  1086. addstatement(Tstatementnode(newstatement),temp);
  1087. { assign result to temp }
  1088. addstatement(Tstatementnode(newstatement),
  1089. cassignmentnode.create(ctemprefnode.create(temp),
  1090. para.left));
  1091. { replace (reused) paranode with temp }
  1092. para.left := ctemprefnode.create(temp);
  1093. end;
  1094. { add fileparameter }
  1095. para.right := filepara.getcopy;
  1096. { create call statment }
  1097. { since the parameters are in the correct order, we have to insert }
  1098. { the statements always at the end of the current block }
  1099. addstatement(Tstatementnode(newstatement),
  1100. Ccallnode.createintern(procprefixes[m_isolike_io in current_settings.modeswitches,do_read],para
  1101. ));
  1102. { if we used a temp, free it }
  1103. if para.left.nodetype = temprefn then
  1104. addstatement(Tstatementnode(newstatement),ctempdeletenode.create(temp));
  1105. { process next parameter }
  1106. para := nextpara;
  1107. end;
  1108. handle_typed_read_write:=found_error;
  1109. end;
  1110. function tinlinenode.handle_read_write: tnode;
  1111. var
  1112. filepara,
  1113. nextpara,
  1114. params : tcallparanode;
  1115. newstatement : tstatementnode;
  1116. newblock : tblocknode;
  1117. filetemp : Ttempcreatenode;
  1118. name : string[31];
  1119. textsym : ttypesym;
  1120. is_typed,
  1121. do_read,
  1122. is_rwstr,
  1123. found_error : boolean;
  1124. begin
  1125. filepara := nil;
  1126. is_typed := false;
  1127. filetemp := nil;
  1128. do_read := inlinenumber in [in_read_x,in_readln_x,in_readstr_x];
  1129. is_rwstr := inlinenumber in [in_readstr_x,in_writestr_x];
  1130. { if we fail, we can quickly exit this way. We must generate something }
  1131. { instead of the inline node, because firstpass will bomb with an }
  1132. { internalerror if it encounters a read/write }
  1133. result := cerrornode.create;
  1134. { reverse the parameters (needed to get the colon parameters in the }
  1135. { correct order when processing write(ln) }
  1136. reverseparameters(tcallparanode(left));
  1137. if is_rwstr then
  1138. begin
  1139. filepara := tcallparanode(left);
  1140. { needs at least two parameters: source/dest string + min. 1 value }
  1141. if not(assigned(filepara)) or
  1142. not(assigned(filepara.right)) then
  1143. begin
  1144. CGMessagePos1(fileinfo,parser_e_wrong_parameter_size,'ReadStr/WriteStr');
  1145. exit;
  1146. end
  1147. else if (filepara.resultdef.typ <> stringdef) then
  1148. begin
  1149. { convert chararray to string, or give an appropriate error message }
  1150. { (if you want to optimize to use shortstring, keep in mind that }
  1151. { readstr internally always uses ansistring, and to account for }
  1152. { chararrays with > 255 characters) }
  1153. inserttypeconv(filepara.left,getansistringdef);
  1154. filepara.resultdef:=filepara.left.resultdef;
  1155. if codegenerror then
  1156. exit;
  1157. end
  1158. end
  1159. else if assigned(left) then
  1160. begin
  1161. { check if we have a file parameter and if yes, what kind it is }
  1162. filepara := tcallparanode(left);
  1163. if (filepara.resultdef.typ=filedef) then
  1164. begin
  1165. if (tfiledef(filepara.resultdef).filetyp=ft_untyped) then
  1166. begin
  1167. CGMessagePos(fileinfo,type_e_no_read_write_for_untyped_file);
  1168. exit;
  1169. end
  1170. else
  1171. begin
  1172. if (tfiledef(filepara.resultdef).filetyp=ft_typed) then
  1173. begin
  1174. if (inlinenumber in [in_readln_x,in_writeln_x]) then
  1175. begin
  1176. CGMessagePos(fileinfo,type_e_no_readln_writeln_for_typed_file);
  1177. exit;
  1178. end;
  1179. is_typed := true;
  1180. end
  1181. end;
  1182. end
  1183. else
  1184. filepara := nil;
  1185. end;
  1186. { create a blocknode in which the successive write/read statements will be }
  1187. { put, since they belong together. Also create a dummy statement already to }
  1188. { make inserting of additional statements easier }
  1189. newblock:=internalstatements(newstatement);
  1190. if is_rwstr then
  1191. begin
  1192. { create a dummy temp text file that will be used to cache the
  1193. readstr/writestr state. Can't use a global variable in the system
  1194. unit because these can be nested (in case of parameters to
  1195. writestr that are function calls to functions that also call
  1196. readstr/writestr) }
  1197. textsym:=search_system_type('TEXT');
  1198. filetemp:=ctempcreatenode.create(textsym.typedef,textsym.typedef.size,tt_persistent,false);
  1199. addstatement(newstatement,filetemp);
  1200. if (do_read) then
  1201. name:='fpc_setupreadstr_'
  1202. else
  1203. name:='fpc_setupwritestr_';
  1204. name:=name+tstringdef(filepara.resultdef).stringtypname;
  1205. { the file para is a var parameter, but it is properly initialized,
  1206. so it should be actually an out parameter }
  1207. if not(do_read) then
  1208. set_varstate(filepara.left,vs_written,[]);
  1209. { remove the source/destination string parameter from the }
  1210. { parameter chain }
  1211. left:=filepara.right;
  1212. filepara.right:=ccallparanode.create(ctemprefnode.create(filetemp),nil);
  1213. { in case of a writestr() to an ansistring, also pass the string's
  1214. code page }
  1215. if not do_read and
  1216. is_ansistring(filepara.left.resultdef) then
  1217. filepara:=ccallparanode.create(genintconstnode(tstringdef(filepara.left.resultdef).encoding),filepara);
  1218. { pass the temp text file and the source/destination string to the
  1219. setup routine, which will store the string's address in the
  1220. textrec }
  1221. addstatement(newstatement,ccallnode.createintern(name,filepara));
  1222. filepara:=ccallparanode.create(ctemprefnode.create(filetemp),nil);
  1223. end
  1224. { if we don't have a filepara, create one containing the default }
  1225. else if not assigned(filepara) then
  1226. begin
  1227. { since the input/output variables are threadvars loading them into
  1228. a temp once is faster. Create a temp which will hold a pointer to the file }
  1229. filetemp := ctempcreatenode.create(voidpointertype,voidpointertype.size,tt_persistent,true);
  1230. addstatement(newstatement,filetemp);
  1231. { make sure the resultdef of the temp (and as such of the }
  1232. { temprefs coming after it) is set (necessary because the }
  1233. { temprefs will be part of the filepara, of which we need }
  1234. { the resultdef later on and temprefs can only be }
  1235. { typecheckpassed if the resultdef of the temp is known) }
  1236. typecheckpass(tnode(filetemp));
  1237. { assign the address of the file to the temp }
  1238. if do_read then
  1239. name := 'input'
  1240. else
  1241. name := 'output';
  1242. addstatement(newstatement,
  1243. cassignmentnode.create(ctemprefnode.create(filetemp),
  1244. ccallnode.createintern('fpc_get_'+name,nil)));
  1245. { create a new fileparameter as follows: file_type(temp^) }
  1246. { (so that we pass the value and not the address of the temp }
  1247. { to the read/write routine) }
  1248. textsym:=search_system_type('TEXT');
  1249. filepara := ccallparanode.create(ctypeconvnode.create_internal(
  1250. cderefnode.create(ctemprefnode.create(filetemp)),textsym.typedef),nil);
  1251. end
  1252. else
  1253. { remove filepara from the parameter chain }
  1254. begin
  1255. left := filepara.right;
  1256. filepara.right := nil;
  1257. { the file para is a var parameter, but it must be valid already }
  1258. set_varstate(filepara.left,vs_readwritten,[vsf_must_be_valid]);
  1259. { check if we should make a temp to store the result of a complex }
  1260. { expression (better heuristics, anyone?) (JM) }
  1261. if (filepara.left.nodetype <> loadn) then
  1262. begin
  1263. { create a temp which will hold a pointer to the file }
  1264. filetemp := ctempcreatenode.create(voidpointertype,voidpointertype.size,tt_persistent,true);
  1265. { add it to the statements }
  1266. addstatement(newstatement,filetemp);
  1267. { make sure the resultdef of the temp (and as such of the }
  1268. { temprefs coming after it) is set (necessary because the }
  1269. { temprefs will be part of the filepara, of which we need }
  1270. { the resultdef later on and temprefs can only be }
  1271. { typecheckpassed if the resultdef of the temp is known) }
  1272. typecheckpass(tnode(filetemp));
  1273. { assign the address of the file to the temp }
  1274. addstatement(newstatement,
  1275. cassignmentnode.create(ctemprefnode.create(filetemp),
  1276. caddrnode.create_internal(filepara.left)));
  1277. typecheckpass(newstatement.left);
  1278. { create a new fileparameter as follows: file_type(temp^) }
  1279. { (so that we pass the value and not the address of the temp }
  1280. { to the read/write routine) }
  1281. nextpara := ccallparanode.create(ctypeconvnode.create_internal(
  1282. cderefnode.create(ctemprefnode.create(filetemp)),filepara.left.resultdef),nil);
  1283. { replace the old file para with the new one }
  1284. filepara.left := nil;
  1285. filepara.free;
  1286. filepara := nextpara;
  1287. end;
  1288. end;
  1289. { the resultdef of the filepara must be set since it's }
  1290. { used below }
  1291. filepara.get_paratype;
  1292. { now, filepara is nowhere referenced anymore, so we can safely dispose it }
  1293. { if something goes wrong or at the end of the procedure }
  1294. { we're going to reuse the paranodes, so make sure they don't get freed }
  1295. { twice }
  1296. params:=Tcallparanode(left);
  1297. left := nil;
  1298. if is_typed then
  1299. found_error:=handle_typed_read_write(filepara,Ttertiarynode(params),tnode(newstatement))
  1300. else
  1301. found_error:=handle_text_read_write(filepara,Ttertiarynode(params),tnode(newstatement));
  1302. { free the file parameter (it's copied inside the handle_*_read_write methods) }
  1303. filepara.free;
  1304. { if we found an error, simply delete the generated blocknode }
  1305. if found_error then
  1306. begin
  1307. { ensure that the tempinfo is freed correctly by destroying a
  1308. delete node for it
  1309. Note: this might happen legitimately whe parsing a generic that
  1310. passes a undefined type to Write/Read }
  1311. if assigned(filetemp) then
  1312. ctempdeletenode.create(filetemp).free;
  1313. newblock.free
  1314. end
  1315. else
  1316. begin
  1317. { deallocate the temp for the file para if we used one }
  1318. if assigned(filetemp) then
  1319. addstatement(newstatement,ctempdeletenode.create(filetemp));
  1320. { otherwise return the newly generated block of instructions, }
  1321. { but first free the errornode we generated at the beginning }
  1322. result.free;
  1323. result := newblock
  1324. end;
  1325. end;
  1326. function get_val_int_func(def: tdef): string;
  1327. var
  1328. ordtype: tordtype;
  1329. begin
  1330. ordtype := torddef(def).ordtype;
  1331. if not (ordtype in [s64bit,u64bit,s32bit,u32bit,s16bit,u16bit,s8bit,u8bit]) then
  1332. internalerror(2013032603);
  1333. if is_oversizedint(def) then
  1334. begin
  1335. case ordtype of
  1336. s64bit: exit('int64');
  1337. u64bit: exit('qword');
  1338. s32bit: exit('longint');
  1339. u32bit: exit('longword');
  1340. s16bit: exit('smallint');
  1341. u16bit: exit('word');
  1342. else
  1343. internalerror(2013032604);
  1344. end;
  1345. end
  1346. else
  1347. begin
  1348. case ordtype of
  1349. s64bit,s32bit,s16bit,s8bit: exit('sint');
  1350. u64bit,u32bit,u16bit,u8bit: exit('uint');
  1351. else
  1352. internalerror(2013032604);
  1353. end;
  1354. end;
  1355. internalerror(2013032605);
  1356. end;
  1357. function tinlinenode.handle_val: tnode;
  1358. var
  1359. procname,
  1360. suffix : string[31];
  1361. sourcepara,
  1362. destpara,
  1363. codepara,
  1364. sizepara,
  1365. newparas : tcallparanode;
  1366. orgcode,tc : tnode;
  1367. newstatement : tstatementnode;
  1368. newblock : tblocknode;
  1369. tempcode : ttempcreatenode;
  1370. valsinttype : tdef;
  1371. begin
  1372. { for easy exiting if something goes wrong }
  1373. result := cerrornode.create;
  1374. { check the amount of parameters }
  1375. if not(assigned(left)) or
  1376. not(assigned(tcallparanode(left).right)) then
  1377. begin
  1378. CGMessage1(parser_e_wrong_parameter_size,'Val');
  1379. exit;
  1380. end;
  1381. suffix:='';
  1382. { in case we are in a generic definition, we cannot
  1383. do all checks, the parameters might be type parameters }
  1384. if df_generic in current_procinfo.procdef.defoptions then
  1385. begin
  1386. result.Free;
  1387. result:=nil;
  1388. resultdef:=voidtype;
  1389. exit;
  1390. end;
  1391. { retrieve the ValSInt type }
  1392. valsinttype:=search_system_type('VALSINT').typedef;
  1393. { reverse parameters for easier processing }
  1394. reverseparameters(tcallparanode(left));
  1395. { get the parameters }
  1396. tempcode := nil;
  1397. orgcode := nil;
  1398. sizepara := nil;
  1399. sourcepara := tcallparanode(left);
  1400. destpara := tcallparanode(sourcepara.right);
  1401. codepara := tcallparanode(destpara.right);
  1402. { check if codepara is valid }
  1403. if assigned(codepara) and
  1404. (
  1405. not is_integer(codepara.resultdef)
  1406. {$ifndef cpu64bitaddr}
  1407. or is_64bitint(codepara.resultdef)
  1408. {$endif not cpu64bitaddr}
  1409. ) then
  1410. begin
  1411. CGMessagePos1(codepara.fileinfo,type_e_integer_expr_expected,codepara.resultdef.typename);
  1412. exit;
  1413. end;
  1414. { check if dest para is valid }
  1415. if not is_integer(destpara.resultdef) and
  1416. not is_currency(destpara.resultdef) and
  1417. not(destpara.resultdef.typ in [floatdef,enumdef]) then
  1418. begin
  1419. CGMessagePos(destpara.fileinfo,type_e_integer_or_real_expr_expected);
  1420. exit;
  1421. end;
  1422. { we're going to reuse the exisiting para's, so make sure they }
  1423. { won't be disposed }
  1424. left := nil;
  1425. { create the blocknode which will hold the generated statements + }
  1426. { an initial dummy statement }
  1427. newblock:=internalstatements(newstatement);
  1428. { do we need a temp for code? Yes, if no code specified, or if }
  1429. { code is not a valsinttype sized parameter (we already checked }
  1430. { whether the code para, if specified, was an orddef) }
  1431. if not assigned(codepara) or
  1432. (codepara.resultdef.size<>valsinttype.size) then
  1433. begin
  1434. tempcode := ctempcreatenode.create(valsinttype,valsinttype.size,tt_persistent,false);
  1435. addstatement(newstatement,tempcode);
  1436. { set the resultdef of the temp (needed to be able to get }
  1437. { the resultdef of the tempref used in the new code para) }
  1438. typecheckpass(tnode(tempcode));
  1439. { create a temp codepara, but save the original code para to }
  1440. { assign the result to later on }
  1441. if assigned(codepara) then
  1442. begin
  1443. orgcode := codepara.left;
  1444. codepara.left := ctemprefnode.create(tempcode);
  1445. end
  1446. else
  1447. codepara := ccallparanode.create(ctemprefnode.create(tempcode),nil);
  1448. { we need its resultdef later on }
  1449. codepara.get_paratype;
  1450. end
  1451. else if (torddef(codepara.resultdef).ordtype <> torddef(valsinttype).ordtype) then
  1452. { because code is a var parameter, it must match types exactly }
  1453. { however, since it will return values >= 0, both signed and }
  1454. { and unsigned ints of the same size are fine. Since the formal }
  1455. { code para type is sinttype, insert a typecoversion to sint for }
  1456. { unsigned para's }
  1457. begin
  1458. codepara.left := ctypeconvnode.create_internal(codepara.left,valsinttype);
  1459. { make it explicit, oterwise you may get a nonsense range }
  1460. { check error if the cardinal already contained a value }
  1461. { > $7fffffff }
  1462. codepara.get_paratype;
  1463. end;
  1464. { create the procedure name }
  1465. procname := 'fpc_val_';
  1466. case destpara.resultdef.typ of
  1467. orddef:
  1468. begin
  1469. case torddef(destpara.resultdef).ordtype of
  1470. s8bit,s16bit,s32bit,s64bit,
  1471. u8bit,u16bit,u32bit,u64bit:
  1472. begin
  1473. suffix := get_val_int_func(destpara.resultdef) + '_';
  1474. { we also need a destsize para in the case of sint }
  1475. if suffix = 'sint_' then
  1476. sizepara := ccallparanode.create(cordconstnode.create
  1477. (destpara.resultdef.size,s32inttype,true),nil);
  1478. end;
  1479. scurrency: suffix := 'currency_';
  1480. else
  1481. internalerror(200304225);
  1482. end;
  1483. end;
  1484. floatdef:
  1485. suffix:='real_';
  1486. enumdef:
  1487. begin
  1488. suffix:='enum_';
  1489. sizepara:=Ccallparanode.create(Caddrnode.create_internal(
  1490. Crttinode.create(Tenumdef(destpara.resultdef),fullrtti,rdt_str2ord)
  1491. ),nil);
  1492. end;
  1493. else
  1494. internalerror(2019050515);
  1495. end;
  1496. procname := procname + suffix;
  1497. { play a trick to have tcallnode handle invalid source parameters: }
  1498. { the shortstring-longint val routine by default }
  1499. if (sourcepara.resultdef.typ = stringdef) then
  1500. procname := procname + tstringdef(sourcepara.resultdef).stringtypname
  1501. { zero-based arrays (of char) can be implicitely converted to ansistring, but don't do
  1502. so if not needed because the array is too short }
  1503. else if is_zero_based_array(sourcepara.resultdef) and (sourcepara.resultdef.size>255) then
  1504. procname := procname + 'ansistr'
  1505. else
  1506. procname := procname + 'shortstr';
  1507. { set up the correct parameters for the call: the code para... }
  1508. newparas := codepara;
  1509. { and the source para }
  1510. codepara.right := sourcepara;
  1511. { sizepara either contains nil if none is needed (which is ok, since }
  1512. { then the next statement severes any possible links with other paras }
  1513. { that sourcepara may have) or it contains the necessary size para and }
  1514. { its right field is nil }
  1515. sourcepara.right := sizepara;
  1516. { create the call and assign the result to dest (val helpers are functions).
  1517. Use a trick to prevent a type size mismatch warning to be generated by the
  1518. assignment node. First convert implicitly to the resultdef. This will insert
  1519. the range check. The Second conversion is done explicitly to hide the implicit conversion
  1520. for the assignment node and therefor preventing the warning (PFV)
  1521. The implicit conversion is avoided for enums because implicit conversion between
  1522. longint (which is what fpc_val_enum_shortstr returns) and enumerations is not
  1523. possible. (DM).
  1524. The implicit conversion is also avoided for COMP type if it is handled by FPU (x86)
  1525. to prevent warning about automatic type conversion. }
  1526. if (destpara.resultdef.typ=enumdef) or
  1527. ((destpara.resultdef.typ=floatdef) and (tfloatdef(destpara.resultdef).floattype=s64comp))
  1528. then
  1529. tc:=ccallnode.createintern(procname,newparas)
  1530. else
  1531. tc:=ctypeconvnode.create(ccallnode.createintern(procname,newparas),destpara.left.resultdef);
  1532. addstatement(newstatement,cassignmentnode.create(
  1533. destpara.left,ctypeconvnode.create_internal(tc,destpara.left.resultdef)));
  1534. { dispose of the enclosing paranode of the destination }
  1535. destpara.left := nil;
  1536. destpara.right := nil;
  1537. destpara.free;
  1538. { check if we used a temp for code and whether we have to store }
  1539. { it to the real code parameter }
  1540. if assigned(orgcode) then
  1541. addstatement(newstatement,cassignmentnode.create(
  1542. orgcode,
  1543. ctypeconvnode.create_internal(
  1544. ctemprefnode.create(tempcode),orgcode.resultdef)));
  1545. { release the temp if we allocated one }
  1546. if assigned(tempcode) then
  1547. addstatement(newstatement,ctempdeletenode.create(tempcode));
  1548. { free the errornode }
  1549. result.free;
  1550. { and return it }
  1551. result := newblock;
  1552. end;
  1553. function tinlinenode.handle_setlength: tnode;
  1554. var
  1555. def: tdef;
  1556. destppn,
  1557. paras: tnode;
  1558. newstatement: tstatementnode;
  1559. ppn: tcallparanode;
  1560. counter,
  1561. dims: longint;
  1562. isarray: boolean;
  1563. begin
  1564. { for easy exiting if something goes wrong }
  1565. result:=cerrornode.create;
  1566. resultdef:=voidtype;
  1567. paras:=left;
  1568. dims:=0;
  1569. if assigned(paras) then
  1570. begin
  1571. { check type of lengths }
  1572. ppn:=tcallparanode(paras);
  1573. while assigned(ppn.right) do
  1574. begin
  1575. set_varstate(ppn.left,vs_read,[vsf_must_be_valid]);
  1576. inserttypeconv(ppn.left,sinttype);
  1577. inc(dims);
  1578. ppn:=tcallparanode(ppn.right);
  1579. end;
  1580. end
  1581. else
  1582. internalerror(2013112912);
  1583. if dims=0 then
  1584. begin
  1585. CGMessage1(parser_e_wrong_parameter_size,'SetLength');
  1586. exit;
  1587. end;
  1588. { last param must be var }
  1589. destppn:=ppn.left;
  1590. valid_for_var(destppn,true);
  1591. set_varstate(destppn,vs_written,[vsf_must_be_valid,vsf_use_hints,vsf_use_hint_for_string_result]);
  1592. { first param must be a string or dynamic array ...}
  1593. isarray:=is_dynamic_array(destppn.resultdef);
  1594. if not((destppn.resultdef.typ=stringdef) or
  1595. isarray) then
  1596. begin
  1597. { possibly generic involved? }
  1598. if df_generic in current_procinfo.procdef.defoptions then
  1599. result:=internalstatements(newstatement)
  1600. else
  1601. CGMessage(type_e_mismatch);
  1602. exit;
  1603. end;
  1604. { only dynamic arrays accept more dimensions }
  1605. if (dims>1) then
  1606. begin
  1607. if (not isarray) then
  1608. CGMessage(type_e_mismatch)
  1609. else
  1610. begin
  1611. { check if the amount of dimensions is valid }
  1612. def:=tarraydef(destppn.resultdef).elementdef;
  1613. counter:=dims;
  1614. while counter > 1 do
  1615. begin
  1616. if not(is_dynamic_array(def)) then
  1617. begin
  1618. CGMessage1(parser_e_wrong_parameter_size,'SetLength');
  1619. break;
  1620. end;
  1621. dec(counter);
  1622. def:=tarraydef(def).elementdef;
  1623. end;
  1624. end;
  1625. end;
  1626. result.free;
  1627. result:=nil;
  1628. end;
  1629. function tinlinenode.handle_copy: tnode;
  1630. procedure do_error(typemismatch:boolean;func:string;fi:tfileposinfo);
  1631. procedure write_dynarray_copy;
  1632. begin
  1633. MessagePos1(fileinfo,sym_e_param_list,'Copy(Dynamic Array;'+sizesinttype.typename+'=`<low>`;'+sizesinttype.typename+'=`<length>`);');
  1634. end;
  1635. begin
  1636. if typemismatch then
  1637. CGMessagePos(fi,type_e_mismatch)
  1638. else
  1639. CGMessagePos1(fi,parser_e_wrong_parameter_size,'Copy');
  1640. if func='' then
  1641. begin
  1642. write_system_parameter_lists('fpc_shortstr_copy');
  1643. write_system_parameter_lists('fpc_char_copy');
  1644. write_system_parameter_lists('fpc_unicodestr_copy');
  1645. if tf_winlikewidestring in target_info.flags then
  1646. write_system_parameter_lists('fpc_widestr_copy');
  1647. write_system_parameter_lists('fpc_ansistr_copy');
  1648. write_dynarray_copy;
  1649. end
  1650. else if func='fpc_dynarray_copy' then
  1651. write_dynarray_copy
  1652. else
  1653. write_system_parameter_lists(func);
  1654. end;
  1655. var
  1656. paras : tnode;
  1657. ppn : tcallparanode;
  1658. paradef : tdef;
  1659. counter : integer;
  1660. minargs,
  1661. maxargs : longint;
  1662. func : string;
  1663. begin
  1664. if not assigned(left) then
  1665. begin
  1666. do_error(false,'',fileinfo);
  1667. exit(cerrornode.create);
  1668. end;
  1669. result:=nil;
  1670. { determine copy function to use based on the first argument,
  1671. also count the number of arguments in this loop }
  1672. counter:=1;
  1673. paras:=left;
  1674. ppn:=tcallparanode(paras);
  1675. while assigned(ppn.right) do
  1676. begin
  1677. inc(counter);
  1678. set_varstate(ppn.left,vs_read,[vsf_must_be_valid]);
  1679. ppn:=tcallparanode(ppn.right);
  1680. end;
  1681. set_varstate(ppn.left,vs_read,[vsf_must_be_valid]);
  1682. paradef:=ppn.left.resultdef;
  1683. { the string variants all require 2 or 3 args, only the array one allows less }
  1684. minargs:=2;
  1685. maxargs:=3;
  1686. func:='';
  1687. if is_ansistring(paradef) then
  1688. begin
  1689. // set resultdef to argument def
  1690. resultdef:=paradef;
  1691. func:='fpc_ansistr_copy';
  1692. end
  1693. else if (is_chararray(paradef) and (paradef.size>255)) or
  1694. ((cs_refcountedstrings in current_settings.localswitches) and is_pchar(paradef)) then
  1695. begin
  1696. // set resultdef to ansistring type since result will be in ansistring codepage
  1697. resultdef:=getansistringdef;
  1698. func:='fpc_ansistr_copy';
  1699. end
  1700. else if is_widestring(paradef) then
  1701. begin
  1702. resultdef:=cwidestringtype;
  1703. func:='fpc_widestr_copy';
  1704. end
  1705. else if is_unicodestring(paradef) or
  1706. is_widechararray(paradef) or
  1707. is_pwidechar(paradef) then
  1708. begin
  1709. resultdef:=cunicodestringtype;
  1710. func:='fpc_unicodestr_copy';
  1711. end
  1712. else
  1713. if is_char(paradef) then
  1714. begin
  1715. resultdef:=cshortstringtype;
  1716. func:='fpc_char_copy';
  1717. end
  1718. else
  1719. if is_dynamic_array(paradef) then
  1720. begin
  1721. minargs:=1;
  1722. resultdef:=paradef;
  1723. func:='fpc_dynarray_copy';
  1724. end
  1725. else if counter in [2..3] then
  1726. begin
  1727. resultdef:=cshortstringtype;
  1728. func:='fpc_shortstr_copy';
  1729. end
  1730. else if counter<=maxargs then
  1731. begin
  1732. do_error(true,'',ppn.left.fileinfo);
  1733. exit(cerrornode.create);
  1734. end;
  1735. if (counter<minargs) or (counter>maxargs) then
  1736. begin
  1737. do_error(false,func,fileinfo);
  1738. exit(cerrornode.create);
  1739. end;
  1740. end;
  1741. {$maxfpuregisters 0}
  1742. function getpi : bestreal;
  1743. begin
  1744. {$ifdef x86}
  1745. { x86 has pi in hardware }
  1746. result:=pi;
  1747. {$else x86}
  1748. {$ifdef cpuextended}
  1749. result:=MathPiExtended.Value;
  1750. {$else cpuextended}
  1751. result:=MathPi.Value;
  1752. {$endif cpuextended}
  1753. {$endif x86}
  1754. end;
  1755. function tinlinenode.simplify(forinline : boolean): tnode;
  1756. function do_lowhigh(def:tdef) : tnode;
  1757. var
  1758. v : tconstexprint;
  1759. enum : tenumsym;
  1760. hp : tnode;
  1761. i : integer;
  1762. begin
  1763. case def.typ of
  1764. orddef:
  1765. begin
  1766. set_varstate(left,vs_read,[]);
  1767. if inlinenumber=in_low_x then
  1768. v:=torddef(def).low
  1769. else
  1770. v:=torddef(def).high;
  1771. hp:=cordconstnode.create(v,def,true);
  1772. typecheckpass(hp);
  1773. do_lowhigh:=hp;
  1774. end;
  1775. enumdef:
  1776. begin
  1777. set_varstate(left,vs_read,[]);
  1778. if inlinenumber=in_high_x then
  1779. v:=tenumdef(def).maxval
  1780. else
  1781. v:=tenumdef(def).minval;
  1782. enum:=nil;
  1783. for i := 0 to tenumdef(def).symtable.SymList.Count - 1 do
  1784. if tenumsym(tenumdef(def).symtable.SymList[i]).value=v then
  1785. begin
  1786. enum:=tenumsym(tenumdef(def).symtable.SymList[i]);
  1787. break;
  1788. end;
  1789. if not assigned(enum) then
  1790. internalerror(309993)
  1791. else
  1792. hp:=genenumnode(enum);
  1793. do_lowhigh:=hp;
  1794. end;
  1795. else
  1796. internalerror(87);
  1797. end;
  1798. end;
  1799. function getconstrealvalue : bestreal;
  1800. begin
  1801. case left.nodetype of
  1802. ordconstn:
  1803. getconstrealvalue:=tordconstnode(left).value;
  1804. realconstn:
  1805. getconstrealvalue:=trealconstnode(left).value_real;
  1806. else
  1807. internalerror(309992);
  1808. end;
  1809. end;
  1810. procedure setconstrealvalue(r : bestreal);
  1811. begin
  1812. result:=crealconstnode.create(r,pbestrealtype^);
  1813. end;
  1814. function handle_ln_const(r : bestreal) : tnode;
  1815. begin
  1816. if r<=0.0 then
  1817. if floating_point_range_check_error then
  1818. begin
  1819. result:=crealconstnode.create(0,pbestrealtype^);
  1820. CGMessage(type_e_wrong_math_argument)
  1821. end
  1822. else
  1823. begin
  1824. if r=0.0 then
  1825. result:=crealconstnode.create(MathNegInf.Value,pbestrealtype^)
  1826. else
  1827. result:=crealconstnode.create(MathQNaN.Value,pbestrealtype^)
  1828. end
  1829. else
  1830. result:=crealconstnode.create(ln(r),pbestrealtype^)
  1831. end;
  1832. function handle_sqrt_const(r : bestreal) : tnode;
  1833. begin
  1834. if r<0.0 then
  1835. if floating_point_range_check_error then
  1836. begin
  1837. result:=crealconstnode.create(0,pbestrealtype^);
  1838. CGMessage(type_e_wrong_math_argument)
  1839. end
  1840. else
  1841. result:=crealconstnode.create(MathQNaN.Value,pbestrealtype^)
  1842. else
  1843. result:=crealconstnode.create(sqrt(r),pbestrealtype^)
  1844. end;
  1845. function handle_const_sar : tnode;
  1846. var
  1847. vl,vl2 : TConstExprInt;
  1848. bits,shift: integer;
  1849. mask : qword;
  1850. def : tdef;
  1851. begin
  1852. result:=nil;
  1853. if (left.nodetype=ordconstn) or ((left.nodetype=callparan) and (tcallparanode(left).left.nodetype=ordconstn)) then
  1854. begin
  1855. if (left.nodetype=callparan) and
  1856. assigned(tcallparanode(left).right) then
  1857. begin
  1858. vl:=tordconstnode(tcallparanode(left).left).value;
  1859. if forinline then
  1860. case resultdef.size of
  1861. 1,2,4:
  1862. vl:=vl and byte($1f);
  1863. 8:
  1864. vl:=vl and byte($3f);
  1865. else
  1866. internalerror(2013122302);
  1867. end;
  1868. if (tcallparanode(tcallparanode(left).right).left.nodetype=ordconstn) then
  1869. begin
  1870. def:=tcallparanode(tcallparanode(left).right).left.resultdef;
  1871. vl2:=tordconstnode(tcallparanode(tcallparanode(left).right).left).value;
  1872. end
  1873. else if vl=0 then
  1874. begin
  1875. result:=tcallparanode(tcallparanode(left).right).left;
  1876. tcallparanode(tcallparanode(left).right).left:=nil;
  1877. exit;
  1878. end
  1879. else
  1880. exit;
  1881. end
  1882. else
  1883. begin
  1884. def:=left.resultdef;
  1885. vl:=1;
  1886. vl2:=tordconstnode(left).value;
  1887. end;
  1888. bits:=def.size*8;
  1889. shift:=vl.svalue and (bits-1);
  1890. case bits of
  1891. 8:
  1892. mask:=$ff;
  1893. 16:
  1894. mask:=$ffff;
  1895. 32:
  1896. mask:=$ffffffff;
  1897. 64:
  1898. mask:=qword($ffffffffffffffff);
  1899. else
  1900. mask:=qword(1 shl bits)-1;
  1901. end;
  1902. {$push}
  1903. {$r-,q-}
  1904. if shift=0 then
  1905. result:=cordconstnode.create(vl2.svalue,def,false)
  1906. else if vl2.svalue<0 then
  1907. result:=cordconstnode.create(((vl2.svalue shr shift) or (mask shl (bits-shift))) and mask,def,false)
  1908. else
  1909. result:=cordconstnode.create((vl2.svalue shr shift) and mask,def,false);
  1910. {$pop}
  1911. end
  1912. else if (left.nodetype=callparan) and assigned(tcallparanode(left).right) and
  1913. (tcallparanode(tcallparanode(left).right).left.nodetype=ordconstn) then
  1914. begin
  1915. def:=tcallparanode(tcallparanode(left).right).left.resultdef;
  1916. vl2:=tordconstnode(tcallparanode(tcallparanode(left).right).left).value;
  1917. { sar(0,x) is 0 }
  1918. { sar32(ffffffff,x) is ffffffff, etc. }
  1919. if ((vl2=0) or
  1920. ((resultdef.size=1) and (shortint(vl2.svalue)=-1)) or
  1921. ((resultdef.size=2) and (smallint(vl2.svalue)=-1)) or
  1922. ((resultdef.size=4) and (longint(vl2.svalue)=-1)) or
  1923. ((resultdef.size=8) and (int64(vl2.svalue)=-1))) and
  1924. ((cs_opt_level4 in current_settings.optimizerswitches) or
  1925. not might_have_sideeffects(tcallparanode(left).left)) then
  1926. begin
  1927. if vl2=0 then
  1928. result:=cordconstnode.create(0,resultdef,true)
  1929. else
  1930. result:=cordconstnode.create(-1,resultdef,true);
  1931. end;
  1932. end;
  1933. end;
  1934. function handle_const_rox : tnode;
  1935. var
  1936. vl,vl2 : TConstExprInt;
  1937. bits,shift: integer;
  1938. def : tdef;
  1939. begin
  1940. result:=nil;
  1941. if (left.nodetype=ordconstn) or ((left.nodetype=callparan) and (tcallparanode(left).left.nodetype=ordconstn)) then
  1942. begin
  1943. if (left.nodetype=callparan) and
  1944. assigned(tcallparanode(left).right) then
  1945. begin
  1946. vl:=tordconstnode(tcallparanode(left).left).value;
  1947. if forinline then
  1948. case resultdef.size of
  1949. { unlike shifts, for rotates, when masking out the higher bits
  1950. of the rotate count, we go all the way down to byte, because
  1951. it doesn't matter, it produces the same result, since it's a rotate }
  1952. 1:
  1953. vl:=vl and byte($07);
  1954. 2:
  1955. vl:=vl and byte($0f);
  1956. 4:
  1957. vl:=vl and byte($1f);
  1958. 8:
  1959. vl:=vl and byte($3f);
  1960. else
  1961. internalerror(2013122302);
  1962. end;
  1963. if (tcallparanode(tcallparanode(left).right).left.nodetype=ordconstn) then
  1964. begin
  1965. def:=tcallparanode(tcallparanode(left).right).left.resultdef;
  1966. vl2:=tordconstnode(tcallparanode(tcallparanode(left).right).left).value;
  1967. end
  1968. else if vl=0 then
  1969. begin
  1970. result:=tcallparanode(tcallparanode(left).right).left;
  1971. tcallparanode(tcallparanode(left).right).left:=nil;
  1972. exit;
  1973. end
  1974. else
  1975. exit;
  1976. end
  1977. else
  1978. begin
  1979. def:=left.resultdef;
  1980. vl:=1;
  1981. vl2:=tordconstnode(left).value;
  1982. end;
  1983. bits:=def.size*8;
  1984. shift:=vl.svalue and (bits-1);
  1985. {$push}
  1986. {$r-,q-}
  1987. if shift=0 then
  1988. result:=cordconstnode.create(vl2.svalue,def,false)
  1989. else
  1990. case inlinenumber of
  1991. in_ror_x,in_ror_x_y:
  1992. case def.size of
  1993. 1:
  1994. result:=cordconstnode.create(RorByte(Byte(vl2.svalue),shift),def,false);
  1995. 2:
  1996. result:=cordconstnode.create(RorWord(Word(vl2.svalue),shift),def,false);
  1997. 4:
  1998. result:=cordconstnode.create(RorDWord(DWord(vl2.svalue),shift),def,false);
  1999. 8:
  2000. result:=cordconstnode.create(RorQWord(QWord(vl2.svalue),shift),def,false);
  2001. else
  2002. internalerror(2011061903);
  2003. end;
  2004. in_rol_x,in_rol_x_y:
  2005. case def.size of
  2006. 1:
  2007. result:=cordconstnode.create(RolByte(Byte(vl2.svalue),shift),def,false);
  2008. 2:
  2009. result:=cordconstnode.create(RolWord(Word(vl2.svalue),shift),def,false);
  2010. 4:
  2011. result:=cordconstnode.create(RolDWord(DWord(vl2.svalue),shift),def,false);
  2012. 8:
  2013. result:=cordconstnode.create(RolQWord(QWord(vl2.svalue),shift),def,false);
  2014. else
  2015. internalerror(2011061902);
  2016. end;
  2017. else
  2018. internalerror(2011061901);
  2019. end;
  2020. {$pop}
  2021. end
  2022. else if (left.nodetype=callparan) and assigned(tcallparanode(left).right) and
  2023. (tcallparanode(tcallparanode(left).right).left.nodetype=ordconstn) then
  2024. begin
  2025. def:=tcallparanode(tcallparanode(left).right).left.resultdef;
  2026. vl2:=tordconstnode(tcallparanode(tcallparanode(left).right).left).value;
  2027. { rol/ror are unsigned operations, so cut off upper bits }
  2028. case resultdef.size of
  2029. 1:
  2030. vl2:=vl2 and byte($ff);
  2031. 2:
  2032. vl2:=vl2 and word($ffff);
  2033. 4:
  2034. vl2:=vl2 and dword($ffffffff);
  2035. 8:
  2036. vl2:=vl2 and qword($ffffffffffffffff);
  2037. else
  2038. internalerror(2017050101);
  2039. end;
  2040. { rol(0,x) and ror(0,x) are 0 }
  2041. { rol32(ffffffff,x) and ror32(ffffffff,x) are ffffffff, etc. }
  2042. if ((vl2=0) or
  2043. ((resultdef.size=1) and (vl2=$ff)) or
  2044. ((resultdef.size=2) and (vl2=$ffff)) or
  2045. ((resultdef.size=4) and (vl2=$ffffffff)) or
  2046. ((resultdef.size=8) and (vl2.uvalue=qword($ffffffffffffffff)))) and
  2047. ((cs_opt_level4 in current_settings.optimizerswitches) or
  2048. not might_have_sideeffects(tcallparanode(left).left)) then
  2049. result:=cordconstnode.create(vl2,resultdef,true);
  2050. end;
  2051. end;
  2052. var
  2053. hp : tnode;
  2054. vl,vl2 : TConstExprInt;
  2055. vr : bestreal;
  2056. begin { simplify }
  2057. result:=nil;
  2058. { handle intern constant functions in separate case }
  2059. if nf_inlineconst in flags then
  2060. begin
  2061. { no parameters? }
  2062. if not assigned(left) then
  2063. internalerror(200501231)
  2064. else
  2065. begin
  2066. vl:=0;
  2067. vl2:=0; { second parameter Ex: ptr(vl,vl2) }
  2068. case left.nodetype of
  2069. realconstn :
  2070. begin
  2071. { Real functions are all handled with internproc below }
  2072. CGMessage1(type_e_integer_expr_expected,left.resultdef.typename)
  2073. end;
  2074. ordconstn :
  2075. vl:=tordconstnode(left).value;
  2076. callparan :
  2077. begin
  2078. { both exists, else it was not generated }
  2079. vl:=tordconstnode(tcallparanode(left).left).value;
  2080. vl2:=tordconstnode(tcallparanode(tcallparanode(left).right).left).value;
  2081. end;
  2082. else
  2083. CGMessage(parser_e_illegal_expression);
  2084. end;
  2085. case inlinenumber of
  2086. in_const_abs :
  2087. if vl.signed then
  2088. hp:=create_simplified_ord_const(abs(vl.svalue),resultdef,forinline)
  2089. else
  2090. hp:=create_simplified_ord_const(vl.uvalue,resultdef,forinline);
  2091. in_const_sqr:
  2092. if vl.signed then
  2093. hp:=create_simplified_ord_const(sqr(vl.svalue),resultdef,forinline)
  2094. else
  2095. hp:=create_simplified_ord_const(sqr(vl.uvalue),resultdef,forinline);
  2096. in_const_odd :
  2097. hp:=cordconstnode.create(qword(odd(int64(vl))),pasbool1type,true);
  2098. in_const_swap_word :
  2099. hp:=cordconstnode.create((vl and $ff) shl 8+(vl shr 8),left.resultdef,true);
  2100. in_const_swap_long :
  2101. hp:=cordconstnode.create((vl and $ffff) shl 16+(vl shr 16),left.resultdef,true);
  2102. in_const_swap_qword :
  2103. hp:=cordconstnode.create((vl and $ffffffff) shl 32+(vl shr 32),left.resultdef,true);
  2104. in_const_ptr:
  2105. begin
  2106. {Don't construct pointers from negative values.}
  2107. if (vl.signed and (vl.svalue<0)) or (vl2.signed and (vl2.svalue<0)) then
  2108. cgmessage(parser_e_range_check_error);
  2109. {$if defined(i8086)}
  2110. hp:=cpointerconstnode.create((vl2.uvalue shl 16)+vl.uvalue,voidfarpointertype);
  2111. {$elseif defined(i386)}
  2112. hp:=cpointerconstnode.create((vl2.uvalue shl 4)+vl.uvalue,voidnearfspointertype);
  2113. {$else}
  2114. hp:=cpointerconstnode.create((vl2.uvalue shl 4)+vl.uvalue,voidpointertype);
  2115. {$endif}
  2116. end
  2117. else
  2118. internalerror(88);
  2119. end;
  2120. end;
  2121. if hp=nil then
  2122. hp:=cerrornode.create;
  2123. result:=hp;
  2124. end
  2125. else
  2126. begin
  2127. case inlinenumber of
  2128. in_lo_long,
  2129. in_hi_long,
  2130. in_lo_qword,
  2131. in_hi_qword,
  2132. in_lo_word,
  2133. in_hi_word :
  2134. begin
  2135. if left.nodetype=ordconstn then
  2136. begin
  2137. case inlinenumber of
  2138. in_lo_word :
  2139. result:=cordconstnode.create(tordconstnode(left).value and $ff,u8inttype,true);
  2140. in_hi_word :
  2141. result:=cordconstnode.create(tordconstnode(left).value shr 8,u8inttype,true);
  2142. in_lo_long :
  2143. result:=cordconstnode.create(tordconstnode(left).value and $ffff,u16inttype,true);
  2144. in_hi_long :
  2145. result:=cordconstnode.create(tordconstnode(left).value shr 16,u16inttype,true);
  2146. in_lo_qword :
  2147. result:=cordconstnode.create(tordconstnode(left).value and $ffffffff,u32inttype,true);
  2148. in_hi_qword :
  2149. result:=cordconstnode.create(tordconstnode(left).value shr 32,u32inttype,true);
  2150. else
  2151. internalerror(2019050514);
  2152. end;
  2153. end;
  2154. end;
  2155. in_ord_x:
  2156. begin
  2157. case left.resultdef.typ of
  2158. orddef :
  2159. begin
  2160. case torddef(left.resultdef).ordtype of
  2161. pasbool1,
  2162. pasbool8,
  2163. uchar:
  2164. begin
  2165. { change to byte() }
  2166. result:=ctypeconvnode.create_internal(left,u8inttype);
  2167. left:=nil;
  2168. end;
  2169. pasbool16,
  2170. uwidechar :
  2171. begin
  2172. { change to word() }
  2173. result:=ctypeconvnode.create_internal(left,u16inttype);
  2174. left:=nil;
  2175. end;
  2176. pasbool32 :
  2177. begin
  2178. { change to dword() }
  2179. result:=ctypeconvnode.create_internal(left,u32inttype);
  2180. left:=nil;
  2181. end;
  2182. pasbool64 :
  2183. begin
  2184. { change to qword() }
  2185. result:=ctypeconvnode.create_internal(left,u64inttype);
  2186. left:=nil;
  2187. end;
  2188. bool8bit:
  2189. begin
  2190. { change to shortint() }
  2191. result:=ctypeconvnode.create_internal(left,s8inttype);
  2192. left:=nil;
  2193. end;
  2194. bool16bit :
  2195. begin
  2196. { change to smallint() }
  2197. result:=ctypeconvnode.create_internal(left,s16inttype);
  2198. left:=nil;
  2199. end;
  2200. bool32bit :
  2201. begin
  2202. { change to longint() }
  2203. result:=ctypeconvnode.create_internal(left,s32inttype);
  2204. left:=nil;
  2205. end;
  2206. bool64bit :
  2207. begin
  2208. { change to int64() }
  2209. result:=ctypeconvnode.create_internal(left,s64inttype);
  2210. left:=nil;
  2211. end;
  2212. uvoid :
  2213. CGMessage1(type_e_ordinal_expr_expected,left.resultdef.typename);
  2214. else
  2215. begin
  2216. { all other orddef need no transformation }
  2217. result:=left;
  2218. left:=nil;
  2219. end;
  2220. end;
  2221. end;
  2222. enumdef :
  2223. begin
  2224. result:=ctypeconvnode.create_internal(left,s32inttype);
  2225. left:=nil;
  2226. end;
  2227. pointerdef :
  2228. begin
  2229. if m_mac in current_settings.modeswitches then
  2230. begin
  2231. result:=ctypeconvnode.create_internal(left,ptruinttype);
  2232. left:=nil;
  2233. end
  2234. end;
  2235. else
  2236. internalerror(2019050513);
  2237. end;
  2238. (*
  2239. if (left.nodetype=ordconstn) then
  2240. begin
  2241. result:=cordconstnode.create(
  2242. tordconstnode(left).value,sinttype,true);
  2243. end
  2244. else if (m_mac in current_settings.modeswitches) and
  2245. (left.ndoetype=pointerconstn) then
  2246. result:=cordconstnode.create(
  2247. tpointerconstnode(left).value,ptruinttype,true);
  2248. *)
  2249. end;
  2250. in_chr_byte:
  2251. begin
  2252. { convert to explicit char() }
  2253. result:=ctypeconvnode.create_internal(left,cansichartype);
  2254. left:=nil;
  2255. end;
  2256. in_length_x:
  2257. begin
  2258. case left.resultdef.typ of
  2259. stringdef :
  2260. begin
  2261. if (left.nodetype=stringconstn) then
  2262. begin
  2263. result:=cordconstnode.create(
  2264. tstringconstnode(left).len,sinttype,true);
  2265. end;
  2266. end;
  2267. orddef :
  2268. begin
  2269. { length of char is always one }
  2270. if is_char(left.resultdef) or
  2271. is_widechar(left.resultdef) then
  2272. begin
  2273. result:=cordconstnode.create(1,sinttype,false);
  2274. end
  2275. end;
  2276. arraydef :
  2277. begin
  2278. if (left.nodetype=stringconstn) then
  2279. begin
  2280. result:=cordconstnode.create(
  2281. tstringconstnode(left).len,sinttype,true);
  2282. end
  2283. else if not is_open_array(left.resultdef) and
  2284. not is_array_of_const(left.resultdef) and
  2285. not is_dynamic_array(left.resultdef) then
  2286. result:=cordconstnode.create(tarraydef(left.resultdef).highrange-
  2287. tarraydef(left.resultdef).lowrange+1,
  2288. sinttype,true);
  2289. end;
  2290. else
  2291. ;
  2292. end;
  2293. end;
  2294. in_assigned_x:
  2295. begin
  2296. if is_constnode(tcallparanode(left).left) or
  2297. (tcallparanode(left).left.nodetype = pointerconstn) then
  2298. begin
  2299. { let an add node figure it out }
  2300. result:=caddnode.create(unequaln,tcallparanode(left).left,cnilnode.create);
  2301. tcallparanode(left).left := nil;
  2302. end;
  2303. end;
  2304. in_pred_x,
  2305. in_succ_x:
  2306. begin
  2307. case left.nodetype of
  2308. ordconstn:
  2309. begin
  2310. if inlinenumber=in_succ_x then
  2311. vl:=tordconstnode(left).value+1
  2312. else
  2313. vl:=tordconstnode(left).value-1;
  2314. if is_integer(left.resultdef) then
  2315. { the type of the original integer constant is irrelevant,
  2316. it should be automatically adapted to the new value
  2317. (except when inlining) }
  2318. result:=create_simplified_ord_const(vl,resultdef,forinline)
  2319. else
  2320. { check the range for enums, chars, booleans }
  2321. result:=cordconstnode.create(vl,left.resultdef,not(nf_internal in flags))
  2322. end;
  2323. addn,
  2324. subn:
  2325. begin
  2326. { fold succ/pred in child add/sub nodes with a constant if possible:
  2327. - no overflow/range checking
  2328. - equal types
  2329. }
  2330. if ([cs_check_overflow,cs_check_range]*current_settings.localswitches)=[] then
  2331. begin
  2332. if inlinenumber=in_succ_x then
  2333. vl:=1
  2334. else
  2335. vl:=-1;
  2336. if (taddnode(left).left.nodetype=ordconstn) and equal_defs(resultdef,taddnode(left).left.resultdef) then
  2337. begin
  2338. tordconstnode(taddnode(left).left).value:=tordconstnode(taddnode(left).left).value+vl;
  2339. result:=left;
  2340. left:=nil;
  2341. end
  2342. else if (taddnode(left).right.nodetype=ordconstn) and equal_defs(resultdef,taddnode(left).right.resultdef) then
  2343. begin
  2344. if left.nodetype=subn then
  2345. tordconstnode(taddnode(left).right).value:=tordconstnode(taddnode(left).right).value-vl
  2346. else
  2347. tordconstnode(taddnode(left).right).value:=tordconstnode(taddnode(left).right).value+vl;
  2348. result:=left;
  2349. left:=nil;
  2350. end;
  2351. end;
  2352. end;
  2353. else
  2354. ;
  2355. end;
  2356. end;
  2357. in_low_x,
  2358. in_high_x:
  2359. begin
  2360. case left.resultdef.typ of
  2361. orddef,
  2362. enumdef:
  2363. begin
  2364. result:=do_lowhigh(left.resultdef);
  2365. end;
  2366. setdef:
  2367. begin
  2368. result:=do_lowhigh(tsetdef(left.resultdef).elementdef);
  2369. end;
  2370. arraydef:
  2371. begin
  2372. if (inlinenumber=in_low_x) then
  2373. begin
  2374. result:=cordconstnode.create(int64(tarraydef(
  2375. left.resultdef).lowrange),tarraydef(left.resultdef).rangedef,true);
  2376. end
  2377. else if not is_open_array(left.resultdef) and
  2378. not is_array_of_const(left.resultdef) and
  2379. not is_dynamic_array(left.resultdef) then
  2380. result:=cordconstnode.create(int64(tarraydef(left.resultdef).highrange),
  2381. tarraydef(left.resultdef).rangedef,true);
  2382. end;
  2383. stringdef:
  2384. begin
  2385. if inlinenumber=in_low_x then
  2386. begin
  2387. if is_dynamicstring(left.resultdef) and
  2388. not(cs_zerobasedstrings in current_settings.localswitches) then
  2389. result:=cordconstnode.create(1,u8inttype,false)
  2390. else
  2391. result:=cordconstnode.create(0,u8inttype,false);
  2392. end
  2393. else if not is_dynamicstring(left.resultdef) then
  2394. result:=cordconstnode.create(tstringdef(left.resultdef).len,u8inttype,true)
  2395. end;
  2396. undefineddef:
  2397. begin
  2398. result:=cordconstnode.create(0,u8inttype,false);
  2399. end;
  2400. errordef:
  2401. ;
  2402. else
  2403. internalerror(2019050512);
  2404. end;
  2405. end;
  2406. in_exp_real :
  2407. begin
  2408. if left.nodetype in [ordconstn,realconstn] then
  2409. begin
  2410. result:=crealconstnode.create(exp(getconstrealvalue),pbestrealtype^);
  2411. if (trealconstnode(result).value_real=MathInf.Value) and
  2412. floating_point_range_check_error then
  2413. begin
  2414. result:=crealconstnode.create(0,pbestrealtype^);
  2415. CGMessage(parser_e_range_check_error);
  2416. end;
  2417. end
  2418. end;
  2419. in_trunc_real :
  2420. begin
  2421. if left.nodetype in [ordconstn,realconstn] then
  2422. begin
  2423. vr:=getconstrealvalue;
  2424. if (vr>=9223372036854775807.99) or (vr<=-9223372036854775808.0) then
  2425. begin
  2426. message3(type_e_range_check_error_bounds,realtostr(vr),'-9223372036854775808.0','9223372036854775807.99..');
  2427. result:=cordconstnode.create(1,s64inttype,false)
  2428. end
  2429. else
  2430. result:=cordconstnode.create(trunc(vr),s64inttype,true)
  2431. end
  2432. end;
  2433. in_round_real :
  2434. begin
  2435. { can't evaluate while inlining, may depend on fpu setting }
  2436. if (not forinline) and
  2437. (left.nodetype in [ordconstn,realconstn]) then
  2438. begin
  2439. vr:=getconstrealvalue;
  2440. if (vr>=9223372036854775807.5) or (vr<=-9223372036854775808.5) then
  2441. begin
  2442. message3(type_e_range_check_error_bounds,realtostr(vr),'-9223372036854775808.49..','9223372036854775807.49..');
  2443. result:=cordconstnode.create(1,s64inttype,false)
  2444. end
  2445. else
  2446. result:=cordconstnode.create(round(vr),s64inttype,true)
  2447. end
  2448. end;
  2449. in_frac_real :
  2450. begin
  2451. if left.nodetype in [ordconstn,realconstn] then
  2452. setconstrealvalue(frac(getconstrealvalue))
  2453. end;
  2454. in_int_real :
  2455. begin
  2456. if left.nodetype in [ordconstn,realconstn] then
  2457. setconstrealvalue(int(getconstrealvalue));
  2458. end;
  2459. in_pi_real :
  2460. begin
  2461. if block_type=bt_const then
  2462. setconstrealvalue(getpi)
  2463. end;
  2464. in_cos_real :
  2465. begin
  2466. if left.nodetype in [ordconstn,realconstn] then
  2467. setconstrealvalue(cos(getconstrealvalue))
  2468. end;
  2469. in_sin_real :
  2470. begin
  2471. if left.nodetype in [ordconstn,realconstn] then
  2472. setconstrealvalue(sin(getconstrealvalue))
  2473. end;
  2474. in_arctan_real :
  2475. begin
  2476. if left.nodetype in [ordconstn,realconstn] then
  2477. setconstrealvalue(arctan(getconstrealvalue))
  2478. end;
  2479. in_abs_real :
  2480. begin
  2481. if left.nodetype in [ordconstn,realconstn] then
  2482. setconstrealvalue(abs(getconstrealvalue))
  2483. end;
  2484. in_abs_long:
  2485. begin
  2486. if left.nodetype=ordconstn then
  2487. begin
  2488. if tordconstnode(left).value<0 then
  2489. result:=cordconstnode.create((-tordconstnode(left).value),resultdef,false)
  2490. else
  2491. result:=cordconstnode.create((tordconstnode(left).value),resultdef,false);
  2492. end
  2493. end;
  2494. in_sqr_real :
  2495. begin
  2496. if left.nodetype in [ordconstn,realconstn] then
  2497. setconstrealvalue(sqr(getconstrealvalue))
  2498. end;
  2499. in_sqrt_real :
  2500. begin
  2501. if left.nodetype in [ordconstn,realconstn] then
  2502. result:=handle_sqrt_const(getconstrealvalue);
  2503. end;
  2504. in_ln_real :
  2505. begin
  2506. if left.nodetype in [ordconstn,realconstn] then
  2507. result:=handle_ln_const(getconstrealvalue);
  2508. end;
  2509. in_assert_x_y :
  2510. begin
  2511. if not(cs_do_assertion in current_settings.localswitches) then
  2512. { we need a valid node, so insert a nothingn }
  2513. result:=cnothingnode.create;
  2514. end;
  2515. in_sar_x,
  2516. in_sar_x_y :
  2517. begin
  2518. result:=handle_const_sar;
  2519. end;
  2520. in_rol_x,
  2521. in_rol_x_y,
  2522. in_ror_x,
  2523. in_ror_x_y :
  2524. result:=handle_const_rox;
  2525. in_bsf_x:
  2526. begin
  2527. if left.nodetype=ordconstn then
  2528. begin
  2529. case left.resultdef.size of
  2530. 1:
  2531. result:=cordconstnode.create(BsfByte(Byte(tordconstnode(left).value.uvalue)),resultdef,false);
  2532. 2:
  2533. result:=cordconstnode.create(BsfWord(Word(tordconstnode(left).value.uvalue)),resultdef,false);
  2534. 4:
  2535. result:=cordconstnode.create(BsfDWord(DWord(tordconstnode(left).value.uvalue)),resultdef,false);
  2536. 8:
  2537. result:=cordconstnode.create(BsfQWord(QWord(tordconstnode(left).value.uvalue)),resultdef,false);
  2538. else
  2539. internalerror(2017042401);
  2540. end;
  2541. end;
  2542. end;
  2543. in_bsr_x :
  2544. begin
  2545. if left.nodetype=ordconstn then
  2546. begin
  2547. case left.resultdef.size of
  2548. 1:
  2549. result:=cordconstnode.create(BsrByte(Byte(tordconstnode(left).value.uvalue)),resultdef,false);
  2550. 2:
  2551. result:=cordconstnode.create(BsrWord(Word(tordconstnode(left).value.uvalue)),resultdef,false);
  2552. 4:
  2553. result:=cordconstnode.create(BsrDWord(DWord(tordconstnode(left).value.uvalue)),resultdef,false);
  2554. 8:
  2555. result:=cordconstnode.create(BsrQWord(QWord(tordconstnode(left).value.uvalue)),resultdef,false);
  2556. else
  2557. internalerror(2017042401);
  2558. end;
  2559. end;
  2560. end;
  2561. in_popcnt_x :
  2562. begin
  2563. if left.nodetype=ordconstn then
  2564. begin
  2565. result:=cordconstnode.create(PopCnt(tordconstnode(left).value),resultdef,false);
  2566. end;
  2567. end;
  2568. else
  2569. ;
  2570. end;
  2571. end;
  2572. end;
  2573. function tinlinenode.pass_typecheck:tnode;
  2574. procedure setfloatresultdef;
  2575. var
  2576. hnode: tnode;
  2577. begin
  2578. { System unit declares internal functions like this:
  2579. function foo(x: valreal): valreal; [internproc: number];
  2580. Calls to such functions are initially processed by callnode,
  2581. which typechecks the arguments, possibly inserting conversion to valreal.
  2582. To handle smaller types without excess precision, we need to remove
  2583. these extra typecasts. }
  2584. if (left.nodetype=typeconvn) and
  2585. (ttypeconvnode(left).left.resultdef.typ=floatdef) and
  2586. (left.flags*[nf_explicit,nf_internal]=[]) and
  2587. (tfloatdef(ttypeconvnode(left).left.resultdef).floattype in [s32real,s64real,s80real,sc80real,s128real]) then
  2588. begin
  2589. hnode:=ttypeconvnode(left).left;
  2590. ttypeconvnode(left).left:=nil;
  2591. left.free;
  2592. left:=hnode;
  2593. resultdef:=left.resultdef;
  2594. end
  2595. else if (left.resultdef.typ=floatdef) and
  2596. (tfloatdef(left.resultdef).floattype in [s32real,s64real,s80real,sc80real,s128real]) then
  2597. resultdef:=left.resultdef
  2598. else
  2599. begin
  2600. if (left.nodetype <> ordconstn) then
  2601. inserttypeconv(left,pbestrealtype^);
  2602. resultdef:=pbestrealtype^;
  2603. end;
  2604. end;
  2605. procedure handle_pack_unpack;
  2606. var
  2607. source, target, index: tcallparanode;
  2608. unpackedarraydef, packedarraydef: tarraydef;
  2609. tempindex: TConstExprInt;
  2610. begin
  2611. resultdef:=voidtype;
  2612. unpackedarraydef := nil;
  2613. packedarraydef := nil;
  2614. source := tcallparanode(left);
  2615. if (inlinenumber = in_unpack_x_y_z) then
  2616. begin
  2617. target := tcallparanode(source.right);
  2618. index := tcallparanode(target.right);
  2619. { source must be a packed array }
  2620. if not is_packed_array(source.left.resultdef) then
  2621. CGMessagePos2(source.left.fileinfo,type_e_got_expected_packed_array,'1',source.left.resultdef.typename)
  2622. else
  2623. packedarraydef := tarraydef(source.left.resultdef);
  2624. { target can be any kind of array, as long as it's not packed }
  2625. if (target.left.resultdef.typ <> arraydef) or
  2626. is_packed_array(target.left.resultdef) then
  2627. CGMessagePos2(target.left.fileinfo,type_e_got_expected_unpacked_array,'2',target.left.resultdef.typename)
  2628. else
  2629. unpackedarraydef := tarraydef(target.left.resultdef);
  2630. end
  2631. else
  2632. begin
  2633. index := tcallparanode(source.right);
  2634. target := tcallparanode(index.right);
  2635. { source can be any kind of array, as long as it's not packed }
  2636. if (source.left.resultdef.typ <> arraydef) or
  2637. is_packed_array(source.left.resultdef) then
  2638. CGMessagePos2(source.left.fileinfo,type_e_got_expected_unpacked_array,'1',source.left.resultdef.typename)
  2639. else
  2640. unpackedarraydef := tarraydef(source.left.resultdef);
  2641. { target must be a packed array }
  2642. if not is_packed_array(target.left.resultdef) then
  2643. CGMessagePos2(target.left.fileinfo,type_e_got_expected_packed_array,'3',target.left.resultdef.typename)
  2644. else
  2645. packedarraydef := tarraydef(target.left.resultdef);
  2646. end;
  2647. if assigned(unpackedarraydef) then
  2648. begin
  2649. { index must be compatible with the unpacked array's indextype }
  2650. inserttypeconv(index.left,unpackedarraydef.rangedef);
  2651. { range check at compile time if possible }
  2652. if assigned(packedarraydef) and
  2653. (index.left.nodetype = ordconstn) and
  2654. not is_special_array(unpackedarraydef) then
  2655. begin
  2656. testrange(unpackedarraydef,tordconstnode(index.left).value,false,false);
  2657. tempindex := tordconstnode(index.left).value + packedarraydef.highrange-packedarraydef.lowrange;
  2658. testrange(unpackedarraydef,tempindex,false,false);
  2659. end;
  2660. end;
  2661. { source array is read and must be valid }
  2662. set_varstate(source.left,vs_read,[vsf_must_be_valid]);
  2663. { target array is written }
  2664. valid_for_assignment(target.left,true);
  2665. set_varstate(target.left,vs_written,[]);
  2666. { index in the unpacked array is read and must be valid }
  2667. set_varstate(index.left,vs_read,[vsf_must_be_valid]);
  2668. { if the size of the arrays is 0 (array of empty records), }
  2669. { do nothing }
  2670. if (source.resultdef.size = 0) then
  2671. result:=cnothingnode.create;
  2672. end;
  2673. function handle_objc_encode: tnode;
  2674. var
  2675. encodedtype: ansistring;
  2676. errordef: tdef;
  2677. begin
  2678. encodedtype:='';
  2679. if not objctryencodetype(left.resultdef,encodedtype,errordef) then
  2680. Message1(type_e_objc_type_unsupported,errordef.typename);
  2681. result:=cstringconstnode.createpchar(ansistring2pchar(encodedtype),length(encodedtype),nil);
  2682. end;
  2683. var
  2684. hightree,
  2685. hp : tnode;
  2686. temp_pnode: pnode;
  2687. begin
  2688. result:=nil;
  2689. { when handling writeln "left" contains no valid address }
  2690. if assigned(left) then
  2691. begin
  2692. if left.nodetype=callparan then
  2693. tcallparanode(left).get_paratype
  2694. else
  2695. typecheckpass(left);
  2696. end;
  2697. if not(nf_inlineconst in flags) then
  2698. begin
  2699. case inlinenumber of
  2700. in_lo_long,
  2701. in_hi_long,
  2702. in_lo_qword,
  2703. in_hi_qword,
  2704. in_lo_word,
  2705. in_hi_word :
  2706. begin
  2707. { give warning for incompatibility with tp and delphi }
  2708. if (inlinenumber in [in_lo_long,in_hi_long,in_lo_qword,in_hi_qword]) and
  2709. ((m_tp7 in current_settings.modeswitches) or
  2710. (m_delphi in current_settings.modeswitches)) then
  2711. CGMessage(type_w_maybe_wrong_hi_lo);
  2712. set_varstate(left,vs_read,[vsf_must_be_valid]);
  2713. if not is_integer(left.resultdef) then
  2714. CGMessage1(type_e_integer_expr_expected,left.resultdef.typename);
  2715. case inlinenumber of
  2716. in_lo_word,
  2717. in_hi_word :
  2718. resultdef:=u8inttype;
  2719. in_lo_long,
  2720. in_hi_long :
  2721. resultdef:=u16inttype;
  2722. in_lo_qword,
  2723. in_hi_qword :
  2724. resultdef:=u32inttype;
  2725. else
  2726. ;
  2727. end;
  2728. end;
  2729. in_sizeof_x:
  2730. begin
  2731. { the constant evaluation of in_sizeof_x happens in pexpr where possible }
  2732. set_varstate(left,vs_read,[]);
  2733. if (left.resultdef.typ<>undefineddef) and
  2734. paramanager.push_high_param(vs_value,left.resultdef,current_procinfo.procdef.proccalloption) then
  2735. begin
  2736. { this should be an open array or array of const, both of
  2737. which can only be simple load nodes of parameters }
  2738. if left.nodetype<>loadn then
  2739. internalerror(2014120701);
  2740. hightree:=load_high_value_node(tparavarsym(tloadnode(left).symtableentry));
  2741. if assigned(hightree) then
  2742. begin
  2743. hp:=caddnode.create(addn,hightree,
  2744. cordconstnode.create(1,sinttype,false));
  2745. if (left.resultdef.typ=arraydef) then
  2746. if not is_packed_array(tarraydef(left.resultdef)) then
  2747. begin
  2748. if (tarraydef(left.resultdef).elesize<>1) then
  2749. hp:=caddnode.create(muln,hp,cordconstnode.create(tarraydef(
  2750. left.resultdef).elesize,sinttype,true));
  2751. end
  2752. else if (tarraydef(left.resultdef).elepackedbitsize <> 8) then
  2753. begin
  2754. { no packed open array support yet }
  2755. if (hp.nodetype <> ordconstn) then
  2756. internalerror(2006081511);
  2757. hp.free;
  2758. hp := cordconstnode.create(left.resultdef.size,sinttype,true);
  2759. {
  2760. hp:=
  2761. ctypeconvnode.create_explicit(sinttype,
  2762. cmoddivnode.create(divn,
  2763. caddnode.create(addn,
  2764. caddnode.create(muln,hp,cordconstnode.create(tarraydef(
  2765. left.resultdef).elepackedbitsize,s64inttype,true)),
  2766. cordconstnode.create(a,s64inttype,true)),
  2767. cordconstnode.create(8,s64inttype,true)),
  2768. sinttype);
  2769. }
  2770. end;
  2771. result:=hp;
  2772. end;
  2773. end
  2774. else
  2775. resultdef:=sinttype;
  2776. end;
  2777. in_typeof_x:
  2778. begin
  2779. if target_info.system in systems_managed_vm then
  2780. message(parser_e_feature_unsupported_for_vm);
  2781. typecheckpass(left);
  2782. set_varstate(left,vs_read,[]);
  2783. if (left.resultdef.typ=objectdef) and
  2784. not(oo_has_vmt in tobjectdef(left.resultdef).objectoptions) then
  2785. message(type_e_typeof_requires_vmt);
  2786. resultdef:=voidpointertype;
  2787. end;
  2788. in_ord_x:
  2789. begin
  2790. set_varstate(left,vs_read,[vsf_must_be_valid]);
  2791. case left.resultdef.typ of
  2792. orddef,
  2793. enumdef :
  2794. ;
  2795. pointerdef :
  2796. begin
  2797. if not(m_mac in current_settings.modeswitches) then
  2798. CGMessage1(type_e_ordinal_expr_expected,left.resultdef.typename);
  2799. end
  2800. else
  2801. CGMessage1(type_e_ordinal_expr_expected,left.resultdef.typename);
  2802. end;
  2803. end;
  2804. in_chr_byte:
  2805. begin
  2806. set_varstate(left,vs_read,[vsf_must_be_valid]);
  2807. end;
  2808. in_length_x:
  2809. begin
  2810. if ((left.resultdef.typ=arraydef) and
  2811. (not is_special_array(left.resultdef) or
  2812. is_open_array(left.resultdef))) or
  2813. (left.resultdef.typ=orddef) then
  2814. set_varstate(left,vs_read,[])
  2815. else
  2816. set_varstate(left,vs_read,[vsf_must_be_valid]);
  2817. case left.resultdef.typ of
  2818. variantdef:
  2819. begin
  2820. inserttypeconv(left,getansistringdef);
  2821. end;
  2822. stringdef :
  2823. begin
  2824. { we don't need string convertions here, }
  2825. { except if from widestring to ansistring }
  2826. { and vice versa (that can change the }
  2827. { length) }
  2828. if (left.nodetype=typeconvn) and
  2829. (ttypeconvnode(left).left.resultdef.typ=stringdef) and
  2830. not(is_wide_or_unicode_string(left.resultdef) xor
  2831. is_wide_or_unicode_string(ttypeconvnode(left).left.resultdef)) then
  2832. begin
  2833. hp:=ttypeconvnode(left).left;
  2834. ttypeconvnode(left).left:=nil;
  2835. left.free;
  2836. left:=hp;
  2837. end;
  2838. end;
  2839. orddef :
  2840. begin
  2841. { will be handled in simplify }
  2842. if not is_char(left.resultdef) and
  2843. not is_widechar(left.resultdef) then
  2844. CGMessage(type_e_mismatch);
  2845. end;
  2846. pointerdef :
  2847. begin
  2848. if is_pchar(left.resultdef) then
  2849. begin
  2850. hp := ccallparanode.create(left,nil);
  2851. result := ccallnode.createintern('fpc_pchar_length',hp);
  2852. { make sure the left node doesn't get disposed, since it's }
  2853. { reused in the new node (JM) }
  2854. left:=nil;
  2855. exit;
  2856. end
  2857. else if is_pwidechar(left.resultdef) then
  2858. begin
  2859. hp := ccallparanode.create(left,nil);
  2860. result := ccallnode.createintern('fpc_pwidechar_length',hp);
  2861. { make sure the left node doesn't get disposed, since it's }
  2862. { reused in the new node (JM) }
  2863. left:=nil;
  2864. exit;
  2865. end
  2866. else
  2867. CGMessage(type_e_mismatch);
  2868. end;
  2869. arraydef :
  2870. begin
  2871. if is_open_array(left.resultdef) or
  2872. is_array_of_const(left.resultdef) then
  2873. begin
  2874. hightree:=load_high_value_node(tparavarsym(tloadnode(left).symtableentry));
  2875. if assigned(hightree) then
  2876. result:=caddnode.create(addn,hightree,
  2877. cordconstnode.create(1,sinttype,false));
  2878. exit;
  2879. end
  2880. { Length() for dynamic arrays is inlined }
  2881. else
  2882. begin
  2883. { will be handled in simplify }
  2884. end;
  2885. end;
  2886. undefineddef :
  2887. begin
  2888. if not (df_generic in current_procinfo.procdef.defoptions) then
  2889. CGMessage(type_e_mismatch);
  2890. { otherwise nothing }
  2891. end;
  2892. else
  2893. CGMessage(type_e_mismatch);
  2894. end;
  2895. { shortstring return an 8 bit value as the length
  2896. is the first byte of the string }
  2897. if is_shortstring(left.resultdef) then
  2898. resultdef:=u8inttype
  2899. else
  2900. resultdef:=ossinttype;
  2901. end;
  2902. in_typeinfo_x:
  2903. begin
  2904. if target_info.system in systems_managed_vm then
  2905. message(parser_e_feature_unsupported_for_vm);
  2906. if (left.resultdef.typ=enumdef) and
  2907. (tenumdef(left.resultdef).has_jumps) then
  2908. CGMessage(type_e_no_type_info);
  2909. set_varstate(left,vs_read,[vsf_must_be_valid]);
  2910. resultdef:=voidpointertype;
  2911. end;
  2912. in_gettypekind_x:
  2913. begin
  2914. if target_info.system in systems_managed_vm then
  2915. message(parser_e_feature_unsupported_for_vm);
  2916. if (left.resultdef.typ=enumdef) and
  2917. (tenumdef(left.resultdef).has_jumps) then
  2918. CGMessage(type_e_no_type_info);
  2919. set_varstate(left,vs_read,[vsf_must_be_valid]);
  2920. resultdef:=typekindtype;
  2921. end;
  2922. in_assigned_x:
  2923. begin
  2924. { the parser has already made sure the expression is valid }
  2925. { in case of a complex procvar, only check the "code" pointer }
  2926. if (tcallparanode(left).left.resultdef.typ=procvardef) and
  2927. not tprocvardef(tcallparanode(left).left.resultdef).is_addressonly then
  2928. begin
  2929. inserttypeconv_explicit(tcallparanode(left).left,search_system_type('TMETHOD').typedef);
  2930. tcallparanode(left).left:=csubscriptnode.create(tsym(tabstractrecorddef(tcallparanode(left).left.resultdef).symtable.find('CODE')),tcallparanode(left).left);
  2931. tcallparanode(left).get_paratype;
  2932. end;
  2933. { Postpone conversion into addnode until firstpass, so targets
  2934. may override first_assigned and insert specific code. }
  2935. set_varstate(tcallparanode(left).left,vs_read,[vsf_must_be_valid]);
  2936. resultdef:=pasbool1type;
  2937. end;
  2938. in_ofs_x :
  2939. internalerror(2000101001);
  2940. in_seg_x :
  2941. begin
  2942. result := typecheck_seg;
  2943. end;
  2944. in_pred_x,
  2945. in_succ_x:
  2946. begin
  2947. set_varstate(left,vs_read,[vsf_must_be_valid]);
  2948. resultdef:=left.resultdef;
  2949. if is_ordinal(resultdef) or is_typeparam(resultdef) then
  2950. begin
  2951. if (resultdef.typ=enumdef) and
  2952. (tenumdef(resultdef).has_jumps) and
  2953. not(m_delphi in current_settings.modeswitches) and
  2954. not(nf_internal in flags) then
  2955. CGMessage(type_e_succ_and_pred_enums_with_assign_not_possible);
  2956. end
  2957. else
  2958. CGMessage(type_e_ordinal_expr_expected)
  2959. end;
  2960. in_copy_x:
  2961. result:=handle_copy;
  2962. in_initialize_x,
  2963. in_finalize_x:
  2964. begin
  2965. { inlined from pinline }
  2966. internalerror(200204231);
  2967. end;
  2968. in_setlength_x:
  2969. begin
  2970. result:=handle_setlength;
  2971. end;
  2972. in_inc_x,
  2973. in_dec_x:
  2974. begin
  2975. resultdef:=voidtype;
  2976. if not(df_generic in current_procinfo.procdef.defoptions) then
  2977. begin
  2978. if assigned(left) then
  2979. begin
  2980. { first param must be var }
  2981. valid_for_var(tcallparanode(left).left,true);
  2982. set_varstate(tcallparanode(left).left,vs_readwritten,[vsf_must_be_valid]);
  2983. if (left.resultdef.typ in [enumdef,pointerdef]) or
  2984. is_ordinal(left.resultdef) or
  2985. is_currency(left.resultdef) then
  2986. begin
  2987. { value of left gets changed -> must be unique }
  2988. set_unique(tcallparanode(left).left);
  2989. { two paras ? }
  2990. if assigned(tcallparanode(left).right) then
  2991. begin
  2992. if is_integer(tcallparanode(left).right.resultdef) then
  2993. begin
  2994. set_varstate(tcallparanode(tcallparanode(left).right).left,vs_read,[vsf_must_be_valid]);
  2995. { when range/overflow checking is on, we
  2996. convert this to a regular add, and for proper
  2997. checking we need the original type }
  2998. if ([cs_check_range,cs_check_overflow]*current_settings.localswitches=[]) then
  2999. if (tcallparanode(left).left.resultdef.typ=pointerdef) then
  3000. begin
  3001. { don't convert values added to pointers into the pointer types themselves,
  3002. because that will turn signed values into unsigned ones, which then
  3003. goes wrong when they have to be multiplied with the size of the elements
  3004. to which the pointer points in ncginl (mantis #17342) }
  3005. if is_signed(tcallparanode(tcallparanode(left).right).left.resultdef) then
  3006. inserttypeconv(tcallparanode(tcallparanode(left).right).left,tpointerdef(tcallparanode(left).left.resultdef).pointer_arithmetic_int_type)
  3007. else
  3008. inserttypeconv(tcallparanode(tcallparanode(left).right).left,tpointerdef(tcallparanode(left).left.resultdef).pointer_arithmetic_uint_type)
  3009. end
  3010. else if is_integer(tcallparanode(left).left.resultdef) then
  3011. inserttypeconv(tcallparanode(tcallparanode(left).right).left,tcallparanode(left).left.resultdef)
  3012. else
  3013. inserttypeconv_internal(tcallparanode(tcallparanode(left).right).left,tcallparanode(left).left.resultdef);
  3014. if assigned(tcallparanode(tcallparanode(left).right).right) then
  3015. { should be handled in the parser (JM) }
  3016. internalerror(2006020901);
  3017. end
  3018. else
  3019. CGMessagePos(tcallparanode(left).right.fileinfo,type_e_ordinal_expr_expected);
  3020. end;
  3021. end
  3022. { generic type parameter? }
  3023. else if is_typeparam(left.resultdef) then
  3024. begin
  3025. result:=cnothingnode.create;
  3026. exit;
  3027. end
  3028. else
  3029. begin
  3030. hp:=self;
  3031. if isunaryoverloaded(hp,[]) then
  3032. begin
  3033. { inc(rec) and dec(rec) assigns result value to argument }
  3034. result:=cassignmentnode.create(tcallparanode(left).left.getcopy,hp);
  3035. exit;
  3036. end
  3037. else
  3038. CGMessagePos(left.fileinfo,type_e_ordinal_expr_expected);
  3039. end;
  3040. end
  3041. else
  3042. CGMessagePos(fileinfo,type_e_mismatch);
  3043. end;
  3044. end;
  3045. in_and_assign_x_y,
  3046. in_or_assign_x_y,
  3047. in_xor_assign_x_y,
  3048. in_sar_assign_x_y,
  3049. in_shl_assign_x_y,
  3050. in_shr_assign_x_y,
  3051. in_rol_assign_x_y,
  3052. in_ror_assign_x_y:
  3053. begin
  3054. resultdef:=voidtype;
  3055. if not(df_generic in current_procinfo.procdef.defoptions) then
  3056. begin
  3057. { first parameter must exist }
  3058. if not assigned(left) or (left.nodetype<>callparan) then
  3059. internalerror(2017032501);
  3060. { second parameter must exist }
  3061. if not assigned(tcallparanode(left).right) or (tcallparanode(left).right.nodetype<>callparan) then
  3062. internalerror(2017032502);
  3063. { third parameter must NOT exist }
  3064. if assigned(tcallparanode(tcallparanode(left).right).right) then
  3065. internalerror(2017032503);
  3066. valid_for_var(tcallparanode(tcallparanode(left).right).left,true);
  3067. set_varstate(tcallparanode(tcallparanode(left).right).left,vs_readwritten,[vsf_must_be_valid]);
  3068. if is_integer(tcallparanode(left).right.resultdef) then
  3069. begin
  3070. { value of right gets changed -> must be unique }
  3071. set_unique(tcallparanode(tcallparanode(left).right).left);
  3072. if is_integer(left.resultdef) then
  3073. begin
  3074. set_varstate(tcallparanode(left).left,vs_read,[vsf_must_be_valid]);
  3075. { these nodes shouldn't be created, when range checking is on }
  3076. if [cs_check_range,cs_check_overflow]*localswitches<>[] then
  3077. internalerror(2017032701);
  3078. if inlinenumber in [in_sar_assign_x_y,in_shl_assign_x_y,in_shr_assign_x_y,in_rol_assign_x_y,in_ror_assign_x_y] then
  3079. inserttypeconv(tcallparanode(left).left,sinttype)
  3080. else
  3081. inserttypeconv(tcallparanode(left).left,tcallparanode(tcallparanode(left).right).left.resultdef);
  3082. end
  3083. else
  3084. CGMessagePos(left.fileinfo,type_e_ordinal_expr_expected);
  3085. end
  3086. { generic type parameter? }
  3087. else if is_typeparam(tcallparanode(left).right.resultdef) then
  3088. begin
  3089. result:=cnothingnode.create;
  3090. exit;
  3091. end
  3092. else
  3093. CGMessagePos(tcallparanode(left).right.fileinfo,type_e_ordinal_expr_expected);
  3094. end;
  3095. end;
  3096. in_neg_assign_x,
  3097. in_not_assign_x:
  3098. begin
  3099. resultdef:=voidtype;
  3100. if not(df_generic in current_procinfo.procdef.defoptions) then
  3101. begin
  3102. valid_for_var(left,true);
  3103. set_varstate(left,vs_readwritten,[vsf_must_be_valid]);
  3104. if is_integer(left.resultdef) then
  3105. begin
  3106. { value of left gets changed -> must be unique }
  3107. set_unique(left);
  3108. { these nodes shouldn't be created, when range checking is on }
  3109. if [cs_check_range,cs_check_overflow]*current_settings.localswitches<>[] then
  3110. internalerror(2017040703);
  3111. end
  3112. { generic type parameter? }
  3113. else if is_typeparam(left.resultdef) then
  3114. begin
  3115. result:=cnothingnode.create;
  3116. exit;
  3117. end
  3118. else
  3119. CGMessagePos(left.fileinfo,type_e_ordinal_expr_expected);
  3120. end;
  3121. end;
  3122. in_read_x,
  3123. in_readln_x,
  3124. in_readstr_x,
  3125. in_write_x,
  3126. in_writeln_x,
  3127. in_writestr_x :
  3128. begin
  3129. result := handle_read_write;
  3130. end;
  3131. in_settextbuf_file_x :
  3132. begin
  3133. if target_info.system in systems_managed_vm then
  3134. message(parser_e_feature_unsupported_for_vm);
  3135. resultdef:=voidtype;
  3136. { now we know the type of buffer }
  3137. hp:=ccallparanode.create(cordconstnode.create(
  3138. tcallparanode(left).left.resultdef.size,s32inttype,true),left);
  3139. result:=ccallnode.createintern('SETTEXTBUF',hp);
  3140. left:=nil;
  3141. end;
  3142. { the firstpass of the arg has been done in firstcalln ? }
  3143. in_reset_typedfile,
  3144. in_rewrite_typedfile,
  3145. in_reset_typedfile_name,
  3146. in_rewrite_typedfile_name :
  3147. begin
  3148. result := handle_reset_rewrite_typed;
  3149. end;
  3150. in_str_x_string :
  3151. begin
  3152. result:=handle_str;
  3153. end;
  3154. in_val_x :
  3155. begin
  3156. result:=handle_val;
  3157. end;
  3158. in_include_x_y,
  3159. in_exclude_x_y:
  3160. begin
  3161. resultdef:=voidtype;
  3162. { the parser already checks whether we have two (and exactly two) }
  3163. { parameters (JM) }
  3164. { first param must be var }
  3165. valid_for_var(tcallparanode(left).left,true);
  3166. set_varstate(tcallparanode(left).left,vs_readwritten,[vsf_must_be_valid]);
  3167. { check type }
  3168. if (left.resultdef.typ=setdef) then
  3169. begin
  3170. { insert a type conversion }
  3171. { to the type of the set elements }
  3172. set_varstate(tcallparanode(tcallparanode(left).right).left,vs_read,[vsf_must_be_valid]);
  3173. inserttypeconv(tcallparanode(tcallparanode(left).right).left,
  3174. tsetdef(left.resultdef).elementdef);
  3175. end
  3176. else
  3177. CGMessage(type_e_mismatch);
  3178. end;
  3179. in_pack_x_y_z,
  3180. in_unpack_x_y_z :
  3181. begin
  3182. handle_pack_unpack;
  3183. end;
  3184. in_slice_x:
  3185. begin
  3186. if target_info.system in systems_managed_vm then
  3187. message(parser_e_feature_unsupported_for_vm);
  3188. result:=nil;
  3189. resultdef:=tcallparanode(left).left.resultdef;
  3190. if (resultdef.typ <> arraydef) then
  3191. CGMessagePos(left.fileinfo,type_e_mismatch)
  3192. else if is_packed_array(resultdef) then
  3193. CGMessagePos2(left.fileinfo,type_e_got_expected_unpacked_array,'1',resultdef.typename);
  3194. if not(is_integer(tcallparanode(tcallparanode(left).right).left.resultdef)) then
  3195. CGMessagePos1(tcallparanode(left).right.fileinfo,
  3196. type_e_integer_expr_expected,
  3197. tcallparanode(tcallparanode(left).right).left.resultdef.typename);
  3198. end;
  3199. in_new_x:
  3200. resultdef:=left.resultdef;
  3201. in_low_x,
  3202. in_high_x:
  3203. begin
  3204. case left.resultdef.typ of
  3205. undefineddef,
  3206. orddef,
  3207. enumdef,
  3208. setdef:
  3209. ;
  3210. arraydef:
  3211. begin
  3212. if (inlinenumber=in_low_x) then
  3213. set_varstate(left,vs_read,[])
  3214. else
  3215. begin
  3216. if is_open_array(left.resultdef) or
  3217. is_array_of_const(left.resultdef) then
  3218. begin
  3219. set_varstate(left,vs_read,[]);
  3220. result:=load_high_value_node(tparavarsym(tloadnode(left).symtableentry));
  3221. end
  3222. else
  3223. if is_dynamic_array(left.resultdef) then
  3224. begin
  3225. set_varstate(left,vs_read,[vsf_must_be_valid]);
  3226. { can't use inserttypeconv because we need }
  3227. { an explicit type conversion (JM) }
  3228. hp := ccallparanode.create(ctypeconvnode.create_internal(left,voidpointertype),nil);
  3229. result := ccallnode.createintern('fpc_dynarray_high',hp);
  3230. { make sure the left node doesn't get disposed, since it's }
  3231. { reused in the new node (JM) }
  3232. left:=nil;
  3233. end
  3234. else
  3235. begin
  3236. set_varstate(left,vs_read,[]);
  3237. end;
  3238. end;
  3239. end;
  3240. stringdef:
  3241. begin
  3242. if inlinenumber=in_low_x then
  3243. begin
  3244. set_varstate(left,vs_read,[]);
  3245. end
  3246. else
  3247. begin
  3248. if is_open_string(left.resultdef) then
  3249. begin
  3250. set_varstate(left,vs_read,[]);
  3251. result:=load_high_value_node(tparavarsym(tloadnode(left).symtableentry))
  3252. end
  3253. else if is_dynamicstring(left.resultdef) then
  3254. begin
  3255. result:=cinlinenode.create(in_length_x,false,left);
  3256. if cs_zerobasedstrings in current_settings.localswitches then
  3257. result:=caddnode.create(subn,result,cordconstnode.create(1,sinttype,false));
  3258. { make sure the left node doesn't get disposed, since it's }
  3259. { reused in the new node (JM) }
  3260. left:=nil;
  3261. end
  3262. end;
  3263. end;
  3264. else
  3265. CGMessage(type_e_mismatch);
  3266. end;
  3267. end;
  3268. in_exp_real,
  3269. in_frac_real,
  3270. in_int_real,
  3271. in_cos_real,
  3272. in_sin_real,
  3273. in_arctan_real,
  3274. in_ln_real :
  3275. begin
  3276. set_varstate(left,vs_read,[vsf_must_be_valid]);
  3277. { converting an int64 to double on platforms without }
  3278. { extended can cause precision loss }
  3279. if not(left.nodetype in [ordconstn,realconstn]) then
  3280. inserttypeconv(left,pbestrealtype^);
  3281. resultdef:=pbestrealtype^;
  3282. end;
  3283. in_trunc_real,
  3284. in_round_real :
  3285. begin
  3286. { on i8086, the int64 result is returned in a var param, because
  3287. it's too big to fit in a register or a pair of registers. In
  3288. that case we have 2 parameters and left.nodetype is a callparan. }
  3289. if left.nodetype = callparan then
  3290. temp_pnode := @tcallparanode(left).left
  3291. else
  3292. temp_pnode := @left;
  3293. set_varstate(temp_pnode^,vs_read,[vsf_must_be_valid]);
  3294. { for direct float rounding, no best real type cast should be necessary }
  3295. if not((temp_pnode^.resultdef.typ=floatdef) and
  3296. (tfloatdef(temp_pnode^.resultdef).floattype in [s32real,s64real,s80real,sc80real,s128real])) and
  3297. { converting an int64 to double on platforms without }
  3298. { extended can cause precision loss }
  3299. not(temp_pnode^.nodetype in [ordconstn,realconstn]) then
  3300. inserttypeconv(temp_pnode^,pbestrealtype^);
  3301. resultdef:=s64inttype;
  3302. end;
  3303. in_pi_real :
  3304. begin
  3305. resultdef:=pbestrealtype^;
  3306. end;
  3307. in_abs_long:
  3308. begin
  3309. set_varstate(left,vs_read,[vsf_must_be_valid]);
  3310. resultdef:=left.resultdef;
  3311. end;
  3312. in_abs_real,
  3313. in_sqr_real,
  3314. in_sqrt_real :
  3315. begin
  3316. set_varstate(left,vs_read,[vsf_must_be_valid]);
  3317. setfloatresultdef;
  3318. end;
  3319. {$ifdef SUPPORT_MMX}
  3320. in_mmx_pcmpeqb..in_mmx_pcmpgtw:
  3321. begin
  3322. end;
  3323. {$endif SUPPORT_MMX}
  3324. in_aligned_x,
  3325. in_unaligned_x:
  3326. begin
  3327. resultdef:=left.resultdef;
  3328. end;
  3329. in_volatile_x:
  3330. begin
  3331. resultdef:=left.resultdef;
  3332. { volatile only makes sense if the value is in memory }
  3333. make_not_regable(left,[ra_addr_regable]);
  3334. end;
  3335. in_assert_x_y :
  3336. begin
  3337. resultdef:=voidtype;
  3338. if assigned(left) then
  3339. begin
  3340. set_varstate(tcallparanode(left).left,vs_read,[vsf_must_be_valid]);
  3341. { check type }
  3342. if is_boolean(left.resultdef) or
  3343. (
  3344. (left.resultdef.typ=undefineddef) and
  3345. (df_generic in current_procinfo.procdef.defoptions)
  3346. ) then
  3347. begin
  3348. set_varstate(tcallparanode(tcallparanode(left).right).left,vs_read,[vsf_must_be_valid]);
  3349. { must always be a string }
  3350. inserttypeconv(tcallparanode(tcallparanode(left).right).left,cshortstringtype);
  3351. end
  3352. else
  3353. CGMessage1(type_e_boolean_expr_expected,left.resultdef.typename);
  3354. end
  3355. else
  3356. CGMessage(type_e_mismatch);
  3357. if (cs_do_assertion in current_settings.localswitches) then
  3358. include(current_procinfo.flags,pi_do_call);
  3359. end;
  3360. in_prefetch_var:
  3361. resultdef:=voidtype;
  3362. in_get_frame,
  3363. in_get_caller_frame,
  3364. in_get_caller_addr:
  3365. begin
  3366. resultdef:=voidpointertype;
  3367. end;
  3368. in_rol_x,
  3369. in_ror_x,
  3370. in_sar_x:
  3371. begin
  3372. set_varstate(left,vs_read,[vsf_must_be_valid]);
  3373. resultdef:=left.resultdef;
  3374. end;
  3375. in_rol_x_y,
  3376. in_ror_x_y,
  3377. in_sar_x_y:
  3378. begin
  3379. set_varstate(tcallparanode(left).left,vs_read,[vsf_must_be_valid]);
  3380. set_varstate(tcallparanode(tcallparanode(left).right).left,vs_read,[vsf_must_be_valid]);
  3381. resultdef:=tcallparanode(tcallparanode(left).right).left.resultdef;
  3382. end;
  3383. in_bsf_x,
  3384. in_bsr_x:
  3385. begin
  3386. set_varstate(left,vs_read,[vsf_must_be_valid]);
  3387. if not is_integer(left.resultdef) then
  3388. CGMessage1(type_e_integer_expr_expected,left.resultdef.typename);
  3389. if torddef(left.resultdef).ordtype in [u64bit, s64bit] then
  3390. resultdef:=u64inttype
  3391. else
  3392. resultdef:=u32inttype
  3393. end;
  3394. in_popcnt_x:
  3395. begin
  3396. set_varstate(left,vs_read,[vsf_must_be_valid]);
  3397. if not is_integer(left.resultdef) then
  3398. CGMessage1(type_e_integer_expr_expected,left.resultdef.typename);
  3399. resultdef:=left.resultdef;
  3400. end;
  3401. in_objc_selector_x:
  3402. begin
  3403. result:=cobjcselectornode.create(left);
  3404. { reused }
  3405. left:=nil;
  3406. end;
  3407. in_objc_protocol_x:
  3408. begin
  3409. result:=cobjcprotocolnode.create(left);
  3410. { reused }
  3411. left:=nil;
  3412. end;
  3413. in_objc_encode_x:
  3414. begin
  3415. result:=handle_objc_encode;
  3416. end;
  3417. in_default_x:
  3418. begin
  3419. result:=handle_default;
  3420. end;
  3421. in_box_x:
  3422. begin
  3423. result:=handle_box;
  3424. end;
  3425. in_unbox_x_y:
  3426. begin
  3427. result:=handle_unbox;
  3428. end;
  3429. in_fma_single,
  3430. in_fma_double,
  3431. in_fma_extended,
  3432. in_fma_float128:
  3433. begin
  3434. set_varstate(tcallparanode(left).left,vs_read,[vsf_must_be_valid]);
  3435. set_varstate(tcallparanode(tcallparanode(left).right).left,vs_read,[vsf_must_be_valid]);
  3436. set_varstate(tcallparanode(tcallparanode(tcallparanode(left).right).right).left,vs_read,[vsf_must_be_valid]);
  3437. resultdef:=tcallparanode(left).left.resultdef;
  3438. end;
  3439. in_delete_x_y_z:
  3440. begin
  3441. result:=handle_delete;
  3442. end;
  3443. in_insert_x_y_z:
  3444. begin
  3445. result:=handle_insert;
  3446. end;
  3447. in_concat_x:
  3448. begin
  3449. result:=handle_concat;
  3450. end;
  3451. else
  3452. result:=pass_typecheck_cpu;
  3453. end;
  3454. end;
  3455. if not assigned(result) and not
  3456. codegenerror then
  3457. result:=simplify(false);
  3458. end;
  3459. function tinlinenode.pass_typecheck_cpu : tnode;
  3460. begin
  3461. Result:=nil;
  3462. internalerror(2017110102);
  3463. end;
  3464. function tinlinenode.pass_1 : tnode;
  3465. var
  3466. hp: tnode;
  3467. shiftconst: longint;
  3468. objdef: tobjectdef;
  3469. sym : tsym;
  3470. begin
  3471. result:=nil;
  3472. { if we handle writeln; left contains no valid address }
  3473. if assigned(left) then
  3474. begin
  3475. if left.nodetype=callparan then
  3476. tcallparanode(left).firstcallparan
  3477. else
  3478. firstpass(left);
  3479. end;
  3480. { intern const should already be handled }
  3481. if nf_inlineconst in flags then
  3482. internalerror(200104044);
  3483. case inlinenumber of
  3484. in_lo_qword,
  3485. in_hi_qword,
  3486. in_lo_long,
  3487. in_hi_long,
  3488. in_lo_word,
  3489. in_hi_word:
  3490. begin
  3491. shiftconst := 0;
  3492. case inlinenumber of
  3493. in_hi_qword:
  3494. shiftconst := 32;
  3495. in_hi_long:
  3496. shiftconst := 16;
  3497. in_hi_word:
  3498. shiftconst := 8;
  3499. else
  3500. ;
  3501. end;
  3502. if shiftconst <> 0 then
  3503. result := ctypeconvnode.create_internal(cshlshrnode.create(shrn,left,
  3504. cordconstnode.create(shiftconst,sinttype,false)),resultdef)
  3505. else
  3506. result := ctypeconvnode.create_internal(left,resultdef);
  3507. left := nil;
  3508. firstpass(result);
  3509. end;
  3510. in_sizeof_x,
  3511. in_typeof_x:
  3512. begin
  3513. expectloc:=LOC_REGISTER;
  3514. case left.resultdef.typ of
  3515. objectdef,classrefdef:
  3516. begin
  3517. if left.resultdef.typ=objectdef then
  3518. begin
  3519. result:=cloadvmtaddrnode.create(left);
  3520. objdef:=tobjectdef(left.resultdef);
  3521. end
  3522. else
  3523. begin
  3524. result:=left;
  3525. objdef:=tobjectdef(tclassrefdef(left.resultdef).pointeddef);
  3526. end;
  3527. left:=nil;
  3528. if inlinenumber=in_sizeof_x then
  3529. begin
  3530. inserttypeconv_explicit(result,cpointerdef.getreusable(objdef.vmt_def));
  3531. result:=cderefnode.create(result);
  3532. result:=genloadfield(result,'VINSTANCESIZE');
  3533. end
  3534. else
  3535. inserttypeconv_explicit(result,voidpointertype);
  3536. end;
  3537. undefineddef:
  3538. ;
  3539. else
  3540. internalerror(2015122702);
  3541. end;
  3542. end;
  3543. in_length_x:
  3544. begin
  3545. result:=first_length;
  3546. end;
  3547. in_typeinfo_x:
  3548. begin
  3549. result:=caddrnode.create_internal(
  3550. crttinode.create(tstoreddef(left.resultdef),fullrtti,rdt_normal)
  3551. );
  3552. end;
  3553. in_gettypekind_x:
  3554. begin
  3555. sym:=tenumdef(typekindtype).int2enumsym(get_typekind(left.resultdef));
  3556. if not assigned(sym) then
  3557. internalerror(2017081101);
  3558. if sym.typ<>enumsym then
  3559. internalerror(2017081102);
  3560. result:=genenumnode(tenumsym(sym));
  3561. end;
  3562. in_assigned_x:
  3563. begin
  3564. result:=first_assigned;
  3565. end;
  3566. in_pred_x,
  3567. in_succ_x:
  3568. begin
  3569. expectloc:=LOC_REGISTER;
  3570. { in case of range/overflow checking, use a regular addnode
  3571. because it's too complex to handle correctly otherwise }
  3572. {$ifndef jvm}
  3573. { enums are class instances in the JVM -> always need conversion }
  3574. if (([cs_check_overflow,cs_check_range]*current_settings.localswitches)<>[]) and not(nf_internal in flags) then
  3575. {$endif}
  3576. begin
  3577. { create constant 1 }
  3578. hp:=cordconstnode.create(1,left.resultdef,false);
  3579. typecheckpass(hp);
  3580. if not is_integer(hp.resultdef) then
  3581. inserttypeconv_internal(hp,sinttype);
  3582. { avoid type errors from the addn/subn }
  3583. if not is_integer(left.resultdef) then
  3584. inserttypeconv_internal(left,sinttype);
  3585. { addition/substraction depending on succ/pred }
  3586. if inlinenumber=in_succ_x then
  3587. hp:=caddnode.create(addn,left,hp)
  3588. else
  3589. hp:=caddnode.create(subn,left,hp);
  3590. { the condition above is not tested for jvm, so we need to avoid overflow checks here
  3591. by setting nf_internal for the add/sub node as well }
  3592. if nf_internal in flags then
  3593. include(hp.flags,nf_internal);
  3594. { assign result of addition }
  3595. if not(is_integer(resultdef)) then
  3596. inserttypeconv(hp,corddef.create(
  3597. {$ifdef cpu64bitaddr}
  3598. s64bit,
  3599. {$else cpu64bitaddr}
  3600. s32bit,
  3601. {$endif cpu64bitaddr}
  3602. get_min_value(resultdef),
  3603. get_max_value(resultdef),
  3604. true))
  3605. else
  3606. inserttypeconv(hp,resultdef);
  3607. if nf_internal in flags then
  3608. include(hp.flags,nf_internal);
  3609. { avoid any possible errors/warnings }
  3610. inserttypeconv_internal(hp,resultdef);
  3611. { firstpass it }
  3612. firstpass(hp);
  3613. { left is reused }
  3614. left:=nil;
  3615. { return new node }
  3616. result:=hp;
  3617. end;
  3618. end;
  3619. in_setlength_x:
  3620. result:=first_setlength;
  3621. in_copy_x:
  3622. result:=first_copy;
  3623. in_initialize_x,
  3624. in_finalize_x:
  3625. begin
  3626. expectloc:=LOC_VOID;
  3627. end;
  3628. in_inc_x,
  3629. in_dec_x:
  3630. begin
  3631. result:=first_IncDec;
  3632. end;
  3633. in_and_assign_x_y,
  3634. in_or_assign_x_y,
  3635. in_xor_assign_x_y,
  3636. in_sar_assign_x_y,
  3637. in_shl_assign_x_y,
  3638. in_shr_assign_x_y,
  3639. in_rol_assign_x_y,
  3640. in_ror_assign_x_y:
  3641. begin
  3642. result:=first_AndOrXorShiftRot_assign;
  3643. end;
  3644. in_neg_assign_x,
  3645. in_not_assign_x:
  3646. begin
  3647. result:=first_NegNot_assign;
  3648. end;
  3649. in_include_x_y,
  3650. in_exclude_x_y:
  3651. begin
  3652. result:=first_IncludeExclude;
  3653. end;
  3654. in_pack_x_y_z,
  3655. in_unpack_x_y_z:
  3656. begin
  3657. result:=first_pack_unpack;
  3658. end;
  3659. in_exp_real:
  3660. begin
  3661. result:= first_exp_real;
  3662. end;
  3663. in_round_real:
  3664. begin
  3665. result:= first_round_real;
  3666. end;
  3667. in_trunc_real:
  3668. begin
  3669. result:= first_trunc_real;
  3670. end;
  3671. in_int_real:
  3672. begin
  3673. result:= first_int_real;
  3674. end;
  3675. in_frac_real:
  3676. begin
  3677. result:= first_frac_real;
  3678. end;
  3679. in_cos_real:
  3680. begin
  3681. result:= first_cos_real;
  3682. end;
  3683. in_sin_real:
  3684. begin
  3685. result := first_sin_real;
  3686. end;
  3687. in_arctan_real:
  3688. begin
  3689. result := first_arctan_real;
  3690. end;
  3691. in_pi_real :
  3692. begin
  3693. result := first_pi;
  3694. end;
  3695. in_abs_real:
  3696. begin
  3697. result := first_abs_real;
  3698. end;
  3699. in_abs_long:
  3700. begin
  3701. result := first_abs_long;
  3702. end;
  3703. in_sqr_real:
  3704. begin
  3705. result := first_sqr_real;
  3706. end;
  3707. in_sqrt_real:
  3708. begin
  3709. result := first_sqrt_real;
  3710. end;
  3711. in_ln_real:
  3712. begin
  3713. result := first_ln_real;
  3714. end;
  3715. {$ifdef SUPPORT_MMX}
  3716. in_mmx_pcmpeqb..in_mmx_pcmpgtw:
  3717. begin
  3718. end;
  3719. {$endif SUPPORT_MMX}
  3720. in_assert_x_y :
  3721. begin
  3722. result:=first_assert;
  3723. end;
  3724. in_low_x,
  3725. in_high_x:
  3726. internalerror(200104047);
  3727. in_slice_x:
  3728. internalerror(2005101501);
  3729. in_ord_x,
  3730. in_chr_byte:
  3731. begin
  3732. { should not happend as it's converted to typeconv }
  3733. internalerror(200104045);
  3734. end;
  3735. in_ofs_x :
  3736. internalerror(2000101001);
  3737. in_seg_x :
  3738. begin
  3739. result:=first_seg;
  3740. end;
  3741. in_settextbuf_file_x,
  3742. in_reset_typedfile,
  3743. in_rewrite_typedfile,
  3744. in_reset_typedfile_name,
  3745. in_rewrite_typedfile_name,
  3746. in_str_x_string,
  3747. in_val_x,
  3748. in_read_x,
  3749. in_readln_x,
  3750. in_write_x,
  3751. in_writeln_x :
  3752. begin
  3753. { should be handled by pass_typecheck }
  3754. internalerror(200108234);
  3755. end;
  3756. in_get_frame:
  3757. begin
  3758. result:=first_get_frame;
  3759. end;
  3760. in_get_caller_frame:
  3761. begin
  3762. expectloc:=LOC_REGISTER;
  3763. end;
  3764. in_get_caller_addr:
  3765. begin
  3766. expectloc:=LOC_REGISTER;
  3767. end;
  3768. in_prefetch_var:
  3769. begin
  3770. expectloc:=LOC_VOID;
  3771. end;
  3772. in_aligned_x,
  3773. in_unaligned_x,
  3774. in_volatile_x:
  3775. begin
  3776. expectloc:=tcallparanode(left).left.expectloc;
  3777. end;
  3778. in_rol_x,
  3779. in_rol_x_y,
  3780. in_ror_x,
  3781. in_ror_x_y,
  3782. in_bsf_x,
  3783. in_bsr_x:
  3784. expectloc:=LOC_REGISTER;
  3785. in_sar_x,
  3786. in_sar_x_y:
  3787. result:=first_sar;
  3788. in_popcnt_x:
  3789. result:=first_popcnt;
  3790. in_new_x:
  3791. result:=first_new;
  3792. in_box_x:
  3793. result:=first_box;
  3794. in_unbox_x_y:
  3795. result:=first_unbox;
  3796. in_fma_single,
  3797. in_fma_double,
  3798. in_fma_extended,
  3799. in_fma_float128:
  3800. result:=first_fma;
  3801. else
  3802. result:=first_cpu;
  3803. end;
  3804. end;
  3805. {$maxfpuregisters default}
  3806. function tinlinenode.docompare(p: tnode): boolean;
  3807. begin
  3808. docompare :=
  3809. inherited docompare(p) and
  3810. (inlinenumber = tinlinenode(p).inlinenumber);
  3811. end;
  3812. procedure tinlinenode.mark_write;
  3813. begin
  3814. case inlinenumber of
  3815. in_aligned_x, in_unaligned_x:
  3816. tcallparanode(left).left.mark_write;
  3817. else
  3818. inherited mark_write;
  3819. end;
  3820. end;
  3821. function tinlinenode.first_pi : tnode;
  3822. begin
  3823. result:=crealconstnode.create(getpi,pbestrealtype^);
  3824. end;
  3825. function tinlinenode.first_arctan_real : tnode;
  3826. begin
  3827. { create the call to the helper }
  3828. { on entry left node contains the parameter }
  3829. result := ccallnode.createintern('fpc_arctan_real',
  3830. ccallparanode.create(left,nil));
  3831. left := nil;
  3832. end;
  3833. function tinlinenode.first_abs_real : tnode;
  3834. var
  3835. callnode : tcallnode;
  3836. begin
  3837. { create the call to the helper }
  3838. { on entry left node contains the parameter }
  3839. callnode:=ccallnode.createintern('fpc_abs_real',
  3840. ccallparanode.create(left,nil));
  3841. result := ctypeconvnode.create(callnode,resultdef);
  3842. include(callnode.callnodeflags,cnf_check_fpu_exceptions);
  3843. left := nil;
  3844. end;
  3845. function tinlinenode.first_sqr_real : tnode;
  3846. var
  3847. callnode : tcallnode;
  3848. begin
  3849. {$ifndef cpufpemu}
  3850. { this procedure might be only used for cpus definining cpufpemu else
  3851. the optimizer might go into an endless loop when doing x*x -> changes }
  3852. internalerror(2011092401);
  3853. {$endif cpufpemu}
  3854. { create the call to the helper }
  3855. { on entry left node contains the parameter }
  3856. callnode:=ccallnode.createintern('fpc_sqr_real',
  3857. ccallparanode.create(left,nil));
  3858. result := ctypeconvnode.create(callnode,resultdef);
  3859. include(callnode.callnodeflags,cnf_check_fpu_exceptions);
  3860. left := nil;
  3861. end;
  3862. function tinlinenode.first_sqrt_real : tnode;
  3863. var
  3864. fdef: tdef;
  3865. procname: string[31];
  3866. callnode: tcallnode;
  3867. begin
  3868. if ((cs_fp_emulation in current_settings.moduleswitches)
  3869. {$ifdef cpufpemu}
  3870. or (current_settings.fputype=fpu_soft)
  3871. {$endif cpufpemu}
  3872. ) and not (target_info.system in systems_wince) then
  3873. begin
  3874. case tfloatdef(left.resultdef).floattype of
  3875. s32real:
  3876. begin
  3877. fdef:=search_system_type('FLOAT32REC').typedef;
  3878. procname:='float32_sqrt';
  3879. end;
  3880. s64real:
  3881. begin
  3882. fdef:=search_system_type('FLOAT64').typedef;
  3883. procname:='float64_sqrt';
  3884. end;
  3885. {!!! not yet implemented
  3886. s128real:
  3887. }
  3888. else
  3889. internalerror(2014052101);
  3890. end;
  3891. result:=ctypeconvnode.create_internal(ccallnode.createintern(procname,ccallparanode.create(
  3892. ctypeconvnode.create_internal(left,fdef),nil)),resultdef);
  3893. end
  3894. else
  3895. begin
  3896. { create the call to the helper }
  3897. { on entry left node contains the parameter }
  3898. callnode := ccallnode.createintern('fpc_sqrt_real',
  3899. ccallparanode.create(left,nil));
  3900. result := ctypeconvnode.create(callnode,resultdef);
  3901. include(callnode.callnodeflags,cnf_check_fpu_exceptions);
  3902. end;
  3903. left := nil;
  3904. end;
  3905. function tinlinenode.first_ln_real : tnode;
  3906. begin
  3907. { create the call to the helper }
  3908. { on entry left node contains the parameter }
  3909. result := ccallnode.createintern('fpc_ln_real',
  3910. ccallparanode.create(left,nil));
  3911. include(tcallnode(result).callnodeflags,cnf_check_fpu_exceptions);
  3912. left := nil;
  3913. end;
  3914. function tinlinenode.first_cos_real : tnode;
  3915. begin
  3916. { create the call to the helper }
  3917. { on entry left node contains the parameter }
  3918. result := ccallnode.createintern('fpc_cos_real',
  3919. ccallparanode.create(left,nil));
  3920. include(tcallnode(result).callnodeflags,cnf_check_fpu_exceptions);
  3921. left := nil;
  3922. end;
  3923. function tinlinenode.first_sin_real : tnode;
  3924. begin
  3925. { create the call to the helper }
  3926. { on entry left node contains the parameter }
  3927. result := ccallnode.createintern('fpc_sin_real',
  3928. ccallparanode.create(left,nil));
  3929. include(tcallnode(result).callnodeflags,cnf_check_fpu_exceptions);
  3930. left := nil;
  3931. end;
  3932. function tinlinenode.first_exp_real : tnode;
  3933. begin
  3934. { create the call to the helper }
  3935. { on entry left node contains the parameter }
  3936. result := ccallnode.createintern('fpc_exp_real',ccallparanode.create(left,nil));
  3937. include(tcallnode(result).callnodeflags,cnf_check_fpu_exceptions);
  3938. left := nil;
  3939. end;
  3940. function tinlinenode.first_int_real : tnode;
  3941. begin
  3942. { create the call to the helper }
  3943. { on entry left node contains the parameter }
  3944. result := ccallnode.createintern('fpc_int_real',ccallparanode.create(left,nil));
  3945. include(tcallnode(result).callnodeflags,cnf_check_fpu_exceptions);
  3946. left := nil;
  3947. end;
  3948. function tinlinenode.first_frac_real : tnode;
  3949. begin
  3950. { create the call to the helper }
  3951. { on entry left node contains the parameter }
  3952. result := ccallnode.createintern('fpc_frac_real',ccallparanode.create(left,nil));
  3953. include(tcallnode(result).callnodeflags,cnf_check_fpu_exceptions);
  3954. left := nil;
  3955. end;
  3956. function tinlinenode.first_round_real : tnode;
  3957. begin
  3958. { create the call to the helper }
  3959. { on entry left node contains the parameter }
  3960. result := ccallnode.createintern('fpc_round_real',ccallparanode.create(left,nil));
  3961. include(tcallnode(result).callnodeflags,cnf_check_fpu_exceptions);
  3962. left := nil;
  3963. end;
  3964. function tinlinenode.first_trunc_real : tnode;
  3965. begin
  3966. { create the call to the helper }
  3967. { on entry left node contains the parameter }
  3968. result := ccallnode.createintern('fpc_trunc_real',ccallparanode.create(left,nil));
  3969. include(tcallnode(result).callnodeflags,cnf_check_fpu_exceptions);
  3970. left := nil;
  3971. end;
  3972. function tinlinenode.first_abs_long : tnode;
  3973. begin
  3974. expectloc:=LOC_REGISTER;
  3975. result:=nil;
  3976. end;
  3977. function tinlinenode.getaddsub_for_incdec : tnode;
  3978. var
  3979. hp,hpp,resultnode : tnode;
  3980. tempnode: ttempcreatenode;
  3981. newstatement: tstatementnode;
  3982. newblock: tblocknode;
  3983. begin
  3984. newblock := internalstatements(newstatement);
  3985. { extra parameter? }
  3986. if assigned(tcallparanode(left).right) then
  3987. begin
  3988. { Yes, use for add node }
  3989. hpp := tcallparanode(tcallparanode(left).right).left;
  3990. tcallparanode(tcallparanode(left).right).left := nil;
  3991. if assigned(tcallparanode(tcallparanode(left).right).right) then
  3992. CGMessage(parser_e_illegal_expression);
  3993. end
  3994. else
  3995. begin
  3996. { no, create constant 1 }
  3997. hpp := cordconstnode.create(1,tcallparanode(left).left.resultdef,false);
  3998. end;
  3999. typecheckpass(hpp);
  4000. { make sure we don't call functions part of the left node twice (and generally }
  4001. { optimize the code generation) }
  4002. { Storing address is not always an optimization: alignment of left is not known
  4003. at this point, so we must assume the worst and use an unaligned pointer.
  4004. This results in larger and slower code on alignment-sensitive targets.
  4005. Therefore the complexity condition below is questionable, maybe just filtering
  4006. out calls with "= NODE_COMPLEXITY_INF" is sufficient.
  4007. Value of 3 corresponds to subscript nodes, i.e. record field. }
  4008. if node_complexity(tcallparanode(left).left) > 3 then
  4009. begin
  4010. tempnode := ctempcreatenode.create(voidpointertype,voidpointertype.size,tt_persistent,true);
  4011. addstatement(newstatement,tempnode);
  4012. addstatement(newstatement,cassignmentnode.create(ctemprefnode.create(tempnode),
  4013. caddrnode.create_internal(tcallparanode(left).left.getcopy)));
  4014. hp := cderefnode.create(ctemprefnode.create(tempnode));
  4015. inserttypeconv_internal(hp,tcallparanode(left).left.resultdef);
  4016. end
  4017. else
  4018. begin
  4019. hp := tcallparanode(left).left.getcopy;
  4020. tempnode := nil;
  4021. end;
  4022. resultnode := hp.getcopy;
  4023. { avoid type errors from the addn/subn }
  4024. if not is_integer(resultnode.resultdef) then
  4025. begin
  4026. inserttypeconv_internal(hp,sinttype);
  4027. inserttypeconv_internal(hpp,sinttype);
  4028. end;
  4029. { addition/substraction depending on inc/dec }
  4030. if inlinenumber = in_inc_x then
  4031. hpp := caddnode.create_internal(addn,hp,hpp)
  4032. else
  4033. hpp := caddnode.create_internal(subn,hp,hpp);
  4034. { assign result of addition }
  4035. { inherit internal flag }
  4036. if not(is_integer(resultnode.resultdef)) then
  4037. begin
  4038. if nf_internal in flags then
  4039. inserttypeconv_internal(hpp,corddef.create(
  4040. {$ifdef cpu64bitaddr}
  4041. s64bit,
  4042. {$else cpu64bitaddr}
  4043. s32bit,
  4044. {$endif cpu64bitaddr}
  4045. get_min_value(resultnode.resultdef),
  4046. get_max_value(resultnode.resultdef),
  4047. true))
  4048. else
  4049. inserttypeconv(hpp,corddef.create(
  4050. {$ifdef cpu64bitaddr}
  4051. s64bit,
  4052. {$else cpu64bitaddr}
  4053. s32bit,
  4054. {$endif cpu64bitaddr}
  4055. get_min_value(resultnode.resultdef),
  4056. get_max_value(resultnode.resultdef),
  4057. true))
  4058. end
  4059. else
  4060. begin
  4061. if nf_internal in flags then
  4062. inserttypeconv_internal(hpp,resultnode.resultdef)
  4063. else
  4064. inserttypeconv(hpp,resultnode.resultdef);
  4065. end;
  4066. { avoid any possible warnings }
  4067. inserttypeconv_internal(hpp,resultnode.resultdef);
  4068. { get varstates right }
  4069. node_reset_flags(hpp,[nf_pass1_done,nf_modify,nf_write]);
  4070. do_typecheckpass(hpp);
  4071. addstatement(newstatement,cassignmentnode.create(resultnode,hpp));
  4072. { force pass 1, so copied trees get first pass'ed as well and flags like nf_write, nf_call_unique
  4073. get set right }
  4074. node_reset_flags(newstatement.statement,[nf_pass1_done]);
  4075. { firstpass it }
  4076. firstpass(tnode(newstatement.left));
  4077. { deallocate the temp }
  4078. if assigned(tempnode) then
  4079. addstatement(newstatement,ctempdeletenode.create(tempnode));
  4080. { firstpass it }
  4081. firstpass(tnode(newblock));
  4082. { return new node }
  4083. result := newblock;
  4084. end;
  4085. function tinlinenode.first_IncDec: tnode;
  4086. begin
  4087. expectloc:=LOC_VOID;
  4088. result:=nil;
  4089. { range/overflow checking doesn't work properly }
  4090. { with the inc/dec code that's generated (JM) }
  4091. if ((localswitches * [cs_check_overflow,cs_check_range] <> []) and
  4092. { No overflow check for pointer operations, because inc(pointer,-1) will always
  4093. trigger an overflow. For uint32 it works because then the operation is done
  4094. in 64bit. Range checking is not applicable to pointers either }
  4095. (tcallparanode(left).left.resultdef.typ<>pointerdef))
  4096. {$ifdef jvm}
  4097. { enums are class instances on the JVM -> special treatment }
  4098. or (tcallparanode(left).left.resultdef.typ=enumdef)
  4099. {$endif}
  4100. then
  4101. { convert to simple add (JM) }
  4102. result:=getaddsub_for_incdec
  4103. end;
  4104. function tinlinenode.first_IncludeExclude: tnode;
  4105. begin
  4106. result:=nil;
  4107. expectloc:=LOC_VOID;
  4108. end;
  4109. function tinlinenode.first_get_frame: tnode;
  4110. begin
  4111. include(current_procinfo.flags,pi_needs_stackframe);
  4112. expectloc:=LOC_CREGISTER;
  4113. result:=nil;
  4114. end;
  4115. function tinlinenode.first_setlength: tnode;
  4116. var
  4117. paras : tnode;
  4118. npara,
  4119. ppn : tcallparanode;
  4120. dims,
  4121. counter : integer;
  4122. isarray : boolean;
  4123. destppn : tnode;
  4124. newstatement : tstatementnode;
  4125. temp : ttempcreatenode;
  4126. newblock : tnode;
  4127. begin
  4128. paras:=left;
  4129. ppn:=tcallparanode(paras);
  4130. dims:=0;
  4131. while assigned(ppn.right) do
  4132. begin
  4133. inc(dims);
  4134. ppn:=tcallparanode(ppn.right);
  4135. end;
  4136. destppn:=ppn.left;
  4137. isarray:=is_dynamic_array(destppn.resultdef);
  4138. { first param must be a string or dynamic array ...}
  4139. if isarray then
  4140. begin
  4141. { create statements with call initialize the arguments and
  4142. call fpc_dynarr_setlength }
  4143. newblock:=internalstatements(newstatement);
  4144. { get temp for array of lengths }
  4145. temp:=ctempcreatenode.create(carraydef.getreusable(sinttype,dims),dims*sinttype.size,tt_persistent,false);
  4146. addstatement(newstatement,temp);
  4147. { load array of lengths }
  4148. ppn:=tcallparanode(paras);
  4149. counter:=dims-1;
  4150. while assigned(ppn.right) do
  4151. begin
  4152. addstatement(newstatement,cassignmentnode.create(
  4153. cvecnode.create(
  4154. ctemprefnode.create(temp),
  4155. genintconstnode(counter)
  4156. ),
  4157. ppn.left));
  4158. ppn.left:=nil;
  4159. dec(counter);
  4160. ppn:=tcallparanode(ppn.right);
  4161. end;
  4162. { destppn is also reused }
  4163. ppn.left:=nil;
  4164. { create call to fpc_dynarr_setlength }
  4165. npara:=ccallparanode.create(caddrnode.create_internal(
  4166. cvecnode.create(
  4167. ctemprefnode.create(temp),
  4168. genintconstnode(0)
  4169. )),
  4170. ccallparanode.create(cordconstnode.create
  4171. (dims,sinttype,true),
  4172. ccallparanode.create(caddrnode.create_internal
  4173. (crttinode.create(tstoreddef(destppn.resultdef),initrtti,rdt_normal)),
  4174. ccallparanode.create(ctypeconvnode.create_internal(destppn,voidpointertype),nil))));
  4175. addstatement(newstatement,ccallnode.createintern('fpc_dynarray_setlength',npara));
  4176. addstatement(newstatement,ctempdeletenode.create(temp));
  4177. end
  4178. else if is_ansistring(destppn.resultdef) then
  4179. begin
  4180. newblock:=ccallnode.createintern(
  4181. 'fpc_'+tstringdef(destppn.resultdef).stringtypname+'_setlength',
  4182. ccallparanode.create(
  4183. cordconstnode.create(getparaencoding(destppn.resultdef),u16inttype,true),
  4184. paras
  4185. )
  4186. );
  4187. { we reused the parameters, make sure we don't release them }
  4188. left:=nil;
  4189. end
  4190. else
  4191. begin
  4192. { we can reuse the supplied parameters }
  4193. newblock:=ccallnode.createintern(
  4194. 'fpc_'+tstringdef(destppn.resultdef).stringtypname+'_setlength',paras);
  4195. { we reused the parameters, make sure we don't release them }
  4196. left:=nil;
  4197. end;
  4198. result:=newblock;
  4199. end;
  4200. function tinlinenode.first_copy: tnode;
  4201. var
  4202. lowppn,
  4203. highppn,
  4204. npara,
  4205. paras : tnode;
  4206. ppn : tcallparanode;
  4207. paradef : tdef;
  4208. counter : integer;
  4209. begin
  4210. { determine copy function to use based on the first argument,
  4211. also count the number of arguments in this loop }
  4212. counter:=1;
  4213. paras:=left;
  4214. ppn:=tcallparanode(paras);
  4215. while assigned(ppn.right) do
  4216. begin
  4217. inc(counter);
  4218. ppn:=tcallparanode(ppn.right);
  4219. end;
  4220. paradef:=ppn.left.resultdef;
  4221. { fill up third parameter }
  4222. if counter=2 then
  4223. begin
  4224. paras:=ccallparanode.create(cordconstnode.create(torddef(sinttype).high,sinttype,false),paras);
  4225. counter:=3;
  4226. end;
  4227. if is_ansistring(resultdef) then
  4228. { keep the specific kind of ansistringdef as result }
  4229. result:=ccallnode.createinternres('fpc_ansistr_copy',paras,resultdef)
  4230. else if is_widestring(resultdef) then
  4231. result:=ccallnode.createintern('fpc_widestr_copy',paras)
  4232. else if is_unicodestring(resultdef) then
  4233. result:=ccallnode.createintern('fpc_unicodestr_copy',paras)
  4234. { can't check for resultdef = cansichartype, because resultdef=
  4235. cshortstringtype here }
  4236. else if is_char(paradef) then
  4237. result:=ccallnode.createintern('fpc_char_copy',paras)
  4238. else if is_dynamic_array(resultdef) then
  4239. begin
  4240. { create statements with call }
  4241. case counter of
  4242. 1:
  4243. begin
  4244. { copy the whole array using [0..high(sizeint)] range }
  4245. highppn:=cordconstnode.create(torddef(sinttype).high,sinttype,false);
  4246. lowppn:=cordconstnode.create(0,sinttype,false);
  4247. end;
  4248. 3:
  4249. begin
  4250. highppn:=tcallparanode(paras).left.getcopy;
  4251. lowppn:=tcallparanode(tcallparanode(paras).right).left.getcopy;
  4252. end;
  4253. else
  4254. internalerror(2012100701);
  4255. end;
  4256. { create call to fpc_dynarray_copy }
  4257. npara:=ccallparanode.create(highppn,
  4258. ccallparanode.create(lowppn,
  4259. ccallparanode.create(caddrnode.create_internal
  4260. (crttinode.create(tstoreddef(paradef),initrtti,rdt_normal)),
  4261. ccallparanode.create
  4262. (ctypeconvnode.create_internal(ppn.left,voidpointertype),nil))));
  4263. result:=ccallnode.createinternres('fpc_dynarray_copy',npara,paradef);
  4264. ppn.left:=nil;
  4265. paras.free;
  4266. end
  4267. else
  4268. result:=ccallnode.createintern('fpc_shortstr_copy',paras);
  4269. { parameters are reused }
  4270. left:=nil;
  4271. end;
  4272. function tinlinenode.first_new: tnode;
  4273. var
  4274. newstatement : tstatementnode;
  4275. newblock : tblocknode;
  4276. temp : ttempcreatenode;
  4277. para : tcallparanode;
  4278. begin
  4279. { create statements with call to getmem+initialize }
  4280. newblock:=internalstatements(newstatement);
  4281. { create temp for result }
  4282. temp := ctempcreatenode.create(left.resultdef,left.resultdef.size,tt_persistent,true);
  4283. addstatement(newstatement,temp);
  4284. { create call to fpc_getmem }
  4285. para := ccallparanode.create(cordconstnode.create
  4286. (tpointerdef(left.resultdef).pointeddef.size,s32inttype,true),nil);
  4287. addstatement(newstatement,cassignmentnode.create(
  4288. ctemprefnode.create(temp),
  4289. ccallnode.createintern('fpc_getmem',para)));
  4290. { create call to fpc_initialize }
  4291. if is_managed_type(tpointerdef(left.resultdef).pointeddef) then
  4292. begin
  4293. para := ccallparanode.create(caddrnode.create_internal(crttinode.create
  4294. (tstoreddef(tpointerdef(left.resultdef).pointeddef),initrtti,rdt_normal)),
  4295. ccallparanode.create(ctemprefnode.create
  4296. (temp),nil));
  4297. addstatement(newstatement,ccallnode.createintern('fpc_initialize',para));
  4298. end;
  4299. { the last statement should return the value as
  4300. location and type, this is done be referencing the
  4301. temp and converting it first from a persistent temp to
  4302. normal temp }
  4303. addstatement(newstatement,ctempdeletenode.create_normal_temp(temp));
  4304. addstatement(newstatement,ctemprefnode.create(temp));
  4305. result:=newblock;
  4306. end;
  4307. function tinlinenode.first_length: tnode;
  4308. begin
  4309. result:=nil;
  4310. if is_shortstring(left.resultdef) then
  4311. expectloc:=left.expectloc
  4312. else
  4313. begin
  4314. { ansi/wide string }
  4315. expectloc:=LOC_REGISTER;
  4316. end;
  4317. end;
  4318. function tinlinenode.first_assigned: tnode;
  4319. begin
  4320. { Comparison must not call procvars, indicate that with nf_load_procvar flag }
  4321. result:=caddnode.create(unequaln,tcallparanode(left).left,cnilnode.create);
  4322. include(result.flags,nf_load_procvar);
  4323. tcallparanode(left).left:=nil;
  4324. end;
  4325. function tinlinenode.first_assert: tnode;
  4326. var
  4327. paras: tcallparanode;
  4328. begin
  4329. paras:=tcallparanode(tcallparanode(left).right);
  4330. paras:=ccallparanode.create(cstringconstnode.createstr(current_module.sourcefiles.get_file_name(current_filepos.fileindex)),paras);
  4331. paras:=ccallparanode.create(genintconstnode(fileinfo.line),paras);
  4332. {$ifdef SUPPORT_GET_FRAME}
  4333. paras:=ccallparanode.create(geninlinenode(in_get_frame,false,nil),paras);
  4334. {$else}
  4335. paras:=ccallparanode.create(ccallnode.createinternfromunit('SYSTEM','GET_FRAME',nil),paras);
  4336. {$endif}
  4337. result:=cifnode.create(cnotnode.create(tcallparanode(left).left),
  4338. ccallnode.createintern('fpc_assert',paras),nil);
  4339. include(result.flags,nf_internal);
  4340. tcallparanode(left).left:=nil;
  4341. tcallparanode(left).right:=nil;
  4342. end;
  4343. function tinlinenode.first_popcnt: tnode;
  4344. var
  4345. suffix : string;
  4346. begin
  4347. case torddef(left.resultdef).ordtype of
  4348. u8bit: suffix:='byte';
  4349. u16bit: suffix:='word';
  4350. u32bit: suffix:='dword';
  4351. u64bit: suffix:='qword';
  4352. else
  4353. internalerror(2012082601);
  4354. end;
  4355. result:=ccallnode.createintern('fpc_popcnt_'+suffix,ccallparanode.create(left,nil));
  4356. left:=nil;
  4357. end;
  4358. function tinlinenode.typecheck_seg: tnode;
  4359. begin
  4360. if target_info.system in systems_managed_vm then
  4361. message(parser_e_feature_unsupported_for_vm);
  4362. set_varstate(left,vs_read,[]);
  4363. result:=cordconstnode.create(0,s32inttype,false);
  4364. end;
  4365. function tinlinenode.first_seg: tnode;
  4366. begin
  4367. internalerror(200104046);
  4368. result:=nil;
  4369. end;
  4370. function tinlinenode.first_sar: tnode;
  4371. begin
  4372. result:=nil;
  4373. expectloc:=LOC_REGISTER;
  4374. {$if not defined(cpu64bitalu) and not defined(cpucg64shiftsupport)}
  4375. if is_64bitint(resultdef) then
  4376. begin
  4377. if (inlinenumber=in_sar_x) then
  4378. left:=ccallparanode.create(cordconstnode.create(1,u8inttype,false),
  4379. ccallparanode.create(left,nil));
  4380. result:=ccallnode.createintern('fpc_sarint64',left);
  4381. left:=nil;
  4382. end;
  4383. {$endif not defined(cpu64bitalu) and not defined(cpucg64shiftsupport)}
  4384. end;
  4385. function tinlinenode.handle_box: tnode;
  4386. begin
  4387. result:=nil;
  4388. if not assigned(left) or
  4389. assigned(tcallparanode(left).right) then
  4390. CGMessage1(parser_e_wrong_parameter_size,'FpcInternalBox');
  4391. resultdef:=class_tobject;
  4392. end;
  4393. function tinlinenode.handle_unbox: tnode;
  4394. begin
  4395. result:=nil;
  4396. if not assigned(left) or
  4397. not assigned(tcallparanode(left).right) or
  4398. assigned(tcallparanode(tcallparanode(left).right).right) then
  4399. CGMessage1(parser_e_wrong_parameter_size,'FpcInternalUnBox');
  4400. if tcallparanode(left).left.nodetype<>typen then
  4401. internalerror(2011071701);
  4402. ttypenode(tcallparanode(left).left).allowed:=true;
  4403. resultdef:=tcallparanode(left).left.resultdef;
  4404. end;
  4405. function tinlinenode.handle_insert: tnode;
  4406. procedure do_error;
  4407. begin
  4408. CGMessagePos1(fileinfo,parser_e_wrong_parameter_size,'Insert');
  4409. write_system_parameter_lists('fpc_shortstr_insert');
  4410. write_system_parameter_lists('fpc_shortstr_insert_char');
  4411. write_system_parameter_lists('fpc_unicodestr_insert');
  4412. if tf_winlikewidestring in target_info.flags then
  4413. write_system_parameter_lists('fpc_widestr_insert');
  4414. write_system_parameter_lists('fpc_ansistr_insert');
  4415. MessagePos1(fileinfo,sym_e_param_list,'Insert(Dynamic Array;var Dynamic Array;'+sinttype.typename+');');
  4416. MessagePos1(fileinfo,sym_e_param_list,'Insert(Element;var Dynamic Array;'+sinttype.typename+');');
  4417. end;
  4418. var
  4419. procname : String;
  4420. newn,
  4421. datan,
  4422. datacountn,
  4423. firstn,
  4424. secondn : tnode;
  4425. first,
  4426. second : tdef;
  4427. isconstr,
  4428. iscomparray,
  4429. iscompelem : boolean;
  4430. datatemp : ttempcreatenode;
  4431. insertblock : tblocknode;
  4432. insertstatement : tstatementnode;
  4433. begin
  4434. if not assigned(left) or
  4435. not assigned(tcallparanode(left).right) or
  4436. not assigned(tcallparanode(tcallparanode(left).right).right) or
  4437. assigned(tcallparanode(tcallparanode(tcallparanode(left).right).right).right) then
  4438. begin
  4439. do_error;
  4440. exit(cerrornode.create);
  4441. end;
  4442. { determine the correct function based on the second parameter }
  4443. firstn:=tcallparanode(tcallparanode(tcallparanode(left).right).right).left;
  4444. first:=firstn.resultdef;
  4445. secondn:=tcallparanode(tcallparanode(left).right).left;
  4446. second:=secondn.resultdef;
  4447. if is_shortstring(second) then
  4448. begin
  4449. if is_char(first) then
  4450. procname:='fpc_shortstr_insert_char'
  4451. else
  4452. procname:='fpc_shortstr_insert';
  4453. end
  4454. else if is_unicodestring(second) then
  4455. procname:='fpc_unicodestr_insert'
  4456. else if is_widestring(second) then
  4457. procname:='fpc_widestr_insert'
  4458. else if is_ansistring(second) then
  4459. procname:='fpc_ansistr_insert'
  4460. else if is_dynamic_array(second) then
  4461. begin
  4462. { The first parameter needs to be
  4463. a) a dynamic array of the same type
  4464. b) a single element of the same type
  4465. c) a static array of the same type (not Delphi compatible)
  4466. }
  4467. isconstr:=is_array_constructor(first);
  4468. iscomparray:=(first.typ=arraydef) and equal_defs(tarraydef(first).elementdef,tarraydef(second).elementdef);
  4469. iscompelem:=compare_defs(first,tarraydef(second).elementdef,niln)<>te_incompatible;
  4470. if not iscomparray
  4471. and not iscompelem
  4472. and not isconstr then
  4473. begin
  4474. CGMessagePos(fileinfo,type_e_array_required);
  4475. exit(cerrornode.create);
  4476. end;
  4477. insertblock:=internalstatements(insertstatement);
  4478. datatemp:=nil;
  4479. if iscomparray then
  4480. begin
  4481. datatemp:=ctempcreatenode.create_value(first,first.size,tt_normal,false,firstn);
  4482. addstatement(insertstatement,datatemp);
  4483. if is_dynamic_array(first) then
  4484. datan:=ctypeconvnode.create_internal(ctemprefnode.create(datatemp),voidpointertype)
  4485. else
  4486. datan:=caddrnode.create_internal(cvecnode.create(ctemprefnode.create(datatemp),cordconstnode.create(0,sizesinttype,false)));
  4487. datacountn:=cinlinenode.create(in_length_x,false,ctemprefnode.create(datatemp));
  4488. end
  4489. else if isconstr then
  4490. begin
  4491. inserttypeconv(firstn,second);
  4492. datatemp:=ctempcreatenode.create_value(second,second.size,tt_normal,false,firstn);
  4493. addstatement(insertstatement,datatemp);
  4494. datan:=ctypeconvnode.create_internal(ctemprefnode.create(datatemp),voidpointertype);
  4495. datacountn:=cinlinenode.create(in_length_x,false,ctemprefnode.create(datatemp));
  4496. end
  4497. else
  4498. begin
  4499. if is_const(firstn) then
  4500. begin
  4501. datatemp:=ctempcreatenode.create_value(tarraydef(second).elementdef,tarraydef(second).elementdef.size,tt_normal,false,firstn);
  4502. addstatement(insertstatement,datatemp);
  4503. datan:=caddrnode.create_internal(ctemprefnode.create(datatemp));
  4504. end
  4505. else
  4506. datan:=caddrnode.create_internal(ctypeconvnode.create_internal(firstn,tarraydef(second).elementdef));
  4507. datacountn:=cordconstnode.create(1,sizesinttype,false);
  4508. end;
  4509. procname:='fpc_dynarray_insert';
  4510. { recreate the parameters as array pointer, source, data, count, typeinfo }
  4511. newn:=ccallparanode.create(caddrnode.create_internal(crttinode.create(tstoreddef(second),initrtti,rdt_normal)),
  4512. ccallparanode.create(datacountn,
  4513. ccallparanode.create(datan,
  4514. ccallparanode.create(tcallparanode(left).left,
  4515. ccallparanode.create(ctypeconvnode.create_internal(secondn,voidpointertype),nil)))));
  4516. addstatement(insertstatement,ccallnode.createintern(procname,newn));
  4517. if assigned(datatemp) then
  4518. addstatement(insertstatement,ctempdeletenode.create(datatemp));
  4519. tcallparanode(tcallparanode(tcallparanode(left).right).right).left:=nil; // insert idx
  4520. tcallparanode(tcallparanode(left).right).left:=nil; // dyn array
  4521. tcallparanode(left).left:=nil; // insert element/array
  4522. left.free;
  4523. left:=nil;
  4524. result:=insertblock;
  4525. exit; { ! }
  4526. end
  4527. else if second.typ=undefineddef then
  4528. { just pick one }
  4529. procname:='fpc_ansistr_insert'
  4530. else
  4531. begin
  4532. do_error;
  4533. exit(cerrornode.create);
  4534. end;
  4535. result:=ccallnode.createintern(procname,left);
  4536. left:=nil;
  4537. end;
  4538. function tinlinenode.handle_delete: tnode;
  4539. procedure do_error;
  4540. begin
  4541. CGMessagePos1(fileinfo,parser_e_wrong_parameter_size,'Delete');
  4542. write_system_parameter_lists('fpc_shortstr_delete');
  4543. write_system_parameter_lists('fpc_unicodestr_delete');
  4544. if tf_winlikewidestring in target_info.flags then
  4545. write_system_parameter_lists('fpc_widestr_delete');
  4546. write_system_parameter_lists('fpc_ansistr_delete');
  4547. MessagePos1(fileinfo,sym_e_param_list,'Delete(var Dynamic Array;'+sinttype.typename+';'+sinttype.typename+');');
  4548. end;
  4549. var
  4550. procname : String;
  4551. first : tdef;
  4552. firstn,
  4553. newn : tnode;
  4554. begin
  4555. if not assigned(left) or
  4556. not assigned(tcallparanode(left).right) or
  4557. not assigned(tcallparanode(tcallparanode(left).right).right) or
  4558. assigned(tcallparanode(tcallparanode(tcallparanode(left).right).right).right) then
  4559. begin
  4560. do_error;
  4561. exit(cerrornode.create);
  4562. end;
  4563. { determine the correct function based on the first parameter }
  4564. firstn:=tcallparanode(tcallparanode(tcallparanode(left).right).right).left;
  4565. first:=firstn.resultdef;
  4566. if is_shortstring(first) then
  4567. procname:='fpc_shortstr_delete'
  4568. else if is_unicodestring(first) then
  4569. procname:='fpc_unicodestr_delete'
  4570. else if is_widestring(first) then
  4571. procname:='fpc_widestr_delete'
  4572. else if is_ansistring(first) then
  4573. procname:='fpc_ansistr_delete'
  4574. else if is_dynamic_array(first) then
  4575. begin
  4576. procname:='fpc_dynarray_delete';
  4577. { recreate the parameters as array pointer, src, count, typeinfo }
  4578. newn:=ccallparanode.create(caddrnode.create_internal
  4579. (crttinode.create(tstoreddef(first),initrtti,rdt_normal)),
  4580. ccallparanode.create(tcallparanode(left).left,
  4581. ccallparanode.create(tcallparanode(tcallparanode(left).right).left,
  4582. ccallparanode.create(ctypeconvnode.create_internal(firstn,voidpointertype),nil))));
  4583. tcallparanode(tcallparanode(tcallparanode(left).right).right).left:=nil;
  4584. tcallparanode(tcallparanode(left).right).left:=nil;
  4585. tcallparanode(left).left:=nil;
  4586. left.free;
  4587. left:=newn;
  4588. end
  4589. else if first.typ=undefineddef then
  4590. { just pick one }
  4591. procname:='fpc_ansistr_delete'
  4592. else
  4593. begin
  4594. do_error;
  4595. exit(cerrornode.create);
  4596. end;
  4597. result:=ccallnode.createintern(procname,left);
  4598. left:=nil;
  4599. end;
  4600. function tinlinenode.handle_concat:tnode;
  4601. procedure do_error;
  4602. begin
  4603. CGMessagePos1(fileinfo,parser_e_wrong_parameter_size,'Concat');
  4604. MessagePos1(fileinfo,sym_e_param_list,'Concat(String[;String;...])');
  4605. MessagePos1(fileinfo,sym_e_param_list,'Concat(Dynamic Array[;Dynamic Array;...])');
  4606. end;
  4607. var
  4608. cpn : tcallparanode;
  4609. list : tfpobjectlist;
  4610. n,
  4611. arrn,
  4612. firstn : tnode;
  4613. i : longint;
  4614. arrconstr : tarrayconstructornode;
  4615. newstatement : tstatementnode;
  4616. tempnode : ttempcreatenode;
  4617. lastchanged : boolean;
  4618. begin
  4619. if not assigned(left) then
  4620. begin
  4621. do_error;
  4622. exit(cerrornode.create);
  4623. end;
  4624. result:=nil;
  4625. { the arguments are right to left, but we need to work on them from
  4626. left to right, so insert them in a list and process that from back
  4627. to front }
  4628. list:=tfpobjectlist.create(false);
  4629. { remember the last (aka first) dynamic array parameter (important
  4630. in case of array constructors) }
  4631. arrn:=nil;
  4632. cpn:=tcallparanode(left);
  4633. while assigned(cpn) do
  4634. begin
  4635. list.add(cpn.left);
  4636. if is_dynamic_array(cpn.left.resultdef) then
  4637. arrn:=cpn.left;
  4638. cpn.left:=nil;
  4639. cpn:=tcallparanode(cpn.right);
  4640. end;
  4641. if list.count=0 then
  4642. internalerror(2017100901);
  4643. firstn:=tnode(list.last);
  4644. if not assigned(firstn) then
  4645. internalerror(2017100902);
  4646. { are we dealing with strings or dynamic arrays? }
  4647. if is_dynamic_array(firstn.resultdef) or is_array_constructor(firstn.resultdef) then
  4648. begin
  4649. { try to combine all consecutive array constructors }
  4650. lastchanged:=false;
  4651. i:=0;
  4652. repeat
  4653. if lastchanged or is_array_constructor(tnode(list[i]).resultdef) then
  4654. begin
  4655. if (i<list.count-1) and is_array_constructor(tnode(list[i+1]).resultdef) then
  4656. begin
  4657. arrconstr:=tarrayconstructornode(list[i+1]);
  4658. while assigned(arrconstr.right) do
  4659. arrconstr:=tarrayconstructornode(arrconstr.right);
  4660. arrconstr.right:=tnode(list[i]);
  4661. list[i]:=list[i+1];
  4662. list.delete(i+1);
  4663. lastchanged:=true;
  4664. tnode(list[i]).resultdef:=nil;
  4665. { don't increase index! }
  4666. continue;
  4667. end;
  4668. if lastchanged then
  4669. begin
  4670. { we concatted all consecutive ones, so typecheck the new one again }
  4671. n:=tnode(list[i]);
  4672. typecheckpass(n);
  4673. list[i]:=n;
  4674. end;
  4675. lastchanged:=false;
  4676. end;
  4677. inc(i);
  4678. until i=list.count;
  4679. if list.count=1 then
  4680. begin
  4681. { no need to call the concat helper }
  4682. result:=firstn;
  4683. end
  4684. else
  4685. begin
  4686. { if we reach this point then the concat list didn't consist
  4687. solely of array constructors }
  4688. if not assigned(arrn) then
  4689. internalerror(2017101001);
  4690. result:=internalstatements(newstatement);
  4691. { generate the open array constructor for the source arrays
  4692. note: the order needs to be swapped again here! }
  4693. arrconstr:=nil;
  4694. for i:=0 to list.count-1 do
  4695. begin
  4696. n:=tnode(list[i]);
  4697. { first convert to the target type }
  4698. if not is_array_constructor(n.resultdef) then
  4699. inserttypeconv(n,arrn.resultdef);
  4700. { we need to ensure that we get a reference counted
  4701. assignement for the temp array }
  4702. tempnode:=ctempcreatenode.create(arrn.resultdef,arrn.resultdef.size,tt_persistent,true);
  4703. addstatement(newstatement,tempnode);
  4704. addstatement(newstatement,cassignmentnode.create(ctemprefnode.create(tempnode),n));
  4705. addstatement(newstatement,ctempdeletenode.create_normal_temp(tempnode));
  4706. n:=ctemprefnode.create(tempnode);
  4707. { then to a plain pointer for the helper }
  4708. inserttypeconv_internal(n,voidpointertype);
  4709. arrconstr:=carrayconstructornode.create(n,arrconstr);
  4710. end;
  4711. arrconstr.allow_array_constructor:=true;
  4712. { based on the code from nopt.genmultistringadd() }
  4713. tempnode:=ctempcreatenode.create(arrn.resultdef,arrn.resultdef.size,tt_persistent,true);
  4714. addstatement(newstatement,tempnode);
  4715. { initialize the temp, since it will be passed to a
  4716. var-parameter (and finalization, which is performed by the
  4717. ttempcreate node and which takes care of the initialization
  4718. on native targets, is a noop on managed VM targets) }
  4719. if (target_info.system in systems_managed_vm) and
  4720. is_managed_type(arrn.resultdef) then
  4721. addstatement(newstatement,cinlinenode.create(in_setlength_x,
  4722. false,
  4723. ccallparanode.create(genintconstnode(0),
  4724. ccallparanode.create(ctemprefnode.create(tempnode),nil))));
  4725. cpn:=ccallparanode.create(
  4726. arrconstr,
  4727. ccallparanode.create(
  4728. caddrnode.create_internal(crttinode.create(tstoreddef(arrn.resultdef),initrtti,rdt_normal)),
  4729. ccallparanode.create(ctypeconvnode.create_internal(ctemprefnode.create(tempnode),voidpointertype),nil))
  4730. );
  4731. addstatement(
  4732. newstatement,
  4733. ccallnode.createintern(
  4734. 'fpc_dynarray_concat_multi',
  4735. cpn
  4736. )
  4737. );
  4738. addstatement(newstatement,ctempdeletenode.create_normal_temp(tempnode));
  4739. addstatement(newstatement,ctemprefnode.create(tempnode));
  4740. end;
  4741. end
  4742. else
  4743. begin
  4744. { enforce strings }
  4745. for i:=list.count-1 downto 0 do
  4746. begin
  4747. if assigned(result) then
  4748. result:=caddnode.create(addn,result,tnode(list[i]))
  4749. else
  4750. begin
  4751. result:=tnode(list[i]);
  4752. { Force string type if it isn't yet }
  4753. if not(
  4754. (result.resultdef.typ=stringdef) or
  4755. is_chararray(result.resultdef) or
  4756. is_char(result.resultdef)
  4757. ) then
  4758. inserttypeconv(result,cshortstringtype);
  4759. end;
  4760. end;
  4761. end;
  4762. list.free;
  4763. end;
  4764. function tinlinenode.first_pack_unpack: tnode;
  4765. var
  4766. loopstatement : tstatementnode;
  4767. loop : tblocknode;
  4768. loopvar : ttempcreatenode;
  4769. tempnode,
  4770. source,
  4771. target,
  4772. index,
  4773. unpackednode,
  4774. packednode,
  4775. sourcevecindex,
  4776. targetvecindex,
  4777. loopbody : tnode;
  4778. temprangedef : tdef;
  4779. ulorange,
  4780. uhirange,
  4781. plorange,
  4782. phirange : TConstExprInt;
  4783. begin
  4784. { transform into a for loop which assigns the data of the (un)packed }
  4785. { array to the other one }
  4786. source := left;
  4787. if (inlinenumber = in_unpack_x_y_z) then
  4788. begin
  4789. target := tcallparanode(source).right;
  4790. index := tcallparanode(target).right;
  4791. packednode := tcallparanode(source).left;
  4792. unpackednode := tcallparanode(target).left;
  4793. end
  4794. else
  4795. begin
  4796. index := tcallparanode(source).right;
  4797. target := tcallparanode(index).right;
  4798. packednode := tcallparanode(target).left;
  4799. unpackednode := tcallparanode(source).left;
  4800. end;
  4801. source := tcallparanode(source).left;
  4802. target := tcallparanode(target).left;
  4803. index := tcallparanode(index).left;
  4804. loop := internalstatements(loopstatement);
  4805. loopvar := ctempcreatenode.create(
  4806. tarraydef(packednode.resultdef).rangedef,
  4807. tarraydef(packednode.resultdef).rangedef.size,
  4808. tt_persistent,true);
  4809. addstatement(loopstatement,loopvar);
  4810. { For range checking: we have to convert to an integer type (in case the index type }
  4811. { is an enum), add the index and loop variable together, convert the result }
  4812. { implicitly to an orddef with range equal to the rangedef to get range checking }
  4813. { and finally convert it explicitly back to the actual rangedef to avoid type }
  4814. { errors }
  4815. temprangedef:=nil;
  4816. getrange(unpackednode.resultdef,ulorange,uhirange);
  4817. getrange(packednode.resultdef,plorange,phirange);
  4818. { does not really need to be registered, but then we would have to
  4819. record it elsewhere so it still can be freed }
  4820. temprangedef:=corddef.create(torddef(sinttype).ordtype,ulorange,uhirange,true);
  4821. sourcevecindex := ctemprefnode.create(loopvar);
  4822. targetvecindex := ctypeconvnode.create_internal(index.getcopy,sinttype);
  4823. targetvecindex := caddnode.create(subn,targetvecindex,cordconstnode.create(plorange,sinttype,true));
  4824. targetvecindex := caddnode.create(addn,targetvecindex,ctemprefnode.create(loopvar));
  4825. targetvecindex := ctypeconvnode.create(targetvecindex,temprangedef);
  4826. targetvecindex := ctypeconvnode.create_explicit(targetvecindex,tarraydef(unpackednode.resultdef).rangedef);
  4827. if (inlinenumber = in_pack_x_y_z) then
  4828. begin
  4829. { swap source and target vec indices }
  4830. tempnode := sourcevecindex;
  4831. sourcevecindex := targetvecindex;
  4832. targetvecindex := tempnode;
  4833. end;
  4834. { create the assignment in the loop body }
  4835. loopbody :=
  4836. cassignmentnode.create(
  4837. cvecnode.create(target.getcopy,targetvecindex),
  4838. cvecnode.create(source.getcopy,sourcevecindex)
  4839. );
  4840. { create the actual for loop }
  4841. tempnode := cfornode.create(
  4842. ctemprefnode.create(loopvar),
  4843. cinlinenode.create(in_low_x,false,packednode.getcopy),
  4844. cinlinenode.create(in_high_x,false,packednode.getcopy),
  4845. loopbody,
  4846. false);
  4847. addstatement(loopstatement,tempnode);
  4848. { free the loop counter }
  4849. addstatement(loopstatement,ctempdeletenode.create(loopvar));
  4850. result := loop;
  4851. end;
  4852. function tinlinenode.first_fma: tnode;
  4853. begin
  4854. CGMessage1(cg_e_function_not_support_by_selected_instruction_set,'FMA');
  4855. result:=nil;
  4856. end;
  4857. {$if not defined(cpu64bitalu) and not defined(cpuhighleveltarget)}
  4858. function tinlinenode.first_ShiftRot_assign_64bitint: tnode;
  4859. var
  4860. procname: string[31];
  4861. begin
  4862. {$ifdef cpucg64shiftsupport}
  4863. if inlinenumber in [in_sar_assign_x_y,in_shl_assign_x_y,in_shr_assign_x_y] then
  4864. begin
  4865. result:=nil;
  4866. expectloc:=tcallparanode(tcallparanode(left).right).left.expectloc;
  4867. exit;
  4868. end;
  4869. {$endif cpucg64shiftsupport}
  4870. result := nil;
  4871. if is_signed(tcallparanode(left).right.resultdef) then
  4872. procname:='int64'
  4873. else
  4874. procname:='qword';
  4875. case inlinenumber of
  4876. in_sar_assign_x_y:
  4877. procname := 'fpc_sar_assign_'+procname;
  4878. in_shl_assign_x_y:
  4879. procname := 'fpc_shl_assign_'+procname;
  4880. in_shr_assign_x_y:
  4881. procname := 'fpc_shr_assign_'+procname;
  4882. in_rol_assign_x_y:
  4883. procname := 'fpc_rol_assign_'+procname;
  4884. in_ror_assign_x_y:
  4885. procname := 'fpc_ror_assign_'+procname;
  4886. else
  4887. internalerror(2017041301);
  4888. end;
  4889. result := ccallnode.createintern(procname,ccallparanode.create(tcallparanode(left).left,
  4890. ccallparanode.create(tcallparanode(tcallparanode(left).right).left,nil)));
  4891. tcallparanode(tcallparanode(left).right).left := nil;
  4892. tcallparanode(left).left := nil;
  4893. firstpass(result);
  4894. end;
  4895. {$endif not cpu64bitalu and nto cpuhighleveltarget}
  4896. function tinlinenode.first_AndOrXorShiftRot_assign: tnode;
  4897. begin
  4898. {$if not defined(cpu64bitalu) and not defined(cpuhighleveltarget)}
  4899. { 64 bit ints have their own shift handling }
  4900. if is_64bit(tcallparanode(left).right.resultdef) and
  4901. (inlinenumber in [in_sar_assign_x_y,in_shl_assign_x_y,in_shr_assign_x_y,in_rol_assign_x_y,in_ror_assign_x_y]) then
  4902. result := first_ShiftRot_assign_64bitint
  4903. else
  4904. {$endif not cpu64bitalu and not cpuhighleveltarget}
  4905. begin
  4906. result:=nil;
  4907. expectloc:=tcallparanode(tcallparanode(left).right).left.expectloc;
  4908. end;
  4909. end;
  4910. function tinlinenode.first_NegNot_assign: tnode;
  4911. begin
  4912. result:=nil;
  4913. expectloc:=left.expectloc;
  4914. end;
  4915. function tinlinenode.first_cpu : tnode;
  4916. begin
  4917. Result:=nil;
  4918. internalerror(2017110101);
  4919. end;
  4920. procedure tinlinenode.CheckParameters(count: integer);
  4921. var
  4922. p: tnode;
  4923. begin
  4924. if count=1 then
  4925. set_varstate(left,vs_read,[vsf_must_be_valid])
  4926. else
  4927. begin
  4928. p:=left;
  4929. while count>0 do
  4930. begin
  4931. set_varstate(tcallparanode(p).left,vs_read,[vsf_must_be_valid]);
  4932. p:=tcallparanode(p).right;
  4933. dec(count);
  4934. end;
  4935. end;
  4936. end;
  4937. end.