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. {$if not defined(cpu64bitalu) and not defined(cpuhighleveltarget)}
  83. function first_ShiftRot_assign_64bitint: tnode; virtual;
  84. {$endif not cpu64bitalu and not cpuhighleveltarget}
  85. function first_AndOrXorShiftRot_assign: tnode; virtual;
  86. function first_NegNot_assign: tnode; virtual;
  87. function first_cpu : tnode; virtual;
  88. procedure CheckParameters(count : integer);
  89. private
  90. function handle_str: tnode;
  91. function handle_reset_rewrite_typed: tnode;
  92. function handle_text_read_write(filepara,params:Ttertiarynode;var newstatement:Tnode):boolean;
  93. function handle_typed_read_write(filepara,params:Ttertiarynode;var newstatement:Tnode):boolean;
  94. function handle_read_write: tnode;
  95. function handle_val: tnode;
  96. function handle_default: tnode;
  97. function handle_setlength: tnode;
  98. function handle_copy: tnode;
  99. function handle_box: tnode;
  100. function handle_unbox: tnode;
  101. function handle_insert:tnode;
  102. function handle_delete:tnode;
  103. function handle_concat:tnode;
  104. end;
  105. tinlinenodeclass = class of tinlinenode;
  106. var
  107. cinlinenode : tinlinenodeclass = tinlinenode;
  108. function geninlinenode(number : tinlinenumber;is_const:boolean;l : tnode) : tinlinenode;
  109. implementation
  110. uses
  111. verbose,globals,systems,constexp,
  112. globtype,cutils,cclasses,fmodule,
  113. symconst,symdef,symsym,symcpu,symtable,paramgr,defcmp,defutil,symbase,
  114. cpuinfo,
  115. pass_1,
  116. ncal,ncon,ncnv,nadd,nld,nbas,nflw,nmem,nmat,nutils,
  117. nobjc,objcdef,
  118. cgbase,procinfo;
  119. function geninlinenode(number : tinlinenumber;is_const:boolean;l : tnode) : tinlinenode;
  120. begin
  121. geninlinenode:=cinlinenode.create(number,is_const,l);
  122. end;
  123. {*****************************************************************************
  124. TINLINENODE
  125. *****************************************************************************}
  126. constructor tinlinenode.create(number : tinlinenumber;is_const:boolean;l : tnode);
  127. begin
  128. inherited create(inlinen,l);
  129. if is_const then
  130. include(flags,nf_inlineconst);
  131. inlinenumber:=number;
  132. end;
  133. constructor tinlinenode.createintern(number : tinlinenumber; is_const : boolean;
  134. l : tnode);
  135. begin
  136. create(number,is_const,l);
  137. include(flags,nf_internal);
  138. end;
  139. constructor tinlinenode.ppuload(t:tnodetype;ppufile:tcompilerppufile);
  140. begin
  141. inherited ppuload(t,ppufile);
  142. inlinenumber:=tinlinenumber(ppufile.getlongint);
  143. end;
  144. procedure tinlinenode.ppuwrite(ppufile:tcompilerppufile);
  145. begin
  146. inherited ppuwrite(ppufile);
  147. ppufile.putlongint(longint(inlinenumber));
  148. end;
  149. function tinlinenode.dogetcopy : tnode;
  150. var
  151. n : tinlinenode;
  152. begin
  153. n:=tinlinenode(inherited dogetcopy);
  154. n.inlinenumber:=inlinenumber;
  155. result:=n;
  156. end;
  157. procedure tinlinenode.printnodeinfo(var t : text);
  158. begin
  159. inherited;
  160. write(t,', inlinenumber = ',inlinenumber);
  161. end;
  162. function get_str_int_func(def: tdef): string;
  163. var
  164. ordtype: tordtype;
  165. begin
  166. ordtype := torddef(def).ordtype;
  167. if not (ordtype in [scurrency,s64bit,u64bit,s32bit,u32bit,s16bit,u16bit,s8bit,u8bit]) then
  168. internalerror(2013032603);
  169. if is_oversizedord(def) then
  170. begin
  171. case ordtype of
  172. scurrency,
  173. s64bit: exit('int64');
  174. u64bit: exit('qword');
  175. s32bit: exit('longint');
  176. u32bit: exit('longword');
  177. s16bit: exit('smallint');
  178. u16bit: exit('word');
  179. else
  180. internalerror(2013032604);
  181. end;
  182. end
  183. else
  184. begin
  185. if is_nativeuint(def) then
  186. exit('uint')
  187. else
  188. exit('sint');
  189. end;
  190. internalerror(2013032605);
  191. end;
  192. function tinlinenode.handle_str : tnode;
  193. var
  194. lenpara,
  195. fracpara,
  196. newparas,
  197. tmppara,
  198. dest,
  199. source : tcallparanode;
  200. procname: string;
  201. is_real,is_enum : boolean;
  202. rt : aint;
  203. begin
  204. result := cerrornode.create;
  205. { get destination string }
  206. dest := tcallparanode(left);
  207. { get source para (number) }
  208. source := dest;
  209. while assigned(source.right) do
  210. source := tcallparanode(source.right);
  211. { destination parameter must be a normal (not a colon) parameter, this
  212. check is needed because str(v:len) also has 2 parameters }
  213. if (source=dest) or
  214. (cpf_is_colon_para in tcallparanode(dest).callparaflags) then
  215. begin
  216. CGMessage1(parser_e_wrong_parameter_size,'Str');
  217. exit;
  218. end;
  219. { in case we are in a generic definition, we cannot
  220. do all checks, the parameters might be type parameters }
  221. if df_generic in current_procinfo.procdef.defoptions then
  222. begin
  223. result.Free;
  224. result:=nil;
  225. resultdef:=voidtype;
  226. exit;
  227. end;
  228. is_real:=(source.resultdef.typ = floatdef) or is_currency(source.resultdef);
  229. is_enum:=source.left.resultdef.typ=enumdef;
  230. if ((dest.left.resultdef.typ<>stringdef) and
  231. not(is_chararray(dest.left.resultdef))) or
  232. not(is_real or is_enum or
  233. (source.left.resultdef.typ=orddef)) then
  234. begin
  235. CGMessagePos(fileinfo,parser_e_illegal_expression);
  236. exit;
  237. end;
  238. { get len/frac parameters }
  239. lenpara := nil;
  240. fracpara := nil;
  241. if (cpf_is_colon_para in tcallparanode(dest.right).callparaflags) then
  242. begin
  243. lenpara := tcallparanode(dest.right);
  244. { we can let the callnode do the type checking of these parameters too, }
  245. { but then the error messages aren't as nice }
  246. if not is_integer(lenpara.resultdef) then
  247. begin
  248. CGMessagePos1(lenpara.fileinfo,
  249. type_e_integer_expr_expected,lenpara.resultdef.typename);
  250. exit;
  251. end;
  252. if (cpf_is_colon_para in tcallparanode(lenpara.right).callparaflags) then
  253. begin
  254. { parameters are in reverse order! }
  255. fracpara := lenpara;
  256. lenpara := tcallparanode(lenpara.right);
  257. if not is_real then
  258. begin
  259. CGMessagePos(lenpara.fileinfo,parser_e_illegal_colon_qualifier);
  260. exit
  261. end;
  262. if not is_integer(lenpara.resultdef) then
  263. begin
  264. CGMessagePos1(lenpara.fileinfo,
  265. type_e_integer_expr_expected,lenpara.resultdef.typename);
  266. exit;
  267. end;
  268. end;
  269. end;
  270. { generate the parameter list for the compilerproc }
  271. newparas := dest;
  272. { if we have a float parameter, insert the realtype, len and fracpara parameters }
  273. if is_real then
  274. begin
  275. { insert realtype parameter }
  276. if not is_currency(source.resultdef) then
  277. begin
  278. rt:=ord(tfloatdef(source.left.resultdef).floattype);
  279. newparas.right := ccallparanode.create(cordconstnode.create(
  280. rt,s32inttype,true),newparas.right);
  281. tmppara:=tcallparanode(newparas.right);
  282. end
  283. else
  284. tmppara:=newparas;
  285. { if necessary, insert a fraction parameter }
  286. if not assigned(fracpara) then
  287. begin
  288. tmppara.right := ccallparanode.create(
  289. cordconstnode.create(int64(-1),s32inttype,false),
  290. tmppara.right);
  291. fracpara := tcallparanode(tmppara.right);
  292. end;
  293. { if necessary, insert a length para }
  294. if not assigned(lenpara) then
  295. fracpara.right := ccallparanode.create(
  296. cordconstnode.create(int64(-32767),s32inttype,false),
  297. fracpara.right);
  298. end
  299. else if is_enum then
  300. begin
  301. {Insert a reference to the ord2string index.}
  302. newparas.right:=Ccallparanode.create(
  303. Caddrnode.create_internal(
  304. Crttinode.create(Tenumdef(source.left.resultdef),fullrtti,rdt_normal)
  305. ),
  306. newparas.right);
  307. {Insert a reference to the typinfo.}
  308. newparas.right:=Ccallparanode.create(
  309. Caddrnode.create_internal(
  310. Crttinode.create(Tenumdef(source.left.resultdef),fullrtti,rdt_ord2str)
  311. ),
  312. newparas.right);
  313. {Insert a type conversion from the enumeration to longint.}
  314. source.left:=Ctypeconvnode.create_internal(source.left,s32inttype);
  315. typecheckpass(source.left);
  316. { if necessary, insert a length para }
  317. if not assigned(lenpara) then
  318. Tcallparanode(Tcallparanode(newparas.right).right).right:=
  319. Ccallparanode.create(
  320. cordconstnode.create(int64(-1),s32inttype,false),
  321. Tcallparanode(Tcallparanode(newparas.right).right).right
  322. );
  323. end
  324. else
  325. { for a normal parameter, insert a only length parameter if one is missing }
  326. if not assigned(lenpara) then
  327. newparas.right := ccallparanode.create(cordconstnode.create(int64(-1),s32inttype,false),
  328. newparas.right);
  329. { remove the parameters from the original node so they won't get disposed, }
  330. { since they're reused }
  331. left := nil;
  332. { create procedure name }
  333. if is_chararray(dest.resultdef) then
  334. procname:='fpc_chararray_'
  335. else
  336. procname := 'fpc_' + tstringdef(dest.resultdef).stringtypname+'_';
  337. if is_real then
  338. if is_currency(source.resultdef) then
  339. procname := procname + 'currency'
  340. else
  341. procname := procname + 'float'
  342. else if is_enum then
  343. procname:=procname+'enum'
  344. else
  345. case torddef(source.resultdef).ordtype of
  346. pasbool1,pasbool8,pasbool16,pasbool32,pasbool64,
  347. bool8bit,bool16bit,bool32bit,bool64bit:
  348. procname := procname + 'bool';
  349. else
  350. procname := procname + get_str_int_func(source.resultdef);
  351. end;
  352. { for ansistrings insert the encoding argument }
  353. if is_ansistring(dest.resultdef) then
  354. newparas:=ccallparanode.create(cordconstnode.create(
  355. getparaencoding(dest.resultdef),u16inttype,true),newparas);
  356. { free the errornode we generated in the beginning }
  357. result.free;
  358. { create the call node, }
  359. result := ccallnode.createintern(procname,newparas);
  360. end;
  361. function tinlinenode.handle_default: tnode;
  362. function getdefaultvarsym(def:tdef):tnode;
  363. var
  364. hashedid : thashedidstring;
  365. srsym : tsym;
  366. srsymtable : tsymtable;
  367. defaultname : tidstring;
  368. begin
  369. if not assigned(def) or
  370. not (def.typ in [arraydef,recorddef,variantdef,objectdef,procvardef]) or
  371. ((def.typ=objectdef) and not is_object(def)) then
  372. internalerror(201202101);
  373. { extra '$' prefix because on darwin the result of makemangledname
  374. is prefixed by '_' and hence adding a '$' at the start of the
  375. prefix passed to makemangledname doesn't help (the whole point of
  376. the copy() operation below is to ensure that the id does not start
  377. with a '$', because that is interpreted specially by the symtable
  378. routines -- that's also why we prefix with '$_', so it will still
  379. work if make_mangledname() would somehow return a name that already
  380. starts with '$' }
  381. defaultname:='$_'+make_mangledname('zero',def.owner,def.typesym.Name);
  382. { can't hardcode the position of the '$', e.g. on darwin an underscore
  383. is added }
  384. hashedid.id:=copy(defaultname,2,255);
  385. { the default sym is always part of the current procedure/function }
  386. srsymtable:=current_procinfo.procdef.localst;
  387. srsym:=tsym(srsymtable.findwithhash(hashedid));
  388. if not assigned(srsym) then
  389. begin
  390. { no valid default variable found, so create it }
  391. srsym:=clocalvarsym.create(defaultname,vs_const,def,[],true);
  392. srsymtable.insert(srsym);
  393. { mark the staticvarsym as typedconst }
  394. include(tabstractvarsym(srsym).varoptions,vo_is_typed_const);
  395. include(tabstractvarsym(srsym).varoptions,vo_is_default_var);
  396. { The variable has a value assigned }
  397. tabstractvarsym(srsym).varstate:=vs_initialised;
  398. { the variable can't be placed in a register }
  399. tabstractvarsym(srsym).varregable:=vr_none;
  400. end;
  401. result:=cloadnode.create(srsym,srsymtable);
  402. end;
  403. var
  404. def : tdef;
  405. begin
  406. if not assigned(left) or (left.nodetype<>typen) then
  407. internalerror(2012032101);
  408. def:=ttypenode(left).typedef;
  409. result:=nil;
  410. case def.typ of
  411. enumdef,
  412. orddef:
  413. { don't do a rangecheck as Default will also return 0
  414. for the following types (Delphi compatible):
  415. TRange1 = -10..-5;
  416. TRange2 = 5..10;
  417. TEnum = (a:=5;b:=10); }
  418. result:=cordconstnode.create(0,def,false);
  419. classrefdef,
  420. pointerdef:
  421. result:=cpointerconstnode.create(0,def);
  422. procvardef:
  423. if tprocvardef(def).size<>sizeof(pint) then
  424. result:=getdefaultvarsym(def)
  425. else
  426. result:=cpointerconstnode.create(0,def);
  427. stringdef:
  428. result:=cstringconstnode.createstr('');
  429. floatdef:
  430. result:=crealconstnode.create(0,def);
  431. objectdef:
  432. begin
  433. if is_implicit_pointer_object_type(def) then
  434. result:=cpointerconstnode.create(0,def)
  435. else
  436. if is_object(def) then
  437. begin
  438. { Delphi does not recursively check whether
  439. an object contains unsupported types }
  440. if not (m_delphi in current_settings.modeswitches) and
  441. not is_valid_for_default(def) then
  442. Message(type_e_type_not_allowed_for_default);
  443. result:=getdefaultvarsym(def);
  444. end
  445. else
  446. Message(type_e_type_not_allowed_for_default);
  447. end;
  448. variantdef,
  449. recorddef:
  450. begin
  451. { Delphi does not recursively check whether a record
  452. contains unsupported types }
  453. if (def.typ=recorddef) and not (m_delphi in current_settings.modeswitches) and
  454. not is_valid_for_default(def) then
  455. Message(type_e_type_not_allowed_for_default);
  456. result:=getdefaultvarsym(def);
  457. end;
  458. setdef:
  459. begin
  460. result:=csetconstnode.create(nil,def);
  461. New(tsetconstnode(result).value_set);
  462. tsetconstnode(result).value_set^:=[];
  463. end;
  464. arraydef:
  465. begin
  466. { can other array types be parsed by single_type? }
  467. if ado_isdynamicarray in tarraydef(def).arrayoptions then
  468. result:=cpointerconstnode.create(0,def)
  469. else
  470. begin
  471. result:=getdefaultvarsym(def);
  472. end;
  473. end;
  474. undefineddef:
  475. begin
  476. if sp_generic_dummy in def.typesym.symoptions then
  477. begin
  478. { this matches the error messages that are printed
  479. in case of non-Delphi modes }
  480. Message(parser_e_no_generics_as_types);
  481. Message(type_e_type_id_expected);
  482. end
  483. else
  484. result:=cpointerconstnode.create(0,def);
  485. end;
  486. else
  487. Message(type_e_type_not_allowed_for_default);
  488. end;
  489. if not assigned(result) then
  490. result:=cerrornode.create;
  491. end;
  492. function tinlinenode.handle_reset_rewrite_typed: tnode;
  493. begin
  494. { since this is a "in_xxxx_typedfile" node, we can be sure we have }
  495. { a typed file as argument and we don't have to check it again (JM) }
  496. { add the recsize parameter }
  497. { iso mode extension with name? }
  498. if inlinenumber in [in_reset_typedfile_name,in_rewrite_typedfile_name] then
  499. begin
  500. left := ccallparanode.create(cordconstnode.create(
  501. tfiledef(tcallparanode(tcallparanode(left).nextpara).paravalue.resultdef).typedfiledef.size,s32inttype,true),left);
  502. end
  503. else
  504. begin
  505. { note: for some reason, the parameter of intern procedures with only one }
  506. { parameter is gets lifted out of its original tcallparanode (see round }
  507. { line 1306 of ncal.pas), so recreate a tcallparanode here (JM) }
  508. left := ccallparanode.create(cordconstnode.create(
  509. tfiledef(left.resultdef).typedfiledef.size,s32inttype,true),
  510. ccallparanode.create(left,nil));
  511. end;
  512. { create the correct call }
  513. if m_isolike_io in current_settings.modeswitches then
  514. begin
  515. case inlinenumber of
  516. in_reset_typedfile:
  517. result := ccallnode.createintern('fpc_reset_typed_iso',left);
  518. in_reset_typedfile_name:
  519. result := ccallnode.createintern('fpc_reset_typed_name_iso',left);
  520. in_rewrite_typedfile:
  521. result := ccallnode.createintern('fpc_rewrite_typed_iso',left);
  522. in_rewrite_typedfile_name:
  523. result := ccallnode.createintern('fpc_rewrite_typed_name_iso',left);
  524. else
  525. internalerror(2016101501);
  526. end;
  527. end
  528. else
  529. begin
  530. if inlinenumber=in_reset_typedfile then
  531. result := ccallnode.createintern('fpc_reset_typed',left)
  532. else
  533. result := ccallnode.createintern('fpc_rewrite_typed',left);
  534. end;
  535. { make sure left doesn't get disposed, since we use it in the new call }
  536. left := nil;
  537. end;
  538. procedure maybe_convert_to_string(var n: tnode);
  539. begin
  540. { stringconstnodes are arrays of char. It's much more }
  541. { efficient to write a constant string, so convert }
  542. { either to shortstring or ansistring depending on }
  543. { length }
  544. if (n.nodetype=stringconstn) then
  545. if is_chararray(n.resultdef) then
  546. if (tstringconstnode(n).len<=255) then
  547. inserttypeconv(n,cshortstringtype)
  548. else
  549. inserttypeconv(n,getansistringdef)
  550. else if is_widechararray(n.resultdef) then
  551. inserttypeconv(n,cunicodestringtype);
  552. end;
  553. procedure get_read_write_int_func(def: tdef; out func_suffix: string; out readfunctype: tdef);
  554. var
  555. ordtype: tordtype;
  556. begin
  557. ordtype := torddef(def).ordtype;
  558. if 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. 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. 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. else
  2114. internalerror(88);
  2115. end;
  2116. end;
  2117. if hp=nil then
  2118. hp:=cerrornode.create;
  2119. result:=hp;
  2120. end
  2121. else
  2122. begin
  2123. case inlinenumber of
  2124. in_lo_long,
  2125. in_hi_long,
  2126. in_lo_qword,
  2127. in_hi_qword,
  2128. in_lo_word,
  2129. in_hi_word :
  2130. begin
  2131. if left.nodetype=ordconstn then
  2132. begin
  2133. case inlinenumber of
  2134. in_lo_word :
  2135. result:=cordconstnode.create(tordconstnode(left).value and $ff,u8inttype,true);
  2136. in_hi_word :
  2137. result:=cordconstnode.create(tordconstnode(left).value shr 8,u8inttype,true);
  2138. in_lo_long :
  2139. result:=cordconstnode.create(tordconstnode(left).value and $ffff,u16inttype,true);
  2140. in_hi_long :
  2141. result:=cordconstnode.create(tordconstnode(left).value shr 16,u16inttype,true);
  2142. in_lo_qword :
  2143. result:=cordconstnode.create(tordconstnode(left).value and $ffffffff,u32inttype,true);
  2144. in_hi_qword :
  2145. result:=cordconstnode.create(tordconstnode(left).value shr 32,u32inttype,true);
  2146. end;
  2147. end;
  2148. end;
  2149. in_ord_x:
  2150. begin
  2151. case left.resultdef.typ of
  2152. orddef :
  2153. begin
  2154. case torddef(left.resultdef).ordtype of
  2155. pasbool1,
  2156. pasbool8,
  2157. uchar:
  2158. begin
  2159. { change to byte() }
  2160. result:=ctypeconvnode.create_internal(left,u8inttype);
  2161. left:=nil;
  2162. end;
  2163. pasbool16,
  2164. uwidechar :
  2165. begin
  2166. { change to word() }
  2167. result:=ctypeconvnode.create_internal(left,u16inttype);
  2168. left:=nil;
  2169. end;
  2170. pasbool32 :
  2171. begin
  2172. { change to dword() }
  2173. result:=ctypeconvnode.create_internal(left,u32inttype);
  2174. left:=nil;
  2175. end;
  2176. pasbool64 :
  2177. begin
  2178. { change to qword() }
  2179. result:=ctypeconvnode.create_internal(left,u64inttype);
  2180. left:=nil;
  2181. end;
  2182. bool8bit:
  2183. begin
  2184. { change to shortint() }
  2185. result:=ctypeconvnode.create_internal(left,s8inttype);
  2186. left:=nil;
  2187. end;
  2188. bool16bit :
  2189. begin
  2190. { change to smallint() }
  2191. result:=ctypeconvnode.create_internal(left,s16inttype);
  2192. left:=nil;
  2193. end;
  2194. bool32bit :
  2195. begin
  2196. { change to longint() }
  2197. result:=ctypeconvnode.create_internal(left,s32inttype);
  2198. left:=nil;
  2199. end;
  2200. bool64bit :
  2201. begin
  2202. { change to int64() }
  2203. result:=ctypeconvnode.create_internal(left,s64inttype);
  2204. left:=nil;
  2205. end;
  2206. uvoid :
  2207. CGMessage1(type_e_ordinal_expr_expected,left.resultdef.typename);
  2208. else
  2209. begin
  2210. { all other orddef need no transformation }
  2211. result:=left;
  2212. left:=nil;
  2213. end;
  2214. end;
  2215. end;
  2216. enumdef :
  2217. begin
  2218. result:=ctypeconvnode.create_internal(left,s32inttype);
  2219. left:=nil;
  2220. end;
  2221. pointerdef :
  2222. begin
  2223. if m_mac in current_settings.modeswitches then
  2224. begin
  2225. result:=ctypeconvnode.create_internal(left,ptruinttype);
  2226. left:=nil;
  2227. end
  2228. end;
  2229. end;
  2230. (*
  2231. if (left.nodetype=ordconstn) then
  2232. begin
  2233. result:=cordconstnode.create(
  2234. tordconstnode(left).value,sinttype,true);
  2235. end
  2236. else if (m_mac in current_settings.modeswitches) and
  2237. (left.ndoetype=pointerconstn) then
  2238. result:=cordconstnode.create(
  2239. tpointerconstnode(left).value,ptruinttype,true);
  2240. *)
  2241. end;
  2242. in_chr_byte:
  2243. begin
  2244. { convert to explicit char() }
  2245. result:=ctypeconvnode.create_internal(left,cansichartype);
  2246. left:=nil;
  2247. end;
  2248. in_length_x:
  2249. begin
  2250. case left.resultdef.typ of
  2251. stringdef :
  2252. begin
  2253. if (left.nodetype=stringconstn) then
  2254. begin
  2255. result:=cordconstnode.create(
  2256. tstringconstnode(left).len,sinttype,true);
  2257. end;
  2258. end;
  2259. orddef :
  2260. begin
  2261. { length of char is always one }
  2262. if is_char(left.resultdef) or
  2263. is_widechar(left.resultdef) then
  2264. begin
  2265. result:=cordconstnode.create(1,sinttype,false);
  2266. end
  2267. end;
  2268. arraydef :
  2269. begin
  2270. if (left.nodetype=stringconstn) then
  2271. begin
  2272. result:=cordconstnode.create(
  2273. tstringconstnode(left).len,sinttype,true);
  2274. end
  2275. else if not is_open_array(left.resultdef) and
  2276. not is_array_of_const(left.resultdef) and
  2277. not is_dynamic_array(left.resultdef) then
  2278. result:=cordconstnode.create(tarraydef(left.resultdef).highrange-
  2279. tarraydef(left.resultdef).lowrange+1,
  2280. sinttype,true);
  2281. end;
  2282. end;
  2283. end;
  2284. in_assigned_x:
  2285. begin
  2286. if is_constnode(tcallparanode(left).left) or
  2287. (tcallparanode(left).left.nodetype = pointerconstn) then
  2288. begin
  2289. { let an add node figure it out }
  2290. result:=caddnode.create(unequaln,tcallparanode(left).left,cnilnode.create);
  2291. tcallparanode(left).left := nil;
  2292. end;
  2293. end;
  2294. in_pred_x,
  2295. in_succ_x:
  2296. begin
  2297. case left.nodetype of
  2298. ordconstn:
  2299. begin
  2300. if inlinenumber=in_succ_x then
  2301. vl:=tordconstnode(left).value+1
  2302. else
  2303. vl:=tordconstnode(left).value-1;
  2304. if is_integer(left.resultdef) then
  2305. { the type of the original integer constant is irrelevant,
  2306. it should be automatically adapted to the new value
  2307. (except when inlining) }
  2308. result:=create_simplified_ord_const(vl,resultdef,forinline)
  2309. else
  2310. { check the range for enums, chars, booleans }
  2311. result:=cordconstnode.create(vl,left.resultdef,not(nf_internal in flags))
  2312. end;
  2313. addn,
  2314. subn:
  2315. begin
  2316. { fold succ/pred in child add/sub nodes with a constant if possible:
  2317. - no overflow/range checking
  2318. - equal types
  2319. }
  2320. if ([cs_check_overflow,cs_check_range]*current_settings.localswitches)=[] then
  2321. begin
  2322. if inlinenumber=in_succ_x then
  2323. vl:=1
  2324. else
  2325. vl:=-1;
  2326. if (taddnode(left).left.nodetype=ordconstn) and equal_defs(resultdef,taddnode(left).left.resultdef) then
  2327. begin
  2328. tordconstnode(taddnode(left).left).value:=tordconstnode(taddnode(left).left).value+vl;
  2329. result:=left;
  2330. left:=nil;
  2331. end
  2332. else if (taddnode(left).right.nodetype=ordconstn) and equal_defs(resultdef,taddnode(left).right.resultdef) then
  2333. begin
  2334. if left.nodetype=subn then
  2335. tordconstnode(taddnode(left).right).value:=tordconstnode(taddnode(left).right).value-vl
  2336. else
  2337. tordconstnode(taddnode(left).right).value:=tordconstnode(taddnode(left).right).value+vl;
  2338. result:=left;
  2339. left:=nil;
  2340. end;
  2341. end;
  2342. end;
  2343. end;
  2344. end;
  2345. in_low_x,
  2346. in_high_x:
  2347. begin
  2348. case left.resultdef.typ of
  2349. orddef,
  2350. enumdef:
  2351. begin
  2352. result:=do_lowhigh(left.resultdef);
  2353. end;
  2354. setdef:
  2355. begin
  2356. result:=do_lowhigh(tsetdef(left.resultdef).elementdef);
  2357. end;
  2358. arraydef:
  2359. begin
  2360. if (inlinenumber=in_low_x) then
  2361. begin
  2362. result:=cordconstnode.create(int64(tarraydef(
  2363. left.resultdef).lowrange),tarraydef(left.resultdef).rangedef,true);
  2364. end
  2365. else if not is_open_array(left.resultdef) and
  2366. not is_array_of_const(left.resultdef) and
  2367. not is_dynamic_array(left.resultdef) then
  2368. result:=cordconstnode.create(int64(tarraydef(left.resultdef).highrange),
  2369. tarraydef(left.resultdef).rangedef,true);
  2370. end;
  2371. stringdef:
  2372. begin
  2373. if inlinenumber=in_low_x then
  2374. begin
  2375. if is_dynamicstring(left.resultdef) and
  2376. not(cs_zerobasedstrings in current_settings.localswitches) then
  2377. result:=cordconstnode.create(1,u8inttype,false)
  2378. else
  2379. result:=cordconstnode.create(0,u8inttype,false);
  2380. end
  2381. else if not is_dynamicstring(left.resultdef) then
  2382. result:=cordconstnode.create(tstringdef(left.resultdef).len,u8inttype,true)
  2383. end;
  2384. undefineddef:
  2385. begin
  2386. result:=cordconstnode.create(0,u8inttype,false);
  2387. end;
  2388. end;
  2389. end;
  2390. in_exp_real :
  2391. begin
  2392. if left.nodetype in [ordconstn,realconstn] then
  2393. begin
  2394. result:=crealconstnode.create(exp(getconstrealvalue),pbestrealtype^);
  2395. if (trealconstnode(result).value_real=MathInf.Value) and
  2396. floating_point_range_check_error then
  2397. begin
  2398. result:=crealconstnode.create(0,pbestrealtype^);
  2399. CGMessage(parser_e_range_check_error);
  2400. end;
  2401. end
  2402. end;
  2403. in_trunc_real :
  2404. begin
  2405. if left.nodetype in [ordconstn,realconstn] then
  2406. begin
  2407. vr:=getconstrealvalue;
  2408. if (vr>=9223372036854775807.99) or (vr<=-9223372036854775808.0) then
  2409. begin
  2410. message3(type_e_range_check_error_bounds,realtostr(vr),'-9223372036854775808.0','9223372036854775807.99..');
  2411. result:=cordconstnode.create(1,s64inttype,false)
  2412. end
  2413. else
  2414. result:=cordconstnode.create(trunc(vr),s64inttype,true)
  2415. end
  2416. end;
  2417. in_round_real :
  2418. begin
  2419. { can't evaluate while inlining, may depend on fpu setting }
  2420. if (not forinline) and
  2421. (left.nodetype in [ordconstn,realconstn]) then
  2422. begin
  2423. vr:=getconstrealvalue;
  2424. if (vr>=9223372036854775807.5) or (vr<=-9223372036854775808.5) then
  2425. begin
  2426. message3(type_e_range_check_error_bounds,realtostr(vr),'-9223372036854775808.49..','9223372036854775807.49..');
  2427. result:=cordconstnode.create(1,s64inttype,false)
  2428. end
  2429. else
  2430. result:=cordconstnode.create(round(vr),s64inttype,true)
  2431. end
  2432. end;
  2433. in_frac_real :
  2434. begin
  2435. if left.nodetype in [ordconstn,realconstn] then
  2436. setconstrealvalue(frac(getconstrealvalue))
  2437. end;
  2438. in_int_real :
  2439. begin
  2440. if left.nodetype in [ordconstn,realconstn] then
  2441. setconstrealvalue(int(getconstrealvalue));
  2442. end;
  2443. in_pi_real :
  2444. begin
  2445. if block_type=bt_const then
  2446. setconstrealvalue(getpi)
  2447. end;
  2448. in_cos_real :
  2449. begin
  2450. if left.nodetype in [ordconstn,realconstn] then
  2451. setconstrealvalue(cos(getconstrealvalue))
  2452. end;
  2453. in_sin_real :
  2454. begin
  2455. if left.nodetype in [ordconstn,realconstn] then
  2456. setconstrealvalue(sin(getconstrealvalue))
  2457. end;
  2458. in_arctan_real :
  2459. begin
  2460. if left.nodetype in [ordconstn,realconstn] then
  2461. setconstrealvalue(arctan(getconstrealvalue))
  2462. end;
  2463. in_abs_real :
  2464. begin
  2465. if left.nodetype in [ordconstn,realconstn] then
  2466. setconstrealvalue(abs(getconstrealvalue))
  2467. end;
  2468. in_abs_long:
  2469. begin
  2470. if left.nodetype=ordconstn then
  2471. begin
  2472. if tordconstnode(left).value<0 then
  2473. result:=cordconstnode.create((-tordconstnode(left).value),resultdef,false)
  2474. else
  2475. result:=cordconstnode.create((tordconstnode(left).value),resultdef,false);
  2476. end
  2477. end;
  2478. in_sqr_real :
  2479. begin
  2480. if left.nodetype in [ordconstn,realconstn] then
  2481. setconstrealvalue(sqr(getconstrealvalue))
  2482. end;
  2483. in_sqrt_real :
  2484. begin
  2485. if left.nodetype in [ordconstn,realconstn] then
  2486. result:=handle_sqrt_const(getconstrealvalue);
  2487. end;
  2488. in_ln_real :
  2489. begin
  2490. if left.nodetype in [ordconstn,realconstn] then
  2491. result:=handle_ln_const(getconstrealvalue);
  2492. end;
  2493. in_assert_x_y :
  2494. begin
  2495. if not(cs_do_assertion in current_settings.localswitches) then
  2496. { we need a valid node, so insert a nothingn }
  2497. result:=cnothingnode.create;
  2498. end;
  2499. in_sar_x,
  2500. in_sar_x_y :
  2501. begin
  2502. result:=handle_const_sar;
  2503. end;
  2504. in_rol_x,
  2505. in_rol_x_y,
  2506. in_ror_x,
  2507. in_ror_x_y :
  2508. result:=handle_const_rox;
  2509. in_bsf_x:
  2510. begin
  2511. if left.nodetype=ordconstn then
  2512. begin
  2513. case left.resultdef.size of
  2514. 1:
  2515. result:=cordconstnode.create(BsfByte(Byte(tordconstnode(left).value.uvalue)),resultdef,false);
  2516. 2:
  2517. result:=cordconstnode.create(BsfWord(Word(tordconstnode(left).value.uvalue)),resultdef,false);
  2518. 4:
  2519. result:=cordconstnode.create(BsfDWord(DWord(tordconstnode(left).value.uvalue)),resultdef,false);
  2520. 8:
  2521. result:=cordconstnode.create(BsfQWord(QWord(tordconstnode(left).value.uvalue)),resultdef,false);
  2522. else
  2523. internalerror(2017042401);
  2524. end;
  2525. end;
  2526. end;
  2527. in_bsr_x :
  2528. begin
  2529. if left.nodetype=ordconstn then
  2530. begin
  2531. case left.resultdef.size of
  2532. 1:
  2533. result:=cordconstnode.create(BsrByte(Byte(tordconstnode(left).value.uvalue)),resultdef,false);
  2534. 2:
  2535. result:=cordconstnode.create(BsrWord(Word(tordconstnode(left).value.uvalue)),resultdef,false);
  2536. 4:
  2537. result:=cordconstnode.create(BsrDWord(DWord(tordconstnode(left).value.uvalue)),resultdef,false);
  2538. 8:
  2539. result:=cordconstnode.create(BsrQWord(QWord(tordconstnode(left).value.uvalue)),resultdef,false);
  2540. else
  2541. internalerror(2017042401);
  2542. end;
  2543. end;
  2544. end;
  2545. in_popcnt_x :
  2546. begin
  2547. if left.nodetype=ordconstn then
  2548. begin
  2549. result:=cordconstnode.create(PopCnt(tordconstnode(left).value),resultdef,false);
  2550. end;
  2551. end;
  2552. end;
  2553. end;
  2554. end;
  2555. function tinlinenode.pass_typecheck:tnode;
  2556. procedure setfloatresultdef;
  2557. var
  2558. hnode: tnode;
  2559. begin
  2560. { System unit declares internal functions like this:
  2561. function foo(x: valreal): valreal; [internproc: number];
  2562. Calls to such functions are initially processed by callnode,
  2563. which typechecks the arguments, possibly inserting conversion to valreal.
  2564. To handle smaller types without excess precision, we need to remove
  2565. these extra typecasts. }
  2566. if (left.nodetype=typeconvn) and
  2567. (ttypeconvnode(left).left.resultdef.typ=floatdef) and
  2568. (left.flags*[nf_explicit,nf_internal]=[]) and
  2569. (tfloatdef(ttypeconvnode(left).left.resultdef).floattype in [s32real,s64real,s80real,sc80real,s128real]) then
  2570. begin
  2571. hnode:=ttypeconvnode(left).left;
  2572. ttypeconvnode(left).left:=nil;
  2573. left.free;
  2574. left:=hnode;
  2575. resultdef:=left.resultdef;
  2576. end
  2577. else if (left.resultdef.typ=floatdef) and
  2578. (tfloatdef(left.resultdef).floattype in [s32real,s64real,s80real,sc80real,s128real]) then
  2579. resultdef:=left.resultdef
  2580. else
  2581. begin
  2582. if (left.nodetype <> ordconstn) then
  2583. inserttypeconv(left,pbestrealtype^);
  2584. resultdef:=pbestrealtype^;
  2585. end;
  2586. end;
  2587. procedure handle_pack_unpack;
  2588. var
  2589. source, target, index: tcallparanode;
  2590. unpackedarraydef, packedarraydef: tarraydef;
  2591. tempindex: TConstExprInt;
  2592. begin
  2593. resultdef:=voidtype;
  2594. unpackedarraydef := nil;
  2595. packedarraydef := nil;
  2596. source := tcallparanode(left);
  2597. if (inlinenumber = in_unpack_x_y_z) then
  2598. begin
  2599. target := tcallparanode(source.right);
  2600. index := tcallparanode(target.right);
  2601. { source must be a packed array }
  2602. if not is_packed_array(source.left.resultdef) then
  2603. CGMessagePos2(source.left.fileinfo,type_e_got_expected_packed_array,'1',source.left.resultdef.typename)
  2604. else
  2605. packedarraydef := tarraydef(source.left.resultdef);
  2606. { target can be any kind of array, as long as it's not packed }
  2607. if (target.left.resultdef.typ <> arraydef) or
  2608. is_packed_array(target.left.resultdef) then
  2609. CGMessagePos2(target.left.fileinfo,type_e_got_expected_unpacked_array,'2',target.left.resultdef.typename)
  2610. else
  2611. unpackedarraydef := tarraydef(target.left.resultdef);
  2612. end
  2613. else
  2614. begin
  2615. index := tcallparanode(source.right);
  2616. target := tcallparanode(index.right);
  2617. { source can be any kind of array, as long as it's not packed }
  2618. if (source.left.resultdef.typ <> arraydef) or
  2619. is_packed_array(source.left.resultdef) then
  2620. CGMessagePos2(source.left.fileinfo,type_e_got_expected_unpacked_array,'1',source.left.resultdef.typename)
  2621. else
  2622. unpackedarraydef := tarraydef(source.left.resultdef);
  2623. { target must be a packed array }
  2624. if not is_packed_array(target.left.resultdef) then
  2625. CGMessagePos2(target.left.fileinfo,type_e_got_expected_packed_array,'3',target.left.resultdef.typename)
  2626. else
  2627. packedarraydef := tarraydef(target.left.resultdef);
  2628. end;
  2629. if assigned(unpackedarraydef) then
  2630. begin
  2631. { index must be compatible with the unpacked array's indextype }
  2632. inserttypeconv(index.left,unpackedarraydef.rangedef);
  2633. { range check at compile time if possible }
  2634. if assigned(packedarraydef) and
  2635. (index.left.nodetype = ordconstn) and
  2636. not is_special_array(unpackedarraydef) then
  2637. begin
  2638. testrange(unpackedarraydef,tordconstnode(index.left).value,false,false);
  2639. tempindex := tordconstnode(index.left).value + packedarraydef.highrange-packedarraydef.lowrange;
  2640. testrange(unpackedarraydef,tempindex,false,false);
  2641. end;
  2642. end;
  2643. { source array is read and must be valid }
  2644. set_varstate(source.left,vs_read,[vsf_must_be_valid]);
  2645. { target array is written }
  2646. valid_for_assignment(target.left,true);
  2647. set_varstate(target.left,vs_written,[]);
  2648. { index in the unpacked array is read and must be valid }
  2649. set_varstate(index.left,vs_read,[vsf_must_be_valid]);
  2650. { if the size of the arrays is 0 (array of empty records), }
  2651. { do nothing }
  2652. if (source.resultdef.size = 0) then
  2653. result:=cnothingnode.create;
  2654. end;
  2655. function handle_objc_encode: tnode;
  2656. var
  2657. encodedtype: ansistring;
  2658. errordef: tdef;
  2659. begin
  2660. encodedtype:='';
  2661. if not objctryencodetype(left.resultdef,encodedtype,errordef) then
  2662. Message1(type_e_objc_type_unsupported,errordef.typename);
  2663. result:=cstringconstnode.createpchar(ansistring2pchar(encodedtype),length(encodedtype),nil);
  2664. end;
  2665. var
  2666. hightree,
  2667. hp : tnode;
  2668. temp_pnode: pnode;
  2669. begin
  2670. result:=nil;
  2671. { when handling writeln "left" contains no valid address }
  2672. if assigned(left) then
  2673. begin
  2674. if left.nodetype=callparan then
  2675. tcallparanode(left).get_paratype
  2676. else
  2677. typecheckpass(left);
  2678. end;
  2679. if not(nf_inlineconst in flags) then
  2680. begin
  2681. case inlinenumber of
  2682. in_lo_long,
  2683. in_hi_long,
  2684. in_lo_qword,
  2685. in_hi_qword,
  2686. in_lo_word,
  2687. in_hi_word :
  2688. begin
  2689. { give warning for incompatibility with tp and delphi }
  2690. if (inlinenumber in [in_lo_long,in_hi_long,in_lo_qword,in_hi_qword]) and
  2691. ((m_tp7 in current_settings.modeswitches) or
  2692. (m_delphi in current_settings.modeswitches)) then
  2693. CGMessage(type_w_maybe_wrong_hi_lo);
  2694. set_varstate(left,vs_read,[vsf_must_be_valid]);
  2695. if not is_integer(left.resultdef) then
  2696. CGMessage1(type_e_integer_expr_expected,left.resultdef.typename);
  2697. case inlinenumber of
  2698. in_lo_word,
  2699. in_hi_word :
  2700. resultdef:=u8inttype;
  2701. in_lo_long,
  2702. in_hi_long :
  2703. resultdef:=u16inttype;
  2704. in_lo_qword,
  2705. in_hi_qword :
  2706. resultdef:=u32inttype;
  2707. end;
  2708. end;
  2709. in_sizeof_x:
  2710. begin
  2711. { the constant evaluation of in_sizeof_x happens in pexpr where possible }
  2712. set_varstate(left,vs_read,[]);
  2713. if (left.resultdef.typ<>undefineddef) and
  2714. paramanager.push_high_param(vs_value,left.resultdef,current_procinfo.procdef.proccalloption) then
  2715. begin
  2716. { this should be an open array or array of const, both of
  2717. which can only be simple load nodes of parameters }
  2718. if left.nodetype<>loadn then
  2719. internalerror(2014120701);
  2720. hightree:=load_high_value_node(tparavarsym(tloadnode(left).symtableentry));
  2721. if assigned(hightree) then
  2722. begin
  2723. hp:=caddnode.create(addn,hightree,
  2724. cordconstnode.create(1,sinttype,false));
  2725. if (left.resultdef.typ=arraydef) then
  2726. if not is_packed_array(tarraydef(left.resultdef)) then
  2727. begin
  2728. if (tarraydef(left.resultdef).elesize<>1) then
  2729. hp:=caddnode.create(muln,hp,cordconstnode.create(tarraydef(
  2730. left.resultdef).elesize,sinttype,true));
  2731. end
  2732. else if (tarraydef(left.resultdef).elepackedbitsize <> 8) then
  2733. begin
  2734. { no packed open array support yet }
  2735. if (hp.nodetype <> ordconstn) then
  2736. internalerror(2006081511);
  2737. hp.free;
  2738. hp := cordconstnode.create(left.resultdef.size,sinttype,true);
  2739. {
  2740. hp:=
  2741. ctypeconvnode.create_explicit(sinttype,
  2742. cmoddivnode.create(divn,
  2743. caddnode.create(addn,
  2744. caddnode.create(muln,hp,cordconstnode.create(tarraydef(
  2745. left.resultdef).elepackedbitsize,s64inttype,true)),
  2746. cordconstnode.create(a,s64inttype,true)),
  2747. cordconstnode.create(8,s64inttype,true)),
  2748. sinttype);
  2749. }
  2750. end;
  2751. result:=hp;
  2752. end;
  2753. end
  2754. else
  2755. resultdef:=sinttype;
  2756. end;
  2757. in_typeof_x:
  2758. begin
  2759. if target_info.system in systems_managed_vm then
  2760. message(parser_e_feature_unsupported_for_vm);
  2761. typecheckpass(left);
  2762. set_varstate(left,vs_read,[]);
  2763. if (left.resultdef.typ=objectdef) and
  2764. not(oo_has_vmt in tobjectdef(left.resultdef).objectoptions) then
  2765. message(type_e_typeof_requires_vmt);
  2766. resultdef:=voidpointertype;
  2767. end;
  2768. in_ord_x:
  2769. begin
  2770. set_varstate(left,vs_read,[vsf_must_be_valid]);
  2771. case left.resultdef.typ of
  2772. orddef,
  2773. enumdef :
  2774. ;
  2775. pointerdef :
  2776. begin
  2777. if not(m_mac in current_settings.modeswitches) then
  2778. CGMessage1(type_e_ordinal_expr_expected,left.resultdef.typename);
  2779. end
  2780. else
  2781. CGMessage1(type_e_ordinal_expr_expected,left.resultdef.typename);
  2782. end;
  2783. end;
  2784. in_chr_byte:
  2785. begin
  2786. set_varstate(left,vs_read,[vsf_must_be_valid]);
  2787. end;
  2788. in_length_x:
  2789. begin
  2790. if ((left.resultdef.typ=arraydef) and
  2791. (not is_special_array(left.resultdef) or
  2792. is_open_array(left.resultdef))) or
  2793. (left.resultdef.typ=orddef) then
  2794. set_varstate(left,vs_read,[])
  2795. else
  2796. set_varstate(left,vs_read,[vsf_must_be_valid]);
  2797. case left.resultdef.typ of
  2798. variantdef:
  2799. begin
  2800. inserttypeconv(left,getansistringdef);
  2801. end;
  2802. stringdef :
  2803. begin
  2804. { we don't need string convertions here, }
  2805. { except if from widestring to ansistring }
  2806. { and vice versa (that can change the }
  2807. { length) }
  2808. if (left.nodetype=typeconvn) and
  2809. (ttypeconvnode(left).left.resultdef.typ=stringdef) and
  2810. not(is_wide_or_unicode_string(left.resultdef) xor
  2811. is_wide_or_unicode_string(ttypeconvnode(left).left.resultdef)) then
  2812. begin
  2813. hp:=ttypeconvnode(left).left;
  2814. ttypeconvnode(left).left:=nil;
  2815. left.free;
  2816. left:=hp;
  2817. end;
  2818. end;
  2819. orddef :
  2820. begin
  2821. { will be handled in simplify }
  2822. if not is_char(left.resultdef) and
  2823. not is_widechar(left.resultdef) then
  2824. CGMessage(type_e_mismatch);
  2825. end;
  2826. pointerdef :
  2827. begin
  2828. if is_pchar(left.resultdef) then
  2829. begin
  2830. hp := ccallparanode.create(left,nil);
  2831. result := ccallnode.createintern('fpc_pchar_length',hp);
  2832. { make sure the left node doesn't get disposed, since it's }
  2833. { reused in the new node (JM) }
  2834. left:=nil;
  2835. exit;
  2836. end
  2837. else if is_pwidechar(left.resultdef) then
  2838. begin
  2839. hp := ccallparanode.create(left,nil);
  2840. result := ccallnode.createintern('fpc_pwidechar_length',hp);
  2841. { make sure the left node doesn't get disposed, since it's }
  2842. { reused in the new node (JM) }
  2843. left:=nil;
  2844. exit;
  2845. end
  2846. else
  2847. CGMessage(type_e_mismatch);
  2848. end;
  2849. arraydef :
  2850. begin
  2851. if is_open_array(left.resultdef) or
  2852. is_array_of_const(left.resultdef) then
  2853. begin
  2854. hightree:=load_high_value_node(tparavarsym(tloadnode(left).symtableentry));
  2855. if assigned(hightree) then
  2856. result:=caddnode.create(addn,hightree,
  2857. cordconstnode.create(1,sinttype,false));
  2858. exit;
  2859. end
  2860. { Length() for dynamic arrays is inlined }
  2861. else
  2862. begin
  2863. { will be handled in simplify }
  2864. end;
  2865. end;
  2866. undefineddef :
  2867. begin
  2868. if not (df_generic in current_procinfo.procdef.defoptions) then
  2869. CGMessage(type_e_mismatch);
  2870. { otherwise nothing }
  2871. end;
  2872. else
  2873. CGMessage(type_e_mismatch);
  2874. end;
  2875. { shortstring return an 8 bit value as the length
  2876. is the first byte of the string }
  2877. if is_shortstring(left.resultdef) then
  2878. resultdef:=u8inttype
  2879. else
  2880. resultdef:=ossinttype;
  2881. end;
  2882. in_typeinfo_x:
  2883. begin
  2884. if target_info.system in systems_managed_vm then
  2885. message(parser_e_feature_unsupported_for_vm);
  2886. if (left.resultdef.typ=enumdef) and
  2887. (tenumdef(left.resultdef).has_jumps) then
  2888. CGMessage(type_e_no_type_info);
  2889. set_varstate(left,vs_read,[vsf_must_be_valid]);
  2890. resultdef:=voidpointertype;
  2891. end;
  2892. in_gettypekind_x:
  2893. begin
  2894. if target_info.system in systems_managed_vm then
  2895. message(parser_e_feature_unsupported_for_vm);
  2896. if (left.resultdef.typ=enumdef) and
  2897. (tenumdef(left.resultdef).has_jumps) then
  2898. CGMessage(type_e_no_type_info);
  2899. set_varstate(left,vs_read,[vsf_must_be_valid]);
  2900. resultdef:=typekindtype;
  2901. end;
  2902. in_assigned_x:
  2903. begin
  2904. { the parser has already made sure the expression is valid }
  2905. { in case of a complex procvar, only check the "code" pointer }
  2906. if (tcallparanode(left).left.resultdef.typ=procvardef) and
  2907. not tprocvardef(tcallparanode(left).left.resultdef).is_addressonly then
  2908. begin
  2909. inserttypeconv_explicit(tcallparanode(left).left,search_system_type('TMETHOD').typedef);
  2910. tcallparanode(left).left:=csubscriptnode.create(tsym(tabstractrecorddef(tcallparanode(left).left.resultdef).symtable.find('CODE')),tcallparanode(left).left);
  2911. tcallparanode(left).get_paratype;
  2912. end;
  2913. { Postpone conversion into addnode until firstpass, so targets
  2914. may override first_assigned and insert specific code. }
  2915. set_varstate(tcallparanode(left).left,vs_read,[vsf_must_be_valid]);
  2916. resultdef:=pasbool1type;
  2917. end;
  2918. in_ofs_x :
  2919. internalerror(2000101001);
  2920. in_seg_x :
  2921. begin
  2922. result := typecheck_seg;
  2923. end;
  2924. in_pred_x,
  2925. in_succ_x:
  2926. begin
  2927. set_varstate(left,vs_read,[vsf_must_be_valid]);
  2928. resultdef:=left.resultdef;
  2929. if is_ordinal(resultdef) or is_typeparam(resultdef) then
  2930. begin
  2931. if (resultdef.typ=enumdef) and
  2932. (tenumdef(resultdef).has_jumps) and
  2933. not(m_delphi in current_settings.modeswitches) and
  2934. not(nf_internal in flags) then
  2935. CGMessage(type_e_succ_and_pred_enums_with_assign_not_possible);
  2936. end
  2937. else
  2938. CGMessage(type_e_ordinal_expr_expected)
  2939. end;
  2940. in_copy_x:
  2941. result:=handle_copy;
  2942. in_initialize_x,
  2943. in_finalize_x:
  2944. begin
  2945. { inlined from pinline }
  2946. internalerror(200204231);
  2947. end;
  2948. in_setlength_x:
  2949. begin
  2950. result:=handle_setlength;
  2951. end;
  2952. in_inc_x,
  2953. in_dec_x:
  2954. begin
  2955. resultdef:=voidtype;
  2956. if not(df_generic in current_procinfo.procdef.defoptions) then
  2957. begin
  2958. if assigned(left) then
  2959. begin
  2960. { first param must be var }
  2961. valid_for_var(tcallparanode(left).left,true);
  2962. set_varstate(tcallparanode(left).left,vs_readwritten,[vsf_must_be_valid]);
  2963. if (left.resultdef.typ in [enumdef,pointerdef]) or
  2964. is_ordinal(left.resultdef) or
  2965. is_currency(left.resultdef) then
  2966. begin
  2967. { value of left gets changed -> must be unique }
  2968. set_unique(tcallparanode(left).left);
  2969. { two paras ? }
  2970. if assigned(tcallparanode(left).right) then
  2971. begin
  2972. if is_integer(tcallparanode(left).right.resultdef) then
  2973. begin
  2974. set_varstate(tcallparanode(tcallparanode(left).right).left,vs_read,[vsf_must_be_valid]);
  2975. { when range/overflow checking is on, we
  2976. convert this to a regular add, and for proper
  2977. checking we need the original type }
  2978. if ([cs_check_range,cs_check_overflow]*current_settings.localswitches=[]) then
  2979. if (tcallparanode(left).left.resultdef.typ=pointerdef) then
  2980. begin
  2981. { don't convert values added to pointers into the pointer types themselves,
  2982. because that will turn signed values into unsigned ones, which then
  2983. goes wrong when they have to be multiplied with the size of the elements
  2984. to which the pointer points in ncginl (mantis #17342) }
  2985. if is_signed(tcallparanode(tcallparanode(left).right).left.resultdef) then
  2986. inserttypeconv(tcallparanode(tcallparanode(left).right).left,tpointerdef(tcallparanode(left).left.resultdef).pointer_arithmetic_int_type)
  2987. else
  2988. inserttypeconv(tcallparanode(tcallparanode(left).right).left,tpointerdef(tcallparanode(left).left.resultdef).pointer_arithmetic_uint_type)
  2989. end
  2990. else if is_integer(tcallparanode(left).left.resultdef) then
  2991. inserttypeconv(tcallparanode(tcallparanode(left).right).left,tcallparanode(left).left.resultdef)
  2992. else
  2993. inserttypeconv_internal(tcallparanode(tcallparanode(left).right).left,tcallparanode(left).left.resultdef);
  2994. if assigned(tcallparanode(tcallparanode(left).right).right) then
  2995. { should be handled in the parser (JM) }
  2996. internalerror(2006020901);
  2997. end
  2998. else
  2999. CGMessagePos(tcallparanode(left).right.fileinfo,type_e_ordinal_expr_expected);
  3000. end;
  3001. end
  3002. { generic type parameter? }
  3003. else if is_typeparam(left.resultdef) then
  3004. begin
  3005. result:=cnothingnode.create;
  3006. exit;
  3007. end
  3008. else
  3009. begin
  3010. hp:=self;
  3011. if isunaryoverloaded(hp,[]) then
  3012. begin
  3013. { inc(rec) and dec(rec) assigns result value to argument }
  3014. result:=cassignmentnode.create(tcallparanode(left).left.getcopy,hp);
  3015. exit;
  3016. end
  3017. else
  3018. CGMessagePos(left.fileinfo,type_e_ordinal_expr_expected);
  3019. end;
  3020. end
  3021. else
  3022. CGMessagePos(fileinfo,type_e_mismatch);
  3023. end;
  3024. end;
  3025. in_and_assign_x_y,
  3026. in_or_assign_x_y,
  3027. in_xor_assign_x_y,
  3028. in_sar_assign_x_y,
  3029. in_shl_assign_x_y,
  3030. in_shr_assign_x_y,
  3031. in_rol_assign_x_y,
  3032. in_ror_assign_x_y:
  3033. begin
  3034. resultdef:=voidtype;
  3035. if not(df_generic in current_procinfo.procdef.defoptions) then
  3036. begin
  3037. { first parameter must exist }
  3038. if not assigned(left) or (left.nodetype<>callparan) then
  3039. internalerror(2017032501);
  3040. { second parameter must exist }
  3041. if not assigned(tcallparanode(left).right) or (tcallparanode(left).right.nodetype<>callparan) then
  3042. internalerror(2017032502);
  3043. { third parameter must NOT exist }
  3044. if assigned(tcallparanode(tcallparanode(left).right).right) then
  3045. internalerror(2017032503);
  3046. valid_for_var(tcallparanode(tcallparanode(left).right).left,true);
  3047. set_varstate(tcallparanode(tcallparanode(left).right).left,vs_readwritten,[vsf_must_be_valid]);
  3048. if is_integer(tcallparanode(left).right.resultdef) then
  3049. begin
  3050. { value of right gets changed -> must be unique }
  3051. set_unique(tcallparanode(tcallparanode(left).right).left);
  3052. if is_integer(left.resultdef) then
  3053. begin
  3054. set_varstate(tcallparanode(left).left,vs_read,[vsf_must_be_valid]);
  3055. { these nodes shouldn't be created, when range checking is on }
  3056. if [cs_check_range,cs_check_overflow]*localswitches<>[] then
  3057. internalerror(2017032701);
  3058. 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
  3059. inserttypeconv(tcallparanode(left).left,sinttype)
  3060. else
  3061. inserttypeconv(tcallparanode(left).left,tcallparanode(tcallparanode(left).right).left.resultdef);
  3062. end
  3063. else
  3064. CGMessagePos(left.fileinfo,type_e_ordinal_expr_expected);
  3065. end
  3066. { generic type parameter? }
  3067. else if is_typeparam(tcallparanode(left).right.resultdef) then
  3068. begin
  3069. result:=cnothingnode.create;
  3070. exit;
  3071. end
  3072. else
  3073. CGMessagePos(tcallparanode(left).right.fileinfo,type_e_ordinal_expr_expected);
  3074. end;
  3075. end;
  3076. in_neg_assign_x,
  3077. in_not_assign_x:
  3078. begin
  3079. resultdef:=voidtype;
  3080. if not(df_generic in current_procinfo.procdef.defoptions) then
  3081. begin
  3082. valid_for_var(left,true);
  3083. set_varstate(left,vs_readwritten,[vsf_must_be_valid]);
  3084. if is_integer(left.resultdef) then
  3085. begin
  3086. { value of left gets changed -> must be unique }
  3087. set_unique(left);
  3088. { these nodes shouldn't be created, when range checking is on }
  3089. if [cs_check_range,cs_check_overflow]*current_settings.localswitches<>[] then
  3090. internalerror(2017040703);
  3091. end
  3092. { generic type parameter? }
  3093. else if is_typeparam(left.resultdef) then
  3094. begin
  3095. result:=cnothingnode.create;
  3096. exit;
  3097. end
  3098. else
  3099. CGMessagePos(left.fileinfo,type_e_ordinal_expr_expected);
  3100. end;
  3101. end;
  3102. in_read_x,
  3103. in_readln_x,
  3104. in_readstr_x,
  3105. in_write_x,
  3106. in_writeln_x,
  3107. in_writestr_x :
  3108. begin
  3109. result := handle_read_write;
  3110. end;
  3111. in_settextbuf_file_x :
  3112. begin
  3113. if target_info.system in systems_managed_vm then
  3114. message(parser_e_feature_unsupported_for_vm);
  3115. resultdef:=voidtype;
  3116. { now we know the type of buffer }
  3117. hp:=ccallparanode.create(cordconstnode.create(
  3118. tcallparanode(left).left.resultdef.size,s32inttype,true),left);
  3119. result:=ccallnode.createintern('SETTEXTBUF',hp);
  3120. left:=nil;
  3121. end;
  3122. { the firstpass of the arg has been done in firstcalln ? }
  3123. in_reset_typedfile,
  3124. in_rewrite_typedfile,
  3125. in_reset_typedfile_name,
  3126. in_rewrite_typedfile_name :
  3127. begin
  3128. result := handle_reset_rewrite_typed;
  3129. end;
  3130. in_str_x_string :
  3131. begin
  3132. result:=handle_str;
  3133. end;
  3134. in_val_x :
  3135. begin
  3136. result:=handle_val;
  3137. end;
  3138. in_include_x_y,
  3139. in_exclude_x_y:
  3140. begin
  3141. resultdef:=voidtype;
  3142. { the parser already checks whether we have two (and exactly two) }
  3143. { parameters (JM) }
  3144. { first param must be var }
  3145. valid_for_var(tcallparanode(left).left,true);
  3146. set_varstate(tcallparanode(left).left,vs_readwritten,[vsf_must_be_valid]);
  3147. { check type }
  3148. if (left.resultdef.typ=setdef) then
  3149. begin
  3150. { insert a type conversion }
  3151. { to the type of the set elements }
  3152. set_varstate(tcallparanode(tcallparanode(left).right).left,vs_read,[vsf_must_be_valid]);
  3153. inserttypeconv(tcallparanode(tcallparanode(left).right).left,
  3154. tsetdef(left.resultdef).elementdef);
  3155. end
  3156. else
  3157. CGMessage(type_e_mismatch);
  3158. end;
  3159. in_pack_x_y_z,
  3160. in_unpack_x_y_z :
  3161. begin
  3162. handle_pack_unpack;
  3163. end;
  3164. in_slice_x:
  3165. begin
  3166. if target_info.system in systems_managed_vm then
  3167. message(parser_e_feature_unsupported_for_vm);
  3168. result:=nil;
  3169. resultdef:=tcallparanode(left).left.resultdef;
  3170. if (resultdef.typ <> arraydef) then
  3171. CGMessagePos(left.fileinfo,type_e_mismatch)
  3172. else if is_packed_array(resultdef) then
  3173. CGMessagePos2(left.fileinfo,type_e_got_expected_unpacked_array,'1',resultdef.typename);
  3174. if not(is_integer(tcallparanode(tcallparanode(left).right).left.resultdef)) then
  3175. CGMessagePos1(tcallparanode(left).right.fileinfo,
  3176. type_e_integer_expr_expected,
  3177. tcallparanode(tcallparanode(left).right).left.resultdef.typename);
  3178. end;
  3179. in_new_x:
  3180. resultdef:=left.resultdef;
  3181. in_low_x,
  3182. in_high_x:
  3183. begin
  3184. case left.resultdef.typ of
  3185. undefineddef,
  3186. orddef,
  3187. enumdef,
  3188. setdef:
  3189. ;
  3190. arraydef:
  3191. begin
  3192. if (inlinenumber=in_low_x) then
  3193. set_varstate(left,vs_read,[])
  3194. else
  3195. begin
  3196. if is_open_array(left.resultdef) or
  3197. is_array_of_const(left.resultdef) then
  3198. begin
  3199. set_varstate(left,vs_read,[]);
  3200. result:=load_high_value_node(tparavarsym(tloadnode(left).symtableentry));
  3201. end
  3202. else
  3203. if is_dynamic_array(left.resultdef) then
  3204. begin
  3205. set_varstate(left,vs_read,[vsf_must_be_valid]);
  3206. { can't use inserttypeconv because we need }
  3207. { an explicit type conversion (JM) }
  3208. hp := ccallparanode.create(ctypeconvnode.create_internal(left,voidpointertype),nil);
  3209. result := ccallnode.createintern('fpc_dynarray_high',hp);
  3210. { make sure the left node doesn't get disposed, since it's }
  3211. { reused in the new node (JM) }
  3212. left:=nil;
  3213. end
  3214. else
  3215. begin
  3216. set_varstate(left,vs_read,[]);
  3217. end;
  3218. end;
  3219. end;
  3220. stringdef:
  3221. begin
  3222. if inlinenumber=in_low_x then
  3223. begin
  3224. set_varstate(left,vs_read,[]);
  3225. end
  3226. else
  3227. begin
  3228. if is_open_string(left.resultdef) then
  3229. begin
  3230. set_varstate(left,vs_read,[]);
  3231. result:=load_high_value_node(tparavarsym(tloadnode(left).symtableentry))
  3232. end
  3233. else if is_dynamicstring(left.resultdef) then
  3234. begin
  3235. result:=cinlinenode.create(in_length_x,false,left);
  3236. if cs_zerobasedstrings in current_settings.localswitches then
  3237. result:=caddnode.create(subn,result,cordconstnode.create(1,sinttype,false));
  3238. { make sure the left node doesn't get disposed, since it's }
  3239. { reused in the new node (JM) }
  3240. left:=nil;
  3241. end
  3242. end;
  3243. end;
  3244. else
  3245. CGMessage(type_e_mismatch);
  3246. end;
  3247. end;
  3248. in_exp_real,
  3249. in_frac_real,
  3250. in_int_real,
  3251. in_cos_real,
  3252. in_sin_real,
  3253. in_arctan_real,
  3254. in_ln_real :
  3255. begin
  3256. set_varstate(left,vs_read,[vsf_must_be_valid]);
  3257. { converting an int64 to double on platforms without }
  3258. { extended can cause precision loss }
  3259. if not(left.nodetype in [ordconstn,realconstn]) then
  3260. inserttypeconv(left,pbestrealtype^);
  3261. resultdef:=pbestrealtype^;
  3262. end;
  3263. in_trunc_real,
  3264. in_round_real :
  3265. begin
  3266. { on i8086, the int64 result is returned in a var param, because
  3267. it's too big to fit in a register or a pair of registers. In
  3268. that case we have 2 parameters and left.nodetype is a callparan. }
  3269. if left.nodetype = callparan then
  3270. temp_pnode := @tcallparanode(left).left
  3271. else
  3272. temp_pnode := @left;
  3273. set_varstate(temp_pnode^,vs_read,[vsf_must_be_valid]);
  3274. { for direct float rounding, no best real type cast should be necessary }
  3275. if not((temp_pnode^.resultdef.typ=floatdef) and
  3276. (tfloatdef(temp_pnode^.resultdef).floattype in [s32real,s64real,s80real,sc80real,s128real])) and
  3277. { converting an int64 to double on platforms without }
  3278. { extended can cause precision loss }
  3279. not(temp_pnode^.nodetype in [ordconstn,realconstn]) then
  3280. inserttypeconv(temp_pnode^,pbestrealtype^);
  3281. resultdef:=s64inttype;
  3282. end;
  3283. in_pi_real :
  3284. begin
  3285. resultdef:=pbestrealtype^;
  3286. end;
  3287. in_abs_long:
  3288. begin
  3289. set_varstate(left,vs_read,[vsf_must_be_valid]);
  3290. resultdef:=left.resultdef;
  3291. end;
  3292. in_abs_real,
  3293. in_sqr_real,
  3294. in_sqrt_real :
  3295. begin
  3296. set_varstate(left,vs_read,[vsf_must_be_valid]);
  3297. setfloatresultdef;
  3298. end;
  3299. {$ifdef SUPPORT_MMX}
  3300. in_mmx_pcmpeqb..in_mmx_pcmpgtw:
  3301. begin
  3302. end;
  3303. {$endif SUPPORT_MMX}
  3304. in_aligned_x,
  3305. in_unaligned_x:
  3306. begin
  3307. resultdef:=left.resultdef;
  3308. end;
  3309. in_volatile_x:
  3310. begin
  3311. resultdef:=left.resultdef;
  3312. { volatile only makes sense if the value is in memory }
  3313. make_not_regable(left,[ra_addr_regable]);
  3314. end;
  3315. in_assert_x_y :
  3316. begin
  3317. resultdef:=voidtype;
  3318. if assigned(left) then
  3319. begin
  3320. set_varstate(tcallparanode(left).left,vs_read,[vsf_must_be_valid]);
  3321. { check type }
  3322. if is_boolean(left.resultdef) or
  3323. (
  3324. (left.resultdef.typ=undefineddef) and
  3325. (df_generic in current_procinfo.procdef.defoptions)
  3326. ) then
  3327. begin
  3328. set_varstate(tcallparanode(tcallparanode(left).right).left,vs_read,[vsf_must_be_valid]);
  3329. { must always be a string }
  3330. inserttypeconv(tcallparanode(tcallparanode(left).right).left,cshortstringtype);
  3331. end
  3332. else
  3333. CGMessage1(type_e_boolean_expr_expected,left.resultdef.typename);
  3334. end
  3335. else
  3336. CGMessage(type_e_mismatch);
  3337. if (cs_do_assertion in current_settings.localswitches) then
  3338. include(current_procinfo.flags,pi_do_call);
  3339. end;
  3340. in_prefetch_var:
  3341. resultdef:=voidtype;
  3342. in_get_frame,
  3343. in_get_caller_frame,
  3344. in_get_caller_addr:
  3345. begin
  3346. resultdef:=voidpointertype;
  3347. end;
  3348. in_rol_x,
  3349. in_ror_x,
  3350. in_sar_x:
  3351. begin
  3352. set_varstate(left,vs_read,[vsf_must_be_valid]);
  3353. resultdef:=left.resultdef;
  3354. end;
  3355. in_rol_x_y,
  3356. in_ror_x_y,
  3357. in_sar_x_y:
  3358. begin
  3359. set_varstate(tcallparanode(left).left,vs_read,[vsf_must_be_valid]);
  3360. set_varstate(tcallparanode(tcallparanode(left).right).left,vs_read,[vsf_must_be_valid]);
  3361. resultdef:=tcallparanode(tcallparanode(left).right).left.resultdef;
  3362. end;
  3363. in_bsf_x,
  3364. in_bsr_x:
  3365. begin
  3366. set_varstate(left,vs_read,[vsf_must_be_valid]);
  3367. if not is_integer(left.resultdef) then
  3368. CGMessage1(type_e_integer_expr_expected,left.resultdef.typename);
  3369. if torddef(left.resultdef).ordtype in [u64bit, s64bit] then
  3370. resultdef:=u64inttype
  3371. else
  3372. resultdef:=u32inttype
  3373. end;
  3374. in_popcnt_x:
  3375. begin
  3376. set_varstate(left,vs_read,[vsf_must_be_valid]);
  3377. if not is_integer(left.resultdef) then
  3378. CGMessage1(type_e_integer_expr_expected,left.resultdef.typename);
  3379. resultdef:=left.resultdef;
  3380. end;
  3381. in_objc_selector_x:
  3382. begin
  3383. result:=cobjcselectornode.create(left);
  3384. { reused }
  3385. left:=nil;
  3386. end;
  3387. in_objc_protocol_x:
  3388. begin
  3389. result:=cobjcprotocolnode.create(left);
  3390. { reused }
  3391. left:=nil;
  3392. end;
  3393. in_objc_encode_x:
  3394. begin
  3395. result:=handle_objc_encode;
  3396. end;
  3397. in_default_x:
  3398. begin
  3399. result:=handle_default;
  3400. end;
  3401. in_box_x:
  3402. begin
  3403. result:=handle_box;
  3404. end;
  3405. in_unbox_x_y:
  3406. begin
  3407. result:=handle_unbox;
  3408. end;
  3409. in_fma_single,
  3410. in_fma_double,
  3411. in_fma_extended,
  3412. in_fma_float128:
  3413. begin
  3414. set_varstate(tcallparanode(left).left,vs_read,[vsf_must_be_valid]);
  3415. set_varstate(tcallparanode(tcallparanode(left).right).left,vs_read,[vsf_must_be_valid]);
  3416. set_varstate(tcallparanode(tcallparanode(tcallparanode(left).right).right).left,vs_read,[vsf_must_be_valid]);
  3417. resultdef:=tcallparanode(left).left.resultdef;
  3418. end;
  3419. in_delete_x_y_z:
  3420. begin
  3421. result:=handle_delete;
  3422. end;
  3423. in_insert_x_y_z:
  3424. begin
  3425. result:=handle_insert;
  3426. end;
  3427. in_concat_x:
  3428. begin
  3429. result:=handle_concat;
  3430. end;
  3431. else
  3432. result:=pass_typecheck_cpu;
  3433. end;
  3434. end;
  3435. if not assigned(result) and not
  3436. codegenerror then
  3437. result:=simplify(false);
  3438. end;
  3439. function tinlinenode.pass_typecheck_cpu : tnode;
  3440. begin
  3441. Result:=nil;
  3442. internalerror(2017110102);
  3443. end;
  3444. function tinlinenode.pass_1 : tnode;
  3445. var
  3446. hp: tnode;
  3447. shiftconst: longint;
  3448. objdef: tobjectdef;
  3449. sym : tsym;
  3450. begin
  3451. result:=nil;
  3452. { if we handle writeln; left contains no valid address }
  3453. if assigned(left) then
  3454. begin
  3455. if left.nodetype=callparan then
  3456. tcallparanode(left).firstcallparan
  3457. else
  3458. firstpass(left);
  3459. end;
  3460. { intern const should already be handled }
  3461. if nf_inlineconst in flags then
  3462. internalerror(200104044);
  3463. case inlinenumber of
  3464. in_lo_qword,
  3465. in_hi_qword,
  3466. in_lo_long,
  3467. in_hi_long,
  3468. in_lo_word,
  3469. in_hi_word:
  3470. begin
  3471. shiftconst := 0;
  3472. case inlinenumber of
  3473. in_hi_qword:
  3474. shiftconst := 32;
  3475. in_hi_long:
  3476. shiftconst := 16;
  3477. in_hi_word:
  3478. shiftconst := 8;
  3479. end;
  3480. if shiftconst <> 0 then
  3481. result := ctypeconvnode.create_internal(cshlshrnode.create(shrn,left,
  3482. cordconstnode.create(shiftconst,sinttype,false)),resultdef)
  3483. else
  3484. result := ctypeconvnode.create_internal(left,resultdef);
  3485. left := nil;
  3486. firstpass(result);
  3487. end;
  3488. in_sizeof_x,
  3489. in_typeof_x:
  3490. begin
  3491. expectloc:=LOC_REGISTER;
  3492. case left.resultdef.typ of
  3493. objectdef,classrefdef:
  3494. begin
  3495. if left.resultdef.typ=objectdef then
  3496. begin
  3497. result:=cloadvmtaddrnode.create(left);
  3498. objdef:=tobjectdef(left.resultdef);
  3499. end
  3500. else
  3501. begin
  3502. result:=left;
  3503. objdef:=tobjectdef(tclassrefdef(left.resultdef).pointeddef);
  3504. end;
  3505. left:=nil;
  3506. if inlinenumber=in_sizeof_x then
  3507. begin
  3508. inserttypeconv_explicit(result,cpointerdef.getreusable(objdef.vmt_def));
  3509. result:=cderefnode.create(result);
  3510. result:=genloadfield(result,'VINSTANCESIZE');
  3511. end
  3512. else
  3513. inserttypeconv_explicit(result,voidpointertype);
  3514. end;
  3515. undefineddef:
  3516. ;
  3517. else
  3518. internalerror(2015122702);
  3519. end;
  3520. end;
  3521. in_length_x:
  3522. begin
  3523. result:=first_length;
  3524. end;
  3525. in_typeinfo_x:
  3526. begin
  3527. result:=caddrnode.create_internal(
  3528. crttinode.create(tstoreddef(left.resultdef),fullrtti,rdt_normal)
  3529. );
  3530. end;
  3531. in_gettypekind_x:
  3532. begin
  3533. sym:=tenumdef(typekindtype).int2enumsym(get_typekind(left.resultdef));
  3534. if not assigned(sym) then
  3535. internalerror(2017081101);
  3536. if sym.typ<>enumsym then
  3537. internalerror(2017081102);
  3538. result:=genenumnode(tenumsym(sym));
  3539. end;
  3540. in_assigned_x:
  3541. begin
  3542. result:=first_assigned;
  3543. end;
  3544. in_pred_x,
  3545. in_succ_x:
  3546. begin
  3547. expectloc:=LOC_REGISTER;
  3548. { in case of range/overflow checking, use a regular addnode
  3549. because it's too complex to handle correctly otherwise }
  3550. {$ifndef jvm}
  3551. { enums are class instances in the JVM -> always need conversion }
  3552. if (([cs_check_overflow,cs_check_range]*current_settings.localswitches)<>[]) and not(nf_internal in flags) then
  3553. {$endif}
  3554. begin
  3555. { create constant 1 }
  3556. hp:=cordconstnode.create(1,left.resultdef,false);
  3557. typecheckpass(hp);
  3558. if not is_integer(hp.resultdef) then
  3559. inserttypeconv_internal(hp,sinttype);
  3560. { avoid type errors from the addn/subn }
  3561. if not is_integer(left.resultdef) then
  3562. inserttypeconv_internal(left,sinttype);
  3563. { addition/substraction depending on succ/pred }
  3564. if inlinenumber=in_succ_x then
  3565. hp:=caddnode.create(addn,left,hp)
  3566. else
  3567. hp:=caddnode.create(subn,left,hp);
  3568. { the condition above is not tested for jvm, so we need to avoid overflow checks here
  3569. by setting nf_internal for the add/sub node as well }
  3570. if nf_internal in flags then
  3571. include(hp.flags,nf_internal);
  3572. { assign result of addition }
  3573. if not(is_integer(resultdef)) then
  3574. inserttypeconv(hp,corddef.create(
  3575. {$ifdef cpu64bitaddr}
  3576. s64bit,
  3577. {$else cpu64bitaddr}
  3578. s32bit,
  3579. {$endif cpu64bitaddr}
  3580. get_min_value(resultdef),
  3581. get_max_value(resultdef),
  3582. true))
  3583. else
  3584. inserttypeconv(hp,resultdef);
  3585. if nf_internal in flags then
  3586. include(hp.flags,nf_internal);
  3587. { avoid any possible errors/warnings }
  3588. inserttypeconv_internal(hp,resultdef);
  3589. { firstpass it }
  3590. firstpass(hp);
  3591. { left is reused }
  3592. left:=nil;
  3593. { return new node }
  3594. result:=hp;
  3595. end;
  3596. end;
  3597. in_setlength_x:
  3598. result:=first_setlength;
  3599. in_copy_x:
  3600. result:=first_copy;
  3601. in_initialize_x,
  3602. in_finalize_x:
  3603. begin
  3604. expectloc:=LOC_VOID;
  3605. end;
  3606. in_inc_x,
  3607. in_dec_x:
  3608. begin
  3609. result:=first_IncDec;
  3610. end;
  3611. in_and_assign_x_y,
  3612. in_or_assign_x_y,
  3613. in_xor_assign_x_y,
  3614. in_sar_assign_x_y,
  3615. in_shl_assign_x_y,
  3616. in_shr_assign_x_y,
  3617. in_rol_assign_x_y,
  3618. in_ror_assign_x_y:
  3619. begin
  3620. result:=first_AndOrXorShiftRot_assign;
  3621. end;
  3622. in_neg_assign_x,
  3623. in_not_assign_x:
  3624. begin
  3625. result:=first_NegNot_assign;
  3626. end;
  3627. in_include_x_y,
  3628. in_exclude_x_y:
  3629. begin
  3630. result:=first_IncludeExclude;
  3631. end;
  3632. in_pack_x_y_z,
  3633. in_unpack_x_y_z:
  3634. begin
  3635. result:=first_pack_unpack;
  3636. end;
  3637. in_exp_real:
  3638. begin
  3639. result:= first_exp_real;
  3640. end;
  3641. in_round_real:
  3642. begin
  3643. result:= first_round_real;
  3644. end;
  3645. in_trunc_real:
  3646. begin
  3647. result:= first_trunc_real;
  3648. end;
  3649. in_int_real:
  3650. begin
  3651. result:= first_int_real;
  3652. end;
  3653. in_frac_real:
  3654. begin
  3655. result:= first_frac_real;
  3656. end;
  3657. in_cos_real:
  3658. begin
  3659. result:= first_cos_real;
  3660. end;
  3661. in_sin_real:
  3662. begin
  3663. result := first_sin_real;
  3664. end;
  3665. in_arctan_real:
  3666. begin
  3667. result := first_arctan_real;
  3668. end;
  3669. in_pi_real :
  3670. begin
  3671. result := first_pi;
  3672. end;
  3673. in_abs_real:
  3674. begin
  3675. result := first_abs_real;
  3676. end;
  3677. in_abs_long:
  3678. begin
  3679. result := first_abs_long;
  3680. end;
  3681. in_sqr_real:
  3682. begin
  3683. result := first_sqr_real;
  3684. end;
  3685. in_sqrt_real:
  3686. begin
  3687. result := first_sqrt_real;
  3688. end;
  3689. in_ln_real:
  3690. begin
  3691. result := first_ln_real;
  3692. end;
  3693. {$ifdef SUPPORT_MMX}
  3694. in_mmx_pcmpeqb..in_mmx_pcmpgtw:
  3695. begin
  3696. end;
  3697. {$endif SUPPORT_MMX}
  3698. in_assert_x_y :
  3699. begin
  3700. result:=first_assert;
  3701. end;
  3702. in_low_x,
  3703. in_high_x:
  3704. internalerror(200104047);
  3705. in_slice_x:
  3706. internalerror(2005101501);
  3707. in_ord_x,
  3708. in_chr_byte:
  3709. begin
  3710. { should not happend as it's converted to typeconv }
  3711. internalerror(200104045);
  3712. end;
  3713. in_ofs_x :
  3714. internalerror(2000101001);
  3715. in_seg_x :
  3716. begin
  3717. result:=first_seg;
  3718. end;
  3719. in_settextbuf_file_x,
  3720. in_reset_typedfile,
  3721. in_rewrite_typedfile,
  3722. in_reset_typedfile_name,
  3723. in_rewrite_typedfile_name,
  3724. in_str_x_string,
  3725. in_val_x,
  3726. in_read_x,
  3727. in_readln_x,
  3728. in_write_x,
  3729. in_writeln_x :
  3730. begin
  3731. { should be handled by pass_typecheck }
  3732. internalerror(200108234);
  3733. end;
  3734. in_get_frame:
  3735. begin
  3736. result:=first_get_frame;
  3737. end;
  3738. in_get_caller_frame:
  3739. begin
  3740. expectloc:=LOC_REGISTER;
  3741. end;
  3742. in_get_caller_addr:
  3743. begin
  3744. expectloc:=LOC_REGISTER;
  3745. end;
  3746. in_prefetch_var:
  3747. begin
  3748. expectloc:=LOC_VOID;
  3749. end;
  3750. in_aligned_x,
  3751. in_unaligned_x,
  3752. in_volatile_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 trees 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. {$if not defined(cpu64bitalu) and not defined(cpuhighleveltarget)}
  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 and nto cpuhighleveltarget}
  4874. function tinlinenode.first_AndOrXorShiftRot_assign: tnode;
  4875. begin
  4876. {$if not defined(cpu64bitalu) and not defined(cpuhighleveltarget)}
  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 and not cpuhighleveltarget}
  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.