ninl.pas 208 KB

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