2
0

hlcgobj.pas 231 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440
  1. {
  2. Copyright (c) 1998-2010 by Florian Klaempfl and Jonas Maebe
  3. Member of the Free Pascal development team
  4. This unit implements the basic high level code generator object
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. ****************************************************************************
  17. }
  18. {# @abstract(Abstract code generator unit)
  19. Abstract high level code generator unit. This contains the base class
  20. that either lowers most code to the regular code generator, or that
  21. has to be implemented/overridden for higher level targets (such as LLVM).
  22. }
  23. unit hlcgobj;
  24. {$i fpcdefs.inc}
  25. { define hlcginline}
  26. interface
  27. uses
  28. cclasses,globtype,constexp,
  29. cpubase,cgbase,cgutils,parabase,
  30. aasmbase,aasmtai,aasmdata,aasmcpu,
  31. symconst,symbase,symtype,symsym,symdef,
  32. node,nutils,
  33. tgobj
  34. ;
  35. type
  36. tsubsetloadopt = (SL_REG,SL_REGNOSRCMASK,SL_SETZERO,SL_SETMAX);
  37. preplaceregrec = ^treplaceregrec;
  38. treplaceregrec = record
  39. old, new: tregister;
  40. oldhi, newhi: tregister;
  41. ressym: tsym;
  42. { moved sym }
  43. sym : tabstractnormalvarsym;
  44. end;
  45. {# @abstract(Abstract high level code generator)
  46. This class implements an abstract instruction generator. All
  47. methods of this class are generic and are mapped to low level code
  48. generator methods by default. They have to be overridden for higher
  49. level targets
  50. }
  51. { thlcgobj }
  52. thlcgobj = class
  53. public
  54. {************************************************}
  55. { basic routines }
  56. constructor create;
  57. {# Initialize the register allocators needed for the codegenerator.}
  58. procedure init_register_allocators;virtual;
  59. {# Clean up the register allocators needed for the codegenerator.}
  60. procedure done_register_allocators;virtual;
  61. {# Set whether live_start or live_end should be updated when allocating registers, needed when e.g. generating initcode after the rest of the code. }
  62. procedure set_regalloc_live_range_direction(dir: TRADirection);virtual;
  63. {# Gets a register suitable to do integer operations on.}
  64. function getintregister(list:TAsmList;size:tdef):Tregister;virtual;
  65. {# Gets a register suitable to do integer operations on.}
  66. function getaddressregister(list:TAsmList;size:tdef):Tregister;virtual;
  67. function getfpuregister(list:TAsmList;size:tdef):Tregister;virtual;
  68. { warning: only works correctly for fpu types currently }
  69. function getmmregister(list:TAsmList;size:tdef):Tregister;virtual;
  70. function getflagregister(list:TAsmList;size:tdef):Tregister;virtual;
  71. function gettempregister(list:TAsmList;size:tdef):Tregister;virtual;
  72. function getregisterfordef(list: TAsmList;size:tdef):Tregister;virtual;
  73. {Does the generic cg need SIMD registers, like getmmxregister? Or should
  74. the cpu specific child cg object have such a method?}
  75. function uses_registers(rt:Tregistertype):boolean; inline;
  76. {# Get a specific register.}
  77. procedure getcpuregister(list:TAsmList;r:Tregister);virtual;
  78. procedure ungetcpuregister(list:TAsmList;r:Tregister);virtual;
  79. {# Get multiple registers specified.}
  80. procedure alloccpuregisters(list:TAsmList;rt:Tregistertype;const r:Tcpuregisterset);virtual;
  81. {# Free multiple registers specified.}
  82. procedure dealloccpuregisters(list:TAsmList;rt:Tregistertype;const r:Tcpuregisterset);virtual;
  83. procedure allocallcpuregisters(list:TAsmList);virtual;
  84. procedure deallocallcpuregisters(list:TAsmList);virtual;
  85. procedure do_register_allocation(list:TAsmList;headertai:tai); inline;
  86. procedure translate_register(var reg : tregister); inline;
  87. {# Returns the kind of register this type should be loaded in (it does not
  88. check whether this is actually possible, but if it's loaded in a register
  89. by the compiler for any purpose other than parameter passing/function
  90. result loading, this is the register type used) }
  91. class function def2regtyp(def: tdef): tregistertype; virtual;
  92. {# Returns a reference with its base address set from a pointer that
  93. has been loaded in a register.
  94. A generic version is provided. This routine should be overridden
  95. on platforms which support pointers with different sizes (for
  96. example i8086 near and far pointers) or require some other sort of
  97. special consideration when converting a pointer in a register to a
  98. reference.
  99. @param(ref where the result is returned)
  100. @param(regsize the type of the pointer, contained in the reg parameter)
  101. @param(reg register containing the value of a pointer)
  102. }
  103. procedure reference_reset_base(var ref: treference; regsize: tdef; reg: tregister; offset: longint; temppos: treftemppos; alignment: longint; volatility: tvolatilityset); virtual;
  104. {# Emit a label to the instruction stream. }
  105. procedure a_label(list : TAsmList;l : tasmlabel); inline;
  106. {# Allocates register r by inserting a pai_realloc record }
  107. procedure a_reg_alloc(list : TAsmList;r : tregister); inline;
  108. {# Deallocates register r by inserting a pa_regdealloc record}
  109. procedure a_reg_dealloc(list : TAsmList;r : tregister); inline;
  110. { Synchronize register, make sure it is still valid }
  111. procedure a_reg_sync(list : TAsmList;r : tregister); inline;
  112. {# Pass a parameter, which is located in a register, to a routine.
  113. This routine should push/send the parameter to the routine, as
  114. required by the specific processor ABI and routine modifiers.
  115. It must generate register allocation information for the cgpara in
  116. case it consists of cpuregisters.
  117. @param(size size of the operand in the register)
  118. @param(r register source of the operand)
  119. @param(cgpara where the parameter will be stored)
  120. }
  121. procedure a_load_reg_cgpara(list : TAsmList;size : tdef;r : tregister;const cgpara : TCGPara);virtual;
  122. {# Pass a parameter, which is a constant, to a routine.
  123. A generic version is provided. This routine should
  124. be overridden for optimization purposes if the cpu
  125. permits directly sending this type of parameter.
  126. It must generate register allocation information for the cgpara in
  127. case it consists of cpuregisters.
  128. @param(size size of the operand in constant)
  129. @param(a value of constant to send)
  130. @param(cgpara where the parameter will be stored)
  131. }
  132. procedure a_load_const_cgpara(list : TAsmList;tosize : tdef;a : tcgint;const cgpara : TCGPara);virtual;
  133. {# Pass the value of a parameter, which is located in memory, to a routine.
  134. A generic version is provided. This routine should
  135. be overridden for optimization purposes if the cpu
  136. permits directly sending this type of parameter.
  137. It must generate register allocation information for the cgpara in
  138. case it consists of cpuregisters.
  139. @param(size size of the operand in constant)
  140. @param(r Memory reference of value to send)
  141. @param(cgpara where the parameter will be stored)
  142. }
  143. procedure a_load_ref_cgpara(list : TAsmList;size : tdef;const r : treference;const cgpara : TCGPara);virtual;
  144. {# Pass the value of a parameter, which can be located either in a register or memory location,
  145. to a routine.
  146. A generic version is provided.
  147. @param(l location of the operand to send)
  148. @param(nr parameter number (starting from one) of routine (from left to right))
  149. @param(cgpara where the parameter will be stored)
  150. }
  151. procedure a_load_loc_cgpara(list : TAsmList;size : tdef; const l : tlocation;const cgpara : TCGPara);virtual;
  152. {# Pass the address of a reference to a routine. This routine
  153. will calculate the address of the reference, and pass this
  154. calculated address as a parameter.
  155. It must generate register allocation information for the cgpara in
  156. case it consists of cpuregisters.
  157. A generic version is provided. This routine should
  158. be overridden for optimization purposes if the cpu
  159. permits directly sending this type of parameter.
  160. @param(fromsize type of the reference we are taking the address of)
  161. @param(tosize type of the pointer that we get as a result)
  162. @param(r reference to get address from)
  163. }
  164. procedure a_loadaddr_ref_cgpara(list : TAsmList;fromsize : tdef;const r : treference;const cgpara : TCGPara);virtual;
  165. { Remarks:
  166. * If a method specifies a size you have only to take care
  167. of that number of bits, i.e. load_const_reg with OP_8 must
  168. only load the lower 8 bit of the specified register
  169. the rest of the register can be undefined
  170. if necessary the compiler will call a method
  171. to zero or sign extend the register
  172. * The a_load_XX_XX with OP_64 needn't to be
  173. implemented for 32 bit
  174. processors, the code generator takes care of that
  175. * the addr size is for work with the natural pointer
  176. size
  177. * the procedures without fpu/mm are only for integer usage
  178. * normally the first location is the source and the
  179. second the destination
  180. }
  181. {# Emits instruction to call the method specified by symbol name.
  182. Returns the function result location.
  183. This routine must be overridden for each new target cpu.
  184. }
  185. function a_call_name(list : TAsmList;pd : tprocdef;const s : TSymStr; const paras: array of pcgpara; forceresdef: tdef; weak: boolean): tcgpara;virtual;abstract;
  186. function a_call_reg(list : TAsmList;pd : tabstractprocdef;reg : tregister; const paras: array of pcgpara): tcgpara;virtual;abstract;
  187. { same as a_call_name, might be overridden on certain architectures to emit
  188. static calls without usage of a got trampoline }
  189. function a_call_name_static(list : TAsmList;pd : tprocdef;const s : TSymStr; const paras: array of pcgpara; forceresdef: tdef): tcgpara;virtual;
  190. { same as a_call_name, might be overridden on certain architectures to emit
  191. special static calls for inherited methods }
  192. function a_call_name_inherited(list : TAsmList;pd : tprocdef;const s : TSymStr; const paras: array of pcgpara): tcgpara;virtual;
  193. { move instructions }
  194. procedure a_load_const_reg(list : TAsmList;tosize : tdef;a : tcgint;register : tregister);virtual;abstract;
  195. procedure a_load_const_ref(list : TAsmList;tosize : tdef;a : tcgint;const ref : treference);virtual;
  196. procedure a_load_const_loc(list : TAsmList;tosize : tdef;a : tcgint;const loc : tlocation);virtual;
  197. procedure a_load_reg_ref(list : TAsmList;fromsize, tosize : tdef;register : tregister;const ref : treference);virtual;abstract;
  198. procedure a_load_reg_ref_unaligned(list : TAsmList;fromsize, tosize : tdef;register : tregister;const ref : treference);virtual;
  199. procedure a_load_reg_reg(list : TAsmList;fromsize, tosize : tdef;reg1,reg2 : tregister);virtual;abstract;
  200. procedure a_load_reg_loc(list : TAsmList;fromsize, tosize : tdef;reg : tregister;const loc: tlocation);virtual;
  201. procedure a_load_ref_reg(list : TAsmList;fromsize, tosize : tdef;const ref : treference;register : tregister);virtual;abstract;
  202. procedure a_load_ref_reg_unaligned(list : TAsmList;fromsize, tosize : tdef;const ref : treference;register : tregister);virtual;
  203. procedure a_load_ref_ref(list : TAsmList;fromsize, tosize : tdef;const sref : treference;const dref : treference);virtual;
  204. procedure a_load_loc_reg(list : TAsmList;fromsize, tosize : tdef; const loc: tlocation; reg : tregister);virtual;
  205. procedure a_load_loc_ref(list : TAsmList;fromsize, tosize: tdef; const loc: tlocation; const ref : treference);virtual;
  206. procedure a_load_loc_subsetreg(list : TAsmList;fromsize, tosubsetsize: tdef; const loc: tlocation; const sreg : tsubsetregister);virtual;
  207. procedure a_load_loc_subsetref(list : TAsmList;fromsize, tosubsetsize: tdef; const loc: tlocation; const sref : tsubsetreference);virtual;
  208. procedure a_loadaddr_ref_reg(list : TAsmList;fromsize, tosize : tdef;const ref : treference;r : tregister);virtual;abstract;
  209. { For subsetreg/ref, the def is the size of the packed element. The
  210. size of the register that holds the data is a tcgsize, and hence
  211. always must be an orddef of the corresponding size in practice }
  212. procedure a_load_subsetreg_reg(list : TAsmList; subsetsize, tosize: tdef; const sreg: tsubsetregister; destreg: tregister); virtual;
  213. procedure a_load_reg_subsetreg(list : TAsmList; fromsize, tosubsetsize: tdef; fromreg: tregister; const sreg: tsubsetregister); virtual;
  214. procedure a_load_subsetreg_subsetreg(list: TAsmlist; fromsubsetsize, tosubsetsize : tdef; const fromsreg, tosreg: tsubsetregister); virtual;
  215. procedure a_load_subsetreg_ref(list : TAsmList; fromsubsetsize, tosize: tdef; const sreg: tsubsetregister; const destref: treference); virtual;
  216. procedure a_load_ref_subsetreg(list : TAsmList; fromsize, tosubsetsize: tdef; const fromref: treference; const sreg: tsubsetregister); virtual;
  217. procedure a_load_const_subsetreg(list: TAsmlist; tosubsetsize: tdef; a: tcgint; const sreg: tsubsetregister); virtual;
  218. procedure a_load_subsetreg_loc(list: TAsmlist; fromsubsetsize, tosize: tdef; const sreg: tsubsetregister; const loc: tlocation); virtual;
  219. procedure a_load_subsetref_reg(list : TAsmList; fromsubsetsize, tosize: tdef; const sref: tsubsetreference; destreg: tregister); virtual;
  220. procedure a_load_reg_subsetref(list : TAsmList; fromsize, tosubsetsize: tdef; fromreg: tregister; const sref: tsubsetreference); virtual;
  221. procedure a_load_subsetref_subsetref(list: TAsmlist; fromsubsetsize, tosubsetsize : tdef; const fromsref, tosref: tsubsetreference); virtual;
  222. procedure a_load_subsetref_ref(list : TAsmList; fromsubsetsize, tosize: tdef; const sref: tsubsetreference; const destref: treference); virtual;
  223. procedure a_load_ref_subsetref(list : TAsmList; fromsize, tosubsetsize: tdef; const fromref: treference; const sref: tsubsetreference); virtual;
  224. procedure a_load_const_subsetref(list: TAsmlist; tosubsetsize: tdef; a: tcgint; const sref: tsubsetreference); virtual;
  225. procedure a_load_subsetref_loc(list: TAsmlist; fromsubsetsize, tosize: tdef; const sref: tsubsetreference; const loc: tlocation); virtual;
  226. procedure a_load_subsetref_subsetreg(list: TAsmlist; fromsubsetsize, tosubsetsize : tdef; const fromsref: tsubsetreference; const tosreg: tsubsetregister); virtual;
  227. procedure a_load_subsetreg_subsetref(list: TAsmlist; fromsubsetsize, tosubsetsize : tdef; const fromsreg: tsubsetregister; const tosref: tsubsetreference); virtual;
  228. { bit test instructions }
  229. procedure a_bit_test_reg_reg_reg(list : TAsmList; bitnumbersize,valuesize,destsize: tdef;bitnumber,value,destreg: tregister); virtual;
  230. procedure a_bit_test_const_ref_reg(list: TAsmList; fromsize, destsize: tdef; bitnumber: aint; const ref: treference; destreg: tregister); virtual;
  231. procedure a_bit_test_const_reg_reg(list: TAsmList; setregsize, destsize: tdef; bitnumber: aint; setreg, destreg: tregister); virtual;
  232. procedure a_bit_test_const_subsetreg_reg(list: TAsmList; fromsubsetsize, destsize: tdef; bitnumber: aint; const setreg: tsubsetregister; destreg: tregister); virtual;
  233. procedure a_bit_test_reg_ref_reg(list: TAsmList; bitnumbersize, refsize, destsize: tdef; bitnumber: tregister; const ref: treference; destreg: tregister); virtual;
  234. procedure a_bit_test_reg_loc_reg(list: TAsmList; bitnumbersize, locsize, destsize: tdef; bitnumber: tregister; const loc: tlocation; destreg: tregister);virtual;
  235. procedure a_bit_test_const_loc_reg(list: TAsmList; locsize, destsize: tdef; bitnumber: aint; const loc: tlocation; destreg: tregister);virtual;
  236. { bit set/clear instructions }
  237. procedure a_bit_set_reg_reg(list : TAsmList; doset: boolean; bitnumbersize, destsize: tdef; bitnumber,dest: tregister); virtual;
  238. procedure a_bit_set_const_ref(list: TAsmList; doset: boolean;destsize: tdef; bitnumber: tcgint; const ref: treference); virtual;
  239. procedure a_bit_set_const_reg(list: TAsmList; doset: boolean; destsize: tdef; bitnumber: tcgint; destreg: tregister); virtual;
  240. procedure a_bit_set_const_subsetreg(list: TAsmList; doset: boolean; destsize: tdef; bitnumber: tcgint; const destreg: tsubsetregister); virtual;
  241. procedure a_bit_set_reg_ref(list: TAsmList; doset: boolean; fromsize, tosize: tdef; bitnumber: tregister; const ref: treference); virtual;
  242. procedure a_bit_set_reg_loc(list: TAsmList; doset: boolean; regsize, tosize: tdef; bitnumber: tregister; const loc: tlocation);virtual;
  243. procedure a_bit_set_const_loc(list: TAsmList; doset: boolean; tosize: tdef; bitnumber: tcgint; const loc: tlocation);virtual;
  244. function get_call_result_cgpara(pd: tabstractprocdef; forceresdef: tdef): tcgpara; virtual;
  245. protected
  246. procedure get_subsetref_load_info(const sref: tsubsetreference; out loadsize: torddef; out extra_load: boolean);
  247. procedure a_load_subsetref_regs_noindex(list: TAsmList; subsetsize: tdef; loadbitsize: byte; const sref: tsubsetreference; valuereg, extra_value_reg: tregister); virtual;
  248. procedure a_load_subsetref_regs_index(list: TAsmList; subsetsize: tdef; loadbitsize: byte; const sref: tsubsetreference; valuereg: tregister); virtual;
  249. procedure a_load_regconst_subsetref_intern(list : TAsmList; fromsize, subsetsize: tdef; fromreg: tregister; const sref: tsubsetreference; slopt: tsubsetloadopt); virtual;
  250. procedure a_load_regconst_subsetreg_intern(list : TAsmList; fromsize, subsetsize: tdef; fromreg: tregister; const sreg: tsubsetregister; slopt: tsubsetloadopt); virtual;
  251. { return a subsetref that represents bit "bitnumber" in ref, if ref
  252. has the type "refdef". The subsetref must be addressable via
  253. (unsigned) 8 bit access, unless all the *_bit_* methods are
  254. overloaded and use something else. }
  255. function get_bit_const_ref_sref(bitnumber: tcgint; refdef: tdef; const ref: treference): tsubsetreference;
  256. function get_bit_const_reg_sreg(setregsize: tdef; bitnumber: tcgint; setreg: tregister): tsubsetregister;
  257. function get_bit_reg_ref_sref(list: TAsmList; bitnumbersize, refsize: tdef; bitnumber: tregister; const ref: treference): tsubsetreference;
  258. public
  259. { bit scan instructions (still need transformation to thlcgobj) }
  260. procedure a_bit_scan_reg_reg(list: TAsmList; reverse: boolean; srcsize, dstsize: tdef; src, dst: tregister); virtual; abstract;
  261. { fpu move instructions }
  262. procedure a_loadfpu_reg_reg(list: TAsmList; fromsize, tosize: tdef; reg1, reg2: tregister); virtual; abstract;
  263. procedure a_loadfpu_ref_reg(list: TAsmList; fromsize, tosize: tdef; const ref: treference; reg: tregister); virtual; abstract;
  264. procedure a_loadfpu_reg_ref(list: TAsmList; fromsize, tosize: tdef; reg: tregister; const ref: treference); virtual; abstract;
  265. procedure a_loadfpu_ref_ref(list: TAsmList; fromsize, tosize: tdef; const ref1,ref2: treference);virtual;
  266. procedure a_loadfpu_loc_reg(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; const reg: tregister);virtual;
  267. procedure a_loadfpu_loc_ref(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; const ref: treference);virtual;
  268. procedure a_loadfpu_reg_loc(list: TAsmList; fromsize, tosize: tdef; const reg: tregister; const loc: tlocation);virtual;
  269. procedure a_loadfpu_reg_cgpara(list : TAsmList;fromsize: tdef;const r : tregister;const cgpara : TCGPara);virtual;
  270. procedure a_loadfpu_ref_cgpara(list : TAsmList;fromsize : tdef;const ref : treference;const cgpara : TCGPara);virtual;
  271. { vector register move instructions }
  272. procedure a_loadmm_reg_reg(list: TAsmList; fromsize, tosize: tdef;reg1, reg2: tregister;shuffle : pmmshuffle); virtual; abstract;
  273. procedure a_loadmm_ref_reg(list: TAsmList; fromsize, tosize: tdef;const ref: treference; reg: tregister;shuffle : pmmshuffle); virtual; abstract;
  274. procedure a_loadmm_reg_ref(list: TAsmList; fromsize, tosize: tdef;reg: tregister; const ref: treference;shuffle : pmmshuffle); virtual; abstract;
  275. procedure a_loadmm_ref_ref(list: TAsmList; fromsize, tosize: tdef; const fromref, toref: treference; shuffle: pmmshuffle); virtual;
  276. { required for subsetreg/ref; still tcgsize rather than tdef because of reason mentioned above }
  277. procedure a_loadmm_loc_reg(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; const reg: tregister; shuffle : pmmshuffle);virtual;
  278. procedure a_loadmm_reg_loc(list: TAsmList; fromsize, tosize: tdef; const reg: tregister; const loc: tlocation;shuffle : pmmshuffle);virtual;
  279. procedure a_loadmm_loc_ref(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; const ref: treference; shuffle : pmmshuffle);virtual;
  280. procedure a_loadmm_reg_cgpara(list: TAsmList; fromsize: tdef; reg: tregister;const cgpara : TCGPara;shuffle : pmmshuffle); virtual;
  281. procedure a_loadmm_ref_cgpara(list: TAsmList; fromsize: tdef; const ref: treference;const cgpara : TCGPara;shuffle : pmmshuffle); virtual;
  282. procedure a_loadmm_loc_cgpara(list: TAsmList; fromsize: tdef; const loc: tlocation; const cgpara : TCGPara;shuffle : pmmshuffle); virtual;
  283. procedure a_opmm_reg_reg(list: TAsmList; Op: TOpCG; size : tdef;src,dst: tregister;shuffle : pmmshuffle); virtual; abstract;
  284. procedure a_opmm_ref_reg(list: TAsmList; Op: TOpCG; size : tdef;const ref: treference; reg: tregister;shuffle : pmmshuffle); virtual;
  285. procedure a_opmm_loc_reg(list: TAsmList; Op: TOpCG; size : tdef;const loc: tlocation; reg: tregister;shuffle : pmmshuffle); virtual;
  286. procedure a_opmm_reg_ref(list: TAsmList; Op: TOpCG; size : tdef;reg: tregister;const ref: treference; shuffle : pmmshuffle); virtual;
  287. { requires a temp that is interpreted in two different ways, and we
  288. don't have a way (yet) to tag a treference with tdef information so
  289. targets like LLVM can insert the necessary bitcast
  290. }
  291. procedure a_loadmm_intreg_reg(list: TAsmList; fromsize, tosize : tdef; intreg, mmreg: tregister; shuffle: pmmshuffle); virtual; abstract;
  292. procedure a_loadmm_reg_intreg(list: TAsmList; fromsize, tosize : tdef; mmreg, intreg: tregister; shuffle : pmmshuffle); virtual; abstract;
  293. { basic arithmetic operations }
  294. { note: for operators which require only one argument (not, neg), use }
  295. { the op_reg_reg, op_reg_ref or op_reg_loc methods and keep in mind }
  296. { that in this case the *second* operand is used as both source and }
  297. { destination (JM) }
  298. procedure a_op_const_reg(list : TAsmList; Op: TOpCG; size: tdef; a: tcgint; reg: TRegister); virtual; abstract;
  299. procedure a_op_const_ref(list : TAsmList; Op: TOpCG; size: tdef; a: tcgint; const ref: TReference); virtual;
  300. procedure a_op_const_subsetreg(list : TAsmList; Op : TOpCG; size, subsetsize : tdef; a : tcgint; const sreg: tsubsetregister); virtual;
  301. procedure a_op_const_subsetref(list : TAsmList; Op : TOpCG; size, subsetsize : tdef; a : tcgint; const sref: tsubsetreference); virtual;
  302. procedure a_op_const_loc(list : TAsmList; Op: TOpCG; size: tdef; a: tcgint; const loc: tlocation);virtual;
  303. procedure a_op_reg_reg(list : TAsmList; Op: TOpCG; size: tdef; reg1, reg2: TRegister); virtual; abstract;
  304. procedure a_op_reg_ref(list : TAsmList; Op: TOpCG; size: tdef; reg: TRegister; const ref: TReference); virtual;
  305. procedure a_op_ref_reg(list : TAsmList; Op: TOpCG; size: tdef; const ref: TReference; reg: TRegister); virtual;
  306. procedure a_op_reg_subsetreg(list: TAsmList; Op: TOpCG; opsize, destsubsetsize: tdef; reg: TRegister; const sreg: tsubsetregister); virtual;
  307. procedure a_op_reg_subsetref(list: TAsmList; Op: TOpCG; opsize, destsubsetsize: tdef; reg: TRegister; const sref: tsubsetreference); virtual;
  308. procedure a_op_reg_loc(list : TAsmList; Op: TOpCG; size: tdef; reg: tregister; const loc: tlocation);virtual;
  309. procedure a_op_ref_loc(list : TAsmList; Op: TOpCG; size: tdef; const ref: TReference; const loc: tlocation);virtual;
  310. { trinary operations for processors that support them, 'emulated' }
  311. { on others. None with "ref" arguments since I don't think there }
  312. { are any processors that support it (JM) }
  313. procedure a_op_const_reg_reg(list: TAsmList; op: TOpCg; size: tdef; a: tcgint; src, dst: tregister); virtual;
  314. procedure a_op_reg_reg_reg(list: TAsmList; op: TOpCg; size: tdef; src1, src2, dst: tregister); virtual;
  315. procedure a_op_const_reg_reg_checkoverflow(list: TAsmList; op: TOpCg; size: tdef; a: tcgint; src, dst: tregister;setflags : boolean;var ovloc : tlocation); virtual;
  316. procedure a_op_reg_reg_reg_checkoverflow(list: TAsmList; op: TOpCg; size: tdef; src1, src2, dst: tregister;setflags : boolean;var ovloc : tlocation); virtual;
  317. { comparison operations }
  318. procedure a_cmp_const_reg_label(list : TAsmList;size : tdef;cmp_op : topcmp;a : tcgint;reg : tregister;
  319. l : tasmlabel);virtual;
  320. procedure a_cmp_const_ref_label(list : TAsmList;size : tdef;cmp_op : topcmp;a : tcgint;const ref : treference;
  321. l : tasmlabel); virtual;
  322. procedure a_cmp_const_loc_label(list: TAsmList; size: tdef;cmp_op: topcmp; a: tcgint; const loc: tlocation;
  323. l : tasmlabel);virtual;
  324. procedure a_cmp_reg_reg_label(list : TAsmList;size : tdef;cmp_op : topcmp;reg1,reg2 : tregister;l : tasmlabel); virtual; abstract;
  325. procedure a_cmp_ref_reg_label(list : TAsmList;size : tdef;cmp_op : topcmp; const ref: treference; reg : tregister; l : tasmlabel); virtual;
  326. procedure a_cmp_reg_ref_label(list : TAsmList;size : tdef;cmp_op : topcmp;reg : tregister; const ref: treference; l : tasmlabel); virtual;
  327. procedure a_cmp_subsetreg_reg_label(list: TAsmList; fromsubsetsize, cmpsize: tdef; cmp_op: topcmp; const sreg: tsubsetregister; reg: tregister; l: tasmlabel); virtual;
  328. procedure a_cmp_subsetref_reg_label(list: TAsmList; fromsubsetsize, cmpsize: tdef; cmp_op: topcmp; const sref: tsubsetreference; reg: tregister; l: tasmlabel); virtual;
  329. procedure a_cmp_loc_reg_label(list : TAsmList;size : tdef;cmp_op : topcmp; const loc: tlocation; reg : tregister; l : tasmlabel);virtual;
  330. procedure a_cmp_reg_loc_label(list : TAsmList;size : tdef;cmp_op : topcmp; reg: tregister; const loc: tlocation; l : tasmlabel);
  331. procedure a_cmp_ref_loc_label(list: TAsmList; size: tdef;cmp_op: topcmp; const ref: treference; const loc: tlocation; l : tasmlabel);virtual;
  332. procedure a_jmp_always(list : TAsmList;l: tasmlabel); virtual;abstract;
  333. {$ifdef cpuflags}
  334. procedure a_jmp_flags(list : TAsmList;const f : TResFlags;l: tasmlabel); virtual; abstract;
  335. {# Depending on the value to check in the flags, either sets the register reg to one (if the flag is set)
  336. or zero (if the flag is cleared). The size parameter indicates the destination size register.
  337. }
  338. procedure g_flags2reg(list: TAsmList; size: tdef; const f: tresflags; reg: TRegister); virtual; abstract;
  339. procedure g_flags2ref(list: TAsmList; size: tdef; const f: tresflags; const ref:TReference); virtual; abstract;
  340. {$endif cpuflags}
  341. {#
  342. This routine is used in exception management nodes. It should
  343. save the exception reason currently in the reg. The
  344. save should be done either to a temp (pointed to by href).
  345. or on the stack (pushing the value on the stack).
  346. }
  347. procedure g_exception_reason_save(list : TAsmList; fromsize, tosize: tdef; reg: tregister; const href : treference);virtual;
  348. {#
  349. This routine is used in exception management nodes. It should
  350. save the exception reason constant. The
  351. save should be done either to a temp (pointed to by href).
  352. or on the stack (pushing the value on the stack).
  353. The size of the value to save is OS_S32. The default version
  354. saves the exception reason to a temp. memory area.
  355. }
  356. procedure g_exception_reason_save_const(list: TAsmList; size: tdef; a: tcgint; const href: treference);virtual;
  357. {#
  358. This routine is used in exception management nodes. It should
  359. load the exception reason to reg. The saved value
  360. should either be in the temp. area (pointed to by href , href should
  361. *NOT* be freed) or on the stack (the value should be popped).
  362. The size of the value to save is OS_S32. The default version
  363. saves the exception reason to a temp. memory area.
  364. }
  365. procedure g_exception_reason_load(list : TAsmList; fromsize, tosize: tdef; const href : treference; reg: tregister);virtual;
  366. {#
  367. This routine is called when the current exception reason can be
  368. discarded. On platforms that use push/pop, it causes the current
  369. value to be popped. On other platforms it doesn't do anything
  370. }
  371. procedure g_exception_reason_discard(list : TAsmList; size: tdef; href: treference); virtual;
  372. {#
  373. Call when the current location should never be reached
  374. }
  375. procedure g_unreachable(list: TAsmList); virtual;
  376. procedure g_maybe_testself(list : TAsmList; selftype: tdef; reg:tregister);
  377. // procedure g_maybe_testvmt(list : TAsmList;reg:tregister;objdef:tobjectdef);
  378. {# This should emit the opcode to copy len bytes from the source
  379. to destination.
  380. It must be overridden for each new target processor.
  381. @param(source Source reference of copy)
  382. @param(dest Destination reference of copy)
  383. }
  384. procedure g_concatcopy(list : TAsmList;size: tdef; const source,dest : treference);virtual;
  385. {# This should emit the opcode to copy len bytes from the an unaligned source
  386. to destination.
  387. It must be overridden for each new target processor.
  388. @param(source Source reference of copy)
  389. @param(dest Destination reference of copy)
  390. }
  391. procedure g_concatcopy_unaligned(list : TAsmList;size: tdef; const source,dest : treference);virtual;
  392. {# This should emit the opcode to a shortrstring from the source
  393. to destination.
  394. @param(source Source reference of copy)
  395. @param(dest Destination reference of copy)
  396. }
  397. procedure g_copyshortstring(list : TAsmList;const source,dest : treference;strdef:tstringdef);virtual;
  398. procedure g_copyvariant(list : TAsmList;const source,dest : treference;vardef:tvariantdef);virtual;
  399. procedure g_incrrefcount(list : TAsmList;t: tdef; const ref: treference);virtual;
  400. procedure g_initialize(list : TAsmList;t : tdef;const ref : treference);virtual;
  401. procedure g_finalize(list : TAsmList;t : tdef;const ref : treference);virtual;
  402. procedure g_array_rtti_helper(list: TAsmList; t: tdef; const ref: treference; const highloc: tlocation;
  403. const name: string);virtual;
  404. protected
  405. { helper called by g_incrrefcount, g_initialize, g_finalize and
  406. g_array_rtti_helper to determine whether the RTTI symbol representing
  407. t needs to be loaded using the indirect symbol }
  408. function def_needs_indirect(t:tdef):boolean;
  409. public
  410. {# Generates range checking code. It is to note
  411. that this routine does not need to be overridden,
  412. as it takes care of everything.
  413. @param(p Node which contains the value to check)
  414. @param(todef Type definition of node to range check)
  415. }
  416. procedure g_rangecheck(list: TAsmList; const l:tlocation; fromdef,todef: tdef); virtual;
  417. {# Generates overflow checking code for a node }
  418. procedure g_overflowcheck(list: TAsmList; const Loc:tlocation; def:tdef); virtual; abstract;
  419. procedure g_overflowCheck_loc(List:TAsmList;const Loc:TLocation;def:TDef;var ovloc : tlocation);virtual; abstract;
  420. procedure g_copyvaluepara_openarray(list : TAsmList;const ref:treference;const lenloc:tlocation;arrdef: tarraydef;destreg:tregister);virtual;
  421. procedure g_releasevaluepara_openarray(list : TAsmList;arrdef: tarraydef;const l:tlocation);virtual;
  422. {# Emits instructions when compilation is done in profile
  423. mode (this is set as a command line option). The default
  424. behavior does nothing, should be overridden as required.
  425. }
  426. procedure g_profilecode(list : TAsmList);virtual;
  427. {# Emits instruction for allocating @var(size) bytes at the stackpointer
  428. @param(size Number of bytes to allocate)
  429. }
  430. procedure g_stackpointer_alloc(list : TAsmList;size : longint);virtual; abstract;
  431. {# Emits instruction for allocating the locals in entry
  432. code of a routine. This is one of the first
  433. routine called in @var(genentrycode).
  434. @param(localsize Number of bytes to allocate as locals)
  435. }
  436. procedure g_proc_entry(list : TAsmList;localsize : longint;nostackframe:boolean);virtual; abstract;
  437. {# Emits instructions for returning from a subroutine.
  438. Should also restore the framepointer and stack.
  439. @param(parasize Number of bytes of parameters to deallocate from stack)
  440. }
  441. procedure g_proc_exit(list : TAsmList;parasize:longint;nostackframe:boolean);virtual; abstract;
  442. procedure g_intf_wrapper(list: TAsmList; procdef: tprocdef; const labelname: string; ioffset: longint);virtual; abstract;
  443. procedure g_adjust_self_value(list:TAsmList;procdef: tprocdef;ioffset: aint);virtual; abstract;
  444. protected
  445. procedure a_jmp_external_name(list: TAsmList; const externalname: TSymStr); virtual;
  446. public
  447. { generate a stub which only purpose is to pass control the given external method,
  448. setting up any additional environment before doing so (if required).
  449. The default implementation issues a jump instruction to the external name. }
  450. procedure g_external_wrapper(list : TAsmList; procdef: tprocdef; const wrappername, externalname: string; global: boolean); virtual;
  451. protected
  452. procedure g_allocload_reg_reg(list: TAsmList; regsize: tdef; const fromreg: tregister; out toreg: tregister; regtyp: tregistertype);
  453. public
  454. { create "safe copy" of a tlocation that can be used later: all
  455. registers used in the tlocation are copied to new ones, so that
  456. even if the original ones change, things stay the same (except if
  457. the original location was already a register, then the register is
  458. kept). Must only be used on lvalue locations.
  459. It's intended as some kind of replacement for a_loadaddr_ref_reg()
  460. for targets without pointers. }
  461. procedure g_reference_loc(list: TAsmList; def: tdef; const fromloc: tlocation; out toloc: tlocation); virtual;
  462. { typecasts the pointer in reg to a new pointer. By default it does
  463. nothing, only required for type-aware platforms like LLVM.
  464. fromdef/todef are not typed as pointerdef, because they may also be
  465. a procvardef or classrefdef. Replaces reg with a new register if
  466. necessary }
  467. procedure g_ptrtypecast_reg(list: TAsmList; fromdef, todef: tdef; var reg: tregister); virtual;
  468. { same but for a treference (considers the reference itself, not the
  469. value stored at that place in memory). Replaces ref with a new
  470. reference if necessary. fromdef needs to be a pointerdef because
  471. it may have to be passed as fromdef to a_loadaddr_ref_reg, which
  472. needs the "pointeddef" of fromdef }
  473. procedure g_ptrtypecast_ref(list: TAsmList; fromdef, todef: tdef; var ref: treference); virtual;
  474. { update a reference pointing to the start address of a record/object/
  475. class (contents) so it refers to the indicated field }
  476. procedure g_set_addr_nonbitpacked_field_ref(list: TAsmList; recdef: tabstractrecorddef; field: tfieldvarsym; var recref: treference); virtual;
  477. { load a register/constant into a record field by name }
  478. protected
  479. procedure g_setup_load_field_by_name(list: TAsmList; recdef: trecorddef; const name: TIDString; const recref: treference; out fref: treference; out fielddef: tdef);
  480. public
  481. procedure g_load_reg_field_by_name(list: TAsmList; regsize: tdef; recdef: trecorddef; reg: tregister; const name: TIDString; const recref: treference);
  482. procedure g_load_const_field_by_name(list: TAsmList; recdef: trecorddef; a: tcgint; const name: TIDString; const recref: treference);
  483. { laod a named field into a register }
  484. procedure g_load_field_reg_by_name(list: TAsmList; recdef: trecorddef; regsize: tdef; const name: TIDString; const recref: treference; reg: tregister);
  485. { same as above, but allocates the register and determines the def
  486. based on the type of the field }
  487. procedure g_force_field_reg_by_name(list: TAsmList; recdef: trecorddef; const name: TIDString; const recref: treference; out regdef: tdef; out reg: tregister);
  488. { routines migrated from ncgutil }
  489. procedure location_force_reg(list:TAsmList;var l:tlocation;src_size,dst_size:tdef;maybeconst:boolean);virtual;
  490. procedure location_force_fpureg(list:TAsmList;var l: tlocation;size: tdef;maybeconst:boolean);virtual;
  491. procedure location_force_mem(list:TAsmList;var l:tlocation;size:tdef);virtual;
  492. procedure location_force_mmregscalar(list:TAsmList;var l: tlocation;var size:tdef;maybeconst:boolean);virtual;
  493. // procedure location_force_mmreg(list:TAsmList;var l: tlocation;size:tdef;maybeconst:boolean);virtual;abstract;
  494. { Retrieve the location of the data pointed to in location l, when the location is
  495. a register it is expected to contain the address of the data }
  496. procedure location_get_data_ref(list:TAsmList;def: tdef; const l:tlocation;var ref:treference;loadref:boolean; alignment: longint);virtual;
  497. { if p is a boolean expression, turns p.location into a LOC_JUMP with
  498. jumps to generated true and false labels; otherwise internalerrors }
  499. procedure maketojumpbool(list: TAsmList; p: tnode);
  500. { same as above, but using predefined true/false labels instead of
  501. by generating new ones }
  502. procedure maketojumpboollabels(list: TAsmList; p: tnode; truelabel, falselabel: tasmlabel);virtual;
  503. { if the result of n is a LOC_C(..)REGISTER, try to find the corresponding
  504. loadn and change its location to a new register (= SSA). In case reload
  505. is true, transfer the old to the new register }
  506. procedure maybe_change_load_node_reg(list: TAsmList; var n: tnode; reload: boolean); virtual;
  507. private
  508. function do_replace_node_regs(var n: tnode; para: pointer): foreachnoderesult; virtual;
  509. public
  510. procedure gen_proc_symbol(list:TAsmList);virtual;
  511. procedure gen_proc_symbol_end(list:TAsmList);virtual;
  512. procedure handle_external_proc(list: TAsmList; pd: tprocdef; const importname: TSymStr); virtual;
  513. procedure gen_initialize_code(list:TAsmList);virtual;
  514. procedure gen_finalize_code(list:TAsmList);virtual;
  515. procedure gen_entry_code(list:TAsmList);virtual;
  516. procedure gen_exit_code(list:TAsmList);virtual;
  517. protected
  518. { helpers called by gen_initialize_code/gen_finalize_code }
  519. procedure inittempvariables(list:TAsmList);virtual;
  520. procedure finalizetempvariables(list:TAsmList);virtual;
  521. procedure initialize_regvars(p:TObject;arg:pointer);virtual;
  522. { generates the code for decrementing the reference count of parameters }
  523. procedure final_paras(p:TObject;arg:pointer);
  524. public
  525. { helper called by gen_alloc_symtable }
  526. procedure varsym_set_localloc(list: TAsmList; vs:tabstractnormalvarsym); virtual;
  527. { helper called by gen_alloc_symtable }
  528. procedure paravarsym_set_initialloc_to_paraloc(vs: tparavarsym); virtual;
  529. procedure gen_load_para_value(list:TAsmList);virtual;
  530. { helpers called by gen_load_para_value }
  531. procedure g_copyvalueparas(p:TObject;arg:pointer);virtual;
  532. protected
  533. procedure gen_loadfpu_loc_cgpara(list: TAsmList; size: tdef; const l: tlocation;const cgpara: tcgpara;locintsize: longint);virtual;
  534. procedure init_paras(p:TObject;arg:pointer);
  535. protected
  536. { Some targets have to put "something" in the function result
  537. location if it's not initialised by the Pascal code, e.g.
  538. stack-based architectures. By default it does nothing }
  539. procedure gen_load_uninitialized_function_result(list: TAsmList; pd: tprocdef; resdef: tdef; const resloc: tcgpara);virtual;
  540. procedure gen_load_loc_function_result(list: TAsmList; vardef: tdef; const l: tlocation);virtual;
  541. public
  542. { load a tlocation into a cgpara }
  543. procedure gen_load_loc_cgpara(list: TAsmList; vardef: tdef; const l: tlocation; const cgpara: tcgpara);virtual;
  544. { load a cgpara into a tlocation }
  545. procedure gen_load_cgpara_loc(list: TAsmList; vardef: tdef; const para: TCGPara; var destloc: tlocation; reusepara: boolean);virtual;
  546. { load the function return value into the ABI-defined function return location }
  547. procedure gen_load_return_value(list:TAsmList);virtual;
  548. { extras refactored from other units }
  549. procedure gen_stack_check_size_para(list:TAsmList); virtual;
  550. procedure gen_stack_check_call(list:TAsmList); virtual;
  551. { queue the code/data generated for a procedure for writing out to
  552. the assembler/object file }
  553. procedure record_generated_code_for_procdef(pd: tprocdef; code, data: TAsmList); virtual;
  554. { generate a call to a routine in the system unit }
  555. function g_call_system_proc(list: TAsmList; const procname: string; const paras: array of pcgpara; forceresdef: tdef): tcgpara;
  556. function g_call_system_proc(list: TAsmList; pd: tprocdef; const paras: array of pcgpara; forceresdef: tdef): tcgpara;
  557. protected
  558. function g_call_system_proc_intern(list: TAsmList; pd: tprocdef; const paras: array of pcgpara; forceresdef: tdef): tcgpara; virtual;
  559. public
  560. { Generate code to exit an unwind-protected region. The default implementation
  561. produces a simple jump to destination label. }
  562. procedure g_local_unwind(list: TAsmList; l: TAsmLabel);virtual;abstract;
  563. end;
  564. thlcgobjclass = class of thlcgobj;
  565. var
  566. {# Main high level code generator class }
  567. hlcg : thlcgobj;
  568. { class type of high level code generator class (also valid when hlcg is
  569. nil, in order to be able to call its virtual class methods) }
  570. chlcgobj: thlcgobjclass;
  571. create_hlcodegen: TProcedure;
  572. procedure destroy_hlcodegen;
  573. implementation
  574. uses
  575. globals,systems,
  576. fmodule,
  577. verbose,defutil,paramgr,
  578. symtable,
  579. nbas,ncon,nld,ncgrtti,pass_2,
  580. cgobj,cutils,procinfo,
  581. {$ifdef x86}
  582. cgx86,
  583. {$endif x86}
  584. ncgutil;
  585. procedure destroy_hlcodegen;
  586. begin
  587. hlcg.free;
  588. hlcg:=nil;
  589. destroy_codegen;
  590. end;
  591. { thlcgobj }
  592. constructor thlcgobj.create;
  593. begin
  594. end;
  595. procedure thlcgobj.init_register_allocators;
  596. begin
  597. cg.init_register_allocators;
  598. end;
  599. procedure thlcgobj.done_register_allocators;
  600. begin
  601. cg.done_register_allocators;
  602. end;
  603. procedure thlcgobj.set_regalloc_live_range_direction(dir: TRADirection);
  604. begin
  605. cg.set_regalloc_live_range_direction(dir);
  606. end;
  607. function thlcgobj.getintregister(list: TAsmList; size: tdef): Tregister;
  608. begin
  609. result:=cg.getintregister(list,def_cgsize(size));
  610. end;
  611. function thlcgobj.getaddressregister(list: TAsmList; size: tdef): Tregister;
  612. begin
  613. result:=cg.getaddressregister(list);
  614. end;
  615. function thlcgobj.getfpuregister(list: TAsmList; size: tdef): Tregister;
  616. begin
  617. result:=cg.getfpuregister(list,def_cgsize(size));
  618. end;
  619. function thlcgobj.getmmregister(list: TAsmList; size: tdef): Tregister;
  620. begin
  621. result:=cg.getmmregister(list,def_cgsize(size));
  622. end;
  623. function thlcgobj.getflagregister(list: TAsmList; size: tdef): Tregister;
  624. begin
  625. result:=cg.getflagregister(list,def_cgsize(size));
  626. end;
  627. function thlcgobj.gettempregister(list: TAsmList; size: tdef): Tregister;
  628. begin
  629. { doesn't make sense to try to translate this size to tcgsize, temps
  630. can have any size }
  631. result:=cg.gettempregister(list);
  632. end;
  633. function thlcgobj.getregisterfordef(list: TAsmList; size: tdef): Tregister;
  634. begin
  635. case def2regtyp(size) of
  636. R_INTREGISTER:
  637. result:=getintregister(list,size);
  638. R_ADDRESSREGISTER:
  639. result:=getaddressregister(list,size);
  640. R_FPUREGISTER:
  641. result:=getfpuregister(list,size);
  642. R_MMREGISTER:
  643. result:=getmmregister(list,size);
  644. else
  645. internalerror(2010122901);
  646. end;
  647. end;
  648. function thlcgobj.uses_registers(rt: Tregistertype): boolean;
  649. begin
  650. result:=cg.uses_registers(rt);
  651. end;
  652. procedure thlcgobj.getcpuregister(list: TAsmList; r: Tregister);
  653. begin
  654. cg.getcpuregister(list,r);
  655. end;
  656. procedure thlcgobj.ungetcpuregister(list: TAsmList; r: Tregister);
  657. begin
  658. cg.ungetcpuregister(list,r);
  659. end;
  660. procedure thlcgobj.alloccpuregisters(list: TAsmList; rt: Tregistertype; const r: Tcpuregisterset);
  661. begin
  662. cg.alloccpuregisters(list,rt,r);
  663. end;
  664. procedure thlcgobj.dealloccpuregisters(list: TAsmList; rt: Tregistertype; const r: Tcpuregisterset);
  665. begin
  666. cg.dealloccpuregisters(list,rt,r);
  667. end;
  668. procedure thlcgobj.allocallcpuregisters(list: TAsmList);
  669. begin
  670. cg.allocallcpuregisters(list);
  671. end;
  672. procedure thlcgobj.deallocallcpuregisters(list: TAsmList);
  673. begin
  674. cg.deallocallcpuregisters(list);
  675. end;
  676. procedure thlcgobj.do_register_allocation(list: TAsmList; headertai: tai);
  677. begin
  678. cg.do_register_allocation(list,headertai);
  679. end;
  680. procedure thlcgobj.translate_register(var reg: tregister);
  681. begin
  682. cg.translate_register(reg);
  683. end;
  684. class function thlcgobj.def2regtyp(def: tdef): tregistertype;
  685. begin
  686. case def.typ of
  687. enumdef,
  688. orddef,
  689. recorddef,
  690. setdef:
  691. result:=R_INTREGISTER;
  692. stringdef,
  693. pointerdef,
  694. classrefdef,
  695. objectdef,
  696. procvardef,
  697. procdef,
  698. formaldef:
  699. result:=R_ADDRESSREGISTER;
  700. arraydef:
  701. if tstoreddef(def).is_intregable then
  702. result:=R_INTREGISTER
  703. else
  704. result:=R_ADDRESSREGISTER;
  705. floatdef:
  706. if use_vectorfpu(def) then
  707. result:=R_MMREGISTER
  708. else if cs_fp_emulation in current_settings.moduleswitches then
  709. result:=R_INTREGISTER
  710. else
  711. result:=R_FPUREGISTER;
  712. filedef,
  713. variantdef,
  714. forwarddef,
  715. undefineddef:
  716. result:=R_INVALIDREGISTER;
  717. else
  718. internalerror(2010120506);
  719. end;
  720. end;
  721. procedure thlcgobj.reference_reset_base(var ref: treference; regsize: tdef;
  722. reg: tregister; offset: longint; temppos: treftemppos; alignment: longint; volatility: tvolatilityset);
  723. begin
  724. reference_reset(ref,alignment,volatility);
  725. ref.base:=reg;
  726. ref.offset:=offset;
  727. ref.temppos:=temppos;
  728. end;
  729. procedure thlcgobj.a_label(list: TAsmList; l: tasmlabel); inline;
  730. begin
  731. cg.a_label(list,l);
  732. end;
  733. procedure thlcgobj.a_reg_alloc(list: TAsmList; r: tregister);
  734. begin
  735. cg.a_reg_alloc(list,r);
  736. end;
  737. procedure thlcgobj.a_reg_dealloc(list: TAsmList; r: tregister);
  738. begin
  739. cg.a_reg_dealloc(list,r);
  740. end;
  741. procedure thlcgobj.a_reg_sync(list: TAsmList; r: tregister);
  742. begin
  743. cg.a_reg_sync(list,r);
  744. end;
  745. procedure thlcgobj.a_load_reg_cgpara(list: TAsmList; size: tdef; r: tregister; const cgpara: TCGPara);
  746. var
  747. ref: treference;
  748. tmpreg : tregister;
  749. begin
  750. cgpara.check_simple_location;
  751. paramanager.alloccgpara(list,cgpara);
  752. if cgpara.location^.shiftval<0 then
  753. begin
  754. tmpreg:=getintregister(list,cgpara.location^.def);
  755. a_op_const_reg_reg(list,OP_SHL,cgpara.location^.def,-cgpara.location^.shiftval,r,tmpreg);
  756. r:=tmpreg;
  757. end;
  758. case cgpara.location^.loc of
  759. LOC_REGISTER,LOC_CREGISTER:
  760. a_load_reg_reg(list,size,cgpara.location^.def,r,cgpara.location^.register);
  761. LOC_REFERENCE,LOC_CREFERENCE:
  762. begin
  763. reference_reset_base(ref,voidstackpointertype,cgpara.location^.reference.index,cgpara.location^.reference.offset,ctempposinvalid,cgpara.alignment,[]);
  764. a_load_reg_ref(list,size,cgpara.location^.def,r,ref);
  765. end;
  766. LOC_MMREGISTER,LOC_CMMREGISTER:
  767. a_loadmm_intreg_reg(list,size,cgpara.location^.def,r,cgpara.location^.register,mms_movescalar);
  768. LOC_FPUREGISTER,LOC_CFPUREGISTER:
  769. begin
  770. tg.gethltemp(list,size,size.size,tt_normal,ref);
  771. a_load_reg_ref(list,size,cgpara.location^.def,r,ref);
  772. a_loadfpu_ref_cgpara(list,cgpara.location^.def,ref,cgpara);
  773. tg.ungettemp(list,ref);
  774. end
  775. else
  776. internalerror(2010120415);
  777. end;
  778. end;
  779. procedure thlcgobj.a_load_const_cgpara(list: TAsmList; tosize: tdef; a: tcgint; const cgpara: TCGPara);
  780. var
  781. ref : treference;
  782. begin
  783. cgpara.check_simple_location;
  784. paramanager.alloccgpara(list,cgpara);
  785. if cgpara.location^.shiftval<0 then
  786. a:=a shl -cgpara.location^.shiftval;
  787. case cgpara.location^.loc of
  788. LOC_REGISTER,LOC_CREGISTER:
  789. a_load_const_reg(list,cgpara.location^.def,a,cgpara.location^.register);
  790. LOC_REFERENCE,LOC_CREFERENCE:
  791. begin
  792. reference_reset_base(ref,voidstackpointertype,cgpara.location^.reference.index,cgpara.location^.reference.offset,ctempposinvalid,cgpara.alignment,[]);
  793. a_load_const_ref(list,cgpara.location^.def,a,ref);
  794. end
  795. else
  796. internalerror(2010120416);
  797. end;
  798. end;
  799. procedure thlcgobj.a_load_ref_cgpara(list: TAsmList; size: tdef; const r: treference; const cgpara: TCGPara);
  800. var
  801. tmpref, ref: treference;
  802. tmpreg: tregister;
  803. location: pcgparalocation;
  804. orgsizeleft,
  805. sizeleft: tcgint;
  806. reghasvalue: boolean;
  807. begin
  808. location:=cgpara.location;
  809. tmpref:=r;
  810. sizeleft:=cgpara.intsize;
  811. while assigned(location) do
  812. begin
  813. paramanager.allocparaloc(list,location);
  814. case location^.loc of
  815. LOC_REGISTER,LOC_CREGISTER:
  816. begin
  817. { Parameter locations are often allocated in multiples of
  818. entire registers. If a parameter only occupies a part of
  819. such a register (e.g. a 16 bit int on a 32 bit
  820. architecture), the size of this parameter can only be
  821. determined by looking at the "size" parameter of this
  822. method -> if the size parameter is <= sizeof(aint), then
  823. we check that there is only one parameter location and
  824. then use this "size" to load the value into the parameter
  825. location }
  826. if (def_cgsize(size)<>OS_NO) and
  827. (size.size<=sizeof(aint)) then
  828. begin
  829. cgpara.check_simple_location;
  830. a_load_ref_reg(list,size,location^.def,tmpref,location^.register);
  831. if location^.shiftval<0 then
  832. a_op_const_reg(list,OP_SHL,location^.def,-location^.shiftval,location^.register);
  833. end
  834. { there's a lot more data left, and the current paraloc's
  835. register is entirely filled with part of that data }
  836. else if (sizeleft>sizeof(aint)) then
  837. begin
  838. a_load_ref_reg(list,location^.def,location^.def,tmpref,location^.register);
  839. end
  840. { we're at the end of the data, and it can be loaded into
  841. the current location's register with a single regular
  842. load }
  843. else if sizeleft in [1,2,4,8] then
  844. begin
  845. { don't use cgsize_orddef(int_cgsize(sizeleft)) as fromdef,
  846. because that may be larger than location^.register in
  847. case of padding at the end of a record }
  848. a_load_ref_reg(list,location^.def,location^.def,tmpref,location^.register);
  849. if location^.shiftval<0 then
  850. a_op_const_reg(list,OP_SHL,location^.def,-location^.shiftval,location^.register);
  851. end
  852. { we're at the end of the data, and we need multiple loads
  853. to get it in the register because it's an irregular size }
  854. else
  855. begin
  856. { should be the last part }
  857. if assigned(location^.next) then
  858. internalerror(2010052907);
  859. { load the value piecewise to get it into the register }
  860. orgsizeleft:=sizeleft;
  861. reghasvalue:=false;
  862. {$if defined(cpu64bitalu) or defined(cpuhighleveltarget)}
  863. if sizeleft>=4 then
  864. begin
  865. a_load_ref_reg(list,u32inttype,location^.def,tmpref,location^.register);
  866. dec(sizeleft,4);
  867. if target_info.endian=endian_big then
  868. a_op_const_reg(list,OP_SHL,location^.def,sizeleft*8,location^.register);
  869. inc(tmpref.offset,4);
  870. reghasvalue:=true;
  871. end;
  872. {$endif defind(cpu64bitalu) or defined(cpuhighleveltarget)}
  873. if sizeleft>=2 then
  874. begin
  875. tmpreg:=getintregister(list,location^.def);
  876. a_load_ref_reg(list,u16inttype,location^.def,tmpref,tmpreg);
  877. dec(sizeleft,2);
  878. if reghasvalue then
  879. begin
  880. if target_info.endian=endian_big then
  881. a_op_const_reg(list,OP_SHL,location^.def,sizeleft*8,tmpreg)
  882. else
  883. a_op_const_reg(list,OP_SHL,location^.def,(orgsizeleft-(sizeleft+2))*8,tmpreg);
  884. a_op_reg_reg(list,OP_OR,location^.def,tmpreg,location^.register);
  885. end
  886. else
  887. begin
  888. if target_info.endian=endian_big then
  889. a_op_const_reg_reg(list,OP_SHL,location^.def,sizeleft*8,tmpreg,location^.register)
  890. else
  891. a_load_reg_reg(list,location^.def,location^.def,tmpreg,location^.register);
  892. end;
  893. inc(tmpref.offset,2);
  894. reghasvalue:=true;
  895. end;
  896. if sizeleft=1 then
  897. begin
  898. tmpreg:=getintregister(list,location^.def);
  899. a_load_ref_reg(list,u8inttype,location^.def,tmpref,tmpreg);
  900. dec(sizeleft,1);
  901. if reghasvalue then
  902. begin
  903. if target_info.endian=endian_little then
  904. a_op_const_reg(list,OP_SHL,location^.def,(orgsizeleft-(sizeleft+1))*8,tmpreg);
  905. a_op_reg_reg(list,OP_OR,location^.def,tmpreg,location^.register)
  906. end
  907. else
  908. a_load_reg_reg(list,location^.def,location^.def,tmpreg,location^.register);
  909. inc(tmpref.offset);
  910. end;
  911. if location^.shiftval<0 then
  912. a_op_const_reg(list,OP_SHL,location^.def,-location^.shiftval,location^.register);
  913. { the loop will already adjust the offset and sizeleft }
  914. dec(tmpref.offset,orgsizeleft);
  915. sizeleft:=orgsizeleft;
  916. end;
  917. end;
  918. LOC_REFERENCE,LOC_CREFERENCE:
  919. begin
  920. if assigned(location^.next) then
  921. internalerror(2017073001);
  922. reference_reset_base(ref,voidstackpointertype,location^.reference.index,location^.reference.offset,ctempposinvalid,newalignment(cgpara.alignment,cgpara.intsize-sizeleft),[]);
  923. if (def_cgsize(size)<>OS_NO) and
  924. (size.size=sizeleft) and
  925. (sizeleft<=sizeof(aint)) then
  926. a_load_ref_ref(list,size,location^.def,tmpref,ref)
  927. else
  928. { use concatcopy, because the parameter can be larger than }
  929. { what the OS_* constants can handle }
  930. g_concatcopy(list,location^.def,tmpref,ref);
  931. end;
  932. LOC_MMREGISTER,LOC_CMMREGISTER:
  933. begin
  934. case location^.size of
  935. OS_F32,
  936. OS_F64,
  937. OS_F128:
  938. a_loadmm_ref_reg(list,location^.def,location^.def,tmpref,location^.register,mms_movescalar);
  939. OS_M8..OS_M128,
  940. OS_MS8..OS_MS128:
  941. a_loadmm_ref_reg(list,location^.def,location^.def,tmpref,location^.register,nil);
  942. else
  943. internalerror(2010053101);
  944. end;
  945. end
  946. else
  947. internalerror(2014032101);
  948. end;
  949. inc(tmpref.offset,tcgsize2size[location^.size]);
  950. dec(sizeleft,tcgsize2size[location^.size]);
  951. location:=location^.next;
  952. end;
  953. end;
  954. procedure thlcgobj.a_load_loc_cgpara(list: TAsmList; size: tdef; const l: tlocation; const cgpara: TCGPara);
  955. begin
  956. case l.loc of
  957. LOC_REGISTER,
  958. LOC_CREGISTER :
  959. a_load_reg_cgpara(list,size,l.register,cgpara);
  960. LOC_CONSTANT :
  961. a_load_const_cgpara(list,size,l.value,cgpara);
  962. LOC_CREFERENCE,
  963. LOC_REFERENCE :
  964. a_load_ref_cgpara(list,size,l.reference,cgpara);
  965. else
  966. internalerror(2010120419);
  967. end;
  968. end;
  969. procedure thlcgobj.a_loadaddr_ref_cgpara(list: TAsmList; fromsize: tdef; const r: treference; const cgpara: TCGPara);
  970. var
  971. hr : tregister;
  972. begin
  973. cgpara.check_simple_location;
  974. if cgpara.location^.loc in [LOC_CREGISTER,LOC_REGISTER] then
  975. begin
  976. paramanager.allocparaloc(list,cgpara.location);
  977. a_loadaddr_ref_reg(list,fromsize,cgpara.location^.def,r,cgpara.location^.register)
  978. end
  979. else
  980. begin
  981. hr:=getaddressregister(list,cgpara.def);
  982. a_loadaddr_ref_reg(list,fromsize,cgpara.location^.def,r,hr);
  983. a_load_reg_cgpara(list,cgpara.def,hr,cgpara);
  984. end;
  985. end;
  986. function thlcgobj.a_call_name_static(list: TAsmList; pd: tprocdef; const s: TSymStr; const paras: array of pcgpara; forceresdef: tdef): tcgpara;
  987. begin
  988. result:=a_call_name(list,pd,s,paras,forceresdef,false);
  989. end;
  990. function thlcgobj.a_call_name_inherited(list: TAsmList; pd: tprocdef; const s: TSymStr; const paras: array of pcgpara): tcgpara;
  991. begin
  992. result:=a_call_name(list,pd,s,paras,nil,false);
  993. end;
  994. procedure thlcgobj.a_load_const_ref(list: TAsmList; tosize: tdef; a: tcgint; const ref: treference);
  995. var
  996. tmpreg: tregister;
  997. begin
  998. tmpreg:=getintregister(list,tosize);
  999. a_load_const_reg(list,tosize,a,tmpreg);
  1000. a_load_reg_ref(list,tosize,tosize,tmpreg,ref);
  1001. end;
  1002. procedure thlcgobj.a_load_const_loc(list: TAsmList; tosize: tdef; a: tcgint; const loc: tlocation);
  1003. begin
  1004. case loc.loc of
  1005. LOC_REFERENCE,LOC_CREFERENCE:
  1006. a_load_const_ref(list,tosize,a,loc.reference);
  1007. LOC_REGISTER,LOC_CREGISTER:
  1008. a_load_const_reg(list,tosize,a,loc.register);
  1009. LOC_SUBSETREG,LOC_CSUBSETREG:
  1010. a_load_const_subsetreg(list,tosize,a,loc.sreg);
  1011. LOC_SUBSETREF,LOC_CSUBSETREF:
  1012. a_load_const_subsetref(list,tosize,a,loc.sref);
  1013. else
  1014. internalerror(2010120401);
  1015. end;
  1016. end;
  1017. procedure thlcgobj.a_load_reg_ref_unaligned(list: TAsmList; fromsize, tosize: tdef; register: tregister; const ref: treference);
  1018. begin
  1019. a_load_reg_ref(list,fromsize,tosize,register,ref);
  1020. end;
  1021. procedure thlcgobj.a_load_reg_loc(list: TAsmList; fromsize, tosize: tdef; reg: tregister; const loc: tlocation);
  1022. begin
  1023. case loc.loc of
  1024. LOC_REFERENCE,LOC_CREFERENCE:
  1025. a_load_reg_ref(list,fromsize,tosize,reg,loc.reference);
  1026. LOC_REGISTER,LOC_CREGISTER:
  1027. a_load_reg_reg(list,fromsize,tosize,reg,loc.register);
  1028. LOC_SUBSETREG,LOC_CSUBSETREG:
  1029. a_load_reg_subsetreg(list,fromsize,tosize,reg,loc.sreg);
  1030. LOC_SUBSETREF,LOC_CSUBSETREF:
  1031. a_load_reg_subsetref(list,fromsize,tosize,reg,loc.sref);
  1032. LOC_MMREGISTER,LOC_CMMREGISTER:
  1033. a_loadmm_intreg_reg(list,fromsize,tosize,reg,loc.register,mms_movescalar);
  1034. else
  1035. internalerror(2010120402);
  1036. end;
  1037. end;
  1038. procedure thlcgobj.a_load_ref_reg_unaligned(list: TAsmList; fromsize, tosize: tdef; const ref: treference; register: tregister);
  1039. begin
  1040. a_load_ref_reg(list,fromsize,tosize,ref,register);
  1041. end;
  1042. procedure thlcgobj.a_load_ref_ref(list: TAsmList; fromsize, tosize: tdef; const sref: treference; const dref: treference);
  1043. var
  1044. tmpreg: tregister;
  1045. begin
  1046. { verify if we have the same reference }
  1047. if references_equal(sref,dref) then
  1048. exit;
  1049. tmpreg:=getintregister(list,tosize);
  1050. a_load_ref_reg(list,fromsize,tosize,sref,tmpreg);
  1051. a_load_reg_ref(list,tosize,tosize,tmpreg,dref);
  1052. end;
  1053. procedure thlcgobj.a_load_loc_reg(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; reg: tregister);
  1054. begin
  1055. case loc.loc of
  1056. LOC_REFERENCE,LOC_CREFERENCE:
  1057. a_load_ref_reg(list,fromsize,tosize,loc.reference,reg);
  1058. LOC_REGISTER,LOC_CREGISTER:
  1059. a_load_reg_reg(list,fromsize,tosize,loc.register,reg);
  1060. LOC_CONSTANT:
  1061. a_load_const_reg(list,tosize,loc.value,reg);
  1062. LOC_SUBSETREG,LOC_CSUBSETREG:
  1063. a_load_subsetreg_reg(list,fromsize,tosize,loc.sreg,reg);
  1064. LOC_SUBSETREF,LOC_CSUBSETREF:
  1065. a_load_subsetref_reg(list,fromsize,tosize,loc.sref,reg);
  1066. else
  1067. internalerror(2010120201);
  1068. end;
  1069. end;
  1070. procedure thlcgobj.a_load_loc_ref(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; const ref: treference);
  1071. begin
  1072. case loc.loc of
  1073. LOC_REFERENCE,LOC_CREFERENCE:
  1074. a_load_ref_ref(list,fromsize,tosize,loc.reference,ref);
  1075. LOC_REGISTER,LOC_CREGISTER:
  1076. a_load_reg_ref(list,fromsize,tosize,loc.register,ref);
  1077. LOC_CONSTANT:
  1078. a_load_const_ref(list,tosize,loc.value,ref);
  1079. LOC_SUBSETREG,LOC_CSUBSETREG:
  1080. a_load_subsetreg_ref(list,fromsize,tosize,loc.sreg,ref);
  1081. LOC_SUBSETREF,LOC_CSUBSETREF:
  1082. a_load_subsetref_ref(list,fromsize,tosize,loc.sref,ref);
  1083. else
  1084. internalerror(2010120403);
  1085. end;
  1086. end;
  1087. procedure thlcgobj.a_load_loc_subsetreg(list: TAsmList; fromsize, tosubsetsize: tdef; const loc: tlocation; const sreg: tsubsetregister);
  1088. begin
  1089. case loc.loc of
  1090. LOC_REFERENCE,LOC_CREFERENCE:
  1091. a_load_ref_subsetreg(list,fromsize,tosubsetsize,loc.reference,sreg);
  1092. LOC_REGISTER,LOC_CREGISTER:
  1093. a_load_reg_subsetreg(list,fromsize,tosubsetsize,loc.register,sreg);
  1094. LOC_CONSTANT:
  1095. a_load_const_subsetreg(list,tosubsetsize,loc.value,sreg);
  1096. LOC_SUBSETREG,LOC_CSUBSETREG:
  1097. a_load_subsetreg_subsetreg(list,fromsize,tosubsetsize,loc.sreg,sreg);
  1098. LOC_SUBSETREF,LOC_CSUBSETREF:
  1099. a_load_subsetref_subsetreg(list,fromsize,tosubsetsize,loc.sref,sreg);
  1100. else
  1101. internalerror(2010120404);
  1102. end;
  1103. end;
  1104. procedure thlcgobj.a_load_loc_subsetref(list: TAsmList; fromsize, tosubsetsize: tdef; const loc: tlocation; const sref: tsubsetreference);
  1105. begin
  1106. case loc.loc of
  1107. LOC_REFERENCE,LOC_CREFERENCE:
  1108. a_load_ref_subsetref(list,fromsize,tosubsetsize,loc.reference,sref);
  1109. LOC_REGISTER,LOC_CREGISTER:
  1110. a_load_reg_subsetref(list,fromsize,tosubsetsize,loc.register,sref);
  1111. LOC_CONSTANT:
  1112. a_load_const_subsetref(list,tosubsetsize,loc.value,sref);
  1113. LOC_SUBSETREG,LOC_CSUBSETREG:
  1114. a_load_subsetreg_subsetref(list,fromsize,tosubsetsize,loc.sreg,sref);
  1115. LOC_SUBSETREF,LOC_CSUBSETREF:
  1116. a_load_subsetref_subsetref(list,fromsize,tosubsetsize,loc.sref,sref);
  1117. else
  1118. internalerror(2010120405);
  1119. end;
  1120. end;
  1121. {$push}
  1122. {$r-,q-}
  1123. procedure thlcgobj.a_load_subsetreg_reg(list: TAsmList; subsetsize, tosize: tdef; const sreg: tsubsetregister; destreg: tregister);
  1124. var
  1125. subsetregdef: torddef;
  1126. bitmask: aword;
  1127. tmpreg,
  1128. subsetsizereg: tregister;
  1129. stopbit: byte;
  1130. begin
  1131. subsetregdef:=cgsize_orddef(sreg.subsetregsize);
  1132. tmpreg:=getintregister(list,subsetregdef);
  1133. { insert shifts only if it changes bits being accessed later on }
  1134. if (sreg.startbit<>0) or
  1135. (tosize.size*8>sreg.bitlen) then
  1136. begin
  1137. if is_signed(subsetsize) then
  1138. begin
  1139. { sign extend in case the value has a bitsize mod 8 <> 0 }
  1140. { both instructions will be optimized away if not }
  1141. a_op_const_reg_reg(list,OP_SHL,subsetregdef,(tcgsize2size[sreg.subsetregsize]*8)-sreg.startbit-sreg.bitlen,sreg.subsetreg,tmpreg);
  1142. a_op_const_reg(list,OP_SAR,subsetregdef,(tcgsize2size[sreg.subsetregsize]*8)-sreg.bitlen,tmpreg);
  1143. end
  1144. else
  1145. begin
  1146. a_op_const_reg_reg(list,OP_SHR,subsetregdef,sreg.startbit,sreg.subsetreg,tmpreg);
  1147. stopbit:=sreg.startbit+sreg.bitlen;
  1148. // on x86(64), 1 shl 32(64) = 1 instead of 0
  1149. // use aword to prevent overflow with 1 shl 31
  1150. if (stopbit-sreg.startbit<>AIntBits) then
  1151. bitmask:=(aword(1) shl (stopbit-sreg.startbit))-1
  1152. else
  1153. bitmask:=high(aword);
  1154. a_op_const_reg(list,OP_AND,subsetregdef,tcgint(bitmask),tmpreg);
  1155. end;
  1156. end
  1157. else
  1158. a_load_reg_reg(list,subsetregdef,subsetregdef,sreg.subsetreg,tmpreg);
  1159. subsetsizereg:=getintregister(list,subsetsize);
  1160. a_load_reg_reg(list,subsetregdef,subsetsize,tmpreg,subsetsizereg);
  1161. a_load_reg_reg(list,subsetsize,tosize,subsetsizereg,destreg);
  1162. end;
  1163. procedure thlcgobj.a_load_reg_subsetreg(list: TAsmList; fromsize, tosubsetsize: tdef; fromreg: tregister; const sreg: tsubsetregister);
  1164. begin
  1165. a_load_regconst_subsetreg_intern(list,fromsize,tosubsetsize,fromreg,sreg,SL_REG);
  1166. end;
  1167. procedure thlcgobj.a_load_subsetreg_subsetreg(list: TAsmlist; fromsubsetsize, tosubsetsize: tdef; const fromsreg, tosreg: tsubsetregister);
  1168. var
  1169. fromsubsetregdef,
  1170. tosubsetregdef: torddef;
  1171. tmpreg, tmpreg2: tregister;
  1172. bitmask: aword;
  1173. stopbit: byte;
  1174. begin
  1175. if (fromsreg.bitlen>=tosreg.bitlen) then
  1176. begin
  1177. fromsubsetregdef:=cgsize_orddef(fromsreg.subsetregsize);
  1178. tosubsetregdef:=cgsize_orddef(tosreg.subsetregsize);
  1179. if (fromsreg.startbit<=tosreg.startbit) then
  1180. begin
  1181. { tosreg may be larger -> use its size to perform the shift }
  1182. tmpreg:=getintregister(list,tosubsetregdef);
  1183. a_load_reg_reg(list,fromsubsetregdef,tosubsetregdef,fromsreg.subsetreg,tmpreg);
  1184. a_op_const_reg(list,OP_SHL,tosubsetregdef,tosreg.startbit-fromsreg.startbit,tmpreg)
  1185. end
  1186. else
  1187. begin
  1188. { fromsreg may be larger -> use its size to perform the shift }
  1189. tmpreg:=getintregister(list,fromsubsetregdef);
  1190. a_op_const_reg_reg(list,OP_SHR,fromsubsetregdef,fromsreg.startbit-tosreg.startbit,fromsreg.subsetreg,tmpreg);
  1191. tmpreg2:=getintregister(list,tosubsetregdef);
  1192. a_load_reg_reg(list,fromsubsetregdef,tosubsetregdef,tmpreg,tmpreg2);
  1193. tmpreg:=tmpreg2;
  1194. end;
  1195. stopbit:=tosreg.startbit + tosreg.bitlen;
  1196. // on x86(64), 1 shl 32(64) = 1 instead of 0
  1197. if (stopbit<>AIntBits) then
  1198. bitmask:=not(((aword(1) shl stopbit)-1) xor ((aword(1) shl tosreg.startbit)-1))
  1199. else
  1200. bitmask:=(aword(1) shl tosreg.startbit) - 1;
  1201. a_op_const_reg(list,OP_AND,tosubsetregdef,tcgint(bitmask),tosreg.subsetreg);
  1202. a_op_const_reg(list,OP_AND,tosubsetregdef,tcgint(not(bitmask)),tmpreg);
  1203. a_op_reg_reg(list,OP_OR,tosubsetregdef,tmpreg,tosreg.subsetreg);
  1204. end
  1205. else
  1206. begin
  1207. tmpreg:=getintregister(list,tosubsetsize);
  1208. a_load_subsetreg_reg(list,fromsubsetsize,tosubsetsize,fromsreg,tmpreg);
  1209. a_load_reg_subsetreg(list,tosubsetsize,tosubsetsize,tmpreg,tosreg);
  1210. end;
  1211. end;
  1212. procedure thlcgobj.a_load_subsetreg_ref(list: TAsmList; fromsubsetsize, tosize: tdef; const sreg: tsubsetregister; const destref: treference);
  1213. var
  1214. tmpreg: tregister;
  1215. begin
  1216. tmpreg:=getintregister(list,tosize);
  1217. a_load_subsetreg_reg(list,fromsubsetsize,tosize,sreg,tmpreg);
  1218. a_load_reg_ref(list,tosize,tosize,tmpreg,destref);
  1219. end;
  1220. procedure thlcgobj.a_load_ref_subsetreg(list: TAsmList; fromsize, tosubsetsize: tdef; const fromref: treference; const sreg: tsubsetregister);
  1221. var
  1222. tmpreg: tregister;
  1223. begin
  1224. tmpreg := getintregister(list,tosubsetsize);
  1225. a_load_ref_reg(list,fromsize,tosubsetsize,fromref,tmpreg);
  1226. a_load_reg_subsetreg(list,tosubsetsize,tosubsetsize,tmpreg,sreg);
  1227. end;
  1228. procedure thlcgobj.a_load_const_subsetreg(list: TAsmlist; tosubsetsize: tdef; a: tcgint; const sreg: tsubsetregister);
  1229. var
  1230. subsetregdef: torddef;
  1231. bitmask: aword;
  1232. stopbit: byte;
  1233. begin
  1234. subsetregdef:=cgsize_orddef(sreg.subsetregsize);
  1235. stopbit:=sreg.startbit+sreg.bitlen;
  1236. // on x86(64), 1 shl 32(64) = 1 instead of 0
  1237. if (stopbit<>AIntBits) then
  1238. bitmask:=not(((aword(1) shl stopbit)-1) xor ((aword(1) shl sreg.startbit)-1))
  1239. else
  1240. bitmask:=(aword(1) shl sreg.startbit)-1;
  1241. if (((aword(a) shl sreg.startbit) and not bitmask)<>not bitmask) then
  1242. a_op_const_reg(list,OP_AND,subsetregdef,tcgint(bitmask),sreg.subsetreg);
  1243. a_op_const_reg(list,OP_OR,subsetregdef,tcgint((aword(a) shl sreg.startbit) and not(bitmask)),sreg.subsetreg);
  1244. end;
  1245. procedure thlcgobj.a_load_subsetreg_loc(list: TAsmlist; fromsubsetsize, tosize: tdef; const sreg: tsubsetregister; const loc: tlocation);
  1246. begin
  1247. case loc.loc of
  1248. LOC_REFERENCE,LOC_CREFERENCE:
  1249. a_load_subsetreg_ref(list,fromsubsetsize,tosize,sreg,loc.reference);
  1250. LOC_REGISTER,LOC_CREGISTER:
  1251. a_load_subsetreg_reg(list,fromsubsetsize,tosize,sreg,loc.register);
  1252. LOC_SUBSETREG,LOC_CSUBSETREG:
  1253. a_load_subsetreg_subsetreg(list,fromsubsetsize,tosize,sreg,loc.sreg);
  1254. LOC_SUBSETREF,LOC_CSUBSETREF:
  1255. a_load_subsetreg_subsetref(list,fromsubsetsize,tosize,sreg,loc.sref);
  1256. else
  1257. internalerror(2010120406);
  1258. end;
  1259. end;
  1260. procedure thlcgobj.a_load_subsetref_reg(list: TAsmList; fromsubsetsize, tosize: tdef; const sref: tsubsetreference; destreg: tregister);
  1261. var
  1262. tmpref: treference;
  1263. valuereg,extra_value_reg, tmpreg: tregister;
  1264. tosreg: tsubsetregister;
  1265. loadsize: torddef;
  1266. loadbitsize: byte;
  1267. extra_load: boolean;
  1268. tmpsref: tsubsetreference;
  1269. begin
  1270. if sref.bitlen>AIntBits then
  1271. begin
  1272. tmpsref:=sref;
  1273. tmpsref.bitlen:=AIntBits;
  1274. valuereg:=hlcg.getintregister(list,tosize);
  1275. a_load_subsetref_reg(list,sinttype,tosize,tmpsref,valuereg);
  1276. tmpsref.bitlen:=sref.bitlen-AIntBits;
  1277. inc(tmpsref.ref.offset,AIntBits div 8);
  1278. extra_value_reg:=hlcg.getintregister(list,tosize);
  1279. a_load_subsetref_reg(list,sinttype,tosize,tmpsref,extra_value_reg);
  1280. { can't use a_load_reg_subsetreg to merge the results, as that one
  1281. does not support sizes > AIntBits either }
  1282. tmpreg:=hlcg.getintregister(list,tosize);
  1283. if target_info.endian=endian_big then
  1284. begin
  1285. a_op_const_reg_reg(list,OP_SHL,tosize,sref.bitlen-AIntBits,valuereg,tmpreg);
  1286. if is_signed(fromsubsetsize) then
  1287. begin
  1288. valuereg:=tmpreg;
  1289. tmpreg:=hlcg.getintregister(list,tosize);
  1290. a_op_const_reg_reg(list,OP_AND,tosize,(tcgint(1) shl (sref.bitlen-AIntBits))-1,extra_value_reg,tmpreg);
  1291. valuereg:=tmpreg;
  1292. end
  1293. end
  1294. else
  1295. begin
  1296. a_op_const_reg_reg(list,OP_SHL,tosize,AIntBits,extra_value_reg,tmpreg);
  1297. if is_signed(fromsubsetsize) then
  1298. begin
  1299. extra_value_reg:=hlcg.getintregister(list,tosize);
  1300. a_op_const_reg_reg(list,OP_AND,tosize,(tcgint(1) shl AIntBits)-1,valuereg,extra_value_reg);
  1301. valuereg:=extra_value_reg;
  1302. end
  1303. end;
  1304. if is_signed(fromsubsetsize) then
  1305. begin
  1306. extra_value_reg:=hlcg.getintregister(list,tosize);
  1307. a_op_const_reg_reg(list,OP_AND,tosize,(tcgint(1) shl AIntBits)-1,valuereg,extra_value_reg);
  1308. valuereg:=extra_value_reg;
  1309. end;
  1310. a_op_reg_reg_reg(list,OP_OR,tosize,valuereg,tmpreg,destreg);
  1311. exit;
  1312. end;
  1313. get_subsetref_load_info(sref,loadsize,extra_load);
  1314. loadbitsize:=loadsize.size*8;
  1315. { load the (first part) of the bit sequence }
  1316. valuereg:=getintregister(list,osuinttype);
  1317. a_load_ref_reg(list,loadsize,osuinttype,sref.ref,valuereg);
  1318. if not extra_load then
  1319. begin
  1320. { everything is guaranteed to be in a single register of loadsize }
  1321. if (sref.bitindexreg=NR_NO) then
  1322. begin
  1323. { use subsetreg routine, it may have been overridden with an optimized version }
  1324. tosreg.subsetreg:=valuereg;
  1325. tosreg.subsetregsize:=def_cgsize(osuinttype);
  1326. { subsetregs always count bits from right to left }
  1327. if (target_info.endian=endian_big) then
  1328. tosreg.startbit:=loadbitsize-(sref.startbit+sref.bitlen)
  1329. else
  1330. tosreg.startbit:=sref.startbit;
  1331. tosreg.bitlen:=sref.bitlen;
  1332. a_load_subsetreg_reg(list,fromsubsetsize,tosize,tosreg,destreg);
  1333. exit;
  1334. end
  1335. else
  1336. begin
  1337. if (sref.startbit<>0) then
  1338. internalerror(2006081510);
  1339. if (target_info.endian=endian_big) then
  1340. begin
  1341. a_op_reg_reg(list,OP_SHL,osuinttype,sref.bitindexreg,valuereg);
  1342. if is_signed(fromsubsetsize) then
  1343. begin
  1344. { sign extend to entire register }
  1345. a_op_const_reg(list,OP_SHL,osuinttype,AIntBits-loadbitsize,valuereg);
  1346. a_op_const_reg(list,OP_SAR,osuinttype,AIntBits-sref.bitlen,valuereg);
  1347. end
  1348. else
  1349. a_op_const_reg(list,OP_SHR,osuinttype,loadbitsize-sref.bitlen,valuereg);
  1350. end
  1351. else
  1352. begin
  1353. a_op_reg_reg(list,OP_SHR,osuinttype,sref.bitindexreg,valuereg);
  1354. if is_signed(fromsubsetsize) then
  1355. begin
  1356. a_op_const_reg(list,OP_SHL,osuinttype,AIntBits-sref.bitlen,valuereg);
  1357. a_op_const_reg(list,OP_SAR,osuinttype,AIntBits-sref.bitlen,valuereg);
  1358. end
  1359. end;
  1360. { mask other bits/sign extend }
  1361. if not is_signed(fromsubsetsize) then
  1362. a_op_const_reg(list,OP_AND,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),valuereg);
  1363. end
  1364. end
  1365. else
  1366. begin
  1367. { load next value as well }
  1368. extra_value_reg:=getintregister(list,osuinttype);
  1369. if (sref.bitindexreg=NR_NO) then
  1370. begin
  1371. tmpref:=sref.ref;
  1372. inc(tmpref.offset,loadbitsize div 8);
  1373. a_load_ref_reg(list,loadsize,osuinttype,tmpref,extra_value_reg);
  1374. { can be overridden to optimize }
  1375. a_load_subsetref_regs_noindex(list,fromsubsetsize,loadbitsize,sref,valuereg,extra_value_reg)
  1376. end
  1377. else
  1378. begin
  1379. if (sref.startbit<>0) then
  1380. internalerror(2006080610);
  1381. a_load_subsetref_regs_index(list,fromsubsetsize,loadbitsize,sref,valuereg);
  1382. end;
  1383. end;
  1384. { store in destination }
  1385. {$ifndef cpuhighleveltarget}
  1386. { avoid unnecessary sign extension and zeroing }
  1387. valuereg:=cg.makeregsize(list,valuereg,OS_INT);
  1388. destreg:=cg.makeregsize(list,destreg,OS_INT);
  1389. cg.a_load_reg_reg(list,OS_INT,OS_INT,valuereg,destreg);
  1390. destreg:=cg.makeregsize(list,destreg,def_cgsize(tosize));
  1391. {$else}
  1392. { can't juggle with register sizes, they are actually typed entities
  1393. here }
  1394. a_load_reg_reg(list,osuinttype,tosize,valuereg,destreg);
  1395. {$endif}
  1396. end;
  1397. procedure thlcgobj.a_load_reg_subsetref(list: TAsmList; fromsize, tosubsetsize: tdef; fromreg: tregister; const sref: tsubsetreference);
  1398. var
  1399. tmpsref: tsubsetreference;
  1400. fromreg1: tregister;
  1401. begin
  1402. if sref.bitlen>AIntBits then
  1403. begin
  1404. if ((sref.bitlen mod AIntBits)<>0) then
  1405. internalerror(2019052901);
  1406. tmpsref:=sref;
  1407. tmpsref.bitlen:=AIntBits;
  1408. fromreg1:=hlcg.getintregister(list,uinttype);
  1409. a_load_reg_reg(list,fromsize,uinttype,fromreg,fromreg1);
  1410. if target_info.endian=endian_big then
  1411. begin
  1412. inc(tmpsref.ref.offset,sref.bitlen-AIntBits);
  1413. end;
  1414. a_load_reg_subsetref(list,uinttype,uinttype,fromreg1,tmpsref);
  1415. if target_info.endian=endian_big then
  1416. begin
  1417. tmpsref.ref.offset:=sref.ref.offset;
  1418. end
  1419. else
  1420. begin
  1421. inc(tmpsref.ref.offset,AIntBits div 8);
  1422. end;
  1423. tmpsref.bitlen:=sref.bitlen-AIntBits;
  1424. fromreg1:=hlcg.getintregister(list,fromsize);
  1425. hlcg.a_op_const_reg_reg(list,OP_SHR,fromsize,AIntBits,fromreg,fromreg1);
  1426. a_load_reg_subsetref(list,fromsize,tosubsetsize,fromreg1,tmpsref);
  1427. exit;
  1428. end;
  1429. a_load_regconst_subsetref_intern(list,fromsize,tosubsetsize,fromreg,sref,SL_REG);
  1430. end;
  1431. procedure thlcgobj.a_load_subsetref_subsetref(list: TAsmlist; fromsubsetsize, tosubsetsize: tdef; const fromsref, tosref: tsubsetreference);
  1432. var
  1433. tmpreg: tregister;
  1434. begin
  1435. tmpreg:=getintregister(list,tosubsetsize);
  1436. a_load_subsetref_reg(list,fromsubsetsize,tosubsetsize,fromsref,tmpreg);
  1437. a_load_reg_subsetref(list,tosubsetsize,tosubsetsize,tmpreg,tosref);
  1438. end;
  1439. procedure thlcgobj.a_load_subsetref_ref(list: TAsmList; fromsubsetsize, tosize: tdef; const sref: tsubsetreference; const destref: treference);
  1440. var
  1441. tmpreg: tregister;
  1442. begin
  1443. tmpreg:=getintregister(list,tosize);
  1444. a_load_subsetref_reg(list,fromsubsetsize,tosize,sref,tmpreg);
  1445. a_load_reg_ref(list,tosize,tosize,tmpreg,destref);
  1446. end;
  1447. procedure thlcgobj.a_load_ref_subsetref(list: TAsmList; fromsize, tosubsetsize: tdef; const fromref: treference; const sref: tsubsetreference);
  1448. var
  1449. tmpreg: tregister;
  1450. begin
  1451. tmpreg := getintregister(list,tosubsetsize);
  1452. a_load_ref_reg(list,fromsize,tosubsetsize,fromref,tmpreg);
  1453. a_load_reg_subsetref(list,tosubsetsize,tosubsetsize,tmpreg,sref);
  1454. end;
  1455. procedure thlcgobj.a_load_const_subsetref(list: TAsmlist; tosubsetsize: tdef; a: tcgint; const sref: tsubsetreference);
  1456. var
  1457. tmpref: treference;
  1458. tmpsref: tsubsetreference;
  1459. tmpreg: tregister;
  1460. slopt: tsubsetloadopt;
  1461. newdef: tdef;
  1462. newbytesize: longint;
  1463. loval, hival: longint;
  1464. begin
  1465. if sref.bitlen>AIntBits then
  1466. begin
  1467. if ((sref.bitlen mod AIntBits)<>0) then
  1468. internalerror(2019052901);
  1469. tmpsref:=sref;
  1470. tmpsref.bitlen:=AIntBits;
  1471. if target_info.endian=endian_big then
  1472. begin
  1473. inc(tmpsref.ref.offset,sref.bitlen-AIntBits);
  1474. end;
  1475. a_load_const_subsetref(list,tosubsetsize,aint(a),tmpsref);
  1476. if target_info.endian=endian_big then
  1477. begin
  1478. tmpsref.ref.offset:=sref.ref.offset;
  1479. end
  1480. else
  1481. begin
  1482. inc(tmpsref.ref.offset,AIntBits div 8);
  1483. end;
  1484. tmpsref.bitlen:=sref.bitlen-AIntBits;
  1485. a_load_const_subsetref(list,tosubsetsize,a shr AIntBits,tmpsref);
  1486. exit;
  1487. end;
  1488. { perform masking of the source value in advance }
  1489. slopt:=SL_REGNOSRCMASK;
  1490. if (sref.bitlen<>AIntBits) then
  1491. a:=tcgint(aword(a) and ((aword(1) shl sref.bitlen) -1));
  1492. if (
  1493. { broken x86 "x shl regbitsize = x" }
  1494. ((sref.bitlen<>AIntBits) and
  1495. ((aword(a) and ((aword(1) shl sref.bitlen)-1))=(aword(1) shl sref.bitlen)-1)) or
  1496. ((sref.bitlen=AIntBits) and
  1497. (a=-1))
  1498. ) then
  1499. slopt:=SL_SETMAX
  1500. else if (a=0) then
  1501. slopt:=SL_SETZERO;
  1502. if not(slopt in [SL_SETZERO,SL_SETMAX]) then
  1503. begin
  1504. tmpreg:=getintregister(list,tosubsetsize);
  1505. a_load_const_reg(list,tosubsetsize,a,tmpreg);
  1506. end
  1507. else
  1508. tmpreg:=NR_NO;
  1509. a_load_regconst_subsetref_intern(list,tosubsetsize,tosubsetsize,tmpreg,sref,slopt);
  1510. end;
  1511. procedure thlcgobj.a_load_subsetref_loc(list: TAsmlist; fromsubsetsize, tosize: tdef; const sref: tsubsetreference; const loc: tlocation);
  1512. begin
  1513. case loc.loc of
  1514. LOC_REFERENCE,LOC_CREFERENCE:
  1515. a_load_subsetref_ref(list,fromsubsetsize,tosize,sref,loc.reference);
  1516. LOC_REGISTER,LOC_CREGISTER:
  1517. a_load_subsetref_reg(list,fromsubsetsize,tosize,sref,loc.register);
  1518. LOC_SUBSETREG,LOC_CSUBSETREG:
  1519. a_load_subsetref_subsetreg(list,fromsubsetsize,tosize,sref,loc.sreg);
  1520. LOC_SUBSETREF,LOC_CSUBSETREF:
  1521. a_load_subsetref_subsetref(list,fromsubsetsize,tosize,sref,loc.sref);
  1522. else
  1523. internalerror(2010120407);
  1524. end;
  1525. end;
  1526. procedure thlcgobj.a_load_subsetref_subsetreg(list: TAsmlist; fromsubsetsize, tosubsetsize: tdef; const fromsref: tsubsetreference; const tosreg: tsubsetregister);
  1527. var
  1528. tmpreg: tregister;
  1529. begin
  1530. tmpreg:=getintregister(list,tosubsetsize);
  1531. a_load_subsetref_reg(list,fromsubsetsize,tosubsetsize,fromsref,tmpreg);
  1532. a_load_reg_subsetreg(list,tosubsetsize,tosubsetsize,tmpreg,tosreg);
  1533. end;
  1534. procedure thlcgobj.a_load_subsetreg_subsetref(list: TAsmlist; fromsubsetsize, tosubsetsize: tdef; const fromsreg: tsubsetregister; const tosref: tsubsetreference);
  1535. var
  1536. tmpreg: tregister;
  1537. begin
  1538. tmpreg := getintregister(list,tosubsetsize);
  1539. a_load_subsetreg_reg(list,fromsubsetsize,tosubsetsize,fromsreg,tmpreg);
  1540. a_load_reg_subsetref(list,tosubsetsize,tosubsetsize,tmpreg,tosref);
  1541. end;
  1542. procedure thlcgobj.a_bit_test_reg_reg_reg(list: TAsmList; bitnumbersize, valuesize, destsize: tdef; bitnumber, value, destreg: tregister);
  1543. var
  1544. tmpvalue: tregister;
  1545. begin
  1546. tmpvalue:=getintregister(list,valuesize);
  1547. if (target_info.endian=endian_little) then
  1548. begin
  1549. { rotate value register "bitnumber" bits to the right }
  1550. a_op_reg_reg_reg(list,OP_SHR,valuesize,bitnumber,value,tmpvalue);
  1551. { extract the bit we want }
  1552. a_op_const_reg(list,OP_AND,valuesize,1,tmpvalue);
  1553. end
  1554. else
  1555. begin
  1556. { highest (leftmost) bit = bit 0 -> shl bitnumber results in wanted }
  1557. { bit in uppermost position, then move it to the lowest position }
  1558. { "and" is not necessary since combination of shl/shr will clear }
  1559. { all other bits }
  1560. a_op_reg_reg_reg(list,OP_SHL,valuesize,bitnumber,value,tmpvalue);
  1561. a_op_const_reg(list,OP_SHR,valuesize,valuesize.size*8-1,tmpvalue);
  1562. end;
  1563. a_load_reg_reg(list,valuesize,destsize,tmpvalue,destreg);
  1564. end;
  1565. procedure thlcgobj.a_bit_test_const_ref_reg(list: TAsmList; fromsize, destsize: tdef; bitnumber: aint; const ref: treference; destreg: tregister);
  1566. var
  1567. href: treference;
  1568. begin
  1569. href:=ref;
  1570. g_ptrtypecast_ref(list,cpointerdef.getreusable(fromsize),cpointerdef.getreusable(u8inttype),href);
  1571. a_load_subsetref_reg(list,u8inttype,destsize,get_bit_const_ref_sref(bitnumber,fromsize,href),destreg);
  1572. end;
  1573. procedure thlcgobj.a_bit_test_const_reg_reg(list: TAsmList; setregsize, destsize: tdef; bitnumber: aint; setreg, destreg: tregister);
  1574. begin
  1575. a_load_subsetreg_reg(list,setregsize,destsize,get_bit_const_reg_sreg(setregsize,bitnumber,setreg),destreg);
  1576. end;
  1577. procedure thlcgobj.a_bit_test_const_subsetreg_reg(list: TAsmList; fromsubsetsize, destsize: tdef; bitnumber: aint; const setreg: tsubsetregister; destreg: tregister);
  1578. var
  1579. tmpsreg: tsubsetregister;
  1580. begin
  1581. { the first parameter is used to calculate the bit offset in }
  1582. { case of big endian, and therefore must be the size of the }
  1583. { set and not of the whole subsetreg }
  1584. tmpsreg:=get_bit_const_reg_sreg(fromsubsetsize,bitnumber,setreg.subsetreg);
  1585. { now fix the size of the subsetreg }
  1586. tmpsreg.subsetregsize:=setreg.subsetregsize;
  1587. { correct offset of the set in the subsetreg }
  1588. inc(tmpsreg.startbit,setreg.startbit);
  1589. a_load_subsetreg_reg(list,fromsubsetsize,destsize,tmpsreg,destreg);
  1590. end;
  1591. procedure thlcgobj.a_bit_test_reg_ref_reg(list: TAsmList; bitnumbersize, refsize, destsize: tdef; bitnumber: tregister; const ref: treference; destreg: tregister);
  1592. var
  1593. href: treference;
  1594. begin
  1595. href:=ref;
  1596. g_ptrtypecast_ref(list,cpointerdef.getreusable(refsize),cpointerdef.getreusable(u8inttype),href);
  1597. a_load_subsetref_reg(list,u8inttype,destsize,get_bit_reg_ref_sref(list,bitnumbersize,refsize,bitnumber,href),destreg);
  1598. end;
  1599. procedure thlcgobj.a_bit_test_reg_loc_reg(list: TAsmList; bitnumbersize, locsize, destsize: tdef; bitnumber: tregister; const loc: tlocation; destreg: tregister);
  1600. var
  1601. tmpreg: tregister;
  1602. begin
  1603. case loc.loc of
  1604. LOC_REFERENCE,LOC_CREFERENCE:
  1605. a_bit_test_reg_ref_reg(list,bitnumbersize,locsize,destsize,bitnumber,loc.reference,destreg);
  1606. LOC_REGISTER,LOC_CREGISTER,
  1607. LOC_SUBSETREG,LOC_CSUBSETREG,
  1608. LOC_CONSTANT:
  1609. begin
  1610. case loc.loc of
  1611. LOC_REGISTER,LOC_CREGISTER:
  1612. tmpreg:=loc.register;
  1613. LOC_SUBSETREG,LOC_CSUBSETREG:
  1614. begin
  1615. tmpreg:=getintregister(list,locsize);
  1616. a_load_subsetreg_reg(list,locsize,locsize,loc.sreg,tmpreg);
  1617. end;
  1618. LOC_CONSTANT:
  1619. begin
  1620. tmpreg:=getintregister(list,locsize);
  1621. a_load_const_reg(list,locsize,loc.value,tmpreg);
  1622. end;
  1623. else
  1624. internalerror(2013112909);
  1625. end;
  1626. a_bit_test_reg_reg_reg(list,bitnumbersize,locsize,destsize,bitnumber,tmpreg,destreg);
  1627. end;
  1628. { LOC_SUBSETREF is not possible, because sets are not (yet) bitpacked }
  1629. else
  1630. internalerror(2010120411);
  1631. end;
  1632. end;
  1633. procedure thlcgobj.a_bit_test_const_loc_reg(list: TAsmList; locsize, destsize: tdef; bitnumber: aint; const loc: tlocation; destreg: tregister);
  1634. begin
  1635. case loc.loc of
  1636. LOC_REFERENCE,LOC_CREFERENCE:
  1637. a_bit_test_const_ref_reg(list,locsize,destsize,bitnumber,loc.reference,destreg);
  1638. LOC_REGISTER,LOC_CREGISTER:
  1639. a_bit_test_const_reg_reg(list,locsize,destsize,bitnumber,loc.register,destreg);
  1640. LOC_SUBSETREG,LOC_CSUBSETREG:
  1641. a_bit_test_const_subsetreg_reg(list,locsize,destsize,bitnumber,loc.sreg,destreg);
  1642. { LOC_SUBSETREF is not possible, because sets are not (yet) bitpacked }
  1643. else
  1644. internalerror(2010120410);
  1645. end;
  1646. end;
  1647. procedure thlcgobj.a_bit_set_reg_reg(list: TAsmList; doset: boolean; bitnumbersize, destsize: tdef; bitnumber, dest: tregister);
  1648. var
  1649. tmpvalue: tregister;
  1650. begin
  1651. tmpvalue:=getintregister(list,destsize);
  1652. if (target_info.endian=endian_little) then
  1653. begin
  1654. a_load_const_reg(list,destsize,1,tmpvalue);
  1655. { rotate bit "bitnumber" bits to the left }
  1656. a_op_reg_reg(list,OP_SHL,destsize,bitnumber,tmpvalue);
  1657. end
  1658. else
  1659. begin
  1660. { highest (leftmost) bit = bit 0 -> "$80/$8000/$80000000/ ... }
  1661. { shr bitnumber" results in correct mask }
  1662. a_load_const_reg(list,destsize,1 shl (destsize.size*8-1),tmpvalue);
  1663. a_op_reg_reg(list,OP_SHR,destsize,bitnumber,tmpvalue);
  1664. end;
  1665. { set/clear the bit we want }
  1666. if doset then
  1667. a_op_reg_reg(list,OP_OR,destsize,tmpvalue,dest)
  1668. else
  1669. begin
  1670. a_op_reg_reg(list,OP_NOT,destsize,tmpvalue,tmpvalue);
  1671. a_op_reg_reg(list,OP_AND,destsize,tmpvalue,dest)
  1672. end;
  1673. end;
  1674. procedure thlcgobj.a_bit_set_const_ref(list: TAsmList; doset: boolean; destsize: tdef; bitnumber: tcgint; const ref: treference);
  1675. var
  1676. href: treference;
  1677. begin
  1678. href:=ref;
  1679. g_ptrtypecast_ref(list,cpointerdef.getreusable(destsize),cpointerdef.getreusable(u8inttype),href);
  1680. a_load_const_subsetref(list,u8inttype,ord(doset),get_bit_const_ref_sref(bitnumber,destsize,href));
  1681. end;
  1682. procedure thlcgobj.a_bit_set_const_reg(list: TAsmList; doset: boolean; destsize: tdef; bitnumber: tcgint; destreg: tregister);
  1683. begin
  1684. g_ptrtypecast_reg(list,cpointerdef.getreusable(destsize),cpointerdef.getreusable(u8inttype),destreg);
  1685. a_load_const_subsetreg(list,u8inttype,ord(doset),get_bit_const_reg_sreg(destsize,bitnumber,destreg));
  1686. end;
  1687. procedure thlcgobj.a_bit_set_const_subsetreg(list: TAsmList; doset: boolean; destsize: tdef; bitnumber: tcgint; const destreg: tsubsetregister);
  1688. var
  1689. tmpsreg: tsubsetregister;
  1690. begin
  1691. { the first parameter is used to calculate the bit offset in }
  1692. { case of big endian, and therefore must be the size of the }
  1693. { set and not of the whole subsetreg }
  1694. tmpsreg:=get_bit_const_reg_sreg(destsize,bitnumber,destreg.subsetreg);
  1695. { now fix the size of the subsetreg }
  1696. tmpsreg.subsetregsize:=destreg.subsetregsize;
  1697. { correct offset of the set in the subsetreg }
  1698. inc(tmpsreg.startbit,destreg.startbit);
  1699. a_load_const_subsetreg(list,u8inttype,ord(doset),tmpsreg);
  1700. end;
  1701. procedure thlcgobj.a_bit_set_reg_ref(list: TAsmList; doset: boolean; fromsize, tosize: tdef; bitnumber: tregister; const ref: treference);
  1702. var
  1703. href: treference;
  1704. begin
  1705. href:=ref;
  1706. g_ptrtypecast_ref(list,cpointerdef.getreusable(tosize),cpointerdef.getreusable(u8inttype),href);
  1707. a_load_const_subsetref(list,u8inttype,ord(doset),get_bit_reg_ref_sref(list,fromsize,tosize,bitnumber,href));
  1708. end;
  1709. procedure thlcgobj.a_bit_set_reg_loc(list: TAsmList; doset: boolean; regsize, tosize: tdef; bitnumber: tregister; const loc: tlocation);
  1710. var
  1711. tmpreg: tregister;
  1712. begin
  1713. case loc.loc of
  1714. LOC_REFERENCE:
  1715. a_bit_set_reg_ref(list,doset,regsize,tosize,bitnumber,loc.reference);
  1716. LOC_CREGISTER:
  1717. a_bit_set_reg_reg(list,doset,regsize,tosize,bitnumber,loc.register);
  1718. { e.g. a 2-byte set in a record regvar }
  1719. LOC_CSUBSETREG:
  1720. begin
  1721. { hard to do in-place in a generic way, so operate on a copy }
  1722. tmpreg:=getintregister(list,tosize);
  1723. a_load_subsetreg_reg(list,tosize,tosize,loc.sreg,tmpreg);
  1724. a_bit_set_reg_reg(list,doset,regsize,tosize,bitnumber,tmpreg);
  1725. a_load_reg_subsetreg(list,tosize,tosize,tmpreg,loc.sreg);
  1726. end;
  1727. { LOC_SUBSETREF is not possible, because sets are not (yet) bitpacked }
  1728. else
  1729. internalerror(2010120408)
  1730. end;
  1731. end;
  1732. procedure thlcgobj.a_bit_set_const_loc(list: TAsmList; doset: boolean; tosize: tdef; bitnumber: tcgint; const loc: tlocation);
  1733. begin
  1734. case loc.loc of
  1735. LOC_REFERENCE:
  1736. a_bit_set_const_ref(list,doset,tosize,bitnumber,loc.reference);
  1737. LOC_CREGISTER:
  1738. a_bit_set_const_reg(list,doset,tosize,bitnumber,loc.register);
  1739. LOC_CSUBSETREG:
  1740. a_bit_set_const_subsetreg(list,doset,tosize,bitnumber,loc.sreg);
  1741. { LOC_SUBSETREF is not possible, because sets are not (yet) bitpacked }
  1742. else
  1743. internalerror(2010120409)
  1744. end;
  1745. end;
  1746. function thlcgobj.get_call_result_cgpara(pd: tabstractprocdef; forceresdef: tdef): tcgpara;
  1747. begin
  1748. if pd.generate_safecall_wrapper then
  1749. begin
  1750. if assigned(forceresdef) then
  1751. internalerror(2019112401);
  1752. result:=paramanager.get_safecallresult_funcretloc(pd,callerside)
  1753. end
  1754. else if not assigned(forceresdef) then
  1755. begin
  1756. pd.init_paraloc_info(callerside);
  1757. result:=pd.funcretloc[callerside];
  1758. end
  1759. else
  1760. result:=paramanager.get_funcretloc(pd,callerside,forceresdef);
  1761. end;
  1762. (*
  1763. Subsetrefs are used for (bit)packed arrays and (bit)packed records stored
  1764. in memory. They are like a regular reference, but contain an extra bit
  1765. offset (either constant -startbit- or variable -bitindexreg-, always OS_INT)
  1766. and a bit length (always constant).
  1767. Bit packed values are stored differently in memory depending on whether we
  1768. are on a big or a little endian system (compatible with at least GPC). The
  1769. size of the basic working unit is always the smallest power-of-2 byte size
  1770. which can contain the bit value (so 1..8 bits -> 1 byte, 9..16 bits -> 2
  1771. bytes, 17..32 bits -> 4 bytes etc).
  1772. On a big endian, 5-bit: values are stored like this:
  1773. 11111222 22333334 44445555 56666677 77788888
  1774. The leftmost bit of each 5-bit value corresponds to the most significant
  1775. bit.
  1776. On little endian, it goes like this:
  1777. 22211111 43333322 55554444 77666665 88888777
  1778. In this case, per byte the left-most bit is more significant than those on
  1779. the right, but the bits in the next byte are all more significant than
  1780. those in the previous byte (e.g., the 222 in the first byte are the low
  1781. three bits of that value, while the 22 in the second byte are the upper
  1782. two bits.
  1783. Big endian, 9 bit values:
  1784. 11111111 12222222 22333333 33344444 ...
  1785. Little endian, 9 bit values:
  1786. 11111111 22222221 33333322 44444333 ...
  1787. This is memory representation and the 16 bit values are byteswapped.
  1788. Similarly as in the previous case, the 2222222 string contains the lower
  1789. bits of value 2 and the 22 string contains the upper bits. Once loaded into
  1790. registers (two 16 bit registers in the current implementation, although a
  1791. single 32 bit register would be possible too, in particular if 32 bit
  1792. alignment can be guaranteed), this becomes:
  1793. 22222221 11111111 44444333 33333322 ...
  1794. (l)ow u l l u l u
  1795. The startbit/bitindex in a subsetreference always refers to
  1796. a) on big endian: the most significant bit of the value
  1797. (bits counted from left to right, both memory an registers)
  1798. b) on little endian: the least significant bit when the value
  1799. is loaded in a register (bit counted from right to left)
  1800. Although a) results in more complex code for big endian systems, it's
  1801. needed for compatibility both with GPC and with e.g. bitpacked arrays in
  1802. Apple's universal interfaces which depend on these layout differences).
  1803. Note: when changing the loadsize calculated in get_subsetref_load_info,
  1804. make sure the appropriate alignment is guaranteed, at least in case of
  1805. {$defined cpurequiresproperalignment}.
  1806. *)
  1807. procedure thlcgobj.get_subsetref_load_info(const sref: tsubsetreference; out loadsize: torddef; out extra_load: boolean);
  1808. var
  1809. intloadsize: tcgint;
  1810. begin
  1811. intloadsize:=packedbitsloadsize(sref.bitlen);
  1812. if (intloadsize=0) then
  1813. internalerror(2006081310);
  1814. if (intloadsize>sizeof(aint)) then
  1815. intloadsize:=sizeof(aint);
  1816. loadsize:=cgsize_orddef(int_cgsize(intloadsize));
  1817. if (sref.bitlen>sizeof(aint)*8) then
  1818. internalerror(2006081312);
  1819. extra_load:=
  1820. (sref.bitlen<>1) and
  1821. ((sref.bitindexreg<>NR_NO) or
  1822. (byte(sref.startbit+sref.bitlen)>byte(intloadsize*8)));
  1823. end;
  1824. procedure thlcgobj.a_load_subsetref_regs_noindex(list: TAsmList; subsetsize: tdef; loadbitsize: byte; const sref: tsubsetreference; valuereg, extra_value_reg: tregister);
  1825. var
  1826. restbits: byte;
  1827. begin
  1828. if (target_info.endian=endian_big) then
  1829. begin
  1830. { valuereg contains the upper bits, extra_value_reg the lower }
  1831. restbits:=(sref.bitlen-(loadbitsize-sref.startbit));
  1832. if is_signed(subsetsize) then
  1833. begin
  1834. { sign extend }
  1835. a_op_const_reg(list,OP_SHL,osuinttype,AIntBits-loadbitsize+sref.startbit,valuereg);
  1836. a_op_const_reg(list,OP_SAR,osuinttype,AIntBits-sref.bitlen,valuereg);
  1837. end
  1838. else
  1839. begin
  1840. a_op_const_reg(list,OP_SHL,osuinttype,restbits,valuereg);
  1841. { mask other bits }
  1842. if (sref.bitlen<>AIntBits) then
  1843. a_op_const_reg(list,OP_AND,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),valuereg);
  1844. end;
  1845. a_op_const_reg(list,OP_SHR,osuinttype,loadbitsize-restbits,extra_value_reg)
  1846. end
  1847. else
  1848. begin
  1849. { valuereg contains the lower bits, extra_value_reg the upper }
  1850. a_op_const_reg(list,OP_SHR,osuinttype,sref.startbit,valuereg);
  1851. if is_signed(subsetsize) then
  1852. begin
  1853. a_op_const_reg(list,OP_SHL,osuinttype,AIntBits-sref.bitlen+loadbitsize-sref.startbit,extra_value_reg);
  1854. a_op_const_reg(list,OP_SAR,osuinttype,AIntBits-sref.bitlen,extra_value_reg);
  1855. end
  1856. else
  1857. begin
  1858. a_op_const_reg(list,OP_SHL,osuinttype,loadbitsize-sref.startbit,extra_value_reg);
  1859. { mask other bits }
  1860. if (sref.bitlen <> AIntBits) then
  1861. a_op_const_reg(list,OP_AND,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),extra_value_reg);
  1862. end;
  1863. end;
  1864. { merge }
  1865. a_op_reg_reg(list,OP_OR,osuinttype,extra_value_reg,valuereg);
  1866. end;
  1867. procedure thlcgobj.a_load_subsetref_regs_index(list: TAsmList; subsetsize: tdef; loadbitsize: byte; const sref: tsubsetreference; valuereg: tregister);
  1868. var
  1869. hl: tasmlabel;
  1870. tmpref: treference;
  1871. extra_value_reg,
  1872. tmpreg: tregister;
  1873. begin
  1874. tmpreg:=getintregister(list,osuinttype);
  1875. tmpref:=sref.ref;
  1876. inc(tmpref.offset,loadbitsize div 8);
  1877. extra_value_reg:=getintregister(list,osuinttype);
  1878. if (target_info.endian=endian_big) then
  1879. begin
  1880. { since this is a dynamic index, it's possible that the value }
  1881. { is entirely in valuereg. }
  1882. { get the data in valuereg in the right place }
  1883. a_op_reg_reg(list,OP_SHL,osuinttype,sref.bitindexreg,valuereg);
  1884. if is_signed(subsetsize) then
  1885. begin
  1886. a_op_const_reg(list,OP_SHL,osuinttype,AIntBits-loadbitsize,valuereg);
  1887. a_op_const_reg(list,OP_SAR,osuinttype,AIntBits-sref.bitlen,valuereg)
  1888. end
  1889. else
  1890. begin
  1891. a_op_const_reg(list,OP_SHR,osuinttype,loadbitsize-sref.bitlen,valuereg);
  1892. if (loadbitsize<>AIntBits) then
  1893. { mask left over bits }
  1894. a_op_const_reg(list,OP_AND,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),valuereg);
  1895. end;
  1896. tmpreg := getintregister(list,osuinttype);
  1897. { ensure we don't load anything past the end of the array }
  1898. current_asmdata.getjumplabel(hl);
  1899. a_cmp_const_reg_label(list,osuinttype,OC_BE,loadbitsize-sref.bitlen,sref.bitindexreg,hl);
  1900. { the bits in extra_value_reg (if any) start at the most significant bit => }
  1901. { extra_value_reg must be shr by (loadbitsize-sref.bitlen)+(loadsize-sref.bitindex) }
  1902. { => = -(sref.bitindex+(sref.bitlen-2*loadbitsize)) }
  1903. a_op_const_reg_reg(list,OP_ADD,osuinttype,sref.bitlen-2*loadbitsize,sref.bitindexreg,tmpreg);
  1904. a_op_reg_reg(list,OP_NEG,osuinttype,tmpreg,tmpreg);
  1905. { load next "loadbitsize" bits of the array }
  1906. a_load_ref_reg(list,cgsize_orddef(int_cgsize(loadbitsize div 8)),osuinttype,tmpref,extra_value_reg);
  1907. a_op_reg_reg(list,OP_SHR,osuinttype,tmpreg,extra_value_reg);
  1908. { if there are no bits in extra_value_reg, then sref.bitindex was }
  1909. { < loadsize-sref.bitlen, and therefore tmpreg will now be >= loadsize }
  1910. { => extra_value_reg is now 0 }
  1911. { merge }
  1912. a_op_reg_reg(list,OP_OR,osuinttype,extra_value_reg,valuereg);
  1913. { no need to mask, necessary masking happened earlier on }
  1914. a_label(list,hl);
  1915. end
  1916. else
  1917. begin
  1918. a_op_reg_reg(list,OP_SHR,osuinttype,sref.bitindexreg,valuereg);
  1919. { ensure we don't load anything past the end of the array }
  1920. current_asmdata.getjumplabel(hl);
  1921. a_cmp_const_reg_label(list,osuinttype,OC_BE,loadbitsize-sref.bitlen,sref.bitindexreg,hl);
  1922. { Y-x = -(Y-x) }
  1923. a_op_const_reg_reg(list,OP_SUB,osuinttype,loadbitsize,sref.bitindexreg,tmpreg);
  1924. a_op_reg_reg(list,OP_NEG,osuinttype,tmpreg,tmpreg);
  1925. { load next "loadbitsize" bits of the array }
  1926. a_load_ref_reg(list,cgsize_orddef(int_cgsize(loadbitsize div 8)),osuinttype,tmpref,extra_value_reg);
  1927. { tmpreg is in the range 1..<cpu_bitsize>-1 -> always ok }
  1928. a_op_reg_reg(list,OP_SHL,osuinttype,tmpreg,extra_value_reg);
  1929. { merge }
  1930. a_op_reg_reg(list,OP_OR,osuinttype,extra_value_reg,valuereg);
  1931. a_label(list,hl);
  1932. { sign extend or mask other bits }
  1933. if is_signed(subsetsize) then
  1934. begin
  1935. a_op_const_reg(list,OP_SHL,osuinttype,AIntBits-sref.bitlen,valuereg);
  1936. a_op_const_reg(list,OP_SAR,osuinttype,AIntBits-sref.bitlen,valuereg);
  1937. end
  1938. else
  1939. a_op_const_reg(list,OP_AND,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),valuereg);
  1940. end;
  1941. end;
  1942. procedure thlcgobj.a_load_regconst_subsetref_intern(list: TAsmList; fromsize, subsetsize: tdef; fromreg: tregister; const sref: tsubsetreference; slopt: tsubsetloadopt);
  1943. var
  1944. hl: tasmlabel;
  1945. tmpreg, tmpindexreg, valuereg, extra_value_reg, maskreg: tregister;
  1946. tosreg, fromsreg: tsubsetregister;
  1947. tmpref: treference;
  1948. bitmask: aword;
  1949. loadsize: torddef;
  1950. loadbitsize: byte;
  1951. extra_load: boolean;
  1952. begin
  1953. { the register must be able to contain the requested value }
  1954. if (fromsize.size*8<sref.bitlen) then
  1955. internalerror(2006081613);
  1956. get_subsetref_load_info(sref,loadsize,extra_load);
  1957. loadbitsize:=loadsize.size*8;
  1958. { load the (first part) of the bit sequence }
  1959. valuereg:=getintregister(list,osuinttype);
  1960. a_load_ref_reg(list,loadsize,osuinttype,sref.ref,valuereg);
  1961. { constant offset of bit sequence? }
  1962. if not extra_load then
  1963. begin
  1964. if (sref.bitindexreg=NR_NO) then
  1965. begin
  1966. { use subsetreg routine, it may have been overridden with an optimized version }
  1967. tosreg.subsetreg:=valuereg;
  1968. tosreg.subsetregsize:=def_cgsize(osuinttype);
  1969. { subsetregs always count bits from right to left }
  1970. if (target_info.endian=endian_big) then
  1971. tosreg.startbit:=loadbitsize-(sref.startbit+sref.bitlen)
  1972. else
  1973. tosreg.startbit:=sref.startbit;
  1974. tosreg.bitlen:=sref.bitlen;
  1975. a_load_regconst_subsetreg_intern(list,fromsize,subsetsize,fromreg,tosreg,slopt);
  1976. end
  1977. else
  1978. begin
  1979. if (sref.startbit<>0) then
  1980. internalerror(2006081710);
  1981. { should be handled by normal code and will give wrong result }
  1982. { on x86 for the '1 shl bitlen' below }
  1983. if (sref.bitlen=AIntBits) then
  1984. internalerror(2006081711);
  1985. { zero the bits we have to insert }
  1986. if (slopt<>SL_SETMAX) then
  1987. begin
  1988. maskreg:=getintregister(list,osuinttype);
  1989. if (target_info.endian = endian_big) then
  1990. begin
  1991. a_load_const_reg(list,osuinttype,tcgint((aword(1) shl sref.bitlen)-1) shl (loadbitsize-sref.bitlen),maskreg);
  1992. a_op_reg_reg(list,OP_SHR,osuinttype,sref.bitindexreg,maskreg);
  1993. end
  1994. else
  1995. begin
  1996. a_load_const_reg(list,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),maskreg);
  1997. a_op_reg_reg(list,OP_SHL,osuinttype,sref.bitindexreg,maskreg);
  1998. end;
  1999. a_op_reg_reg(list,OP_NOT,osuinttype,maskreg,maskreg);
  2000. a_op_reg_reg(list,OP_AND,osuinttype,maskreg,valuereg);
  2001. end;
  2002. { insert the value }
  2003. if (slopt<>SL_SETZERO) then
  2004. begin
  2005. tmpreg:=getintregister(list,osuinttype);
  2006. if (slopt<>SL_SETMAX) then
  2007. a_load_reg_reg(list,fromsize,osuinttype,fromreg,tmpreg)
  2008. else if (sref.bitlen<>AIntBits) then
  2009. a_load_const_reg(list,osuinttype,tcgint((aword(1) shl sref.bitlen)-1), tmpreg)
  2010. else
  2011. a_load_const_reg(list,osuinttype,-1,tmpreg);
  2012. if (target_info.endian=endian_big) then
  2013. begin
  2014. a_op_const_reg(list,OP_SHL,osuinttype,loadbitsize-sref.bitlen,tmpreg);
  2015. if not(slopt in [SL_REGNOSRCMASK,SL_SETMAX]) then
  2016. begin
  2017. if (loadbitsize<>AIntBits) then
  2018. bitmask:=(((aword(1) shl loadbitsize)-1) xor ((aword(1) shl (loadbitsize-sref.bitlen))-1))
  2019. else
  2020. bitmask:=(high(aword) xor ((aword(1) shl (loadbitsize-sref.bitlen))-1));
  2021. a_op_const_reg(list,OP_AND,osuinttype,bitmask,tmpreg);
  2022. end;
  2023. a_op_reg_reg(list,OP_SHR,osuinttype,sref.bitindexreg,tmpreg);
  2024. end
  2025. else
  2026. begin
  2027. if not(slopt in [SL_REGNOSRCMASK,SL_SETMAX]) then
  2028. a_op_const_reg(list,OP_AND,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),tmpreg);
  2029. a_op_reg_reg(list,OP_SHL,osuinttype,sref.bitindexreg,tmpreg);
  2030. end;
  2031. a_op_reg_reg(list,OP_OR,osuinttype,tmpreg,valuereg);
  2032. end;
  2033. end;
  2034. { store back to memory }
  2035. tmpreg:=getintregister(list,loadsize);
  2036. a_load_reg_reg(list,osuinttype,loadsize,valuereg,tmpreg);
  2037. a_load_reg_ref(list,loadsize,loadsize,tmpreg,sref.ref);
  2038. exit;
  2039. end
  2040. else
  2041. begin
  2042. { load next value }
  2043. extra_value_reg:=getintregister(list,osuinttype);
  2044. tmpref:=sref.ref;
  2045. inc(tmpref.offset,loadbitsize div 8);
  2046. { should maybe be taken out too, can be done more efficiently }
  2047. { on e.g. i386 with shld/shrd }
  2048. if (sref.bitindexreg = NR_NO) then
  2049. begin
  2050. a_load_ref_reg(list,loadsize,osuinttype,tmpref,extra_value_reg);
  2051. fromsreg.subsetreg:=fromreg;
  2052. fromsreg.subsetregsize:=def_cgsize(fromsize);
  2053. tosreg.subsetreg:=valuereg;
  2054. tosreg.subsetregsize:=def_cgsize(osuinttype);
  2055. { transfer first part }
  2056. fromsreg.bitlen:=loadbitsize-sref.startbit;
  2057. tosreg.bitlen:=fromsreg.bitlen;
  2058. if (target_info.endian=endian_big) then
  2059. begin
  2060. { valuereg must contain the upper bits of the value at bits [0..loadbitsize-startbit] }
  2061. { upper bits of the value ... }
  2062. fromsreg.startbit:=sref.bitlen-(loadbitsize-sref.startbit);
  2063. { ... to bit 0 }
  2064. tosreg.startbit:=0
  2065. end
  2066. else
  2067. begin
  2068. { valuereg must contain the lower bits of the value at bits [startbit..loadbitsize] }
  2069. { lower bits of the value ... }
  2070. fromsreg.startbit:=0;
  2071. { ... to startbit }
  2072. tosreg.startbit:=sref.startbit;
  2073. end;
  2074. case slopt of
  2075. SL_SETZERO,
  2076. SL_SETMAX:
  2077. a_load_regconst_subsetreg_intern(list,fromsize,subsetsize,fromreg,tosreg,slopt);
  2078. else
  2079. a_load_subsetreg_subsetreg(list,subsetsize,subsetsize,fromsreg,tosreg);
  2080. end;
  2081. {$ifndef cpuhighleveltarget}
  2082. valuereg:=cg.makeregsize(list,valuereg,def_cgsize(loadsize));
  2083. a_load_reg_ref(list,loadsize,loadsize,valuereg,sref.ref);
  2084. {$else}
  2085. tmpreg:=getintregister(list,loadsize);
  2086. a_load_reg_reg(list,osuinttype,loadsize,valuereg,tmpreg);
  2087. a_load_reg_ref(list,loadsize,loadsize,tmpreg,sref.ref);
  2088. {$endif}
  2089. { transfer second part }
  2090. if (target_info.endian = endian_big) then
  2091. begin
  2092. { extra_value_reg must contain the lower bits of the value at bits }
  2093. { [(loadbitsize-(bitlen-(loadbitsize-startbit)))..loadbitsize] }
  2094. { (loadbitsize-(bitlen-(loadbitsize-startbit))) = 2*loadbitsize }
  2095. { - bitlen - startbit }
  2096. fromsreg.startbit:=0;
  2097. tosreg.startbit:=2*loadbitsize-sref.bitlen-sref.startbit
  2098. end
  2099. else
  2100. begin
  2101. { extra_value_reg must contain the upper bits of the value at bits [0..bitlen-(loadbitsize-startbit)] }
  2102. fromsreg.startbit:=fromsreg.bitlen;
  2103. tosreg.startbit:=0;
  2104. end;
  2105. tosreg.subsetreg:=extra_value_reg;
  2106. fromsreg.bitlen:=sref.bitlen-fromsreg.bitlen;
  2107. tosreg.bitlen:=fromsreg.bitlen;
  2108. case slopt of
  2109. SL_SETZERO,
  2110. SL_SETMAX:
  2111. a_load_regconst_subsetreg_intern(list,fromsize,subsetsize,fromreg,tosreg,slopt);
  2112. else
  2113. a_load_subsetreg_subsetreg(list,subsetsize,subsetsize,fromsreg,tosreg);
  2114. end;
  2115. tmpreg:=getintregister(list,loadsize);
  2116. a_load_reg_reg(list,osuinttype,loadsize,extra_value_reg,tmpreg);
  2117. a_load_reg_ref(list,loadsize,loadsize,tmpreg,tmpref);
  2118. exit;
  2119. end
  2120. else
  2121. begin
  2122. if (sref.startbit <> 0) then
  2123. internalerror(2006081812);
  2124. { should be handled by normal code and will give wrong result }
  2125. { on x86 for the '1 shl bitlen' below }
  2126. if (sref.bitlen = AIntBits) then
  2127. internalerror(2006081713);
  2128. { generate mask to zero the bits we have to insert }
  2129. if (slopt <> SL_SETMAX) then
  2130. begin
  2131. maskreg := getintregister(list,osuinttype);
  2132. if (target_info.endian = endian_big) then
  2133. begin
  2134. a_load_const_reg(list,osuinttype,tcgint(((aword(1) shl sref.bitlen)-1) shl (loadbitsize-sref.bitlen)),maskreg);
  2135. a_op_reg_reg(list,OP_SHR,osuinttype,sref.bitindexreg,maskreg);
  2136. end
  2137. else
  2138. begin
  2139. a_load_const_reg(list,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),maskreg);
  2140. a_op_reg_reg(list,OP_SHL,osuinttype,sref.bitindexreg,maskreg);
  2141. end;
  2142. a_op_reg_reg(list,OP_NOT,osuinttype,maskreg,maskreg);
  2143. a_op_reg_reg(list,OP_AND,osuinttype,maskreg,valuereg);
  2144. end;
  2145. { insert the value }
  2146. if (slopt <> SL_SETZERO) then
  2147. begin
  2148. tmpreg := getintregister(list,osuinttype);
  2149. if (slopt <> SL_SETMAX) then
  2150. a_load_reg_reg(list,fromsize,osuinttype,fromreg,tmpreg)
  2151. else if (sref.bitlen <> AIntBits) then
  2152. a_load_const_reg(list,osuinttype,tcgint((aword(1) shl sref.bitlen) - 1), tmpreg)
  2153. else
  2154. a_load_const_reg(list,osuinttype,-1,tmpreg);
  2155. if (target_info.endian = endian_big) then
  2156. begin
  2157. a_op_const_reg(list,OP_SHL,osuinttype,loadbitsize-sref.bitlen,tmpreg);
  2158. if not(slopt in [SL_REGNOSRCMASK,SL_SETMAX]) then
  2159. { mask left over bits }
  2160. a_op_const_reg(list,OP_AND,osuinttype,tcgint(((aword(1) shl sref.bitlen)-1) shl (loadbitsize-sref.bitlen)),tmpreg);
  2161. a_op_reg_reg(list,OP_SHR,osuinttype,sref.bitindexreg,tmpreg);
  2162. end
  2163. else
  2164. begin
  2165. if not(slopt in [SL_REGNOSRCMASK,SL_SETMAX]) then
  2166. { mask left over bits }
  2167. a_op_const_reg(list,OP_AND,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),tmpreg);
  2168. a_op_reg_reg(list,OP_SHL,osuinttype,sref.bitindexreg,tmpreg);
  2169. end;
  2170. a_op_reg_reg(list,OP_OR,osuinttype,tmpreg,valuereg);
  2171. end;
  2172. tmpreg:=getintregister(list,loadsize);
  2173. a_load_reg_reg(list,osuinttype,loadsize,valuereg,tmpreg);
  2174. a_load_reg_ref(list,loadsize,loadsize,tmpreg,sref.ref);
  2175. { make sure we do not read/write past the end of the array }
  2176. current_asmdata.getjumplabel(hl);
  2177. a_cmp_const_reg_label(list,osuinttype,OC_BE,loadbitsize-sref.bitlen,sref.bitindexreg,hl);
  2178. a_load_ref_reg(list,loadsize,osuinttype,tmpref,extra_value_reg);
  2179. tmpindexreg:=getintregister(list,osuinttype);
  2180. { load current array value }
  2181. if (slopt<>SL_SETZERO) then
  2182. begin
  2183. tmpreg:=getintregister(list,osuinttype);
  2184. if (slopt<>SL_SETMAX) then
  2185. a_load_reg_reg(list,fromsize,osuinttype,fromreg,tmpreg)
  2186. else if (sref.bitlen<>AIntBits) then
  2187. a_load_const_reg(list,osuinttype,tcgint((aword(1) shl sref.bitlen) - 1), tmpreg)
  2188. else
  2189. a_load_const_reg(list,osuinttype,-1,tmpreg);
  2190. end;
  2191. { generate mask to zero the bits we have to insert }
  2192. if (slopt<>SL_SETMAX) then
  2193. begin
  2194. maskreg:=getintregister(list,osuinttype);
  2195. if (target_info.endian=endian_big) then
  2196. begin
  2197. a_op_const_reg_reg(list,OP_ADD,osuinttype,sref.bitlen-2*loadbitsize,sref.bitindexreg,tmpindexreg);
  2198. a_op_reg_reg(list,OP_NEG,osuinttype,tmpindexreg,tmpindexreg);
  2199. a_load_const_reg(list,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),maskreg);
  2200. a_op_reg_reg(list,OP_SHL,osuinttype,tmpindexreg,maskreg);
  2201. end
  2202. else
  2203. begin
  2204. { Y-x = -(x-Y) }
  2205. a_op_const_reg_reg(list,OP_SUB,osuinttype,loadbitsize,sref.bitindexreg,tmpindexreg);
  2206. a_op_reg_reg(list,OP_NEG,osuinttype,tmpindexreg,tmpindexreg);
  2207. a_load_const_reg(list,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),maskreg);
  2208. a_op_reg_reg(list,OP_SHR,osuinttype,tmpindexreg,maskreg);
  2209. end;
  2210. a_op_reg_reg(list,OP_NOT,osuinttype,maskreg,maskreg);
  2211. a_op_reg_reg(list,OP_AND,osuinttype,maskreg,extra_value_reg);
  2212. end;
  2213. if (slopt<>SL_SETZERO) then
  2214. begin
  2215. if (target_info.endian=endian_big) then
  2216. a_op_reg_reg(list,OP_SHL,osuinttype,tmpindexreg,tmpreg)
  2217. else
  2218. begin
  2219. if not(slopt in [SL_REGNOSRCMASK,SL_SETMAX]) then
  2220. a_op_const_reg(list,OP_AND,osuinttype,tcgint((aword(1) shl sref.bitlen)-1),tmpreg);
  2221. a_op_reg_reg(list,OP_SHR,osuinttype,tmpindexreg,tmpreg);
  2222. end;
  2223. a_op_reg_reg(list,OP_OR,osuinttype,tmpreg,extra_value_reg);
  2224. end;
  2225. {$ifndef cpuhighleveltarget}
  2226. extra_value_reg:=cg.makeregsize(list,extra_value_reg,def_cgsize(loadsize));
  2227. a_load_reg_ref(list,loadsize,loadsize,extra_value_reg,tmpref);
  2228. {$else}
  2229. tmpreg:=getintregister(list,loadsize);
  2230. a_load_reg_reg(list,osuinttype,loadsize,extra_value_reg,tmpreg);
  2231. a_load_reg_ref(list,loadsize,loadsize,tmpreg,tmpref);
  2232. {$endif}
  2233. a_label(list,hl);
  2234. end;
  2235. end;
  2236. end;
  2237. procedure thlcgobj.a_load_regconst_subsetreg_intern(list: TAsmList; fromsize, subsetsize: tdef; fromreg: tregister; const sreg: tsubsetregister; slopt: tsubsetloadopt);
  2238. var
  2239. bitmask: aword;
  2240. tmpreg: tregister;
  2241. subsetregdef: torddef;
  2242. stopbit: byte;
  2243. begin
  2244. tmpreg:=NR_NO;
  2245. subsetregdef:=cgsize_orddef(sreg.subsetregsize);
  2246. stopbit:=sreg.startbit+sreg.bitlen;
  2247. // on x86(64), 1 shl 32(64) = 1 instead of 0
  2248. if (stopbit<>AIntBits) then
  2249. bitmask:=not(((aword(1) shl stopbit)-1) xor ((aword(1) shl sreg.startbit)-1))
  2250. else
  2251. bitmask:=not(high(aword) xor ((aword(1) shl sreg.startbit)-1));
  2252. if not(slopt in [SL_SETZERO,SL_SETMAX]) then
  2253. begin
  2254. tmpreg:=getintregister(list,subsetregdef);
  2255. a_load_reg_reg(list,fromsize,subsetregdef,fromreg,tmpreg);
  2256. a_op_const_reg(list,OP_SHL,subsetregdef,sreg.startbit,tmpreg);
  2257. if (slopt<>SL_REGNOSRCMASK) then
  2258. a_op_const_reg(list,OP_AND,subsetregdef,tcgint(not(bitmask)),tmpreg);
  2259. end;
  2260. if (slopt<>SL_SETMAX) and
  2261. { the "and" is not needed if the whole register is modified (except for SL_SETZERO),
  2262. because later on we do a move in this case instead of an or }
  2263. ((sreg.bitlen<>AIntBits) or (slopt=SL_SETZERO)) then
  2264. begin
  2265. { shl could wrap around in this case }
  2266. if subsetregdef.size=sizeof(aword) then
  2267. a_op_const_reg(list,OP_AND,subsetregdef,tcgint(bitmask),sreg.subsetreg)
  2268. else
  2269. a_op_const_reg(list,OP_AND,subsetregdef,tcgint(bitmask) and aword((aword(1) shl (subsetregdef.size*8))-1),sreg.subsetreg);
  2270. end;
  2271. case slopt of
  2272. SL_SETZERO : ;
  2273. SL_SETMAX :
  2274. if (sreg.bitlen<>AIntBits) then
  2275. a_op_const_reg(list,OP_OR,subsetregdef,
  2276. tcgint(((aword(1) shl sreg.bitlen)-1) shl sreg.startbit),
  2277. sreg.subsetreg)
  2278. else
  2279. a_load_const_reg(list,subsetregdef,-1,sreg.subsetreg);
  2280. { if the whole register is modified, no "or" is needed }
  2281. else if sreg.bitlen=AIntBits then
  2282. a_load_reg_reg(list,subsetregdef,subsetregdef,tmpreg,sreg.subsetreg)
  2283. else
  2284. a_op_reg_reg(list,OP_OR,subsetregdef,tmpreg,sreg.subsetreg)
  2285. end;
  2286. end;
  2287. {$pop}
  2288. function thlcgobj.get_bit_const_ref_sref(bitnumber: tcgint; refdef: tdef; const ref: treference): tsubsetreference;
  2289. begin
  2290. result.ref:=ref;
  2291. inc(result.ref.offset,bitnumber div 8);
  2292. result.ref.alignment:=newalignment(result.ref.alignment,bitnumber div 8);
  2293. result.bitindexreg:=NR_NO;
  2294. result.startbit:=bitnumber mod 8;
  2295. result.bitlen:=1;
  2296. end;
  2297. function thlcgobj.get_bit_const_reg_sreg(setregsize: tdef; bitnumber: tcgint; setreg: tregister): tsubsetregister;
  2298. begin
  2299. result.subsetreg:=setreg;
  2300. result.subsetregsize:=def_cgsize(setregsize);
  2301. { subsetregs always count from the least significant to the most significant bit }
  2302. if (target_info.endian=endian_big) then
  2303. result.startbit:=(setregsize.size*8)-bitnumber-1
  2304. else
  2305. result.startbit:=bitnumber;
  2306. result.bitlen:=1;
  2307. end;
  2308. function thlcgobj.get_bit_reg_ref_sref(list: TAsmList; bitnumbersize, refsize: tdef; bitnumber: tregister; const ref: treference): tsubsetreference;
  2309. var
  2310. refptrdef: tdef;
  2311. tmpreg,
  2312. newbase: tregister;
  2313. begin
  2314. result.ref:=ref;
  2315. result.startbit:=0;
  2316. result.bitlen:=1;
  2317. tmpreg:=getintregister(list,ptruinttype);
  2318. a_load_reg_reg(list,bitnumbersize,ptruinttype,bitnumber,tmpreg);
  2319. a_op_const_reg(list,OP_SHR,ptruinttype,3,tmpreg);
  2320. { don't assign to ref.base, that one is for pointers and this is an index
  2321. (important for platforms like LLVM) }
  2322. if result.ref.index<>NR_NO then
  2323. begin
  2324. { don't just add to ref.index, as it may be scaled }
  2325. refptrdef:=cpointerdef.getreusable(refsize);
  2326. newbase:=getaddressregister(list,refptrdef);
  2327. a_loadaddr_ref_reg(list,refsize,refptrdef,ref,newbase);
  2328. reference_reset_base(result.ref,refptrdef,newbase,0,result.ref.temppos,result.ref.alignment,[]);
  2329. end;
  2330. result.ref.index:=tmpreg;
  2331. tmpreg:=getintregister(list,ptruinttype);
  2332. a_load_reg_reg(list,bitnumbersize,ptruinttype,bitnumber,tmpreg);
  2333. a_op_const_reg(list,OP_AND,ptruinttype,7,tmpreg);
  2334. result.bitindexreg:=tmpreg;
  2335. end;
  2336. procedure thlcgobj.a_loadfpu_ref_ref(list: TAsmList; fromsize, tosize: tdef; const ref1, ref2: treference);
  2337. var
  2338. reg: tregister;
  2339. regsize: tdef;
  2340. begin
  2341. if (fromsize.size>=tosize.size) then
  2342. regsize:=fromsize
  2343. else
  2344. regsize:=tosize;
  2345. reg:=getfpuregister(list,regsize);
  2346. a_loadfpu_ref_reg(list,fromsize,regsize,ref1,reg);
  2347. a_loadfpu_reg_ref(list,regsize,tosize,reg,ref2);
  2348. end;
  2349. procedure thlcgobj.a_loadfpu_loc_reg(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; const reg: tregister);
  2350. begin
  2351. case loc.loc of
  2352. LOC_REFERENCE, LOC_CREFERENCE:
  2353. a_loadfpu_ref_reg(list,fromsize,tosize,loc.reference,reg);
  2354. LOC_FPUREGISTER, LOC_CFPUREGISTER:
  2355. a_loadfpu_reg_reg(list,fromsize,tosize,loc.register,reg);
  2356. else
  2357. internalerror(2010120412);
  2358. end;
  2359. end;
  2360. procedure thlcgobj.a_loadfpu_loc_ref(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; const ref: treference);
  2361. var
  2362. reg: tregister;
  2363. begin
  2364. case loc.loc of
  2365. LOC_REFERENCE, LOC_CREFERENCE:
  2366. begin
  2367. reg:=getfpuregister(list,tosize);
  2368. a_loadfpu_ref_reg(list,fromsize,tosize,loc.reference,reg);
  2369. a_loadfpu_reg_ref(list,tosize,tosize,reg,ref);
  2370. end;
  2371. LOC_FPUREGISTER, LOC_CFPUREGISTER:
  2372. begin
  2373. a_loadfpu_reg_ref(list,fromsize,tosize,loc.register,ref);
  2374. end;
  2375. else
  2376. internalerror(2014080802);
  2377. end;
  2378. end;
  2379. procedure thlcgobj.a_loadfpu_reg_loc(list: TAsmList; fromsize, tosize: tdef; const reg: tregister; const loc: tlocation);
  2380. begin
  2381. case loc.loc of
  2382. LOC_REFERENCE, LOC_CREFERENCE:
  2383. a_loadfpu_reg_ref(list,fromsize,tosize,reg,loc.reference);
  2384. LOC_FPUREGISTER, LOC_CFPUREGISTER:
  2385. a_loadfpu_reg_reg(list,fromsize,tosize,reg,loc.register);
  2386. else
  2387. internalerror(2010120413);
  2388. end;
  2389. end;
  2390. procedure thlcgobj.a_loadfpu_reg_cgpara(list: TAsmList; fromsize: tdef; const r: tregister; const cgpara: TCGPara);
  2391. var
  2392. ref : treference;
  2393. begin
  2394. paramanager.alloccgpara(list,cgpara);
  2395. case cgpara.location^.loc of
  2396. LOC_FPUREGISTER,LOC_CFPUREGISTER:
  2397. begin
  2398. cgpara.check_simple_location;
  2399. a_loadfpu_reg_reg(list,fromsize,cgpara.def,r,cgpara.location^.register);
  2400. end;
  2401. LOC_REFERENCE,LOC_CREFERENCE:
  2402. begin
  2403. cgpara.check_simple_location;
  2404. reference_reset_base(ref,voidstackpointertype,cgpara.location^.reference.index,cgpara.location^.reference.offset,ctempposinvalid,cgpara.alignment,[]);
  2405. a_loadfpu_reg_ref(list,fromsize,cgpara.def,r,ref);
  2406. end;
  2407. LOC_REGISTER,LOC_CREGISTER:
  2408. begin
  2409. { paramfpu_ref does the check_simpe_location check here if necessary }
  2410. tg.gethltemp(list,fromsize,fromsize.size,tt_normal,ref);
  2411. a_loadfpu_reg_ref(list,fromsize,fromsize,r,ref);
  2412. a_loadfpu_ref_cgpara(list,fromsize,ref,cgpara);
  2413. tg.Ungettemp(list,ref);
  2414. end;
  2415. else
  2416. internalerror(2010120422);
  2417. end;
  2418. end;
  2419. procedure thlcgobj.a_loadfpu_ref_cgpara(list: TAsmList; fromsize: tdef; const ref: treference; const cgpara: TCGPara);
  2420. var
  2421. hreg : tregister;
  2422. href : treference;
  2423. intptrdef: tdef;
  2424. begin
  2425. case cgpara.location^.loc of
  2426. LOC_FPUREGISTER,LOC_CFPUREGISTER:
  2427. begin
  2428. cgpara.check_simple_location;
  2429. paramanager.alloccgpara(list,cgpara);
  2430. a_loadfpu_ref_reg(list,fromsize,cgpara.location^.def,ref,cgpara.location^.register);
  2431. end;
  2432. LOC_REFERENCE,LOC_CREFERENCE:
  2433. begin
  2434. cgpara.check_simple_location;
  2435. reference_reset_base(href,voidstackpointertype,cgpara.location^.reference.index,cgpara.location^.reference.offset,ctempposinvalid,cgpara.alignment,[]);
  2436. { concatcopy should choose the best way to copy the data }
  2437. g_concatcopy(list,fromsize,ref,href);
  2438. end;
  2439. LOC_REGISTER,LOC_CREGISTER:
  2440. begin
  2441. cgpara.check_simple_location;
  2442. if fromsize.size<>cgpara.location^.def.size then
  2443. internalerror(2014080603);
  2444. { convert the reference from a floating point location to an
  2445. integer location, and load that }
  2446. intptrdef:=cpointerdef.getreusable(cgpara.location^.def);
  2447. hreg:=getaddressregister(list,intptrdef);
  2448. a_loadaddr_ref_reg(list,fromsize,intptrdef,ref,hreg);
  2449. reference_reset_base(href,intptrdef,hreg,0,ref.temppos,ref.alignment,[]);
  2450. a_load_ref_cgpara(list,cgpara.location^.def,ref,cgpara);
  2451. end
  2452. else
  2453. internalerror(2010120423);
  2454. end;
  2455. end;
  2456. procedure thlcgobj.a_loadmm_ref_ref(list: TAsmList; fromsize, tosize: tdef; const fromref, toref: treference; shuffle: pmmshuffle);
  2457. var
  2458. reg: tregister;
  2459. begin
  2460. reg:=getmmregister(list,tosize);
  2461. a_loadmm_ref_reg(list,fromsize,tosize,fromref,reg,shuffle);
  2462. a_loadmm_reg_ref(list,tosize,tosize,reg,toref,shuffle);
  2463. end;
  2464. procedure thlcgobj.a_loadmm_loc_reg(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; const reg: tregister; shuffle: pmmshuffle);
  2465. var
  2466. tmpreg: tregister;
  2467. begin
  2468. case loc.loc of
  2469. LOC_MMREGISTER,LOC_CMMREGISTER:
  2470. a_loadmm_reg_reg(list,fromsize,tosize,loc.register,reg,shuffle);
  2471. LOC_REFERENCE,LOC_CREFERENCE:
  2472. a_loadmm_ref_reg(list,fromsize,tosize,loc.reference,reg,shuffle);
  2473. LOC_REGISTER,LOC_CREGISTER:
  2474. a_loadmm_intreg_reg(list,fromsize,tosize,loc.register,reg,shuffle);
  2475. LOC_SUBSETREG,LOC_CSUBSETREG,
  2476. LOC_SUBSETREF,LOC_CSUBSETREF:
  2477. begin
  2478. tmpreg:=getintregister(list,fromsize);
  2479. a_load_loc_reg(list,fromsize,fromsize,loc,tmpreg);
  2480. a_loadmm_intreg_reg(list,fromsize,tosize,tmpreg,reg,shuffle);
  2481. end
  2482. else
  2483. internalerror(2010120414);
  2484. end;
  2485. end;
  2486. procedure thlcgobj.a_loadmm_reg_loc(list: TAsmList; fromsize, tosize: tdef; const reg: tregister; const loc: tlocation; shuffle: pmmshuffle);
  2487. begin
  2488. case loc.loc of
  2489. LOC_MMREGISTER,LOC_CMMREGISTER:
  2490. a_loadmm_reg_reg(list,fromsize,tosize,reg,loc.register,shuffle);
  2491. LOC_REFERENCE,LOC_CREFERENCE:
  2492. a_loadmm_reg_ref(list,fromsize,tosize,reg,loc.reference,shuffle);
  2493. else
  2494. internalerror(2010120415);
  2495. end;
  2496. end;
  2497. procedure thlcgobj.a_loadmm_loc_ref(list: TAsmList; fromsize, tosize: tdef; const loc: tlocation; const ref: treference; shuffle: pmmshuffle);
  2498. var
  2499. intreg, reg: tregister;
  2500. begin
  2501. case loc.loc of
  2502. LOC_MMREGISTER,LOC_CMMREGISTER:
  2503. a_loadmm_reg_ref(list,fromsize,tosize,loc.register,ref,shuffle);
  2504. LOC_REFERENCE,LOC_CREFERENCE:
  2505. begin
  2506. reg:=getmmregister(list,tosize);
  2507. a_loadmm_ref_reg(list,fromsize,tosize,loc.reference,reg,shuffle);
  2508. a_loadmm_reg_ref(list,tosize,tosize,reg,ref,shuffle);
  2509. end;
  2510. LOC_REGISTER,LOC_CREGISTER:
  2511. begin
  2512. reg:=getmmregister(list,tosize);
  2513. a_loadmm_intreg_reg(list,fromsize,tosize,loc.register,reg,shuffle);
  2514. a_loadmm_reg_ref(list,tosize,tosize,reg,ref,shuffle);
  2515. end;
  2516. LOC_SUBSETREG,LOC_CSUBSETREG,
  2517. LOC_SUBSETREF,LOC_CSUBSETREF:
  2518. begin
  2519. intreg:=getintregister(list,fromsize);
  2520. reg:=getmmregister(list,tosize);
  2521. a_load_loc_reg(list,fromsize,fromsize,loc,intreg);
  2522. a_loadmm_intreg_reg(list,fromsize,tosize,intreg,reg,shuffle);
  2523. a_loadmm_reg_ref(list,tosize,tosize,reg,ref,shuffle);
  2524. end
  2525. else
  2526. internalerror(2014080803);
  2527. end;
  2528. end;
  2529. procedure thlcgobj.a_loadmm_reg_cgpara(list: TAsmList; fromsize: tdef; reg: tregister; const cgpara: TCGPara; shuffle: pmmshuffle);
  2530. var
  2531. href : treference;
  2532. begin
  2533. cgpara.check_simple_location;
  2534. paramanager.alloccgpara(list,cgpara);
  2535. case cgpara.location^.loc of
  2536. LOC_MMREGISTER,LOC_CMMREGISTER:
  2537. a_loadmm_reg_reg(list,fromsize,cgpara.def,reg,cgpara.location^.register,shuffle);
  2538. LOC_REFERENCE,LOC_CREFERENCE:
  2539. begin
  2540. reference_reset_base(href,voidstackpointertype,cgpara.location^.reference.index,cgpara.location^.reference.offset,ctempposinvalid,cgpara.alignment,[]);
  2541. a_loadmm_reg_ref(list,fromsize,cgpara.def,reg,href,shuffle);
  2542. end;
  2543. LOC_REGISTER,LOC_CREGISTER:
  2544. begin
  2545. if assigned(shuffle) and
  2546. not shufflescalar(shuffle) then
  2547. internalerror(2012071205);
  2548. a_loadmm_reg_intreg(list,fromsize,cgpara.def,reg,cgpara.location^.register,mms_movescalar);
  2549. end
  2550. else
  2551. internalerror(2012071204);
  2552. end;
  2553. end;
  2554. procedure thlcgobj.a_loadmm_ref_cgpara(list: TAsmList; fromsize: tdef; const ref: treference; const cgpara: TCGPara; shuffle: pmmshuffle);
  2555. var
  2556. hr : tregister;
  2557. hs : tmmshuffle;
  2558. begin
  2559. cgpara.check_simple_location;
  2560. hr:=getmmregister(list,cgpara.def);
  2561. a_loadmm_ref_reg(list,fromsize,cgpara.def,ref,hr,shuffle);
  2562. if realshuffle(shuffle) then
  2563. begin
  2564. hs:=shuffle^;
  2565. removeshuffles(hs);
  2566. a_loadmm_reg_cgpara(list,cgpara.def,hr,cgpara,@hs);
  2567. end
  2568. else
  2569. a_loadmm_reg_cgpara(list,cgpara.def,hr,cgpara,shuffle);
  2570. end;
  2571. procedure thlcgobj.a_loadmm_loc_cgpara(list: TAsmList; fromsize: tdef; const loc: tlocation; const cgpara: TCGPara; shuffle: pmmshuffle);
  2572. begin
  2573. {$ifdef extdebug}
  2574. if def_cgsize(fromsize)<>loc.size then
  2575. internalerror(2012071203);
  2576. {$endif}
  2577. case loc.loc of
  2578. LOC_MMREGISTER,LOC_CMMREGISTER:
  2579. a_loadmm_reg_cgpara(list,fromsize,loc.register,cgpara,shuffle);
  2580. LOC_REFERENCE,LOC_CREFERENCE:
  2581. a_loadmm_ref_cgpara(list,fromsize,loc.reference,cgpara,shuffle);
  2582. else
  2583. internalerror(2012071202);
  2584. end;
  2585. end;
  2586. procedure thlcgobj.a_opmm_ref_reg(list: TAsmList; Op: TOpCG; size: tdef; const ref: treference; reg: tregister; shuffle: pmmshuffle);
  2587. var
  2588. hr : tregister;
  2589. hs : tmmshuffle;
  2590. begin
  2591. hr:=getmmregister(list,size);
  2592. a_loadmm_ref_reg(list,size,size,ref,hr,shuffle);
  2593. if realshuffle(shuffle) then
  2594. begin
  2595. hs:=shuffle^;
  2596. removeshuffles(hs);
  2597. a_opmm_reg_reg(list,op,size,hr,reg,@hs);
  2598. end
  2599. else
  2600. a_opmm_reg_reg(list,op,size,hr,reg,shuffle);
  2601. end;
  2602. procedure thlcgobj.a_opmm_loc_reg(list: TAsmList; Op: TOpCG; size: tdef; const loc: tlocation; reg: tregister; shuffle: pmmshuffle);
  2603. begin
  2604. case loc.loc of
  2605. LOC_CMMREGISTER,LOC_MMREGISTER:
  2606. a_opmm_reg_reg(list,op,size,loc.register,reg,shuffle);
  2607. LOC_CREFERENCE,LOC_REFERENCE:
  2608. a_opmm_ref_reg(list,op,size,loc.reference,reg,shuffle);
  2609. else
  2610. internalerror(2012071201);
  2611. end;
  2612. end;
  2613. procedure thlcgobj.a_opmm_reg_ref(list: TAsmList; Op: TOpCG; size: tdef; reg: tregister; const ref: treference; shuffle: pmmshuffle);
  2614. var
  2615. hr : tregister;
  2616. hs : tmmshuffle;
  2617. begin
  2618. hr:=getmmregister(list,size);
  2619. a_loadmm_ref_reg(list,size,size,ref,hr,shuffle);
  2620. if realshuffle(shuffle) then
  2621. begin
  2622. hs:=shuffle^;
  2623. removeshuffles(hs);
  2624. a_opmm_reg_reg(list,op,size,reg,hr,@hs);
  2625. a_loadmm_reg_ref(list,size,size,hr,ref,@hs);
  2626. end
  2627. else
  2628. begin
  2629. a_opmm_reg_reg(list,op,size,reg,hr,shuffle);
  2630. a_loadmm_reg_ref(list,size,size,hr,ref,shuffle);
  2631. end;
  2632. end;
  2633. (*
  2634. procedure thlcgobj.a_loadmm_intreg_reg(list: TAsmList; fromsize, tosize: tdef; intreg, mmreg: tregister; shuffle: pmmshuffle);
  2635. begin
  2636. cg.a_loadmm_intreg_reg(list,def_cgsize(fromsize),def_cgsize(tosize),intreg,mmreg,shuffle);
  2637. end;
  2638. procedure thlcgobj.a_loadmm_reg_intreg(list: TAsmList; fromsize, tosize: tdef; mmreg, intreg: tregister; shuffle: pmmshuffle);
  2639. begin
  2640. cg.a_loadmm_reg_intreg(list,def_cgsize(fromsize),def_cgsize(tosize),mmreg,intreg,shuffle);
  2641. end;
  2642. *)
  2643. procedure thlcgobj.a_op_const_ref(list: TAsmList; Op: TOpCG; size: tdef; a: tcgint; const ref: TReference);
  2644. var
  2645. tmpreg : tregister;
  2646. begin
  2647. tmpreg:=getintregister(list,size);
  2648. a_load_ref_reg(list,size,size,ref,tmpreg);
  2649. a_op_const_reg(list,op,size,a,tmpreg);
  2650. a_load_reg_ref(list,size,size,tmpreg,ref);
  2651. end;
  2652. procedure thlcgobj.a_op_const_subsetreg(list: TAsmList; Op: TOpCG; size, subsetsize: tdef; a: tcgint; const sreg: tsubsetregister);
  2653. var
  2654. tmpreg: tregister;
  2655. begin
  2656. tmpreg:=getintregister(list,size);
  2657. a_load_subsetreg_reg(list,subsetsize,size,sreg,tmpreg);
  2658. a_op_const_reg(list,op,size,a,tmpreg);
  2659. a_load_reg_subsetreg(list,size,subsetsize,tmpreg,sreg);
  2660. end;
  2661. procedure thlcgobj.a_op_const_subsetref(list: TAsmList; Op: TOpCG; size, subsetsize: tdef; a: tcgint; const sref: tsubsetreference);
  2662. var
  2663. tmpreg: tregister;
  2664. begin
  2665. tmpreg:=getintregister(list,size);
  2666. a_load_subsetref_reg(list,subsetsize,size,sref,tmpreg);
  2667. a_op_const_reg(list,op,size,a,tmpreg);
  2668. a_load_reg_subsetref(list,size,subsetsize,tmpreg,sref);
  2669. end;
  2670. procedure thlcgobj.a_op_const_loc(list: TAsmList; Op: TOpCG; size: tdef; a: tcgint; const loc: tlocation);
  2671. begin
  2672. case loc.loc of
  2673. LOC_REGISTER, LOC_CREGISTER:
  2674. a_op_const_reg(list,op,size,a,loc.register);
  2675. LOC_REFERENCE, LOC_CREFERENCE:
  2676. a_op_const_ref(list,op,size,a,loc.reference);
  2677. LOC_SUBSETREG, LOC_CSUBSETREG:
  2678. a_op_const_subsetreg(list,op,size,size,a,loc.sreg);
  2679. LOC_SUBSETREF, LOC_CSUBSETREF:
  2680. a_op_const_subsetref(list,op,size,size,a,loc.sref);
  2681. else
  2682. internalerror(2010120428);
  2683. end;
  2684. end;
  2685. procedure thlcgobj.a_op_reg_ref(list: TAsmList; Op: TOpCG; size: tdef; reg: TRegister; const ref: TReference);
  2686. var
  2687. tmpreg: tregister;
  2688. begin
  2689. tmpreg:=getintregister(list,size);
  2690. a_load_ref_reg(list,size,size,ref,tmpreg);
  2691. case op of
  2692. OP_NOT,OP_NEG:
  2693. begin
  2694. a_op_reg_reg(list,op,size,tmpreg,tmpreg);
  2695. end;
  2696. else
  2697. begin
  2698. a_op_reg_reg(list,op,size,reg,tmpreg);
  2699. end;
  2700. end;
  2701. a_load_reg_ref(list,size,size,tmpreg,ref);
  2702. end;
  2703. procedure thlcgobj.a_op_ref_reg(list: TAsmList; Op: TOpCG; size: tdef; const ref: TReference; reg: TRegister);
  2704. var
  2705. tmpreg: tregister;
  2706. begin
  2707. case op of
  2708. OP_NOT,OP_NEG:
  2709. { handle it as "load ref,reg; op reg" }
  2710. begin
  2711. a_load_ref_reg(list,size,size,ref,reg);
  2712. a_op_reg_reg(list,op,size,reg,reg);
  2713. end;
  2714. else
  2715. begin
  2716. tmpreg:=getintregister(list,size);
  2717. a_load_ref_reg(list,size,size,ref,tmpreg);
  2718. a_op_reg_reg(list,op,size,tmpreg,reg);
  2719. end;
  2720. end;
  2721. end;
  2722. procedure thlcgobj.a_op_reg_subsetreg(list: TAsmList; Op: TOpCG; opsize, destsubsetsize: tdef; reg: TRegister; const sreg: tsubsetregister);
  2723. var
  2724. tmpreg: tregister;
  2725. begin
  2726. tmpreg:=getintregister(list,opsize);
  2727. a_load_subsetreg_reg(list,destsubsetsize,opsize,sreg,tmpreg);
  2728. a_op_reg_reg(list,op,opsize,reg,tmpreg);
  2729. a_load_reg_subsetreg(list,opsize,destsubsetsize,tmpreg,sreg);
  2730. end;
  2731. procedure thlcgobj.a_op_reg_subsetref(list: TAsmList; Op: TOpCG; opsize, destsubsetsize: tdef; reg: TRegister; const sref: tsubsetreference);
  2732. var
  2733. tmpreg: tregister;
  2734. begin
  2735. tmpreg:=getintregister(list,opsize);
  2736. a_load_subsetref_reg(list,destsubsetsize,opsize,sref,tmpreg);
  2737. a_op_reg_reg(list,op,opsize,reg,tmpreg);
  2738. a_load_reg_subsetref(list,opsize,destsubsetsize,tmpreg,sref);
  2739. end;
  2740. procedure thlcgobj.a_op_reg_loc(list: TAsmList; Op: TOpCG; size: tdef; reg: tregister; const loc: tlocation);
  2741. begin
  2742. case loc.loc of
  2743. LOC_REGISTER, LOC_CREGISTER:
  2744. a_op_reg_reg(list,op,size,reg,loc.register);
  2745. LOC_REFERENCE, LOC_CREFERENCE:
  2746. a_op_reg_ref(list,op,size,reg,loc.reference);
  2747. LOC_SUBSETREG, LOC_CSUBSETREG:
  2748. a_op_reg_subsetreg(list,op,size,size,reg,loc.sreg);
  2749. LOC_SUBSETREF, LOC_CSUBSETREF:
  2750. a_op_reg_subsetref(list,op,size,size,reg,loc.sref);
  2751. else
  2752. internalerror(2010120429);
  2753. end;
  2754. end;
  2755. procedure thlcgobj.a_op_ref_loc(list: TAsmList; Op: TOpCG; size: tdef; const ref: TReference; const loc: tlocation);
  2756. var
  2757. tmpreg: tregister;
  2758. begin
  2759. case loc.loc of
  2760. LOC_REGISTER,LOC_CREGISTER:
  2761. a_op_ref_reg(list,op,size,ref,loc.register);
  2762. LOC_REFERENCE,LOC_CREFERENCE:
  2763. begin
  2764. tmpreg:=getintregister(list,size);
  2765. a_load_ref_reg(list,size,size,ref,tmpreg);
  2766. a_op_reg_ref(list,op,size,tmpreg,loc.reference);
  2767. end;
  2768. LOC_SUBSETREG, LOC_CSUBSETREG:
  2769. begin
  2770. tmpreg:=getintregister(list,size);
  2771. a_load_subsetreg_reg(list,size,size,loc.sreg,tmpreg);
  2772. a_op_ref_reg(list,op,size,ref,tmpreg);
  2773. a_load_reg_subsetreg(list,size,size,tmpreg,loc.sreg);
  2774. end;
  2775. LOC_SUBSETREF, LOC_CSUBSETREF:
  2776. begin
  2777. tmpreg:=getintregister(list,size);
  2778. a_load_subsetref_reg(list,size,size,loc.sref,tmpreg);
  2779. a_op_ref_reg(list,op,size,ref,tmpreg);
  2780. a_load_reg_subsetref(list,size,size,tmpreg,loc.sref);
  2781. end;
  2782. else
  2783. internalerror(2010120429);
  2784. end;
  2785. end;
  2786. procedure thlcgobj.a_op_const_reg_reg(list: TAsmList; op: TOpCg; size: tdef; a: tcgint; src, dst: tregister);
  2787. begin
  2788. a_load_reg_reg(list,size,size,src,dst);
  2789. a_op_const_reg(list,op,size,a,dst);
  2790. end;
  2791. procedure thlcgobj.a_op_reg_reg_reg(list: TAsmList; op: TOpCg; size: tdef; src1, src2, dst: tregister);
  2792. var
  2793. tmpreg: tregister;
  2794. begin
  2795. if (dst<>src1) then
  2796. begin
  2797. a_load_reg_reg(list,size,size,src2,dst);
  2798. a_op_reg_reg(list,op,size,src1,dst);
  2799. end
  2800. else
  2801. begin
  2802. { can we do a direct operation on the target register ? }
  2803. if op in [OP_ADD,OP_MUL,OP_AND,OP_MOVE,OP_XOR,OP_IMUL,OP_OR] then
  2804. a_op_reg_reg(list,op,size,src2,dst)
  2805. else
  2806. begin
  2807. tmpreg:=getintregister(list,size);
  2808. a_load_reg_reg(list,size,size,src2,tmpreg);
  2809. a_op_reg_reg(list,op,size,src1,tmpreg);
  2810. a_load_reg_reg(list,size,size,tmpreg,dst);
  2811. end;
  2812. end;
  2813. end;
  2814. procedure thlcgobj.a_op_const_reg_reg_checkoverflow(list: TAsmList; op: TOpCg; size: tdef; a: tcgint; src, dst: tregister; setflags: boolean; var ovloc: tlocation);
  2815. begin
  2816. ovloc.loc:=LOC_VOID;
  2817. if not setflags then
  2818. a_op_const_reg_reg(list,op,size,a,src,dst)
  2819. else
  2820. internalerror(2010122910);
  2821. end;
  2822. procedure thlcgobj.a_op_reg_reg_reg_checkoverflow(list: TAsmList; op: TOpCg; size: tdef; src1, src2, dst: tregister; setflags: boolean; var ovloc: tlocation);
  2823. begin
  2824. ovloc.loc:=LOC_VOID;
  2825. if not setflags then
  2826. a_op_reg_reg_reg(list,op,size,src1,src2,dst)
  2827. else
  2828. internalerror(2010122911);
  2829. end;
  2830. procedure thlcgobj.a_cmp_const_reg_label(list: TAsmList; size: tdef; cmp_op: topcmp; a: tcgint; reg: tregister; l: tasmlabel);
  2831. var
  2832. tmpreg: tregister;
  2833. begin
  2834. tmpreg:=getregisterfordef(list,size);
  2835. a_load_const_reg(list,size,a,tmpreg);
  2836. a_cmp_reg_reg_label(list,size,cmp_op,tmpreg,reg,l);
  2837. end;
  2838. procedure thlcgobj.a_cmp_const_ref_label(list: TAsmList; size: tdef; cmp_op: topcmp; a: tcgint; const ref: treference; l: tasmlabel);
  2839. var
  2840. tmpreg: tregister;
  2841. begin
  2842. tmpreg:=getregisterfordef(list,size);
  2843. a_load_ref_reg(list,size,size,ref,tmpreg);
  2844. a_cmp_const_reg_label(list,size,cmp_op,a,tmpreg,l);
  2845. end;
  2846. procedure thlcgobj.a_cmp_const_loc_label(list: TAsmList; size: tdef; cmp_op: topcmp; a: tcgint; const loc: tlocation; l: tasmlabel);
  2847. var
  2848. tmpreg: tregister;
  2849. begin
  2850. case loc.loc of
  2851. LOC_REGISTER,LOC_CREGISTER:
  2852. a_cmp_const_reg_label(list,size,cmp_op,a,loc.register,l);
  2853. LOC_REFERENCE,LOC_CREFERENCE:
  2854. a_cmp_const_ref_label(list,size,cmp_op,a,loc.reference,l);
  2855. LOC_SUBSETREG, LOC_CSUBSETREG:
  2856. begin
  2857. tmpreg:=getintregister(list,size);
  2858. a_load_subsetreg_reg(list,size,size,loc.sreg,tmpreg);
  2859. a_cmp_const_reg_label(list,size,cmp_op,a,tmpreg,l);
  2860. end;
  2861. LOC_SUBSETREF, LOC_CSUBSETREF:
  2862. begin
  2863. tmpreg:=getintregister(list,size);
  2864. a_load_subsetref_reg(list,size,size,loc.sref,tmpreg);
  2865. a_cmp_const_reg_label(list,size,cmp_op,a,tmpreg,l);
  2866. end;
  2867. else
  2868. internalerror(2010120430);
  2869. end;
  2870. end;
  2871. procedure thlcgobj.a_cmp_ref_reg_label(list: TAsmList; size: tdef; cmp_op: topcmp; const ref: treference; reg: tregister; l: tasmlabel);
  2872. var
  2873. tmpreg: tregister;
  2874. begin
  2875. tmpreg:=getintregister(list,size);
  2876. a_load_ref_reg(list,size,size,ref,tmpreg);
  2877. a_cmp_reg_reg_label(list,size,cmp_op,tmpreg,reg,l);
  2878. end;
  2879. procedure thlcgobj.a_cmp_reg_ref_label(list: TAsmList; size: tdef; cmp_op: topcmp; reg: tregister; const ref: treference; l: tasmlabel);
  2880. var
  2881. tmpreg: tregister;
  2882. begin
  2883. tmpreg:=getintregister(list,size);
  2884. a_load_ref_reg(list,size,size,ref,tmpreg);
  2885. a_cmp_reg_reg_label(list,size,cmp_op,reg,tmpreg,l);
  2886. end;
  2887. procedure thlcgobj.a_cmp_subsetreg_reg_label(list: TAsmList; fromsubsetsize, cmpsize: tdef; cmp_op: topcmp; const sreg: tsubsetregister; reg: tregister; l: tasmlabel);
  2888. var
  2889. tmpreg: tregister;
  2890. begin
  2891. tmpreg:=getintregister(list,cmpsize);
  2892. a_load_subsetreg_reg(list,fromsubsetsize,cmpsize,sreg,tmpreg);
  2893. a_cmp_reg_reg_label(list,cmpsize,cmp_op,tmpreg,reg,l);
  2894. end;
  2895. procedure thlcgobj.a_cmp_subsetref_reg_label(list: TAsmList; fromsubsetsize, cmpsize: tdef; cmp_op: topcmp; const sref: tsubsetreference; reg: tregister; l: tasmlabel);
  2896. var
  2897. tmpreg: tregister;
  2898. begin
  2899. tmpreg:=getintregister(list,cmpsize);
  2900. a_load_subsetref_reg(list,fromsubsetsize,cmpsize,sref,tmpreg);
  2901. a_cmp_reg_reg_label(list,cmpsize,cmp_op,tmpreg,reg,l);
  2902. end;
  2903. procedure thlcgobj.a_cmp_loc_reg_label(list: TAsmList; size: tdef; cmp_op: topcmp; const loc: tlocation; reg: tregister; l: tasmlabel);
  2904. begin
  2905. case loc.loc of
  2906. LOC_REGISTER,
  2907. LOC_CREGISTER:
  2908. a_cmp_reg_reg_label(list,size,cmp_op,loc.register,reg,l);
  2909. LOC_REFERENCE,
  2910. LOC_CREFERENCE :
  2911. a_cmp_ref_reg_label(list,size,cmp_op,loc.reference,reg,l);
  2912. LOC_CONSTANT:
  2913. a_cmp_const_reg_label(list,size,cmp_op,loc.value,reg,l);
  2914. LOC_SUBSETREG,
  2915. LOC_CSUBSETREG:
  2916. a_cmp_subsetreg_reg_label(list,size,size,cmp_op,loc.sreg,reg,l);
  2917. LOC_SUBSETREF,
  2918. LOC_CSUBSETREF:
  2919. a_cmp_subsetref_reg_label(list,size,size,cmp_op,loc.sref,reg,l);
  2920. else
  2921. internalerror(2010120431);
  2922. end;
  2923. end;
  2924. procedure thlcgobj.a_cmp_reg_loc_label(list: TAsmList; size: tdef; cmp_op: topcmp; reg: tregister; const loc: tlocation; l: tasmlabel);
  2925. begin
  2926. a_cmp_loc_reg_label(list,size,swap_opcmp(cmp_op),loc,reg,l);
  2927. end;
  2928. procedure thlcgobj.a_cmp_ref_loc_label(list: TAsmList; size: tdef; cmp_op: topcmp; const ref: treference; const loc: tlocation; l: tasmlabel);
  2929. var
  2930. tmpreg: tregister;
  2931. begin
  2932. case loc.loc of
  2933. LOC_REGISTER,LOC_CREGISTER:
  2934. a_cmp_ref_reg_label(list,size,cmp_op,ref,loc.register,l);
  2935. LOC_REFERENCE,LOC_CREFERENCE:
  2936. begin
  2937. tmpreg:=getintregister(list,size);
  2938. a_load_ref_reg(list,size,size,loc.reference,tmpreg);
  2939. a_cmp_ref_reg_label(list,size,cmp_op,ref,tmpreg,l);
  2940. end;
  2941. LOC_CONSTANT:
  2942. begin
  2943. a_cmp_const_ref_label(list,size,swap_opcmp(cmp_op),loc.value,ref,l);
  2944. end;
  2945. LOC_SUBSETREG, LOC_CSUBSETREG:
  2946. begin
  2947. tmpreg:=getintregister(list,size);
  2948. a_load_ref_reg(list,size,size,loc.reference,tmpreg);
  2949. a_cmp_subsetreg_reg_label(list,size,size,swap_opcmp(cmp_op),loc.sreg,tmpreg,l);
  2950. end;
  2951. LOC_SUBSETREF, LOC_CSUBSETREF:
  2952. begin
  2953. tmpreg:=getintregister(list,size);
  2954. a_load_ref_reg(list,size,size,loc.reference,tmpreg);
  2955. a_cmp_subsetref_reg_label(list,size,size,swap_opcmp(cmp_op),loc.sref,tmpreg,l);
  2956. end;
  2957. else
  2958. internalerror(2010120432);
  2959. end;
  2960. end;
  2961. procedure thlcgobj.g_exception_reason_save(list: TAsmList; fromsize, tosize: tdef; reg: tregister; const href: treference);
  2962. begin
  2963. a_load_reg_ref(list,fromsize,tosize,reg,href);
  2964. end;
  2965. procedure thlcgobj.g_exception_reason_save_const(list: TAsmList; size: tdef; a: tcgint; const href: treference);
  2966. begin
  2967. a_load_const_ref(list,size,a,href);
  2968. end;
  2969. procedure thlcgobj.g_exception_reason_load(list: TAsmList; fromsize, tosize: tdef; const href: treference; reg: tregister);
  2970. begin
  2971. a_load_ref_reg(list,fromsize,tosize,href,reg);
  2972. end;
  2973. procedure thlcgobj.g_exception_reason_discard(list: TAsmList; size: tdef; href: treference);
  2974. begin
  2975. { do nothing by default }
  2976. end;
  2977. procedure thlcgobj.g_unreachable(list: TAsmList);
  2978. begin
  2979. { nothing }
  2980. end;
  2981. procedure thlcgobj.g_maybe_testself(list: TAsmList; selftype: tdef; reg: tregister);
  2982. var
  2983. OKLabel : tasmlabel;
  2984. cgpara1 : TCGPara;
  2985. pd : tprocdef;
  2986. begin
  2987. if (cs_check_object in current_settings.localswitches) or
  2988. (cs_check_range in current_settings.localswitches) then
  2989. begin
  2990. pd:=search_system_proc('fpc_handleerror');
  2991. current_asmdata.getjumplabel(oklabel);
  2992. a_cmp_const_reg_label(list,selftype,OC_NE,0,reg,oklabel);
  2993. cgpara1.init;
  2994. paramanager.getintparaloc(list,pd,1,cgpara1);
  2995. a_load_const_cgpara(list,s32inttype,aint(210),cgpara1);
  2996. paramanager.freecgpara(list,cgpara1);
  2997. g_call_system_proc(list,pd,[@cgpara1],nil).resetiftemp;
  2998. cgpara1.done;
  2999. a_label(list,oklabel);
  3000. end;
  3001. end;
  3002. procedure thlcgobj.g_concatcopy(list: TAsmList; size: tdef; const source, dest: treference);
  3003. begin
  3004. if use_vectorfpu(size) then
  3005. a_loadmm_ref_ref(list,size,size,source,dest,mms_movescalar)
  3006. else if size.typ<>floatdef then
  3007. a_load_ref_ref(list,size,size,source,dest)
  3008. else
  3009. a_loadfpu_ref_ref(list,size,size,source,dest);
  3010. end;
  3011. procedure thlcgobj.g_concatcopy_unaligned(list: TAsmList; size: tdef; const source, dest: treference);
  3012. begin
  3013. g_concatcopy(list,size,source,dest);
  3014. end;
  3015. procedure thlcgobj.g_copyshortstring(list: TAsmList; const source, dest: treference; strdef: tstringdef);
  3016. var
  3017. cgpara1,cgpara2,cgpara3 : TCGPara;
  3018. pd : tprocdef;
  3019. begin
  3020. pd:=search_system_proc('fpc_shortstr_to_shortstr');
  3021. cgpara1.init;
  3022. cgpara2.init;
  3023. cgpara3.init;
  3024. paramanager.getintparaloc(list,pd,1,cgpara1);
  3025. paramanager.getintparaloc(list,pd,2,cgpara2);
  3026. paramanager.getintparaloc(list,pd,3,cgpara3);
  3027. if pd.is_pushleftright then
  3028. begin
  3029. a_loadaddr_ref_cgpara(list,strdef,dest,cgpara1);
  3030. a_load_const_cgpara(list,s32inttype,strdef.len,cgpara2);
  3031. a_loadaddr_ref_cgpara(list,strdef,source,cgpara3);
  3032. end
  3033. else
  3034. begin
  3035. a_loadaddr_ref_cgpara(list,strdef,source,cgpara3);
  3036. a_load_const_cgpara(list,s32inttype,strdef.len,cgpara2);
  3037. a_loadaddr_ref_cgpara(list,strdef,dest,cgpara1);
  3038. end;
  3039. paramanager.freecgpara(list,cgpara3);
  3040. paramanager.freecgpara(list,cgpara2);
  3041. paramanager.freecgpara(list,cgpara1);
  3042. g_call_system_proc(list,pd,[@cgpara1,@cgpara2,@cgpara3],nil).resetiftemp;
  3043. cgpara3.done;
  3044. cgpara2.done;
  3045. cgpara1.done;
  3046. end;
  3047. procedure thlcgobj.g_copyvariant(list: TAsmList; const source, dest: treference; vardef: tvariantdef);
  3048. var
  3049. cgpara1,cgpara2 : TCGPara;
  3050. pd : tprocdef;
  3051. begin
  3052. pd:=search_system_proc('fpc_variant_copy_overwrite');
  3053. cgpara1.init;
  3054. cgpara2.init;
  3055. paramanager.getintparaloc(list,pd,1,cgpara1);
  3056. paramanager.getintparaloc(list,pd,2,cgpara2);
  3057. if pd.is_pushleftright then
  3058. begin
  3059. a_loadaddr_ref_cgpara(list,vardef,source,cgpara1);
  3060. a_loadaddr_ref_cgpara(list,vardef,dest,cgpara2);
  3061. end
  3062. else
  3063. begin
  3064. a_loadaddr_ref_cgpara(list,vardef,dest,cgpara2);
  3065. a_loadaddr_ref_cgpara(list,vardef,source,cgpara1);
  3066. end;
  3067. paramanager.freecgpara(list,cgpara2);
  3068. paramanager.freecgpara(list,cgpara1);
  3069. g_call_system_proc(list,pd,[@cgpara1,@cgpara2],nil).resetiftemp;
  3070. cgpara2.done;
  3071. cgpara1.done;
  3072. end;
  3073. procedure thlcgobj.g_incrrefcount(list: TAsmList; t: tdef; const ref: treference);
  3074. var
  3075. href : treference;
  3076. incrfunc : string;
  3077. cgpara1,cgpara2 : TCGPara;
  3078. pd : tprocdef;
  3079. begin
  3080. cgpara1.init;
  3081. cgpara2.init;
  3082. if is_interfacecom_or_dispinterface(t) then
  3083. incrfunc:='fpc_intf_incr_ref'
  3084. else if is_ansistring(t) then
  3085. incrfunc:='fpc_ansistr_incr_ref'
  3086. else if is_widestring(t) then
  3087. incrfunc:='fpc_widestr_incr_ref'
  3088. else if is_unicodestring(t) then
  3089. incrfunc:='fpc_unicodestr_incr_ref'
  3090. else if is_dynamic_array(t) then
  3091. incrfunc:='fpc_dynarray_incr_ref'
  3092. else
  3093. incrfunc:='';
  3094. { call the special incr function or the generic addref }
  3095. if incrfunc<>'' then
  3096. begin
  3097. pd:=search_system_proc(incrfunc);
  3098. paramanager.getintparaloc(list,pd,1,cgpara1);
  3099. { widestrings aren't ref. counted on all platforms so we need the address
  3100. to create a real copy }
  3101. if is_widestring(t) then
  3102. a_loadaddr_ref_cgpara(list,t,ref,cgpara1)
  3103. else
  3104. { these functions get the pointer by value }
  3105. a_load_ref_cgpara(list,t,ref,cgpara1);
  3106. paramanager.freecgpara(list,cgpara1);
  3107. g_call_system_proc(list,pd,[@cgpara1],nil).resetiftemp;
  3108. end
  3109. else
  3110. begin
  3111. pd:=search_system_proc('fpc_addref');
  3112. paramanager.getintparaloc(list,pd,1,cgpara1);
  3113. paramanager.getintparaloc(list,pd,2,cgpara2);
  3114. if is_open_array(t) then
  3115. InternalError(201103054);
  3116. reference_reset_symbol(href,RTTIWriter.get_rtti_label(t,initrtti,def_needs_indirect(t)),0,sizeof(pint),[]);
  3117. if pd.is_pushleftright then
  3118. begin
  3119. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3120. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3121. end
  3122. else
  3123. begin
  3124. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3125. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3126. end;
  3127. paramanager.freecgpara(list,cgpara1);
  3128. paramanager.freecgpara(list,cgpara2);
  3129. g_call_system_proc(list,pd,[@cgpara1,@cgpara2],nil).resetiftemp;
  3130. end;
  3131. cgpara2.done;
  3132. cgpara1.done;
  3133. end;
  3134. procedure thlcgobj.g_initialize(list: TAsmList; t: tdef; const ref: treference);
  3135. var
  3136. href : treference;
  3137. cgpara1,cgpara2 : TCGPara;
  3138. pd : tprocdef;
  3139. begin
  3140. cgpara1.init;
  3141. cgpara2.init;
  3142. if is_ansistring(t) or
  3143. is_widestring(t) or
  3144. is_unicodestring(t) or
  3145. is_interfacecom_or_dispinterface(t) or
  3146. is_dynamic_array(t) then
  3147. a_load_const_ref(list,t,0,ref)
  3148. else if t.typ=variantdef then
  3149. begin
  3150. pd:=search_system_proc('fpc_variant_init');
  3151. paramanager.getintparaloc(list,pd,1,cgpara1);
  3152. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3153. paramanager.freecgpara(list,cgpara1);
  3154. g_call_system_proc(list,pd,[@cgpara1],nil).resetiftemp;
  3155. end
  3156. else
  3157. begin
  3158. if is_open_array(t) then
  3159. InternalError(201103052);
  3160. pd:=search_system_proc('fpc_initialize');
  3161. paramanager.getintparaloc(list,pd,1,cgpara1);
  3162. paramanager.getintparaloc(list,pd,2,cgpara2);
  3163. reference_reset_symbol(href,RTTIWriter.get_rtti_label(t,initrtti,def_needs_indirect(t)),0,sizeof(pint),[]);
  3164. if pd.is_pushleftright then
  3165. begin
  3166. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3167. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3168. end
  3169. else
  3170. begin
  3171. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3172. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3173. end;
  3174. paramanager.freecgpara(list,cgpara1);
  3175. paramanager.freecgpara(list,cgpara2);
  3176. g_call_system_proc(list,pd,[@cgpara1,@cgpara2],nil).resetiftemp;
  3177. end;
  3178. cgpara1.done;
  3179. cgpara2.done;
  3180. end;
  3181. procedure thlcgobj.g_finalize(list: TAsmList; t: tdef; const ref: treference);
  3182. var
  3183. href : treference;
  3184. cgpara1,cgpara2 : TCGPara;
  3185. pd : tprocdef;
  3186. decrfunc : string;
  3187. begin
  3188. if is_interfacecom_or_dispinterface(t) then
  3189. decrfunc:='fpc_intf_decr_ref'
  3190. else if is_ansistring(t) then
  3191. decrfunc:='fpc_ansistr_decr_ref'
  3192. else if is_widestring(t) then
  3193. decrfunc:='fpc_widestr_decr_ref'
  3194. else if is_unicodestring(t) then
  3195. decrfunc:='fpc_unicodestr_decr_ref'
  3196. else if t.typ=variantdef then
  3197. decrfunc:='fpc_variant_clear'
  3198. else
  3199. begin
  3200. cgpara1.init;
  3201. cgpara2.init;
  3202. if is_open_array(t) then
  3203. InternalError(201103051);
  3204. { fpc_finalize takes a pointer value parameter, fpc_dynarray_clear a
  3205. pointer var parameter }
  3206. if is_dynamic_array(t) then
  3207. pd:=search_system_proc('fpc_dynarray_clear')
  3208. else
  3209. pd:=search_system_proc('fpc_finalize');
  3210. paramanager.getintparaloc(list,pd,1,cgpara1);
  3211. paramanager.getintparaloc(list,pd,2,cgpara2);
  3212. reference_reset_symbol(href,RTTIWriter.get_rtti_label(t,initrtti,def_needs_indirect(t)),0,sizeof(pint),[]);
  3213. if pd.is_pushleftright then
  3214. begin
  3215. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3216. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3217. end
  3218. else
  3219. begin
  3220. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3221. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3222. end;
  3223. paramanager.freecgpara(list,cgpara1);
  3224. paramanager.freecgpara(list,cgpara2);
  3225. g_call_system_proc(list,pd,[@cgpara1,@cgpara2],nil).resetiftemp;
  3226. cgpara1.done;
  3227. cgpara2.done;
  3228. exit;
  3229. end;
  3230. pd:=search_system_proc(decrfunc);
  3231. cgpara1.init;
  3232. paramanager.getintparaloc(list,pd,1,cgpara1);
  3233. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3234. paramanager.freecgpara(list,cgpara1);
  3235. g_call_system_proc(list,pd,[@cgpara1],nil).resetiftemp;
  3236. cgpara1.done;
  3237. end;
  3238. procedure thlcgobj.g_array_rtti_helper(list: TAsmList; t: tdef; const ref: treference; const highloc: tlocation; const name: string);
  3239. var
  3240. cgpara1,cgpara2,cgpara3: TCGPara;
  3241. href: TReference;
  3242. hreg, lenreg: TRegister;
  3243. pd: tprocdef;
  3244. begin
  3245. cgpara1.init;
  3246. cgpara2.init;
  3247. cgpara3.init;
  3248. pd:=search_system_proc(name);
  3249. paramanager.getintparaloc(list,pd,1,cgpara1);
  3250. paramanager.getintparaloc(list,pd,2,cgpara2);
  3251. paramanager.getintparaloc(list,pd,3,cgpara3);
  3252. reference_reset_symbol(href,RTTIWriter.get_rtti_label(t,initrtti,def_needs_indirect(t)),0,sizeof(pint),[]);
  3253. { if calling convention is left to right, push parameters 1 and 2 }
  3254. if pd.is_pushleftright then
  3255. begin
  3256. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3257. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3258. end;
  3259. { push parameter 3 }
  3260. if highloc.loc=LOC_CONSTANT then
  3261. a_load_const_cgpara(list,sizesinttype,highloc.value+1,cgpara3)
  3262. else
  3263. begin
  3264. if highloc.loc in [LOC_REGISTER,LOC_CREGISTER] then
  3265. hreg:=highloc.register
  3266. else
  3267. begin
  3268. hreg:=getintregister(list,sizesinttype);
  3269. a_load_loc_reg(list,sizesinttype,sizesinttype,highloc,hreg);
  3270. end;
  3271. { increment, converts high(x) to length(x) }
  3272. lenreg:=getintregister(list,sizesinttype);
  3273. a_op_const_reg_reg(list,OP_ADD,sizesinttype,1,hreg,lenreg);
  3274. a_load_reg_cgpara(list,sizesinttype,lenreg,cgpara3);
  3275. end;
  3276. { if calling convention is right to left, push parameters 2 and 1 }
  3277. if not pd.is_pushleftright then
  3278. begin
  3279. a_loadaddr_ref_cgpara(list,voidpointertype,href,cgpara2);
  3280. a_loadaddr_ref_cgpara(list,t,ref,cgpara1);
  3281. end;
  3282. paramanager.freecgpara(list,cgpara1);
  3283. paramanager.freecgpara(list,cgpara2);
  3284. paramanager.freecgpara(list,cgpara3);
  3285. g_call_system_proc(list,pd,[@cgpara1,@cgpara2,@cgpara3],nil).resetiftemp;
  3286. cgpara3.done;
  3287. cgpara2.done;
  3288. cgpara1.done;
  3289. end;
  3290. function thlcgobj.def_needs_indirect(t:tdef):boolean;
  3291. begin
  3292. result:=(tf_supports_packages in target_info.flags) and
  3293. (target_info.system in systems_indirect_var_imports) and
  3294. (cs_imported_data in current_settings.localswitches) and
  3295. (findunitsymtable(t.owner).moduleid<>current_module.moduleid);
  3296. end;
  3297. procedure thlcgobj.g_rangecheck(list: TAsmList; const l: tlocation; fromdef, todef: tdef);
  3298. var
  3299. {$if defined(cpuhighleveltarget)}
  3300. aintmax: tcgint;
  3301. {$elseif defined(cpu64bitalu) or defined(cpu32bitalu)}
  3302. aintmax: aint;
  3303. {$else}
  3304. aintmax: longint;
  3305. {$endif}
  3306. neglabel : tasmlabel;
  3307. hreg : tregister;
  3308. lto,hto,
  3309. lfrom,hfrom : TConstExprInt;
  3310. fromsize, tosize: cardinal;
  3311. maxdef: tdef;
  3312. from_signed, to_signed: boolean;
  3313. begin
  3314. { range checking on and range checkable value? }
  3315. if not(cs_check_range in current_settings.localswitches) or
  3316. not(fromdef.typ in [orddef,enumdef]) or
  3317. { C-style booleans can't really fail range checks, }
  3318. { all values are always valid }
  3319. is_cbool(todef) then
  3320. exit;
  3321. {$if not defined(cpuhighleveltarget) and not defined(cpu64bitalu)}
  3322. { handle 64bit rangechecks separate for 32bit processors }
  3323. if is_64bit(fromdef) or is_64bit(todef) then
  3324. begin
  3325. cg64.g_rangecheck64(list,l,fromdef,todef);
  3326. exit;
  3327. end;
  3328. {$endif ndef cpuhighleveltarget and ndef cpu64bitalu}
  3329. { only check when assigning to scalar, subranges are different, }
  3330. { when todef=fromdef then the check is always generated }
  3331. getrange(fromdef,lfrom,hfrom);
  3332. getrange(todef,lto,hto);
  3333. from_signed := is_signed(fromdef);
  3334. to_signed := is_signed(todef);
  3335. { check the rangedef of the array, not the array itself }
  3336. { (only change now, since getrange needs the arraydef) }
  3337. if (todef.typ = arraydef) then
  3338. todef := tarraydef(todef).rangedef;
  3339. { no range check if from and to are equal and are both longint/dword }
  3340. { (if we have a 32bit processor) or int64/qword, since such }
  3341. { operations can at most cause overflows (JM) }
  3342. { Note that these checks are mostly processor independent, they only }
  3343. { have to be changed once we introduce 64bit subrange types }
  3344. {$if defined(cpuhighleveltarget) or defined(cpu64bitalu)}
  3345. if (fromdef=todef) and
  3346. (fromdef.typ=orddef) and
  3347. (((((torddef(fromdef).ordtype=s64bit) and
  3348. (lfrom = low(int64)) and
  3349. (hfrom = high(int64))) or
  3350. ((torddef(fromdef).ordtype=u64bit) and
  3351. (lfrom = low(qword)) and
  3352. (hfrom = high(qword))) or
  3353. ((torddef(fromdef).ordtype=scurrency) and
  3354. (lfrom = low(int64)) and
  3355. (hfrom = high(int64)))))) then
  3356. exit;
  3357. {$endif cpuhighleveltarget or cpu64bitalu}
  3358. { 32 bit operations are automatically widened to 64 bit on 64 bit addr
  3359. targets }
  3360. {$ifdef cpu32bitaddr}
  3361. if (fromdef = todef) and
  3362. (fromdef.typ=orddef) and
  3363. (((((torddef(fromdef).ordtype = s32bit) and
  3364. (lfrom = int64(low(longint))) and
  3365. (hfrom = int64(high(longint)))) or
  3366. ((torddef(fromdef).ordtype = u32bit) and
  3367. (lfrom = low(cardinal)) and
  3368. (hfrom = high(cardinal)))))) then
  3369. exit;
  3370. {$endif cpu32bitaddr}
  3371. { optimize some range checks away in safe cases }
  3372. fromsize := fromdef.size;
  3373. tosize := todef.size;
  3374. if ((from_signed = to_signed) or
  3375. (not from_signed)) and
  3376. (lto<=lfrom) and (hto>=hfrom) and
  3377. (fromsize <= tosize) then
  3378. begin
  3379. { if fromsize < tosize, and both have the same signed-ness or }
  3380. { fromdef is unsigned, then all bit patterns from fromdef are }
  3381. { valid for todef as well }
  3382. if (fromsize < tosize) then
  3383. exit;
  3384. if (fromsize = tosize) and
  3385. (from_signed = to_signed) then
  3386. { only optimize away if all bit patterns which fit in fromsize }
  3387. { are valid for the todef }
  3388. begin
  3389. {$ifopt Q+}
  3390. {$define overflowon}
  3391. {$Q-}
  3392. {$endif}
  3393. {$ifopt R+}
  3394. {$define rangeon}
  3395. {$R-}
  3396. {$endif}
  3397. if to_signed then
  3398. begin
  3399. { calculation of the low/high ranges must not overflow 64 bit
  3400. otherwise we end up comparing with zero for 64 bit data types on
  3401. 64 bit processors }
  3402. if (lto = (int64(-1) << (tosize * 8 - 1))) and
  3403. (hto = (-((int64(-1) << (tosize * 8 - 1))+1))) then
  3404. exit
  3405. end
  3406. else
  3407. begin
  3408. { calculation of the low/high ranges must not overflow 64 bit
  3409. otherwise we end up having all zeros for 64 bit data types on
  3410. 64 bit processors }
  3411. if (lto = 0) and
  3412. (qword(hto) = (qword(-1) >> (64-(tosize * 8))) ) then
  3413. exit
  3414. end;
  3415. {$ifdef overflowon}
  3416. {$Q+}
  3417. {$undef overflowon}
  3418. {$endif}
  3419. {$ifdef rangeon}
  3420. {$R+}
  3421. {$undef rangeon}
  3422. {$endif}
  3423. end
  3424. end;
  3425. { depending on the types involved, we perform the range check for 64 or
  3426. for 32 bit }
  3427. if fromsize=8 then
  3428. maxdef:=fromdef
  3429. else
  3430. maxdef:=todef;
  3431. {$if sizeof(aintmax) = 8}
  3432. if maxdef.size=8 then
  3433. aintmax:=high(int64)
  3434. else
  3435. {$endif}
  3436. begin
  3437. aintmax:=high(longint);
  3438. maxdef:=u32inttype;
  3439. end;
  3440. { generate the rangecheck code for the def where we are going to }
  3441. { store the result }
  3442. { use the trick that }
  3443. { a <= x <= b <=> 0 <= x-a <= b-a <=> unsigned(x-a) <= unsigned(b-a) }
  3444. { To be able to do that, we have to make sure however that either }
  3445. { fromdef and todef are both signed or unsigned, or that we leave }
  3446. { the parts < 0 and > maxlongint out }
  3447. if from_signed xor to_signed then
  3448. begin
  3449. if from_signed then
  3450. { from is signed, to is unsigned }
  3451. begin
  3452. { if high(from) < 0 -> always range error }
  3453. if (hfrom < 0) or
  3454. { if low(to) > maxlongint also range error }
  3455. (lto > aintmax) then
  3456. begin
  3457. g_call_system_proc(list,'fpc_rangeerror',[],nil).resetiftemp;
  3458. exit
  3459. end;
  3460. { from is signed and to is unsigned -> when looking at to }
  3461. { as an signed value, it must be < maxaint (otherwise }
  3462. { it will become negative, which is invalid since "to" is unsigned) }
  3463. if hto > aintmax then
  3464. hto := aintmax;
  3465. end
  3466. else
  3467. { from is unsigned, to is signed }
  3468. begin
  3469. if (lfrom > aintmax) or
  3470. (hto < 0) then
  3471. begin
  3472. g_call_system_proc(list,'fpc_rangeerror',[],nil).resetiftemp;
  3473. exit
  3474. end;
  3475. { from is unsigned and to is signed -> when looking at to }
  3476. { as an unsigned value, it must be >= 0 (since negative }
  3477. { values are the same as values > maxlongint) }
  3478. if lto < 0 then
  3479. lto := 0;
  3480. end;
  3481. end;
  3482. hreg:=getintregister(list,maxdef);
  3483. a_load_loc_reg(list,fromdef,maxdef,l,hreg);
  3484. a_op_const_reg(list,OP_SUB,maxdef,tcgint(int64(lto)),hreg);
  3485. current_asmdata.getjumplabel(neglabel);
  3486. {
  3487. if from_signed then
  3488. a_cmp_const_reg_label(list,OS_INT,OC_GTE,aint(hto-lto),hreg,neglabel)
  3489. else
  3490. }
  3491. if qword(hto-lto)>qword(aintmax) then
  3492. a_cmp_const_reg_label(list,maxdef,OC_BE,aintmax,hreg,neglabel)
  3493. else
  3494. a_cmp_const_reg_label(list,maxdef,OC_BE,tcgint(int64(hto-lto)),hreg,neglabel);
  3495. g_call_system_proc(list,'fpc_rangeerror',[],nil).resetiftemp;
  3496. a_label(list,neglabel);
  3497. end;
  3498. procedure thlcgobj.g_copyvaluepara_openarray(list: TAsmList; const ref: treference; const lenloc: tlocation; arrdef: tarraydef; destreg: tregister);
  3499. var
  3500. sizereg,sourcereg,lenreg : tregister;
  3501. cgpara1,cgpara2,cgpara3 : TCGPara;
  3502. ptrarrdef : tdef;
  3503. pd : tprocdef;
  3504. getmemres : tcgpara;
  3505. destloc : tlocation;
  3506. begin
  3507. { because some abis don't support dynamic stack allocation properly
  3508. open array value parameters are copied onto the heap
  3509. }
  3510. include(current_procinfo.flags, pi_has_open_array_parameter);
  3511. { calculate necessary memory }
  3512. { read/write operations on one register make the life of the register allocator hard }
  3513. if not(lenloc.loc in [LOC_REGISTER,LOC_CREGISTER]) then
  3514. begin
  3515. lenreg:=getintregister(list,sinttype);
  3516. a_load_loc_reg(list,sinttype,sinttype,lenloc,lenreg);
  3517. end
  3518. else
  3519. lenreg:=lenloc.register;
  3520. sizereg:=getintregister(list,sinttype);
  3521. a_op_const_reg_reg(list,OP_ADD,sinttype,1,lenreg,sizereg);
  3522. a_op_const_reg(list,OP_IMUL,sinttype,arrdef.elesize,sizereg);
  3523. { load source }
  3524. ptrarrdef:=cpointerdef.getreusable(arrdef);
  3525. sourcereg:=getaddressregister(list,ptrarrdef);
  3526. a_loadaddr_ref_reg(list,arrdef,ptrarrdef,ref,sourcereg);
  3527. { do getmem call }
  3528. pd:=search_system_proc('fpc_getmem');
  3529. cgpara1.init;
  3530. paramanager.getintparaloc(list,pd,1,cgpara1);
  3531. a_load_reg_cgpara(list,sinttype,sizereg,cgpara1);
  3532. paramanager.freecgpara(list,cgpara1);
  3533. getmemres:=g_call_system_proc(list,pd,[@cgpara1],ptrarrdef);
  3534. cgpara1.done;
  3535. { return the new address }
  3536. location_reset(destloc,LOC_REGISTER,OS_ADDR);
  3537. destloc.register:=destreg;
  3538. gen_load_cgpara_loc(list,ptrarrdef,getmemres,destloc,false);
  3539. { do move call }
  3540. pd:=search_system_proc('MOVE');
  3541. cgpara1.init;
  3542. cgpara2.init;
  3543. cgpara3.init;
  3544. paramanager.getintparaloc(list,pd,1,cgpara1);
  3545. paramanager.getintparaloc(list,pd,2,cgpara2);
  3546. paramanager.getintparaloc(list,pd,3,cgpara3);
  3547. if pd.is_pushleftright then
  3548. begin
  3549. { load source }
  3550. a_load_reg_cgpara(list,ptrarrdef,sourcereg,cgpara1);
  3551. { load destination }
  3552. a_load_reg_cgpara(list,ptrarrdef,destreg,cgpara2);
  3553. { load size }
  3554. a_load_reg_cgpara(list,sizesinttype,sizereg,cgpara3);
  3555. end
  3556. else
  3557. begin
  3558. { load size }
  3559. a_load_reg_cgpara(list,sizesinttype,sizereg,cgpara3);
  3560. { load destination }
  3561. a_load_reg_cgpara(list,ptrarrdef,destreg,cgpara2);
  3562. { load source }
  3563. a_load_reg_cgpara(list,ptrarrdef,sourcereg,cgpara1);
  3564. end;
  3565. paramanager.freecgpara(list,cgpara3);
  3566. paramanager.freecgpara(list,cgpara2);
  3567. paramanager.freecgpara(list,cgpara1);
  3568. g_call_system_proc(list,pd,[@cgpara1,@cgpara2,@cgpara3],nil).resetiftemp;
  3569. cgpara3.done;
  3570. cgpara2.done;
  3571. cgpara1.done;
  3572. getmemres.resetiftemp;
  3573. end;
  3574. procedure thlcgobj.g_releasevaluepara_openarray(list: TAsmList; arrdef: tarraydef; const l: tlocation);
  3575. var
  3576. cgpara1 : TCGPara;
  3577. pd : tprocdef;
  3578. begin
  3579. { do freemem call }
  3580. pd:=search_system_proc('fpc_freemem');
  3581. cgpara1.init;
  3582. paramanager.getintparaloc(list,pd,1,cgpara1);
  3583. { load source }
  3584. a_load_loc_cgpara(list,cpointerdef.getreusable(arrdef),l,cgpara1);
  3585. paramanager.freecgpara(list,cgpara1);
  3586. g_call_system_proc(list,pd,[@cgpara1],nil).resetiftemp;
  3587. cgpara1.done;
  3588. end;
  3589. procedure thlcgobj.g_profilecode(list: TAsmList);
  3590. begin
  3591. end;
  3592. procedure thlcgobj.a_jmp_external_name(list: TAsmList; const externalname: TSymStr);
  3593. begin
  3594. cg.a_jmp_name(list,externalname);
  3595. end;
  3596. procedure thlcgobj.g_external_wrapper(list: TAsmList; procdef: tprocdef; const wrappername, externalname: string; global: boolean);
  3597. var
  3598. sym: tasmsymbol;
  3599. begin
  3600. maybe_new_object_file(list);
  3601. new_section(list,sec_code,wrappername,target_info.alignment.procalign);
  3602. if global then
  3603. begin
  3604. sym:=current_asmdata.DefineAsmSymbol(wrappername,AB_GLOBAL,AT_FUNCTION,procdef);
  3605. list.concat(Tai_symbol.Create_global(sym,0));
  3606. end
  3607. else
  3608. begin
  3609. sym:=current_asmdata.DefineAsmSymbol(wrappername,AB_PRIVATE_EXTERN,AT_FUNCTION,procdef);
  3610. list.concat(Tai_symbol.Create(sym,0));
  3611. end;
  3612. a_jmp_external_name(list,externalname);
  3613. list.concat(Tai_symbol_end.Create(sym));
  3614. end;
  3615. procedure thlcgobj.g_allocload_reg_reg(list: TAsmList; regsize: tdef; const fromreg: tregister; out toreg: tregister; regtyp: tregistertype);
  3616. begin
  3617. case regtyp of
  3618. R_INTREGISTER:
  3619. toreg:=getintregister(list,regsize);
  3620. R_ADDRESSREGISTER:
  3621. toreg:=getaddressregister(list,regsize);
  3622. R_FPUREGISTER:
  3623. toreg:=getfpuregister(list,regsize);
  3624. else
  3625. internalerror(2013112910);
  3626. end;
  3627. a_load_reg_reg(list,regsize,regsize,fromreg,toreg);
  3628. end;
  3629. procedure thlcgobj.g_reference_loc(list: TAsmList; def: tdef; const fromloc: tlocation; out toloc: tlocation);
  3630. procedure handle_reg_move(regsize: tdef; const fromreg: tregister; out toreg: tregister; regtyp: tregistertype);
  3631. begin
  3632. case regtyp of
  3633. R_INTREGISTER:
  3634. toreg:=getintregister(list,regsize);
  3635. R_ADDRESSREGISTER:
  3636. toreg:=getaddressregister(list,regsize);
  3637. R_FPUREGISTER:
  3638. toreg:=getfpuregister(list,regsize);
  3639. else
  3640. internalerror(2013112915);
  3641. end;
  3642. a_load_reg_reg(list,regsize,regsize,fromreg,toreg);
  3643. end;
  3644. begin
  3645. toloc:=fromloc;
  3646. case fromloc.loc of
  3647. { volatile location, can't get a permanent reference }
  3648. LOC_REGISTER,
  3649. LOC_FPUREGISTER:
  3650. internalerror(2012012702);
  3651. LOC_CONSTANT:
  3652. { finished }
  3653. ;
  3654. LOC_CREGISTER:
  3655. handle_reg_move(def,fromloc.reference.index,toloc.reference.index,R_INTREGISTER);
  3656. LOC_CFPUREGISTER:
  3657. handle_reg_move(def,fromloc.reference.index,toloc.reference.index,R_FPUREGISTER);
  3658. { although LOC_CREFERENCE cannot be an lvalue, we may want to take a
  3659. reference to such a location for multiple reading }
  3660. LOC_CREFERENCE,
  3661. LOC_REFERENCE:
  3662. begin
  3663. if (fromloc.reference.base<>NR_NO) and
  3664. (fromloc.reference.base<>current_procinfo.framepointer) and
  3665. (fromloc.reference.base<>NR_STACK_POINTER_REG) then
  3666. handle_reg_move(voidpointertype,fromloc.reference.base,toloc.reference.base,getregtype(fromloc.reference.base));
  3667. if (fromloc.reference.index<>NR_NO) and
  3668. (fromloc.reference.index<>current_procinfo.framepointer) and
  3669. (fromloc.reference.index<>NR_STACK_POINTER_REG) then
  3670. handle_reg_move(voidpointertype,fromloc.reference.index,toloc.reference.index,getregtype(fromloc.reference.index));
  3671. end;
  3672. else
  3673. internalerror(2012012701);
  3674. end;
  3675. end;
  3676. procedure thlcgobj.g_ptrtypecast_reg(list: TAsmList; fromdef, todef: tdef; var reg: tregister);
  3677. begin
  3678. { nothing to do }
  3679. end;
  3680. procedure thlcgobj.g_ptrtypecast_ref(list: TAsmList; fromdef, todef: tdef; var ref: treference);
  3681. begin
  3682. { nothing to do }
  3683. end;
  3684. procedure thlcgobj.g_set_addr_nonbitpacked_field_ref(list: TAsmList; recdef: tabstractrecorddef; field: tfieldvarsym; var recref: treference);
  3685. begin
  3686. inc(recref.offset,field.fieldoffset);
  3687. recref.alignment:=newalignment(recref.alignment,field.fieldoffset);
  3688. end;
  3689. procedure thlcgobj.g_setup_load_field_by_name(list: TAsmList; recdef: trecorddef; const name: TIDString; const recref: treference; out fref: treference; out fielddef: tdef);
  3690. var
  3691. sym: tsym;
  3692. field: tfieldvarsym;
  3693. begin
  3694. sym:=search_struct_member(recdef,name);
  3695. if not assigned(sym) or
  3696. (sym.typ<>fieldvarsym) then
  3697. internalerror(2015111901);
  3698. field:=tfieldvarsym(sym);
  3699. fref:=recref;
  3700. fielddef:=field.vardef;
  3701. g_set_addr_nonbitpacked_field_ref(list,recdef,field,fref);
  3702. end;
  3703. procedure thlcgobj.g_load_reg_field_by_name(list: TAsmList; regsize: tdef; recdef: trecorddef; reg: tregister; const name: TIDString; const recref: treference);
  3704. var
  3705. fref: treference;
  3706. fielddef: tdef;
  3707. begin
  3708. g_setup_load_field_by_name(list,recdef,name,recref,fref,fielddef);
  3709. a_load_reg_ref(list,regsize,fielddef,reg,fref);
  3710. end;
  3711. procedure thlcgobj.g_load_const_field_by_name(list: TAsmList; recdef: trecorddef; a: tcgint; const name: TIDString; const recref: treference);
  3712. var
  3713. fref: treference;
  3714. fielddef: tdef;
  3715. begin
  3716. g_setup_load_field_by_name(list,recdef,name,recref,fref,fielddef);
  3717. a_load_const_ref(list,fielddef,a,fref);
  3718. end;
  3719. procedure thlcgobj.g_load_field_reg_by_name(list: TAsmList; recdef: trecorddef; regsize: tdef; const name: TIDString; const recref: treference; reg: tregister);
  3720. var
  3721. fref: treference;
  3722. fielddef: tdef;
  3723. begin
  3724. g_setup_load_field_by_name(list,recdef,name,recref,fref,fielddef);
  3725. a_load_ref_reg(list,fielddef,regsize,fref,reg);
  3726. end;
  3727. procedure thlcgobj.g_force_field_reg_by_name(list: TAsmList; recdef: trecorddef; const name: TIDString; const recref: treference; out regdef: tdef; out reg: tregister);
  3728. var
  3729. fref: treference;
  3730. begin
  3731. g_setup_load_field_by_name(list,recdef,name,recref,fref,regdef);
  3732. reg:=getregisterfordef(list,regdef);
  3733. a_load_ref_reg(list,regdef,regdef,fref,reg);
  3734. end;
  3735. procedure thlcgobj.location_force_reg(list: TAsmList; var l: tlocation; src_size, dst_size: tdef; maybeconst: boolean);
  3736. var
  3737. hregister,
  3738. hregister2: tregister;
  3739. hl : tasmlabel;
  3740. oldloc : tlocation;
  3741. begin
  3742. oldloc:=l;
  3743. hregister:=getregisterfordef(list,dst_size);
  3744. { load value in new register }
  3745. case l.loc of
  3746. {$ifdef cpuflags}
  3747. LOC_FLAGS :
  3748. begin
  3749. g_flags2reg(list,dst_size,l.resflags,hregister);
  3750. cg.a_reg_dealloc(list,NR_DEFAULTFLAGS);
  3751. end;
  3752. {$endif cpuflags}
  3753. LOC_JUMP :
  3754. begin
  3755. a_label(list,l.truelabel);
  3756. if is_cbool(src_size) then
  3757. a_load_const_reg(list,dst_size,-1,hregister)
  3758. else
  3759. a_load_const_reg(list,dst_size,1,hregister);
  3760. current_asmdata.getjumplabel(hl);
  3761. a_jmp_always(list,hl);
  3762. a_label(list,l.falselabel);
  3763. a_load_const_reg(list,dst_size,0,hregister);
  3764. a_label(list,hl);
  3765. end;
  3766. else
  3767. begin
  3768. { load_loc_reg can only handle size >= l.size, when the
  3769. new size is smaller then we need to adjust the size
  3770. of the orignal and maybe recalculate l.register for i386 }
  3771. if (dst_size.size<src_size.size) then
  3772. begin
  3773. hregister2:=getregisterfordef(list,src_size);
  3774. { prevent problems with memory locations -- at this high
  3775. level we cannot twiddle with the reference offset, since
  3776. that may not mean anything (e.g., it refers to fixed-sized
  3777. stack slots on Java) }
  3778. a_load_loc_reg(list,src_size,src_size,l,hregister2);
  3779. a_load_reg_reg(list,src_size,dst_size,hregister2,hregister);
  3780. end
  3781. else
  3782. a_load_loc_reg(list,src_size,dst_size,l,hregister);
  3783. end;
  3784. end;
  3785. if (l.loc <> LOC_CREGISTER) or
  3786. not maybeconst then
  3787. location_reset(l,LOC_REGISTER,def_cgsize(dst_size))
  3788. else
  3789. location_reset(l,LOC_CREGISTER,def_cgsize(dst_size));
  3790. l.register:=hregister;
  3791. { Release temp if it was a reference }
  3792. if oldloc.loc=LOC_REFERENCE then
  3793. location_freetemp(list,oldloc);
  3794. end;
  3795. procedure thlcgobj.location_force_fpureg(list: TAsmList; var l: tlocation; size: tdef; maybeconst: boolean);
  3796. var
  3797. reg : tregister;
  3798. begin
  3799. if (l.loc<>LOC_FPUREGISTER) and
  3800. ((l.loc<>LOC_CFPUREGISTER) or (not maybeconst)) then
  3801. begin
  3802. { if it's in an mm register, store to memory first }
  3803. if (l.loc in [LOC_MMREGISTER,LOC_CMMREGISTER]) then
  3804. location_force_mem(list,l,size);
  3805. reg:=getfpuregister(list,size);
  3806. a_loadfpu_loc_reg(list,size,size,l,reg);
  3807. location_freetemp(list,l);
  3808. location_reset(l,LOC_FPUREGISTER,l.size);
  3809. l.register:=reg;
  3810. end;
  3811. end;
  3812. procedure thlcgobj.location_force_mem(list: TAsmList; var l: tlocation; size: tdef);
  3813. var
  3814. r : treference;
  3815. forcesize: aint;
  3816. begin
  3817. case l.loc of
  3818. LOC_FPUREGISTER,
  3819. LOC_CFPUREGISTER :
  3820. begin
  3821. tg.gethltemp(list,size,size.size,tt_normal,r);
  3822. a_loadfpu_reg_ref(list,size,size,l.register,r);
  3823. location_reset_ref(l,LOC_REFERENCE,l.size,size.alignment,[]);
  3824. l.reference:=r;
  3825. end;
  3826. LOC_MMREGISTER,
  3827. LOC_CMMREGISTER:
  3828. begin
  3829. { vectors can't be represented yet using tdef }
  3830. if size.typ<>floatdef then
  3831. internalerror(2012062301);
  3832. tg.gethltemp(list,size,size.size,tt_normal,r);
  3833. a_loadmm_reg_ref(list,size,size,l.register,r,mms_movescalar);
  3834. location_reset_ref(l,LOC_REFERENCE,l.size,size.alignment,[]);
  3835. l.reference:=r;
  3836. end;
  3837. LOC_CONSTANT,
  3838. LOC_REGISTER,
  3839. LOC_CREGISTER,
  3840. LOC_SUBSETREG,
  3841. LOC_CSUBSETREG,
  3842. LOC_SUBSETREF,
  3843. LOC_CSUBSETREF:
  3844. begin
  3845. if not is_dynamic_array(size) and
  3846. not is_open_array(size) then
  3847. forcesize:=size.size
  3848. else
  3849. forcesize:=sizeof(pint);
  3850. tg.gethltemp(list,size,forcesize,tt_normal,r);
  3851. a_load_loc_ref(list,size,size,l,r);
  3852. location_reset_ref(l,LOC_REFERENCE,l.size,size.alignment,[]);
  3853. l.reference:=r;
  3854. end;
  3855. LOC_CREFERENCE,
  3856. LOC_REFERENCE : ;
  3857. else
  3858. internalerror(2011010304);
  3859. end;
  3860. end;
  3861. procedure thlcgobj.location_force_mmregscalar(list: TAsmList; var l: tlocation; var size: tdef; maybeconst: boolean);
  3862. var
  3863. reg : tregister;
  3864. href : treference;
  3865. newsize : tdef;
  3866. begin
  3867. if (l.loc<>LOC_MMREGISTER) and
  3868. ((l.loc<>LOC_CMMREGISTER) or (not maybeconst)) then
  3869. begin
  3870. { if it's in an fpu register, store to memory first }
  3871. if (l.loc in [LOC_FPUREGISTER,LOC_CFPUREGISTER]) then
  3872. begin
  3873. tg.gethltemp(list,size,-1,tt_normal,href);
  3874. hlcg.a_loadfpu_reg_ref(list,size,size,l.register,href);
  3875. location_reset_ref(l,LOC_REFERENCE,l.size,size.alignment,[]);
  3876. l.reference:=href;
  3877. end;
  3878. { on ARM, CFP values may be located in integer registers,
  3879. and its second_int_to_real() also uses this routine to
  3880. force integer (memory) values in an mmregister }
  3881. if (l.size in [OS_32,OS_S32]) then
  3882. begin
  3883. size:=cgsize_orddef(l.size);
  3884. newsize:=s32floattype;
  3885. end
  3886. else if (l.size in [OS_64,OS_S64]) then
  3887. begin
  3888. size:=cgsize_orddef(l.size);
  3889. newsize:=s64floattype;
  3890. end
  3891. else
  3892. newsize:=size;
  3893. case size.size of
  3894. 4:
  3895. newsize:=s32floattype;
  3896. 8:
  3897. newsize:=s64floattype;
  3898. else
  3899. newsize:=size;
  3900. end;
  3901. reg:=hlcg.getmmregister(list,newsize);
  3902. hlcg.a_loadmm_loc_reg(list,size,newsize,l,reg,mms_movescalar);
  3903. l.size:=def_cgsize(newsize);
  3904. location_freetemp(list,l);
  3905. location_reset(l,LOC_MMREGISTER,l.size);
  3906. size:=newsize;
  3907. l.register:=reg;
  3908. end;
  3909. end;
  3910. procedure thlcgobj.location_get_data_ref(list: TAsmList; def: tdef; const l: tlocation; var ref: treference; loadref: boolean; alignment: longint);
  3911. var
  3912. pdef: tdef;
  3913. begin
  3914. case l.loc of
  3915. LOC_REGISTER,
  3916. LOC_CREGISTER :
  3917. begin
  3918. if not loadref then
  3919. internalerror(200410231);
  3920. reference_reset_base(ref,cpointerdef.getreusable(def),l.register,0,ctempposinvalid,alignment,[]);
  3921. end;
  3922. LOC_REFERENCE,
  3923. LOC_CREFERENCE :
  3924. begin
  3925. if loadref then
  3926. begin
  3927. pdef:=cpointerdef.getreusable(def);
  3928. reference_reset_base(ref,pdef,getaddressregister(list,voidpointertype),0,ctempposinvalid,alignment,[]);
  3929. { it's a pointer to def }
  3930. a_load_ref_reg(list,pdef,pdef,l.reference,ref.base);
  3931. end
  3932. else
  3933. ref:=l.reference;
  3934. end;
  3935. else
  3936. internalerror(200309181);
  3937. end;
  3938. end;
  3939. procedure thlcgobj.maketojumpbool(list: TAsmList; p: tnode);
  3940. var
  3941. truelabel,
  3942. falselabel: tasmlabel;
  3943. begin
  3944. if p.location.loc<>LOC_JUMP then
  3945. begin
  3946. current_asmdata.getjumplabel(truelabel);
  3947. current_asmdata.getjumplabel(falselabel);
  3948. end
  3949. else
  3950. begin
  3951. truelabel:=p.location.truelabel;
  3952. falselabel:=p.location.falselabel;
  3953. end;
  3954. maketojumpboollabels(list,p,truelabel,falselabel);
  3955. end;
  3956. procedure thlcgobj.maketojumpboollabels(list: TAsmList; p: tnode; truelabel, falselabel: tasmlabel);
  3957. var
  3958. storepos : tfileposinfo;
  3959. begin
  3960. if nf_error in p.flags then
  3961. exit;
  3962. storepos:=current_filepos;
  3963. current_filepos:=p.fileinfo;
  3964. if is_boolean(p.resultdef) then
  3965. begin
  3966. if is_constboolnode(p) then
  3967. begin
  3968. if Tordconstnode(p).value.uvalue<>0 then
  3969. a_jmp_always(list,truelabel)
  3970. else
  3971. a_jmp_always(list,falselabel)
  3972. end
  3973. else
  3974. begin
  3975. case p.location.loc of
  3976. LOC_SUBSETREG,LOC_CSUBSETREG,
  3977. LOC_SUBSETREF,LOC_CSUBSETREF,
  3978. LOC_CREGISTER,LOC_REGISTER,LOC_CREFERENCE,LOC_REFERENCE :
  3979. begin
  3980. a_cmp_const_loc_label(list,p.resultdef,OC_NE,0,p.location,truelabel);
  3981. a_jmp_always(list,falselabel);
  3982. end;
  3983. LOC_JUMP:
  3984. begin
  3985. if truelabel<>p.location.truelabel then
  3986. begin
  3987. a_label(list,p.location.truelabel);
  3988. a_jmp_always(list,truelabel);
  3989. end;
  3990. if falselabel<>p.location.falselabel then
  3991. begin
  3992. a_label(list,p.location.falselabel);
  3993. a_jmp_always(list,falselabel);
  3994. end;
  3995. end;
  3996. {$ifdef cpuflags}
  3997. LOC_FLAGS :
  3998. begin
  3999. a_jmp_flags(list,p.location.resflags,truelabel);
  4000. a_reg_dealloc(list,NR_DEFAULTFLAGS);
  4001. a_jmp_always(list,falselabel);
  4002. end;
  4003. {$endif cpuflags}
  4004. else
  4005. begin
  4006. printnode(output,p);
  4007. internalerror(2011010418);
  4008. end;
  4009. end;
  4010. end;
  4011. location_reset_jump(p.location,truelabel,falselabel);
  4012. end
  4013. else
  4014. internalerror(2011010419);
  4015. current_filepos:=storepos;
  4016. end;
  4017. procedure thlcgobj.maybe_change_load_node_reg(list: TAsmList; var n: tnode; reload: boolean);
  4018. var
  4019. rr: treplaceregrec;
  4020. varloc : tai_varloc;
  4021. begin
  4022. if not (n.location.loc in [LOC_CREGISTER,LOC_CFPUREGISTER,LOC_CMMXREGISTER,LOC_CMMREGISTER]) or
  4023. ([fc_inflowcontrol,fc_gotolabel,fc_lefthandled] * flowcontrol <> []) then
  4024. exit;
  4025. rr.old := n.location.register;
  4026. rr.ressym := nil;
  4027. rr.sym := nil;
  4028. rr.oldhi := NR_NO;
  4029. case n.location.loc of
  4030. LOC_CREGISTER:
  4031. begin
  4032. {$ifdef cpu64bitalu}
  4033. if (n.location.size in [OS_128,OS_S128]) then
  4034. begin
  4035. rr.oldhi := n.location.register128.reghi;
  4036. rr.new := cg.getintregister(current_asmdata.CurrAsmList,OS_INT);
  4037. rr.newhi := cg.getintregister(current_asmdata.CurrAsmList,OS_INT);
  4038. end
  4039. else
  4040. {$else cpu64bitalu}
  4041. if (n.location.size in [OS_64,OS_S64]) then
  4042. begin
  4043. rr.oldhi := n.location.register64.reghi;
  4044. rr.new := cg.getintregister(current_asmdata.CurrAsmList,OS_32);
  4045. rr.newhi := cg.getintregister(current_asmdata.CurrAsmList,OS_32);
  4046. end
  4047. else
  4048. {$endif cpu64bitalu}
  4049. if getregtype(rr.old)=R_ADDRESSREGISTER then
  4050. rr.new := hlcg.getaddressregister(current_asmdata.CurrAsmList,n.resultdef)
  4051. else
  4052. rr.new := cg.getintregister(current_asmdata.CurrAsmList,n.location.size);
  4053. end;
  4054. LOC_CFPUREGISTER:
  4055. rr.new := cg.getfpuregister(current_asmdata.CurrAsmList,n.location.size);
  4056. {$ifdef SUPPORT_MMX}
  4057. LOC_CMMXREGISTER:
  4058. rr.new := tcgx86(cg).getmmxregister(current_asmdata.CurrAsmList);
  4059. {$endif SUPPORT_MMX}
  4060. LOC_CMMREGISTER:
  4061. rr.new := cg.getmmregister(current_asmdata.CurrAsmList,n.location.size);
  4062. else
  4063. exit;
  4064. end;
  4065. { self is implicitly returned from constructors, even if there are no
  4066. references to it; additionally, funcretsym is not set for constructor
  4067. procdefs }
  4068. if (current_procinfo.procdef.proctypeoption=potype_constructor) then
  4069. rr.ressym:=tsym(current_procinfo.procdef.parast.Find('self'))
  4070. else if not is_void(current_procinfo.procdef.returndef) and
  4071. assigned(current_procinfo.procdef.funcretsym) and
  4072. (tabstractvarsym(current_procinfo.procdef.funcretsym).refs <> 0) then
  4073. rr.ressym:=current_procinfo.procdef.funcretsym;
  4074. if not foreachnode(n,@do_replace_node_regs,@rr) then
  4075. exit;
  4076. if reload then
  4077. case n.location.loc of
  4078. LOC_CREGISTER:
  4079. begin
  4080. {$ifdef cpu64bitalu}
  4081. if (n.location.size in [OS_128,OS_S128]) then
  4082. cg128.a_load128_reg_reg(list,n.location.register128,joinreg128(rr.new,rr.newhi))
  4083. else
  4084. {$else cpu64bitalu}
  4085. if (n.location.size in [OS_64,OS_S64]) then
  4086. cg64.a_load64_reg_reg(list,n.location.register64,joinreg64(rr.new,rr.newhi))
  4087. else
  4088. {$endif cpu64bitalu}
  4089. a_load_reg_reg(list,n.resultdef,n.resultdef,n.location.register,rr.new);
  4090. end;
  4091. LOC_CFPUREGISTER:
  4092. cg.a_loadfpu_reg_reg(list,n.location.size,n.location.size,n.location.register,rr.new);
  4093. {$ifdef SUPPORT_MMX}
  4094. LOC_CMMXREGISTER:
  4095. cg.a_loadmm_reg_reg(list,OS_M64,OS_M64,n.location.register,rr.new,nil);
  4096. {$endif SUPPORT_MMX}
  4097. LOC_CMMREGISTER:
  4098. a_loadmm_reg_reg(list,n.resultdef,n.resultdef,n.location.register,rr.new,nil);
  4099. else
  4100. internalerror(2006090920);
  4101. end;
  4102. { now that we've change the loadn/temp, also change the node result location }
  4103. {$ifdef cpu64bitalu}
  4104. if (n.location.size in [OS_128,OS_S128]) then
  4105. begin
  4106. n.location.register128.reglo := rr.new;
  4107. n.location.register128.reghi := rr.newhi;
  4108. if assigned(rr.sym) then
  4109. begin
  4110. varloc:=tai_varloc.create128(rr.sym,rr.new,rr.newhi);
  4111. list.concat(varloc);
  4112. end;
  4113. end
  4114. else
  4115. {$else cpu64bitalu}
  4116. if (n.location.size in [OS_64,OS_S64]) then
  4117. begin
  4118. n.location.register64.reglo := rr.new;
  4119. n.location.register64.reghi := rr.newhi;
  4120. if assigned(rr.sym) then
  4121. begin
  4122. varloc:=tai_varloc.create64(rr.sym,rr.new,rr.newhi);
  4123. list.concat(varloc);
  4124. end;
  4125. end
  4126. else
  4127. {$endif cpu64bitalu}
  4128. begin
  4129. n.location.register := rr.new;
  4130. if assigned(rr.sym) then
  4131. begin
  4132. varloc:=tai_varloc.create(rr.sym,rr.new);
  4133. list.concat(varloc);
  4134. end;
  4135. end;
  4136. end;
  4137. function thlcgobj.do_replace_node_regs(var n: tnode; para: pointer): foreachnoderesult;
  4138. var
  4139. rr: preplaceregrec absolute para;
  4140. begin
  4141. result := fen_false;
  4142. if (nf_is_funcret in n.flags) and (fc_exit in flowcontrol) then
  4143. exit;
  4144. case n.nodetype of
  4145. loadn:
  4146. begin
  4147. if (tloadnode(n).symtableentry.typ in [localvarsym,paravarsym,staticvarsym]) and
  4148. (tabstractvarsym(tloadnode(n).symtableentry).varoptions * [vo_is_dll_var, vo_is_thread_var] = []) and
  4149. not assigned(tloadnode(n).left) and
  4150. ((tloadnode(n).symtableentry <> rr^.ressym) or
  4151. not(fc_exit in flowcontrol)
  4152. ) and
  4153. (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.loc in [LOC_CREGISTER,LOC_CFPUREGISTER,LOC_CMMXREGISTER,LOC_CMMREGISTER]) and
  4154. (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.register = rr^.old) then
  4155. begin
  4156. {$ifdef cpu64bitalu}
  4157. { it's possible a 128 bit location was shifted and/xor typecasted }
  4158. { in a 64 bit value, so only 1 register was left in the location }
  4159. if (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.size in [OS_128,OS_S128]) then
  4160. if (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.register128.reghi = rr^.oldhi) then
  4161. tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.register128.reghi := rr^.newhi
  4162. else
  4163. exit;
  4164. {$else cpu64bitalu}
  4165. { it's possible a 64 bit location was shifted and/xor typecasted }
  4166. { in a 32 bit value, so only 1 register was left in the location }
  4167. if (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.size in [OS_64,OS_S64]) then
  4168. if (tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.register64.reghi = rr^.oldhi) then
  4169. tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.register64.reghi := rr^.newhi
  4170. else
  4171. exit;
  4172. {$endif cpu64bitalu}
  4173. tabstractnormalvarsym(tloadnode(n).symtableentry).localloc.register := rr^.new;
  4174. rr^.sym := tabstractnormalvarsym(tloadnode(n).symtableentry);
  4175. result := fen_norecurse_true;
  4176. end;
  4177. end;
  4178. temprefn:
  4179. begin
  4180. if (ti_valid in ttemprefnode(n).tempflags) and
  4181. (ttemprefnode(n).tempinfo^.location.loc in [LOC_CREGISTER,LOC_CFPUREGISTER,LOC_CMMXREGISTER,LOC_CMMREGISTER]) and
  4182. (ttemprefnode(n).tempinfo^.location.register = rr^.old) then
  4183. begin
  4184. {$ifdef cpu64bitalu}
  4185. { it's possible a 128 bit location was shifted and/xor typecasted }
  4186. { in a 64 bit value, so only 1 register was left in the location }
  4187. if (ttemprefnode(n).tempinfo^.location.size in [OS_128,OS_S128]) then
  4188. if (ttemprefnode(n).tempinfo^.location.register128.reghi = rr^.oldhi) then
  4189. ttemprefnode(n).tempinfo^.location.register128.reghi := rr^.newhi
  4190. else
  4191. exit;
  4192. {$else cpu64bitalu}
  4193. { it's possible a 64 bit location was shifted and/xor typecasted }
  4194. { in a 32 bit value, so only 1 register was left in the location }
  4195. if (ttemprefnode(n).tempinfo^.location.size in [OS_64,OS_S64]) then
  4196. if (ttemprefnode(n).tempinfo^.location.register64.reghi = rr^.oldhi) then
  4197. ttemprefnode(n).tempinfo^.location.register64.reghi := rr^.newhi
  4198. else
  4199. exit;
  4200. {$endif cpu64bitalu}
  4201. ttemprefnode(n).tempinfo^.location.register := rr^.new;
  4202. result := fen_norecurse_true;
  4203. end;
  4204. end;
  4205. { optimize the searching a bit }
  4206. derefn,addrn,
  4207. calln,inlinen,casen,
  4208. addn,subn,muln,
  4209. andn,orn,xorn,
  4210. ltn,lten,gtn,gten,equaln,unequaln,
  4211. slashn,divn,shrn,shln,notn,
  4212. inn,
  4213. asn,isn:
  4214. result := fen_norecurse_false;
  4215. else
  4216. ;
  4217. end;
  4218. end;
  4219. procedure thlcgobj.gen_proc_symbol(list: TAsmList);
  4220. var
  4221. firstitem,
  4222. item: TCmdStrListItem;
  4223. global: boolean;
  4224. begin
  4225. item:=TCmdStrListItem(current_procinfo.procdef.aliasnames.first);
  4226. firstitem:=item;
  4227. global:=current_procinfo.procdef.needsglobalasmsym;
  4228. while assigned(item) do
  4229. begin
  4230. {$ifdef arm}
  4231. if GenerateThumbCode or GenerateThumb2Code then
  4232. list.concat(tai_directive.create(asd_thumb_func,''));
  4233. {$endif arm}
  4234. { alias procedure entry symbols via ".set" on Darwin, otherwise
  4235. they can be interpreted as all different starting symbols of
  4236. subsections and be reordered }
  4237. if (item<>firstitem) and
  4238. (target_info.system in systems_darwin) then
  4239. begin
  4240. { the .set already defines the symbol, so can't emit a tai_symbol as that will redefine it }
  4241. if global then
  4242. begin
  4243. list.concat(tai_symbolpair.create(spk_set_global,item.str,firstitem.str));
  4244. end
  4245. else
  4246. begin
  4247. list.concat(tai_symbolpair.create(spk_set,item.str,firstitem.str));
  4248. end;
  4249. end
  4250. else
  4251. begin
  4252. if global then
  4253. list.concat(Tai_symbol.createname_global(item.str,AT_FUNCTION,0,current_procinfo.procdef))
  4254. else
  4255. list.concat(Tai_symbol.Createname_hidden(item.str,AT_FUNCTION,0,current_procinfo.procdef));
  4256. if not(af_stabs_use_function_absolute_addresses in target_asm.flags) then
  4257. list.concat(Tai_function_name.create(item.str));
  4258. end;
  4259. item:=TCmdStrListItem(item.next);
  4260. end;
  4261. current_procinfo.procdef.procstarttai:=tai(list.last);
  4262. end;
  4263. procedure thlcgobj.gen_proc_symbol_end(list: TAsmList);
  4264. begin
  4265. list.concat(Tai_symbol_end.Createname(current_procinfo.procdef.mangledname));
  4266. current_procinfo.procdef.procendtai:=tai(list.last);
  4267. end;
  4268. procedure thlcgobj.handle_external_proc(list: TAsmList; pd: tprocdef; const importname: TSymStr);
  4269. begin
  4270. { External declared in implementation, and there was already a
  4271. forward (or interface) declaration then we need to generate
  4272. a stub that calls the external routine }
  4273. if (not pd.forwarddef) and
  4274. (pd.hasforward) then
  4275. begin
  4276. if importname<>'' then
  4277. begin
  4278. { add the procedure to the al_procedures }
  4279. g_external_wrapper(list,pd,pd.mangledname,importname,true);
  4280. end;
  4281. { remove the external stuff, so that the interface crc
  4282. doesn't change. This makes the function calls less
  4283. efficient, but it means that the interface doesn't
  4284. change if the function is ever redirected to another
  4285. function or implemented in the unit. }
  4286. pd.procoptions:=pd.procoptions-[po_external,po_has_importname,po_has_importdll];
  4287. stringdispose(pd.import_name);
  4288. stringdispose(pd.import_dll);
  4289. pd.import_nr:=0;
  4290. end;
  4291. end;
  4292. procedure thlcgobj.gen_initialize_code(list: TAsmList);
  4293. begin
  4294. { initialize global register variables }
  4295. case current_procinfo.procdef.proctypeoption of
  4296. potype_unitinit,
  4297. potype_proginit:
  4298. TSymtable(current_module.localsymtable).SymList.ForEachCall(@initialize_regvars,list);
  4299. else
  4300. ;
  4301. end;
  4302. { initialises temp. ansi/wide string data }
  4303. if (current_procinfo.procdef.proctypeoption<>potype_exceptfilter) then
  4304. inittempvariables(list);
  4305. {$ifdef OLDREGVARS}
  4306. load_regvars(list,nil);
  4307. {$endif OLDREGVARS}
  4308. end;
  4309. procedure thlcgobj.gen_finalize_code(list: TAsmList);
  4310. var
  4311. old_current_procinfo: tprocinfo;
  4312. begin
  4313. old_current_procinfo:=current_procinfo;
  4314. if (current_procinfo.procdef.proctypeoption=potype_exceptfilter) then
  4315. begin
  4316. if (current_procinfo.parent.finalize_procinfo<>current_procinfo) then
  4317. exit;
  4318. current_procinfo:=current_procinfo.parent;
  4319. end;
  4320. {$ifdef OLDREGVARS}
  4321. cleanup_regvars(list);
  4322. {$endif OLDREGVARS}
  4323. { finalize paras data }
  4324. if assigned(current_procinfo.procdef.parast) and
  4325. not(po_assembler in current_procinfo.procdef.procoptions) then
  4326. current_procinfo.procdef.parast.SymList.ForEachCall(@final_paras,list);
  4327. { finalize temporary data }
  4328. finalizetempvariables(list);
  4329. current_procinfo:=old_current_procinfo;
  4330. end;
  4331. procedure thlcgobj.varsym_set_localloc(list: TAsmList; vs: tabstractnormalvarsym);
  4332. begin
  4333. if cs_asm_source in current_settings.globalswitches then
  4334. begin
  4335. case vs.initialloc.loc of
  4336. LOC_REFERENCE :
  4337. begin
  4338. if not assigned(vs.initialloc.reference.symbol) then
  4339. list.concat(Tai_comment.Create(strpnew('Var '+vs.realname+' located at '+
  4340. std_regname(vs.initialloc.reference.base)+tostr_with_plus(vs.initialloc.reference.offset)+
  4341. ', size='+tcgsize2str(vs.initialloc.size))));
  4342. end;
  4343. else
  4344. ;
  4345. end;
  4346. end;
  4347. vs.localloc:=vs.initialloc;
  4348. end;
  4349. procedure thlcgobj.paravarsym_set_initialloc_to_paraloc(vs: tparavarsym);
  4350. begin
  4351. reference_reset_base(vs.initialloc.reference,voidstackpointertype,tparavarsym(vs).paraloc[calleeside].location^.reference.index,
  4352. tparavarsym(vs).paraloc[calleeside].location^.reference.offset,ctempposinvalid,
  4353. tparavarsym(vs).paraloc[calleeside].alignment,[]);
  4354. end;
  4355. procedure thlcgobj.gen_entry_code(list: TAsmList);
  4356. begin
  4357. { the actual profile code can clobber some registers,
  4358. therefore if the context must be saved, do it before
  4359. the actual call to the profile code
  4360. }
  4361. if (cs_profile in current_settings.moduleswitches) and
  4362. not(po_assembler in current_procinfo.procdef.procoptions) then
  4363. begin
  4364. { non-win32 can call mcout even in main }
  4365. if not (target_info.system in [system_i386_win32,system_i386_wdosx]) or
  4366. not (current_procinfo.procdef.proctypeoption=potype_proginit) then
  4367. begin
  4368. g_profilecode(list);
  4369. end;
  4370. end;
  4371. { call startup helpers from main program }
  4372. if (current_procinfo.procdef.proctypeoption=potype_proginit) then
  4373. begin
  4374. { initialize units }
  4375. if not(current_module.islibrary) then
  4376. {$ifdef AVR}
  4377. cg.a_call_name(list,'FPC_INIT_FUNC_TABLE',false)
  4378. {$else AVR}
  4379. g_call_system_proc(list,'fpc_initializeunits',[],nil).resetiftemp
  4380. {$endif AVR}
  4381. else
  4382. g_call_system_proc(list,'fpc_libinitializeunits',[],nil).resetiftemp;
  4383. end;
  4384. list.concat(Tai_force_line.Create);
  4385. {$ifdef OLDREGVARS}
  4386. load_regvars(list,nil);
  4387. {$endif OLDREGVARS}
  4388. end;
  4389. procedure thlcgobj.gen_exit_code(list: TAsmList);
  4390. begin
  4391. { TODO: create high level version (create compilerproc in system unit,
  4392. look up procdef, use hlcgobj.a_call_name()) }
  4393. { call __EXIT for main program }
  4394. if (not current_module.islibrary) and
  4395. (current_procinfo.procdef.proctypeoption=potype_proginit) then
  4396. g_call_system_proc(list,'fpc_do_exit',[],nil).resetiftemp;
  4397. end;
  4398. procedure thlcgobj.inittempvariables(list: TAsmList);
  4399. var
  4400. hp : ptemprecord;
  4401. href : treference;
  4402. begin
  4403. hp:=tg.templist;
  4404. while assigned(hp) do
  4405. begin
  4406. if hp^.fini and
  4407. assigned(hp^.def) and
  4408. is_managed_type(hp^.def) then
  4409. begin
  4410. tg.temp_to_ref(hp,href);
  4411. g_initialize(list,hp^.def,href);
  4412. end;
  4413. hp:=hp^.next;
  4414. end;
  4415. end;
  4416. procedure thlcgobj.finalizetempvariables(list: TAsmList);
  4417. var
  4418. hp : ptemprecord;
  4419. href : treference;
  4420. begin
  4421. hp:=tg.templist;
  4422. while assigned(hp) do
  4423. begin
  4424. if hp^.fini and
  4425. assigned(hp^.def) and
  4426. is_managed_type(hp^.def) then
  4427. begin
  4428. include(current_procinfo.flags,pi_needs_implicit_finally);
  4429. tg.temp_to_ref(hp,href);
  4430. g_finalize(list,hp^.def,href);
  4431. end;
  4432. hp:=hp^.next;
  4433. end;
  4434. end;
  4435. procedure thlcgobj.initialize_regvars(p: TObject; arg: pointer);
  4436. var
  4437. href : treference;
  4438. begin
  4439. if (tsym(p).typ=staticvarsym) and not(tstaticvarsym(p).noregvarinitneeded) then
  4440. begin
  4441. { Static variables can have the initialloc only set to LOC_CxREGISTER
  4442. or LOC_INVALID, for explaination see gen_alloc_symtable (PFV) }
  4443. case tstaticvarsym(p).initialloc.loc of
  4444. LOC_CREGISTER :
  4445. begin
  4446. {$ifdef cpu64bitalu}
  4447. if (tstaticvarsym(p).initialloc.size in [OS_128,OS_S128]) then
  4448. cg128.a_load128_const_reg(TAsmList(arg),0,0,tstaticvarsym(p).initialloc.register128)
  4449. else
  4450. {$else cpu64bitalu}
  4451. if (tstaticvarsym(p).initialloc.size in [OS_64,OS_S64]) then
  4452. cg64.a_load64_const_reg(TAsmList(arg),0,tstaticvarsym(p).initialloc.register64)
  4453. else
  4454. {$endif cpu64bitalu}
  4455. a_load_const_reg(TAsmList(arg),tstaticvarsym(p).vardef,0,
  4456. tstaticvarsym(p).initialloc.register);
  4457. end;
  4458. LOC_CMMREGISTER :
  4459. { clear the whole register }
  4460. a_opmm_reg_reg(TAsmList(arg),OP_XOR,tstaticvarsym(p).vardef,
  4461. tstaticvarsym(p).initialloc.register,
  4462. tstaticvarsym(p).initialloc.register,
  4463. nil);
  4464. LOC_CFPUREGISTER :
  4465. begin
  4466. { initialize fpu regvar by loading from memory }
  4467. reference_reset_symbol(href,
  4468. current_asmdata.RefAsmSymbol(tstaticvarsym(p).mangledname,AT_DATA), 0,
  4469. var_align(tstaticvarsym(p).vardef.alignment),[]);
  4470. a_loadfpu_ref_reg(TAsmList(arg), tstaticvarsym(p).vardef,
  4471. tstaticvarsym(p).vardef, href, tstaticvarsym(p).initialloc.register);
  4472. end;
  4473. LOC_INVALID :
  4474. ;
  4475. else
  4476. internalerror(200410124);
  4477. end;
  4478. end;
  4479. end;
  4480. procedure thlcgobj.final_paras(p: TObject; arg: pointer);
  4481. var
  4482. list : TAsmList;
  4483. href : treference;
  4484. hsym : tparavarsym;
  4485. eldef : tdef;
  4486. highloc : tlocation;
  4487. begin
  4488. if not(tsym(p).typ=paravarsym) then
  4489. exit;
  4490. list:=TAsmList(arg);
  4491. if is_managed_type(tparavarsym(p).vardef) then
  4492. begin
  4493. if (tparavarsym(p).varspez=vs_value) then
  4494. begin
  4495. include(current_procinfo.flags,pi_needs_implicit_finally);
  4496. location_get_data_ref(list,tparavarsym(p).vardef,tparavarsym(p).localloc,href,
  4497. is_open_array(tparavarsym(p).vardef) or
  4498. ((target_info.system in systems_caller_copy_addr_value_para) and
  4499. paramanager.push_addr_param(vs_value,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption)),
  4500. sizeof(pint));
  4501. if is_open_array(tparavarsym(p).vardef) then
  4502. begin
  4503. if paramanager.push_high_param(tparavarsym(p).varspez,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption) then
  4504. begin
  4505. hsym:=tparavarsym(get_high_value_sym(tparavarsym(p)));
  4506. if not assigned(hsym) then
  4507. internalerror(201003032);
  4508. highloc:=hsym.initialloc
  4509. end
  4510. else
  4511. highloc.loc:=LOC_INVALID;
  4512. eldef:=tarraydef(tparavarsym(p).vardef).elementdef;
  4513. g_ptrtypecast_ref(list,cpointerdef.getreusable(tparavarsym(p).vardef),cpointerdef.getreusable(eldef),href);
  4514. g_array_rtti_helper(list,eldef,href,highloc,'fpc_finalize_array');
  4515. end
  4516. else
  4517. g_finalize(list,tparavarsym(p).vardef,href);
  4518. end;
  4519. end;
  4520. { open arrays can contain elements requiring init/final code, so the else has been removed here }
  4521. if not(target_info.system in systems_caller_copy_addr_value_para) and
  4522. (tparavarsym(p).varspez=vs_value) and
  4523. (is_open_array(tparavarsym(p).vardef) or
  4524. is_array_of_const(tparavarsym(p).vardef)) then
  4525. begin
  4526. { cdecl functions don't have a high pointer so it is not possible to generate
  4527. a local copy }
  4528. if not(current_procinfo.procdef.proccalloption in cdecl_pocalls) then
  4529. g_releasevaluepara_openarray(list,tarraydef(tparavarsym(p).vardef),tparavarsym(p).localloc);
  4530. end;
  4531. end;
  4532. { generates the code for incrementing the reference count of parameters and
  4533. initialize out parameters }
  4534. { generates the code for incrementing the reference count of parameters and
  4535. initialize out parameters }
  4536. procedure thlcgobj.init_paras(p:TObject;arg:pointer);
  4537. var
  4538. href : treference;
  4539. hsym : tparavarsym;
  4540. eldef : tdef;
  4541. list : TAsmList;
  4542. highloc : tlocation;
  4543. needs_inittable : boolean;
  4544. begin
  4545. list:=TAsmList(arg);
  4546. if (tsym(p).typ=paravarsym) then
  4547. begin
  4548. needs_inittable:=is_managed_type(tparavarsym(p).vardef);
  4549. case tparavarsym(p).varspez of
  4550. vs_value :
  4551. if needs_inittable then
  4552. begin
  4553. { variants are already handled by the call to fpc_variant_copy_overwrite if
  4554. they are passed by reference }
  4555. if not((tparavarsym(p).vardef.typ=variantdef) and
  4556. paramanager.push_addr_param(tparavarsym(p).varspez,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption)) then
  4557. begin
  4558. location_get_data_ref(list,tparavarsym(p).vardef,tparavarsym(p).initialloc,href,
  4559. is_open_array(tparavarsym(p).vardef) or
  4560. ((target_info.system in systems_caller_copy_addr_value_para) and
  4561. paramanager.push_addr_param(vs_value,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption)),
  4562. sizeof(pint));
  4563. if is_open_array(tparavarsym(p).vardef) then
  4564. begin
  4565. if paramanager.push_high_param(tparavarsym(p).varspez,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption) then
  4566. begin
  4567. hsym:=tparavarsym(get_high_value_sym(tparavarsym(p)));
  4568. if not assigned(hsym) then
  4569. internalerror(201003032);
  4570. highloc:=hsym.initialloc
  4571. end
  4572. else
  4573. highloc.loc:=LOC_INVALID;
  4574. { open arrays do not contain correct element count in their rtti,
  4575. the actual count must be passed separately. }
  4576. eldef:=tarraydef(tparavarsym(p).vardef).elementdef;
  4577. g_ptrtypecast_ref(list,cpointerdef.getreusable(tparavarsym(p).vardef),cpointerdef.getreusable(eldef),href);
  4578. g_array_rtti_helper(list,eldef,href,highloc,'fpc_addref_array');
  4579. end
  4580. else
  4581. g_incrrefcount(list,tparavarsym(p).vardef,href);
  4582. end;
  4583. end;
  4584. vs_out :
  4585. begin
  4586. if needs_inittable then
  4587. begin
  4588. { we have no idea about the alignment at the callee side,
  4589. and the user also cannot specify "unaligned" here, so
  4590. assume worst case }
  4591. location_get_data_ref(list,tparavarsym(p).vardef,tparavarsym(p).initialloc,href,true,1);
  4592. if needs_inittable then
  4593. begin
  4594. if is_open_array(tparavarsym(p).vardef) then
  4595. begin
  4596. if paramanager.push_high_param(tparavarsym(p).varspez,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption) then
  4597. begin
  4598. hsym:=tparavarsym(get_high_value_sym(tparavarsym(p)));
  4599. if not assigned(hsym) then
  4600. internalerror(201003032);
  4601. highloc:=hsym.initialloc
  4602. end
  4603. else
  4604. highloc.loc:=LOC_INVALID;
  4605. eldef:=tarraydef(tparavarsym(p).vardef).elementdef;
  4606. g_ptrtypecast_ref(list,cpointerdef.getreusable(tparavarsym(p).vardef),cpointerdef.getreusable(eldef),href);
  4607. g_array_rtti_helper(list,eldef,href,highloc,'fpc_initialize_array');
  4608. end
  4609. else
  4610. g_initialize(list,tparavarsym(p).vardef,href);
  4611. end;
  4612. end;
  4613. end;
  4614. else
  4615. ;
  4616. end;
  4617. end;
  4618. end;
  4619. procedure thlcgobj.gen_load_para_value(list: TAsmList);
  4620. var
  4621. i: longint;
  4622. currpara: tparavarsym;
  4623. begin
  4624. if (po_assembler in current_procinfo.procdef.procoptions) or
  4625. { exceptfilters have a single hidden 'parentfp' parameter, which
  4626. is handled by tcg.g_proc_entry. }
  4627. (current_procinfo.procdef.proctypeoption=potype_exceptfilter) then
  4628. exit;
  4629. { Copy parameters to local references/registers }
  4630. for i:=0 to current_procinfo.procdef.paras.count-1 do
  4631. begin
  4632. currpara:=tparavarsym(current_procinfo.procdef.paras[i]);
  4633. { don't use currpara.vardef, as this will be wrong in case of
  4634. call-by-reference parameters (it won't contain the pointer) }
  4635. gen_load_cgpara_loc(list,currpara.paraloc[calleeside].def,currpara.paraloc[calleeside],currpara.initialloc,paramanager.param_use_paraloc(currpara.paraloc[calleeside]));
  4636. end;
  4637. { generate copies of call by value parameters, must be done before
  4638. the initialization and body is parsed because the refcounts are
  4639. incremented using the local copies }
  4640. current_procinfo.procdef.parast.SymList.ForEachCall(@g_copyvalueparas,list);
  4641. if not(po_assembler in current_procinfo.procdef.procoptions) then
  4642. begin
  4643. { initialize refcounted paras, and trash others. Needed here
  4644. instead of in gen_initialize_code, because when a reference is
  4645. intialised or trashed while the pointer to that reference is kept
  4646. in a regvar, we add a register move and that one again has to
  4647. come after the parameter loading code as far as the register
  4648. allocator is concerned }
  4649. current_procinfo.procdef.parast.SymList.ForEachCall(@init_paras,list);
  4650. end;
  4651. end;
  4652. procedure thlcgobj.g_copyvalueparas(p: TObject; arg: pointer);
  4653. var
  4654. href : treference;
  4655. hreg : tregister;
  4656. list : TAsmList;
  4657. hsym : tparavarsym;
  4658. l : longint;
  4659. highloc,
  4660. localcopyloc : tlocation;
  4661. begin
  4662. list:=TAsmList(arg);
  4663. if (tsym(p).typ=paravarsym) and
  4664. ((vo_has_local_copy in tparavarsym(p).varoptions) or
  4665. (not(target_info.system in systems_caller_copy_addr_value_para) and
  4666. (is_open_array(tparavarsym(p).vardef) or
  4667. is_array_of_const(tparavarsym(p).vardef)) and
  4668. (tparavarsym(p).varspez=vs_value))) then
  4669. begin
  4670. { we have no idea about the alignment at the caller side }
  4671. location_get_data_ref(list,tparavarsym(p).vardef,tparavarsym(p).initialloc,href,true,1);
  4672. if is_open_array(tparavarsym(p).vardef) or
  4673. is_array_of_const(tparavarsym(p).vardef) then
  4674. begin
  4675. { cdecl functions don't have a high pointer so it is not possible to generate
  4676. a local copy }
  4677. if not(current_procinfo.procdef.proccalloption in cdecl_pocalls) then
  4678. begin
  4679. if paramanager.push_high_param(tparavarsym(p).varspez,tparavarsym(p).vardef,current_procinfo.procdef.proccalloption) then
  4680. begin
  4681. hsym:=tparavarsym(get_high_value_sym(tparavarsym(p)));
  4682. if not assigned(hsym) then
  4683. internalerror(2011020506);
  4684. highloc:=hsym.initialloc
  4685. end
  4686. else
  4687. highloc.loc:=LOC_INVALID;
  4688. hreg:=getaddressregister(list,voidpointertype);
  4689. if not is_packed_array(tparavarsym(p).vardef) then
  4690. g_copyvaluepara_openarray(list,href,highloc,tarraydef(tparavarsym(p).vardef),hreg)
  4691. else
  4692. internalerror(2011020507);
  4693. // cg.g_copyvaluepara_packedopenarray(list,href,hsym.intialloc,tarraydef(tparavarsym(p).vardef).elepackedbitsize,hreg);
  4694. a_load_reg_loc(list,cpointerdef.getreusable(tparavarsym(p).vardef),cpointerdef.getreusable(tparavarsym(p).vardef),hreg,tparavarsym(p).initialloc);
  4695. end;
  4696. end
  4697. else
  4698. begin
  4699. { Allocate space for the local copy }
  4700. l:=tparavarsym(p).getsize;
  4701. localcopyloc.loc:=LOC_REFERENCE;
  4702. localcopyloc.size:=int_cgsize(l);
  4703. tg.GetLocal(list,l,tparavarsym(p).vardef,localcopyloc.reference);
  4704. { Copy data }
  4705. if is_shortstring(tparavarsym(p).vardef) then
  4706. begin
  4707. { this code is only executed before the code for the body and the entry/exit code is generated
  4708. so we're allowed to include pi_do_call here; after pass1 is run, this isn't allowed anymore
  4709. }
  4710. include(current_procinfo.flags,pi_do_call);
  4711. g_copyshortstring(list,href,localcopyloc.reference,tstringdef(tparavarsym(p).vardef))
  4712. end
  4713. else if tparavarsym(p).vardef.typ=variantdef then
  4714. begin
  4715. { this code is only executed before the code for the body and the entry/exit code is generated
  4716. so we're allowed to include pi_do_call here; after pass1 is run, this isn't allowed anymore
  4717. }
  4718. include(current_procinfo.flags,pi_do_call);
  4719. g_copyvariant(list,href,localcopyloc.reference,tvariantdef(tparavarsym(p).vardef))
  4720. end
  4721. else
  4722. begin
  4723. g_concatcopy(list,tparavarsym(p).vardef,href,localcopyloc.reference);
  4724. end;
  4725. { update localloc of varsym }
  4726. if tparavarsym(p).localloc.loc in [LOC_REFERENCE,LOC_CREFERENCE] then
  4727. tg.Ungetlocal(list,tparavarsym(p).localloc.reference);
  4728. tparavarsym(p).localloc:=localcopyloc;
  4729. tparavarsym(p).initialloc:=localcopyloc;
  4730. end;
  4731. end;
  4732. end;
  4733. procedure thlcgobj.gen_loadfpu_loc_cgpara(list: TAsmList; size: tdef; const l: tlocation; const cgpara: tcgpara; locintsize: longint);
  4734. var
  4735. tmploc: tlocation;
  4736. begin
  4737. case l.loc of
  4738. LOC_MMREGISTER,
  4739. LOC_CMMREGISTER:
  4740. case cgpara.location^.loc of
  4741. LOC_REFERENCE,
  4742. LOC_CREFERENCE,
  4743. LOC_MMREGISTER,
  4744. LOC_CMMREGISTER,
  4745. LOC_REGISTER,
  4746. LOC_CREGISTER :
  4747. a_loadmm_reg_cgpara(list,size,l.register,cgpara,mms_movescalar);
  4748. LOC_FPUREGISTER,
  4749. LOC_CFPUREGISTER:
  4750. begin
  4751. tmploc:=l;
  4752. location_force_fpureg(list,tmploc,size,false);
  4753. a_loadfpu_reg_cgpara(list,size,tmploc.register,cgpara);
  4754. end;
  4755. else
  4756. internalerror(200204249);
  4757. end;
  4758. LOC_FPUREGISTER,
  4759. LOC_CFPUREGISTER:
  4760. case cgpara.location^.loc of
  4761. LOC_MMREGISTER,
  4762. LOC_CMMREGISTER:
  4763. begin
  4764. tmploc:=l;
  4765. location_force_mmregscalar(list,tmploc,size,false);
  4766. a_loadmm_reg_cgpara(list,size,tmploc.register,cgpara,mms_movescalar);
  4767. end;
  4768. { Some targets pass floats in normal registers }
  4769. LOC_REGISTER,
  4770. LOC_CREGISTER,
  4771. LOC_REFERENCE,
  4772. LOC_CREFERENCE,
  4773. LOC_FPUREGISTER,
  4774. LOC_CFPUREGISTER:
  4775. a_loadfpu_reg_cgpara(list,size,l.register,cgpara);
  4776. else
  4777. internalerror(2011010210);
  4778. end;
  4779. LOC_REFERENCE,
  4780. LOC_CREFERENCE:
  4781. case cgpara.location^.loc of
  4782. LOC_MMREGISTER,
  4783. LOC_CMMREGISTER:
  4784. a_loadmm_ref_cgpara(list,size,l.reference,cgpara,mms_movescalar);
  4785. { Some targets pass floats in normal registers }
  4786. LOC_REGISTER,
  4787. LOC_CREGISTER,
  4788. LOC_REFERENCE,
  4789. LOC_CREFERENCE,
  4790. LOC_FPUREGISTER,
  4791. LOC_CFPUREGISTER:
  4792. a_loadfpu_ref_cgpara(list,size,l.reference,cgpara);
  4793. else
  4794. internalerror(2011010211);
  4795. end;
  4796. LOC_REGISTER,
  4797. LOC_CREGISTER :
  4798. a_load_loc_cgpara(list,size,l,cgpara);
  4799. else
  4800. internalerror(2011010212);
  4801. end;
  4802. end;
  4803. procedure thlcgobj.gen_load_uninitialized_function_result(list: TAsmList; pd: tprocdef; resdef: tdef; const resloc: tcgpara);
  4804. begin
  4805. { do nothing by default }
  4806. end;
  4807. procedure thlcgobj.gen_load_loc_function_result(list: TAsmList; vardef: tdef; const l: tlocation);
  4808. var
  4809. safecallretpara: tcgpara;
  4810. begin
  4811. if not current_procinfo.procdef.generate_safecall_wrapper then
  4812. gen_load_loc_cgpara(list,vardef,l,current_procinfo.procdef.funcretloc[calleeside])
  4813. else
  4814. begin
  4815. safecallretpara:=paramanager.get_safecallresult_funcretloc(current_procinfo.procdef,calleeside);
  4816. gen_load_loc_cgpara(list,vardef,l,safecallretpara);
  4817. safecallretpara.resetiftemp;
  4818. end;
  4819. end;
  4820. procedure thlcgobj.gen_load_loc_cgpara(list: TAsmList; vardef: tdef; const l: tlocation; const cgpara: tcgpara);
  4821. var
  4822. tmploc: tlocation;
  4823. begin
  4824. { skip e.g. empty records }
  4825. if (cgpara.location^.loc = LOC_VOID) then
  4826. exit;
  4827. { Handle Floating point types differently
  4828. This doesn't depend on emulator settings, emulator settings should
  4829. be handled by cpupara }
  4830. if (vardef.typ=floatdef) or
  4831. { some ABIs return certain records in an fpu register }
  4832. (l.loc in [LOC_FPUREGISTER,LOC_CFPUREGISTER]) or
  4833. (assigned(cgpara.location) and
  4834. (cgpara.Location^.loc in [LOC_FPUREGISTER,LOC_CFPUREGISTER])) then
  4835. begin
  4836. gen_loadfpu_loc_cgpara(list,vardef,l,cgpara,vardef.size);
  4837. exit;
  4838. end;
  4839. { in case of multiple locations, force the source to memory as only
  4840. a_load_ref_cgpara supports multiple locations }
  4841. if assigned(cgpara.location^.next) and
  4842. not(l.loc in [LOC_REFERENCE,LOC_CREFERENCE]) then
  4843. begin
  4844. tmploc:=l;
  4845. location_force_mem(list,tmploc,vardef);
  4846. a_load_loc_cgpara(list,vardef,tmploc,cgpara);
  4847. location_freetemp(list,tmploc);
  4848. exit;
  4849. end;
  4850. case l.loc of
  4851. LOC_CONSTANT,
  4852. LOC_REGISTER,
  4853. LOC_CREGISTER,
  4854. LOC_REFERENCE,
  4855. LOC_CREFERENCE :
  4856. begin
  4857. a_load_loc_cgpara(list,vardef,l,cgpara);
  4858. end;
  4859. LOC_MMREGISTER,
  4860. LOC_CMMREGISTER:
  4861. begin
  4862. if use_vectorfpu(vardef) then
  4863. a_loadmm_loc_cgpara(list,vardef,l,cgpara,mms_movescalar)
  4864. else
  4865. { no vector support yet }
  4866. internalerror(2012071212);
  4867. {
  4868. cg.a_loadmm_loc_cgpara(list,l,cgpara,nil);
  4869. }
  4870. end;
  4871. else
  4872. internalerror(2011010213);
  4873. end;
  4874. end;
  4875. procedure thlcgobj.gen_load_cgpara_loc(list: TAsmList; vardef: tdef; const para: TCGPara; var destloc: tlocation; reusepara: boolean);
  4876. var
  4877. href : treference;
  4878. begin
  4879. para.check_simple_location;
  4880. { skip e.g. empty records }
  4881. if (para.location^.loc = LOC_VOID) then
  4882. exit;
  4883. case destloc.loc of
  4884. LOC_REFERENCE :
  4885. begin
  4886. { If the parameter location is reused we don't need to copy
  4887. anything }
  4888. if not reusepara then
  4889. begin
  4890. case para.location^.loc of
  4891. LOC_REFERENCE,LOC_CREFERENCE:
  4892. begin
  4893. reference_reset_base(href,voidstackpointertype,para.location^.reference.index,para.location^.reference.offset,ctempposinvalid,para.alignment,[]);
  4894. a_load_ref_ref(list,para.def,para.def,href,destloc.reference);
  4895. end;
  4896. else
  4897. internalerror(2013102301);
  4898. end;
  4899. end;
  4900. end;
  4901. { TODO other possible locations }
  4902. else
  4903. internalerror(2011010308);
  4904. end;
  4905. end;
  4906. procedure thlcgobj.gen_load_return_value(list: TAsmList);
  4907. var
  4908. ressym : tsym;
  4909. retdef : tdef;
  4910. begin
  4911. { Is the loading needed? }
  4912. if (is_void(current_procinfo.procdef.returndef) and
  4913. not current_procinfo.procdef.generate_safecall_wrapper) or
  4914. (
  4915. (po_assembler in current_procinfo.procdef.procoptions) and
  4916. (current_procinfo.procdef.generate_safecall_wrapper or
  4917. not assigned(current_procinfo.procdef.funcretsym) or
  4918. (tabstractvarsym(current_procinfo.procdef.funcretsym).refs=0) or
  4919. (po_nostackframe in current_procinfo.procdef.procoptions)
  4920. )
  4921. ) then
  4922. exit;
  4923. { constructors return self }
  4924. if current_procinfo.procdef.generate_safecall_wrapper then
  4925. begin
  4926. if not current_procinfo.procdef.get_safecall_funcretsym_info(ressym,retdef) then
  4927. internalerror(2019112402);
  4928. gen_load_loc_function_result(list,retdef,tabstractnormalvarsym(ressym).localloc);
  4929. end
  4930. else
  4931. begin
  4932. if not current_procinfo.procdef.get_funcretsym_info(ressym,retdef) then
  4933. internalerror(2018122501);
  4934. if (ressym.refs>0) or
  4935. is_managed_type(retdef) then
  4936. begin
  4937. { was: don't do anything if funcretloc.loc in [LOC_INVALID,LOC_REFERENCE] }
  4938. if not paramanager.ret_in_param(current_procinfo.procdef.returndef,current_procinfo.procdef) then
  4939. gen_load_loc_function_result(list,retdef,tabstractnormalvarsym(ressym).localloc);
  4940. end
  4941. else
  4942. gen_load_uninitialized_function_result(list,current_procinfo.procdef,retdef,current_procinfo.procdef.funcretloc[calleeside]);
  4943. end;
  4944. if tabstractnormalvarsym(ressym).localloc.loc=LOC_REFERENCE then
  4945. tg.UnGetLocal(list,tabstractnormalvarsym(ressym).localloc.reference);
  4946. end;
  4947. procedure thlcgobj.gen_stack_check_size_para(list: TAsmList);
  4948. var
  4949. paraloc1 : tcgpara;
  4950. pd : tprocdef;
  4951. begin
  4952. pd:=search_system_proc('fpc_stackcheck');
  4953. paraloc1.init;
  4954. paramanager.getintparaloc(current_asmdata.CurrAsmList,pd,1,paraloc1);
  4955. hlcg.a_load_const_cgpara(list,paraloc1.def,current_procinfo.calc_stackframe_size,paraloc1);
  4956. paramanager.freecgpara(list,paraloc1);
  4957. paraloc1.done;
  4958. end;
  4959. procedure thlcgobj.gen_stack_check_call(list: TAsmList);
  4960. var
  4961. paraloc1 : tcgpara;
  4962. pd : tprocdef;
  4963. begin
  4964. pd:=search_system_proc('fpc_stackcheck');
  4965. paraloc1.init;
  4966. { The parameter to fpc_stackcheck is loaded seperately via
  4967. gen_stack_check_size_para() }
  4968. paramanager.getintparaloc(list,pd,1,paraloc1);
  4969. paramanager.freecgpara(list,paraloc1);
  4970. { Call the helper }
  4971. g_call_system_proc(list,pd,[@paraloc1],nil).resetiftemp;
  4972. paraloc1.done;
  4973. end;
  4974. procedure thlcgobj.record_generated_code_for_procdef(pd: tprocdef; code, data: TAsmList);
  4975. var
  4976. alt: TAsmListType;
  4977. begin
  4978. if not(po_assembler in pd.procoptions) then
  4979. alt:=al_procedures
  4980. else
  4981. alt:=al_pure_assembler;
  4982. { add the procedure to the al_procedures }
  4983. maybe_new_object_file(current_asmdata.asmlists[alt]);
  4984. new_section(current_asmdata.asmlists[alt],sec_code,lower(pd.mangledname),getprocalign);
  4985. current_asmdata.asmlists[alt].concatlist(code);
  4986. { save local data (casetable) also in the same file }
  4987. if assigned(data) and
  4988. (not data.empty) then
  4989. current_asmdata.asmlists[alt].concatlist(data);
  4990. end;
  4991. function thlcgobj.g_call_system_proc(list: TAsmList; const procname: string; const paras: array of pcgpara; forceresdef: tdef): tcgpara;
  4992. var
  4993. pd: tprocdef;
  4994. begin
  4995. pd:=search_system_proc(procname);
  4996. pd.init_paraloc_info(callerside);
  4997. if systemunit<>current_module.globalsymtable then
  4998. current_module.addimportedsym(pd.procsym);
  4999. result:=g_call_system_proc_intern(list,pd,paras,forceresdef);
  5000. end;
  5001. function thlcgobj.g_call_system_proc(list: TAsmList; pd: tprocdef; const paras: array of pcgpara; forceresdef: tdef): tcgpara;
  5002. begin
  5003. { separate non-virtual routine to make it clear that the routine to
  5004. override, if any, is g_call_system_proc_intern (and that none of
  5005. the g_call_system_proc variants should be made virtual) }
  5006. pd.init_paraloc_info(callerside);
  5007. if systemunit<>current_module.globalsymtable then
  5008. current_module.addimportedsym(pd.procsym);
  5009. result:=g_call_system_proc_intern(list,pd,paras,forceresdef);
  5010. end;
  5011. function thlcgobj.g_call_system_proc_intern(list: TAsmList; pd: tprocdef; const paras: array of pcgpara; forceresdef: tdef): tcgpara;
  5012. begin
  5013. allocallcpuregisters(list);
  5014. result:=a_call_name(list,pd,pd.mangledname,paras,forceresdef,false);
  5015. deallocallcpuregisters(list);
  5016. end;
  5017. end.