123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037 |
- ; This file is generated from a similarly-named Perl script in the BoringSSL
- ; source tree. Do not edit by hand.
- default rel
- %define XMMWORD
- %define YMMWORD
- %define ZMMWORD
- section .text code align=64
- EXTERN GFp_ia32cap_P
- ALIGN 64
- $L$poly:
- DQ 0xffffffffffffffff,0x00000000ffffffff,0x0000000000000000,0xffffffff00000001
- $L$One:
- DD 1,1,1,1,1,1,1,1
- $L$Two:
- DD 2,2,2,2,2,2,2,2
- $L$Three:
- DD 3,3,3,3,3,3,3,3
- $L$ONE_mont:
- DQ 0x0000000000000001,0xffffffff00000000,0xffffffffffffffff,0x00000000fffffffe
- $L$ord:
- DQ 0xf3b9cac2fc632551,0xbce6faada7179e84,0xffffffffffffffff,0xffffffff00000000
- $L$ordK:
- DQ 0xccd1c8aaee00bc4f
- global GFp_nistz256_add
- ALIGN 32
- GFp_nistz256_add:
- mov QWORD[8+rsp],rdi ;WIN64 prologue
- mov QWORD[16+rsp],rsi
- mov rax,rsp
- $L$SEH_begin_GFp_nistz256_add:
- mov rdi,rcx
- mov rsi,rdx
- mov rdx,r8
- push r12
- push r13
- mov r8,QWORD[rsi]
- xor r13,r13
- mov r9,QWORD[8+rsi]
- mov r10,QWORD[16+rsi]
- mov r11,QWORD[24+rsi]
- lea rsi,[$L$poly]
- add r8,QWORD[rdx]
- adc r9,QWORD[8+rdx]
- mov rax,r8
- adc r10,QWORD[16+rdx]
- adc r11,QWORD[24+rdx]
- mov rdx,r9
- adc r13,0
- sub r8,QWORD[rsi]
- mov rcx,r10
- sbb r9,QWORD[8+rsi]
- sbb r10,QWORD[16+rsi]
- mov r12,r11
- sbb r11,QWORD[24+rsi]
- sbb r13,0
- cmovc r8,rax
- cmovc r9,rdx
- mov QWORD[rdi],r8
- cmovc r10,rcx
- mov QWORD[8+rdi],r9
- cmovc r11,r12
- mov QWORD[16+rdi],r10
- mov QWORD[24+rdi],r11
- pop r13
- pop r12
- mov rdi,QWORD[8+rsp] ;WIN64 epilogue
- mov rsi,QWORD[16+rsp]
- DB 0F3h,0C3h ;repret
- $L$SEH_end_GFp_nistz256_add:
- global GFp_nistz256_neg
- ALIGN 32
- GFp_nistz256_neg:
- mov QWORD[8+rsp],rdi ;WIN64 prologue
- mov QWORD[16+rsp],rsi
- mov rax,rsp
- $L$SEH_begin_GFp_nistz256_neg:
- mov rdi,rcx
- mov rsi,rdx
- push r12
- push r13
- $L$neg_body:
- xor r8,r8
- xor r9,r9
- xor r10,r10
- xor r11,r11
- xor r13,r13
- sub r8,QWORD[rsi]
- sbb r9,QWORD[8+rsi]
- sbb r10,QWORD[16+rsi]
- mov rax,r8
- sbb r11,QWORD[24+rsi]
- lea rsi,[$L$poly]
- mov rdx,r9
- sbb r13,0
- add r8,QWORD[rsi]
- mov rcx,r10
- adc r9,QWORD[8+rsi]
- adc r10,QWORD[16+rsi]
- mov r12,r11
- adc r11,QWORD[24+rsi]
- test r13,r13
- cmovz r8,rax
- cmovz r9,rdx
- mov QWORD[rdi],r8
- cmovz r10,rcx
- mov QWORD[8+rdi],r9
- cmovz r11,r12
- mov QWORD[16+rdi],r10
- mov QWORD[24+rdi],r11
- mov r13,QWORD[rsp]
- mov r12,QWORD[8+rsp]
- lea rsp,[16+rsp]
- $L$neg_epilogue:
- mov rdi,QWORD[8+rsp] ;WIN64 epilogue
- mov rsi,QWORD[16+rsp]
- DB 0F3h,0C3h ;repret
- $L$SEH_end_GFp_nistz256_neg:
- global GFp_p256_scalar_mul_mont
- ALIGN 32
- GFp_p256_scalar_mul_mont:
- mov QWORD[8+rsp],rdi ;WIN64 prologue
- mov QWORD[16+rsp],rsi
- mov rax,rsp
- $L$SEH_begin_GFp_p256_scalar_mul_mont:
- mov rdi,rcx
- mov rsi,rdx
- mov rdx,r8
- lea rcx,[GFp_ia32cap_P]
- mov rcx,QWORD[8+rcx]
- and ecx,0x80100
- cmp ecx,0x80100
- je NEAR $L$ecp_nistz256_ord_mul_montx
- push rbp
- push rbx
- push r12
- push r13
- push r14
- push r15
- $L$ord_mul_body:
- mov rax,QWORD[rdx]
- mov rbx,rdx
- lea r14,[$L$ord]
- mov r15,QWORD[$L$ordK]
- mov rcx,rax
- mul QWORD[rsi]
- mov r8,rax
- mov rax,rcx
- mov r9,rdx
- mul QWORD[8+rsi]
- add r9,rax
- mov rax,rcx
- adc rdx,0
- mov r10,rdx
- mul QWORD[16+rsi]
- add r10,rax
- mov rax,rcx
- adc rdx,0
- mov r13,r8
- imul r8,r15
- mov r11,rdx
- mul QWORD[24+rsi]
- add r11,rax
- mov rax,r8
- adc rdx,0
- mov r12,rdx
- mul QWORD[r14]
- mov rbp,r8
- add r13,rax
- mov rax,r8
- adc rdx,0
- mov rcx,rdx
- sub r10,r8
- sbb r8,0
- mul QWORD[8+r14]
- add r9,rcx
- adc rdx,0
- add r9,rax
- mov rax,rbp
- adc r10,rdx
- mov rdx,rbp
- adc r8,0
- shl rax,32
- shr rdx,32
- sub r11,rax
- mov rax,QWORD[8+rbx]
- sbb rbp,rdx
- add r11,r8
- adc r12,rbp
- adc r13,0
- mov rcx,rax
- mul QWORD[rsi]
- add r9,rax
- mov rax,rcx
- adc rdx,0
- mov rbp,rdx
- mul QWORD[8+rsi]
- add r10,rbp
- adc rdx,0
- add r10,rax
- mov rax,rcx
- adc rdx,0
- mov rbp,rdx
- mul QWORD[16+rsi]
- add r11,rbp
- adc rdx,0
- add r11,rax
- mov rax,rcx
- adc rdx,0
- mov rcx,r9
- imul r9,r15
- mov rbp,rdx
- mul QWORD[24+rsi]
- add r12,rbp
- adc rdx,0
- xor r8,r8
- add r12,rax
- mov rax,r9
- adc r13,rdx
- adc r8,0
- mul QWORD[r14]
- mov rbp,r9
- add rcx,rax
- mov rax,r9
- adc rcx,rdx
- sub r11,r9
- sbb r9,0
- mul QWORD[8+r14]
- add r10,rcx
- adc rdx,0
- add r10,rax
- mov rax,rbp
- adc r11,rdx
- mov rdx,rbp
- adc r9,0
- shl rax,32
- shr rdx,32
- sub r12,rax
- mov rax,QWORD[16+rbx]
- sbb rbp,rdx
- add r12,r9
- adc r13,rbp
- adc r8,0
- mov rcx,rax
- mul QWORD[rsi]
- add r10,rax
- mov rax,rcx
- adc rdx,0
- mov rbp,rdx
- mul QWORD[8+rsi]
- add r11,rbp
- adc rdx,0
- add r11,rax
- mov rax,rcx
- adc rdx,0
- mov rbp,rdx
- mul QWORD[16+rsi]
- add r12,rbp
- adc rdx,0
- add r12,rax
- mov rax,rcx
- adc rdx,0
- mov rcx,r10
- imul r10,r15
- mov rbp,rdx
- mul QWORD[24+rsi]
- add r13,rbp
- adc rdx,0
- xor r9,r9
- add r13,rax
- mov rax,r10
- adc r8,rdx
- adc r9,0
- mul QWORD[r14]
- mov rbp,r10
- add rcx,rax
- mov rax,r10
- adc rcx,rdx
- sub r12,r10
- sbb r10,0
- mul QWORD[8+r14]
- add r11,rcx
- adc rdx,0
- add r11,rax
- mov rax,rbp
- adc r12,rdx
- mov rdx,rbp
- adc r10,0
- shl rax,32
- shr rdx,32
- sub r13,rax
- mov rax,QWORD[24+rbx]
- sbb rbp,rdx
- add r13,r10
- adc r8,rbp
- adc r9,0
- mov rcx,rax
- mul QWORD[rsi]
- add r11,rax
- mov rax,rcx
- adc rdx,0
- mov rbp,rdx
- mul QWORD[8+rsi]
- add r12,rbp
- adc rdx,0
- add r12,rax
- mov rax,rcx
- adc rdx,0
- mov rbp,rdx
- mul QWORD[16+rsi]
- add r13,rbp
- adc rdx,0
- add r13,rax
- mov rax,rcx
- adc rdx,0
- mov rcx,r11
- imul r11,r15
- mov rbp,rdx
- mul QWORD[24+rsi]
- add r8,rbp
- adc rdx,0
- xor r10,r10
- add r8,rax
- mov rax,r11
- adc r9,rdx
- adc r10,0
- mul QWORD[r14]
- mov rbp,r11
- add rcx,rax
- mov rax,r11
- adc rcx,rdx
- sub r13,r11
- sbb r11,0
- mul QWORD[8+r14]
- add r12,rcx
- adc rdx,0
- add r12,rax
- mov rax,rbp
- adc r13,rdx
- mov rdx,rbp
- adc r11,0
- shl rax,32
- shr rdx,32
- sub r8,rax
- sbb rbp,rdx
- add r8,r11
- adc r9,rbp
- adc r10,0
- mov rsi,r12
- sub r12,QWORD[r14]
- mov r11,r13
- sbb r13,QWORD[8+r14]
- mov rcx,r8
- sbb r8,QWORD[16+r14]
- mov rbp,r9
- sbb r9,QWORD[24+r14]
- sbb r10,0
- cmovc r12,rsi
- cmovc r13,r11
- cmovc r8,rcx
- cmovc r9,rbp
- mov QWORD[rdi],r12
- mov QWORD[8+rdi],r13
- mov QWORD[16+rdi],r8
- mov QWORD[24+rdi],r9
- mov r15,QWORD[rsp]
- mov r14,QWORD[8+rsp]
- mov r13,QWORD[16+rsp]
- mov r12,QWORD[24+rsp]
- mov rbx,QWORD[32+rsp]
- mov rbp,QWORD[40+rsp]
- lea rsp,[48+rsp]
- $L$ord_mul_epilogue:
- mov rdi,QWORD[8+rsp] ;WIN64 epilogue
- mov rsi,QWORD[16+rsp]
- DB 0F3h,0C3h ;repret
- $L$SEH_end_GFp_p256_scalar_mul_mont:
- global GFp_p256_scalar_sqr_rep_mont
- ALIGN 32
- GFp_p256_scalar_sqr_rep_mont:
- mov QWORD[8+rsp],rdi ;WIN64 prologue
- mov QWORD[16+rsp],rsi
- mov rax,rsp
- $L$SEH_begin_GFp_p256_scalar_sqr_rep_mont:
- mov rdi,rcx
- mov rsi,rdx
- mov rdx,r8
- lea rcx,[GFp_ia32cap_P]
- mov rcx,QWORD[8+rcx]
- and ecx,0x80100
- cmp ecx,0x80100
- je NEAR $L$ecp_nistz256_ord_sqr_montx
- push rbp
- push rbx
- push r12
- push r13
- push r14
- push r15
- $L$ord_sqr_body:
- mov r8,QWORD[rsi]
- mov rax,QWORD[8+rsi]
- mov r14,QWORD[16+rsi]
- mov r15,QWORD[24+rsi]
- lea rsi,[$L$ord]
- mov rbx,rdx
- jmp NEAR $L$oop_ord_sqr
- ALIGN 32
- $L$oop_ord_sqr:
- mov rbp,rax
- mul r8
- mov r9,rax
- DB 102,72,15,110,205
- mov rax,r14
- mov r10,rdx
- mul r8
- add r10,rax
- mov rax,r15
- DB 102,73,15,110,214
- adc rdx,0
- mov r11,rdx
- mul r8
- add r11,rax
- mov rax,r15
- DB 102,73,15,110,223
- adc rdx,0
- mov r12,rdx
- mul r14
- mov r13,rax
- mov rax,r14
- mov r14,rdx
- mul rbp
- add r11,rax
- mov rax,r15
- adc rdx,0
- mov r15,rdx
- mul rbp
- add r12,rax
- adc rdx,0
- add r12,r15
- adc r13,rdx
- adc r14,0
- xor r15,r15
- mov rax,r8
- add r9,r9
- adc r10,r10
- adc r11,r11
- adc r12,r12
- adc r13,r13
- adc r14,r14
- adc r15,0
- mul rax
- mov r8,rax
- DB 102,72,15,126,200
- mov rbp,rdx
- mul rax
- add r9,rbp
- adc r10,rax
- DB 102,72,15,126,208
- adc rdx,0
- mov rbp,rdx
- mul rax
- add r11,rbp
- adc r12,rax
- DB 102,72,15,126,216
- adc rdx,0
- mov rbp,rdx
- mov rcx,r8
- imul r8,QWORD[32+rsi]
- mul rax
- add r13,rbp
- adc r14,rax
- mov rax,QWORD[rsi]
- adc r15,rdx
- mul r8
- mov rbp,r8
- add rcx,rax
- mov rax,QWORD[8+rsi]
- adc rcx,rdx
- sub r10,r8
- sbb rbp,0
- mul r8
- add r9,rcx
- adc rdx,0
- add r9,rax
- mov rax,r8
- adc r10,rdx
- mov rdx,r8
- adc rbp,0
- mov rcx,r9
- imul r9,QWORD[32+rsi]
- shl rax,32
- shr rdx,32
- sub r11,rax
- mov rax,QWORD[rsi]
- sbb r8,rdx
- add r11,rbp
- adc r8,0
- mul r9
- mov rbp,r9
- add rcx,rax
- mov rax,QWORD[8+rsi]
- adc rcx,rdx
- sub r11,r9
- sbb rbp,0
- mul r9
- add r10,rcx
- adc rdx,0
- add r10,rax
- mov rax,r9
- adc r11,rdx
- mov rdx,r9
- adc rbp,0
- mov rcx,r10
- imul r10,QWORD[32+rsi]
- shl rax,32
- shr rdx,32
- sub r8,rax
- mov rax,QWORD[rsi]
- sbb r9,rdx
- add r8,rbp
- adc r9,0
- mul r10
- mov rbp,r10
- add rcx,rax
- mov rax,QWORD[8+rsi]
- adc rcx,rdx
- sub r8,r10
- sbb rbp,0
- mul r10
- add r11,rcx
- adc rdx,0
- add r11,rax
- mov rax,r10
- adc r8,rdx
- mov rdx,r10
- adc rbp,0
- mov rcx,r11
- imul r11,QWORD[32+rsi]
- shl rax,32
- shr rdx,32
- sub r9,rax
- mov rax,QWORD[rsi]
- sbb r10,rdx
- add r9,rbp
- adc r10,0
- mul r11
- mov rbp,r11
- add rcx,rax
- mov rax,QWORD[8+rsi]
- adc rcx,rdx
- sub r9,r11
- sbb rbp,0
- mul r11
- add r8,rcx
- adc rdx,0
- add r8,rax
- mov rax,r11
- adc r9,rdx
- mov rdx,r11
- adc rbp,0
- shl rax,32
- shr rdx,32
- sub r10,rax
- sbb r11,rdx
- add r10,rbp
- adc r11,0
- xor rdx,rdx
- add r8,r12
- adc r9,r13
- mov r12,r8
- adc r10,r14
- adc r11,r15
- mov rax,r9
- adc rdx,0
- sub r8,QWORD[rsi]
- mov r14,r10
- sbb r9,QWORD[8+rsi]
- sbb r10,QWORD[16+rsi]
- mov r15,r11
- sbb r11,QWORD[24+rsi]
- sbb rdx,0
- cmovc r8,r12
- cmovnc rax,r9
- cmovnc r14,r10
- cmovnc r15,r11
- dec rbx
- jnz NEAR $L$oop_ord_sqr
- mov QWORD[rdi],r8
- mov QWORD[8+rdi],rax
- pxor xmm1,xmm1
- mov QWORD[16+rdi],r14
- pxor xmm2,xmm2
- mov QWORD[24+rdi],r15
- pxor xmm3,xmm3
- mov r15,QWORD[rsp]
- mov r14,QWORD[8+rsp]
- mov r13,QWORD[16+rsp]
- mov r12,QWORD[24+rsp]
- mov rbx,QWORD[32+rsp]
- mov rbp,QWORD[40+rsp]
- lea rsp,[48+rsp]
- $L$ord_sqr_epilogue:
- mov rdi,QWORD[8+rsp] ;WIN64 epilogue
- mov rsi,QWORD[16+rsp]
- DB 0F3h,0C3h ;repret
- $L$SEH_end_GFp_p256_scalar_sqr_rep_mont:
- ALIGN 32
- ecp_nistz256_ord_mul_montx:
- mov QWORD[8+rsp],rdi ;WIN64 prologue
- mov QWORD[16+rsp],rsi
- mov rax,rsp
- $L$SEH_begin_ecp_nistz256_ord_mul_montx:
- mov rdi,rcx
- mov rsi,rdx
- mov rdx,r8
- $L$ecp_nistz256_ord_mul_montx:
- push rbp
- push rbx
- push r12
- push r13
- push r14
- push r15
- $L$ord_mulx_body:
- mov rbx,rdx
- mov rdx,QWORD[rdx]
- mov r9,QWORD[rsi]
- mov r10,QWORD[8+rsi]
- mov r11,QWORD[16+rsi]
- mov r12,QWORD[24+rsi]
- lea rsi,[((-128))+rsi]
- lea r14,[(($L$ord-128))]
- mov r15,QWORD[$L$ordK]
- mulx r9,r8,r9
- mulx r10,rcx,r10
- mulx r11,rbp,r11
- add r9,rcx
- mulx r12,rcx,r12
- mov rdx,r8
- mulx rax,rdx,r15
- adc r10,rbp
- adc r11,rcx
- adc r12,0
- xor r13,r13
- mulx rbp,rcx,QWORD[((0+128))+r14]
- adcx r8,rcx
- adox r9,rbp
- mulx rbp,rcx,QWORD[((8+128))+r14]
- adcx r9,rcx
- adox r10,rbp
- mulx rbp,rcx,QWORD[((16+128))+r14]
- adcx r10,rcx
- adox r11,rbp
- mulx rbp,rcx,QWORD[((24+128))+r14]
- mov rdx,QWORD[8+rbx]
- adcx r11,rcx
- adox r12,rbp
- adcx r12,r8
- adox r13,r8
- adc r13,0
- mulx rbp,rcx,QWORD[((0+128))+rsi]
- adcx r9,rcx
- adox r10,rbp
- mulx rbp,rcx,QWORD[((8+128))+rsi]
- adcx r10,rcx
- adox r11,rbp
- mulx rbp,rcx,QWORD[((16+128))+rsi]
- adcx r11,rcx
- adox r12,rbp
- mulx rbp,rcx,QWORD[((24+128))+rsi]
- mov rdx,r9
- mulx rax,rdx,r15
- adcx r12,rcx
- adox r13,rbp
- adcx r13,r8
- adox r8,r8
- adc r8,0
- mulx rbp,rcx,QWORD[((0+128))+r14]
- adcx r9,rcx
- adox r10,rbp
- mulx rbp,rcx,QWORD[((8+128))+r14]
- adcx r10,rcx
- adox r11,rbp
- mulx rbp,rcx,QWORD[((16+128))+r14]
- adcx r11,rcx
- adox r12,rbp
- mulx rbp,rcx,QWORD[((24+128))+r14]
- mov rdx,QWORD[16+rbx]
- adcx r12,rcx
- adox r13,rbp
- adcx r13,r9
- adox r8,r9
- adc r8,0
- mulx rbp,rcx,QWORD[((0+128))+rsi]
- adcx r10,rcx
- adox r11,rbp
- mulx rbp,rcx,QWORD[((8+128))+rsi]
- adcx r11,rcx
- adox r12,rbp
- mulx rbp,rcx,QWORD[((16+128))+rsi]
- adcx r12,rcx
- adox r13,rbp
- mulx rbp,rcx,QWORD[((24+128))+rsi]
- mov rdx,r10
- mulx rax,rdx,r15
- adcx r13,rcx
- adox r8,rbp
- adcx r8,r9
- adox r9,r9
- adc r9,0
- mulx rbp,rcx,QWORD[((0+128))+r14]
- adcx r10,rcx
- adox r11,rbp
- mulx rbp,rcx,QWORD[((8+128))+r14]
- adcx r11,rcx
- adox r12,rbp
- mulx rbp,rcx,QWORD[((16+128))+r14]
- adcx r12,rcx
- adox r13,rbp
- mulx rbp,rcx,QWORD[((24+128))+r14]
- mov rdx,QWORD[24+rbx]
- adcx r13,rcx
- adox r8,rbp
- adcx r8,r10
- adox r9,r10
- adc r9,0
- mulx rbp,rcx,QWORD[((0+128))+rsi]
- adcx r11,rcx
- adox r12,rbp
- mulx rbp,rcx,QWORD[((8+128))+rsi]
- adcx r12,rcx
- adox r13,rbp
- mulx rbp,rcx,QWORD[((16+128))+rsi]
- adcx r13,rcx
- adox r8,rbp
- mulx rbp,rcx,QWORD[((24+128))+rsi]
- mov rdx,r11
- mulx rax,rdx,r15
- adcx r8,rcx
- adox r9,rbp
- adcx r9,r10
- adox r10,r10
- adc r10,0
- mulx rbp,rcx,QWORD[((0+128))+r14]
- adcx r11,rcx
- adox r12,rbp
- mulx rbp,rcx,QWORD[((8+128))+r14]
- adcx r12,rcx
- adox r13,rbp
- mulx rbp,rcx,QWORD[((16+128))+r14]
- adcx r13,rcx
- adox r8,rbp
- mulx rbp,rcx,QWORD[((24+128))+r14]
- lea r14,[128+r14]
- mov rbx,r12
- adcx r8,rcx
- adox r9,rbp
- mov rdx,r13
- adcx r9,r11
- adox r10,r11
- adc r10,0
- mov rcx,r8
- sub r12,QWORD[r14]
- sbb r13,QWORD[8+r14]
- sbb r8,QWORD[16+r14]
- mov rbp,r9
- sbb r9,QWORD[24+r14]
- sbb r10,0
- cmovc r12,rbx
- cmovc r13,rdx
- cmovc r8,rcx
- cmovc r9,rbp
- mov QWORD[rdi],r12
- mov QWORD[8+rdi],r13
- mov QWORD[16+rdi],r8
- mov QWORD[24+rdi],r9
- mov r15,QWORD[rsp]
- mov r14,QWORD[8+rsp]
- mov r13,QWORD[16+rsp]
- mov r12,QWORD[24+rsp]
- mov rbx,QWORD[32+rsp]
- mov rbp,QWORD[40+rsp]
- lea rsp,[48+rsp]
- $L$ord_mulx_epilogue:
- mov rdi,QWORD[8+rsp] ;WIN64 epilogue
- mov rsi,QWORD[16+rsp]
- DB 0F3h,0C3h ;repret
- $L$SEH_end_ecp_nistz256_ord_mul_montx:
- ALIGN 32
- ecp_nistz256_ord_sqr_montx:
- mov QWORD[8+rsp],rdi ;WIN64 prologue
- mov QWORD[16+rsp],rsi
- mov rax,rsp
- $L$SEH_begin_ecp_nistz256_ord_sqr_montx:
- mov rdi,rcx
- mov rsi,rdx
- mov rdx,r8
- $L$ecp_nistz256_ord_sqr_montx:
- push rbp
- push rbx
- push r12
- push r13
- push r14
- push r15
- $L$ord_sqrx_body:
- mov rbx,rdx
- mov rdx,QWORD[rsi]
- mov r14,QWORD[8+rsi]
- mov r15,QWORD[16+rsi]
- mov r8,QWORD[24+rsi]
- lea rsi,[$L$ord]
- jmp NEAR $L$oop_ord_sqrx
- ALIGN 32
- $L$oop_ord_sqrx:
- mulx r10,r9,r14
- mulx r11,rcx,r15
- mov rax,rdx
- DB 102,73,15,110,206
- mulx r12,rbp,r8
- mov rdx,r14
- add r10,rcx
- DB 102,73,15,110,215
- adc r11,rbp
- adc r12,0
- xor r13,r13
- mulx rbp,rcx,r15
- adcx r11,rcx
- adox r12,rbp
- mulx rbp,rcx,r8
- mov rdx,r15
- adcx r12,rcx
- adox r13,rbp
- adc r13,0
- mulx r14,rcx,r8
- mov rdx,rax
- DB 102,73,15,110,216
- xor r15,r15
- adcx r9,r9
- adox r13,rcx
- adcx r10,r10
- adox r14,r15
- mulx rbp,r8,rdx
- DB 102,72,15,126,202
- adcx r11,r11
- adox r9,rbp
- adcx r12,r12
- mulx rax,rcx,rdx
- DB 102,72,15,126,210
- adcx r13,r13
- adox r10,rcx
- adcx r14,r14
- mulx rbp,rcx,rdx
- DB 0x67
- DB 102,72,15,126,218
- adox r11,rax
- adcx r15,r15
- adox r12,rcx
- adox r13,rbp
- mulx rax,rcx,rdx
- adox r14,rcx
- adox r15,rax
- mov rdx,r8
- mulx rcx,rdx,QWORD[32+rsi]
- xor rax,rax
- mulx rbp,rcx,QWORD[rsi]
- adcx r8,rcx
- adox r9,rbp
- mulx rbp,rcx,QWORD[8+rsi]
- adcx r9,rcx
- adox r10,rbp
- mulx rbp,rcx,QWORD[16+rsi]
- adcx r10,rcx
- adox r11,rbp
- mulx rbp,rcx,QWORD[24+rsi]
- adcx r11,rcx
- adox r8,rbp
- adcx r8,rax
- mov rdx,r9
- mulx rcx,rdx,QWORD[32+rsi]
- mulx rbp,rcx,QWORD[rsi]
- adox r9,rcx
- adcx r10,rbp
- mulx rbp,rcx,QWORD[8+rsi]
- adox r10,rcx
- adcx r11,rbp
- mulx rbp,rcx,QWORD[16+rsi]
- adox r11,rcx
- adcx r8,rbp
- mulx rbp,rcx,QWORD[24+rsi]
- adox r8,rcx
- adcx r9,rbp
- adox r9,rax
- mov rdx,r10
- mulx rcx,rdx,QWORD[32+rsi]
- mulx rbp,rcx,QWORD[rsi]
- adcx r10,rcx
- adox r11,rbp
- mulx rbp,rcx,QWORD[8+rsi]
- adcx r11,rcx
- adox r8,rbp
- mulx rbp,rcx,QWORD[16+rsi]
- adcx r8,rcx
- adox r9,rbp
- mulx rbp,rcx,QWORD[24+rsi]
- adcx r9,rcx
- adox r10,rbp
- adcx r10,rax
- mov rdx,r11
- mulx rcx,rdx,QWORD[32+rsi]
- mulx rbp,rcx,QWORD[rsi]
- adox r11,rcx
- adcx r8,rbp
- mulx rbp,rcx,QWORD[8+rsi]
- adox r8,rcx
- adcx r9,rbp
- mulx rbp,rcx,QWORD[16+rsi]
- adox r9,rcx
- adcx r10,rbp
- mulx rbp,rcx,QWORD[24+rsi]
- adox r10,rcx
- adcx r11,rbp
- adox r11,rax
- add r12,r8
- adc r9,r13
- mov rdx,r12
- adc r10,r14
- adc r11,r15
- mov r14,r9
- adc rax,0
- sub r12,QWORD[rsi]
- mov r15,r10
- sbb r9,QWORD[8+rsi]
- sbb r10,QWORD[16+rsi]
- mov r8,r11
- sbb r11,QWORD[24+rsi]
- sbb rax,0
- cmovnc rdx,r12
- cmovnc r14,r9
- cmovnc r15,r10
- cmovnc r8,r11
- dec rbx
- jnz NEAR $L$oop_ord_sqrx
- mov QWORD[rdi],rdx
- mov QWORD[8+rdi],r14
- pxor xmm1,xmm1
- mov QWORD[16+rdi],r15
- pxor xmm2,xmm2
- mov QWORD[24+rdi],r8
- pxor xmm3,xmm3
- mov r15,QWORD[rsp]
- mov r14,QWORD[8+rsp]
- mov r13,QWORD[16+rsp]
- mov r12,QWORD[24+rsp]
- mov rbx,QWORD[32+rsp]
- mov rbp,QWORD[40+rsp]
- lea rsp,[48+rsp]
- $L$ord_sqrx_epilogue:
- mov rdi,QWORD[8+rsp] ;WIN64 epilogue
- mov rsi,QWORD[16+rsp]
- DB 0F3h,0C3h ;repret
- $L$SEH_end_ecp_nistz256_ord_sqr_montx:
- global GFp_nistz256_mul_mont
- ALIGN 32
- GFp_nistz256_mul_mont:
- mov QWORD[8+rsp],rdi ;WIN64 prologue
- mov QWORD[16+rsp],rsi
- mov rax,rsp
- $L$SEH_begin_GFp_nistz256_mul_mont:
- mov rdi,rcx
- mov rsi,rdx
- mov rdx,r8
- lea rcx,[GFp_ia32cap_P]
- mov rcx,QWORD[8+rcx]
- and ecx,0x80100
- $L$mul_mont:
- push rbp
- push rbx
- push r12
- push r13
- push r14
- push r15
- $L$mul_body:
- cmp ecx,0x80100
- je NEAR $L$mul_montx
- mov rbx,rdx
- mov rax,QWORD[rdx]
- mov r9,QWORD[rsi]
- mov r10,QWORD[8+rsi]
- mov r11,QWORD[16+rsi]
- mov r12,QWORD[24+rsi]
- call __ecp_nistz256_mul_montq
- jmp NEAR $L$mul_mont_done
- ALIGN 32
- $L$mul_montx:
- mov rbx,rdx
- mov rdx,QWORD[rdx]
- mov r9,QWORD[rsi]
- mov r10,QWORD[8+rsi]
- mov r11,QWORD[16+rsi]
- mov r12,QWORD[24+rsi]
- lea rsi,[((-128))+rsi]
- call __ecp_nistz256_mul_montx
- $L$mul_mont_done:
- mov r15,QWORD[rsp]
- mov r14,QWORD[8+rsp]
- mov r13,QWORD[16+rsp]
- mov r12,QWORD[24+rsp]
- mov rbx,QWORD[32+rsp]
- mov rbp,QWORD[40+rsp]
- lea rsp,[48+rsp]
- $L$mul_epilogue:
- mov rdi,QWORD[8+rsp] ;WIN64 epilogue
- mov rsi,QWORD[16+rsp]
- DB 0F3h,0C3h ;repret
- $L$SEH_end_GFp_nistz256_mul_mont:
- ALIGN 32
- __ecp_nistz256_mul_montq:
- mov rbp,rax
- mul r9
- mov r14,QWORD[(($L$poly+8))]
- mov r8,rax
- mov rax,rbp
- mov r9,rdx
- mul r10
- mov r15,QWORD[(($L$poly+24))]
- add r9,rax
- mov rax,rbp
- adc rdx,0
- mov r10,rdx
- mul r11
- add r10,rax
- mov rax,rbp
- adc rdx,0
- mov r11,rdx
- mul r12
- add r11,rax
- mov rax,r8
- adc rdx,0
- xor r13,r13
- mov r12,rdx
- mov rbp,r8
- shl r8,32
- mul r15
- shr rbp,32
- add r9,r8
- adc r10,rbp
- adc r11,rax
- mov rax,QWORD[8+rbx]
- adc r12,rdx
- adc r13,0
- xor r8,r8
- mov rbp,rax
- mul QWORD[rsi]
- add r9,rax
- mov rax,rbp
- adc rdx,0
- mov rcx,rdx
- mul QWORD[8+rsi]
- add r10,rcx
- adc rdx,0
- add r10,rax
- mov rax,rbp
- adc rdx,0
- mov rcx,rdx
- mul QWORD[16+rsi]
- add r11,rcx
- adc rdx,0
- add r11,rax
- mov rax,rbp
- adc rdx,0
- mov rcx,rdx
- mul QWORD[24+rsi]
- add r12,rcx
- adc rdx,0
- add r12,rax
- mov rax,r9
- adc r13,rdx
- adc r8,0
- mov rbp,r9
- shl r9,32
- mul r15
- shr rbp,32
- add r10,r9
- adc r11,rbp
- adc r12,rax
- mov rax,QWORD[16+rbx]
- adc r13,rdx
- adc r8,0
- xor r9,r9
- mov rbp,rax
- mul QWORD[rsi]
- add r10,rax
- mov rax,rbp
- adc rdx,0
- mov rcx,rdx
- mul QWORD[8+rsi]
- add r11,rcx
- adc rdx,0
- add r11,rax
- mov rax,rbp
- adc rdx,0
- mov rcx,rdx
- mul QWORD[16+rsi]
- add r12,rcx
- adc rdx,0
- add r12,rax
- mov rax,rbp
- adc rdx,0
- mov rcx,rdx
- mul QWORD[24+rsi]
- add r13,rcx
- adc rdx,0
- add r13,rax
- mov rax,r10
- adc r8,rdx
- adc r9,0
- mov rbp,r10
- shl r10,32
- mul r15
- shr rbp,32
- add r11,r10
- adc r12,rbp
- adc r13,rax
- mov rax,QWORD[24+rbx]
- adc r8,rdx
- adc r9,0
- xor r10,r10
- mov rbp,rax
- mul QWORD[rsi]
- add r11,rax
- mov rax,rbp
- adc rdx,0
- mov rcx,rdx
- mul QWORD[8+rsi]
- add r12,rcx
- adc rdx,0
- add r12,rax
- mov rax,rbp
- adc rdx,0
- mov rcx,rdx
- mul QWORD[16+rsi]
- add r13,rcx
- adc rdx,0
- add r13,rax
- mov rax,rbp
- adc rdx,0
- mov rcx,rdx
- mul QWORD[24+rsi]
- add r8,rcx
- adc rdx,0
- add r8,rax
- mov rax,r11
- adc r9,rdx
- adc r10,0
- mov rbp,r11
- shl r11,32
- mul r15
- shr rbp,32
- add r12,r11
- adc r13,rbp
- mov rcx,r12
- adc r8,rax
- adc r9,rdx
- mov rbp,r13
- adc r10,0
- sub r12,-1
- mov rbx,r8
- sbb r13,r14
- sbb r8,0
- mov rdx,r9
- sbb r9,r15
- sbb r10,0
- cmovc r12,rcx
- cmovc r13,rbp
- mov QWORD[rdi],r12
- cmovc r8,rbx
- mov QWORD[8+rdi],r13
- cmovc r9,rdx
- mov QWORD[16+rdi],r8
- mov QWORD[24+rdi],r9
- DB 0F3h,0C3h ;repret
- global GFp_nistz256_sqr_mont
- ALIGN 32
- GFp_nistz256_sqr_mont:
- mov QWORD[8+rsp],rdi ;WIN64 prologue
- mov QWORD[16+rsp],rsi
- mov rax,rsp
- $L$SEH_begin_GFp_nistz256_sqr_mont:
- mov rdi,rcx
- mov rsi,rdx
- lea rcx,[GFp_ia32cap_P]
- mov rcx,QWORD[8+rcx]
- and ecx,0x80100
- push rbp
- push rbx
- push r12
- push r13
- push r14
- push r15
- $L$sqr_body:
- cmp ecx,0x80100
- je NEAR $L$sqr_montx
- mov rax,QWORD[rsi]
- mov r14,QWORD[8+rsi]
- mov r15,QWORD[16+rsi]
- mov r8,QWORD[24+rsi]
- call __ecp_nistz256_sqr_montq
- jmp NEAR $L$sqr_mont_done
- ALIGN 32
- $L$sqr_montx:
- mov rdx,QWORD[rsi]
- mov r14,QWORD[8+rsi]
- mov r15,QWORD[16+rsi]
- mov r8,QWORD[24+rsi]
- lea rsi,[((-128))+rsi]
- call __ecp_nistz256_sqr_montx
- $L$sqr_mont_done:
- mov r15,QWORD[rsp]
- mov r14,QWORD[8+rsp]
- mov r13,QWORD[16+rsp]
- mov r12,QWORD[24+rsp]
- mov rbx,QWORD[32+rsp]
- mov rbp,QWORD[40+rsp]
- lea rsp,[48+rsp]
- $L$sqr_epilogue:
- mov rdi,QWORD[8+rsp] ;WIN64 epilogue
- mov rsi,QWORD[16+rsp]
- DB 0F3h,0C3h ;repret
- $L$SEH_end_GFp_nistz256_sqr_mont:
- ALIGN 32
- __ecp_nistz256_sqr_montq:
- mov r13,rax
- mul r14
- mov r9,rax
- mov rax,r15
- mov r10,rdx
- mul r13
- add r10,rax
- mov rax,r8
- adc rdx,0
- mov r11,rdx
- mul r13
- add r11,rax
- mov rax,r15
- adc rdx,0
- mov r12,rdx
- mul r14
- add r11,rax
- mov rax,r8
- adc rdx,0
- mov rbp,rdx
- mul r14
- add r12,rax
- mov rax,r8
- adc rdx,0
- add r12,rbp
- mov r13,rdx
- adc r13,0
- mul r15
- xor r15,r15
- add r13,rax
- mov rax,QWORD[rsi]
- mov r14,rdx
- adc r14,0
- add r9,r9
- adc r10,r10
- adc r11,r11
- adc r12,r12
- adc r13,r13
- adc r14,r14
- adc r15,0
- mul rax
- mov r8,rax
- mov rax,QWORD[8+rsi]
- mov rcx,rdx
- mul rax
- add r9,rcx
- adc r10,rax
- mov rax,QWORD[16+rsi]
- adc rdx,0
- mov rcx,rdx
- mul rax
- add r11,rcx
- adc r12,rax
- mov rax,QWORD[24+rsi]
- adc rdx,0
- mov rcx,rdx
- mul rax
- add r13,rcx
- adc r14,rax
- mov rax,r8
- adc r15,rdx
- mov rsi,QWORD[(($L$poly+8))]
- mov rbp,QWORD[(($L$poly+24))]
- mov rcx,r8
- shl r8,32
- mul rbp
- shr rcx,32
- add r9,r8
- adc r10,rcx
- adc r11,rax
- mov rax,r9
- adc rdx,0
- mov rcx,r9
- shl r9,32
- mov r8,rdx
- mul rbp
- shr rcx,32
- add r10,r9
- adc r11,rcx
- adc r8,rax
- mov rax,r10
- adc rdx,0
- mov rcx,r10
- shl r10,32
- mov r9,rdx
- mul rbp
- shr rcx,32
- add r11,r10
- adc r8,rcx
- adc r9,rax
- mov rax,r11
- adc rdx,0
- mov rcx,r11
- shl r11,32
- mov r10,rdx
- mul rbp
- shr rcx,32
- add r8,r11
- adc r9,rcx
- adc r10,rax
- adc rdx,0
- xor r11,r11
- add r12,r8
- adc r13,r9
- mov r8,r12
- adc r14,r10
- adc r15,rdx
- mov r9,r13
- adc r11,0
- sub r12,-1
- mov r10,r14
- sbb r13,rsi
- sbb r14,0
- mov rcx,r15
- sbb r15,rbp
- sbb r11,0
- cmovc r12,r8
- cmovc r13,r9
- mov QWORD[rdi],r12
- cmovc r14,r10
- mov QWORD[8+rdi],r13
- cmovc r15,rcx
- mov QWORD[16+rdi],r14
- mov QWORD[24+rdi],r15
- DB 0F3h,0C3h ;repret
- ALIGN 32
- __ecp_nistz256_mul_montx:
- mulx r9,r8,r9
- mulx r10,rcx,r10
- mov r14,32
- xor r13,r13
- mulx r11,rbp,r11
- mov r15,QWORD[(($L$poly+24))]
- adc r9,rcx
- mulx r12,rcx,r12
- mov rdx,r8
- adc r10,rbp
- shlx rbp,r8,r14
- adc r11,rcx
- shrx rcx,r8,r14
- adc r12,0
- add r9,rbp
- adc r10,rcx
- mulx rbp,rcx,r15
- mov rdx,QWORD[8+rbx]
- adc r11,rcx
- adc r12,rbp
- adc r13,0
- xor r8,r8
- mulx rbp,rcx,QWORD[((0+128))+rsi]
- adcx r9,rcx
- adox r10,rbp
- mulx rbp,rcx,QWORD[((8+128))+rsi]
- adcx r10,rcx
- adox r11,rbp
- mulx rbp,rcx,QWORD[((16+128))+rsi]
- adcx r11,rcx
- adox r12,rbp
- mulx rbp,rcx,QWORD[((24+128))+rsi]
- mov rdx,r9
- adcx r12,rcx
- shlx rcx,r9,r14
- adox r13,rbp
- shrx rbp,r9,r14
- adcx r13,r8
- adox r8,r8
- adc r8,0
- add r10,rcx
- adc r11,rbp
- mulx rbp,rcx,r15
- mov rdx,QWORD[16+rbx]
- adc r12,rcx
- adc r13,rbp
- adc r8,0
- xor r9,r9
- mulx rbp,rcx,QWORD[((0+128))+rsi]
- adcx r10,rcx
- adox r11,rbp
- mulx rbp,rcx,QWORD[((8+128))+rsi]
- adcx r11,rcx
- adox r12,rbp
- mulx rbp,rcx,QWORD[((16+128))+rsi]
- adcx r12,rcx
- adox r13,rbp
- mulx rbp,rcx,QWORD[((24+128))+rsi]
- mov rdx,r10
- adcx r13,rcx
- shlx rcx,r10,r14
- adox r8,rbp
- shrx rbp,r10,r14
- adcx r8,r9
- adox r9,r9
- adc r9,0
- add r11,rcx
- adc r12,rbp
- mulx rbp,rcx,r15
- mov rdx,QWORD[24+rbx]
- adc r13,rcx
- adc r8,rbp
- adc r9,0
- xor r10,r10
- mulx rbp,rcx,QWORD[((0+128))+rsi]
- adcx r11,rcx
- adox r12,rbp
- mulx rbp,rcx,QWORD[((8+128))+rsi]
- adcx r12,rcx
- adox r13,rbp
- mulx rbp,rcx,QWORD[((16+128))+rsi]
- adcx r13,rcx
- adox r8,rbp
- mulx rbp,rcx,QWORD[((24+128))+rsi]
- mov rdx,r11
- adcx r8,rcx
- shlx rcx,r11,r14
- adox r9,rbp
- shrx rbp,r11,r14
- adcx r9,r10
- adox r10,r10
- adc r10,0
- add r12,rcx
- adc r13,rbp
- mulx rbp,rcx,r15
- mov rbx,r12
- mov r14,QWORD[(($L$poly+8))]
- adc r8,rcx
- mov rdx,r13
- adc r9,rbp
- adc r10,0
- xor eax,eax
- mov rcx,r8
- sbb r12,-1
- sbb r13,r14
- sbb r8,0
- mov rbp,r9
- sbb r9,r15
- sbb r10,0
- cmovc r12,rbx
- cmovc r13,rdx
- mov QWORD[rdi],r12
- cmovc r8,rcx
- mov QWORD[8+rdi],r13
- cmovc r9,rbp
- mov QWORD[16+rdi],r8
- mov QWORD[24+rdi],r9
- DB 0F3h,0C3h ;repret
- ALIGN 32
- __ecp_nistz256_sqr_montx:
- mulx r10,r9,r14
- mulx r11,rcx,r15
- xor eax,eax
- adc r10,rcx
- mulx r12,rbp,r8
- mov rdx,r14
- adc r11,rbp
- adc r12,0
- xor r13,r13
- mulx rbp,rcx,r15
- adcx r11,rcx
- adox r12,rbp
- mulx rbp,rcx,r8
- mov rdx,r15
- adcx r12,rcx
- adox r13,rbp
- adc r13,0
- mulx r14,rcx,r8
- mov rdx,QWORD[((0+128))+rsi]
- xor r15,r15
- adcx r9,r9
- adox r13,rcx
- adcx r10,r10
- adox r14,r15
- mulx rbp,r8,rdx
- mov rdx,QWORD[((8+128))+rsi]
- adcx r11,r11
- adox r9,rbp
- adcx r12,r12
- mulx rax,rcx,rdx
- mov rdx,QWORD[((16+128))+rsi]
- adcx r13,r13
- adox r10,rcx
- adcx r14,r14
- DB 0x67
- mulx rbp,rcx,rdx
- mov rdx,QWORD[((24+128))+rsi]
- adox r11,rax
- adcx r15,r15
- adox r12,rcx
- mov rsi,32
- adox r13,rbp
- DB 0x67,0x67
- mulx rax,rcx,rdx
- mov rdx,QWORD[(($L$poly+24))]
- adox r14,rcx
- shlx rcx,r8,rsi
- adox r15,rax
- shrx rax,r8,rsi
- mov rbp,rdx
- add r9,rcx
- adc r10,rax
- mulx r8,rcx,r8
- adc r11,rcx
- shlx rcx,r9,rsi
- adc r8,0
- shrx rax,r9,rsi
- add r10,rcx
- adc r11,rax
- mulx r9,rcx,r9
- adc r8,rcx
- shlx rcx,r10,rsi
- adc r9,0
- shrx rax,r10,rsi
- add r11,rcx
- adc r8,rax
- mulx r10,rcx,r10
- adc r9,rcx
- shlx rcx,r11,rsi
- adc r10,0
- shrx rax,r11,rsi
- add r8,rcx
- adc r9,rax
- mulx r11,rcx,r11
- adc r10,rcx
- adc r11,0
- xor rdx,rdx
- add r12,r8
- mov rsi,QWORD[(($L$poly+8))]
- adc r13,r9
- mov r8,r12
- adc r14,r10
- adc r15,r11
- mov r9,r13
- adc rdx,0
- sub r12,-1
- mov r10,r14
- sbb r13,rsi
- sbb r14,0
- mov r11,r15
- sbb r15,rbp
- sbb rdx,0
- cmovc r12,r8
- cmovc r13,r9
- mov QWORD[rdi],r12
- cmovc r14,r10
- mov QWORD[8+rdi],r13
- cmovc r15,r11
- mov QWORD[16+rdi],r14
- mov QWORD[24+rdi],r15
- DB 0F3h,0C3h ;repret
- global GFp_nistz256_select_w5
- ALIGN 32
- GFp_nistz256_select_w5:
- lea rax,[GFp_ia32cap_P]
- mov rax,QWORD[8+rax]
- test eax,32
- jnz NEAR $L$avx2_select_w5
- lea rax,[((-136))+rsp]
- $L$SEH_begin_GFp_nistz256_select_w5:
- DB 0x48,0x8d,0x60,0xe0
- DB 0x0f,0x29,0x70,0xe0
- DB 0x0f,0x29,0x78,0xf0
- DB 0x44,0x0f,0x29,0x00
- DB 0x44,0x0f,0x29,0x48,0x10
- DB 0x44,0x0f,0x29,0x50,0x20
- DB 0x44,0x0f,0x29,0x58,0x30
- DB 0x44,0x0f,0x29,0x60,0x40
- DB 0x44,0x0f,0x29,0x68,0x50
- DB 0x44,0x0f,0x29,0x70,0x60
- DB 0x44,0x0f,0x29,0x78,0x70
- movdqa xmm0,XMMWORD[$L$One]
- movd xmm1,r8d
- pxor xmm2,xmm2
- pxor xmm3,xmm3
- pxor xmm4,xmm4
- pxor xmm5,xmm5
- pxor xmm6,xmm6
- pxor xmm7,xmm7
- movdqa xmm8,xmm0
- pshufd xmm1,xmm1,0
- mov rax,16
- $L$select_loop_sse_w5:
- movdqa xmm15,xmm8
- paddd xmm8,xmm0
- pcmpeqd xmm15,xmm1
- movdqa xmm9,XMMWORD[rdx]
- movdqa xmm10,XMMWORD[16+rdx]
- movdqa xmm11,XMMWORD[32+rdx]
- movdqa xmm12,XMMWORD[48+rdx]
- movdqa xmm13,XMMWORD[64+rdx]
- movdqa xmm14,XMMWORD[80+rdx]
- lea rdx,[96+rdx]
- pand xmm9,xmm15
- pand xmm10,xmm15
- por xmm2,xmm9
- pand xmm11,xmm15
- por xmm3,xmm10
- pand xmm12,xmm15
- por xmm4,xmm11
- pand xmm13,xmm15
- por xmm5,xmm12
- pand xmm14,xmm15
- por xmm6,xmm13
- por xmm7,xmm14
- dec rax
- jnz NEAR $L$select_loop_sse_w5
- movdqu XMMWORD[rcx],xmm2
- movdqu XMMWORD[16+rcx],xmm3
- movdqu XMMWORD[32+rcx],xmm4
- movdqu XMMWORD[48+rcx],xmm5
- movdqu XMMWORD[64+rcx],xmm6
- movdqu XMMWORD[80+rcx],xmm7
- movaps xmm6,XMMWORD[rsp]
- movaps xmm7,XMMWORD[16+rsp]
- movaps xmm8,XMMWORD[32+rsp]
- movaps xmm9,XMMWORD[48+rsp]
- movaps xmm10,XMMWORD[64+rsp]
- movaps xmm11,XMMWORD[80+rsp]
- movaps xmm12,XMMWORD[96+rsp]
- movaps xmm13,XMMWORD[112+rsp]
- movaps xmm14,XMMWORD[128+rsp]
- movaps xmm15,XMMWORD[144+rsp]
- lea rsp,[168+rsp]
- DB 0F3h,0C3h ;repret
- $L$SEH_end_GFp_nistz256_select_w5:
- global GFp_nistz256_select_w7
- ALIGN 32
- GFp_nistz256_select_w7:
- lea rax,[GFp_ia32cap_P]
- mov rax,QWORD[8+rax]
- test eax,32
- jnz NEAR $L$avx2_select_w7
- lea rax,[((-136))+rsp]
- $L$SEH_begin_GFp_nistz256_select_w7:
- DB 0x48,0x8d,0x60,0xe0
- DB 0x0f,0x29,0x70,0xe0
- DB 0x0f,0x29,0x78,0xf0
- DB 0x44,0x0f,0x29,0x00
- DB 0x44,0x0f,0x29,0x48,0x10
- DB 0x44,0x0f,0x29,0x50,0x20
- DB 0x44,0x0f,0x29,0x58,0x30
- DB 0x44,0x0f,0x29,0x60,0x40
- DB 0x44,0x0f,0x29,0x68,0x50
- DB 0x44,0x0f,0x29,0x70,0x60
- DB 0x44,0x0f,0x29,0x78,0x70
- movdqa xmm8,XMMWORD[$L$One]
- movd xmm1,r8d
- pxor xmm2,xmm2
- pxor xmm3,xmm3
- pxor xmm4,xmm4
- pxor xmm5,xmm5
- movdqa xmm0,xmm8
- pshufd xmm1,xmm1,0
- mov rax,64
- $L$select_loop_sse_w7:
- movdqa xmm15,xmm8
- paddd xmm8,xmm0
- movdqa xmm9,XMMWORD[rdx]
- movdqa xmm10,XMMWORD[16+rdx]
- pcmpeqd xmm15,xmm1
- movdqa xmm11,XMMWORD[32+rdx]
- movdqa xmm12,XMMWORD[48+rdx]
- lea rdx,[64+rdx]
- pand xmm9,xmm15
- pand xmm10,xmm15
- por xmm2,xmm9
- pand xmm11,xmm15
- por xmm3,xmm10
- pand xmm12,xmm15
- por xmm4,xmm11
- prefetcht0 [255+rdx]
- por xmm5,xmm12
- dec rax
- jnz NEAR $L$select_loop_sse_w7
- movdqu XMMWORD[rcx],xmm2
- movdqu XMMWORD[16+rcx],xmm3
- movdqu XMMWORD[32+rcx],xmm4
- movdqu XMMWORD[48+rcx],xmm5
- movaps xmm6,XMMWORD[rsp]
- movaps xmm7,XMMWORD[16+rsp]
- movaps xmm8,XMMWORD[32+rsp]
- movaps xmm9,XMMWORD[48+rsp]
- movaps xmm10,XMMWORD[64+rsp]
- movaps xmm11,XMMWORD[80+rsp]
- movaps xmm12,XMMWORD[96+rsp]
- movaps xmm13,XMMWORD[112+rsp]
- movaps xmm14,XMMWORD[128+rsp]
- movaps xmm15,XMMWORD[144+rsp]
- lea rsp,[168+rsp]
- DB 0F3h,0C3h ;repret
- $L$SEH_end_GFp_nistz256_select_w7:
- ALIGN 32
- GFp_nistz256_avx2_select_w5:
- $L$avx2_select_w5:
- vzeroupper
- lea rax,[((-136))+rsp]
- mov r11,rsp
- $L$SEH_begin_GFp_nistz256_avx2_select_w5:
- DB 0x48,0x8d,0x60,0xe0
- DB 0xc5,0xf8,0x29,0x70,0xe0
- DB 0xc5,0xf8,0x29,0x78,0xf0
- DB 0xc5,0x78,0x29,0x40,0x00
- DB 0xc5,0x78,0x29,0x48,0x10
- DB 0xc5,0x78,0x29,0x50,0x20
- DB 0xc5,0x78,0x29,0x58,0x30
- DB 0xc5,0x78,0x29,0x60,0x40
- DB 0xc5,0x78,0x29,0x68,0x50
- DB 0xc5,0x78,0x29,0x70,0x60
- DB 0xc5,0x78,0x29,0x78,0x70
- vmovdqa ymm0,YMMWORD[$L$Two]
- vpxor ymm2,ymm2,ymm2
- vpxor ymm3,ymm3,ymm3
- vpxor ymm4,ymm4,ymm4
- vmovdqa ymm5,YMMWORD[$L$One]
- vmovdqa ymm10,YMMWORD[$L$Two]
- vmovd xmm1,r8d
- vpermd ymm1,ymm2,ymm1
- mov rax,8
- $L$select_loop_avx2_w5:
- vmovdqa ymm6,YMMWORD[rdx]
- vmovdqa ymm7,YMMWORD[32+rdx]
- vmovdqa ymm8,YMMWORD[64+rdx]
- vmovdqa ymm11,YMMWORD[96+rdx]
- vmovdqa ymm12,YMMWORD[128+rdx]
- vmovdqa ymm13,YMMWORD[160+rdx]
- vpcmpeqd ymm9,ymm5,ymm1
- vpcmpeqd ymm14,ymm10,ymm1
- vpaddd ymm5,ymm5,ymm0
- vpaddd ymm10,ymm10,ymm0
- lea rdx,[192+rdx]
- vpand ymm6,ymm6,ymm9
- vpand ymm7,ymm7,ymm9
- vpand ymm8,ymm8,ymm9
- vpand ymm11,ymm11,ymm14
- vpand ymm12,ymm12,ymm14
- vpand ymm13,ymm13,ymm14
- vpxor ymm2,ymm2,ymm6
- vpxor ymm3,ymm3,ymm7
- vpxor ymm4,ymm4,ymm8
- vpxor ymm2,ymm2,ymm11
- vpxor ymm3,ymm3,ymm12
- vpxor ymm4,ymm4,ymm13
- dec rax
- jnz NEAR $L$select_loop_avx2_w5
- vmovdqu YMMWORD[rcx],ymm2
- vmovdqu YMMWORD[32+rcx],ymm3
- vmovdqu YMMWORD[64+rcx],ymm4
- vzeroupper
- movaps xmm6,XMMWORD[rsp]
- movaps xmm7,XMMWORD[16+rsp]
- movaps xmm8,XMMWORD[32+rsp]
- movaps xmm9,XMMWORD[48+rsp]
- movaps xmm10,XMMWORD[64+rsp]
- movaps xmm11,XMMWORD[80+rsp]
- movaps xmm12,XMMWORD[96+rsp]
- movaps xmm13,XMMWORD[112+rsp]
- movaps xmm14,XMMWORD[128+rsp]
- movaps xmm15,XMMWORD[144+rsp]
- lea rsp,[r11]
- DB 0F3h,0C3h ;repret
- $L$SEH_end_GFp_nistz256_avx2_select_w5:
- global GFp_nistz256_avx2_select_w7
- ALIGN 32
- GFp_nistz256_avx2_select_w7:
- $L$avx2_select_w7:
- vzeroupper
- mov r11,rsp
- lea rax,[((-136))+rsp]
- $L$SEH_begin_GFp_nistz256_avx2_select_w7:
- DB 0x48,0x8d,0x60,0xe0
- DB 0xc5,0xf8,0x29,0x70,0xe0
- DB 0xc5,0xf8,0x29,0x78,0xf0
- DB 0xc5,0x78,0x29,0x40,0x00
- DB 0xc5,0x78,0x29,0x48,0x10
- DB 0xc5,0x78,0x29,0x50,0x20
- DB 0xc5,0x78,0x29,0x58,0x30
- DB 0xc5,0x78,0x29,0x60,0x40
- DB 0xc5,0x78,0x29,0x68,0x50
- DB 0xc5,0x78,0x29,0x70,0x60
- DB 0xc5,0x78,0x29,0x78,0x70
- vmovdqa ymm0,YMMWORD[$L$Three]
- vpxor ymm2,ymm2,ymm2
- vpxor ymm3,ymm3,ymm3
- vmovdqa ymm4,YMMWORD[$L$One]
- vmovdqa ymm8,YMMWORD[$L$Two]
- vmovdqa ymm12,YMMWORD[$L$Three]
- vmovd xmm1,r8d
- vpermd ymm1,ymm2,ymm1
- mov rax,21
- $L$select_loop_avx2_w7:
- vmovdqa ymm5,YMMWORD[rdx]
- vmovdqa ymm6,YMMWORD[32+rdx]
- vmovdqa ymm9,YMMWORD[64+rdx]
- vmovdqa ymm10,YMMWORD[96+rdx]
- vmovdqa ymm13,YMMWORD[128+rdx]
- vmovdqa ymm14,YMMWORD[160+rdx]
- vpcmpeqd ymm7,ymm4,ymm1
- vpcmpeqd ymm11,ymm8,ymm1
- vpcmpeqd ymm15,ymm12,ymm1
- vpaddd ymm4,ymm4,ymm0
- vpaddd ymm8,ymm8,ymm0
- vpaddd ymm12,ymm12,ymm0
- lea rdx,[192+rdx]
- vpand ymm5,ymm5,ymm7
- vpand ymm6,ymm6,ymm7
- vpand ymm9,ymm9,ymm11
- vpand ymm10,ymm10,ymm11
- vpand ymm13,ymm13,ymm15
- vpand ymm14,ymm14,ymm15
- vpxor ymm2,ymm2,ymm5
- vpxor ymm3,ymm3,ymm6
- vpxor ymm2,ymm2,ymm9
- vpxor ymm3,ymm3,ymm10
- vpxor ymm2,ymm2,ymm13
- vpxor ymm3,ymm3,ymm14
- dec rax
- jnz NEAR $L$select_loop_avx2_w7
- vmovdqa ymm5,YMMWORD[rdx]
- vmovdqa ymm6,YMMWORD[32+rdx]
- vpcmpeqd ymm7,ymm4,ymm1
- vpand ymm5,ymm5,ymm7
- vpand ymm6,ymm6,ymm7
- vpxor ymm2,ymm2,ymm5
- vpxor ymm3,ymm3,ymm6
- vmovdqu YMMWORD[rcx],ymm2
- vmovdqu YMMWORD[32+rcx],ymm3
- vzeroupper
- movaps xmm6,XMMWORD[rsp]
- movaps xmm7,XMMWORD[16+rsp]
- movaps xmm8,XMMWORD[32+rsp]
- movaps xmm9,XMMWORD[48+rsp]
- movaps xmm10,XMMWORD[64+rsp]
- movaps xmm11,XMMWORD[80+rsp]
- movaps xmm12,XMMWORD[96+rsp]
- movaps xmm13,XMMWORD[112+rsp]
- movaps xmm14,XMMWORD[128+rsp]
- movaps xmm15,XMMWORD[144+rsp]
- lea rsp,[r11]
- DB 0F3h,0C3h ;repret
- $L$SEH_end_GFp_nistz256_avx2_select_w7:
- ALIGN 32
- __ecp_nistz256_add_toq:
- xor r11,r11
- add r12,QWORD[rbx]
- adc r13,QWORD[8+rbx]
- mov rax,r12
- adc r8,QWORD[16+rbx]
- adc r9,QWORD[24+rbx]
- mov rbp,r13
- adc r11,0
- sub r12,-1
- mov rcx,r8
- sbb r13,r14
- sbb r8,0
- mov r10,r9
- sbb r9,r15
- sbb r11,0
- cmovc r12,rax
- cmovc r13,rbp
- mov QWORD[rdi],r12
- cmovc r8,rcx
- mov QWORD[8+rdi],r13
- cmovc r9,r10
- mov QWORD[16+rdi],r8
- mov QWORD[24+rdi],r9
- DB 0F3h,0C3h ;repret
- ALIGN 32
- __ecp_nistz256_sub_fromq:
- sub r12,QWORD[rbx]
- sbb r13,QWORD[8+rbx]
- mov rax,r12
- sbb r8,QWORD[16+rbx]
- sbb r9,QWORD[24+rbx]
- mov rbp,r13
- sbb r11,r11
- add r12,-1
- mov rcx,r8
- adc r13,r14
- adc r8,0
- mov r10,r9
- adc r9,r15
- test r11,r11
- cmovz r12,rax
- cmovz r13,rbp
- mov QWORD[rdi],r12
- cmovz r8,rcx
- mov QWORD[8+rdi],r13
- cmovz r9,r10
- mov QWORD[16+rdi],r8
- mov QWORD[24+rdi],r9
- DB 0F3h,0C3h ;repret
- ALIGN 32
- __ecp_nistz256_subq:
- sub rax,r12
- sbb rbp,r13
- mov r12,rax
- sbb rcx,r8
- sbb r10,r9
- mov r13,rbp
- sbb r11,r11
- add rax,-1
- mov r8,rcx
- adc rbp,r14
- adc rcx,0
- mov r9,r10
- adc r10,r15
- test r11,r11
- cmovnz r12,rax
- cmovnz r13,rbp
- cmovnz r8,rcx
- cmovnz r9,r10
- DB 0F3h,0C3h ;repret
- ALIGN 32
- __ecp_nistz256_mul_by_2q:
- xor r11,r11
- add r12,r12
- adc r13,r13
- mov rax,r12
- adc r8,r8
- adc r9,r9
- mov rbp,r13
- adc r11,0
- sub r12,-1
- mov rcx,r8
- sbb r13,r14
- sbb r8,0
- mov r10,r9
- sbb r9,r15
- sbb r11,0
- cmovc r12,rax
- cmovc r13,rbp
- mov QWORD[rdi],r12
- cmovc r8,rcx
- mov QWORD[8+rdi],r13
- cmovc r9,r10
- mov QWORD[16+rdi],r8
- mov QWORD[24+rdi],r9
- DB 0F3h,0C3h ;repret
- global GFp_nistz256_point_double
- ALIGN 32
- GFp_nistz256_point_double:
- mov QWORD[8+rsp],rdi ;WIN64 prologue
- mov QWORD[16+rsp],rsi
- mov rax,rsp
- $L$SEH_begin_GFp_nistz256_point_double:
- mov rdi,rcx
- mov rsi,rdx
- lea rcx,[GFp_ia32cap_P]
- mov rcx,QWORD[8+rcx]
- and ecx,0x80100
- cmp ecx,0x80100
- je NEAR $L$point_doublex
- push rbp
- push rbx
- push r12
- push r13
- push r14
- push r15
- sub rsp,32*5+8
- $L$point_doubleq_body:
- $L$point_double_shortcutq:
- movdqu xmm0,XMMWORD[rsi]
- mov rbx,rsi
- movdqu xmm1,XMMWORD[16+rsi]
- mov r12,QWORD[((32+0))+rsi]
- mov r13,QWORD[((32+8))+rsi]
- mov r8,QWORD[((32+16))+rsi]
- mov r9,QWORD[((32+24))+rsi]
- mov r14,QWORD[(($L$poly+8))]
- mov r15,QWORD[(($L$poly+24))]
- movdqa XMMWORD[96+rsp],xmm0
- movdqa XMMWORD[(96+16)+rsp],xmm1
- lea r10,[32+rdi]
- lea r11,[64+rdi]
- DB 102,72,15,110,199
- DB 102,73,15,110,202
- DB 102,73,15,110,211
- lea rdi,[rsp]
- call __ecp_nistz256_mul_by_2q
- mov rax,QWORD[((64+0))+rsi]
- mov r14,QWORD[((64+8))+rsi]
- mov r15,QWORD[((64+16))+rsi]
- mov r8,QWORD[((64+24))+rsi]
- lea rsi,[((64-0))+rsi]
- lea rdi,[64+rsp]
- call __ecp_nistz256_sqr_montq
- mov rax,QWORD[((0+0))+rsp]
- mov r14,QWORD[((8+0))+rsp]
- lea rsi,[((0+0))+rsp]
- mov r15,QWORD[((16+0))+rsp]
- mov r8,QWORD[((24+0))+rsp]
- lea rdi,[rsp]
- call __ecp_nistz256_sqr_montq
- mov rax,QWORD[32+rbx]
- mov r9,QWORD[((64+0))+rbx]
- mov r10,QWORD[((64+8))+rbx]
- mov r11,QWORD[((64+16))+rbx]
- mov r12,QWORD[((64+24))+rbx]
- lea rsi,[((64-0))+rbx]
- lea rbx,[32+rbx]
- DB 102,72,15,126,215
- call __ecp_nistz256_mul_montq
- call __ecp_nistz256_mul_by_2q
- mov r12,QWORD[((96+0))+rsp]
- mov r13,QWORD[((96+8))+rsp]
- lea rbx,[64+rsp]
- mov r8,QWORD[((96+16))+rsp]
- mov r9,QWORD[((96+24))+rsp]
- lea rdi,[32+rsp]
- call __ecp_nistz256_add_toq
- mov r12,QWORD[((96+0))+rsp]
- mov r13,QWORD[((96+8))+rsp]
- lea rbx,[64+rsp]
- mov r8,QWORD[((96+16))+rsp]
- mov r9,QWORD[((96+24))+rsp]
- lea rdi,[64+rsp]
- call __ecp_nistz256_sub_fromq
- mov rax,QWORD[((0+0))+rsp]
- mov r14,QWORD[((8+0))+rsp]
- lea rsi,[((0+0))+rsp]
- mov r15,QWORD[((16+0))+rsp]
- mov r8,QWORD[((24+0))+rsp]
- DB 102,72,15,126,207
- call __ecp_nistz256_sqr_montq
- xor r9,r9
- mov rax,r12
- add r12,-1
- mov r10,r13
- adc r13,rsi
- mov rcx,r14
- adc r14,0
- mov r8,r15
- adc r15,rbp
- adc r9,0
- xor rsi,rsi
- test rax,1
- cmovz r12,rax
- cmovz r13,r10
- cmovz r14,rcx
- cmovz r15,r8
- cmovz r9,rsi
- mov rax,r13
- shr r12,1
- shl rax,63
- mov r10,r14
- shr r13,1
- or r12,rax
- shl r10,63
- mov rcx,r15
- shr r14,1
- or r13,r10
- shl rcx,63
- mov QWORD[rdi],r12
- shr r15,1
- mov QWORD[8+rdi],r13
- shl r9,63
- or r14,rcx
- or r15,r9
- mov QWORD[16+rdi],r14
- mov QWORD[24+rdi],r15
- mov rax,QWORD[64+rsp]
- lea rbx,[64+rsp]
- mov r9,QWORD[((0+32))+rsp]
- mov r10,QWORD[((8+32))+rsp]
- lea rsi,[((0+32))+rsp]
- mov r11,QWORD[((16+32))+rsp]
- mov r12,QWORD[((24+32))+rsp]
- lea rdi,[32+rsp]
- call __ecp_nistz256_mul_montq
- lea rdi,[128+rsp]
- call __ecp_nistz256_mul_by_2q
- lea rbx,[32+rsp]
- lea rdi,[32+rsp]
- call __ecp_nistz256_add_toq
- mov rax,QWORD[96+rsp]
- lea rbx,[96+rsp]
- mov r9,QWORD[((0+0))+rsp]
- mov r10,QWORD[((8+0))+rsp]
- lea rsi,[((0+0))+rsp]
- mov r11,QWORD[((16+0))+rsp]
- mov r12,QWORD[((24+0))+rsp]
- lea rdi,[rsp]
- call __ecp_nistz256_mul_montq
- lea rdi,[128+rsp]
- call __ecp_nistz256_mul_by_2q
- mov rax,QWORD[((0+32))+rsp]
- mov r14,QWORD[((8+32))+rsp]
- lea rsi,[((0+32))+rsp]
- mov r15,QWORD[((16+32))+rsp]
- mov r8,QWORD[((24+32))+rsp]
- DB 102,72,15,126,199
- call __ecp_nistz256_sqr_montq
- lea rbx,[128+rsp]
- mov r8,r14
- mov r9,r15
- mov r14,rsi
- mov r15,rbp
- call __ecp_nistz256_sub_fromq
- mov rax,QWORD[((0+0))+rsp]
- mov rbp,QWORD[((0+8))+rsp]
- mov rcx,QWORD[((0+16))+rsp]
- mov r10,QWORD[((0+24))+rsp]
- lea rdi,[rsp]
- call __ecp_nistz256_subq
- mov rax,QWORD[32+rsp]
- lea rbx,[32+rsp]
- mov r14,r12
- xor ecx,ecx
- mov QWORD[((0+0))+rsp],r12
- mov r10,r13
- mov QWORD[((0+8))+rsp],r13
- cmovz r11,r8
- mov QWORD[((0+16))+rsp],r8
- lea rsi,[((0-0))+rsp]
- cmovz r12,r9
- mov QWORD[((0+24))+rsp],r9
- mov r9,r14
- lea rdi,[rsp]
- call __ecp_nistz256_mul_montq
- DB 102,72,15,126,203
- DB 102,72,15,126,207
- call __ecp_nistz256_sub_fromq
- lea rsi,[((160+56))+rsp]
- mov r15,QWORD[((-48))+rsi]
- mov r14,QWORD[((-40))+rsi]
- mov r13,QWORD[((-32))+rsi]
- mov r12,QWORD[((-24))+rsi]
- mov rbx,QWORD[((-16))+rsi]
- mov rbp,QWORD[((-8))+rsi]
- lea rsp,[rsi]
- $L$point_doubleq_epilogue:
- mov rdi,QWORD[8+rsp] ;WIN64 epilogue
- mov rsi,QWORD[16+rsp]
- DB 0F3h,0C3h ;repret
- $L$SEH_end_GFp_nistz256_point_double:
- global GFp_nistz256_point_add
- ALIGN 32
- GFp_nistz256_point_add:
- mov QWORD[8+rsp],rdi ;WIN64 prologue
- mov QWORD[16+rsp],rsi
- mov rax,rsp
- $L$SEH_begin_GFp_nistz256_point_add:
- mov rdi,rcx
- mov rsi,rdx
- mov rdx,r8
- lea rcx,[GFp_ia32cap_P]
- mov rcx,QWORD[8+rcx]
- and ecx,0x80100
- cmp ecx,0x80100
- je NEAR $L$point_addx
- push rbp
- push rbx
- push r12
- push r13
- push r14
- push r15
- sub rsp,32*18+8
- $L$point_addq_body:
- movdqu xmm0,XMMWORD[rsi]
- movdqu xmm1,XMMWORD[16+rsi]
- movdqu xmm2,XMMWORD[32+rsi]
- movdqu xmm3,XMMWORD[48+rsi]
- movdqu xmm4,XMMWORD[64+rsi]
- movdqu xmm5,XMMWORD[80+rsi]
- mov rbx,rsi
- mov rsi,rdx
- movdqa XMMWORD[384+rsp],xmm0
- movdqa XMMWORD[(384+16)+rsp],xmm1
- movdqa XMMWORD[416+rsp],xmm2
- movdqa XMMWORD[(416+16)+rsp],xmm3
- movdqa XMMWORD[448+rsp],xmm4
- movdqa XMMWORD[(448+16)+rsp],xmm5
- por xmm5,xmm4
- movdqu xmm0,XMMWORD[rsi]
- pshufd xmm3,xmm5,0xb1
- movdqu xmm1,XMMWORD[16+rsi]
- movdqu xmm2,XMMWORD[32+rsi]
- por xmm5,xmm3
- movdqu xmm3,XMMWORD[48+rsi]
- mov rax,QWORD[((64+0))+rsi]
- mov r14,QWORD[((64+8))+rsi]
- mov r15,QWORD[((64+16))+rsi]
- mov r8,QWORD[((64+24))+rsi]
- movdqa XMMWORD[480+rsp],xmm0
- pshufd xmm4,xmm5,0x1e
- movdqa XMMWORD[(480+16)+rsp],xmm1
- movdqu xmm0,XMMWORD[64+rsi]
- movdqu xmm1,XMMWORD[80+rsi]
- movdqa XMMWORD[512+rsp],xmm2
- movdqa XMMWORD[(512+16)+rsp],xmm3
- por xmm5,xmm4
- pxor xmm4,xmm4
- por xmm1,xmm0
- DB 102,72,15,110,199
- lea rsi,[((64-0))+rsi]
- mov QWORD[((544+0))+rsp],rax
- mov QWORD[((544+8))+rsp],r14
- mov QWORD[((544+16))+rsp],r15
- mov QWORD[((544+24))+rsp],r8
- lea rdi,[96+rsp]
- call __ecp_nistz256_sqr_montq
- pcmpeqd xmm5,xmm4
- pshufd xmm4,xmm1,0xb1
- por xmm4,xmm1
- pshufd xmm5,xmm5,0
- pshufd xmm3,xmm4,0x1e
- por xmm4,xmm3
- pxor xmm3,xmm3
- pcmpeqd xmm4,xmm3
- pshufd xmm4,xmm4,0
- mov rax,QWORD[((64+0))+rbx]
- mov r14,QWORD[((64+8))+rbx]
- mov r15,QWORD[((64+16))+rbx]
- mov r8,QWORD[((64+24))+rbx]
- DB 102,72,15,110,203
- lea rsi,[((64-0))+rbx]
- lea rdi,[32+rsp]
- call __ecp_nistz256_sqr_montq
- mov rax,QWORD[544+rsp]
- lea rbx,[544+rsp]
- mov r9,QWORD[((0+96))+rsp]
- mov r10,QWORD[((8+96))+rsp]
- lea rsi,[((0+96))+rsp]
- mov r11,QWORD[((16+96))+rsp]
- mov r12,QWORD[((24+96))+rsp]
- lea rdi,[224+rsp]
- call __ecp_nistz256_mul_montq
- mov rax,QWORD[448+rsp]
- lea rbx,[448+rsp]
- mov r9,QWORD[((0+32))+rsp]
- mov r10,QWORD[((8+32))+rsp]
- lea rsi,[((0+32))+rsp]
- mov r11,QWORD[((16+32))+rsp]
- mov r12,QWORD[((24+32))+rsp]
- lea rdi,[256+rsp]
- call __ecp_nistz256_mul_montq
- mov rax,QWORD[416+rsp]
- lea rbx,[416+rsp]
- mov r9,QWORD[((0+224))+rsp]
- mov r10,QWORD[((8+224))+rsp]
- lea rsi,[((0+224))+rsp]
- mov r11,QWORD[((16+224))+rsp]
- mov r12,QWORD[((24+224))+rsp]
- lea rdi,[224+rsp]
- call __ecp_nistz256_mul_montq
- mov rax,QWORD[512+rsp]
- lea rbx,[512+rsp]
- mov r9,QWORD[((0+256))+rsp]
- mov r10,QWORD[((8+256))+rsp]
- lea rsi,[((0+256))+rsp]
- mov r11,QWORD[((16+256))+rsp]
- mov r12,QWORD[((24+256))+rsp]
- lea rdi,[256+rsp]
- call __ecp_nistz256_mul_montq
- lea rbx,[224+rsp]
- lea rdi,[64+rsp]
- call __ecp_nistz256_sub_fromq
- or r12,r13
- movdqa xmm2,xmm4
- or r12,r8
- or r12,r9
- por xmm2,xmm5
- DB 102,73,15,110,220
- mov rax,QWORD[384+rsp]
- lea rbx,[384+rsp]
- mov r9,QWORD[((0+96))+rsp]
- mov r10,QWORD[((8+96))+rsp]
- lea rsi,[((0+96))+rsp]
- mov r11,QWORD[((16+96))+rsp]
- mov r12,QWORD[((24+96))+rsp]
- lea rdi,[160+rsp]
- call __ecp_nistz256_mul_montq
- mov rax,QWORD[480+rsp]
- lea rbx,[480+rsp]
- mov r9,QWORD[((0+32))+rsp]
- mov r10,QWORD[((8+32))+rsp]
- lea rsi,[((0+32))+rsp]
- mov r11,QWORD[((16+32))+rsp]
- mov r12,QWORD[((24+32))+rsp]
- lea rdi,[192+rsp]
- call __ecp_nistz256_mul_montq
- lea rbx,[160+rsp]
- lea rdi,[rsp]
- call __ecp_nistz256_sub_fromq
- or r12,r13
- or r12,r8
- or r12,r9
- DB 102,73,15,126,208
- DB 102,73,15,126,217
- or r12,r8
- DB 0x3e
- jnz NEAR $L$add_proceedq
- test r9,r9
- jz NEAR $L$add_doubleq
- DB 102,72,15,126,199
- pxor xmm0,xmm0
- movdqu XMMWORD[rdi],xmm0
- movdqu XMMWORD[16+rdi],xmm0
- movdqu XMMWORD[32+rdi],xmm0
- movdqu XMMWORD[48+rdi],xmm0
- movdqu XMMWORD[64+rdi],xmm0
- movdqu XMMWORD[80+rdi],xmm0
- jmp NEAR $L$add_doneq
- ALIGN 32
- $L$add_doubleq:
- DB 102,72,15,126,206
- DB 102,72,15,126,199
- add rsp,416
- jmp NEAR $L$point_double_shortcutq
- ALIGN 32
- $L$add_proceedq:
- mov rax,QWORD[((0+64))+rsp]
- mov r14,QWORD[((8+64))+rsp]
- lea rsi,[((0+64))+rsp]
- mov r15,QWORD[((16+64))+rsp]
- mov r8,QWORD[((24+64))+rsp]
- lea rdi,[96+rsp]
- call __ecp_nistz256_sqr_montq
- mov rax,QWORD[448+rsp]
- lea rbx,[448+rsp]
- mov r9,QWORD[((0+0))+rsp]
- mov r10,QWORD[((8+0))+rsp]
- lea rsi,[((0+0))+rsp]
- mov r11,QWORD[((16+0))+rsp]
- mov r12,QWORD[((24+0))+rsp]
- lea rdi,[352+rsp]
- call __ecp_nistz256_mul_montq
- mov rax,QWORD[((0+0))+rsp]
- mov r14,QWORD[((8+0))+rsp]
- lea rsi,[((0+0))+rsp]
- mov r15,QWORD[((16+0))+rsp]
- mov r8,QWORD[((24+0))+rsp]
- lea rdi,[32+rsp]
- call __ecp_nistz256_sqr_montq
- mov rax,QWORD[544+rsp]
- lea rbx,[544+rsp]
- mov r9,QWORD[((0+352))+rsp]
- mov r10,QWORD[((8+352))+rsp]
- lea rsi,[((0+352))+rsp]
- mov r11,QWORD[((16+352))+rsp]
- mov r12,QWORD[((24+352))+rsp]
- lea rdi,[352+rsp]
- call __ecp_nistz256_mul_montq
- mov rax,QWORD[rsp]
- lea rbx,[rsp]
- mov r9,QWORD[((0+32))+rsp]
- mov r10,QWORD[((8+32))+rsp]
- lea rsi,[((0+32))+rsp]
- mov r11,QWORD[((16+32))+rsp]
- mov r12,QWORD[((24+32))+rsp]
- lea rdi,[128+rsp]
- call __ecp_nistz256_mul_montq
- mov rax,QWORD[160+rsp]
- lea rbx,[160+rsp]
- mov r9,QWORD[((0+32))+rsp]
- mov r10,QWORD[((8+32))+rsp]
- lea rsi,[((0+32))+rsp]
- mov r11,QWORD[((16+32))+rsp]
- mov r12,QWORD[((24+32))+rsp]
- lea rdi,[192+rsp]
- call __ecp_nistz256_mul_montq
- xor r11,r11
- add r12,r12
- lea rsi,[96+rsp]
- adc r13,r13
- mov rax,r12
- adc r8,r8
- adc r9,r9
- mov rbp,r13
- adc r11,0
- sub r12,-1
- mov rcx,r8
- sbb r13,r14
- sbb r8,0
- mov r10,r9
- sbb r9,r15
- sbb r11,0
- cmovc r12,rax
- mov rax,QWORD[rsi]
- cmovc r13,rbp
- mov rbp,QWORD[8+rsi]
- cmovc r8,rcx
- mov rcx,QWORD[16+rsi]
- cmovc r9,r10
- mov r10,QWORD[24+rsi]
- call __ecp_nistz256_subq
- lea rbx,[128+rsp]
- lea rdi,[288+rsp]
- call __ecp_nistz256_sub_fromq
- mov rax,QWORD[((192+0))+rsp]
- mov rbp,QWORD[((192+8))+rsp]
- mov rcx,QWORD[((192+16))+rsp]
- mov r10,QWORD[((192+24))+rsp]
- lea rdi,[320+rsp]
- call __ecp_nistz256_subq
- mov QWORD[rdi],r12
- mov QWORD[8+rdi],r13
- mov QWORD[16+rdi],r8
- mov QWORD[24+rdi],r9
- mov rax,QWORD[128+rsp]
- lea rbx,[128+rsp]
- mov r9,QWORD[((0+224))+rsp]
- mov r10,QWORD[((8+224))+rsp]
- lea rsi,[((0+224))+rsp]
- mov r11,QWORD[((16+224))+rsp]
- mov r12,QWORD[((24+224))+rsp]
- lea rdi,[256+rsp]
- call __ecp_nistz256_mul_montq
- mov rax,QWORD[320+rsp]
- lea rbx,[320+rsp]
- mov r9,QWORD[((0+64))+rsp]
- mov r10,QWORD[((8+64))+rsp]
- lea rsi,[((0+64))+rsp]
- mov r11,QWORD[((16+64))+rsp]
- mov r12,QWORD[((24+64))+rsp]
- lea rdi,[320+rsp]
- call __ecp_nistz256_mul_montq
- lea rbx,[256+rsp]
- lea rdi,[320+rsp]
- call __ecp_nistz256_sub_fromq
- DB 102,72,15,126,199
- movdqa xmm0,xmm5
- movdqa xmm1,xmm5
- pandn xmm0,XMMWORD[352+rsp]
- movdqa xmm2,xmm5
- pandn xmm1,XMMWORD[((352+16))+rsp]
- movdqa xmm3,xmm5
- pand xmm2,XMMWORD[544+rsp]
- pand xmm3,XMMWORD[((544+16))+rsp]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqa xmm0,xmm4
- movdqa xmm1,xmm4
- pandn xmm0,xmm2
- movdqa xmm2,xmm4
- pandn xmm1,xmm3
- movdqa xmm3,xmm4
- pand xmm2,XMMWORD[448+rsp]
- pand xmm3,XMMWORD[((448+16))+rsp]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqu XMMWORD[64+rdi],xmm2
- movdqu XMMWORD[80+rdi],xmm3
- movdqa xmm0,xmm5
- movdqa xmm1,xmm5
- pandn xmm0,XMMWORD[288+rsp]
- movdqa xmm2,xmm5
- pandn xmm1,XMMWORD[((288+16))+rsp]
- movdqa xmm3,xmm5
- pand xmm2,XMMWORD[480+rsp]
- pand xmm3,XMMWORD[((480+16))+rsp]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqa xmm0,xmm4
- movdqa xmm1,xmm4
- pandn xmm0,xmm2
- movdqa xmm2,xmm4
- pandn xmm1,xmm3
- movdqa xmm3,xmm4
- pand xmm2,XMMWORD[384+rsp]
- pand xmm3,XMMWORD[((384+16))+rsp]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqu XMMWORD[rdi],xmm2
- movdqu XMMWORD[16+rdi],xmm3
- movdqa xmm0,xmm5
- movdqa xmm1,xmm5
- pandn xmm0,XMMWORD[320+rsp]
- movdqa xmm2,xmm5
- pandn xmm1,XMMWORD[((320+16))+rsp]
- movdqa xmm3,xmm5
- pand xmm2,XMMWORD[512+rsp]
- pand xmm3,XMMWORD[((512+16))+rsp]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqa xmm0,xmm4
- movdqa xmm1,xmm4
- pandn xmm0,xmm2
- movdqa xmm2,xmm4
- pandn xmm1,xmm3
- movdqa xmm3,xmm4
- pand xmm2,XMMWORD[416+rsp]
- pand xmm3,XMMWORD[((416+16))+rsp]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqu XMMWORD[32+rdi],xmm2
- movdqu XMMWORD[48+rdi],xmm3
- $L$add_doneq:
- lea rsi,[((576+56))+rsp]
- mov r15,QWORD[((-48))+rsi]
- mov r14,QWORD[((-40))+rsi]
- mov r13,QWORD[((-32))+rsi]
- mov r12,QWORD[((-24))+rsi]
- mov rbx,QWORD[((-16))+rsi]
- mov rbp,QWORD[((-8))+rsi]
- lea rsp,[rsi]
- $L$point_addq_epilogue:
- mov rdi,QWORD[8+rsp] ;WIN64 epilogue
- mov rsi,QWORD[16+rsp]
- DB 0F3h,0C3h ;repret
- $L$SEH_end_GFp_nistz256_point_add:
- global GFp_nistz256_point_add_affine
- ALIGN 32
- GFp_nistz256_point_add_affine:
- mov QWORD[8+rsp],rdi ;WIN64 prologue
- mov QWORD[16+rsp],rsi
- mov rax,rsp
- $L$SEH_begin_GFp_nistz256_point_add_affine:
- mov rdi,rcx
- mov rsi,rdx
- mov rdx,r8
- lea rcx,[GFp_ia32cap_P]
- mov rcx,QWORD[8+rcx]
- and ecx,0x80100
- cmp ecx,0x80100
- je NEAR $L$point_add_affinex
- push rbp
- push rbx
- push r12
- push r13
- push r14
- push r15
- sub rsp,32*15+8
- $L$add_affineq_body:
- movdqu xmm0,XMMWORD[rsi]
- mov rbx,rdx
- movdqu xmm1,XMMWORD[16+rsi]
- movdqu xmm2,XMMWORD[32+rsi]
- movdqu xmm3,XMMWORD[48+rsi]
- movdqu xmm4,XMMWORD[64+rsi]
- movdqu xmm5,XMMWORD[80+rsi]
- mov rax,QWORD[((64+0))+rsi]
- mov r14,QWORD[((64+8))+rsi]
- mov r15,QWORD[((64+16))+rsi]
- mov r8,QWORD[((64+24))+rsi]
- movdqa XMMWORD[320+rsp],xmm0
- movdqa XMMWORD[(320+16)+rsp],xmm1
- movdqa XMMWORD[352+rsp],xmm2
- movdqa XMMWORD[(352+16)+rsp],xmm3
- movdqa XMMWORD[384+rsp],xmm4
- movdqa XMMWORD[(384+16)+rsp],xmm5
- por xmm5,xmm4
- movdqu xmm0,XMMWORD[rbx]
- pshufd xmm3,xmm5,0xb1
- movdqu xmm1,XMMWORD[16+rbx]
- movdqu xmm2,XMMWORD[32+rbx]
- por xmm5,xmm3
- movdqu xmm3,XMMWORD[48+rbx]
- movdqa XMMWORD[416+rsp],xmm0
- pshufd xmm4,xmm5,0x1e
- movdqa XMMWORD[(416+16)+rsp],xmm1
- por xmm1,xmm0
- DB 102,72,15,110,199
- movdqa XMMWORD[448+rsp],xmm2
- movdqa XMMWORD[(448+16)+rsp],xmm3
- por xmm3,xmm2
- por xmm5,xmm4
- pxor xmm4,xmm4
- por xmm3,xmm1
- lea rsi,[((64-0))+rsi]
- lea rdi,[32+rsp]
- call __ecp_nistz256_sqr_montq
- pcmpeqd xmm5,xmm4
- pshufd xmm4,xmm3,0xb1
- mov rax,QWORD[rbx]
- mov r9,r12
- por xmm4,xmm3
- pshufd xmm5,xmm5,0
- pshufd xmm3,xmm4,0x1e
- mov r10,r13
- por xmm4,xmm3
- pxor xmm3,xmm3
- mov r11,r14
- pcmpeqd xmm4,xmm3
- pshufd xmm4,xmm4,0
- lea rsi,[((32-0))+rsp]
- mov r12,r15
- lea rdi,[rsp]
- call __ecp_nistz256_mul_montq
- lea rbx,[320+rsp]
- lea rdi,[64+rsp]
- call __ecp_nistz256_sub_fromq
- mov rax,QWORD[384+rsp]
- lea rbx,[384+rsp]
- mov r9,QWORD[((0+32))+rsp]
- mov r10,QWORD[((8+32))+rsp]
- lea rsi,[((0+32))+rsp]
- mov r11,QWORD[((16+32))+rsp]
- mov r12,QWORD[((24+32))+rsp]
- lea rdi,[32+rsp]
- call __ecp_nistz256_mul_montq
- mov rax,QWORD[384+rsp]
- lea rbx,[384+rsp]
- mov r9,QWORD[((0+64))+rsp]
- mov r10,QWORD[((8+64))+rsp]
- lea rsi,[((0+64))+rsp]
- mov r11,QWORD[((16+64))+rsp]
- mov r12,QWORD[((24+64))+rsp]
- lea rdi,[288+rsp]
- call __ecp_nistz256_mul_montq
- mov rax,QWORD[448+rsp]
- lea rbx,[448+rsp]
- mov r9,QWORD[((0+32))+rsp]
- mov r10,QWORD[((8+32))+rsp]
- lea rsi,[((0+32))+rsp]
- mov r11,QWORD[((16+32))+rsp]
- mov r12,QWORD[((24+32))+rsp]
- lea rdi,[32+rsp]
- call __ecp_nistz256_mul_montq
- lea rbx,[352+rsp]
- lea rdi,[96+rsp]
- call __ecp_nistz256_sub_fromq
- mov rax,QWORD[((0+64))+rsp]
- mov r14,QWORD[((8+64))+rsp]
- lea rsi,[((0+64))+rsp]
- mov r15,QWORD[((16+64))+rsp]
- mov r8,QWORD[((24+64))+rsp]
- lea rdi,[128+rsp]
- call __ecp_nistz256_sqr_montq
- mov rax,QWORD[((0+96))+rsp]
- mov r14,QWORD[((8+96))+rsp]
- lea rsi,[((0+96))+rsp]
- mov r15,QWORD[((16+96))+rsp]
- mov r8,QWORD[((24+96))+rsp]
- lea rdi,[192+rsp]
- call __ecp_nistz256_sqr_montq
- mov rax,QWORD[128+rsp]
- lea rbx,[128+rsp]
- mov r9,QWORD[((0+64))+rsp]
- mov r10,QWORD[((8+64))+rsp]
- lea rsi,[((0+64))+rsp]
- mov r11,QWORD[((16+64))+rsp]
- mov r12,QWORD[((24+64))+rsp]
- lea rdi,[160+rsp]
- call __ecp_nistz256_mul_montq
- mov rax,QWORD[320+rsp]
- lea rbx,[320+rsp]
- mov r9,QWORD[((0+128))+rsp]
- mov r10,QWORD[((8+128))+rsp]
- lea rsi,[((0+128))+rsp]
- mov r11,QWORD[((16+128))+rsp]
- mov r12,QWORD[((24+128))+rsp]
- lea rdi,[rsp]
- call __ecp_nistz256_mul_montq
- xor r11,r11
- add r12,r12
- lea rsi,[192+rsp]
- adc r13,r13
- mov rax,r12
- adc r8,r8
- adc r9,r9
- mov rbp,r13
- adc r11,0
- sub r12,-1
- mov rcx,r8
- sbb r13,r14
- sbb r8,0
- mov r10,r9
- sbb r9,r15
- sbb r11,0
- cmovc r12,rax
- mov rax,QWORD[rsi]
- cmovc r13,rbp
- mov rbp,QWORD[8+rsi]
- cmovc r8,rcx
- mov rcx,QWORD[16+rsi]
- cmovc r9,r10
- mov r10,QWORD[24+rsi]
- call __ecp_nistz256_subq
- lea rbx,[160+rsp]
- lea rdi,[224+rsp]
- call __ecp_nistz256_sub_fromq
- mov rax,QWORD[((0+0))+rsp]
- mov rbp,QWORD[((0+8))+rsp]
- mov rcx,QWORD[((0+16))+rsp]
- mov r10,QWORD[((0+24))+rsp]
- lea rdi,[64+rsp]
- call __ecp_nistz256_subq
- mov QWORD[rdi],r12
- mov QWORD[8+rdi],r13
- mov QWORD[16+rdi],r8
- mov QWORD[24+rdi],r9
- mov rax,QWORD[352+rsp]
- lea rbx,[352+rsp]
- mov r9,QWORD[((0+160))+rsp]
- mov r10,QWORD[((8+160))+rsp]
- lea rsi,[((0+160))+rsp]
- mov r11,QWORD[((16+160))+rsp]
- mov r12,QWORD[((24+160))+rsp]
- lea rdi,[32+rsp]
- call __ecp_nistz256_mul_montq
- mov rax,QWORD[96+rsp]
- lea rbx,[96+rsp]
- mov r9,QWORD[((0+64))+rsp]
- mov r10,QWORD[((8+64))+rsp]
- lea rsi,[((0+64))+rsp]
- mov r11,QWORD[((16+64))+rsp]
- mov r12,QWORD[((24+64))+rsp]
- lea rdi,[64+rsp]
- call __ecp_nistz256_mul_montq
- lea rbx,[32+rsp]
- lea rdi,[256+rsp]
- call __ecp_nistz256_sub_fromq
- DB 102,72,15,126,199
- movdqa xmm0,xmm5
- movdqa xmm1,xmm5
- pandn xmm0,XMMWORD[288+rsp]
- movdqa xmm2,xmm5
- pandn xmm1,XMMWORD[((288+16))+rsp]
- movdqa xmm3,xmm5
- pand xmm2,XMMWORD[$L$ONE_mont]
- pand xmm3,XMMWORD[(($L$ONE_mont+16))]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqa xmm0,xmm4
- movdqa xmm1,xmm4
- pandn xmm0,xmm2
- movdqa xmm2,xmm4
- pandn xmm1,xmm3
- movdqa xmm3,xmm4
- pand xmm2,XMMWORD[384+rsp]
- pand xmm3,XMMWORD[((384+16))+rsp]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqu XMMWORD[64+rdi],xmm2
- movdqu XMMWORD[80+rdi],xmm3
- movdqa xmm0,xmm5
- movdqa xmm1,xmm5
- pandn xmm0,XMMWORD[224+rsp]
- movdqa xmm2,xmm5
- pandn xmm1,XMMWORD[((224+16))+rsp]
- movdqa xmm3,xmm5
- pand xmm2,XMMWORD[416+rsp]
- pand xmm3,XMMWORD[((416+16))+rsp]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqa xmm0,xmm4
- movdqa xmm1,xmm4
- pandn xmm0,xmm2
- movdqa xmm2,xmm4
- pandn xmm1,xmm3
- movdqa xmm3,xmm4
- pand xmm2,XMMWORD[320+rsp]
- pand xmm3,XMMWORD[((320+16))+rsp]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqu XMMWORD[rdi],xmm2
- movdqu XMMWORD[16+rdi],xmm3
- movdqa xmm0,xmm5
- movdqa xmm1,xmm5
- pandn xmm0,XMMWORD[256+rsp]
- movdqa xmm2,xmm5
- pandn xmm1,XMMWORD[((256+16))+rsp]
- movdqa xmm3,xmm5
- pand xmm2,XMMWORD[448+rsp]
- pand xmm3,XMMWORD[((448+16))+rsp]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqa xmm0,xmm4
- movdqa xmm1,xmm4
- pandn xmm0,xmm2
- movdqa xmm2,xmm4
- pandn xmm1,xmm3
- movdqa xmm3,xmm4
- pand xmm2,XMMWORD[352+rsp]
- pand xmm3,XMMWORD[((352+16))+rsp]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqu XMMWORD[32+rdi],xmm2
- movdqu XMMWORD[48+rdi],xmm3
- lea rsi,[((480+56))+rsp]
- mov r15,QWORD[((-48))+rsi]
- mov r14,QWORD[((-40))+rsi]
- mov r13,QWORD[((-32))+rsi]
- mov r12,QWORD[((-24))+rsi]
- mov rbx,QWORD[((-16))+rsi]
- mov rbp,QWORD[((-8))+rsi]
- lea rsp,[rsi]
- $L$add_affineq_epilogue:
- mov rdi,QWORD[8+rsp] ;WIN64 epilogue
- mov rsi,QWORD[16+rsp]
- DB 0F3h,0C3h ;repret
- $L$SEH_end_GFp_nistz256_point_add_affine:
- ALIGN 32
- __ecp_nistz256_add_tox:
- xor r11,r11
- adc r12,QWORD[rbx]
- adc r13,QWORD[8+rbx]
- mov rax,r12
- adc r8,QWORD[16+rbx]
- adc r9,QWORD[24+rbx]
- mov rbp,r13
- adc r11,0
- xor r10,r10
- sbb r12,-1
- mov rcx,r8
- sbb r13,r14
- sbb r8,0
- mov r10,r9
- sbb r9,r15
- sbb r11,0
- cmovc r12,rax
- cmovc r13,rbp
- mov QWORD[rdi],r12
- cmovc r8,rcx
- mov QWORD[8+rdi],r13
- cmovc r9,r10
- mov QWORD[16+rdi],r8
- mov QWORD[24+rdi],r9
- DB 0F3h,0C3h ;repret
- ALIGN 32
- __ecp_nistz256_sub_fromx:
- xor r11,r11
- sbb r12,QWORD[rbx]
- sbb r13,QWORD[8+rbx]
- mov rax,r12
- sbb r8,QWORD[16+rbx]
- sbb r9,QWORD[24+rbx]
- mov rbp,r13
- sbb r11,0
- xor r10,r10
- adc r12,-1
- mov rcx,r8
- adc r13,r14
- adc r8,0
- mov r10,r9
- adc r9,r15
- bt r11,0
- cmovnc r12,rax
- cmovnc r13,rbp
- mov QWORD[rdi],r12
- cmovnc r8,rcx
- mov QWORD[8+rdi],r13
- cmovnc r9,r10
- mov QWORD[16+rdi],r8
- mov QWORD[24+rdi],r9
- DB 0F3h,0C3h ;repret
- ALIGN 32
- __ecp_nistz256_subx:
- xor r11,r11
- sbb rax,r12
- sbb rbp,r13
- mov r12,rax
- sbb rcx,r8
- sbb r10,r9
- mov r13,rbp
- sbb r11,0
- xor r9,r9
- adc rax,-1
- mov r8,rcx
- adc rbp,r14
- adc rcx,0
- mov r9,r10
- adc r10,r15
- bt r11,0
- cmovc r12,rax
- cmovc r13,rbp
- cmovc r8,rcx
- cmovc r9,r10
- DB 0F3h,0C3h ;repret
- ALIGN 32
- __ecp_nistz256_mul_by_2x:
- xor r11,r11
- adc r12,r12
- adc r13,r13
- mov rax,r12
- adc r8,r8
- adc r9,r9
- mov rbp,r13
- adc r11,0
- xor r10,r10
- sbb r12,-1
- mov rcx,r8
- sbb r13,r14
- sbb r8,0
- mov r10,r9
- sbb r9,r15
- sbb r11,0
- cmovc r12,rax
- cmovc r13,rbp
- mov QWORD[rdi],r12
- cmovc r8,rcx
- mov QWORD[8+rdi],r13
- cmovc r9,r10
- mov QWORD[16+rdi],r8
- mov QWORD[24+rdi],r9
- DB 0F3h,0C3h ;repret
- ALIGN 32
- GFp_nistz256_point_doublex:
- mov QWORD[8+rsp],rdi ;WIN64 prologue
- mov QWORD[16+rsp],rsi
- mov rax,rsp
- $L$SEH_begin_GFp_nistz256_point_doublex:
- mov rdi,rcx
- mov rsi,rdx
- $L$point_doublex:
- push rbp
- push rbx
- push r12
- push r13
- push r14
- push r15
- sub rsp,32*5+8
- $L$point_doublex_body:
- $L$point_double_shortcutx:
- movdqu xmm0,XMMWORD[rsi]
- mov rbx,rsi
- movdqu xmm1,XMMWORD[16+rsi]
- mov r12,QWORD[((32+0))+rsi]
- mov r13,QWORD[((32+8))+rsi]
- mov r8,QWORD[((32+16))+rsi]
- mov r9,QWORD[((32+24))+rsi]
- mov r14,QWORD[(($L$poly+8))]
- mov r15,QWORD[(($L$poly+24))]
- movdqa XMMWORD[96+rsp],xmm0
- movdqa XMMWORD[(96+16)+rsp],xmm1
- lea r10,[32+rdi]
- lea r11,[64+rdi]
- DB 102,72,15,110,199
- DB 102,73,15,110,202
- DB 102,73,15,110,211
- lea rdi,[rsp]
- call __ecp_nistz256_mul_by_2x
- mov rdx,QWORD[((64+0))+rsi]
- mov r14,QWORD[((64+8))+rsi]
- mov r15,QWORD[((64+16))+rsi]
- mov r8,QWORD[((64+24))+rsi]
- lea rsi,[((64-128))+rsi]
- lea rdi,[64+rsp]
- call __ecp_nistz256_sqr_montx
- mov rdx,QWORD[((0+0))+rsp]
- mov r14,QWORD[((8+0))+rsp]
- lea rsi,[((-128+0))+rsp]
- mov r15,QWORD[((16+0))+rsp]
- mov r8,QWORD[((24+0))+rsp]
- lea rdi,[rsp]
- call __ecp_nistz256_sqr_montx
- mov rdx,QWORD[32+rbx]
- mov r9,QWORD[((64+0))+rbx]
- mov r10,QWORD[((64+8))+rbx]
- mov r11,QWORD[((64+16))+rbx]
- mov r12,QWORD[((64+24))+rbx]
- lea rsi,[((64-128))+rbx]
- lea rbx,[32+rbx]
- DB 102,72,15,126,215
- call __ecp_nistz256_mul_montx
- call __ecp_nistz256_mul_by_2x
- mov r12,QWORD[((96+0))+rsp]
- mov r13,QWORD[((96+8))+rsp]
- lea rbx,[64+rsp]
- mov r8,QWORD[((96+16))+rsp]
- mov r9,QWORD[((96+24))+rsp]
- lea rdi,[32+rsp]
- call __ecp_nistz256_add_tox
- mov r12,QWORD[((96+0))+rsp]
- mov r13,QWORD[((96+8))+rsp]
- lea rbx,[64+rsp]
- mov r8,QWORD[((96+16))+rsp]
- mov r9,QWORD[((96+24))+rsp]
- lea rdi,[64+rsp]
- call __ecp_nistz256_sub_fromx
- mov rdx,QWORD[((0+0))+rsp]
- mov r14,QWORD[((8+0))+rsp]
- lea rsi,[((-128+0))+rsp]
- mov r15,QWORD[((16+0))+rsp]
- mov r8,QWORD[((24+0))+rsp]
- DB 102,72,15,126,207
- call __ecp_nistz256_sqr_montx
- xor r9,r9
- mov rax,r12
- add r12,-1
- mov r10,r13
- adc r13,rsi
- mov rcx,r14
- adc r14,0
- mov r8,r15
- adc r15,rbp
- adc r9,0
- xor rsi,rsi
- test rax,1
- cmovz r12,rax
- cmovz r13,r10
- cmovz r14,rcx
- cmovz r15,r8
- cmovz r9,rsi
- mov rax,r13
- shr r12,1
- shl rax,63
- mov r10,r14
- shr r13,1
- or r12,rax
- shl r10,63
- mov rcx,r15
- shr r14,1
- or r13,r10
- shl rcx,63
- mov QWORD[rdi],r12
- shr r15,1
- mov QWORD[8+rdi],r13
- shl r9,63
- or r14,rcx
- or r15,r9
- mov QWORD[16+rdi],r14
- mov QWORD[24+rdi],r15
- mov rdx,QWORD[64+rsp]
- lea rbx,[64+rsp]
- mov r9,QWORD[((0+32))+rsp]
- mov r10,QWORD[((8+32))+rsp]
- lea rsi,[((-128+32))+rsp]
- mov r11,QWORD[((16+32))+rsp]
- mov r12,QWORD[((24+32))+rsp]
- lea rdi,[32+rsp]
- call __ecp_nistz256_mul_montx
- lea rdi,[128+rsp]
- call __ecp_nistz256_mul_by_2x
- lea rbx,[32+rsp]
- lea rdi,[32+rsp]
- call __ecp_nistz256_add_tox
- mov rdx,QWORD[96+rsp]
- lea rbx,[96+rsp]
- mov r9,QWORD[((0+0))+rsp]
- mov r10,QWORD[((8+0))+rsp]
- lea rsi,[((-128+0))+rsp]
- mov r11,QWORD[((16+0))+rsp]
- mov r12,QWORD[((24+0))+rsp]
- lea rdi,[rsp]
- call __ecp_nistz256_mul_montx
- lea rdi,[128+rsp]
- call __ecp_nistz256_mul_by_2x
- mov rdx,QWORD[((0+32))+rsp]
- mov r14,QWORD[((8+32))+rsp]
- lea rsi,[((-128+32))+rsp]
- mov r15,QWORD[((16+32))+rsp]
- mov r8,QWORD[((24+32))+rsp]
- DB 102,72,15,126,199
- call __ecp_nistz256_sqr_montx
- lea rbx,[128+rsp]
- mov r8,r14
- mov r9,r15
- mov r14,rsi
- mov r15,rbp
- call __ecp_nistz256_sub_fromx
- mov rax,QWORD[((0+0))+rsp]
- mov rbp,QWORD[((0+8))+rsp]
- mov rcx,QWORD[((0+16))+rsp]
- mov r10,QWORD[((0+24))+rsp]
- lea rdi,[rsp]
- call __ecp_nistz256_subx
- mov rdx,QWORD[32+rsp]
- lea rbx,[32+rsp]
- mov r14,r12
- xor ecx,ecx
- mov QWORD[((0+0))+rsp],r12
- mov r10,r13
- mov QWORD[((0+8))+rsp],r13
- cmovz r11,r8
- mov QWORD[((0+16))+rsp],r8
- lea rsi,[((0-128))+rsp]
- cmovz r12,r9
- mov QWORD[((0+24))+rsp],r9
- mov r9,r14
- lea rdi,[rsp]
- call __ecp_nistz256_mul_montx
- DB 102,72,15,126,203
- DB 102,72,15,126,207
- call __ecp_nistz256_sub_fromx
- lea rsi,[((160+56))+rsp]
- mov r15,QWORD[((-48))+rsi]
- mov r14,QWORD[((-40))+rsi]
- mov r13,QWORD[((-32))+rsi]
- mov r12,QWORD[((-24))+rsi]
- mov rbx,QWORD[((-16))+rsi]
- mov rbp,QWORD[((-8))+rsi]
- lea rsp,[rsi]
- $L$point_doublex_epilogue:
- mov rdi,QWORD[8+rsp] ;WIN64 epilogue
- mov rsi,QWORD[16+rsp]
- DB 0F3h,0C3h ;repret
- $L$SEH_end_GFp_nistz256_point_doublex:
- ALIGN 32
- GFp_nistz256_point_addx:
- mov QWORD[8+rsp],rdi ;WIN64 prologue
- mov QWORD[16+rsp],rsi
- mov rax,rsp
- $L$SEH_begin_GFp_nistz256_point_addx:
- mov rdi,rcx
- mov rsi,rdx
- mov rdx,r8
- $L$point_addx:
- push rbp
- push rbx
- push r12
- push r13
- push r14
- push r15
- sub rsp,32*18+8
- $L$point_addx_body:
- movdqu xmm0,XMMWORD[rsi]
- movdqu xmm1,XMMWORD[16+rsi]
- movdqu xmm2,XMMWORD[32+rsi]
- movdqu xmm3,XMMWORD[48+rsi]
- movdqu xmm4,XMMWORD[64+rsi]
- movdqu xmm5,XMMWORD[80+rsi]
- mov rbx,rsi
- mov rsi,rdx
- movdqa XMMWORD[384+rsp],xmm0
- movdqa XMMWORD[(384+16)+rsp],xmm1
- movdqa XMMWORD[416+rsp],xmm2
- movdqa XMMWORD[(416+16)+rsp],xmm3
- movdqa XMMWORD[448+rsp],xmm4
- movdqa XMMWORD[(448+16)+rsp],xmm5
- por xmm5,xmm4
- movdqu xmm0,XMMWORD[rsi]
- pshufd xmm3,xmm5,0xb1
- movdqu xmm1,XMMWORD[16+rsi]
- movdqu xmm2,XMMWORD[32+rsi]
- por xmm5,xmm3
- movdqu xmm3,XMMWORD[48+rsi]
- mov rdx,QWORD[((64+0))+rsi]
- mov r14,QWORD[((64+8))+rsi]
- mov r15,QWORD[((64+16))+rsi]
- mov r8,QWORD[((64+24))+rsi]
- movdqa XMMWORD[480+rsp],xmm0
- pshufd xmm4,xmm5,0x1e
- movdqa XMMWORD[(480+16)+rsp],xmm1
- movdqu xmm0,XMMWORD[64+rsi]
- movdqu xmm1,XMMWORD[80+rsi]
- movdqa XMMWORD[512+rsp],xmm2
- movdqa XMMWORD[(512+16)+rsp],xmm3
- por xmm5,xmm4
- pxor xmm4,xmm4
- por xmm1,xmm0
- DB 102,72,15,110,199
- lea rsi,[((64-128))+rsi]
- mov QWORD[((544+0))+rsp],rdx
- mov QWORD[((544+8))+rsp],r14
- mov QWORD[((544+16))+rsp],r15
- mov QWORD[((544+24))+rsp],r8
- lea rdi,[96+rsp]
- call __ecp_nistz256_sqr_montx
- pcmpeqd xmm5,xmm4
- pshufd xmm4,xmm1,0xb1
- por xmm4,xmm1
- pshufd xmm5,xmm5,0
- pshufd xmm3,xmm4,0x1e
- por xmm4,xmm3
- pxor xmm3,xmm3
- pcmpeqd xmm4,xmm3
- pshufd xmm4,xmm4,0
- mov rdx,QWORD[((64+0))+rbx]
- mov r14,QWORD[((64+8))+rbx]
- mov r15,QWORD[((64+16))+rbx]
- mov r8,QWORD[((64+24))+rbx]
- DB 102,72,15,110,203
- lea rsi,[((64-128))+rbx]
- lea rdi,[32+rsp]
- call __ecp_nistz256_sqr_montx
- mov rdx,QWORD[544+rsp]
- lea rbx,[544+rsp]
- mov r9,QWORD[((0+96))+rsp]
- mov r10,QWORD[((8+96))+rsp]
- lea rsi,[((-128+96))+rsp]
- mov r11,QWORD[((16+96))+rsp]
- mov r12,QWORD[((24+96))+rsp]
- lea rdi,[224+rsp]
- call __ecp_nistz256_mul_montx
- mov rdx,QWORD[448+rsp]
- lea rbx,[448+rsp]
- mov r9,QWORD[((0+32))+rsp]
- mov r10,QWORD[((8+32))+rsp]
- lea rsi,[((-128+32))+rsp]
- mov r11,QWORD[((16+32))+rsp]
- mov r12,QWORD[((24+32))+rsp]
- lea rdi,[256+rsp]
- call __ecp_nistz256_mul_montx
- mov rdx,QWORD[416+rsp]
- lea rbx,[416+rsp]
- mov r9,QWORD[((0+224))+rsp]
- mov r10,QWORD[((8+224))+rsp]
- lea rsi,[((-128+224))+rsp]
- mov r11,QWORD[((16+224))+rsp]
- mov r12,QWORD[((24+224))+rsp]
- lea rdi,[224+rsp]
- call __ecp_nistz256_mul_montx
- mov rdx,QWORD[512+rsp]
- lea rbx,[512+rsp]
- mov r9,QWORD[((0+256))+rsp]
- mov r10,QWORD[((8+256))+rsp]
- lea rsi,[((-128+256))+rsp]
- mov r11,QWORD[((16+256))+rsp]
- mov r12,QWORD[((24+256))+rsp]
- lea rdi,[256+rsp]
- call __ecp_nistz256_mul_montx
- lea rbx,[224+rsp]
- lea rdi,[64+rsp]
- call __ecp_nistz256_sub_fromx
- or r12,r13
- movdqa xmm2,xmm4
- or r12,r8
- or r12,r9
- por xmm2,xmm5
- DB 102,73,15,110,220
- mov rdx,QWORD[384+rsp]
- lea rbx,[384+rsp]
- mov r9,QWORD[((0+96))+rsp]
- mov r10,QWORD[((8+96))+rsp]
- lea rsi,[((-128+96))+rsp]
- mov r11,QWORD[((16+96))+rsp]
- mov r12,QWORD[((24+96))+rsp]
- lea rdi,[160+rsp]
- call __ecp_nistz256_mul_montx
- mov rdx,QWORD[480+rsp]
- lea rbx,[480+rsp]
- mov r9,QWORD[((0+32))+rsp]
- mov r10,QWORD[((8+32))+rsp]
- lea rsi,[((-128+32))+rsp]
- mov r11,QWORD[((16+32))+rsp]
- mov r12,QWORD[((24+32))+rsp]
- lea rdi,[192+rsp]
- call __ecp_nistz256_mul_montx
- lea rbx,[160+rsp]
- lea rdi,[rsp]
- call __ecp_nistz256_sub_fromx
- or r12,r13
- or r12,r8
- or r12,r9
- DB 102,73,15,126,208
- DB 102,73,15,126,217
- or r12,r8
- DB 0x3e
- jnz NEAR $L$add_proceedx
- test r9,r9
- jz NEAR $L$add_doublex
- DB 102,72,15,126,199
- pxor xmm0,xmm0
- movdqu XMMWORD[rdi],xmm0
- movdqu XMMWORD[16+rdi],xmm0
- movdqu XMMWORD[32+rdi],xmm0
- movdqu XMMWORD[48+rdi],xmm0
- movdqu XMMWORD[64+rdi],xmm0
- movdqu XMMWORD[80+rdi],xmm0
- jmp NEAR $L$add_donex
- ALIGN 32
- $L$add_doublex:
- DB 102,72,15,126,206
- DB 102,72,15,126,199
- add rsp,416
- jmp NEAR $L$point_double_shortcutx
- ALIGN 32
- $L$add_proceedx:
- mov rdx,QWORD[((0+64))+rsp]
- mov r14,QWORD[((8+64))+rsp]
- lea rsi,[((-128+64))+rsp]
- mov r15,QWORD[((16+64))+rsp]
- mov r8,QWORD[((24+64))+rsp]
- lea rdi,[96+rsp]
- call __ecp_nistz256_sqr_montx
- mov rdx,QWORD[448+rsp]
- lea rbx,[448+rsp]
- mov r9,QWORD[((0+0))+rsp]
- mov r10,QWORD[((8+0))+rsp]
- lea rsi,[((-128+0))+rsp]
- mov r11,QWORD[((16+0))+rsp]
- mov r12,QWORD[((24+0))+rsp]
- lea rdi,[352+rsp]
- call __ecp_nistz256_mul_montx
- mov rdx,QWORD[((0+0))+rsp]
- mov r14,QWORD[((8+0))+rsp]
- lea rsi,[((-128+0))+rsp]
- mov r15,QWORD[((16+0))+rsp]
- mov r8,QWORD[((24+0))+rsp]
- lea rdi,[32+rsp]
- call __ecp_nistz256_sqr_montx
- mov rdx,QWORD[544+rsp]
- lea rbx,[544+rsp]
- mov r9,QWORD[((0+352))+rsp]
- mov r10,QWORD[((8+352))+rsp]
- lea rsi,[((-128+352))+rsp]
- mov r11,QWORD[((16+352))+rsp]
- mov r12,QWORD[((24+352))+rsp]
- lea rdi,[352+rsp]
- call __ecp_nistz256_mul_montx
- mov rdx,QWORD[rsp]
- lea rbx,[rsp]
- mov r9,QWORD[((0+32))+rsp]
- mov r10,QWORD[((8+32))+rsp]
- lea rsi,[((-128+32))+rsp]
- mov r11,QWORD[((16+32))+rsp]
- mov r12,QWORD[((24+32))+rsp]
- lea rdi,[128+rsp]
- call __ecp_nistz256_mul_montx
- mov rdx,QWORD[160+rsp]
- lea rbx,[160+rsp]
- mov r9,QWORD[((0+32))+rsp]
- mov r10,QWORD[((8+32))+rsp]
- lea rsi,[((-128+32))+rsp]
- mov r11,QWORD[((16+32))+rsp]
- mov r12,QWORD[((24+32))+rsp]
- lea rdi,[192+rsp]
- call __ecp_nistz256_mul_montx
- xor r11,r11
- add r12,r12
- lea rsi,[96+rsp]
- adc r13,r13
- mov rax,r12
- adc r8,r8
- adc r9,r9
- mov rbp,r13
- adc r11,0
- sub r12,-1
- mov rcx,r8
- sbb r13,r14
- sbb r8,0
- mov r10,r9
- sbb r9,r15
- sbb r11,0
- cmovc r12,rax
- mov rax,QWORD[rsi]
- cmovc r13,rbp
- mov rbp,QWORD[8+rsi]
- cmovc r8,rcx
- mov rcx,QWORD[16+rsi]
- cmovc r9,r10
- mov r10,QWORD[24+rsi]
- call __ecp_nistz256_subx
- lea rbx,[128+rsp]
- lea rdi,[288+rsp]
- call __ecp_nistz256_sub_fromx
- mov rax,QWORD[((192+0))+rsp]
- mov rbp,QWORD[((192+8))+rsp]
- mov rcx,QWORD[((192+16))+rsp]
- mov r10,QWORD[((192+24))+rsp]
- lea rdi,[320+rsp]
- call __ecp_nistz256_subx
- mov QWORD[rdi],r12
- mov QWORD[8+rdi],r13
- mov QWORD[16+rdi],r8
- mov QWORD[24+rdi],r9
- mov rdx,QWORD[128+rsp]
- lea rbx,[128+rsp]
- mov r9,QWORD[((0+224))+rsp]
- mov r10,QWORD[((8+224))+rsp]
- lea rsi,[((-128+224))+rsp]
- mov r11,QWORD[((16+224))+rsp]
- mov r12,QWORD[((24+224))+rsp]
- lea rdi,[256+rsp]
- call __ecp_nistz256_mul_montx
- mov rdx,QWORD[320+rsp]
- lea rbx,[320+rsp]
- mov r9,QWORD[((0+64))+rsp]
- mov r10,QWORD[((8+64))+rsp]
- lea rsi,[((-128+64))+rsp]
- mov r11,QWORD[((16+64))+rsp]
- mov r12,QWORD[((24+64))+rsp]
- lea rdi,[320+rsp]
- call __ecp_nistz256_mul_montx
- lea rbx,[256+rsp]
- lea rdi,[320+rsp]
- call __ecp_nistz256_sub_fromx
- DB 102,72,15,126,199
- movdqa xmm0,xmm5
- movdqa xmm1,xmm5
- pandn xmm0,XMMWORD[352+rsp]
- movdqa xmm2,xmm5
- pandn xmm1,XMMWORD[((352+16))+rsp]
- movdqa xmm3,xmm5
- pand xmm2,XMMWORD[544+rsp]
- pand xmm3,XMMWORD[((544+16))+rsp]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqa xmm0,xmm4
- movdqa xmm1,xmm4
- pandn xmm0,xmm2
- movdqa xmm2,xmm4
- pandn xmm1,xmm3
- movdqa xmm3,xmm4
- pand xmm2,XMMWORD[448+rsp]
- pand xmm3,XMMWORD[((448+16))+rsp]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqu XMMWORD[64+rdi],xmm2
- movdqu XMMWORD[80+rdi],xmm3
- movdqa xmm0,xmm5
- movdqa xmm1,xmm5
- pandn xmm0,XMMWORD[288+rsp]
- movdqa xmm2,xmm5
- pandn xmm1,XMMWORD[((288+16))+rsp]
- movdqa xmm3,xmm5
- pand xmm2,XMMWORD[480+rsp]
- pand xmm3,XMMWORD[((480+16))+rsp]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqa xmm0,xmm4
- movdqa xmm1,xmm4
- pandn xmm0,xmm2
- movdqa xmm2,xmm4
- pandn xmm1,xmm3
- movdqa xmm3,xmm4
- pand xmm2,XMMWORD[384+rsp]
- pand xmm3,XMMWORD[((384+16))+rsp]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqu XMMWORD[rdi],xmm2
- movdqu XMMWORD[16+rdi],xmm3
- movdqa xmm0,xmm5
- movdqa xmm1,xmm5
- pandn xmm0,XMMWORD[320+rsp]
- movdqa xmm2,xmm5
- pandn xmm1,XMMWORD[((320+16))+rsp]
- movdqa xmm3,xmm5
- pand xmm2,XMMWORD[512+rsp]
- pand xmm3,XMMWORD[((512+16))+rsp]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqa xmm0,xmm4
- movdqa xmm1,xmm4
- pandn xmm0,xmm2
- movdqa xmm2,xmm4
- pandn xmm1,xmm3
- movdqa xmm3,xmm4
- pand xmm2,XMMWORD[416+rsp]
- pand xmm3,XMMWORD[((416+16))+rsp]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqu XMMWORD[32+rdi],xmm2
- movdqu XMMWORD[48+rdi],xmm3
- $L$add_donex:
- lea rsi,[((576+56))+rsp]
- mov r15,QWORD[((-48))+rsi]
- mov r14,QWORD[((-40))+rsi]
- mov r13,QWORD[((-32))+rsi]
- mov r12,QWORD[((-24))+rsi]
- mov rbx,QWORD[((-16))+rsi]
- mov rbp,QWORD[((-8))+rsi]
- lea rsp,[rsi]
- $L$point_addx_epilogue:
- mov rdi,QWORD[8+rsp] ;WIN64 epilogue
- mov rsi,QWORD[16+rsp]
- DB 0F3h,0C3h ;repret
- $L$SEH_end_GFp_nistz256_point_addx:
- ALIGN 32
- GFp_nistz256_point_add_affinex:
- mov QWORD[8+rsp],rdi ;WIN64 prologue
- mov QWORD[16+rsp],rsi
- mov rax,rsp
- $L$SEH_begin_GFp_nistz256_point_add_affinex:
- mov rdi,rcx
- mov rsi,rdx
- mov rdx,r8
- $L$point_add_affinex:
- push rbp
- push rbx
- push r12
- push r13
- push r14
- push r15
- sub rsp,32*15+8
- $L$add_affinex_body:
- movdqu xmm0,XMMWORD[rsi]
- mov rbx,rdx
- movdqu xmm1,XMMWORD[16+rsi]
- movdqu xmm2,XMMWORD[32+rsi]
- movdqu xmm3,XMMWORD[48+rsi]
- movdqu xmm4,XMMWORD[64+rsi]
- movdqu xmm5,XMMWORD[80+rsi]
- mov rdx,QWORD[((64+0))+rsi]
- mov r14,QWORD[((64+8))+rsi]
- mov r15,QWORD[((64+16))+rsi]
- mov r8,QWORD[((64+24))+rsi]
- movdqa XMMWORD[320+rsp],xmm0
- movdqa XMMWORD[(320+16)+rsp],xmm1
- movdqa XMMWORD[352+rsp],xmm2
- movdqa XMMWORD[(352+16)+rsp],xmm3
- movdqa XMMWORD[384+rsp],xmm4
- movdqa XMMWORD[(384+16)+rsp],xmm5
- por xmm5,xmm4
- movdqu xmm0,XMMWORD[rbx]
- pshufd xmm3,xmm5,0xb1
- movdqu xmm1,XMMWORD[16+rbx]
- movdqu xmm2,XMMWORD[32+rbx]
- por xmm5,xmm3
- movdqu xmm3,XMMWORD[48+rbx]
- movdqa XMMWORD[416+rsp],xmm0
- pshufd xmm4,xmm5,0x1e
- movdqa XMMWORD[(416+16)+rsp],xmm1
- por xmm1,xmm0
- DB 102,72,15,110,199
- movdqa XMMWORD[448+rsp],xmm2
- movdqa XMMWORD[(448+16)+rsp],xmm3
- por xmm3,xmm2
- por xmm5,xmm4
- pxor xmm4,xmm4
- por xmm3,xmm1
- lea rsi,[((64-128))+rsi]
- lea rdi,[32+rsp]
- call __ecp_nistz256_sqr_montx
- pcmpeqd xmm5,xmm4
- pshufd xmm4,xmm3,0xb1
- mov rdx,QWORD[rbx]
- mov r9,r12
- por xmm4,xmm3
- pshufd xmm5,xmm5,0
- pshufd xmm3,xmm4,0x1e
- mov r10,r13
- por xmm4,xmm3
- pxor xmm3,xmm3
- mov r11,r14
- pcmpeqd xmm4,xmm3
- pshufd xmm4,xmm4,0
- lea rsi,[((32-128))+rsp]
- mov r12,r15
- lea rdi,[rsp]
- call __ecp_nistz256_mul_montx
- lea rbx,[320+rsp]
- lea rdi,[64+rsp]
- call __ecp_nistz256_sub_fromx
- mov rdx,QWORD[384+rsp]
- lea rbx,[384+rsp]
- mov r9,QWORD[((0+32))+rsp]
- mov r10,QWORD[((8+32))+rsp]
- lea rsi,[((-128+32))+rsp]
- mov r11,QWORD[((16+32))+rsp]
- mov r12,QWORD[((24+32))+rsp]
- lea rdi,[32+rsp]
- call __ecp_nistz256_mul_montx
- mov rdx,QWORD[384+rsp]
- lea rbx,[384+rsp]
- mov r9,QWORD[((0+64))+rsp]
- mov r10,QWORD[((8+64))+rsp]
- lea rsi,[((-128+64))+rsp]
- mov r11,QWORD[((16+64))+rsp]
- mov r12,QWORD[((24+64))+rsp]
- lea rdi,[288+rsp]
- call __ecp_nistz256_mul_montx
- mov rdx,QWORD[448+rsp]
- lea rbx,[448+rsp]
- mov r9,QWORD[((0+32))+rsp]
- mov r10,QWORD[((8+32))+rsp]
- lea rsi,[((-128+32))+rsp]
- mov r11,QWORD[((16+32))+rsp]
- mov r12,QWORD[((24+32))+rsp]
- lea rdi,[32+rsp]
- call __ecp_nistz256_mul_montx
- lea rbx,[352+rsp]
- lea rdi,[96+rsp]
- call __ecp_nistz256_sub_fromx
- mov rdx,QWORD[((0+64))+rsp]
- mov r14,QWORD[((8+64))+rsp]
- lea rsi,[((-128+64))+rsp]
- mov r15,QWORD[((16+64))+rsp]
- mov r8,QWORD[((24+64))+rsp]
- lea rdi,[128+rsp]
- call __ecp_nistz256_sqr_montx
- mov rdx,QWORD[((0+96))+rsp]
- mov r14,QWORD[((8+96))+rsp]
- lea rsi,[((-128+96))+rsp]
- mov r15,QWORD[((16+96))+rsp]
- mov r8,QWORD[((24+96))+rsp]
- lea rdi,[192+rsp]
- call __ecp_nistz256_sqr_montx
- mov rdx,QWORD[128+rsp]
- lea rbx,[128+rsp]
- mov r9,QWORD[((0+64))+rsp]
- mov r10,QWORD[((8+64))+rsp]
- lea rsi,[((-128+64))+rsp]
- mov r11,QWORD[((16+64))+rsp]
- mov r12,QWORD[((24+64))+rsp]
- lea rdi,[160+rsp]
- call __ecp_nistz256_mul_montx
- mov rdx,QWORD[320+rsp]
- lea rbx,[320+rsp]
- mov r9,QWORD[((0+128))+rsp]
- mov r10,QWORD[((8+128))+rsp]
- lea rsi,[((-128+128))+rsp]
- mov r11,QWORD[((16+128))+rsp]
- mov r12,QWORD[((24+128))+rsp]
- lea rdi,[rsp]
- call __ecp_nistz256_mul_montx
- xor r11,r11
- add r12,r12
- lea rsi,[192+rsp]
- adc r13,r13
- mov rax,r12
- adc r8,r8
- adc r9,r9
- mov rbp,r13
- adc r11,0
- sub r12,-1
- mov rcx,r8
- sbb r13,r14
- sbb r8,0
- mov r10,r9
- sbb r9,r15
- sbb r11,0
- cmovc r12,rax
- mov rax,QWORD[rsi]
- cmovc r13,rbp
- mov rbp,QWORD[8+rsi]
- cmovc r8,rcx
- mov rcx,QWORD[16+rsi]
- cmovc r9,r10
- mov r10,QWORD[24+rsi]
- call __ecp_nistz256_subx
- lea rbx,[160+rsp]
- lea rdi,[224+rsp]
- call __ecp_nistz256_sub_fromx
- mov rax,QWORD[((0+0))+rsp]
- mov rbp,QWORD[((0+8))+rsp]
- mov rcx,QWORD[((0+16))+rsp]
- mov r10,QWORD[((0+24))+rsp]
- lea rdi,[64+rsp]
- call __ecp_nistz256_subx
- mov QWORD[rdi],r12
- mov QWORD[8+rdi],r13
- mov QWORD[16+rdi],r8
- mov QWORD[24+rdi],r9
- mov rdx,QWORD[352+rsp]
- lea rbx,[352+rsp]
- mov r9,QWORD[((0+160))+rsp]
- mov r10,QWORD[((8+160))+rsp]
- lea rsi,[((-128+160))+rsp]
- mov r11,QWORD[((16+160))+rsp]
- mov r12,QWORD[((24+160))+rsp]
- lea rdi,[32+rsp]
- call __ecp_nistz256_mul_montx
- mov rdx,QWORD[96+rsp]
- lea rbx,[96+rsp]
- mov r9,QWORD[((0+64))+rsp]
- mov r10,QWORD[((8+64))+rsp]
- lea rsi,[((-128+64))+rsp]
- mov r11,QWORD[((16+64))+rsp]
- mov r12,QWORD[((24+64))+rsp]
- lea rdi,[64+rsp]
- call __ecp_nistz256_mul_montx
- lea rbx,[32+rsp]
- lea rdi,[256+rsp]
- call __ecp_nistz256_sub_fromx
- DB 102,72,15,126,199
- movdqa xmm0,xmm5
- movdqa xmm1,xmm5
- pandn xmm0,XMMWORD[288+rsp]
- movdqa xmm2,xmm5
- pandn xmm1,XMMWORD[((288+16))+rsp]
- movdqa xmm3,xmm5
- pand xmm2,XMMWORD[$L$ONE_mont]
- pand xmm3,XMMWORD[(($L$ONE_mont+16))]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqa xmm0,xmm4
- movdqa xmm1,xmm4
- pandn xmm0,xmm2
- movdqa xmm2,xmm4
- pandn xmm1,xmm3
- movdqa xmm3,xmm4
- pand xmm2,XMMWORD[384+rsp]
- pand xmm3,XMMWORD[((384+16))+rsp]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqu XMMWORD[64+rdi],xmm2
- movdqu XMMWORD[80+rdi],xmm3
- movdqa xmm0,xmm5
- movdqa xmm1,xmm5
- pandn xmm0,XMMWORD[224+rsp]
- movdqa xmm2,xmm5
- pandn xmm1,XMMWORD[((224+16))+rsp]
- movdqa xmm3,xmm5
- pand xmm2,XMMWORD[416+rsp]
- pand xmm3,XMMWORD[((416+16))+rsp]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqa xmm0,xmm4
- movdqa xmm1,xmm4
- pandn xmm0,xmm2
- movdqa xmm2,xmm4
- pandn xmm1,xmm3
- movdqa xmm3,xmm4
- pand xmm2,XMMWORD[320+rsp]
- pand xmm3,XMMWORD[((320+16))+rsp]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqu XMMWORD[rdi],xmm2
- movdqu XMMWORD[16+rdi],xmm3
- movdqa xmm0,xmm5
- movdqa xmm1,xmm5
- pandn xmm0,XMMWORD[256+rsp]
- movdqa xmm2,xmm5
- pandn xmm1,XMMWORD[((256+16))+rsp]
- movdqa xmm3,xmm5
- pand xmm2,XMMWORD[448+rsp]
- pand xmm3,XMMWORD[((448+16))+rsp]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqa xmm0,xmm4
- movdqa xmm1,xmm4
- pandn xmm0,xmm2
- movdqa xmm2,xmm4
- pandn xmm1,xmm3
- movdqa xmm3,xmm4
- pand xmm2,XMMWORD[352+rsp]
- pand xmm3,XMMWORD[((352+16))+rsp]
- por xmm2,xmm0
- por xmm3,xmm1
- movdqu XMMWORD[32+rdi],xmm2
- movdqu XMMWORD[48+rdi],xmm3
- lea rsi,[((480+56))+rsp]
- mov r15,QWORD[((-48))+rsi]
- mov r14,QWORD[((-40))+rsi]
- mov r13,QWORD[((-32))+rsi]
- mov r12,QWORD[((-24))+rsi]
- mov rbx,QWORD[((-16))+rsi]
- mov rbp,QWORD[((-8))+rsi]
- lea rsp,[rsi]
- $L$add_affinex_epilogue:
- mov rdi,QWORD[8+rsp] ;WIN64 epilogue
- mov rsi,QWORD[16+rsp]
- DB 0F3h,0C3h ;repret
- $L$SEH_end_GFp_nistz256_point_add_affinex:
- EXTERN __imp_RtlVirtualUnwind
- ALIGN 16
- short_handler:
- push rsi
- push rdi
- push rbx
- push rbp
- push r12
- push r13
- push r14
- push r15
- pushfq
- sub rsp,64
- mov rax,QWORD[120+r8]
- mov rbx,QWORD[248+r8]
- mov rsi,QWORD[8+r9]
- mov r11,QWORD[56+r9]
- mov r10d,DWORD[r11]
- lea r10,[r10*1+rsi]
- cmp rbx,r10
- jb NEAR $L$common_seh_tail
- mov rax,QWORD[152+r8]
- mov r10d,DWORD[4+r11]
- lea r10,[r10*1+rsi]
- cmp rbx,r10
- jae NEAR $L$common_seh_tail
- lea rax,[16+rax]
- mov r12,QWORD[((-8))+rax]
- mov r13,QWORD[((-16))+rax]
- mov QWORD[216+r8],r12
- mov QWORD[224+r8],r13
- jmp NEAR $L$common_seh_tail
- ALIGN 16
- full_handler:
- push rsi
- push rdi
- push rbx
- push rbp
- push r12
- push r13
- push r14
- push r15
- pushfq
- sub rsp,64
- mov rax,QWORD[120+r8]
- mov rbx,QWORD[248+r8]
- mov rsi,QWORD[8+r9]
- mov r11,QWORD[56+r9]
- mov r10d,DWORD[r11]
- lea r10,[r10*1+rsi]
- cmp rbx,r10
- jb NEAR $L$common_seh_tail
- mov rax,QWORD[152+r8]
- mov r10d,DWORD[4+r11]
- lea r10,[r10*1+rsi]
- cmp rbx,r10
- jae NEAR $L$common_seh_tail
- mov r10d,DWORD[8+r11]
- lea rax,[r10*1+rax]
- mov rbp,QWORD[((-8))+rax]
- mov rbx,QWORD[((-16))+rax]
- mov r12,QWORD[((-24))+rax]
- mov r13,QWORD[((-32))+rax]
- mov r14,QWORD[((-40))+rax]
- mov r15,QWORD[((-48))+rax]
- mov QWORD[144+r8],rbx
- mov QWORD[160+r8],rbp
- mov QWORD[216+r8],r12
- mov QWORD[224+r8],r13
- mov QWORD[232+r8],r14
- mov QWORD[240+r8],r15
- $L$common_seh_tail:
- mov rdi,QWORD[8+rax]
- mov rsi,QWORD[16+rax]
- mov QWORD[152+r8],rax
- mov QWORD[168+r8],rsi
- mov QWORD[176+r8],rdi
- mov rdi,QWORD[40+r9]
- mov rsi,r8
- mov ecx,154
- DD 0xa548f3fc
- mov rsi,r9
- xor rcx,rcx
- mov rdx,QWORD[8+rsi]
- mov r8,QWORD[rsi]
- mov r9,QWORD[16+rsi]
- mov r10,QWORD[40+rsi]
- lea r11,[56+rsi]
- lea r12,[24+rsi]
- mov QWORD[32+rsp],r10
- mov QWORD[40+rsp],r11
- mov QWORD[48+rsp],r12
- mov QWORD[56+rsp],rcx
- call QWORD[__imp_RtlVirtualUnwind]
- mov eax,1
- add rsp,64
- popfq
- pop r15
- pop r14
- pop r13
- pop r12
- pop rbp
- pop rbx
- pop rdi
- pop rsi
- DB 0F3h,0C3h ;repret
- section .pdata rdata align=4
- ALIGN 4
- DD $L$SEH_begin_GFp_nistz256_neg wrt ..imagebase
- DD $L$SEH_end_GFp_nistz256_neg wrt ..imagebase
- DD $L$SEH_info_GFp_nistz256_neg wrt ..imagebase
- DD $L$SEH_begin_GFp_p256_scalar_mul_mont wrt ..imagebase
- DD $L$SEH_end_GFp_p256_scalar_mul_mont wrt ..imagebase
- DD $L$SEH_info_GFp_p256_scalar_mul_mont wrt ..imagebase
- DD $L$SEH_begin_GFp_p256_scalar_sqr_rep_mont wrt ..imagebase
- DD $L$SEH_end_GFp_p256_scalar_sqr_rep_mont wrt ..imagebase
- DD $L$SEH_info_GFp_p256_scalar_sqr_rep_mont wrt ..imagebase
- DD $L$SEH_begin_ecp_nistz256_ord_mul_montx wrt ..imagebase
- DD $L$SEH_end_ecp_nistz256_ord_mul_montx wrt ..imagebase
- DD $L$SEH_info_ecp_nistz256_ord_mul_montx wrt ..imagebase
- DD $L$SEH_begin_ecp_nistz256_ord_sqr_montx wrt ..imagebase
- DD $L$SEH_end_ecp_nistz256_ord_sqr_montx wrt ..imagebase
- DD $L$SEH_info_ecp_nistz256_ord_sqr_montx wrt ..imagebase
- DD $L$SEH_begin_GFp_nistz256_mul_mont wrt ..imagebase
- DD $L$SEH_end_GFp_nistz256_mul_mont wrt ..imagebase
- DD $L$SEH_info_GFp_nistz256_mul_mont wrt ..imagebase
- DD $L$SEH_begin_GFp_nistz256_sqr_mont wrt ..imagebase
- DD $L$SEH_end_GFp_nistz256_sqr_mont wrt ..imagebase
- DD $L$SEH_info_GFp_nistz256_sqr_mont wrt ..imagebase
- DD $L$SEH_begin_GFp_nistz256_select_w5 wrt ..imagebase
- DD $L$SEH_end_GFp_nistz256_select_w5 wrt ..imagebase
- DD $L$SEH_info_GFp_nistz256_select_wX wrt ..imagebase
- DD $L$SEH_begin_GFp_nistz256_select_w7 wrt ..imagebase
- DD $L$SEH_end_GFp_nistz256_select_w7 wrt ..imagebase
- DD $L$SEH_info_GFp_nistz256_select_wX wrt ..imagebase
- DD $L$SEH_begin_GFp_nistz256_avx2_select_w5 wrt ..imagebase
- DD $L$SEH_end_GFp_nistz256_avx2_select_w5 wrt ..imagebase
- DD $L$SEH_info_GFp_nistz256_avx2_select_wX wrt ..imagebase
- DD $L$SEH_begin_GFp_nistz256_avx2_select_w7 wrt ..imagebase
- DD $L$SEH_end_GFp_nistz256_avx2_select_w7 wrt ..imagebase
- DD $L$SEH_info_GFp_nistz256_avx2_select_wX wrt ..imagebase
- DD $L$SEH_begin_GFp_nistz256_point_double wrt ..imagebase
- DD $L$SEH_end_GFp_nistz256_point_double wrt ..imagebase
- DD $L$SEH_info_GFp_nistz256_point_double wrt ..imagebase
- DD $L$SEH_begin_GFp_nistz256_point_add wrt ..imagebase
- DD $L$SEH_end_GFp_nistz256_point_add wrt ..imagebase
- DD $L$SEH_info_GFp_nistz256_point_add wrt ..imagebase
- DD $L$SEH_begin_GFp_nistz256_point_add_affine wrt ..imagebase
- DD $L$SEH_end_GFp_nistz256_point_add_affine wrt ..imagebase
- DD $L$SEH_info_GFp_nistz256_point_add_affine wrt ..imagebase
- DD $L$SEH_begin_GFp_nistz256_point_doublex wrt ..imagebase
- DD $L$SEH_end_GFp_nistz256_point_doublex wrt ..imagebase
- DD $L$SEH_info_GFp_nistz256_point_doublex wrt ..imagebase
- DD $L$SEH_begin_GFp_nistz256_point_addx wrt ..imagebase
- DD $L$SEH_end_GFp_nistz256_point_addx wrt ..imagebase
- DD $L$SEH_info_GFp_nistz256_point_addx wrt ..imagebase
- DD $L$SEH_begin_GFp_nistz256_point_add_affinex wrt ..imagebase
- DD $L$SEH_end_GFp_nistz256_point_add_affinex wrt ..imagebase
- DD $L$SEH_info_GFp_nistz256_point_add_affinex wrt ..imagebase
- section .xdata rdata align=8
- ALIGN 8
- $L$SEH_info_GFp_nistz256_neg:
- DB 9,0,0,0
- DD short_handler wrt ..imagebase
- DD $L$neg_body wrt ..imagebase,$L$neg_epilogue wrt ..imagebase
- $L$SEH_info_GFp_p256_scalar_mul_mont:
- DB 9,0,0,0
- DD full_handler wrt ..imagebase
- DD $L$ord_mul_body wrt ..imagebase,$L$ord_mul_epilogue wrt ..imagebase
- DD 48,0
- $L$SEH_info_GFp_p256_scalar_sqr_rep_mont:
- DB 9,0,0,0
- DD full_handler wrt ..imagebase
- DD $L$ord_sqr_body wrt ..imagebase,$L$ord_sqr_epilogue wrt ..imagebase
- DD 48,0
- $L$SEH_info_ecp_nistz256_ord_mul_montx:
- DB 9,0,0,0
- DD full_handler wrt ..imagebase
- DD $L$ord_mulx_body wrt ..imagebase,$L$ord_mulx_epilogue wrt ..imagebase
- DD 48,0
- $L$SEH_info_ecp_nistz256_ord_sqr_montx:
- DB 9,0,0,0
- DD full_handler wrt ..imagebase
- DD $L$ord_sqrx_body wrt ..imagebase,$L$ord_sqrx_epilogue wrt ..imagebase
- DD 48,0
- $L$SEH_info_GFp_nistz256_mul_mont:
- DB 9,0,0,0
- DD full_handler wrt ..imagebase
- DD $L$mul_body wrt ..imagebase,$L$mul_epilogue wrt ..imagebase
- DD 48,0
- $L$SEH_info_GFp_nistz256_sqr_mont:
- DB 9,0,0,0
- DD full_handler wrt ..imagebase
- DD $L$sqr_body wrt ..imagebase,$L$sqr_epilogue wrt ..imagebase
- DD 48,0
- $L$SEH_info_GFp_nistz256_select_wX:
- DB 0x01,0x33,0x16,0x00
- DB 0x33,0xf8,0x09,0x00
- DB 0x2e,0xe8,0x08,0x00
- DB 0x29,0xd8,0x07,0x00
- DB 0x24,0xc8,0x06,0x00
- DB 0x1f,0xb8,0x05,0x00
- DB 0x1a,0xa8,0x04,0x00
- DB 0x15,0x98,0x03,0x00
- DB 0x10,0x88,0x02,0x00
- DB 0x0c,0x78,0x01,0x00
- DB 0x08,0x68,0x00,0x00
- DB 0x04,0x01,0x15,0x00
- ALIGN 8
- $L$SEH_info_GFp_nistz256_avx2_select_wX:
- DB 0x01,0x36,0x17,0x0b
- DB 0x36,0xf8,0x09,0x00
- DB 0x31,0xe8,0x08,0x00
- DB 0x2c,0xd8,0x07,0x00
- DB 0x27,0xc8,0x06,0x00
- DB 0x22,0xb8,0x05,0x00
- DB 0x1d,0xa8,0x04,0x00
- DB 0x18,0x98,0x03,0x00
- DB 0x13,0x88,0x02,0x00
- DB 0x0e,0x78,0x01,0x00
- DB 0x09,0x68,0x00,0x00
- DB 0x04,0x01,0x15,0x00
- DB 0x00,0xb3,0x00,0x00
- ALIGN 8
- $L$SEH_info_GFp_nistz256_point_double:
- DB 9,0,0,0
- DD full_handler wrt ..imagebase
- DD $L$point_doubleq_body wrt ..imagebase,$L$point_doubleq_epilogue wrt ..imagebase
- DD 32*5+56,0
- $L$SEH_info_GFp_nistz256_point_add:
- DB 9,0,0,0
- DD full_handler wrt ..imagebase
- DD $L$point_addq_body wrt ..imagebase,$L$point_addq_epilogue wrt ..imagebase
- DD 32*18+56,0
- $L$SEH_info_GFp_nistz256_point_add_affine:
- DB 9,0,0,0
- DD full_handler wrt ..imagebase
- DD $L$add_affineq_body wrt ..imagebase,$L$add_affineq_epilogue wrt ..imagebase
- DD 32*15+56,0
- ALIGN 8
- $L$SEH_info_GFp_nistz256_point_doublex:
- DB 9,0,0,0
- DD full_handler wrt ..imagebase
- DD $L$point_doublex_body wrt ..imagebase,$L$point_doublex_epilogue wrt ..imagebase
- DD 32*5+56,0
- $L$SEH_info_GFp_nistz256_point_addx:
- DB 9,0,0,0
- DD full_handler wrt ..imagebase
- DD $L$point_addx_body wrt ..imagebase,$L$point_addx_epilogue wrt ..imagebase
- DD 32*18+56,0
- $L$SEH_info_GFp_nistz256_point_add_affinex:
- DB 9,0,0,0
- DD full_handler wrt ..imagebase
- DD $L$add_affinex_body wrt ..imagebase,$L$add_affinex_epilogue wrt ..imagebase
- DD 32*15+56,0
|