Bulk_Boo.Lang_0.cpp 195 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432
  1. #include "il2cpp-config.h"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <cstring>
  8. #include <string.h>
  9. #include <stdio.h>
  10. #include <cmath>
  11. #include <limits>
  12. #include <assert.h>
  13. #include <stdint.h>
  14. #include "il2cpp-class-internals.h"
  15. #include "codegen/il2cpp-codegen.h"
  16. #include "il2cpp-object-internals.h"
  17. template <typename R, typename T1, typename T2>
  18. struct VirtFuncInvoker2
  19. {
  20. typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
  21. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
  22. {
  23. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  24. return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
  25. }
  26. };
  27. template <typename R, typename T1>
  28. struct VirtFuncInvoker1
  29. {
  30. typedef R (*Func)(void*, T1, const RuntimeMethod*);
  31. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  32. {
  33. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  34. return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
  35. }
  36. };
  37. template <typename R>
  38. struct VirtFuncInvoker0
  39. {
  40. typedef R (*Func)(void*, const RuntimeMethod*);
  41. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  42. {
  43. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  44. return ((Func)invokeData.methodPtr)(obj, invokeData.method);
  45. }
  46. };
  47. template <typename R, typename T1, typename T2>
  48. struct GenericVirtFuncInvoker2
  49. {
  50. typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
  51. static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
  52. {
  53. VirtualInvokeData invokeData;
  54. il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
  55. return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
  56. }
  57. };
  58. template <typename R, typename T1>
  59. struct GenericVirtFuncInvoker1
  60. {
  61. typedef R (*Func)(void*, T1, const RuntimeMethod*);
  62. static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
  63. {
  64. VirtualInvokeData invokeData;
  65. il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
  66. return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
  67. }
  68. };
  69. template <typename R>
  70. struct GenericVirtFuncInvoker0
  71. {
  72. typedef R (*Func)(void*, const RuntimeMethod*);
  73. static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj)
  74. {
  75. VirtualInvokeData invokeData;
  76. il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
  77. return ((Func)invokeData.methodPtr)(obj, invokeData.method);
  78. }
  79. };
  80. template <typename R>
  81. struct InterfaceFuncInvoker0
  82. {
  83. typedef R (*Func)(void*, const RuntimeMethod*);
  84. static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
  85. {
  86. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  87. return ((Func)invokeData.methodPtr)(obj, invokeData.method);
  88. }
  89. };
  90. struct InterfaceActionInvoker0
  91. {
  92. typedef void (*Action)(void*, const RuntimeMethod*);
  93. static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
  94. {
  95. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  96. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  97. }
  98. };
  99. template <typename R, typename T1, typename T2>
  100. struct InterfaceFuncInvoker2
  101. {
  102. typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
  103. static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
  104. {
  105. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  106. return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
  107. }
  108. };
  109. template <typename R, typename T1>
  110. struct InterfaceFuncInvoker1
  111. {
  112. typedef R (*Func)(void*, T1, const RuntimeMethod*);
  113. static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
  114. {
  115. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  116. return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
  117. }
  118. };
  119. template <typename R, typename T1, typename T2>
  120. struct GenericInterfaceFuncInvoker2
  121. {
  122. typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
  123. static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
  124. {
  125. VirtualInvokeData invokeData;
  126. il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
  127. return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
  128. }
  129. };
  130. template <typename R, typename T1>
  131. struct GenericInterfaceFuncInvoker1
  132. {
  133. typedef R (*Func)(void*, T1, const RuntimeMethod*);
  134. static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
  135. {
  136. VirtualInvokeData invokeData;
  137. il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
  138. return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
  139. }
  140. };
  141. template <typename R>
  142. struct GenericInterfaceFuncInvoker0
  143. {
  144. typedef R (*Func)(void*, const RuntimeMethod*);
  145. static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj)
  146. {
  147. VirtualInvokeData invokeData;
  148. il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
  149. return ((Func)invokeData.methodPtr)(obj, invokeData.method);
  150. }
  151. };
  152. // System.String
  153. struct String_t;
  154. // System.Collections.IEnumerable
  155. struct IEnumerable_t1941168011;
  156. // System.Text.StringBuilder
  157. struct StringBuilder_t;
  158. // Boo.Lang.Runtime.DynamicDispatching.Dispatcher
  159. struct Dispatcher_t684365006;
  160. // System.Object[]
  161. struct ObjectU5BU5D_t2843939325;
  162. // System.IAsyncResult
  163. struct IAsyncResult_t767004451;
  164. // System.AsyncCallback
  165. struct AsyncCallback_t3962456242;
  166. // Boo.Lang.Runtime.DynamicDispatching.DispatcherCache
  167. struct DispatcherCache_t1010326087;
  168. // System.Collections.Generic.Dictionary`2<Boo.Lang.Runtime.DynamicDispatching.DispatcherKey,Boo.Lang.Runtime.DynamicDispatching.Dispatcher>
  169. struct Dictionary_2_t866247282;
  170. // System.Collections.Generic.IEqualityComparer`1<Boo.Lang.Runtime.DynamicDispatching.DispatcherKey>
  171. struct IEqualityComparer_1_t4217396590;
  172. // System.Collections.Generic.Dictionary`2<System.Object,System.Object>
  173. struct Dictionary_2_t132545152;
  174. // System.Collections.Generic.IEqualityComparer`1<System.Object>
  175. struct IEqualityComparer_1_t892470886;
  176. // Boo.Lang.Runtime.DynamicDispatching.DispatcherKey
  177. struct DispatcherKey_t2110064572;
  178. // Boo.Lang.Runtime.DynamicDispatching.DispatcherCache/DispatcherFactory
  179. struct DispatcherFactory_t1014155341;
  180. // System.Type
  181. struct Type_t;
  182. // System.Type[]
  183. struct TypeU5BU5D_t3940880105;
  184. // Boo.Lang.Runtime.DynamicDispatching.DispatcherKey/_EqualityComparer
  185. struct _EqualityComparer_t965810167;
  186. // Boo.Lang.Runtime.ExtensionRegistry
  187. struct ExtensionRegistry_t2424660641;
  188. // Boo.Lang.List`1<System.Reflection.MemberInfo>
  189. struct List_1_t1242660502;
  190. // Boo.Lang.List`1<System.Object>
  191. struct List_1_t942764925;
  192. // System.Collections.Generic.IEnumerable`1<System.Reflection.MemberInfo>
  193. struct IEnumerable_1_t2359854630;
  194. // Boo.Lang.Runtime.RuntimeServices/<Coerce>c__AnonStorey1D
  195. struct U3CCoerceU3Ec__AnonStorey1D_t572148199;
  196. // System.Reflection.MethodInfo
  197. struct MethodInfo_t;
  198. // System.Delegate
  199. struct Delegate_t1188392813;
  200. // Boo.Lang.Runtime.RuntimeServices/<EmitImplicitConversionDispatcher>c__AnonStorey1E
  201. struct U3CEmitImplicitConversionDispatcherU3Ec__AnonStorey1E_t4009522197;
  202. // System.ArgumentException
  203. struct ArgumentException_t132251570;
  204. // System.Collections.Generic.IEnumerable`1<System.Reflection.MethodInfo>
  205. struct IEnumerable_1_t857479137;
  206. // Boo.Lang.Runtime.RuntimeServices/<GetExtensionMethods>c__IteratorC
  207. struct U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435;
  208. // System.Reflection.ParameterInfo
  209. struct ParameterInfo_t1861056598;
  210. // System.Reflection.MethodBase
  211. struct MethodBase_t;
  212. // System.Collections.IEnumerator
  213. struct IEnumerator_t1853284238;
  214. // System.Collections.Generic.IEnumerator`1<System.Reflection.MethodInfo>
  215. struct IEnumerator_1_t2310196716;
  216. // System.NotSupportedException
  217. struct NotSupportedException_t1314879016;
  218. // System.Reflection.MemberInfo[]
  219. struct MemberInfoU5BU5D_t1302094432;
  220. // System.Collections.Generic.IEnumerator`1<System.Reflection.MemberInfo>
  221. struct IEnumerator_1_t3812572209;
  222. // System.Reflection.MemberInfo
  223. struct MemberInfo_t;
  224. // System.Int32[]
  225. struct Int32U5BU5D_t385246372;
  226. // System.Collections.Generic.Link[]
  227. struct LinkU5BU5D_t964245573;
  228. // Boo.Lang.Runtime.DynamicDispatching.DispatcherKey[]
  229. struct DispatcherKeyU5BU5D_t1678415317;
  230. // Boo.Lang.Runtime.DynamicDispatching.Dispatcher[]
  231. struct DispatcherU5BU5D_t4037257275;
  232. // System.Runtime.Serialization.SerializationInfo
  233. struct SerializationInfo_t950877179;
  234. // System.Collections.Generic.Dictionary`2/Transform`1<Boo.Lang.Runtime.DynamicDispatching.DispatcherKey,Boo.Lang.Runtime.DynamicDispatching.Dispatcher,System.Collections.DictionaryEntry>
  235. struct Transform_1_t4132401090;
  236. // System.Char[]
  237. struct CharU5BU5D_t3528271667;
  238. // System.IntPtr[]
  239. struct IntPtrU5BU5D_t4013366056;
  240. // System.Collections.IDictionary
  241. struct IDictionary_t1363984059;
  242. // System.Void
  243. struct Void_t1185182177;
  244. // System.DelegateData
  245. struct DelegateData_t1677132599;
  246. // System.Reflection.Emit.UnmanagedMarshal
  247. struct UnmanagedMarshal_t984015687;
  248. // System.Reflection.MemberFilter
  249. struct MemberFilter_t426314064;
  250. extern RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
  251. extern RuntimeClass* IEnumerable_t1941168011_il2cpp_TypeInfo_var;
  252. extern RuntimeClass* IDisposable_t3640265483_il2cpp_TypeInfo_var;
  253. extern RuntimeClass* IEnumerator_t1853284238_il2cpp_TypeInfo_var;
  254. extern const uint32_t Builtins_join_m864932387_MetadataUsageId;
  255. extern RuntimeClass* DispatcherKey_t2110064572_il2cpp_TypeInfo_var;
  256. extern RuntimeClass* Dictionary_2_t866247282_il2cpp_TypeInfo_var;
  257. extern RuntimeClass* DispatcherCache_t1010326087_il2cpp_TypeInfo_var;
  258. extern const RuntimeMethod* Dictionary_2__ctor_m1815469916_RuntimeMethod_var;
  259. extern const uint32_t DispatcherCache__cctor_m62575632_MetadataUsageId;
  260. extern const RuntimeMethod* Dictionary_2_TryGetValue_m1990775459_RuntimeMethod_var;
  261. extern const RuntimeMethod* Dictionary_2_Add_m163959252_RuntimeMethod_var;
  262. extern const uint32_t DispatcherCache_Get_m3609792288_MetadataUsageId;
  263. extern RuntimeClass* Dispatcher_t684365006_il2cpp_TypeInfo_var;
  264. extern const uint32_t DelegatePInvokeWrapper_DispatcherFactory_t1014155341_MetadataUsageId;
  265. extern RuntimeClass* _EqualityComparer_t965810167_il2cpp_TypeInfo_var;
  266. extern const uint32_t DispatcherKey__cctor_m1082726794_MetadataUsageId;
  267. extern RuntimeClass* String_t_il2cpp_TypeInfo_var;
  268. extern const uint32_t _EqualityComparer_Equals_m2225820911_MetadataUsageId;
  269. extern RuntimeClass* List_1_t1242660502_il2cpp_TypeInfo_var;
  270. extern RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
  271. extern const RuntimeMethod* List_1__ctor_m1115569667_RuntimeMethod_var;
  272. extern const uint32_t ExtensionRegistry__ctor_m323844458_MetadataUsageId;
  273. extern const RuntimeType* RuntimeServices_t2098243569_0_0_0_var;
  274. extern RuntimeClass* ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var;
  275. extern RuntimeClass* RuntimeServices_t2098243569_il2cpp_TypeInfo_var;
  276. extern RuntimeClass* Type_t_il2cpp_TypeInfo_var;
  277. extern RuntimeClass* ExtensionRegistry_t2424660641_il2cpp_TypeInfo_var;
  278. extern RuntimeClass* Boolean_t97287965_il2cpp_TypeInfo_var;
  279. extern const uint32_t RuntimeServices__cctor_m1381641241_MetadataUsageId;
  280. extern const uint32_t RuntimeServices_GetDispatcher_m3922777458_MetadataUsageId;
  281. extern RuntimeClass* U3CCoerceU3Ec__AnonStorey1D_t572148199_il2cpp_TypeInfo_var;
  282. extern RuntimeClass* TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var;
  283. extern RuntimeClass* DispatcherFactory_t1014155341_il2cpp_TypeInfo_var;
  284. extern const RuntimeMethod* U3CCoerceU3Ec__AnonStorey1D_U3CU3Em__15_m4262864175_RuntimeMethod_var;
  285. extern String_t* _stringLiteral4123921170;
  286. extern const uint32_t RuntimeServices_Coerce_m1663619687_MetadataUsageId;
  287. extern RuntimeClass* ICoercible_t1130343077_il2cpp_TypeInfo_var;
  288. extern const RuntimeMethod* RuntimeServices_IdentityDispatcher_m1725786149_RuntimeMethod_var;
  289. extern const RuntimeMethod* RuntimeServices_CoercibleDispatcher_m4058208960_RuntimeMethod_var;
  290. extern const uint32_t RuntimeServices_CreateCoerceDispatcher_m661106792_MetadataUsageId;
  291. extern const RuntimeType* Dispatcher_t684365006_0_0_0_var;
  292. extern const RuntimeType* NumericPromotions_t3533651679_0_0_0_var;
  293. extern RuntimeClass* TypeCode_t2987224087_il2cpp_TypeInfo_var;
  294. extern String_t* _stringLiteral2755855817;
  295. extern String_t* _stringLiteral3454777324;
  296. extern const uint32_t RuntimeServices_EmitPromotionDispatcher_m734050861_MetadataUsageId;
  297. extern const uint32_t RuntimeServices_IsPromotableNumeric_m2095247129_MetadataUsageId;
  298. extern RuntimeClass* U3CEmitImplicitConversionDispatcherU3Ec__AnonStorey1E_t4009522197_il2cpp_TypeInfo_var;
  299. extern const RuntimeMethod* U3CEmitImplicitConversionDispatcherU3Ec__AnonStorey1E_U3CU3Em__16_m940011970_RuntimeMethod_var;
  300. extern const uint32_t RuntimeServices_EmitImplicitConversionDispatcher_m4072191859_MetadataUsageId;
  301. extern const uint32_t RuntimeServices_CoercibleDispatcher_m4058208960_MetadataUsageId;
  302. extern RuntimeClass* RuntimeArray_il2cpp_TypeInfo_var;
  303. extern const uint32_t RuntimeServices_EqualityOperator_m2384872086_MetadataUsageId;
  304. extern RuntimeClass* ArgumentException_t132251570_il2cpp_TypeInfo_var;
  305. extern const RuntimeMethod* RuntimeServices_ArrayEqualityImpl_m3673667702_RuntimeMethod_var;
  306. extern String_t* _stringLiteral181402784;
  307. extern const uint32_t RuntimeServices_ArrayEqualityImpl_m3673667702_MetadataUsageId;
  308. extern RuntimeClass* IConvertible_t2977365677_il2cpp_TypeInfo_var;
  309. extern RuntimeClass* Decimal_t2948259380_il2cpp_TypeInfo_var;
  310. extern const uint32_t RuntimeServices_EqualityOperator_m2541246096_MetadataUsageId;
  311. extern const uint32_t RuntimeServices_FindImplicitConversionOperator_m2560683559_MetadataUsageId;
  312. extern RuntimeClass* U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435_il2cpp_TypeInfo_var;
  313. extern const uint32_t RuntimeServices_GetExtensionMethods_m2018979233_MetadataUsageId;
  314. extern RuntimeClass* IEnumerable_1_t857479137_il2cpp_TypeInfo_var;
  315. extern RuntimeClass* IEnumerator_1_t2310196716_il2cpp_TypeInfo_var;
  316. extern String_t* _stringLiteral3306367446;
  317. extern const uint32_t RuntimeServices_FindImplicitConversionMethod_m4176567206_MetadataUsageId;
  318. extern const uint32_t U3CCoerceU3Ec__AnonStorey1D_U3CU3Em__15_m4262864175_MetadataUsageId;
  319. extern const uint32_t U3CEmitImplicitConversionDispatcherU3Ec__AnonStorey1E_U3CU3Em__16_m940011970_MetadataUsageId;
  320. extern const uint32_t U3CGetExtensionMethodsU3Ec__IteratorC_System_Collections_Generic_IEnumerableU3CSystem_Reflection_MethodInfoU3E_GetEnumerator_m1148048048_MetadataUsageId;
  321. extern RuntimeClass* IEnumerable_1_t2359854630_il2cpp_TypeInfo_var;
  322. extern RuntimeClass* IEnumerator_1_t3812572209_il2cpp_TypeInfo_var;
  323. extern RuntimeClass* MethodInfo_t_il2cpp_TypeInfo_var;
  324. extern const uint32_t U3CGetExtensionMethodsU3Ec__IteratorC_MoveNext_m4162423597_MetadataUsageId;
  325. extern const uint32_t U3CGetExtensionMethodsU3Ec__IteratorC_Dispose_m3192498793_MetadataUsageId;
  326. extern RuntimeClass* NotSupportedException_t1314879016_il2cpp_TypeInfo_var;
  327. extern const RuntimeMethod* U3CGetExtensionMethodsU3Ec__IteratorC_Reset_m865776842_RuntimeMethod_var;
  328. extern const uint32_t U3CGetExtensionMethodsU3Ec__IteratorC_Reset_m865776842_MetadataUsageId;
  329. struct ObjectU5BU5D_t2843939325;
  330. struct TypeU5BU5D_t3940880105;
  331. struct MethodInfoU5BU5D_t2572182361;
  332. struct ParameterInfoU5BU5D_t390618515;
  333. #ifndef U3CMODULEU3E_T692745533_H
  334. #define U3CMODULEU3E_T692745533_H
  335. #ifdef __clang__
  336. #pragma clang diagnostic push
  337. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  338. #pragma clang diagnostic ignored "-Wunused-variable"
  339. #endif
  340. // <Module>
  341. struct U3CModuleU3E_t692745533
  342. {
  343. public:
  344. public:
  345. };
  346. #ifdef __clang__
  347. #pragma clang diagnostic pop
  348. #endif
  349. #endif // U3CMODULEU3E_T692745533_H
  350. #ifndef RUNTIMEOBJECT_H
  351. #define RUNTIMEOBJECT_H
  352. #ifdef __clang__
  353. #pragma clang diagnostic push
  354. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  355. #pragma clang diagnostic ignored "-Wunused-variable"
  356. #endif
  357. // System.Object
  358. #ifdef __clang__
  359. #pragma clang diagnostic pop
  360. #endif
  361. #endif // RUNTIMEOBJECT_H
  362. struct Il2CppArrayBounds;
  363. #ifndef RUNTIMEARRAY_H
  364. #define RUNTIMEARRAY_H
  365. #ifdef __clang__
  366. #pragma clang diagnostic push
  367. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  368. #pragma clang diagnostic ignored "-Wunused-variable"
  369. #endif
  370. // System.Array
  371. #ifdef __clang__
  372. #pragma clang diagnostic pop
  373. #endif
  374. #endif // RUNTIMEARRAY_H
  375. #ifndef LIST_1_T1242660502_H
  376. #define LIST_1_T1242660502_H
  377. #ifdef __clang__
  378. #pragma clang diagnostic push
  379. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  380. #pragma clang diagnostic ignored "-Wunused-variable"
  381. #endif
  382. // Boo.Lang.List`1<System.Reflection.MemberInfo>
  383. struct List_1_t1242660502 : public RuntimeObject
  384. {
  385. public:
  386. // T[] Boo.Lang.List`1::_items
  387. MemberInfoU5BU5D_t1302094432* ____items_1;
  388. // System.Int32 Boo.Lang.List`1::_count
  389. int32_t ____count_2;
  390. public:
  391. inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t1242660502, ____items_1)); }
  392. inline MemberInfoU5BU5D_t1302094432* get__items_1() const { return ____items_1; }
  393. inline MemberInfoU5BU5D_t1302094432** get_address_of__items_1() { return &____items_1; }
  394. inline void set__items_1(MemberInfoU5BU5D_t1302094432* value)
  395. {
  396. ____items_1 = value;
  397. Il2CppCodeGenWriteBarrier((&____items_1), value);
  398. }
  399. inline static int32_t get_offset_of__count_2() { return static_cast<int32_t>(offsetof(List_1_t1242660502, ____count_2)); }
  400. inline int32_t get__count_2() const { return ____count_2; }
  401. inline int32_t* get_address_of__count_2() { return &____count_2; }
  402. inline void set__count_2(int32_t value)
  403. {
  404. ____count_2 = value;
  405. }
  406. };
  407. struct List_1_t1242660502_StaticFields
  408. {
  409. public:
  410. // T[] Boo.Lang.List`1::EmptyArray
  411. MemberInfoU5BU5D_t1302094432* ___EmptyArray_0;
  412. public:
  413. inline static int32_t get_offset_of_EmptyArray_0() { return static_cast<int32_t>(offsetof(List_1_t1242660502_StaticFields, ___EmptyArray_0)); }
  414. inline MemberInfoU5BU5D_t1302094432* get_EmptyArray_0() const { return ___EmptyArray_0; }
  415. inline MemberInfoU5BU5D_t1302094432** get_address_of_EmptyArray_0() { return &___EmptyArray_0; }
  416. inline void set_EmptyArray_0(MemberInfoU5BU5D_t1302094432* value)
  417. {
  418. ___EmptyArray_0 = value;
  419. Il2CppCodeGenWriteBarrier((&___EmptyArray_0), value);
  420. }
  421. };
  422. #ifdef __clang__
  423. #pragma clang diagnostic pop
  424. #endif
  425. #endif // LIST_1_T1242660502_H
  426. #ifndef EXTENSIONREGISTRY_T2424660641_H
  427. #define EXTENSIONREGISTRY_T2424660641_H
  428. #ifdef __clang__
  429. #pragma clang diagnostic push
  430. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  431. #pragma clang diagnostic ignored "-Wunused-variable"
  432. #endif
  433. // Boo.Lang.Runtime.ExtensionRegistry
  434. struct ExtensionRegistry_t2424660641 : public RuntimeObject
  435. {
  436. public:
  437. // Boo.Lang.List`1<System.Reflection.MemberInfo> Boo.Lang.Runtime.ExtensionRegistry::_extensions
  438. List_1_t1242660502 * ____extensions_0;
  439. // System.Object Boo.Lang.Runtime.ExtensionRegistry::_classLock
  440. RuntimeObject * ____classLock_1;
  441. public:
  442. inline static int32_t get_offset_of__extensions_0() { return static_cast<int32_t>(offsetof(ExtensionRegistry_t2424660641, ____extensions_0)); }
  443. inline List_1_t1242660502 * get__extensions_0() const { return ____extensions_0; }
  444. inline List_1_t1242660502 ** get_address_of__extensions_0() { return &____extensions_0; }
  445. inline void set__extensions_0(List_1_t1242660502 * value)
  446. {
  447. ____extensions_0 = value;
  448. Il2CppCodeGenWriteBarrier((&____extensions_0), value);
  449. }
  450. inline static int32_t get_offset_of__classLock_1() { return static_cast<int32_t>(offsetof(ExtensionRegistry_t2424660641, ____classLock_1)); }
  451. inline RuntimeObject * get__classLock_1() const { return ____classLock_1; }
  452. inline RuntimeObject ** get_address_of__classLock_1() { return &____classLock_1; }
  453. inline void set__classLock_1(RuntimeObject * value)
  454. {
  455. ____classLock_1 = value;
  456. Il2CppCodeGenWriteBarrier((&____classLock_1), value);
  457. }
  458. };
  459. #ifdef __clang__
  460. #pragma clang diagnostic pop
  461. #endif
  462. #endif // EXTENSIONREGISTRY_T2424660641_H
  463. #ifndef NUMERICPROMOTIONS_T3533651679_H
  464. #define NUMERICPROMOTIONS_T3533651679_H
  465. #ifdef __clang__
  466. #pragma clang diagnostic push
  467. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  468. #pragma clang diagnostic ignored "-Wunused-variable"
  469. #endif
  470. // Boo.Lang.Runtime.DynamicDispatching.NumericPromotions
  471. struct NumericPromotions_t3533651679 : public RuntimeObject
  472. {
  473. public:
  474. public:
  475. };
  476. #ifdef __clang__
  477. #pragma clang diagnostic pop
  478. #endif
  479. #endif // NUMERICPROMOTIONS_T3533651679_H
  480. #ifndef _EQUALITYCOMPARER_T965810167_H
  481. #define _EQUALITYCOMPARER_T965810167_H
  482. #ifdef __clang__
  483. #pragma clang diagnostic push
  484. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  485. #pragma clang diagnostic ignored "-Wunused-variable"
  486. #endif
  487. // Boo.Lang.Runtime.DynamicDispatching.DispatcherKey/_EqualityComparer
  488. struct _EqualityComparer_t965810167 : public RuntimeObject
  489. {
  490. public:
  491. public:
  492. };
  493. #ifdef __clang__
  494. #pragma clang diagnostic pop
  495. #endif
  496. #endif // _EQUALITYCOMPARER_T965810167_H
  497. #ifndef RUNTIMESERVICES_T2098243569_H
  498. #define RUNTIMESERVICES_T2098243569_H
  499. #ifdef __clang__
  500. #pragma clang diagnostic push
  501. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  502. #pragma clang diagnostic ignored "-Wunused-variable"
  503. #endif
  504. // Boo.Lang.Runtime.RuntimeServices
  505. struct RuntimeServices_t2098243569 : public RuntimeObject
  506. {
  507. public:
  508. public:
  509. };
  510. struct RuntimeServices_t2098243569_StaticFields
  511. {
  512. public:
  513. // System.Object[] Boo.Lang.Runtime.RuntimeServices::NoArguments
  514. ObjectU5BU5D_t2843939325* ___NoArguments_0;
  515. // System.Type Boo.Lang.Runtime.RuntimeServices::RuntimeServicesType
  516. Type_t * ___RuntimeServicesType_1;
  517. // Boo.Lang.Runtime.DynamicDispatching.DispatcherCache Boo.Lang.Runtime.RuntimeServices::_cache
  518. DispatcherCache_t1010326087 * ____cache_2;
  519. // Boo.Lang.Runtime.ExtensionRegistry Boo.Lang.Runtime.RuntimeServices::_extensions
  520. ExtensionRegistry_t2424660641 * ____extensions_3;
  521. // System.Object Boo.Lang.Runtime.RuntimeServices::True
  522. RuntimeObject * ___True_4;
  523. public:
  524. inline static int32_t get_offset_of_NoArguments_0() { return static_cast<int32_t>(offsetof(RuntimeServices_t2098243569_StaticFields, ___NoArguments_0)); }
  525. inline ObjectU5BU5D_t2843939325* get_NoArguments_0() const { return ___NoArguments_0; }
  526. inline ObjectU5BU5D_t2843939325** get_address_of_NoArguments_0() { return &___NoArguments_0; }
  527. inline void set_NoArguments_0(ObjectU5BU5D_t2843939325* value)
  528. {
  529. ___NoArguments_0 = value;
  530. Il2CppCodeGenWriteBarrier((&___NoArguments_0), value);
  531. }
  532. inline static int32_t get_offset_of_RuntimeServicesType_1() { return static_cast<int32_t>(offsetof(RuntimeServices_t2098243569_StaticFields, ___RuntimeServicesType_1)); }
  533. inline Type_t * get_RuntimeServicesType_1() const { return ___RuntimeServicesType_1; }
  534. inline Type_t ** get_address_of_RuntimeServicesType_1() { return &___RuntimeServicesType_1; }
  535. inline void set_RuntimeServicesType_1(Type_t * value)
  536. {
  537. ___RuntimeServicesType_1 = value;
  538. Il2CppCodeGenWriteBarrier((&___RuntimeServicesType_1), value);
  539. }
  540. inline static int32_t get_offset_of__cache_2() { return static_cast<int32_t>(offsetof(RuntimeServices_t2098243569_StaticFields, ____cache_2)); }
  541. inline DispatcherCache_t1010326087 * get__cache_2() const { return ____cache_2; }
  542. inline DispatcherCache_t1010326087 ** get_address_of__cache_2() { return &____cache_2; }
  543. inline void set__cache_2(DispatcherCache_t1010326087 * value)
  544. {
  545. ____cache_2 = value;
  546. Il2CppCodeGenWriteBarrier((&____cache_2), value);
  547. }
  548. inline static int32_t get_offset_of__extensions_3() { return static_cast<int32_t>(offsetof(RuntimeServices_t2098243569_StaticFields, ____extensions_3)); }
  549. inline ExtensionRegistry_t2424660641 * get__extensions_3() const { return ____extensions_3; }
  550. inline ExtensionRegistry_t2424660641 ** get_address_of__extensions_3() { return &____extensions_3; }
  551. inline void set__extensions_3(ExtensionRegistry_t2424660641 * value)
  552. {
  553. ____extensions_3 = value;
  554. Il2CppCodeGenWriteBarrier((&____extensions_3), value);
  555. }
  556. inline static int32_t get_offset_of_True_4() { return static_cast<int32_t>(offsetof(RuntimeServices_t2098243569_StaticFields, ___True_4)); }
  557. inline RuntimeObject * get_True_4() const { return ___True_4; }
  558. inline RuntimeObject ** get_address_of_True_4() { return &___True_4; }
  559. inline void set_True_4(RuntimeObject * value)
  560. {
  561. ___True_4 = value;
  562. Il2CppCodeGenWriteBarrier((&___True_4), value);
  563. }
  564. };
  565. #ifdef __clang__
  566. #pragma clang diagnostic pop
  567. #endif
  568. #endif // RUNTIMESERVICES_T2098243569_H
  569. #ifndef U3CCOERCEU3EC__ANONSTOREY1D_T572148199_H
  570. #define U3CCOERCEU3EC__ANONSTOREY1D_T572148199_H
  571. #ifdef __clang__
  572. #pragma clang diagnostic push
  573. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  574. #pragma clang diagnostic ignored "-Wunused-variable"
  575. #endif
  576. // Boo.Lang.Runtime.RuntimeServices/<Coerce>c__AnonStorey1D
  577. struct U3CCoerceU3Ec__AnonStorey1D_t572148199 : public RuntimeObject
  578. {
  579. public:
  580. // System.Object Boo.Lang.Runtime.RuntimeServices/<Coerce>c__AnonStorey1D::value
  581. RuntimeObject * ___value_0;
  582. // System.Type Boo.Lang.Runtime.RuntimeServices/<Coerce>c__AnonStorey1D::toType
  583. Type_t * ___toType_1;
  584. public:
  585. inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(U3CCoerceU3Ec__AnonStorey1D_t572148199, ___value_0)); }
  586. inline RuntimeObject * get_value_0() const { return ___value_0; }
  587. inline RuntimeObject ** get_address_of_value_0() { return &___value_0; }
  588. inline void set_value_0(RuntimeObject * value)
  589. {
  590. ___value_0 = value;
  591. Il2CppCodeGenWriteBarrier((&___value_0), value);
  592. }
  593. inline static int32_t get_offset_of_toType_1() { return static_cast<int32_t>(offsetof(U3CCoerceU3Ec__AnonStorey1D_t572148199, ___toType_1)); }
  594. inline Type_t * get_toType_1() const { return ___toType_1; }
  595. inline Type_t ** get_address_of_toType_1() { return &___toType_1; }
  596. inline void set_toType_1(Type_t * value)
  597. {
  598. ___toType_1 = value;
  599. Il2CppCodeGenWriteBarrier((&___toType_1), value);
  600. }
  601. };
  602. #ifdef __clang__
  603. #pragma clang diagnostic pop
  604. #endif
  605. #endif // U3CCOERCEU3EC__ANONSTOREY1D_T572148199_H
  606. #ifndef U3CEMITIMPLICITCONVERSIONDISPATCHERU3EC__ANONSTOREY1E_T4009522197_H
  607. #define U3CEMITIMPLICITCONVERSIONDISPATCHERU3EC__ANONSTOREY1E_T4009522197_H
  608. #ifdef __clang__
  609. #pragma clang diagnostic push
  610. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  611. #pragma clang diagnostic ignored "-Wunused-variable"
  612. #endif
  613. // Boo.Lang.Runtime.RuntimeServices/<EmitImplicitConversionDispatcher>c__AnonStorey1E
  614. struct U3CEmitImplicitConversionDispatcherU3Ec__AnonStorey1E_t4009522197 : public RuntimeObject
  615. {
  616. public:
  617. // System.Reflection.MethodInfo Boo.Lang.Runtime.RuntimeServices/<EmitImplicitConversionDispatcher>c__AnonStorey1E::method
  618. MethodInfo_t * ___method_0;
  619. public:
  620. inline static int32_t get_offset_of_method_0() { return static_cast<int32_t>(offsetof(U3CEmitImplicitConversionDispatcherU3Ec__AnonStorey1E_t4009522197, ___method_0)); }
  621. inline MethodInfo_t * get_method_0() const { return ___method_0; }
  622. inline MethodInfo_t ** get_address_of_method_0() { return &___method_0; }
  623. inline void set_method_0(MethodInfo_t * value)
  624. {
  625. ___method_0 = value;
  626. Il2CppCodeGenWriteBarrier((&___method_0), value);
  627. }
  628. };
  629. #ifdef __clang__
  630. #pragma clang diagnostic pop
  631. #endif
  632. #endif // U3CEMITIMPLICITCONVERSIONDISPATCHERU3EC__ANONSTOREY1E_T4009522197_H
  633. #ifndef U3CGETEXTENSIONMETHODSU3EC__ITERATORC_T3368530435_H
  634. #define U3CGETEXTENSIONMETHODSU3EC__ITERATORC_T3368530435_H
  635. #ifdef __clang__
  636. #pragma clang diagnostic push
  637. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  638. #pragma clang diagnostic ignored "-Wunused-variable"
  639. #endif
  640. // Boo.Lang.Runtime.RuntimeServices/<GetExtensionMethods>c__IteratorC
  641. struct U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435 : public RuntimeObject
  642. {
  643. public:
  644. // System.Collections.Generic.IEnumerator`1<System.Reflection.MemberInfo> Boo.Lang.Runtime.RuntimeServices/<GetExtensionMethods>c__IteratorC::<$s_49>__0
  645. RuntimeObject* ___U3CU24s_49U3E__0_0;
  646. // System.Reflection.MemberInfo Boo.Lang.Runtime.RuntimeServices/<GetExtensionMethods>c__IteratorC::<member>__1
  647. MemberInfo_t * ___U3CmemberU3E__1_1;
  648. // System.Int32 Boo.Lang.Runtime.RuntimeServices/<GetExtensionMethods>c__IteratorC::$PC
  649. int32_t ___U24PC_2;
  650. // System.Reflection.MethodInfo Boo.Lang.Runtime.RuntimeServices/<GetExtensionMethods>c__IteratorC::$current
  651. MethodInfo_t * ___U24current_3;
  652. public:
  653. inline static int32_t get_offset_of_U3CU24s_49U3E__0_0() { return static_cast<int32_t>(offsetof(U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435, ___U3CU24s_49U3E__0_0)); }
  654. inline RuntimeObject* get_U3CU24s_49U3E__0_0() const { return ___U3CU24s_49U3E__0_0; }
  655. inline RuntimeObject** get_address_of_U3CU24s_49U3E__0_0() { return &___U3CU24s_49U3E__0_0; }
  656. inline void set_U3CU24s_49U3E__0_0(RuntimeObject* value)
  657. {
  658. ___U3CU24s_49U3E__0_0 = value;
  659. Il2CppCodeGenWriteBarrier((&___U3CU24s_49U3E__0_0), value);
  660. }
  661. inline static int32_t get_offset_of_U3CmemberU3E__1_1() { return static_cast<int32_t>(offsetof(U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435, ___U3CmemberU3E__1_1)); }
  662. inline MemberInfo_t * get_U3CmemberU3E__1_1() const { return ___U3CmemberU3E__1_1; }
  663. inline MemberInfo_t ** get_address_of_U3CmemberU3E__1_1() { return &___U3CmemberU3E__1_1; }
  664. inline void set_U3CmemberU3E__1_1(MemberInfo_t * value)
  665. {
  666. ___U3CmemberU3E__1_1 = value;
  667. Il2CppCodeGenWriteBarrier((&___U3CmemberU3E__1_1), value);
  668. }
  669. inline static int32_t get_offset_of_U24PC_2() { return static_cast<int32_t>(offsetof(U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435, ___U24PC_2)); }
  670. inline int32_t get_U24PC_2() const { return ___U24PC_2; }
  671. inline int32_t* get_address_of_U24PC_2() { return &___U24PC_2; }
  672. inline void set_U24PC_2(int32_t value)
  673. {
  674. ___U24PC_2 = value;
  675. }
  676. inline static int32_t get_offset_of_U24current_3() { return static_cast<int32_t>(offsetof(U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435, ___U24current_3)); }
  677. inline MethodInfo_t * get_U24current_3() const { return ___U24current_3; }
  678. inline MethodInfo_t ** get_address_of_U24current_3() { return &___U24current_3; }
  679. inline void set_U24current_3(MethodInfo_t * value)
  680. {
  681. ___U24current_3 = value;
  682. Il2CppCodeGenWriteBarrier((&___U24current_3), value);
  683. }
  684. };
  685. #ifdef __clang__
  686. #pragma clang diagnostic pop
  687. #endif
  688. #endif // U3CGETEXTENSIONMETHODSU3EC__ITERATORC_T3368530435_H
  689. #ifndef MEMBERINFO_T_H
  690. #define MEMBERINFO_T_H
  691. #ifdef __clang__
  692. #pragma clang diagnostic push
  693. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  694. #pragma clang diagnostic ignored "-Wunused-variable"
  695. #endif
  696. // System.Reflection.MemberInfo
  697. struct MemberInfo_t : public RuntimeObject
  698. {
  699. public:
  700. public:
  701. };
  702. #ifdef __clang__
  703. #pragma clang diagnostic pop
  704. #endif
  705. #endif // MEMBERINFO_T_H
  706. #ifndef VALUETYPE_T3640485471_H
  707. #define VALUETYPE_T3640485471_H
  708. #ifdef __clang__
  709. #pragma clang diagnostic push
  710. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  711. #pragma clang diagnostic ignored "-Wunused-variable"
  712. #endif
  713. // System.ValueType
  714. struct ValueType_t3640485471 : public RuntimeObject
  715. {
  716. public:
  717. public:
  718. };
  719. #ifdef __clang__
  720. #pragma clang diagnostic pop
  721. #endif
  722. // Native definition for P/Invoke marshalling of System.ValueType
  723. struct ValueType_t3640485471_marshaled_pinvoke
  724. {
  725. };
  726. // Native definition for COM marshalling of System.ValueType
  727. struct ValueType_t3640485471_marshaled_com
  728. {
  729. };
  730. #endif // VALUETYPE_T3640485471_H
  731. #ifndef DICTIONARY_2_T866247282_H
  732. #define DICTIONARY_2_T866247282_H
  733. #ifdef __clang__
  734. #pragma clang diagnostic push
  735. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  736. #pragma clang diagnostic ignored "-Wunused-variable"
  737. #endif
  738. // System.Collections.Generic.Dictionary`2<Boo.Lang.Runtime.DynamicDispatching.DispatcherKey,Boo.Lang.Runtime.DynamicDispatching.Dispatcher>
  739. struct Dictionary_2_t866247282 : public RuntimeObject
  740. {
  741. public:
  742. // System.Int32[] System.Collections.Generic.Dictionary`2::table
  743. Int32U5BU5D_t385246372* ___table_4;
  744. // System.Collections.Generic.Link[] System.Collections.Generic.Dictionary`2::linkSlots
  745. LinkU5BU5D_t964245573* ___linkSlots_5;
  746. // TKey[] System.Collections.Generic.Dictionary`2::keySlots
  747. DispatcherKeyU5BU5D_t1678415317* ___keySlots_6;
  748. // TValue[] System.Collections.Generic.Dictionary`2::valueSlots
  749. DispatcherU5BU5D_t4037257275* ___valueSlots_7;
  750. // System.Int32 System.Collections.Generic.Dictionary`2::touchedSlots
  751. int32_t ___touchedSlots_8;
  752. // System.Int32 System.Collections.Generic.Dictionary`2::emptySlot
  753. int32_t ___emptySlot_9;
  754. // System.Int32 System.Collections.Generic.Dictionary`2::count
  755. int32_t ___count_10;
  756. // System.Int32 System.Collections.Generic.Dictionary`2::threshold
  757. int32_t ___threshold_11;
  758. // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::hcp
  759. RuntimeObject* ___hcp_12;
  760. // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.Dictionary`2::serialization_info
  761. SerializationInfo_t950877179 * ___serialization_info_13;
  762. // System.Int32 System.Collections.Generic.Dictionary`2::generation
  763. int32_t ___generation_14;
  764. public:
  765. inline static int32_t get_offset_of_table_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t866247282, ___table_4)); }
  766. inline Int32U5BU5D_t385246372* get_table_4() const { return ___table_4; }
  767. inline Int32U5BU5D_t385246372** get_address_of_table_4() { return &___table_4; }
  768. inline void set_table_4(Int32U5BU5D_t385246372* value)
  769. {
  770. ___table_4 = value;
  771. Il2CppCodeGenWriteBarrier((&___table_4), value);
  772. }
  773. inline static int32_t get_offset_of_linkSlots_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t866247282, ___linkSlots_5)); }
  774. inline LinkU5BU5D_t964245573* get_linkSlots_5() const { return ___linkSlots_5; }
  775. inline LinkU5BU5D_t964245573** get_address_of_linkSlots_5() { return &___linkSlots_5; }
  776. inline void set_linkSlots_5(LinkU5BU5D_t964245573* value)
  777. {
  778. ___linkSlots_5 = value;
  779. Il2CppCodeGenWriteBarrier((&___linkSlots_5), value);
  780. }
  781. inline static int32_t get_offset_of_keySlots_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t866247282, ___keySlots_6)); }
  782. inline DispatcherKeyU5BU5D_t1678415317* get_keySlots_6() const { return ___keySlots_6; }
  783. inline DispatcherKeyU5BU5D_t1678415317** get_address_of_keySlots_6() { return &___keySlots_6; }
  784. inline void set_keySlots_6(DispatcherKeyU5BU5D_t1678415317* value)
  785. {
  786. ___keySlots_6 = value;
  787. Il2CppCodeGenWriteBarrier((&___keySlots_6), value);
  788. }
  789. inline static int32_t get_offset_of_valueSlots_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t866247282, ___valueSlots_7)); }
  790. inline DispatcherU5BU5D_t4037257275* get_valueSlots_7() const { return ___valueSlots_7; }
  791. inline DispatcherU5BU5D_t4037257275** get_address_of_valueSlots_7() { return &___valueSlots_7; }
  792. inline void set_valueSlots_7(DispatcherU5BU5D_t4037257275* value)
  793. {
  794. ___valueSlots_7 = value;
  795. Il2CppCodeGenWriteBarrier((&___valueSlots_7), value);
  796. }
  797. inline static int32_t get_offset_of_touchedSlots_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t866247282, ___touchedSlots_8)); }
  798. inline int32_t get_touchedSlots_8() const { return ___touchedSlots_8; }
  799. inline int32_t* get_address_of_touchedSlots_8() { return &___touchedSlots_8; }
  800. inline void set_touchedSlots_8(int32_t value)
  801. {
  802. ___touchedSlots_8 = value;
  803. }
  804. inline static int32_t get_offset_of_emptySlot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t866247282, ___emptySlot_9)); }
  805. inline int32_t get_emptySlot_9() const { return ___emptySlot_9; }
  806. inline int32_t* get_address_of_emptySlot_9() { return &___emptySlot_9; }
  807. inline void set_emptySlot_9(int32_t value)
  808. {
  809. ___emptySlot_9 = value;
  810. }
  811. inline static int32_t get_offset_of_count_10() { return static_cast<int32_t>(offsetof(Dictionary_2_t866247282, ___count_10)); }
  812. inline int32_t get_count_10() const { return ___count_10; }
  813. inline int32_t* get_address_of_count_10() { return &___count_10; }
  814. inline void set_count_10(int32_t value)
  815. {
  816. ___count_10 = value;
  817. }
  818. inline static int32_t get_offset_of_threshold_11() { return static_cast<int32_t>(offsetof(Dictionary_2_t866247282, ___threshold_11)); }
  819. inline int32_t get_threshold_11() const { return ___threshold_11; }
  820. inline int32_t* get_address_of_threshold_11() { return &___threshold_11; }
  821. inline void set_threshold_11(int32_t value)
  822. {
  823. ___threshold_11 = value;
  824. }
  825. inline static int32_t get_offset_of_hcp_12() { return static_cast<int32_t>(offsetof(Dictionary_2_t866247282, ___hcp_12)); }
  826. inline RuntimeObject* get_hcp_12() const { return ___hcp_12; }
  827. inline RuntimeObject** get_address_of_hcp_12() { return &___hcp_12; }
  828. inline void set_hcp_12(RuntimeObject* value)
  829. {
  830. ___hcp_12 = value;
  831. Il2CppCodeGenWriteBarrier((&___hcp_12), value);
  832. }
  833. inline static int32_t get_offset_of_serialization_info_13() { return static_cast<int32_t>(offsetof(Dictionary_2_t866247282, ___serialization_info_13)); }
  834. inline SerializationInfo_t950877179 * get_serialization_info_13() const { return ___serialization_info_13; }
  835. inline SerializationInfo_t950877179 ** get_address_of_serialization_info_13() { return &___serialization_info_13; }
  836. inline void set_serialization_info_13(SerializationInfo_t950877179 * value)
  837. {
  838. ___serialization_info_13 = value;
  839. Il2CppCodeGenWriteBarrier((&___serialization_info_13), value);
  840. }
  841. inline static int32_t get_offset_of_generation_14() { return static_cast<int32_t>(offsetof(Dictionary_2_t866247282, ___generation_14)); }
  842. inline int32_t get_generation_14() const { return ___generation_14; }
  843. inline int32_t* get_address_of_generation_14() { return &___generation_14; }
  844. inline void set_generation_14(int32_t value)
  845. {
  846. ___generation_14 = value;
  847. }
  848. };
  849. struct Dictionary_2_t866247282_StaticFields
  850. {
  851. public:
  852. // System.Collections.Generic.Dictionary`2/Transform`1<TKey,TValue,System.Collections.DictionaryEntry> System.Collections.Generic.Dictionary`2::<>f__am$cacheB
  853. Transform_1_t4132401090 * ___U3CU3Ef__amU24cacheB_15;
  854. public:
  855. inline static int32_t get_offset_of_U3CU3Ef__amU24cacheB_15() { return static_cast<int32_t>(offsetof(Dictionary_2_t866247282_StaticFields, ___U3CU3Ef__amU24cacheB_15)); }
  856. inline Transform_1_t4132401090 * get_U3CU3Ef__amU24cacheB_15() const { return ___U3CU3Ef__amU24cacheB_15; }
  857. inline Transform_1_t4132401090 ** get_address_of_U3CU3Ef__amU24cacheB_15() { return &___U3CU3Ef__amU24cacheB_15; }
  858. inline void set_U3CU3Ef__amU24cacheB_15(Transform_1_t4132401090 * value)
  859. {
  860. ___U3CU3Ef__amU24cacheB_15 = value;
  861. Il2CppCodeGenWriteBarrier((&___U3CU3Ef__amU24cacheB_15), value);
  862. }
  863. };
  864. #ifdef __clang__
  865. #pragma clang diagnostic pop
  866. #endif
  867. #endif // DICTIONARY_2_T866247282_H
  868. #ifndef BUILTINS_T286914603_H
  869. #define BUILTINS_T286914603_H
  870. #ifdef __clang__
  871. #pragma clang diagnostic push
  872. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  873. #pragma clang diagnostic ignored "-Wunused-variable"
  874. #endif
  875. // Boo.Lang.Builtins
  876. struct Builtins_t286914603 : public RuntimeObject
  877. {
  878. public:
  879. public:
  880. };
  881. #ifdef __clang__
  882. #pragma clang diagnostic pop
  883. #endif
  884. #endif // BUILTINS_T286914603_H
  885. #ifndef STRING_T_H
  886. #define STRING_T_H
  887. #ifdef __clang__
  888. #pragma clang diagnostic push
  889. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  890. #pragma clang diagnostic ignored "-Wunused-variable"
  891. #endif
  892. // System.String
  893. struct String_t : public RuntimeObject
  894. {
  895. public:
  896. // System.Int32 System.String::length
  897. int32_t ___length_0;
  898. // System.Char System.String::start_char
  899. Il2CppChar ___start_char_1;
  900. public:
  901. inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(String_t, ___length_0)); }
  902. inline int32_t get_length_0() const { return ___length_0; }
  903. inline int32_t* get_address_of_length_0() { return &___length_0; }
  904. inline void set_length_0(int32_t value)
  905. {
  906. ___length_0 = value;
  907. }
  908. inline static int32_t get_offset_of_start_char_1() { return static_cast<int32_t>(offsetof(String_t, ___start_char_1)); }
  909. inline Il2CppChar get_start_char_1() const { return ___start_char_1; }
  910. inline Il2CppChar* get_address_of_start_char_1() { return &___start_char_1; }
  911. inline void set_start_char_1(Il2CppChar value)
  912. {
  913. ___start_char_1 = value;
  914. }
  915. };
  916. struct String_t_StaticFields
  917. {
  918. public:
  919. // System.String System.String::Empty
  920. String_t* ___Empty_2;
  921. // System.Char[] System.String::WhiteChars
  922. CharU5BU5D_t3528271667* ___WhiteChars_3;
  923. public:
  924. inline static int32_t get_offset_of_Empty_2() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_2)); }
  925. inline String_t* get_Empty_2() const { return ___Empty_2; }
  926. inline String_t** get_address_of_Empty_2() { return &___Empty_2; }
  927. inline void set_Empty_2(String_t* value)
  928. {
  929. ___Empty_2 = value;
  930. Il2CppCodeGenWriteBarrier((&___Empty_2), value);
  931. }
  932. inline static int32_t get_offset_of_WhiteChars_3() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___WhiteChars_3)); }
  933. inline CharU5BU5D_t3528271667* get_WhiteChars_3() const { return ___WhiteChars_3; }
  934. inline CharU5BU5D_t3528271667** get_address_of_WhiteChars_3() { return &___WhiteChars_3; }
  935. inline void set_WhiteChars_3(CharU5BU5D_t3528271667* value)
  936. {
  937. ___WhiteChars_3 = value;
  938. Il2CppCodeGenWriteBarrier((&___WhiteChars_3), value);
  939. }
  940. };
  941. #ifdef __clang__
  942. #pragma clang diagnostic pop
  943. #endif
  944. #endif // STRING_T_H
  945. #ifndef STRINGBUILDER_T_H
  946. #define STRINGBUILDER_T_H
  947. #ifdef __clang__
  948. #pragma clang diagnostic push
  949. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  950. #pragma clang diagnostic ignored "-Wunused-variable"
  951. #endif
  952. // System.Text.StringBuilder
  953. struct StringBuilder_t : public RuntimeObject
  954. {
  955. public:
  956. // System.Int32 System.Text.StringBuilder::_length
  957. int32_t ____length_1;
  958. // System.String System.Text.StringBuilder::_str
  959. String_t* ____str_2;
  960. // System.String System.Text.StringBuilder::_cached_str
  961. String_t* ____cached_str_3;
  962. // System.Int32 System.Text.StringBuilder::_maxCapacity
  963. int32_t ____maxCapacity_4;
  964. public:
  965. inline static int32_t get_offset_of__length_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ____length_1)); }
  966. inline int32_t get__length_1() const { return ____length_1; }
  967. inline int32_t* get_address_of__length_1() { return &____length_1; }
  968. inline void set__length_1(int32_t value)
  969. {
  970. ____length_1 = value;
  971. }
  972. inline static int32_t get_offset_of__str_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ____str_2)); }
  973. inline String_t* get__str_2() const { return ____str_2; }
  974. inline String_t** get_address_of__str_2() { return &____str_2; }
  975. inline void set__str_2(String_t* value)
  976. {
  977. ____str_2 = value;
  978. Il2CppCodeGenWriteBarrier((&____str_2), value);
  979. }
  980. inline static int32_t get_offset_of__cached_str_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ____cached_str_3)); }
  981. inline String_t* get__cached_str_3() const { return ____cached_str_3; }
  982. inline String_t** get_address_of__cached_str_3() { return &____cached_str_3; }
  983. inline void set__cached_str_3(String_t* value)
  984. {
  985. ____cached_str_3 = value;
  986. Il2CppCodeGenWriteBarrier((&____cached_str_3), value);
  987. }
  988. inline static int32_t get_offset_of__maxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ____maxCapacity_4)); }
  989. inline int32_t get__maxCapacity_4() const { return ____maxCapacity_4; }
  990. inline int32_t* get_address_of__maxCapacity_4() { return &____maxCapacity_4; }
  991. inline void set__maxCapacity_4(int32_t value)
  992. {
  993. ____maxCapacity_4 = value;
  994. }
  995. };
  996. #ifdef __clang__
  997. #pragma clang diagnostic pop
  998. #endif
  999. #endif // STRINGBUILDER_T_H
  1000. #ifndef EXCEPTION_T_H
  1001. #define EXCEPTION_T_H
  1002. #ifdef __clang__
  1003. #pragma clang diagnostic push
  1004. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1005. #pragma clang diagnostic ignored "-Wunused-variable"
  1006. #endif
  1007. // System.Exception
  1008. struct Exception_t : public RuntimeObject
  1009. {
  1010. public:
  1011. // System.IntPtr[] System.Exception::trace_ips
  1012. IntPtrU5BU5D_t4013366056* ___trace_ips_0;
  1013. // System.Exception System.Exception::inner_exception
  1014. Exception_t * ___inner_exception_1;
  1015. // System.String System.Exception::message
  1016. String_t* ___message_2;
  1017. // System.String System.Exception::help_link
  1018. String_t* ___help_link_3;
  1019. // System.String System.Exception::class_name
  1020. String_t* ___class_name_4;
  1021. // System.String System.Exception::stack_trace
  1022. String_t* ___stack_trace_5;
  1023. // System.String System.Exception::_remoteStackTraceString
  1024. String_t* ____remoteStackTraceString_6;
  1025. // System.Int32 System.Exception::remote_stack_index
  1026. int32_t ___remote_stack_index_7;
  1027. // System.Int32 System.Exception::hresult
  1028. int32_t ___hresult_8;
  1029. // System.String System.Exception::source
  1030. String_t* ___source_9;
  1031. // System.Collections.IDictionary System.Exception::_data
  1032. RuntimeObject* ____data_10;
  1033. public:
  1034. inline static int32_t get_offset_of_trace_ips_0() { return static_cast<int32_t>(offsetof(Exception_t, ___trace_ips_0)); }
  1035. inline IntPtrU5BU5D_t4013366056* get_trace_ips_0() const { return ___trace_ips_0; }
  1036. inline IntPtrU5BU5D_t4013366056** get_address_of_trace_ips_0() { return &___trace_ips_0; }
  1037. inline void set_trace_ips_0(IntPtrU5BU5D_t4013366056* value)
  1038. {
  1039. ___trace_ips_0 = value;
  1040. Il2CppCodeGenWriteBarrier((&___trace_ips_0), value);
  1041. }
  1042. inline static int32_t get_offset_of_inner_exception_1() { return static_cast<int32_t>(offsetof(Exception_t, ___inner_exception_1)); }
  1043. inline Exception_t * get_inner_exception_1() const { return ___inner_exception_1; }
  1044. inline Exception_t ** get_address_of_inner_exception_1() { return &___inner_exception_1; }
  1045. inline void set_inner_exception_1(Exception_t * value)
  1046. {
  1047. ___inner_exception_1 = value;
  1048. Il2CppCodeGenWriteBarrier((&___inner_exception_1), value);
  1049. }
  1050. inline static int32_t get_offset_of_message_2() { return static_cast<int32_t>(offsetof(Exception_t, ___message_2)); }
  1051. inline String_t* get_message_2() const { return ___message_2; }
  1052. inline String_t** get_address_of_message_2() { return &___message_2; }
  1053. inline void set_message_2(String_t* value)
  1054. {
  1055. ___message_2 = value;
  1056. Il2CppCodeGenWriteBarrier((&___message_2), value);
  1057. }
  1058. inline static int32_t get_offset_of_help_link_3() { return static_cast<int32_t>(offsetof(Exception_t, ___help_link_3)); }
  1059. inline String_t* get_help_link_3() const { return ___help_link_3; }
  1060. inline String_t** get_address_of_help_link_3() { return &___help_link_3; }
  1061. inline void set_help_link_3(String_t* value)
  1062. {
  1063. ___help_link_3 = value;
  1064. Il2CppCodeGenWriteBarrier((&___help_link_3), value);
  1065. }
  1066. inline static int32_t get_offset_of_class_name_4() { return static_cast<int32_t>(offsetof(Exception_t, ___class_name_4)); }
  1067. inline String_t* get_class_name_4() const { return ___class_name_4; }
  1068. inline String_t** get_address_of_class_name_4() { return &___class_name_4; }
  1069. inline void set_class_name_4(String_t* value)
  1070. {
  1071. ___class_name_4 = value;
  1072. Il2CppCodeGenWriteBarrier((&___class_name_4), value);
  1073. }
  1074. inline static int32_t get_offset_of_stack_trace_5() { return static_cast<int32_t>(offsetof(Exception_t, ___stack_trace_5)); }
  1075. inline String_t* get_stack_trace_5() const { return ___stack_trace_5; }
  1076. inline String_t** get_address_of_stack_trace_5() { return &___stack_trace_5; }
  1077. inline void set_stack_trace_5(String_t* value)
  1078. {
  1079. ___stack_trace_5 = value;
  1080. Il2CppCodeGenWriteBarrier((&___stack_trace_5), value);
  1081. }
  1082. inline static int32_t get_offset_of__remoteStackTraceString_6() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_6)); }
  1083. inline String_t* get__remoteStackTraceString_6() const { return ____remoteStackTraceString_6; }
  1084. inline String_t** get_address_of__remoteStackTraceString_6() { return &____remoteStackTraceString_6; }
  1085. inline void set__remoteStackTraceString_6(String_t* value)
  1086. {
  1087. ____remoteStackTraceString_6 = value;
  1088. Il2CppCodeGenWriteBarrier((&____remoteStackTraceString_6), value);
  1089. }
  1090. inline static int32_t get_offset_of_remote_stack_index_7() { return static_cast<int32_t>(offsetof(Exception_t, ___remote_stack_index_7)); }
  1091. inline int32_t get_remote_stack_index_7() const { return ___remote_stack_index_7; }
  1092. inline int32_t* get_address_of_remote_stack_index_7() { return &___remote_stack_index_7; }
  1093. inline void set_remote_stack_index_7(int32_t value)
  1094. {
  1095. ___remote_stack_index_7 = value;
  1096. }
  1097. inline static int32_t get_offset_of_hresult_8() { return static_cast<int32_t>(offsetof(Exception_t, ___hresult_8)); }
  1098. inline int32_t get_hresult_8() const { return ___hresult_8; }
  1099. inline int32_t* get_address_of_hresult_8() { return &___hresult_8; }
  1100. inline void set_hresult_8(int32_t value)
  1101. {
  1102. ___hresult_8 = value;
  1103. }
  1104. inline static int32_t get_offset_of_source_9() { return static_cast<int32_t>(offsetof(Exception_t, ___source_9)); }
  1105. inline String_t* get_source_9() const { return ___source_9; }
  1106. inline String_t** get_address_of_source_9() { return &___source_9; }
  1107. inline void set_source_9(String_t* value)
  1108. {
  1109. ___source_9 = value;
  1110. Il2CppCodeGenWriteBarrier((&___source_9), value);
  1111. }
  1112. inline static int32_t get_offset_of__data_10() { return static_cast<int32_t>(offsetof(Exception_t, ____data_10)); }
  1113. inline RuntimeObject* get__data_10() const { return ____data_10; }
  1114. inline RuntimeObject** get_address_of__data_10() { return &____data_10; }
  1115. inline void set__data_10(RuntimeObject* value)
  1116. {
  1117. ____data_10 = value;
  1118. Il2CppCodeGenWriteBarrier((&____data_10), value);
  1119. }
  1120. };
  1121. #ifdef __clang__
  1122. #pragma clang diagnostic pop
  1123. #endif
  1124. #endif // EXCEPTION_T_H
  1125. #ifndef DISPATCHERCACHE_T1010326087_H
  1126. #define DISPATCHERCACHE_T1010326087_H
  1127. #ifdef __clang__
  1128. #pragma clang diagnostic push
  1129. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1130. #pragma clang diagnostic ignored "-Wunused-variable"
  1131. #endif
  1132. // Boo.Lang.Runtime.DynamicDispatching.DispatcherCache
  1133. struct DispatcherCache_t1010326087 : public RuntimeObject
  1134. {
  1135. public:
  1136. public:
  1137. };
  1138. struct DispatcherCache_t1010326087_StaticFields
  1139. {
  1140. public:
  1141. // System.Collections.Generic.Dictionary`2<Boo.Lang.Runtime.DynamicDispatching.DispatcherKey,Boo.Lang.Runtime.DynamicDispatching.Dispatcher> Boo.Lang.Runtime.DynamicDispatching.DispatcherCache::_cache
  1142. Dictionary_2_t866247282 * ____cache_0;
  1143. public:
  1144. inline static int32_t get_offset_of__cache_0() { return static_cast<int32_t>(offsetof(DispatcherCache_t1010326087_StaticFields, ____cache_0)); }
  1145. inline Dictionary_2_t866247282 * get__cache_0() const { return ____cache_0; }
  1146. inline Dictionary_2_t866247282 ** get_address_of__cache_0() { return &____cache_0; }
  1147. inline void set__cache_0(Dictionary_2_t866247282 * value)
  1148. {
  1149. ____cache_0 = value;
  1150. Il2CppCodeGenWriteBarrier((&____cache_0), value);
  1151. }
  1152. };
  1153. #ifdef __clang__
  1154. #pragma clang diagnostic pop
  1155. #endif
  1156. #endif // DISPATCHERCACHE_T1010326087_H
  1157. #ifndef DISPATCHERKEY_T2110064572_H
  1158. #define DISPATCHERKEY_T2110064572_H
  1159. #ifdef __clang__
  1160. #pragma clang diagnostic push
  1161. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1162. #pragma clang diagnostic ignored "-Wunused-variable"
  1163. #endif
  1164. // Boo.Lang.Runtime.DynamicDispatching.DispatcherKey
  1165. struct DispatcherKey_t2110064572 : public RuntimeObject
  1166. {
  1167. public:
  1168. // System.Type Boo.Lang.Runtime.DynamicDispatching.DispatcherKey::_type
  1169. Type_t * ____type_1;
  1170. // System.String Boo.Lang.Runtime.DynamicDispatching.DispatcherKey::_name
  1171. String_t* ____name_2;
  1172. // System.Type[] Boo.Lang.Runtime.DynamicDispatching.DispatcherKey::_arguments
  1173. TypeU5BU5D_t3940880105* ____arguments_3;
  1174. public:
  1175. inline static int32_t get_offset_of__type_1() { return static_cast<int32_t>(offsetof(DispatcherKey_t2110064572, ____type_1)); }
  1176. inline Type_t * get__type_1() const { return ____type_1; }
  1177. inline Type_t ** get_address_of__type_1() { return &____type_1; }
  1178. inline void set__type_1(Type_t * value)
  1179. {
  1180. ____type_1 = value;
  1181. Il2CppCodeGenWriteBarrier((&____type_1), value);
  1182. }
  1183. inline static int32_t get_offset_of__name_2() { return static_cast<int32_t>(offsetof(DispatcherKey_t2110064572, ____name_2)); }
  1184. inline String_t* get__name_2() const { return ____name_2; }
  1185. inline String_t** get_address_of__name_2() { return &____name_2; }
  1186. inline void set__name_2(String_t* value)
  1187. {
  1188. ____name_2 = value;
  1189. Il2CppCodeGenWriteBarrier((&____name_2), value);
  1190. }
  1191. inline static int32_t get_offset_of__arguments_3() { return static_cast<int32_t>(offsetof(DispatcherKey_t2110064572, ____arguments_3)); }
  1192. inline TypeU5BU5D_t3940880105* get__arguments_3() const { return ____arguments_3; }
  1193. inline TypeU5BU5D_t3940880105** get_address_of__arguments_3() { return &____arguments_3; }
  1194. inline void set__arguments_3(TypeU5BU5D_t3940880105* value)
  1195. {
  1196. ____arguments_3 = value;
  1197. Il2CppCodeGenWriteBarrier((&____arguments_3), value);
  1198. }
  1199. };
  1200. struct DispatcherKey_t2110064572_StaticFields
  1201. {
  1202. public:
  1203. // System.Collections.Generic.IEqualityComparer`1<Boo.Lang.Runtime.DynamicDispatching.DispatcherKey> Boo.Lang.Runtime.DynamicDispatching.DispatcherKey::EqualityComparer
  1204. RuntimeObject* ___EqualityComparer_0;
  1205. public:
  1206. inline static int32_t get_offset_of_EqualityComparer_0() { return static_cast<int32_t>(offsetof(DispatcherKey_t2110064572_StaticFields, ___EqualityComparer_0)); }
  1207. inline RuntimeObject* get_EqualityComparer_0() const { return ___EqualityComparer_0; }
  1208. inline RuntimeObject** get_address_of_EqualityComparer_0() { return &___EqualityComparer_0; }
  1209. inline void set_EqualityComparer_0(RuntimeObject* value)
  1210. {
  1211. ___EqualityComparer_0 = value;
  1212. Il2CppCodeGenWriteBarrier((&___EqualityComparer_0), value);
  1213. }
  1214. };
  1215. #ifdef __clang__
  1216. #pragma clang diagnostic pop
  1217. #endif
  1218. #endif // DISPATCHERKEY_T2110064572_H
  1219. #ifndef INT32_T2950945753_H
  1220. #define INT32_T2950945753_H
  1221. #ifdef __clang__
  1222. #pragma clang diagnostic push
  1223. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1224. #pragma clang diagnostic ignored "-Wunused-variable"
  1225. #endif
  1226. // System.Int32
  1227. struct Int32_t2950945753
  1228. {
  1229. public:
  1230. // System.Int32 System.Int32::m_value
  1231. int32_t ___m_value_2;
  1232. public:
  1233. inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Int32_t2950945753, ___m_value_2)); }
  1234. inline int32_t get_m_value_2() const { return ___m_value_2; }
  1235. inline int32_t* get_address_of_m_value_2() { return &___m_value_2; }
  1236. inline void set_m_value_2(int32_t value)
  1237. {
  1238. ___m_value_2 = value;
  1239. }
  1240. };
  1241. #ifdef __clang__
  1242. #pragma clang diagnostic pop
  1243. #endif
  1244. #endif // INT32_T2950945753_H
  1245. #ifndef SINGLE_T1397266774_H
  1246. #define SINGLE_T1397266774_H
  1247. #ifdef __clang__
  1248. #pragma clang diagnostic push
  1249. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1250. #pragma clang diagnostic ignored "-Wunused-variable"
  1251. #endif
  1252. // System.Single
  1253. struct Single_t1397266774
  1254. {
  1255. public:
  1256. // System.Single System.Single::m_value
  1257. float ___m_value_7;
  1258. public:
  1259. inline static int32_t get_offset_of_m_value_7() { return static_cast<int32_t>(offsetof(Single_t1397266774, ___m_value_7)); }
  1260. inline float get_m_value_7() const { return ___m_value_7; }
  1261. inline float* get_address_of_m_value_7() { return &___m_value_7; }
  1262. inline void set_m_value_7(float value)
  1263. {
  1264. ___m_value_7 = value;
  1265. }
  1266. };
  1267. #ifdef __clang__
  1268. #pragma clang diagnostic pop
  1269. #endif
  1270. #endif // SINGLE_T1397266774_H
  1271. #ifndef UINT64_T4134040092_H
  1272. #define UINT64_T4134040092_H
  1273. #ifdef __clang__
  1274. #pragma clang diagnostic push
  1275. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1276. #pragma clang diagnostic ignored "-Wunused-variable"
  1277. #endif
  1278. // System.UInt64
  1279. struct UInt64_t4134040092
  1280. {
  1281. public:
  1282. // System.UInt64 System.UInt64::m_value
  1283. uint64_t ___m_value_0;
  1284. public:
  1285. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_t4134040092, ___m_value_0)); }
  1286. inline uint64_t get_m_value_0() const { return ___m_value_0; }
  1287. inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; }
  1288. inline void set_m_value_0(uint64_t value)
  1289. {
  1290. ___m_value_0 = value;
  1291. }
  1292. };
  1293. #ifdef __clang__
  1294. #pragma clang diagnostic pop
  1295. #endif
  1296. #endif // UINT64_T4134040092_H
  1297. #ifndef INT64_T3736567304_H
  1298. #define INT64_T3736567304_H
  1299. #ifdef __clang__
  1300. #pragma clang diagnostic push
  1301. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1302. #pragma clang diagnostic ignored "-Wunused-variable"
  1303. #endif
  1304. // System.Int64
  1305. struct Int64_t3736567304
  1306. {
  1307. public:
  1308. // System.Int64 System.Int64::m_value
  1309. int64_t ___m_value_2;
  1310. public:
  1311. inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Int64_t3736567304, ___m_value_2)); }
  1312. inline int64_t get_m_value_2() const { return ___m_value_2; }
  1313. inline int64_t* get_address_of_m_value_2() { return &___m_value_2; }
  1314. inline void set_m_value_2(int64_t value)
  1315. {
  1316. ___m_value_2 = value;
  1317. }
  1318. };
  1319. #ifdef __clang__
  1320. #pragma clang diagnostic pop
  1321. #endif
  1322. #endif // INT64_T3736567304_H
  1323. #ifndef UINT32_T2560061978_H
  1324. #define UINT32_T2560061978_H
  1325. #ifdef __clang__
  1326. #pragma clang diagnostic push
  1327. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1328. #pragma clang diagnostic ignored "-Wunused-variable"
  1329. #endif
  1330. // System.UInt32
  1331. struct UInt32_t2560061978
  1332. {
  1333. public:
  1334. // System.UInt32 System.UInt32::m_value
  1335. uint32_t ___m_value_2;
  1336. public:
  1337. inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(UInt32_t2560061978, ___m_value_2)); }
  1338. inline uint32_t get_m_value_2() const { return ___m_value_2; }
  1339. inline uint32_t* get_address_of_m_value_2() { return &___m_value_2; }
  1340. inline void set_m_value_2(uint32_t value)
  1341. {
  1342. ___m_value_2 = value;
  1343. }
  1344. };
  1345. #ifdef __clang__
  1346. #pragma clang diagnostic pop
  1347. #endif
  1348. #endif // UINT32_T2560061978_H
  1349. #ifndef METHODBASE_T_H
  1350. #define METHODBASE_T_H
  1351. #ifdef __clang__
  1352. #pragma clang diagnostic push
  1353. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1354. #pragma clang diagnostic ignored "-Wunused-variable"
  1355. #endif
  1356. // System.Reflection.MethodBase
  1357. struct MethodBase_t : public MemberInfo_t
  1358. {
  1359. public:
  1360. public:
  1361. };
  1362. #ifdef __clang__
  1363. #pragma clang diagnostic pop
  1364. #endif
  1365. #endif // METHODBASE_T_H
  1366. #ifndef ENUM_T4135868527_H
  1367. #define ENUM_T4135868527_H
  1368. #ifdef __clang__
  1369. #pragma clang diagnostic push
  1370. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1371. #pragma clang diagnostic ignored "-Wunused-variable"
  1372. #endif
  1373. // System.Enum
  1374. struct Enum_t4135868527 : public ValueType_t3640485471
  1375. {
  1376. public:
  1377. public:
  1378. };
  1379. struct Enum_t4135868527_StaticFields
  1380. {
  1381. public:
  1382. // System.Char[] System.Enum::split_char
  1383. CharU5BU5D_t3528271667* ___split_char_0;
  1384. public:
  1385. inline static int32_t get_offset_of_split_char_0() { return static_cast<int32_t>(offsetof(Enum_t4135868527_StaticFields, ___split_char_0)); }
  1386. inline CharU5BU5D_t3528271667* get_split_char_0() const { return ___split_char_0; }
  1387. inline CharU5BU5D_t3528271667** get_address_of_split_char_0() { return &___split_char_0; }
  1388. inline void set_split_char_0(CharU5BU5D_t3528271667* value)
  1389. {
  1390. ___split_char_0 = value;
  1391. Il2CppCodeGenWriteBarrier((&___split_char_0), value);
  1392. }
  1393. };
  1394. #ifdef __clang__
  1395. #pragma clang diagnostic pop
  1396. #endif
  1397. // Native definition for P/Invoke marshalling of System.Enum
  1398. struct Enum_t4135868527_marshaled_pinvoke
  1399. {
  1400. };
  1401. // Native definition for COM marshalling of System.Enum
  1402. struct Enum_t4135868527_marshaled_com
  1403. {
  1404. };
  1405. #endif // ENUM_T4135868527_H
  1406. #ifndef SYSTEMEXCEPTION_T176217640_H
  1407. #define SYSTEMEXCEPTION_T176217640_H
  1408. #ifdef __clang__
  1409. #pragma clang diagnostic push
  1410. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1411. #pragma clang diagnostic ignored "-Wunused-variable"
  1412. #endif
  1413. // System.SystemException
  1414. struct SystemException_t176217640 : public Exception_t
  1415. {
  1416. public:
  1417. public:
  1418. };
  1419. #ifdef __clang__
  1420. #pragma clang diagnostic pop
  1421. #endif
  1422. #endif // SYSTEMEXCEPTION_T176217640_H
  1423. #ifndef DECIMAL_T2948259380_H
  1424. #define DECIMAL_T2948259380_H
  1425. #ifdef __clang__
  1426. #pragma clang diagnostic push
  1427. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1428. #pragma clang diagnostic ignored "-Wunused-variable"
  1429. #endif
  1430. // System.Decimal
  1431. struct Decimal_t2948259380
  1432. {
  1433. public:
  1434. // System.UInt32 System.Decimal::flags
  1435. uint32_t ___flags_5;
  1436. // System.UInt32 System.Decimal::hi
  1437. uint32_t ___hi_6;
  1438. // System.UInt32 System.Decimal::lo
  1439. uint32_t ___lo_7;
  1440. // System.UInt32 System.Decimal::mid
  1441. uint32_t ___mid_8;
  1442. public:
  1443. inline static int32_t get_offset_of_flags_5() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___flags_5)); }
  1444. inline uint32_t get_flags_5() const { return ___flags_5; }
  1445. inline uint32_t* get_address_of_flags_5() { return &___flags_5; }
  1446. inline void set_flags_5(uint32_t value)
  1447. {
  1448. ___flags_5 = value;
  1449. }
  1450. inline static int32_t get_offset_of_hi_6() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___hi_6)); }
  1451. inline uint32_t get_hi_6() const { return ___hi_6; }
  1452. inline uint32_t* get_address_of_hi_6() { return &___hi_6; }
  1453. inline void set_hi_6(uint32_t value)
  1454. {
  1455. ___hi_6 = value;
  1456. }
  1457. inline static int32_t get_offset_of_lo_7() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___lo_7)); }
  1458. inline uint32_t get_lo_7() const { return ___lo_7; }
  1459. inline uint32_t* get_address_of_lo_7() { return &___lo_7; }
  1460. inline void set_lo_7(uint32_t value)
  1461. {
  1462. ___lo_7 = value;
  1463. }
  1464. inline static int32_t get_offset_of_mid_8() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___mid_8)); }
  1465. inline uint32_t get_mid_8() const { return ___mid_8; }
  1466. inline uint32_t* get_address_of_mid_8() { return &___mid_8; }
  1467. inline void set_mid_8(uint32_t value)
  1468. {
  1469. ___mid_8 = value;
  1470. }
  1471. };
  1472. struct Decimal_t2948259380_StaticFields
  1473. {
  1474. public:
  1475. // System.Decimal System.Decimal::MinValue
  1476. Decimal_t2948259380 ___MinValue_0;
  1477. // System.Decimal System.Decimal::MaxValue
  1478. Decimal_t2948259380 ___MaxValue_1;
  1479. // System.Decimal System.Decimal::MinusOne
  1480. Decimal_t2948259380 ___MinusOne_2;
  1481. // System.Decimal System.Decimal::One
  1482. Decimal_t2948259380 ___One_3;
  1483. // System.Decimal System.Decimal::MaxValueDiv10
  1484. Decimal_t2948259380 ___MaxValueDiv10_4;
  1485. public:
  1486. inline static int32_t get_offset_of_MinValue_0() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MinValue_0)); }
  1487. inline Decimal_t2948259380 get_MinValue_0() const { return ___MinValue_0; }
  1488. inline Decimal_t2948259380 * get_address_of_MinValue_0() { return &___MinValue_0; }
  1489. inline void set_MinValue_0(Decimal_t2948259380 value)
  1490. {
  1491. ___MinValue_0 = value;
  1492. }
  1493. inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MaxValue_1)); }
  1494. inline Decimal_t2948259380 get_MaxValue_1() const { return ___MaxValue_1; }
  1495. inline Decimal_t2948259380 * get_address_of_MaxValue_1() { return &___MaxValue_1; }
  1496. inline void set_MaxValue_1(Decimal_t2948259380 value)
  1497. {
  1498. ___MaxValue_1 = value;
  1499. }
  1500. inline static int32_t get_offset_of_MinusOne_2() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MinusOne_2)); }
  1501. inline Decimal_t2948259380 get_MinusOne_2() const { return ___MinusOne_2; }
  1502. inline Decimal_t2948259380 * get_address_of_MinusOne_2() { return &___MinusOne_2; }
  1503. inline void set_MinusOne_2(Decimal_t2948259380 value)
  1504. {
  1505. ___MinusOne_2 = value;
  1506. }
  1507. inline static int32_t get_offset_of_One_3() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___One_3)); }
  1508. inline Decimal_t2948259380 get_One_3() const { return ___One_3; }
  1509. inline Decimal_t2948259380 * get_address_of_One_3() { return &___One_3; }
  1510. inline void set_One_3(Decimal_t2948259380 value)
  1511. {
  1512. ___One_3 = value;
  1513. }
  1514. inline static int32_t get_offset_of_MaxValueDiv10_4() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MaxValueDiv10_4)); }
  1515. inline Decimal_t2948259380 get_MaxValueDiv10_4() const { return ___MaxValueDiv10_4; }
  1516. inline Decimal_t2948259380 * get_address_of_MaxValueDiv10_4() { return &___MaxValueDiv10_4; }
  1517. inline void set_MaxValueDiv10_4(Decimal_t2948259380 value)
  1518. {
  1519. ___MaxValueDiv10_4 = value;
  1520. }
  1521. };
  1522. #ifdef __clang__
  1523. #pragma clang diagnostic pop
  1524. #endif
  1525. #endif // DECIMAL_T2948259380_H
  1526. #ifndef INTPTR_T_H
  1527. #define INTPTR_T_H
  1528. #ifdef __clang__
  1529. #pragma clang diagnostic push
  1530. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1531. #pragma clang diagnostic ignored "-Wunused-variable"
  1532. #endif
  1533. // System.IntPtr
  1534. struct IntPtr_t
  1535. {
  1536. public:
  1537. // System.Void* System.IntPtr::m_value
  1538. void* ___m_value_0;
  1539. public:
  1540. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
  1541. inline void* get_m_value_0() const { return ___m_value_0; }
  1542. inline void** get_address_of_m_value_0() { return &___m_value_0; }
  1543. inline void set_m_value_0(void* value)
  1544. {
  1545. ___m_value_0 = value;
  1546. }
  1547. };
  1548. struct IntPtr_t_StaticFields
  1549. {
  1550. public:
  1551. // System.IntPtr System.IntPtr::Zero
  1552. intptr_t ___Zero_1;
  1553. public:
  1554. inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
  1555. inline intptr_t get_Zero_1() const { return ___Zero_1; }
  1556. inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
  1557. inline void set_Zero_1(intptr_t value)
  1558. {
  1559. ___Zero_1 = value;
  1560. }
  1561. };
  1562. #ifdef __clang__
  1563. #pragma clang diagnostic pop
  1564. #endif
  1565. #endif // INTPTR_T_H
  1566. #ifndef DOUBLE_T594665363_H
  1567. #define DOUBLE_T594665363_H
  1568. #ifdef __clang__
  1569. #pragma clang diagnostic push
  1570. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1571. #pragma clang diagnostic ignored "-Wunused-variable"
  1572. #endif
  1573. // System.Double
  1574. struct Double_t594665363
  1575. {
  1576. public:
  1577. // System.Double System.Double::m_value
  1578. double ___m_value_13;
  1579. public:
  1580. inline static int32_t get_offset_of_m_value_13() { return static_cast<int32_t>(offsetof(Double_t594665363, ___m_value_13)); }
  1581. inline double get_m_value_13() const { return ___m_value_13; }
  1582. inline double* get_address_of_m_value_13() { return &___m_value_13; }
  1583. inline void set_m_value_13(double value)
  1584. {
  1585. ___m_value_13 = value;
  1586. }
  1587. };
  1588. #ifdef __clang__
  1589. #pragma clang diagnostic pop
  1590. #endif
  1591. #endif // DOUBLE_T594665363_H
  1592. #ifndef BOOLEAN_T97287965_H
  1593. #define BOOLEAN_T97287965_H
  1594. #ifdef __clang__
  1595. #pragma clang diagnostic push
  1596. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1597. #pragma clang diagnostic ignored "-Wunused-variable"
  1598. #endif
  1599. // System.Boolean
  1600. struct Boolean_t97287965
  1601. {
  1602. public:
  1603. // System.Boolean System.Boolean::m_value
  1604. bool ___m_value_2;
  1605. public:
  1606. inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Boolean_t97287965, ___m_value_2)); }
  1607. inline bool get_m_value_2() const { return ___m_value_2; }
  1608. inline bool* get_address_of_m_value_2() { return &___m_value_2; }
  1609. inline void set_m_value_2(bool value)
  1610. {
  1611. ___m_value_2 = value;
  1612. }
  1613. };
  1614. struct Boolean_t97287965_StaticFields
  1615. {
  1616. public:
  1617. // System.String System.Boolean::FalseString
  1618. String_t* ___FalseString_0;
  1619. // System.String System.Boolean::TrueString
  1620. String_t* ___TrueString_1;
  1621. public:
  1622. inline static int32_t get_offset_of_FalseString_0() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___FalseString_0)); }
  1623. inline String_t* get_FalseString_0() const { return ___FalseString_0; }
  1624. inline String_t** get_address_of_FalseString_0() { return &___FalseString_0; }
  1625. inline void set_FalseString_0(String_t* value)
  1626. {
  1627. ___FalseString_0 = value;
  1628. Il2CppCodeGenWriteBarrier((&___FalseString_0), value);
  1629. }
  1630. inline static int32_t get_offset_of_TrueString_1() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___TrueString_1)); }
  1631. inline String_t* get_TrueString_1() const { return ___TrueString_1; }
  1632. inline String_t** get_address_of_TrueString_1() { return &___TrueString_1; }
  1633. inline void set_TrueString_1(String_t* value)
  1634. {
  1635. ___TrueString_1 = value;
  1636. Il2CppCodeGenWriteBarrier((&___TrueString_1), value);
  1637. }
  1638. };
  1639. #ifdef __clang__
  1640. #pragma clang diagnostic pop
  1641. #endif
  1642. #endif // BOOLEAN_T97287965_H
  1643. #ifndef VOID_T1185182177_H
  1644. #define VOID_T1185182177_H
  1645. #ifdef __clang__
  1646. #pragma clang diagnostic push
  1647. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1648. #pragma clang diagnostic ignored "-Wunused-variable"
  1649. #endif
  1650. // System.Void
  1651. struct Void_t1185182177
  1652. {
  1653. public:
  1654. public:
  1655. };
  1656. #ifdef __clang__
  1657. #pragma clang diagnostic pop
  1658. #endif
  1659. #endif // VOID_T1185182177_H
  1660. #ifndef NOTSUPPORTEDEXCEPTION_T1314879016_H
  1661. #define NOTSUPPORTEDEXCEPTION_T1314879016_H
  1662. #ifdef __clang__
  1663. #pragma clang diagnostic push
  1664. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1665. #pragma clang diagnostic ignored "-Wunused-variable"
  1666. #endif
  1667. // System.NotSupportedException
  1668. struct NotSupportedException_t1314879016 : public SystemException_t176217640
  1669. {
  1670. public:
  1671. public:
  1672. };
  1673. #ifdef __clang__
  1674. #pragma clang diagnostic pop
  1675. #endif
  1676. #endif // NOTSUPPORTEDEXCEPTION_T1314879016_H
  1677. #ifndef MEMBERTYPES_T3790569052_H
  1678. #define MEMBERTYPES_T3790569052_H
  1679. #ifdef __clang__
  1680. #pragma clang diagnostic push
  1681. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1682. #pragma clang diagnostic ignored "-Wunused-variable"
  1683. #endif
  1684. // System.Reflection.MemberTypes
  1685. struct MemberTypes_t3790569052
  1686. {
  1687. public:
  1688. // System.Int32 System.Reflection.MemberTypes::value__
  1689. int32_t ___value___1;
  1690. public:
  1691. inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(MemberTypes_t3790569052, ___value___1)); }
  1692. inline int32_t get_value___1() const { return ___value___1; }
  1693. inline int32_t* get_address_of_value___1() { return &___value___1; }
  1694. inline void set_value___1(int32_t value)
  1695. {
  1696. ___value___1 = value;
  1697. }
  1698. };
  1699. #ifdef __clang__
  1700. #pragma clang diagnostic pop
  1701. #endif
  1702. #endif // MEMBERTYPES_T3790569052_H
  1703. #ifndef ARGUMENTEXCEPTION_T132251570_H
  1704. #define ARGUMENTEXCEPTION_T132251570_H
  1705. #ifdef __clang__
  1706. #pragma clang diagnostic push
  1707. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1708. #pragma clang diagnostic ignored "-Wunused-variable"
  1709. #endif
  1710. // System.ArgumentException
  1711. struct ArgumentException_t132251570 : public SystemException_t176217640
  1712. {
  1713. public:
  1714. // System.String System.ArgumentException::param_name
  1715. String_t* ___param_name_12;
  1716. public:
  1717. inline static int32_t get_offset_of_param_name_12() { return static_cast<int32_t>(offsetof(ArgumentException_t132251570, ___param_name_12)); }
  1718. inline String_t* get_param_name_12() const { return ___param_name_12; }
  1719. inline String_t** get_address_of_param_name_12() { return &___param_name_12; }
  1720. inline void set_param_name_12(String_t* value)
  1721. {
  1722. ___param_name_12 = value;
  1723. Il2CppCodeGenWriteBarrier((&___param_name_12), value);
  1724. }
  1725. };
  1726. #ifdef __clang__
  1727. #pragma clang diagnostic pop
  1728. #endif
  1729. #endif // ARGUMENTEXCEPTION_T132251570_H
  1730. #ifndef PARAMETERATTRIBUTES_T1826424051_H
  1731. #define PARAMETERATTRIBUTES_T1826424051_H
  1732. #ifdef __clang__
  1733. #pragma clang diagnostic push
  1734. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1735. #pragma clang diagnostic ignored "-Wunused-variable"
  1736. #endif
  1737. // System.Reflection.ParameterAttributes
  1738. struct ParameterAttributes_t1826424051
  1739. {
  1740. public:
  1741. // System.Int32 System.Reflection.ParameterAttributes::value__
  1742. int32_t ___value___1;
  1743. public:
  1744. inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ParameterAttributes_t1826424051, ___value___1)); }
  1745. inline int32_t get_value___1() const { return ___value___1; }
  1746. inline int32_t* get_address_of_value___1() { return &___value___1; }
  1747. inline void set_value___1(int32_t value)
  1748. {
  1749. ___value___1 = value;
  1750. }
  1751. };
  1752. #ifdef __clang__
  1753. #pragma clang diagnostic pop
  1754. #endif
  1755. #endif // PARAMETERATTRIBUTES_T1826424051_H
  1756. #ifndef TYPECODE_T2987224087_H
  1757. #define TYPECODE_T2987224087_H
  1758. #ifdef __clang__
  1759. #pragma clang diagnostic push
  1760. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1761. #pragma clang diagnostic ignored "-Wunused-variable"
  1762. #endif
  1763. // System.TypeCode
  1764. struct TypeCode_t2987224087
  1765. {
  1766. public:
  1767. // System.Int32 System.TypeCode::value__
  1768. int32_t ___value___1;
  1769. public:
  1770. inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(TypeCode_t2987224087, ___value___1)); }
  1771. inline int32_t get_value___1() const { return ___value___1; }
  1772. inline int32_t* get_address_of_value___1() { return &___value___1; }
  1773. inline void set_value___1(int32_t value)
  1774. {
  1775. ___value___1 = value;
  1776. }
  1777. };
  1778. #ifdef __clang__
  1779. #pragma clang diagnostic pop
  1780. #endif
  1781. #endif // TYPECODE_T2987224087_H
  1782. #ifndef RUNTIMETYPEHANDLE_T3027515415_H
  1783. #define RUNTIMETYPEHANDLE_T3027515415_H
  1784. #ifdef __clang__
  1785. #pragma clang diagnostic push
  1786. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1787. #pragma clang diagnostic ignored "-Wunused-variable"
  1788. #endif
  1789. // System.RuntimeTypeHandle
  1790. struct RuntimeTypeHandle_t3027515415
  1791. {
  1792. public:
  1793. // System.IntPtr System.RuntimeTypeHandle::value
  1794. intptr_t ___value_0;
  1795. public:
  1796. inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t3027515415, ___value_0)); }
  1797. inline intptr_t get_value_0() const { return ___value_0; }
  1798. inline intptr_t* get_address_of_value_0() { return &___value_0; }
  1799. inline void set_value_0(intptr_t value)
  1800. {
  1801. ___value_0 = value;
  1802. }
  1803. };
  1804. #ifdef __clang__
  1805. #pragma clang diagnostic pop
  1806. #endif
  1807. #endif // RUNTIMETYPEHANDLE_T3027515415_H
  1808. #ifndef BINDINGFLAGS_T2721792723_H
  1809. #define BINDINGFLAGS_T2721792723_H
  1810. #ifdef __clang__
  1811. #pragma clang diagnostic push
  1812. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1813. #pragma clang diagnostic ignored "-Wunused-variable"
  1814. #endif
  1815. // System.Reflection.BindingFlags
  1816. struct BindingFlags_t2721792723
  1817. {
  1818. public:
  1819. // System.Int32 System.Reflection.BindingFlags::value__
  1820. int32_t ___value___1;
  1821. public:
  1822. inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(BindingFlags_t2721792723, ___value___1)); }
  1823. inline int32_t get_value___1() const { return ___value___1; }
  1824. inline int32_t* get_address_of_value___1() { return &___value___1; }
  1825. inline void set_value___1(int32_t value)
  1826. {
  1827. ___value___1 = value;
  1828. }
  1829. };
  1830. #ifdef __clang__
  1831. #pragma clang diagnostic pop
  1832. #endif
  1833. #endif // BINDINGFLAGS_T2721792723_H
  1834. #ifndef DELEGATE_T1188392813_H
  1835. #define DELEGATE_T1188392813_H
  1836. #ifdef __clang__
  1837. #pragma clang diagnostic push
  1838. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1839. #pragma clang diagnostic ignored "-Wunused-variable"
  1840. #endif
  1841. // System.Delegate
  1842. struct Delegate_t1188392813 : public RuntimeObject
  1843. {
  1844. public:
  1845. // System.IntPtr System.Delegate::method_ptr
  1846. Il2CppMethodPointer ___method_ptr_0;
  1847. // System.IntPtr System.Delegate::invoke_impl
  1848. intptr_t ___invoke_impl_1;
  1849. // System.Object System.Delegate::m_target
  1850. RuntimeObject * ___m_target_2;
  1851. // System.IntPtr System.Delegate::method
  1852. intptr_t ___method_3;
  1853. // System.IntPtr System.Delegate::delegate_trampoline
  1854. intptr_t ___delegate_trampoline_4;
  1855. // System.IntPtr System.Delegate::method_code
  1856. intptr_t ___method_code_5;
  1857. // System.Reflection.MethodInfo System.Delegate::method_info
  1858. MethodInfo_t * ___method_info_6;
  1859. // System.Reflection.MethodInfo System.Delegate::original_method_info
  1860. MethodInfo_t * ___original_method_info_7;
  1861. // System.DelegateData System.Delegate::data
  1862. DelegateData_t1677132599 * ___data_8;
  1863. public:
  1864. inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_ptr_0)); }
  1865. inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
  1866. inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
  1867. inline void set_method_ptr_0(Il2CppMethodPointer value)
  1868. {
  1869. ___method_ptr_0 = value;
  1870. }
  1871. inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___invoke_impl_1)); }
  1872. inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
  1873. inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
  1874. inline void set_invoke_impl_1(intptr_t value)
  1875. {
  1876. ___invoke_impl_1 = value;
  1877. }
  1878. inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___m_target_2)); }
  1879. inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
  1880. inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
  1881. inline void set_m_target_2(RuntimeObject * value)
  1882. {
  1883. ___m_target_2 = value;
  1884. Il2CppCodeGenWriteBarrier((&___m_target_2), value);
  1885. }
  1886. inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_3)); }
  1887. inline intptr_t get_method_3() const { return ___method_3; }
  1888. inline intptr_t* get_address_of_method_3() { return &___method_3; }
  1889. inline void set_method_3(intptr_t value)
  1890. {
  1891. ___method_3 = value;
  1892. }
  1893. inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___delegate_trampoline_4)); }
  1894. inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
  1895. inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
  1896. inline void set_delegate_trampoline_4(intptr_t value)
  1897. {
  1898. ___delegate_trampoline_4 = value;
  1899. }
  1900. inline static int32_t get_offset_of_method_code_5() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_code_5)); }
  1901. inline intptr_t get_method_code_5() const { return ___method_code_5; }
  1902. inline intptr_t* get_address_of_method_code_5() { return &___method_code_5; }
  1903. inline void set_method_code_5(intptr_t value)
  1904. {
  1905. ___method_code_5 = value;
  1906. }
  1907. inline static int32_t get_offset_of_method_info_6() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_info_6)); }
  1908. inline MethodInfo_t * get_method_info_6() const { return ___method_info_6; }
  1909. inline MethodInfo_t ** get_address_of_method_info_6() { return &___method_info_6; }
  1910. inline void set_method_info_6(MethodInfo_t * value)
  1911. {
  1912. ___method_info_6 = value;
  1913. Il2CppCodeGenWriteBarrier((&___method_info_6), value);
  1914. }
  1915. inline static int32_t get_offset_of_original_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___original_method_info_7)); }
  1916. inline MethodInfo_t * get_original_method_info_7() const { return ___original_method_info_7; }
  1917. inline MethodInfo_t ** get_address_of_original_method_info_7() { return &___original_method_info_7; }
  1918. inline void set_original_method_info_7(MethodInfo_t * value)
  1919. {
  1920. ___original_method_info_7 = value;
  1921. Il2CppCodeGenWriteBarrier((&___original_method_info_7), value);
  1922. }
  1923. inline static int32_t get_offset_of_data_8() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___data_8)); }
  1924. inline DelegateData_t1677132599 * get_data_8() const { return ___data_8; }
  1925. inline DelegateData_t1677132599 ** get_address_of_data_8() { return &___data_8; }
  1926. inline void set_data_8(DelegateData_t1677132599 * value)
  1927. {
  1928. ___data_8 = value;
  1929. Il2CppCodeGenWriteBarrier((&___data_8), value);
  1930. }
  1931. };
  1932. #ifdef __clang__
  1933. #pragma clang diagnostic pop
  1934. #endif
  1935. #endif // DELEGATE_T1188392813_H
  1936. #ifndef METHODINFO_T_H
  1937. #define METHODINFO_T_H
  1938. #ifdef __clang__
  1939. #pragma clang diagnostic push
  1940. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1941. #pragma clang diagnostic ignored "-Wunused-variable"
  1942. #endif
  1943. // System.Reflection.MethodInfo
  1944. struct MethodInfo_t : public MethodBase_t
  1945. {
  1946. public:
  1947. public:
  1948. };
  1949. #ifdef __clang__
  1950. #pragma clang diagnostic pop
  1951. #endif
  1952. #endif // METHODINFO_T_H
  1953. #ifndef MULTICASTDELEGATE_T_H
  1954. #define MULTICASTDELEGATE_T_H
  1955. #ifdef __clang__
  1956. #pragma clang diagnostic push
  1957. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1958. #pragma clang diagnostic ignored "-Wunused-variable"
  1959. #endif
  1960. // System.MulticastDelegate
  1961. struct MulticastDelegate_t : public Delegate_t1188392813
  1962. {
  1963. public:
  1964. // System.MulticastDelegate System.MulticastDelegate::prev
  1965. MulticastDelegate_t * ___prev_9;
  1966. // System.MulticastDelegate System.MulticastDelegate::kpm_next
  1967. MulticastDelegate_t * ___kpm_next_10;
  1968. public:
  1969. inline static int32_t get_offset_of_prev_9() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___prev_9)); }
  1970. inline MulticastDelegate_t * get_prev_9() const { return ___prev_9; }
  1971. inline MulticastDelegate_t ** get_address_of_prev_9() { return &___prev_9; }
  1972. inline void set_prev_9(MulticastDelegate_t * value)
  1973. {
  1974. ___prev_9 = value;
  1975. Il2CppCodeGenWriteBarrier((&___prev_9), value);
  1976. }
  1977. inline static int32_t get_offset_of_kpm_next_10() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___kpm_next_10)); }
  1978. inline MulticastDelegate_t * get_kpm_next_10() const { return ___kpm_next_10; }
  1979. inline MulticastDelegate_t ** get_address_of_kpm_next_10() { return &___kpm_next_10; }
  1980. inline void set_kpm_next_10(MulticastDelegate_t * value)
  1981. {
  1982. ___kpm_next_10 = value;
  1983. Il2CppCodeGenWriteBarrier((&___kpm_next_10), value);
  1984. }
  1985. };
  1986. #ifdef __clang__
  1987. #pragma clang diagnostic pop
  1988. #endif
  1989. #endif // MULTICASTDELEGATE_T_H
  1990. #ifndef PARAMETERINFO_T1861056598_H
  1991. #define PARAMETERINFO_T1861056598_H
  1992. #ifdef __clang__
  1993. #pragma clang diagnostic push
  1994. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1995. #pragma clang diagnostic ignored "-Wunused-variable"
  1996. #endif
  1997. // System.Reflection.ParameterInfo
  1998. struct ParameterInfo_t1861056598 : public RuntimeObject
  1999. {
  2000. public:
  2001. // System.Type System.Reflection.ParameterInfo::ClassImpl
  2002. Type_t * ___ClassImpl_0;
  2003. // System.Object System.Reflection.ParameterInfo::DefaultValueImpl
  2004. RuntimeObject * ___DefaultValueImpl_1;
  2005. // System.Reflection.MemberInfo System.Reflection.ParameterInfo::MemberImpl
  2006. MemberInfo_t * ___MemberImpl_2;
  2007. // System.String System.Reflection.ParameterInfo::NameImpl
  2008. String_t* ___NameImpl_3;
  2009. // System.Int32 System.Reflection.ParameterInfo::PositionImpl
  2010. int32_t ___PositionImpl_4;
  2011. // System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl
  2012. int32_t ___AttrsImpl_5;
  2013. // System.Reflection.Emit.UnmanagedMarshal System.Reflection.ParameterInfo::marshalAs
  2014. UnmanagedMarshal_t984015687 * ___marshalAs_6;
  2015. public:
  2016. inline static int32_t get_offset_of_ClassImpl_0() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___ClassImpl_0)); }
  2017. inline Type_t * get_ClassImpl_0() const { return ___ClassImpl_0; }
  2018. inline Type_t ** get_address_of_ClassImpl_0() { return &___ClassImpl_0; }
  2019. inline void set_ClassImpl_0(Type_t * value)
  2020. {
  2021. ___ClassImpl_0 = value;
  2022. Il2CppCodeGenWriteBarrier((&___ClassImpl_0), value);
  2023. }
  2024. inline static int32_t get_offset_of_DefaultValueImpl_1() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___DefaultValueImpl_1)); }
  2025. inline RuntimeObject * get_DefaultValueImpl_1() const { return ___DefaultValueImpl_1; }
  2026. inline RuntimeObject ** get_address_of_DefaultValueImpl_1() { return &___DefaultValueImpl_1; }
  2027. inline void set_DefaultValueImpl_1(RuntimeObject * value)
  2028. {
  2029. ___DefaultValueImpl_1 = value;
  2030. Il2CppCodeGenWriteBarrier((&___DefaultValueImpl_1), value);
  2031. }
  2032. inline static int32_t get_offset_of_MemberImpl_2() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___MemberImpl_2)); }
  2033. inline MemberInfo_t * get_MemberImpl_2() const { return ___MemberImpl_2; }
  2034. inline MemberInfo_t ** get_address_of_MemberImpl_2() { return &___MemberImpl_2; }
  2035. inline void set_MemberImpl_2(MemberInfo_t * value)
  2036. {
  2037. ___MemberImpl_2 = value;
  2038. Il2CppCodeGenWriteBarrier((&___MemberImpl_2), value);
  2039. }
  2040. inline static int32_t get_offset_of_NameImpl_3() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___NameImpl_3)); }
  2041. inline String_t* get_NameImpl_3() const { return ___NameImpl_3; }
  2042. inline String_t** get_address_of_NameImpl_3() { return &___NameImpl_3; }
  2043. inline void set_NameImpl_3(String_t* value)
  2044. {
  2045. ___NameImpl_3 = value;
  2046. Il2CppCodeGenWriteBarrier((&___NameImpl_3), value);
  2047. }
  2048. inline static int32_t get_offset_of_PositionImpl_4() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___PositionImpl_4)); }
  2049. inline int32_t get_PositionImpl_4() const { return ___PositionImpl_4; }
  2050. inline int32_t* get_address_of_PositionImpl_4() { return &___PositionImpl_4; }
  2051. inline void set_PositionImpl_4(int32_t value)
  2052. {
  2053. ___PositionImpl_4 = value;
  2054. }
  2055. inline static int32_t get_offset_of_AttrsImpl_5() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___AttrsImpl_5)); }
  2056. inline int32_t get_AttrsImpl_5() const { return ___AttrsImpl_5; }
  2057. inline int32_t* get_address_of_AttrsImpl_5() { return &___AttrsImpl_5; }
  2058. inline void set_AttrsImpl_5(int32_t value)
  2059. {
  2060. ___AttrsImpl_5 = value;
  2061. }
  2062. inline static int32_t get_offset_of_marshalAs_6() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___marshalAs_6)); }
  2063. inline UnmanagedMarshal_t984015687 * get_marshalAs_6() const { return ___marshalAs_6; }
  2064. inline UnmanagedMarshal_t984015687 ** get_address_of_marshalAs_6() { return &___marshalAs_6; }
  2065. inline void set_marshalAs_6(UnmanagedMarshal_t984015687 * value)
  2066. {
  2067. ___marshalAs_6 = value;
  2068. Il2CppCodeGenWriteBarrier((&___marshalAs_6), value);
  2069. }
  2070. };
  2071. #ifdef __clang__
  2072. #pragma clang diagnostic pop
  2073. #endif
  2074. #endif // PARAMETERINFO_T1861056598_H
  2075. #ifndef TYPE_T_H
  2076. #define TYPE_T_H
  2077. #ifdef __clang__
  2078. #pragma clang diagnostic push
  2079. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2080. #pragma clang diagnostic ignored "-Wunused-variable"
  2081. #endif
  2082. // System.Type
  2083. struct Type_t : public MemberInfo_t
  2084. {
  2085. public:
  2086. // System.RuntimeTypeHandle System.Type::_impl
  2087. RuntimeTypeHandle_t3027515415 ____impl_1;
  2088. public:
  2089. inline static int32_t get_offset_of__impl_1() { return static_cast<int32_t>(offsetof(Type_t, ____impl_1)); }
  2090. inline RuntimeTypeHandle_t3027515415 get__impl_1() const { return ____impl_1; }
  2091. inline RuntimeTypeHandle_t3027515415 * get_address_of__impl_1() { return &____impl_1; }
  2092. inline void set__impl_1(RuntimeTypeHandle_t3027515415 value)
  2093. {
  2094. ____impl_1 = value;
  2095. }
  2096. };
  2097. struct Type_t_StaticFields
  2098. {
  2099. public:
  2100. // System.Char System.Type::Delimiter
  2101. Il2CppChar ___Delimiter_2;
  2102. // System.Type[] System.Type::EmptyTypes
  2103. TypeU5BU5D_t3940880105* ___EmptyTypes_3;
  2104. // System.Reflection.MemberFilter System.Type::FilterAttribute
  2105. MemberFilter_t426314064 * ___FilterAttribute_4;
  2106. // System.Reflection.MemberFilter System.Type::FilterName
  2107. MemberFilter_t426314064 * ___FilterName_5;
  2108. // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
  2109. MemberFilter_t426314064 * ___FilterNameIgnoreCase_6;
  2110. // System.Object System.Type::Missing
  2111. RuntimeObject * ___Missing_7;
  2112. public:
  2113. inline static int32_t get_offset_of_Delimiter_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_2)); }
  2114. inline Il2CppChar get_Delimiter_2() const { return ___Delimiter_2; }
  2115. inline Il2CppChar* get_address_of_Delimiter_2() { return &___Delimiter_2; }
  2116. inline void set_Delimiter_2(Il2CppChar value)
  2117. {
  2118. ___Delimiter_2 = value;
  2119. }
  2120. inline static int32_t get_offset_of_EmptyTypes_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_3)); }
  2121. inline TypeU5BU5D_t3940880105* get_EmptyTypes_3() const { return ___EmptyTypes_3; }
  2122. inline TypeU5BU5D_t3940880105** get_address_of_EmptyTypes_3() { return &___EmptyTypes_3; }
  2123. inline void set_EmptyTypes_3(TypeU5BU5D_t3940880105* value)
  2124. {
  2125. ___EmptyTypes_3 = value;
  2126. Il2CppCodeGenWriteBarrier((&___EmptyTypes_3), value);
  2127. }
  2128. inline static int32_t get_offset_of_FilterAttribute_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_4)); }
  2129. inline MemberFilter_t426314064 * get_FilterAttribute_4() const { return ___FilterAttribute_4; }
  2130. inline MemberFilter_t426314064 ** get_address_of_FilterAttribute_4() { return &___FilterAttribute_4; }
  2131. inline void set_FilterAttribute_4(MemberFilter_t426314064 * value)
  2132. {
  2133. ___FilterAttribute_4 = value;
  2134. Il2CppCodeGenWriteBarrier((&___FilterAttribute_4), value);
  2135. }
  2136. inline static int32_t get_offset_of_FilterName_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_5)); }
  2137. inline MemberFilter_t426314064 * get_FilterName_5() const { return ___FilterName_5; }
  2138. inline MemberFilter_t426314064 ** get_address_of_FilterName_5() { return &___FilterName_5; }
  2139. inline void set_FilterName_5(MemberFilter_t426314064 * value)
  2140. {
  2141. ___FilterName_5 = value;
  2142. Il2CppCodeGenWriteBarrier((&___FilterName_5), value);
  2143. }
  2144. inline static int32_t get_offset_of_FilterNameIgnoreCase_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_6)); }
  2145. inline MemberFilter_t426314064 * get_FilterNameIgnoreCase_6() const { return ___FilterNameIgnoreCase_6; }
  2146. inline MemberFilter_t426314064 ** get_address_of_FilterNameIgnoreCase_6() { return &___FilterNameIgnoreCase_6; }
  2147. inline void set_FilterNameIgnoreCase_6(MemberFilter_t426314064 * value)
  2148. {
  2149. ___FilterNameIgnoreCase_6 = value;
  2150. Il2CppCodeGenWriteBarrier((&___FilterNameIgnoreCase_6), value);
  2151. }
  2152. inline static int32_t get_offset_of_Missing_7() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_7)); }
  2153. inline RuntimeObject * get_Missing_7() const { return ___Missing_7; }
  2154. inline RuntimeObject ** get_address_of_Missing_7() { return &___Missing_7; }
  2155. inline void set_Missing_7(RuntimeObject * value)
  2156. {
  2157. ___Missing_7 = value;
  2158. Il2CppCodeGenWriteBarrier((&___Missing_7), value);
  2159. }
  2160. };
  2161. #ifdef __clang__
  2162. #pragma clang diagnostic pop
  2163. #endif
  2164. #endif // TYPE_T_H
  2165. #ifndef DISPATCHERFACTORY_T1014155341_H
  2166. #define DISPATCHERFACTORY_T1014155341_H
  2167. #ifdef __clang__
  2168. #pragma clang diagnostic push
  2169. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2170. #pragma clang diagnostic ignored "-Wunused-variable"
  2171. #endif
  2172. // Boo.Lang.Runtime.DynamicDispatching.DispatcherCache/DispatcherFactory
  2173. struct DispatcherFactory_t1014155341 : public MulticastDelegate_t
  2174. {
  2175. public:
  2176. public:
  2177. };
  2178. #ifdef __clang__
  2179. #pragma clang diagnostic pop
  2180. #endif
  2181. #endif // DISPATCHERFACTORY_T1014155341_H
  2182. #ifndef ASYNCCALLBACK_T3962456242_H
  2183. #define ASYNCCALLBACK_T3962456242_H
  2184. #ifdef __clang__
  2185. #pragma clang diagnostic push
  2186. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2187. #pragma clang diagnostic ignored "-Wunused-variable"
  2188. #endif
  2189. // System.AsyncCallback
  2190. struct AsyncCallback_t3962456242 : public MulticastDelegate_t
  2191. {
  2192. public:
  2193. public:
  2194. };
  2195. #ifdef __clang__
  2196. #pragma clang diagnostic pop
  2197. #endif
  2198. #endif // ASYNCCALLBACK_T3962456242_H
  2199. #ifndef DISPATCHER_T684365006_H
  2200. #define DISPATCHER_T684365006_H
  2201. #ifdef __clang__
  2202. #pragma clang diagnostic push
  2203. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2204. #pragma clang diagnostic ignored "-Wunused-variable"
  2205. #endif
  2206. // Boo.Lang.Runtime.DynamicDispatching.Dispatcher
  2207. struct Dispatcher_t684365006 : public MulticastDelegate_t
  2208. {
  2209. public:
  2210. public:
  2211. };
  2212. #ifdef __clang__
  2213. #pragma clang diagnostic pop
  2214. #endif
  2215. #endif // DISPATCHER_T684365006_H
  2216. // System.Object[]
  2217. struct ObjectU5BU5D_t2843939325 : public RuntimeArray
  2218. {
  2219. public:
  2220. ALIGN_FIELD (8) RuntimeObject * m_Items[1];
  2221. public:
  2222. inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
  2223. {
  2224. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2225. return m_Items[index];
  2226. }
  2227. inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
  2228. {
  2229. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2230. return m_Items + index;
  2231. }
  2232. inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
  2233. {
  2234. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2235. m_Items[index] = value;
  2236. Il2CppCodeGenWriteBarrier(m_Items + index, value);
  2237. }
  2238. inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
  2239. {
  2240. return m_Items[index];
  2241. }
  2242. inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
  2243. {
  2244. return m_Items + index;
  2245. }
  2246. inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
  2247. {
  2248. m_Items[index] = value;
  2249. Il2CppCodeGenWriteBarrier(m_Items + index, value);
  2250. }
  2251. };
  2252. // System.Type[]
  2253. struct TypeU5BU5D_t3940880105 : public RuntimeArray
  2254. {
  2255. public:
  2256. ALIGN_FIELD (8) Type_t * m_Items[1];
  2257. public:
  2258. inline Type_t * GetAt(il2cpp_array_size_t index) const
  2259. {
  2260. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2261. return m_Items[index];
  2262. }
  2263. inline Type_t ** GetAddressAt(il2cpp_array_size_t index)
  2264. {
  2265. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2266. return m_Items + index;
  2267. }
  2268. inline void SetAt(il2cpp_array_size_t index, Type_t * value)
  2269. {
  2270. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2271. m_Items[index] = value;
  2272. Il2CppCodeGenWriteBarrier(m_Items + index, value);
  2273. }
  2274. inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const
  2275. {
  2276. return m_Items[index];
  2277. }
  2278. inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
  2279. {
  2280. return m_Items + index;
  2281. }
  2282. inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value)
  2283. {
  2284. m_Items[index] = value;
  2285. Il2CppCodeGenWriteBarrier(m_Items + index, value);
  2286. }
  2287. };
  2288. // System.Reflection.MethodInfo[]
  2289. struct MethodInfoU5BU5D_t2572182361 : public RuntimeArray
  2290. {
  2291. public:
  2292. ALIGN_FIELD (8) MethodInfo_t * m_Items[1];
  2293. public:
  2294. inline MethodInfo_t * GetAt(il2cpp_array_size_t index) const
  2295. {
  2296. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2297. return m_Items[index];
  2298. }
  2299. inline MethodInfo_t ** GetAddressAt(il2cpp_array_size_t index)
  2300. {
  2301. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2302. return m_Items + index;
  2303. }
  2304. inline void SetAt(il2cpp_array_size_t index, MethodInfo_t * value)
  2305. {
  2306. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2307. m_Items[index] = value;
  2308. Il2CppCodeGenWriteBarrier(m_Items + index, value);
  2309. }
  2310. inline MethodInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const
  2311. {
  2312. return m_Items[index];
  2313. }
  2314. inline MethodInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
  2315. {
  2316. return m_Items + index;
  2317. }
  2318. inline void SetAtUnchecked(il2cpp_array_size_t index, MethodInfo_t * value)
  2319. {
  2320. m_Items[index] = value;
  2321. Il2CppCodeGenWriteBarrier(m_Items + index, value);
  2322. }
  2323. };
  2324. // System.Reflection.ParameterInfo[]
  2325. struct ParameterInfoU5BU5D_t390618515 : public RuntimeArray
  2326. {
  2327. public:
  2328. ALIGN_FIELD (8) ParameterInfo_t1861056598 * m_Items[1];
  2329. public:
  2330. inline ParameterInfo_t1861056598 * GetAt(il2cpp_array_size_t index) const
  2331. {
  2332. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2333. return m_Items[index];
  2334. }
  2335. inline ParameterInfo_t1861056598 ** GetAddressAt(il2cpp_array_size_t index)
  2336. {
  2337. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2338. return m_Items + index;
  2339. }
  2340. inline void SetAt(il2cpp_array_size_t index, ParameterInfo_t1861056598 * value)
  2341. {
  2342. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2343. m_Items[index] = value;
  2344. Il2CppCodeGenWriteBarrier(m_Items + index, value);
  2345. }
  2346. inline ParameterInfo_t1861056598 * GetAtUnchecked(il2cpp_array_size_t index) const
  2347. {
  2348. return m_Items[index];
  2349. }
  2350. inline ParameterInfo_t1861056598 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
  2351. {
  2352. return m_Items + index;
  2353. }
  2354. inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterInfo_t1861056598 * value)
  2355. {
  2356. m_Items[index] = value;
  2357. Il2CppCodeGenWriteBarrier(m_Items + index, value);
  2358. }
  2359. };
  2360. // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<!0>)
  2361. extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m3072481003_gshared (Dictionary_2_t132545152 * __this, RuntimeObject* p0, const RuntimeMethod* method);
  2362. // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(!0,!1&)
  2363. extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m3280774074_gshared (Dictionary_2_t132545152 * __this, RuntimeObject * p0, RuntimeObject ** p1, const RuntimeMethod* method);
  2364. // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Add(!0,!1)
  2365. extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Add_m2387223709_gshared (Dictionary_2_t132545152 * __this, RuntimeObject * p0, RuntimeObject * p1, const RuntimeMethod* method);
  2366. // System.Void Boo.Lang.List`1<System.Object>::.ctor()
  2367. extern "C" IL2CPP_METHOD_ATTR void List_1__ctor_m2774066863_gshared (List_1_t942764925 * __this, const RuntimeMethod* method);
  2368. // System.Void System.Text.StringBuilder::.ctor()
  2369. extern "C" IL2CPP_METHOD_ATTR void StringBuilder__ctor_m3121283359 (StringBuilder_t * __this, const RuntimeMethod* method);
  2370. // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Object)
  2371. extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m1640838743 (StringBuilder_t * __this, RuntimeObject * p0, const RuntimeMethod* method);
  2372. // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
  2373. extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m1965104174 (StringBuilder_t * __this, String_t* p0, const RuntimeMethod* method);
  2374. // System.String System.Text.StringBuilder::ToString()
  2375. extern "C" IL2CPP_METHOD_ATTR String_t* StringBuilder_ToString_m3317489284 (StringBuilder_t * __this, const RuntimeMethod* method);
  2376. // System.Object Boo.Lang.Runtime.DynamicDispatching.Dispatcher::Invoke(System.Object,System.Object[])
  2377. extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Dispatcher_Invoke_m1639676350 (Dispatcher_t684365006 * __this, RuntimeObject * ___target0, ObjectU5BU5D_t2843939325* ___args1, const RuntimeMethod* method);
  2378. // System.Void System.Object::.ctor()
  2379. extern "C" IL2CPP_METHOD_ATTR void Object__ctor_m297566312 (RuntimeObject * __this, const RuntimeMethod* method);
  2380. // System.Void System.Collections.Generic.Dictionary`2<Boo.Lang.Runtime.DynamicDispatching.DispatcherKey,Boo.Lang.Runtime.DynamicDispatching.Dispatcher>::.ctor(System.Collections.Generic.IEqualityComparer`1<!0>)
  2381. #define Dictionary_2__ctor_m1815469916(__this, p0, method) (( void (*) (Dictionary_2_t866247282 *, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_m3072481003_gshared)(__this, p0, method)
  2382. // System.Boolean System.Collections.Generic.Dictionary`2<Boo.Lang.Runtime.DynamicDispatching.DispatcherKey,Boo.Lang.Runtime.DynamicDispatching.Dispatcher>::TryGetValue(!0,!1&)
  2383. #define Dictionary_2_TryGetValue_m1990775459(__this, p0, p1, method) (( bool (*) (Dictionary_2_t866247282 *, DispatcherKey_t2110064572 *, Dispatcher_t684365006 **, const RuntimeMethod*))Dictionary_2_TryGetValue_m3280774074_gshared)(__this, p0, p1, method)
  2384. // System.Void System.Threading.Monitor::Enter(System.Object)
  2385. extern "C" IL2CPP_METHOD_ATTR void Monitor_Enter_m2249409497 (RuntimeObject * __this /* static, unused */, RuntimeObject * p0, const RuntimeMethod* method);
  2386. // Boo.Lang.Runtime.DynamicDispatching.Dispatcher Boo.Lang.Runtime.DynamicDispatching.DispatcherCache/DispatcherFactory::Invoke()
  2387. extern "C" IL2CPP_METHOD_ATTR Dispatcher_t684365006 * DispatcherFactory_Invoke_m2833957726 (DispatcherFactory_t1014155341 * __this, const RuntimeMethod* method);
  2388. // System.Void System.Collections.Generic.Dictionary`2<Boo.Lang.Runtime.DynamicDispatching.DispatcherKey,Boo.Lang.Runtime.DynamicDispatching.Dispatcher>::Add(!0,!1)
  2389. #define Dictionary_2_Add_m163959252(__this, p0, p1, method) (( void (*) (Dictionary_2_t866247282 *, DispatcherKey_t2110064572 *, Dispatcher_t684365006 *, const RuntimeMethod*))Dictionary_2_Add_m2387223709_gshared)(__this, p0, p1, method)
  2390. // System.Void System.Threading.Monitor::Exit(System.Object)
  2391. extern "C" IL2CPP_METHOD_ATTR void Monitor_Exit_m3585316909 (RuntimeObject * __this /* static, unused */, RuntimeObject * p0, const RuntimeMethod* method);
  2392. // System.Void Boo.Lang.Runtime.DynamicDispatching.DispatcherKey/_EqualityComparer::.ctor()
  2393. extern "C" IL2CPP_METHOD_ATTR void _EqualityComparer__ctor_m1412158449 (_EqualityComparer_t965810167 * __this, const RuntimeMethod* method);
  2394. // System.Int32 System.String::GetHashCode()
  2395. extern "C" IL2CPP_METHOD_ATTR int32_t String_GetHashCode_m1906374149 (String_t* __this, const RuntimeMethod* method);
  2396. // System.Boolean System.String::op_Inequality(System.String,System.String)
  2397. extern "C" IL2CPP_METHOD_ATTR bool String_op_Inequality_m215368492 (RuntimeObject * __this /* static, unused */, String_t* p0, String_t* p1, const RuntimeMethod* method);
  2398. // System.Void Boo.Lang.List`1<System.Reflection.MemberInfo>::.ctor()
  2399. #define List_1__ctor_m1115569667(__this, method) (( void (*) (List_1_t1242660502 *, const RuntimeMethod*))List_1__ctor_m2774066863_gshared)(__this, method)
  2400. // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
  2401. extern "C" IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m1620074514 (RuntimeObject * __this /* static, unused */, RuntimeTypeHandle_t3027515415 p0, const RuntimeMethod* method);
  2402. // System.Void Boo.Lang.Runtime.DynamicDispatching.DispatcherCache::.ctor()
  2403. extern "C" IL2CPP_METHOD_ATTR void DispatcherCache__ctor_m2156165103 (DispatcherCache_t1010326087 * __this, const RuntimeMethod* method);
  2404. // System.Void Boo.Lang.Runtime.ExtensionRegistry::.ctor()
  2405. extern "C" IL2CPP_METHOD_ATTR void ExtensionRegistry__ctor_m323844458 (ExtensionRegistry_t2424660641 * __this, const RuntimeMethod* method);
  2406. // System.Type System.Object::GetType()
  2407. extern "C" IL2CPP_METHOD_ATTR Type_t * Object_GetType_m88164663 (RuntimeObject * __this, const RuntimeMethod* method);
  2408. // System.Void Boo.Lang.Runtime.DynamicDispatching.DispatcherKey::.ctor(System.Type,System.String,System.Type[])
  2409. extern "C" IL2CPP_METHOD_ATTR void DispatcherKey__ctor_m1810669420 (DispatcherKey_t2110064572 * __this, Type_t * ___type0, String_t* ___name1, TypeU5BU5D_t3940880105* ___arguments2, const RuntimeMethod* method);
  2410. // Boo.Lang.Runtime.DynamicDispatching.Dispatcher Boo.Lang.Runtime.DynamicDispatching.DispatcherCache::Get(Boo.Lang.Runtime.DynamicDispatching.DispatcherKey,Boo.Lang.Runtime.DynamicDispatching.DispatcherCache/DispatcherFactory)
  2411. extern "C" IL2CPP_METHOD_ATTR Dispatcher_t684365006 * DispatcherCache_Get_m3609792288 (DispatcherCache_t1010326087 * __this, DispatcherKey_t2110064572 * ___key0, DispatcherFactory_t1014155341 * ___factory1, const RuntimeMethod* method);
  2412. // System.Void Boo.Lang.Runtime.RuntimeServices/<Coerce>c__AnonStorey1D::.ctor()
  2413. extern "C" IL2CPP_METHOD_ATTR void U3CCoerceU3Ec__AnonStorey1D__ctor_m2227718426 (U3CCoerceU3Ec__AnonStorey1D_t572148199 * __this, const RuntimeMethod* method);
  2414. // System.Void Boo.Lang.Runtime.DynamicDispatching.DispatcherCache/DispatcherFactory::.ctor(System.Object,System.IntPtr)
  2415. extern "C" IL2CPP_METHOD_ATTR void DispatcherFactory__ctor_m3649217775 (DispatcherFactory_t1014155341 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
  2416. // Boo.Lang.Runtime.DynamicDispatching.Dispatcher Boo.Lang.Runtime.RuntimeServices::GetDispatcher(System.Object,System.String,System.Type[],Boo.Lang.Runtime.DynamicDispatching.DispatcherCache/DispatcherFactory)
  2417. extern "C" IL2CPP_METHOD_ATTR Dispatcher_t684365006 * RuntimeServices_GetDispatcher_m3922777458 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___target0, String_t* ___cacheKeyName1, TypeU5BU5D_t3940880105* ___cacheKeyTypes2, DispatcherFactory_t1014155341 * ___factory3, const RuntimeMethod* method);
  2418. // System.Void Boo.Lang.Runtime.DynamicDispatching.Dispatcher::.ctor(System.Object,System.IntPtr)
  2419. extern "C" IL2CPP_METHOD_ATTR void Dispatcher__ctor_m4145559729 (Dispatcher_t684365006 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
  2420. // System.Boolean Boo.Lang.Runtime.RuntimeServices::IsPromotableNumeric(System.Type)
  2421. extern "C" IL2CPP_METHOD_ATTR bool RuntimeServices_IsPromotableNumeric_m2095247129 (RuntimeObject * __this /* static, unused */, Type_t * ___fromType0, const RuntimeMethod* method);
  2422. // Boo.Lang.Runtime.DynamicDispatching.Dispatcher Boo.Lang.Runtime.RuntimeServices::EmitPromotionDispatcher(System.Type,System.Type)
  2423. extern "C" IL2CPP_METHOD_ATTR Dispatcher_t684365006 * RuntimeServices_EmitPromotionDispatcher_m734050861 (RuntimeObject * __this /* static, unused */, Type_t * ___fromType0, Type_t * ___toType1, const RuntimeMethod* method);
  2424. // System.Reflection.MethodInfo Boo.Lang.Runtime.RuntimeServices::FindImplicitConversionOperator(System.Type,System.Type)
  2425. extern "C" IL2CPP_METHOD_ATTR MethodInfo_t * RuntimeServices_FindImplicitConversionOperator_m2560683559 (RuntimeObject * __this /* static, unused */, Type_t * ___from0, Type_t * ___to1, const RuntimeMethod* method);
  2426. // Boo.Lang.Runtime.DynamicDispatching.Dispatcher Boo.Lang.Runtime.RuntimeServices::EmitImplicitConversionDispatcher(System.Reflection.MethodInfo)
  2427. extern "C" IL2CPP_METHOD_ATTR Dispatcher_t684365006 * RuntimeServices_EmitImplicitConversionDispatcher_m4072191859 (RuntimeObject * __this /* static, unused */, MethodInfo_t * ___method0, const RuntimeMethod* method);
  2428. // System.TypeCode System.Type::GetTypeCode(System.Type)
  2429. extern "C" IL2CPP_METHOD_ATTR int32_t Type_GetTypeCode_m480753082 (RuntimeObject * __this /* static, unused */, Type_t * p0, const RuntimeMethod* method);
  2430. // System.String System.String::Concat(System.Object[])
  2431. extern "C" IL2CPP_METHOD_ATTR String_t* String_Concat_m2971454694 (RuntimeObject * __this /* static, unused */, ObjectU5BU5D_t2843939325* p0, const RuntimeMethod* method);
  2432. // System.Reflection.MethodInfo System.Type::GetMethod(System.String)
  2433. extern "C" IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_m2019726356 (Type_t * __this, String_t* p0, const RuntimeMethod* method);
  2434. // System.Delegate System.Delegate::CreateDelegate(System.Type,System.Reflection.MethodInfo)
  2435. extern "C" IL2CPP_METHOD_ATTR Delegate_t1188392813 * Delegate_CreateDelegate_m2396489936 (RuntimeObject * __this /* static, unused */, Type_t * p0, MethodInfo_t * p1, const RuntimeMethod* method);
  2436. // System.Boolean Boo.Lang.Runtime.RuntimeServices::IsPromotableNumeric(System.TypeCode)
  2437. extern "C" IL2CPP_METHOD_ATTR bool RuntimeServices_IsPromotableNumeric_m3673263760 (RuntimeObject * __this /* static, unused */, int32_t ___code0, const RuntimeMethod* method);
  2438. // System.Void Boo.Lang.Runtime.RuntimeServices/<EmitImplicitConversionDispatcher>c__AnonStorey1E::.ctor()
  2439. extern "C" IL2CPP_METHOD_ATTR void U3CEmitImplicitConversionDispatcherU3Ec__AnonStorey1E__ctor_m1951951183 (U3CEmitImplicitConversionDispatcherU3Ec__AnonStorey1E_t4009522197 * __this, const RuntimeMethod* method);
  2440. // System.Boolean Boo.Lang.Runtime.RuntimeServices::IsNumeric(System.TypeCode)
  2441. extern "C" IL2CPP_METHOD_ATTR bool RuntimeServices_IsNumeric_m2879598828 (RuntimeObject * __this /* static, unused */, int32_t ___code0, const RuntimeMethod* method);
  2442. // System.Boolean Boo.Lang.Runtime.RuntimeServices::EqualityOperator(System.Object,System.TypeCode,System.Object,System.TypeCode)
  2443. extern "C" IL2CPP_METHOD_ATTR bool RuntimeServices_EqualityOperator_m2541246096 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___lhs0, int32_t ___lhsTypeCode1, RuntimeObject * ___rhs2, int32_t ___rhsTypeCode3, const RuntimeMethod* method);
  2444. // System.Boolean Boo.Lang.Runtime.RuntimeServices::ArrayEqualityImpl(System.Array,System.Array)
  2445. extern "C" IL2CPP_METHOD_ATTR bool RuntimeServices_ArrayEqualityImpl_m3673667702 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___lhs0, RuntimeArray * ___rhs1, const RuntimeMethod* method);
  2446. // System.Int32 System.Array::get_Rank()
  2447. extern "C" IL2CPP_METHOD_ATTR int32_t Array_get_Rank_m3448755881 (RuntimeArray * __this, const RuntimeMethod* method);
  2448. // System.Void System.ArgumentException::.ctor(System.String)
  2449. extern "C" IL2CPP_METHOD_ATTR void ArgumentException__ctor_m1312628991 (ArgumentException_t132251570 * __this, String_t* p0, const RuntimeMethod* method);
  2450. // System.Int32 System.Array::get_Length()
  2451. extern "C" IL2CPP_METHOD_ATTR int32_t Array_get_Length_m21610649 (RuntimeArray * __this, const RuntimeMethod* method);
  2452. // System.Object System.Array::GetValue(System.Int32)
  2453. extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_m2528546681 (RuntimeArray * __this, int32_t p0, const RuntimeMethod* method);
  2454. // System.Boolean Boo.Lang.Runtime.RuntimeServices::EqualityOperator(System.Object,System.Object)
  2455. extern "C" IL2CPP_METHOD_ATTR bool RuntimeServices_EqualityOperator_m2384872086 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___lhs0, RuntimeObject * ___rhs1, const RuntimeMethod* method);
  2456. // System.TypeCode Boo.Lang.Runtime.RuntimeServices::GetConvertTypeCode(System.TypeCode,System.TypeCode)
  2457. extern "C" IL2CPP_METHOD_ATTR int32_t RuntimeServices_GetConvertTypeCode_m597524256 (RuntimeObject * __this /* static, unused */, int32_t ___lhsTypeCode0, int32_t ___rhsTypeCode1, const RuntimeMethod* method);
  2458. // System.Boolean System.Decimal::op_Equality(System.Decimal,System.Decimal)
  2459. extern "C" IL2CPP_METHOD_ATTR bool Decimal_op_Equality_m77262825 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 p0, Decimal_t2948259380 p1, const RuntimeMethod* method);
  2460. // System.Reflection.MethodInfo Boo.Lang.Runtime.RuntimeServices::FindImplicitConversionMethod(System.Collections.Generic.IEnumerable`1<System.Reflection.MethodInfo>,System.Type,System.Type)
  2461. extern "C" IL2CPP_METHOD_ATTR MethodInfo_t * RuntimeServices_FindImplicitConversionMethod_m4176567206 (RuntimeObject * __this /* static, unused */, RuntimeObject* ___candidates0, Type_t * ___from1, Type_t * ___to2, const RuntimeMethod* method);
  2462. // System.Collections.Generic.IEnumerable`1<System.Reflection.MethodInfo> Boo.Lang.Runtime.RuntimeServices::GetExtensionMethods()
  2463. extern "C" IL2CPP_METHOD_ATTR RuntimeObject* RuntimeServices_GetExtensionMethods_m2018979233 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
  2464. // System.Void Boo.Lang.Runtime.RuntimeServices/<GetExtensionMethods>c__IteratorC::.ctor()
  2465. extern "C" IL2CPP_METHOD_ATTR void U3CGetExtensionMethodsU3Ec__IteratorC__ctor_m1217043206 (U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435 * __this, const RuntimeMethod* method);
  2466. // Boo.Lang.Runtime.DynamicDispatching.Dispatcher Boo.Lang.Runtime.RuntimeServices::CreateCoerceDispatcher(System.Object,System.Type)
  2467. extern "C" IL2CPP_METHOD_ATTR Dispatcher_t684365006 * RuntimeServices_CreateCoerceDispatcher_m661106792 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, Type_t * ___toType1, const RuntimeMethod* method);
  2468. // System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[])
  2469. extern "C" IL2CPP_METHOD_ATTR RuntimeObject * MethodBase_Invoke_m1776411915 (MethodBase_t * __this, RuntimeObject * p0, ObjectU5BU5D_t2843939325* p1, const RuntimeMethod* method);
  2470. // System.Collections.Generic.IEnumerator`1<System.Reflection.MethodInfo> Boo.Lang.Runtime.RuntimeServices/<GetExtensionMethods>c__IteratorC::System.Collections.Generic.IEnumerable<System.Reflection.MethodInfo>.GetEnumerator()
  2471. extern "C" IL2CPP_METHOD_ATTR RuntimeObject* U3CGetExtensionMethodsU3Ec__IteratorC_System_Collections_Generic_IEnumerableU3CSystem_Reflection_MethodInfoU3E_GetEnumerator_m1148048048 (U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435 * __this, const RuntimeMethod* method);
  2472. // System.Int32 System.Threading.Interlocked::CompareExchange(System.Int32&,System.Int32,System.Int32)
  2473. extern "C" IL2CPP_METHOD_ATTR int32_t Interlocked_CompareExchange_m3023855514 (RuntimeObject * __this /* static, unused */, int32_t* p0, int32_t p1, int32_t p2, const RuntimeMethod* method);
  2474. // System.Collections.Generic.IEnumerable`1<System.Reflection.MemberInfo> Boo.Lang.Runtime.ExtensionRegistry::get_Extensions()
  2475. extern "C" IL2CPP_METHOD_ATTR RuntimeObject* ExtensionRegistry_get_Extensions_m3605511872 (ExtensionRegistry_t2424660641 * __this, const RuntimeMethod* method);
  2476. // System.Void System.NotSupportedException::.ctor()
  2477. extern "C" IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m2730133172 (NotSupportedException_t1314879016 * __this, const RuntimeMethod* method);
  2478. #ifdef __clang__
  2479. #pragma clang diagnostic push
  2480. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2481. #pragma clang diagnostic ignored "-Wunused-variable"
  2482. #endif
  2483. #ifdef __clang__
  2484. #pragma clang diagnostic pop
  2485. #endif
  2486. #ifdef __clang__
  2487. #pragma clang diagnostic push
  2488. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2489. #pragma clang diagnostic ignored "-Wunused-variable"
  2490. #endif
  2491. // System.String Boo.Lang.Builtins::join(System.Collections.IEnumerable,System.String)
  2492. extern "C" IL2CPP_METHOD_ATTR String_t* Builtins_join_m864932387 (RuntimeObject * __this /* static, unused */, RuntimeObject* ___enumerable0, String_t* ___separator1, const RuntimeMethod* method)
  2493. {
  2494. static bool s_Il2CppMethodInitialized;
  2495. if (!s_Il2CppMethodInitialized)
  2496. {
  2497. il2cpp_codegen_initialize_method (Builtins_join_m864932387_MetadataUsageId);
  2498. s_Il2CppMethodInitialized = true;
  2499. }
  2500. StringBuilder_t * V_0 = NULL;
  2501. RuntimeObject* V_1 = NULL;
  2502. RuntimeObject* V_2 = NULL;
  2503. Exception_t * __last_unhandled_exception = 0;
  2504. NO_UNUSED_WARNING (__last_unhandled_exception);
  2505. Exception_t * __exception_local = 0;
  2506. NO_UNUSED_WARNING (__exception_local);
  2507. int32_t __leave_target = 0;
  2508. NO_UNUSED_WARNING (__leave_target);
  2509. {
  2510. StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
  2511. StringBuilder__ctor_m3121283359(L_0, /*hidden argument*/NULL);
  2512. V_0 = L_0;
  2513. RuntimeObject* L_1 = ___enumerable0;
  2514. NullCheck(L_1);
  2515. RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, L_1);
  2516. V_1 = L_2;
  2517. RuntimeObject* L_3 = V_1;
  2518. V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_3, IDisposable_t3640265483_il2cpp_TypeInfo_var));
  2519. }
  2520. IL_0014:
  2521. try
  2522. { // begin try (depth: 1)
  2523. {
  2524. RuntimeObject* L_4 = V_1;
  2525. NullCheck(L_4);
  2526. bool L_5 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_4);
  2527. if (!L_5)
  2528. {
  2529. goto IL_0051;
  2530. }
  2531. }
  2532. IL_001f:
  2533. {
  2534. StringBuilder_t * L_6 = V_0;
  2535. RuntimeObject* L_7 = V_1;
  2536. NullCheck(L_7);
  2537. RuntimeObject * L_8 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_7);
  2538. NullCheck(L_6);
  2539. StringBuilder_Append_m1640838743(L_6, L_8, /*hidden argument*/NULL);
  2540. goto IL_0046;
  2541. }
  2542. IL_0031:
  2543. {
  2544. StringBuilder_t * L_9 = V_0;
  2545. String_t* L_10 = ___separator1;
  2546. NullCheck(L_9);
  2547. StringBuilder_Append_m1965104174(L_9, L_10, /*hidden argument*/NULL);
  2548. StringBuilder_t * L_11 = V_0;
  2549. RuntimeObject* L_12 = V_1;
  2550. NullCheck(L_12);
  2551. RuntimeObject * L_13 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_12);
  2552. NullCheck(L_11);
  2553. StringBuilder_Append_m1640838743(L_11, L_13, /*hidden argument*/NULL);
  2554. }
  2555. IL_0046:
  2556. {
  2557. RuntimeObject* L_14 = V_1;
  2558. NullCheck(L_14);
  2559. bool L_15 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_14);
  2560. if (L_15)
  2561. {
  2562. goto IL_0031;
  2563. }
  2564. }
  2565. IL_0051:
  2566. {
  2567. IL2CPP_LEAVE(0x63, FINALLY_0056);
  2568. }
  2569. } // end try (depth: 1)
  2570. catch(Il2CppExceptionWrapper& e)
  2571. {
  2572. __last_unhandled_exception = (Exception_t *)e.ex;
  2573. goto FINALLY_0056;
  2574. }
  2575. FINALLY_0056:
  2576. { // begin finally (depth: 1)
  2577. {
  2578. RuntimeObject* L_16 = V_2;
  2579. if (!L_16)
  2580. {
  2581. goto IL_0062;
  2582. }
  2583. }
  2584. IL_005c:
  2585. {
  2586. RuntimeObject* L_17 = V_2;
  2587. NullCheck(L_17);
  2588. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_17);
  2589. }
  2590. IL_0062:
  2591. {
  2592. IL2CPP_END_FINALLY(86)
  2593. }
  2594. } // end finally (depth: 1)
  2595. IL2CPP_CLEANUP(86)
  2596. {
  2597. IL2CPP_JUMP_TBL(0x63, IL_0063)
  2598. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  2599. }
  2600. IL_0063:
  2601. {
  2602. StringBuilder_t * L_18 = V_0;
  2603. NullCheck(L_18);
  2604. String_t* L_19 = StringBuilder_ToString_m3317489284(L_18, /*hidden argument*/NULL);
  2605. return L_19;
  2606. }
  2607. }
  2608. #ifdef __clang__
  2609. #pragma clang diagnostic pop
  2610. #endif
  2611. #ifdef __clang__
  2612. #pragma clang diagnostic push
  2613. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2614. #pragma clang diagnostic ignored "-Wunused-variable"
  2615. #endif
  2616. // System.Void Boo.Lang.Runtime.DynamicDispatching.Dispatcher::.ctor(System.Object,System.IntPtr)
  2617. extern "C" IL2CPP_METHOD_ATTR void Dispatcher__ctor_m4145559729 (Dispatcher_t684365006 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
  2618. {
  2619. __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
  2620. __this->set_method_3(___method1);
  2621. __this->set_m_target_2(___object0);
  2622. }
  2623. // System.Object Boo.Lang.Runtime.DynamicDispatching.Dispatcher::Invoke(System.Object,System.Object[])
  2624. extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Dispatcher_Invoke_m1639676350 (Dispatcher_t684365006 * __this, RuntimeObject * ___target0, ObjectU5BU5D_t2843939325* ___args1, const RuntimeMethod* method)
  2625. {
  2626. RuntimeObject * result = NULL;
  2627. if(__this->get_prev_9() != NULL)
  2628. {
  2629. Dispatcher_Invoke_m1639676350((Dispatcher_t684365006 *)__this->get_prev_9(), ___target0, ___args1, method);
  2630. }
  2631. Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
  2632. RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
  2633. RuntimeObject* targetThis = __this->get_m_target_2();
  2634. il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
  2635. bool ___methodIsStatic = MethodIsStatic(targetMethod);
  2636. if (___methodIsStatic)
  2637. {
  2638. if (il2cpp_codegen_method_parameter_count(targetMethod) == 2)
  2639. {
  2640. // open
  2641. {
  2642. typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, RuntimeObject *, ObjectU5BU5D_t2843939325*, const RuntimeMethod*);
  2643. result = ((FunctionPointerType)targetMethodPointer)(NULL, ___target0, ___args1, targetMethod);
  2644. }
  2645. }
  2646. else
  2647. {
  2648. // closed
  2649. {
  2650. typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, void*, RuntimeObject *, ObjectU5BU5D_t2843939325*, const RuntimeMethod*);
  2651. result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, ___target0, ___args1, targetMethod);
  2652. }
  2653. }
  2654. }
  2655. else
  2656. {
  2657. if (il2cpp_codegen_method_parameter_count(targetMethod) == 2)
  2658. {
  2659. // closed
  2660. if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
  2661. {
  2662. if (il2cpp_codegen_method_is_generic_instance(targetMethod))
  2663. {
  2664. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  2665. result = GenericInterfaceFuncInvoker2< RuntimeObject *, RuntimeObject *, ObjectU5BU5D_t2843939325* >::Invoke(targetMethod, targetThis, ___target0, ___args1);
  2666. else
  2667. result = GenericVirtFuncInvoker2< RuntimeObject *, RuntimeObject *, ObjectU5BU5D_t2843939325* >::Invoke(targetMethod, targetThis, ___target0, ___args1);
  2668. }
  2669. else
  2670. {
  2671. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  2672. result = InterfaceFuncInvoker2< RuntimeObject *, RuntimeObject *, ObjectU5BU5D_t2843939325* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___target0, ___args1);
  2673. else
  2674. result = VirtFuncInvoker2< RuntimeObject *, RuntimeObject *, ObjectU5BU5D_t2843939325* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___target0, ___args1);
  2675. }
  2676. }
  2677. else
  2678. {
  2679. typedef RuntimeObject * (*FunctionPointerType) (void*, RuntimeObject *, ObjectU5BU5D_t2843939325*, const RuntimeMethod*);
  2680. result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___target0, ___args1, targetMethod);
  2681. }
  2682. }
  2683. else
  2684. {
  2685. // open
  2686. if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
  2687. {
  2688. if (il2cpp_codegen_method_is_generic_instance(targetMethod))
  2689. {
  2690. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  2691. result = GenericInterfaceFuncInvoker1< RuntimeObject *, ObjectU5BU5D_t2843939325* >::Invoke(targetMethod, ___target0, ___args1);
  2692. else
  2693. result = GenericVirtFuncInvoker1< RuntimeObject *, ObjectU5BU5D_t2843939325* >::Invoke(targetMethod, ___target0, ___args1);
  2694. }
  2695. else
  2696. {
  2697. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  2698. result = InterfaceFuncInvoker1< RuntimeObject *, ObjectU5BU5D_t2843939325* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___target0, ___args1);
  2699. else
  2700. result = VirtFuncInvoker1< RuntimeObject *, ObjectU5BU5D_t2843939325* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___target0, ___args1);
  2701. }
  2702. }
  2703. else
  2704. {
  2705. typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject *, ObjectU5BU5D_t2843939325*, const RuntimeMethod*);
  2706. result = ((FunctionPointerType)targetMethodPointer)(___target0, ___args1, targetMethod);
  2707. }
  2708. }
  2709. }
  2710. return result;
  2711. }
  2712. // System.IAsyncResult Boo.Lang.Runtime.DynamicDispatching.Dispatcher::BeginInvoke(System.Object,System.Object[],System.AsyncCallback,System.Object)
  2713. extern "C" IL2CPP_METHOD_ATTR RuntimeObject* Dispatcher_BeginInvoke_m1986273823 (Dispatcher_t684365006 * __this, RuntimeObject * ___target0, ObjectU5BU5D_t2843939325* ___args1, AsyncCallback_t3962456242 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
  2714. {
  2715. void *__d_args[3] = {0};
  2716. __d_args[0] = ___target0;
  2717. __d_args[1] = ___args1;
  2718. return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
  2719. }
  2720. // System.Object Boo.Lang.Runtime.DynamicDispatching.Dispatcher::EndInvoke(System.IAsyncResult)
  2721. extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Dispatcher_EndInvoke_m1934666275 (Dispatcher_t684365006 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
  2722. {
  2723. RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
  2724. return (RuntimeObject *)__result;
  2725. }
  2726. #ifdef __clang__
  2727. #pragma clang diagnostic pop
  2728. #endif
  2729. #ifdef __clang__
  2730. #pragma clang diagnostic push
  2731. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2732. #pragma clang diagnostic ignored "-Wunused-variable"
  2733. #endif
  2734. // System.Void Boo.Lang.Runtime.DynamicDispatching.DispatcherCache::.ctor()
  2735. extern "C" IL2CPP_METHOD_ATTR void DispatcherCache__ctor_m2156165103 (DispatcherCache_t1010326087 * __this, const RuntimeMethod* method)
  2736. {
  2737. {
  2738. Object__ctor_m297566312(__this, /*hidden argument*/NULL);
  2739. return;
  2740. }
  2741. }
  2742. // System.Void Boo.Lang.Runtime.DynamicDispatching.DispatcherCache::.cctor()
  2743. extern "C" IL2CPP_METHOD_ATTR void DispatcherCache__cctor_m62575632 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  2744. {
  2745. static bool s_Il2CppMethodInitialized;
  2746. if (!s_Il2CppMethodInitialized)
  2747. {
  2748. il2cpp_codegen_initialize_method (DispatcherCache__cctor_m62575632_MetadataUsageId);
  2749. s_Il2CppMethodInitialized = true;
  2750. }
  2751. {
  2752. IL2CPP_RUNTIME_CLASS_INIT(DispatcherKey_t2110064572_il2cpp_TypeInfo_var);
  2753. RuntimeObject* L_0 = ((DispatcherKey_t2110064572_StaticFields*)il2cpp_codegen_static_fields_for(DispatcherKey_t2110064572_il2cpp_TypeInfo_var))->get_EqualityComparer_0();
  2754. Dictionary_2_t866247282 * L_1 = (Dictionary_2_t866247282 *)il2cpp_codegen_object_new(Dictionary_2_t866247282_il2cpp_TypeInfo_var);
  2755. Dictionary_2__ctor_m1815469916(L_1, L_0, /*hidden argument*/Dictionary_2__ctor_m1815469916_RuntimeMethod_var);
  2756. ((DispatcherCache_t1010326087_StaticFields*)il2cpp_codegen_static_fields_for(DispatcherCache_t1010326087_il2cpp_TypeInfo_var))->set__cache_0(L_1);
  2757. return;
  2758. }
  2759. }
  2760. // Boo.Lang.Runtime.DynamicDispatching.Dispatcher Boo.Lang.Runtime.DynamicDispatching.DispatcherCache::Get(Boo.Lang.Runtime.DynamicDispatching.DispatcherKey,Boo.Lang.Runtime.DynamicDispatching.DispatcherCache/DispatcherFactory)
  2761. extern "C" IL2CPP_METHOD_ATTR Dispatcher_t684365006 * DispatcherCache_Get_m3609792288 (DispatcherCache_t1010326087 * __this, DispatcherKey_t2110064572 * ___key0, DispatcherFactory_t1014155341 * ___factory1, const RuntimeMethod* method)
  2762. {
  2763. static bool s_Il2CppMethodInitialized;
  2764. if (!s_Il2CppMethodInitialized)
  2765. {
  2766. il2cpp_codegen_initialize_method (DispatcherCache_Get_m3609792288_MetadataUsageId);
  2767. s_Il2CppMethodInitialized = true;
  2768. }
  2769. Dispatcher_t684365006 * V_0 = NULL;
  2770. Dictionary_2_t866247282 * V_1 = NULL;
  2771. Exception_t * __last_unhandled_exception = 0;
  2772. NO_UNUSED_WARNING (__last_unhandled_exception);
  2773. Exception_t * __exception_local = 0;
  2774. NO_UNUSED_WARNING (__exception_local);
  2775. int32_t __leave_target = 0;
  2776. NO_UNUSED_WARNING (__leave_target);
  2777. {
  2778. IL2CPP_RUNTIME_CLASS_INIT(DispatcherCache_t1010326087_il2cpp_TypeInfo_var);
  2779. Dictionary_2_t866247282 * L_0 = ((DispatcherCache_t1010326087_StaticFields*)il2cpp_codegen_static_fields_for(DispatcherCache_t1010326087_il2cpp_TypeInfo_var))->get__cache_0();
  2780. DispatcherKey_t2110064572 * L_1 = ___key0;
  2781. NullCheck(L_0);
  2782. bool L_2 = Dictionary_2_TryGetValue_m1990775459(L_0, L_1, (&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m1990775459_RuntimeMethod_var);
  2783. if (L_2)
  2784. {
  2785. goto IL_004f;
  2786. }
  2787. }
  2788. {
  2789. IL2CPP_RUNTIME_CLASS_INIT(DispatcherCache_t1010326087_il2cpp_TypeInfo_var);
  2790. Dictionary_2_t866247282 * L_3 = ((DispatcherCache_t1010326087_StaticFields*)il2cpp_codegen_static_fields_for(DispatcherCache_t1010326087_il2cpp_TypeInfo_var))->get__cache_0();
  2791. V_1 = L_3;
  2792. Dictionary_2_t866247282 * L_4 = V_1;
  2793. Monitor_Enter_m2249409497(NULL /*static, unused*/, L_4, /*hidden argument*/NULL);
  2794. }
  2795. IL_001e:
  2796. try
  2797. { // begin try (depth: 1)
  2798. {
  2799. IL2CPP_RUNTIME_CLASS_INIT(DispatcherCache_t1010326087_il2cpp_TypeInfo_var);
  2800. Dictionary_2_t866247282 * L_5 = ((DispatcherCache_t1010326087_StaticFields*)il2cpp_codegen_static_fields_for(DispatcherCache_t1010326087_il2cpp_TypeInfo_var))->get__cache_0();
  2801. DispatcherKey_t2110064572 * L_6 = ___key0;
  2802. NullCheck(L_5);
  2803. bool L_7 = Dictionary_2_TryGetValue_m1990775459(L_5, L_6, (&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m1990775459_RuntimeMethod_var);
  2804. if (L_7)
  2805. {
  2806. goto IL_0043;
  2807. }
  2808. }
  2809. IL_0030:
  2810. {
  2811. DispatcherFactory_t1014155341 * L_8 = ___factory1;
  2812. NullCheck(L_8);
  2813. Dispatcher_t684365006 * L_9 = DispatcherFactory_Invoke_m2833957726(L_8, /*hidden argument*/NULL);
  2814. V_0 = L_9;
  2815. IL2CPP_RUNTIME_CLASS_INIT(DispatcherCache_t1010326087_il2cpp_TypeInfo_var);
  2816. Dictionary_2_t866247282 * L_10 = ((DispatcherCache_t1010326087_StaticFields*)il2cpp_codegen_static_fields_for(DispatcherCache_t1010326087_il2cpp_TypeInfo_var))->get__cache_0();
  2817. DispatcherKey_t2110064572 * L_11 = ___key0;
  2818. Dispatcher_t684365006 * L_12 = V_0;
  2819. NullCheck(L_10);
  2820. Dictionary_2_Add_m163959252(L_10, L_11, L_12, /*hidden argument*/Dictionary_2_Add_m163959252_RuntimeMethod_var);
  2821. }
  2822. IL_0043:
  2823. {
  2824. IL2CPP_LEAVE(0x4F, FINALLY_0048);
  2825. }
  2826. } // end try (depth: 1)
  2827. catch(Il2CppExceptionWrapper& e)
  2828. {
  2829. __last_unhandled_exception = (Exception_t *)e.ex;
  2830. goto FINALLY_0048;
  2831. }
  2832. FINALLY_0048:
  2833. { // begin finally (depth: 1)
  2834. Dictionary_2_t866247282 * L_13 = V_1;
  2835. Monitor_Exit_m3585316909(NULL /*static, unused*/, L_13, /*hidden argument*/NULL);
  2836. IL2CPP_END_FINALLY(72)
  2837. } // end finally (depth: 1)
  2838. IL2CPP_CLEANUP(72)
  2839. {
  2840. IL2CPP_JUMP_TBL(0x4F, IL_004f)
  2841. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  2842. }
  2843. IL_004f:
  2844. {
  2845. Dispatcher_t684365006 * L_14 = V_0;
  2846. return L_14;
  2847. }
  2848. }
  2849. #ifdef __clang__
  2850. #pragma clang diagnostic pop
  2851. #endif
  2852. #ifdef __clang__
  2853. #pragma clang diagnostic push
  2854. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2855. #pragma clang diagnostic ignored "-Wunused-variable"
  2856. #endif
  2857. extern "C" Dispatcher_t684365006 * DelegatePInvokeWrapper_DispatcherFactory_t1014155341 (DispatcherFactory_t1014155341 * __this, const RuntimeMethod* method)
  2858. {
  2859. static bool s_Il2CppMethodInitialized;
  2860. if (!s_Il2CppMethodInitialized)
  2861. {
  2862. il2cpp_codegen_initialize_method (DelegatePInvokeWrapper_DispatcherFactory_t1014155341_MetadataUsageId);
  2863. s_Il2CppMethodInitialized = true;
  2864. }
  2865. typedef Il2CppMethodPointer (DEFAULT_CALL *PInvokeFunc)();
  2866. PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
  2867. // Native function invocation
  2868. Il2CppMethodPointer returnValue = il2cppPInvokeFunc();
  2869. // Marshaling of return value back from native representation
  2870. Dispatcher_t684365006 * _returnValue_unmarshaled = NULL;
  2871. _returnValue_unmarshaled = il2cpp_codegen_marshal_function_ptr_to_delegate<Dispatcher_t684365006>(returnValue, Dispatcher_t684365006_il2cpp_TypeInfo_var);
  2872. return _returnValue_unmarshaled;
  2873. }
  2874. // System.Void Boo.Lang.Runtime.DynamicDispatching.DispatcherCache/DispatcherFactory::.ctor(System.Object,System.IntPtr)
  2875. extern "C" IL2CPP_METHOD_ATTR void DispatcherFactory__ctor_m3649217775 (DispatcherFactory_t1014155341 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
  2876. {
  2877. __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1));
  2878. __this->set_method_3(___method1);
  2879. __this->set_m_target_2(___object0);
  2880. }
  2881. // Boo.Lang.Runtime.DynamicDispatching.Dispatcher Boo.Lang.Runtime.DynamicDispatching.DispatcherCache/DispatcherFactory::Invoke()
  2882. extern "C" IL2CPP_METHOD_ATTR Dispatcher_t684365006 * DispatcherFactory_Invoke_m2833957726 (DispatcherFactory_t1014155341 * __this, const RuntimeMethod* method)
  2883. {
  2884. Dispatcher_t684365006 * result = NULL;
  2885. if(__this->get_prev_9() != NULL)
  2886. {
  2887. DispatcherFactory_Invoke_m2833957726((DispatcherFactory_t1014155341 *)__this->get_prev_9(), method);
  2888. }
  2889. Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
  2890. RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
  2891. RuntimeObject* targetThis = __this->get_m_target_2();
  2892. il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
  2893. bool ___methodIsStatic = MethodIsStatic(targetMethod);
  2894. if (___methodIsStatic)
  2895. {
  2896. if (il2cpp_codegen_method_parameter_count(targetMethod) == 0)
  2897. {
  2898. // open
  2899. {
  2900. typedef Dispatcher_t684365006 * (*FunctionPointerType) (RuntimeObject *, const RuntimeMethod*);
  2901. result = ((FunctionPointerType)targetMethodPointer)(NULL, targetMethod);
  2902. }
  2903. }
  2904. else
  2905. {
  2906. // closed
  2907. {
  2908. typedef Dispatcher_t684365006 * (*FunctionPointerType) (RuntimeObject *, void*, const RuntimeMethod*);
  2909. result = ((FunctionPointerType)targetMethodPointer)(NULL, targetThis, targetMethod);
  2910. }
  2911. }
  2912. }
  2913. else
  2914. {
  2915. {
  2916. // closed
  2917. if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
  2918. {
  2919. if (il2cpp_codegen_method_is_generic_instance(targetMethod))
  2920. {
  2921. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  2922. result = GenericInterfaceFuncInvoker0< Dispatcher_t684365006 * >::Invoke(targetMethod, targetThis);
  2923. else
  2924. result = GenericVirtFuncInvoker0< Dispatcher_t684365006 * >::Invoke(targetMethod, targetThis);
  2925. }
  2926. else
  2927. {
  2928. if (il2cpp_codegen_method_is_interface_method(targetMethod))
  2929. result = InterfaceFuncInvoker0< Dispatcher_t684365006 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis);
  2930. else
  2931. result = VirtFuncInvoker0< Dispatcher_t684365006 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis);
  2932. }
  2933. }
  2934. else
  2935. {
  2936. typedef Dispatcher_t684365006 * (*FunctionPointerType) (void*, const RuntimeMethod*);
  2937. result = ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod);
  2938. }
  2939. }
  2940. }
  2941. return result;
  2942. }
  2943. // System.IAsyncResult Boo.Lang.Runtime.DynamicDispatching.DispatcherCache/DispatcherFactory::BeginInvoke(System.AsyncCallback,System.Object)
  2944. extern "C" IL2CPP_METHOD_ATTR RuntimeObject* DispatcherFactory_BeginInvoke_m1351536112 (DispatcherFactory_t1014155341 * __this, AsyncCallback_t3962456242 * ___callback0, RuntimeObject * ___object1, const RuntimeMethod* method)
  2945. {
  2946. void *__d_args[1] = {0};
  2947. return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback0, (RuntimeObject*)___object1);
  2948. }
  2949. // Boo.Lang.Runtime.DynamicDispatching.Dispatcher Boo.Lang.Runtime.DynamicDispatching.DispatcherCache/DispatcherFactory::EndInvoke(System.IAsyncResult)
  2950. extern "C" IL2CPP_METHOD_ATTR Dispatcher_t684365006 * DispatcherFactory_EndInvoke_m2974203098 (DispatcherFactory_t1014155341 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
  2951. {
  2952. RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
  2953. return (Dispatcher_t684365006 *)__result;
  2954. }
  2955. #ifdef __clang__
  2956. #pragma clang diagnostic pop
  2957. #endif
  2958. #ifdef __clang__
  2959. #pragma clang diagnostic push
  2960. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2961. #pragma clang diagnostic ignored "-Wunused-variable"
  2962. #endif
  2963. // System.Void Boo.Lang.Runtime.DynamicDispatching.DispatcherKey::.ctor(System.Type,System.String,System.Type[])
  2964. extern "C" IL2CPP_METHOD_ATTR void DispatcherKey__ctor_m1810669420 (DispatcherKey_t2110064572 * __this, Type_t * ___type0, String_t* ___name1, TypeU5BU5D_t3940880105* ___arguments2, const RuntimeMethod* method)
  2965. {
  2966. {
  2967. Object__ctor_m297566312(__this, /*hidden argument*/NULL);
  2968. Type_t * L_0 = ___type0;
  2969. __this->set__type_1(L_0);
  2970. String_t* L_1 = ___name1;
  2971. __this->set__name_2(L_1);
  2972. TypeU5BU5D_t3940880105* L_2 = ___arguments2;
  2973. __this->set__arguments_3(L_2);
  2974. return;
  2975. }
  2976. }
  2977. // System.Void Boo.Lang.Runtime.DynamicDispatching.DispatcherKey::.cctor()
  2978. extern "C" IL2CPP_METHOD_ATTR void DispatcherKey__cctor_m1082726794 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  2979. {
  2980. static bool s_Il2CppMethodInitialized;
  2981. if (!s_Il2CppMethodInitialized)
  2982. {
  2983. il2cpp_codegen_initialize_method (DispatcherKey__cctor_m1082726794_MetadataUsageId);
  2984. s_Il2CppMethodInitialized = true;
  2985. }
  2986. {
  2987. _EqualityComparer_t965810167 * L_0 = (_EqualityComparer_t965810167 *)il2cpp_codegen_object_new(_EqualityComparer_t965810167_il2cpp_TypeInfo_var);
  2988. _EqualityComparer__ctor_m1412158449(L_0, /*hidden argument*/NULL);
  2989. ((DispatcherKey_t2110064572_StaticFields*)il2cpp_codegen_static_fields_for(DispatcherKey_t2110064572_il2cpp_TypeInfo_var))->set_EqualityComparer_0(L_0);
  2990. return;
  2991. }
  2992. }
  2993. #ifdef __clang__
  2994. #pragma clang diagnostic pop
  2995. #endif
  2996. #ifdef __clang__
  2997. #pragma clang diagnostic push
  2998. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2999. #pragma clang diagnostic ignored "-Wunused-variable"
  3000. #endif
  3001. // System.Void Boo.Lang.Runtime.DynamicDispatching.DispatcherKey/_EqualityComparer::.ctor()
  3002. extern "C" IL2CPP_METHOD_ATTR void _EqualityComparer__ctor_m1412158449 (_EqualityComparer_t965810167 * __this, const RuntimeMethod* method)
  3003. {
  3004. {
  3005. Object__ctor_m297566312(__this, /*hidden argument*/NULL);
  3006. return;
  3007. }
  3008. }
  3009. // System.Int32 Boo.Lang.Runtime.DynamicDispatching.DispatcherKey/_EqualityComparer::GetHashCode(Boo.Lang.Runtime.DynamicDispatching.DispatcherKey)
  3010. extern "C" IL2CPP_METHOD_ATTR int32_t _EqualityComparer_GetHashCode_m3745681409 (_EqualityComparer_t965810167 * __this, DispatcherKey_t2110064572 * ___key0, const RuntimeMethod* method)
  3011. {
  3012. {
  3013. DispatcherKey_t2110064572 * L_0 = ___key0;
  3014. NullCheck(L_0);
  3015. Type_t * L_1 = L_0->get__type_1();
  3016. NullCheck(L_1);
  3017. int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Type::GetHashCode() */, L_1);
  3018. DispatcherKey_t2110064572 * L_3 = ___key0;
  3019. NullCheck(L_3);
  3020. String_t* L_4 = L_3->get__name_2();
  3021. NullCheck(L_4);
  3022. int32_t L_5 = String_GetHashCode_m1906374149(L_4, /*hidden argument*/NULL);
  3023. DispatcherKey_t2110064572 * L_6 = ___key0;
  3024. NullCheck(L_6);
  3025. TypeU5BU5D_t3940880105* L_7 = L_6->get__arguments_3();
  3026. NullCheck(L_7);
  3027. return ((int32_t)((int32_t)((int32_t)((int32_t)L_2^(int32_t)L_5))^(int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length))))));
  3028. }
  3029. }
  3030. // System.Boolean Boo.Lang.Runtime.DynamicDispatching.DispatcherKey/_EqualityComparer::Equals(Boo.Lang.Runtime.DynamicDispatching.DispatcherKey,Boo.Lang.Runtime.DynamicDispatching.DispatcherKey)
  3031. extern "C" IL2CPP_METHOD_ATTR bool _EqualityComparer_Equals_m2225820911 (_EqualityComparer_t965810167 * __this, DispatcherKey_t2110064572 * ___x0, DispatcherKey_t2110064572 * ___y1, const RuntimeMethod* method)
  3032. {
  3033. static bool s_Il2CppMethodInitialized;
  3034. if (!s_Il2CppMethodInitialized)
  3035. {
  3036. il2cpp_codegen_initialize_method (_EqualityComparer_Equals_m2225820911_MetadataUsageId);
  3037. s_Il2CppMethodInitialized = true;
  3038. }
  3039. int32_t V_0 = 0;
  3040. {
  3041. DispatcherKey_t2110064572 * L_0 = ___x0;
  3042. NullCheck(L_0);
  3043. Type_t * L_1 = L_0->get__type_1();
  3044. DispatcherKey_t2110064572 * L_2 = ___y1;
  3045. NullCheck(L_2);
  3046. Type_t * L_3 = L_2->get__type_1();
  3047. if ((((RuntimeObject*)(Type_t *)L_1) == ((RuntimeObject*)(Type_t *)L_3)))
  3048. {
  3049. goto IL_0013;
  3050. }
  3051. }
  3052. {
  3053. return (bool)0;
  3054. }
  3055. IL_0013:
  3056. {
  3057. DispatcherKey_t2110064572 * L_4 = ___x0;
  3058. NullCheck(L_4);
  3059. TypeU5BU5D_t3940880105* L_5 = L_4->get__arguments_3();
  3060. NullCheck(L_5);
  3061. DispatcherKey_t2110064572 * L_6 = ___y1;
  3062. NullCheck(L_6);
  3063. TypeU5BU5D_t3940880105* L_7 = L_6->get__arguments_3();
  3064. NullCheck(L_7);
  3065. if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length)))))))
  3066. {
  3067. goto IL_002a;
  3068. }
  3069. }
  3070. {
  3071. return (bool)0;
  3072. }
  3073. IL_002a:
  3074. {
  3075. DispatcherKey_t2110064572 * L_8 = ___x0;
  3076. NullCheck(L_8);
  3077. String_t* L_9 = L_8->get__name_2();
  3078. DispatcherKey_t2110064572 * L_10 = ___y1;
  3079. NullCheck(L_10);
  3080. String_t* L_11 = L_10->get__name_2();
  3081. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  3082. bool L_12 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_9, L_11, /*hidden argument*/NULL);
  3083. if (!L_12)
  3084. {
  3085. goto IL_0042;
  3086. }
  3087. }
  3088. {
  3089. return (bool)0;
  3090. }
  3091. IL_0042:
  3092. {
  3093. V_0 = 0;
  3094. goto IL_0064;
  3095. }
  3096. IL_0049:
  3097. {
  3098. DispatcherKey_t2110064572 * L_13 = ___x0;
  3099. NullCheck(L_13);
  3100. TypeU5BU5D_t3940880105* L_14 = L_13->get__arguments_3();
  3101. int32_t L_15 = V_0;
  3102. NullCheck(L_14);
  3103. int32_t L_16 = L_15;
  3104. Type_t * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
  3105. DispatcherKey_t2110064572 * L_18 = ___y1;
  3106. NullCheck(L_18);
  3107. TypeU5BU5D_t3940880105* L_19 = L_18->get__arguments_3();
  3108. int32_t L_20 = V_0;
  3109. NullCheck(L_19);
  3110. int32_t L_21 = L_20;
  3111. Type_t * L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
  3112. if ((((RuntimeObject*)(Type_t *)L_17) == ((RuntimeObject*)(Type_t *)L_22)))
  3113. {
  3114. goto IL_0060;
  3115. }
  3116. }
  3117. {
  3118. return (bool)0;
  3119. }
  3120. IL_0060:
  3121. {
  3122. int32_t L_23 = V_0;
  3123. V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
  3124. }
  3125. IL_0064:
  3126. {
  3127. int32_t L_24 = V_0;
  3128. DispatcherKey_t2110064572 * L_25 = ___x0;
  3129. NullCheck(L_25);
  3130. TypeU5BU5D_t3940880105* L_26 = L_25->get__arguments_3();
  3131. NullCheck(L_26);
  3132. if ((((int32_t)L_24) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_26)->max_length)))))))
  3133. {
  3134. goto IL_0049;
  3135. }
  3136. }
  3137. {
  3138. return (bool)1;
  3139. }
  3140. }
  3141. #ifdef __clang__
  3142. #pragma clang diagnostic pop
  3143. #endif
  3144. #ifdef __clang__
  3145. #pragma clang diagnostic push
  3146. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3147. #pragma clang diagnostic ignored "-Wunused-variable"
  3148. #endif
  3149. #ifdef __clang__
  3150. #pragma clang diagnostic pop
  3151. #endif
  3152. #ifdef __clang__
  3153. #pragma clang diagnostic push
  3154. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3155. #pragma clang diagnostic ignored "-Wunused-variable"
  3156. #endif
  3157. // System.Void Boo.Lang.Runtime.ExtensionRegistry::.ctor()
  3158. extern "C" IL2CPP_METHOD_ATTR void ExtensionRegistry__ctor_m323844458 (ExtensionRegistry_t2424660641 * __this, const RuntimeMethod* method)
  3159. {
  3160. static bool s_Il2CppMethodInitialized;
  3161. if (!s_Il2CppMethodInitialized)
  3162. {
  3163. il2cpp_codegen_initialize_method (ExtensionRegistry__ctor_m323844458_MetadataUsageId);
  3164. s_Il2CppMethodInitialized = true;
  3165. }
  3166. {
  3167. List_1_t1242660502 * L_0 = (List_1_t1242660502 *)il2cpp_codegen_object_new(List_1_t1242660502_il2cpp_TypeInfo_var);
  3168. List_1__ctor_m1115569667(L_0, /*hidden argument*/List_1__ctor_m1115569667_RuntimeMethod_var);
  3169. __this->set__extensions_0(L_0);
  3170. RuntimeObject * L_1 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
  3171. Object__ctor_m297566312(L_1, /*hidden argument*/NULL);
  3172. __this->set__classLock_1(L_1);
  3173. Object__ctor_m297566312(__this, /*hidden argument*/NULL);
  3174. return;
  3175. }
  3176. }
  3177. // System.Collections.Generic.IEnumerable`1<System.Reflection.MemberInfo> Boo.Lang.Runtime.ExtensionRegistry::get_Extensions()
  3178. extern "C" IL2CPP_METHOD_ATTR RuntimeObject* ExtensionRegistry_get_Extensions_m3605511872 (ExtensionRegistry_t2424660641 * __this, const RuntimeMethod* method)
  3179. {
  3180. {
  3181. List_1_t1242660502 * L_0 = __this->get__extensions_0();
  3182. return L_0;
  3183. }
  3184. }
  3185. #ifdef __clang__
  3186. #pragma clang diagnostic pop
  3187. #endif
  3188. #ifdef __clang__
  3189. #pragma clang diagnostic push
  3190. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3191. #pragma clang diagnostic ignored "-Wunused-variable"
  3192. #endif
  3193. // System.Void Boo.Lang.Runtime.RuntimeServices::.cctor()
  3194. extern "C" IL2CPP_METHOD_ATTR void RuntimeServices__cctor_m1381641241 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  3195. {
  3196. static bool s_Il2CppMethodInitialized;
  3197. if (!s_Il2CppMethodInitialized)
  3198. {
  3199. il2cpp_codegen_initialize_method (RuntimeServices__cctor_m1381641241_MetadataUsageId);
  3200. s_Il2CppMethodInitialized = true;
  3201. }
  3202. {
  3203. ((RuntimeServices_t2098243569_StaticFields*)il2cpp_codegen_static_fields_for(RuntimeServices_t2098243569_il2cpp_TypeInfo_var))->set_NoArguments_0(((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)0)));
  3204. RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (RuntimeServices_t2098243569_0_0_0_var) };
  3205. IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
  3206. Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  3207. ((RuntimeServices_t2098243569_StaticFields*)il2cpp_codegen_static_fields_for(RuntimeServices_t2098243569_il2cpp_TypeInfo_var))->set_RuntimeServicesType_1(L_1);
  3208. DispatcherCache_t1010326087 * L_2 = (DispatcherCache_t1010326087 *)il2cpp_codegen_object_new(DispatcherCache_t1010326087_il2cpp_TypeInfo_var);
  3209. DispatcherCache__ctor_m2156165103(L_2, /*hidden argument*/NULL);
  3210. ((RuntimeServices_t2098243569_StaticFields*)il2cpp_codegen_static_fields_for(RuntimeServices_t2098243569_il2cpp_TypeInfo_var))->set__cache_2(L_2);
  3211. ExtensionRegistry_t2424660641 * L_3 = (ExtensionRegistry_t2424660641 *)il2cpp_codegen_object_new(ExtensionRegistry_t2424660641_il2cpp_TypeInfo_var);
  3212. ExtensionRegistry__ctor_m323844458(L_3, /*hidden argument*/NULL);
  3213. ((RuntimeServices_t2098243569_StaticFields*)il2cpp_codegen_static_fields_for(RuntimeServices_t2098243569_il2cpp_TypeInfo_var))->set__extensions_3(L_3);
  3214. bool L_4 = ((bool)1);
  3215. RuntimeObject * L_5 = Box(Boolean_t97287965_il2cpp_TypeInfo_var, &L_4);
  3216. ((RuntimeServices_t2098243569_StaticFields*)il2cpp_codegen_static_fields_for(RuntimeServices_t2098243569_il2cpp_TypeInfo_var))->set_True_4(L_5);
  3217. return;
  3218. }
  3219. }
  3220. // Boo.Lang.Runtime.DynamicDispatching.Dispatcher Boo.Lang.Runtime.RuntimeServices::GetDispatcher(System.Object,System.String,System.Type[],Boo.Lang.Runtime.DynamicDispatching.DispatcherCache/DispatcherFactory)
  3221. extern "C" IL2CPP_METHOD_ATTR Dispatcher_t684365006 * RuntimeServices_GetDispatcher_m3922777458 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___target0, String_t* ___cacheKeyName1, TypeU5BU5D_t3940880105* ___cacheKeyTypes2, DispatcherFactory_t1014155341 * ___factory3, const RuntimeMethod* method)
  3222. {
  3223. static bool s_Il2CppMethodInitialized;
  3224. if (!s_Il2CppMethodInitialized)
  3225. {
  3226. il2cpp_codegen_initialize_method (RuntimeServices_GetDispatcher_m3922777458_MetadataUsageId);
  3227. s_Il2CppMethodInitialized = true;
  3228. }
  3229. Type_t * V_0 = NULL;
  3230. DispatcherKey_t2110064572 * V_1 = NULL;
  3231. Type_t * G_B2_0 = NULL;
  3232. Type_t * G_B1_0 = NULL;
  3233. {
  3234. RuntimeObject * L_0 = ___target0;
  3235. Type_t * L_1 = ((Type_t *)IsInstClass((RuntimeObject*)L_0, Type_t_il2cpp_TypeInfo_var));
  3236. G_B1_0 = L_1;
  3237. if (L_1)
  3238. {
  3239. G_B2_0 = L_1;
  3240. goto IL_0013;
  3241. }
  3242. }
  3243. {
  3244. RuntimeObject * L_2 = ___target0;
  3245. NullCheck(L_2);
  3246. Type_t * L_3 = Object_GetType_m88164663(L_2, /*hidden argument*/NULL);
  3247. G_B2_0 = L_3;
  3248. }
  3249. IL_0013:
  3250. {
  3251. V_0 = G_B2_0;
  3252. Type_t * L_4 = V_0;
  3253. String_t* L_5 = ___cacheKeyName1;
  3254. TypeU5BU5D_t3940880105* L_6 = ___cacheKeyTypes2;
  3255. DispatcherKey_t2110064572 * L_7 = (DispatcherKey_t2110064572 *)il2cpp_codegen_object_new(DispatcherKey_t2110064572_il2cpp_TypeInfo_var);
  3256. DispatcherKey__ctor_m1810669420(L_7, L_4, L_5, L_6, /*hidden argument*/NULL);
  3257. V_1 = L_7;
  3258. IL2CPP_RUNTIME_CLASS_INIT(RuntimeServices_t2098243569_il2cpp_TypeInfo_var);
  3259. DispatcherCache_t1010326087 * L_8 = ((RuntimeServices_t2098243569_StaticFields*)il2cpp_codegen_static_fields_for(RuntimeServices_t2098243569_il2cpp_TypeInfo_var))->get__cache_2();
  3260. DispatcherKey_t2110064572 * L_9 = V_1;
  3261. DispatcherFactory_t1014155341 * L_10 = ___factory3;
  3262. NullCheck(L_8);
  3263. Dispatcher_t684365006 * L_11 = DispatcherCache_Get_m3609792288(L_8, L_9, L_10, /*hidden argument*/NULL);
  3264. return L_11;
  3265. }
  3266. }
  3267. // System.Object Boo.Lang.Runtime.RuntimeServices::Coerce(System.Object,System.Type)
  3268. extern "C" IL2CPP_METHOD_ATTR RuntimeObject * RuntimeServices_Coerce_m1663619687 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, Type_t * ___toType1, const RuntimeMethod* method)
  3269. {
  3270. static bool s_Il2CppMethodInitialized;
  3271. if (!s_Il2CppMethodInitialized)
  3272. {
  3273. il2cpp_codegen_initialize_method (RuntimeServices_Coerce_m1663619687_MetadataUsageId);
  3274. s_Il2CppMethodInitialized = true;
  3275. }
  3276. ObjectU5BU5D_t2843939325* V_0 = NULL;
  3277. Dispatcher_t684365006 * V_1 = NULL;
  3278. U3CCoerceU3Ec__AnonStorey1D_t572148199 * V_2 = NULL;
  3279. {
  3280. U3CCoerceU3Ec__AnonStorey1D_t572148199 * L_0 = (U3CCoerceU3Ec__AnonStorey1D_t572148199 *)il2cpp_codegen_object_new(U3CCoerceU3Ec__AnonStorey1D_t572148199_il2cpp_TypeInfo_var);
  3281. U3CCoerceU3Ec__AnonStorey1D__ctor_m2227718426(L_0, /*hidden argument*/NULL);
  3282. V_2 = L_0;
  3283. U3CCoerceU3Ec__AnonStorey1D_t572148199 * L_1 = V_2;
  3284. RuntimeObject * L_2 = ___value0;
  3285. NullCheck(L_1);
  3286. L_1->set_value_0(L_2);
  3287. U3CCoerceU3Ec__AnonStorey1D_t572148199 * L_3 = V_2;
  3288. Type_t * L_4 = ___toType1;
  3289. NullCheck(L_3);
  3290. L_3->set_toType_1(L_4);
  3291. U3CCoerceU3Ec__AnonStorey1D_t572148199 * L_5 = V_2;
  3292. NullCheck(L_5);
  3293. RuntimeObject * L_6 = L_5->get_value_0();
  3294. if (L_6)
  3295. {
  3296. goto IL_0021;
  3297. }
  3298. }
  3299. {
  3300. return NULL;
  3301. }
  3302. IL_0021:
  3303. {
  3304. ObjectU5BU5D_t2843939325* L_7 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)1));
  3305. U3CCoerceU3Ec__AnonStorey1D_t572148199 * L_8 = V_2;
  3306. NullCheck(L_8);
  3307. Type_t * L_9 = L_8->get_toType_1();
  3308. NullCheck(L_7);
  3309. ArrayElementTypeCheck (L_7, L_9);
  3310. (L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_9);
  3311. V_0 = L_7;
  3312. U3CCoerceU3Ec__AnonStorey1D_t572148199 * L_10 = V_2;
  3313. NullCheck(L_10);
  3314. RuntimeObject * L_11 = L_10->get_value_0();
  3315. TypeU5BU5D_t3940880105* L_12 = ((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1));
  3316. U3CCoerceU3Ec__AnonStorey1D_t572148199 * L_13 = V_2;
  3317. NullCheck(L_13);
  3318. Type_t * L_14 = L_13->get_toType_1();
  3319. NullCheck(L_12);
  3320. ArrayElementTypeCheck (L_12, L_14);
  3321. (L_12)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_14);
  3322. U3CCoerceU3Ec__AnonStorey1D_t572148199 * L_15 = V_2;
  3323. intptr_t L_16 = (intptr_t)U3CCoerceU3Ec__AnonStorey1D_U3CU3Em__15_m4262864175_RuntimeMethod_var;
  3324. DispatcherFactory_t1014155341 * L_17 = (DispatcherFactory_t1014155341 *)il2cpp_codegen_object_new(DispatcherFactory_t1014155341_il2cpp_TypeInfo_var);
  3325. DispatcherFactory__ctor_m3649217775(L_17, L_15, L_16, /*hidden argument*/NULL);
  3326. IL2CPP_RUNTIME_CLASS_INIT(RuntimeServices_t2098243569_il2cpp_TypeInfo_var);
  3327. Dispatcher_t684365006 * L_18 = RuntimeServices_GetDispatcher_m3922777458(NULL /*static, unused*/, L_11, _stringLiteral4123921170, L_12, L_17, /*hidden argument*/NULL);
  3328. V_1 = L_18;
  3329. Dispatcher_t684365006 * L_19 = V_1;
  3330. U3CCoerceU3Ec__AnonStorey1D_t572148199 * L_20 = V_2;
  3331. NullCheck(L_20);
  3332. RuntimeObject * L_21 = L_20->get_value_0();
  3333. ObjectU5BU5D_t2843939325* L_22 = V_0;
  3334. NullCheck(L_19);
  3335. RuntimeObject * L_23 = Dispatcher_Invoke_m1639676350(L_19, L_21, L_22, /*hidden argument*/NULL);
  3336. return L_23;
  3337. }
  3338. }
  3339. // Boo.Lang.Runtime.DynamicDispatching.Dispatcher Boo.Lang.Runtime.RuntimeServices::CreateCoerceDispatcher(System.Object,System.Type)
  3340. extern "C" IL2CPP_METHOD_ATTR Dispatcher_t684365006 * RuntimeServices_CreateCoerceDispatcher_m661106792 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___value0, Type_t * ___toType1, const RuntimeMethod* method)
  3341. {
  3342. static bool s_Il2CppMethodInitialized;
  3343. if (!s_Il2CppMethodInitialized)
  3344. {
  3345. il2cpp_codegen_initialize_method (RuntimeServices_CreateCoerceDispatcher_m661106792_MetadataUsageId);
  3346. s_Il2CppMethodInitialized = true;
  3347. }
  3348. Type_t * V_0 = NULL;
  3349. MethodInfo_t * V_1 = NULL;
  3350. {
  3351. Type_t * L_0 = ___toType1;
  3352. RuntimeObject * L_1 = ___value0;
  3353. NullCheck(L_0);
  3354. bool L_2 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(44 /* System.Boolean System.Type::IsInstanceOfType(System.Object) */, L_0, L_1);
  3355. if (!L_2)
  3356. {
  3357. goto IL_0019;
  3358. }
  3359. }
  3360. {
  3361. intptr_t L_3 = (intptr_t)RuntimeServices_IdentityDispatcher_m1725786149_RuntimeMethod_var;
  3362. Dispatcher_t684365006 * L_4 = (Dispatcher_t684365006 *)il2cpp_codegen_object_new(Dispatcher_t684365006_il2cpp_TypeInfo_var);
  3363. Dispatcher__ctor_m4145559729(L_4, NULL, L_3, /*hidden argument*/NULL);
  3364. return L_4;
  3365. }
  3366. IL_0019:
  3367. {
  3368. RuntimeObject * L_5 = ___value0;
  3369. if (!((RuntimeObject*)IsInst((RuntimeObject*)L_5, ICoercible_t1130343077_il2cpp_TypeInfo_var)))
  3370. {
  3371. goto IL_0031;
  3372. }
  3373. }
  3374. {
  3375. intptr_t L_6 = (intptr_t)RuntimeServices_CoercibleDispatcher_m4058208960_RuntimeMethod_var;
  3376. Dispatcher_t684365006 * L_7 = (Dispatcher_t684365006 *)il2cpp_codegen_object_new(Dispatcher_t684365006_il2cpp_TypeInfo_var);
  3377. Dispatcher__ctor_m4145559729(L_7, NULL, L_6, /*hidden argument*/NULL);
  3378. return L_7;
  3379. }
  3380. IL_0031:
  3381. {
  3382. RuntimeObject * L_8 = ___value0;
  3383. NullCheck(L_8);
  3384. Type_t * L_9 = Object_GetType_m88164663(L_8, /*hidden argument*/NULL);
  3385. V_0 = L_9;
  3386. Type_t * L_10 = V_0;
  3387. IL2CPP_RUNTIME_CLASS_INIT(RuntimeServices_t2098243569_il2cpp_TypeInfo_var);
  3388. bool L_11 = RuntimeServices_IsPromotableNumeric_m2095247129(NULL /*static, unused*/, L_10, /*hidden argument*/NULL);
  3389. if (!L_11)
  3390. {
  3391. goto IL_0056;
  3392. }
  3393. }
  3394. {
  3395. Type_t * L_12 = ___toType1;
  3396. IL2CPP_RUNTIME_CLASS_INIT(RuntimeServices_t2098243569_il2cpp_TypeInfo_var);
  3397. bool L_13 = RuntimeServices_IsPromotableNumeric_m2095247129(NULL /*static, unused*/, L_12, /*hidden argument*/NULL);
  3398. if (!L_13)
  3399. {
  3400. goto IL_0056;
  3401. }
  3402. }
  3403. {
  3404. Type_t * L_14 = V_0;
  3405. Type_t * L_15 = ___toType1;
  3406. IL2CPP_RUNTIME_CLASS_INIT(RuntimeServices_t2098243569_il2cpp_TypeInfo_var);
  3407. Dispatcher_t684365006 * L_16 = RuntimeServices_EmitPromotionDispatcher_m734050861(NULL /*static, unused*/, L_14, L_15, /*hidden argument*/NULL);
  3408. return L_16;
  3409. }
  3410. IL_0056:
  3411. {
  3412. Type_t * L_17 = V_0;
  3413. Type_t * L_18 = ___toType1;
  3414. IL2CPP_RUNTIME_CLASS_INIT(RuntimeServices_t2098243569_il2cpp_TypeInfo_var);
  3415. MethodInfo_t * L_19 = RuntimeServices_FindImplicitConversionOperator_m2560683559(NULL /*static, unused*/, L_17, L_18, /*hidden argument*/NULL);
  3416. V_1 = L_19;
  3417. MethodInfo_t * L_20 = V_1;
  3418. if (L_20)
  3419. {
  3420. goto IL_0071;
  3421. }
  3422. }
  3423. {
  3424. intptr_t L_21 = (intptr_t)RuntimeServices_IdentityDispatcher_m1725786149_RuntimeMethod_var;
  3425. Dispatcher_t684365006 * L_22 = (Dispatcher_t684365006 *)il2cpp_codegen_object_new(Dispatcher_t684365006_il2cpp_TypeInfo_var);
  3426. Dispatcher__ctor_m4145559729(L_22, NULL, L_21, /*hidden argument*/NULL);
  3427. return L_22;
  3428. }
  3429. IL_0071:
  3430. {
  3431. MethodInfo_t * L_23 = V_1;
  3432. IL2CPP_RUNTIME_CLASS_INIT(RuntimeServices_t2098243569_il2cpp_TypeInfo_var);
  3433. Dispatcher_t684365006 * L_24 = RuntimeServices_EmitImplicitConversionDispatcher_m4072191859(NULL /*static, unused*/, L_23, /*hidden argument*/NULL);
  3434. return L_24;
  3435. }
  3436. }
  3437. // Boo.Lang.Runtime.DynamicDispatching.Dispatcher Boo.Lang.Runtime.RuntimeServices::EmitPromotionDispatcher(System.Type,System.Type)
  3438. extern "C" IL2CPP_METHOD_ATTR Dispatcher_t684365006 * RuntimeServices_EmitPromotionDispatcher_m734050861 (RuntimeObject * __this /* static, unused */, Type_t * ___fromType0, Type_t * ___toType1, const RuntimeMethod* method)
  3439. {
  3440. static bool s_Il2CppMethodInitialized;
  3441. if (!s_Il2CppMethodInitialized)
  3442. {
  3443. il2cpp_codegen_initialize_method (RuntimeServices_EmitPromotionDispatcher_m734050861_MetadataUsageId);
  3444. s_Il2CppMethodInitialized = true;
  3445. }
  3446. {
  3447. RuntimeTypeHandle_t3027515415 L_0 = { reinterpret_cast<intptr_t> (Dispatcher_t684365006_0_0_0_var) };
  3448. IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
  3449. Type_t * L_1 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  3450. RuntimeTypeHandle_t3027515415 L_2 = { reinterpret_cast<intptr_t> (NumericPromotions_t3533651679_0_0_0_var) };
  3451. Type_t * L_3 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_2, /*hidden argument*/NULL);
  3452. ObjectU5BU5D_t2843939325* L_4 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)4));
  3453. NullCheck(L_4);
  3454. ArrayElementTypeCheck (L_4, _stringLiteral2755855817);
  3455. (L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral2755855817);
  3456. ObjectU5BU5D_t2843939325* L_5 = L_4;
  3457. Type_t * L_6 = ___fromType0;
  3458. int32_t L_7 = Type_GetTypeCode_m480753082(NULL /*static, unused*/, L_6, /*hidden argument*/NULL);
  3459. int32_t L_8 = L_7;
  3460. RuntimeObject * L_9 = Box(TypeCode_t2987224087_il2cpp_TypeInfo_var, &L_8);
  3461. NullCheck(L_5);
  3462. ArrayElementTypeCheck (L_5, L_9);
  3463. (L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_9);
  3464. ObjectU5BU5D_t2843939325* L_10 = L_5;
  3465. NullCheck(L_10);
  3466. ArrayElementTypeCheck (L_10, _stringLiteral3454777324);
  3467. (L_10)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteral3454777324);
  3468. ObjectU5BU5D_t2843939325* L_11 = L_10;
  3469. Type_t * L_12 = ___toType1;
  3470. int32_t L_13 = Type_GetTypeCode_m480753082(NULL /*static, unused*/, L_12, /*hidden argument*/NULL);
  3471. int32_t L_14 = L_13;
  3472. RuntimeObject * L_15 = Box(TypeCode_t2987224087_il2cpp_TypeInfo_var, &L_14);
  3473. NullCheck(L_11);
  3474. ArrayElementTypeCheck (L_11, L_15);
  3475. (L_11)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_15);
  3476. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  3477. String_t* L_16 = String_Concat_m2971454694(NULL /*static, unused*/, L_11, /*hidden argument*/NULL);
  3478. NullCheck(L_3);
  3479. MethodInfo_t * L_17 = Type_GetMethod_m2019726356(L_3, L_16, /*hidden argument*/NULL);
  3480. Delegate_t1188392813 * L_18 = Delegate_CreateDelegate_m2396489936(NULL /*static, unused*/, L_1, L_17, /*hidden argument*/NULL);
  3481. return ((Dispatcher_t684365006 *)CastclassSealed((RuntimeObject*)L_18, Dispatcher_t684365006_il2cpp_TypeInfo_var));
  3482. }
  3483. }
  3484. // System.Boolean Boo.Lang.Runtime.RuntimeServices::IsPromotableNumeric(System.Type)
  3485. extern "C" IL2CPP_METHOD_ATTR bool RuntimeServices_IsPromotableNumeric_m2095247129 (RuntimeObject * __this /* static, unused */, Type_t * ___fromType0, const RuntimeMethod* method)
  3486. {
  3487. static bool s_Il2CppMethodInitialized;
  3488. if (!s_Il2CppMethodInitialized)
  3489. {
  3490. il2cpp_codegen_initialize_method (RuntimeServices_IsPromotableNumeric_m2095247129_MetadataUsageId);
  3491. s_Il2CppMethodInitialized = true;
  3492. }
  3493. {
  3494. Type_t * L_0 = ___fromType0;
  3495. IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
  3496. int32_t L_1 = Type_GetTypeCode_m480753082(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  3497. IL2CPP_RUNTIME_CLASS_INIT(RuntimeServices_t2098243569_il2cpp_TypeInfo_var);
  3498. bool L_2 = RuntimeServices_IsPromotableNumeric_m3673263760(NULL /*static, unused*/, L_1, /*hidden argument*/NULL);
  3499. return L_2;
  3500. }
  3501. }
  3502. // Boo.Lang.Runtime.DynamicDispatching.Dispatcher Boo.Lang.Runtime.RuntimeServices::EmitImplicitConversionDispatcher(System.Reflection.MethodInfo)
  3503. extern "C" IL2CPP_METHOD_ATTR Dispatcher_t684365006 * RuntimeServices_EmitImplicitConversionDispatcher_m4072191859 (RuntimeObject * __this /* static, unused */, MethodInfo_t * ___method0, const RuntimeMethod* method)
  3504. {
  3505. static bool s_Il2CppMethodInitialized;
  3506. if (!s_Il2CppMethodInitialized)
  3507. {
  3508. il2cpp_codegen_initialize_method (RuntimeServices_EmitImplicitConversionDispatcher_m4072191859_MetadataUsageId);
  3509. s_Il2CppMethodInitialized = true;
  3510. }
  3511. U3CEmitImplicitConversionDispatcherU3Ec__AnonStorey1E_t4009522197 * V_0 = NULL;
  3512. {
  3513. U3CEmitImplicitConversionDispatcherU3Ec__AnonStorey1E_t4009522197 * L_0 = (U3CEmitImplicitConversionDispatcherU3Ec__AnonStorey1E_t4009522197 *)il2cpp_codegen_object_new(U3CEmitImplicitConversionDispatcherU3Ec__AnonStorey1E_t4009522197_il2cpp_TypeInfo_var);
  3514. U3CEmitImplicitConversionDispatcherU3Ec__AnonStorey1E__ctor_m1951951183(L_0, /*hidden argument*/NULL);
  3515. V_0 = L_0;
  3516. U3CEmitImplicitConversionDispatcherU3Ec__AnonStorey1E_t4009522197 * L_1 = V_0;
  3517. MethodInfo_t * L_2 = ___method0;
  3518. NullCheck(L_1);
  3519. L_1->set_method_0(L_2);
  3520. U3CEmitImplicitConversionDispatcherU3Ec__AnonStorey1E_t4009522197 * L_3 = V_0;
  3521. intptr_t L_4 = (intptr_t)U3CEmitImplicitConversionDispatcherU3Ec__AnonStorey1E_U3CU3Em__16_m940011970_RuntimeMethod_var;
  3522. Dispatcher_t684365006 * L_5 = (Dispatcher_t684365006 *)il2cpp_codegen_object_new(Dispatcher_t684365006_il2cpp_TypeInfo_var);
  3523. Dispatcher__ctor_m4145559729(L_5, L_3, L_4, /*hidden argument*/NULL);
  3524. return L_5;
  3525. }
  3526. }
  3527. // System.Object Boo.Lang.Runtime.RuntimeServices::CoercibleDispatcher(System.Object,System.Object[])
  3528. extern "C" IL2CPP_METHOD_ATTR RuntimeObject * RuntimeServices_CoercibleDispatcher_m4058208960 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___o0, ObjectU5BU5D_t2843939325* ___args1, const RuntimeMethod* method)
  3529. {
  3530. static bool s_Il2CppMethodInitialized;
  3531. if (!s_Il2CppMethodInitialized)
  3532. {
  3533. il2cpp_codegen_initialize_method (RuntimeServices_CoercibleDispatcher_m4058208960_MetadataUsageId);
  3534. s_Il2CppMethodInitialized = true;
  3535. }
  3536. {
  3537. RuntimeObject * L_0 = ___o0;
  3538. ObjectU5BU5D_t2843939325* L_1 = ___args1;
  3539. NullCheck(L_1);
  3540. int32_t L_2 = 0;
  3541. RuntimeObject * L_3 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
  3542. NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_0, ICoercible_t1130343077_il2cpp_TypeInfo_var)));
  3543. RuntimeObject * L_4 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object Boo.Lang.Runtime.ICoercible::Coerce(System.Type) */, ICoercible_t1130343077_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_0, ICoercible_t1130343077_il2cpp_TypeInfo_var)), ((Type_t *)CastclassClass((RuntimeObject*)L_3, Type_t_il2cpp_TypeInfo_var)));
  3544. return L_4;
  3545. }
  3546. }
  3547. // System.Object Boo.Lang.Runtime.RuntimeServices::IdentityDispatcher(System.Object,System.Object[])
  3548. extern "C" IL2CPP_METHOD_ATTR RuntimeObject * RuntimeServices_IdentityDispatcher_m1725786149 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___o0, ObjectU5BU5D_t2843939325* ___args1, const RuntimeMethod* method)
  3549. {
  3550. {
  3551. RuntimeObject * L_0 = ___o0;
  3552. return L_0;
  3553. }
  3554. }
  3555. // System.Boolean Boo.Lang.Runtime.RuntimeServices::IsNumeric(System.TypeCode)
  3556. extern "C" IL2CPP_METHOD_ATTR bool RuntimeServices_IsNumeric_m2879598828 (RuntimeObject * __this /* static, unused */, int32_t ___code0, const RuntimeMethod* method)
  3557. {
  3558. int32_t V_0 = 0;
  3559. {
  3560. int32_t L_0 = ___code0;
  3561. V_0 = L_0;
  3562. int32_t L_1 = V_0;
  3563. switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)5)))
  3564. {
  3565. case 0:
  3566. {
  3567. goto IL_003d;
  3568. }
  3569. case 1:
  3570. {
  3571. goto IL_003b;
  3572. }
  3573. case 2:
  3574. {
  3575. goto IL_003f;
  3576. }
  3577. case 3:
  3578. {
  3579. goto IL_0045;
  3580. }
  3581. case 4:
  3582. {
  3583. goto IL_0041;
  3584. }
  3585. case 5:
  3586. {
  3587. goto IL_0047;
  3588. }
  3589. case 6:
  3590. {
  3591. goto IL_0043;
  3592. }
  3593. case 7:
  3594. {
  3595. goto IL_0049;
  3596. }
  3597. case 8:
  3598. {
  3599. goto IL_004b;
  3600. }
  3601. case 9:
  3602. {
  3603. goto IL_004d;
  3604. }
  3605. case 10:
  3606. {
  3607. goto IL_004f;
  3608. }
  3609. }
  3610. }
  3611. {
  3612. goto IL_0051;
  3613. }
  3614. IL_003b:
  3615. {
  3616. return (bool)1;
  3617. }
  3618. IL_003d:
  3619. {
  3620. return (bool)1;
  3621. }
  3622. IL_003f:
  3623. {
  3624. return (bool)1;
  3625. }
  3626. IL_0041:
  3627. {
  3628. return (bool)1;
  3629. }
  3630. IL_0043:
  3631. {
  3632. return (bool)1;
  3633. }
  3634. IL_0045:
  3635. {
  3636. return (bool)1;
  3637. }
  3638. IL_0047:
  3639. {
  3640. return (bool)1;
  3641. }
  3642. IL_0049:
  3643. {
  3644. return (bool)1;
  3645. }
  3646. IL_004b:
  3647. {
  3648. return (bool)1;
  3649. }
  3650. IL_004d:
  3651. {
  3652. return (bool)1;
  3653. }
  3654. IL_004f:
  3655. {
  3656. return (bool)1;
  3657. }
  3658. IL_0051:
  3659. {
  3660. return (bool)0;
  3661. }
  3662. }
  3663. // System.Boolean Boo.Lang.Runtime.RuntimeServices::EqualityOperator(System.Object,System.Object)
  3664. extern "C" IL2CPP_METHOD_ATTR bool RuntimeServices_EqualityOperator_m2384872086 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___lhs0, RuntimeObject * ___rhs1, const RuntimeMethod* method)
  3665. {
  3666. static bool s_Il2CppMethodInitialized;
  3667. if (!s_Il2CppMethodInitialized)
  3668. {
  3669. il2cpp_codegen_initialize_method (RuntimeServices_EqualityOperator_m2384872086_MetadataUsageId);
  3670. s_Il2CppMethodInitialized = true;
  3671. }
  3672. int32_t V_0 = 0;
  3673. int32_t V_1 = 0;
  3674. RuntimeArray * V_2 = NULL;
  3675. RuntimeArray * V_3 = NULL;
  3676. int32_t G_B15_0 = 0;
  3677. {
  3678. RuntimeObject * L_0 = ___lhs0;
  3679. RuntimeObject * L_1 = ___rhs1;
  3680. if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1))))
  3681. {
  3682. goto IL_0009;
  3683. }
  3684. }
  3685. {
  3686. return (bool)1;
  3687. }
  3688. IL_0009:
  3689. {
  3690. RuntimeObject * L_2 = ___lhs0;
  3691. if (L_2)
  3692. {
  3693. goto IL_0017;
  3694. }
  3695. }
  3696. {
  3697. RuntimeObject * L_3 = ___rhs1;
  3698. RuntimeObject * L_4 = ___lhs0;
  3699. NullCheck(L_3);
  3700. bool L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_3, L_4);
  3701. return L_5;
  3702. }
  3703. IL_0017:
  3704. {
  3705. RuntimeObject * L_6 = ___rhs1;
  3706. if (L_6)
  3707. {
  3708. goto IL_0025;
  3709. }
  3710. }
  3711. {
  3712. RuntimeObject * L_7 = ___lhs0;
  3713. RuntimeObject * L_8 = ___rhs1;
  3714. NullCheck(L_7);
  3715. bool L_9 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_7, L_8);
  3716. return L_9;
  3717. }
  3718. IL_0025:
  3719. {
  3720. RuntimeObject * L_10 = ___lhs0;
  3721. NullCheck(L_10);
  3722. Type_t * L_11 = Object_GetType_m88164663(L_10, /*hidden argument*/NULL);
  3723. IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
  3724. int32_t L_12 = Type_GetTypeCode_m480753082(NULL /*static, unused*/, L_11, /*hidden argument*/NULL);
  3725. V_0 = L_12;
  3726. RuntimeObject * L_13 = ___rhs1;
  3727. NullCheck(L_13);
  3728. Type_t * L_14 = Object_GetType_m88164663(L_13, /*hidden argument*/NULL);
  3729. int32_t L_15 = Type_GetTypeCode_m480753082(NULL /*static, unused*/, L_14, /*hidden argument*/NULL);
  3730. V_1 = L_15;
  3731. int32_t L_16 = V_0;
  3732. IL2CPP_RUNTIME_CLASS_INIT(RuntimeServices_t2098243569_il2cpp_TypeInfo_var);
  3733. bool L_17 = RuntimeServices_IsNumeric_m2879598828(NULL /*static, unused*/, L_16, /*hidden argument*/NULL);
  3734. if (!L_17)
  3735. {
  3736. goto IL_005d;
  3737. }
  3738. }
  3739. {
  3740. int32_t L_18 = V_1;
  3741. IL2CPP_RUNTIME_CLASS_INIT(RuntimeServices_t2098243569_il2cpp_TypeInfo_var);
  3742. bool L_19 = RuntimeServices_IsNumeric_m2879598828(NULL /*static, unused*/, L_18, /*hidden argument*/NULL);
  3743. if (!L_19)
  3744. {
  3745. goto IL_005d;
  3746. }
  3747. }
  3748. {
  3749. RuntimeObject * L_20 = ___lhs0;
  3750. int32_t L_21 = V_0;
  3751. RuntimeObject * L_22 = ___rhs1;
  3752. int32_t L_23 = V_1;
  3753. IL2CPP_RUNTIME_CLASS_INIT(RuntimeServices_t2098243569_il2cpp_TypeInfo_var);
  3754. bool L_24 = RuntimeServices_EqualityOperator_m2541246096(NULL /*static, unused*/, L_20, L_21, L_22, L_23, /*hidden argument*/NULL);
  3755. return L_24;
  3756. }
  3757. IL_005d:
  3758. {
  3759. RuntimeObject * L_25 = ___lhs0;
  3760. V_2 = ((RuntimeArray *)IsInstClass((RuntimeObject*)L_25, RuntimeArray_il2cpp_TypeInfo_var));
  3761. RuntimeArray * L_26 = V_2;
  3762. if (!L_26)
  3763. {
  3764. goto IL_007f;
  3765. }
  3766. }
  3767. {
  3768. RuntimeObject * L_27 = ___rhs1;
  3769. V_3 = ((RuntimeArray *)IsInstClass((RuntimeObject*)L_27, RuntimeArray_il2cpp_TypeInfo_var));
  3770. RuntimeArray * L_28 = V_3;
  3771. if (!L_28)
  3772. {
  3773. goto IL_007f;
  3774. }
  3775. }
  3776. {
  3777. RuntimeArray * L_29 = V_2;
  3778. RuntimeArray * L_30 = V_3;
  3779. IL2CPP_RUNTIME_CLASS_INIT(RuntimeServices_t2098243569_il2cpp_TypeInfo_var);
  3780. bool L_31 = RuntimeServices_ArrayEqualityImpl_m3673667702(NULL /*static, unused*/, L_29, L_30, /*hidden argument*/NULL);
  3781. return L_31;
  3782. }
  3783. IL_007f:
  3784. {
  3785. RuntimeObject * L_32 = ___lhs0;
  3786. RuntimeObject * L_33 = ___rhs1;
  3787. NullCheck(L_32);
  3788. bool L_34 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_32, L_33);
  3789. if (L_34)
  3790. {
  3791. goto IL_0094;
  3792. }
  3793. }
  3794. {
  3795. RuntimeObject * L_35 = ___rhs1;
  3796. RuntimeObject * L_36 = ___lhs0;
  3797. NullCheck(L_35);
  3798. bool L_37 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_35, L_36);
  3799. G_B15_0 = ((int32_t)(L_37));
  3800. goto IL_0095;
  3801. }
  3802. IL_0094:
  3803. {
  3804. G_B15_0 = 1;
  3805. }
  3806. IL_0095:
  3807. {
  3808. return (bool)G_B15_0;
  3809. }
  3810. }
  3811. // System.Boolean Boo.Lang.Runtime.RuntimeServices::ArrayEqualityImpl(System.Array,System.Array)
  3812. extern "C" IL2CPP_METHOD_ATTR bool RuntimeServices_ArrayEqualityImpl_m3673667702 (RuntimeObject * __this /* static, unused */, RuntimeArray * ___lhs0, RuntimeArray * ___rhs1, const RuntimeMethod* method)
  3813. {
  3814. static bool s_Il2CppMethodInitialized;
  3815. if (!s_Il2CppMethodInitialized)
  3816. {
  3817. il2cpp_codegen_initialize_method (RuntimeServices_ArrayEqualityImpl_m3673667702_MetadataUsageId);
  3818. s_Il2CppMethodInitialized = true;
  3819. }
  3820. int32_t V_0 = 0;
  3821. {
  3822. RuntimeArray * L_0 = ___lhs0;
  3823. NullCheck(L_0);
  3824. int32_t L_1 = Array_get_Rank_m3448755881(L_0, /*hidden argument*/NULL);
  3825. if ((!(((uint32_t)L_1) == ((uint32_t)1))))
  3826. {
  3827. goto IL_0018;
  3828. }
  3829. }
  3830. {
  3831. RuntimeArray * L_2 = ___rhs1;
  3832. NullCheck(L_2);
  3833. int32_t L_3 = Array_get_Rank_m3448755881(L_2, /*hidden argument*/NULL);
  3834. if ((((int32_t)L_3) == ((int32_t)1)))
  3835. {
  3836. goto IL_0023;
  3837. }
  3838. }
  3839. IL_0018:
  3840. {
  3841. ArgumentException_t132251570 * L_4 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var);
  3842. ArgumentException__ctor_m1312628991(L_4, _stringLiteral181402784, /*hidden argument*/NULL);
  3843. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4,RuntimeServices_ArrayEqualityImpl_m3673667702_RuntimeMethod_var);
  3844. }
  3845. IL_0023:
  3846. {
  3847. RuntimeArray * L_5 = ___lhs0;
  3848. NullCheck(L_5);
  3849. int32_t L_6 = Array_get_Length_m21610649(L_5, /*hidden argument*/NULL);
  3850. RuntimeArray * L_7 = ___rhs1;
  3851. NullCheck(L_7);
  3852. int32_t L_8 = Array_get_Length_m21610649(L_7, /*hidden argument*/NULL);
  3853. if ((((int32_t)L_6) == ((int32_t)L_8)))
  3854. {
  3855. goto IL_0036;
  3856. }
  3857. }
  3858. {
  3859. return (bool)0;
  3860. }
  3861. IL_0036:
  3862. {
  3863. V_0 = 0;
  3864. goto IL_005b;
  3865. }
  3866. IL_003d:
  3867. {
  3868. RuntimeArray * L_9 = ___lhs0;
  3869. int32_t L_10 = V_0;
  3870. NullCheck(L_9);
  3871. RuntimeObject * L_11 = Array_GetValue_m2528546681(L_9, L_10, /*hidden argument*/NULL);
  3872. RuntimeArray * L_12 = ___rhs1;
  3873. int32_t L_13 = V_0;
  3874. NullCheck(L_12);
  3875. RuntimeObject * L_14 = Array_GetValue_m2528546681(L_12, L_13, /*hidden argument*/NULL);
  3876. IL2CPP_RUNTIME_CLASS_INIT(RuntimeServices_t2098243569_il2cpp_TypeInfo_var);
  3877. bool L_15 = RuntimeServices_EqualityOperator_m2384872086(NULL /*static, unused*/, L_11, L_14, /*hidden argument*/NULL);
  3878. if (L_15)
  3879. {
  3880. goto IL_0057;
  3881. }
  3882. }
  3883. {
  3884. return (bool)0;
  3885. }
  3886. IL_0057:
  3887. {
  3888. int32_t L_16 = V_0;
  3889. V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
  3890. }
  3891. IL_005b:
  3892. {
  3893. int32_t L_17 = V_0;
  3894. RuntimeArray * L_18 = ___lhs0;
  3895. NullCheck(L_18);
  3896. int32_t L_19 = Array_get_Length_m21610649(L_18, /*hidden argument*/NULL);
  3897. if ((((int32_t)L_17) < ((int32_t)L_19)))
  3898. {
  3899. goto IL_003d;
  3900. }
  3901. }
  3902. {
  3903. return (bool)1;
  3904. }
  3905. }
  3906. // System.TypeCode Boo.Lang.Runtime.RuntimeServices::GetConvertTypeCode(System.TypeCode,System.TypeCode)
  3907. extern "C" IL2CPP_METHOD_ATTR int32_t RuntimeServices_GetConvertTypeCode_m597524256 (RuntimeObject * __this /* static, unused */, int32_t ___lhsTypeCode0, int32_t ___rhsTypeCode1, const RuntimeMethod* method)
  3908. {
  3909. {
  3910. int32_t L_0 = ___lhsTypeCode0;
  3911. if ((((int32_t)L_0) == ((int32_t)((int32_t)15))))
  3912. {
  3913. goto IL_0010;
  3914. }
  3915. }
  3916. {
  3917. int32_t L_1 = ___rhsTypeCode1;
  3918. if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)15)))))
  3919. {
  3920. goto IL_0013;
  3921. }
  3922. }
  3923. IL_0010:
  3924. {
  3925. return (int32_t)(((int32_t)15));
  3926. }
  3927. IL_0013:
  3928. {
  3929. int32_t L_2 = ___lhsTypeCode0;
  3930. if ((((int32_t)L_2) == ((int32_t)((int32_t)14))))
  3931. {
  3932. goto IL_0023;
  3933. }
  3934. }
  3935. {
  3936. int32_t L_3 = ___rhsTypeCode1;
  3937. if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)14)))))
  3938. {
  3939. goto IL_0026;
  3940. }
  3941. }
  3942. IL_0023:
  3943. {
  3944. return (int32_t)(((int32_t)14));
  3945. }
  3946. IL_0026:
  3947. {
  3948. int32_t L_4 = ___lhsTypeCode0;
  3949. if ((((int32_t)L_4) == ((int32_t)((int32_t)13))))
  3950. {
  3951. goto IL_0036;
  3952. }
  3953. }
  3954. {
  3955. int32_t L_5 = ___rhsTypeCode1;
  3956. if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)13)))))
  3957. {
  3958. goto IL_0039;
  3959. }
  3960. }
  3961. IL_0036:
  3962. {
  3963. return (int32_t)(((int32_t)13));
  3964. }
  3965. IL_0039:
  3966. {
  3967. int32_t L_6 = ___lhsTypeCode0;
  3968. if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)12)))))
  3969. {
  3970. goto IL_0065;
  3971. }
  3972. }
  3973. {
  3974. int32_t L_7 = ___rhsTypeCode1;
  3975. if ((((int32_t)L_7) == ((int32_t)5)))
  3976. {
  3977. goto IL_005f;
  3978. }
  3979. }
  3980. {
  3981. int32_t L_8 = ___rhsTypeCode1;
  3982. if ((((int32_t)L_8) == ((int32_t)7)))
  3983. {
  3984. goto IL_005f;
  3985. }
  3986. }
  3987. {
  3988. int32_t L_9 = ___rhsTypeCode1;
  3989. if ((((int32_t)L_9) == ((int32_t)((int32_t)9))))
  3990. {
  3991. goto IL_005f;
  3992. }
  3993. }
  3994. {
  3995. int32_t L_10 = ___rhsTypeCode1;
  3996. if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)11)))))
  3997. {
  3998. goto IL_0062;
  3999. }
  4000. }
  4001. IL_005f:
  4002. {
  4003. return (int32_t)(((int32_t)11));
  4004. }
  4005. IL_0062:
  4006. {
  4007. return (int32_t)(((int32_t)12));
  4008. }
  4009. IL_0065:
  4010. {
  4011. int32_t L_11 = ___rhsTypeCode1;
  4012. if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)12)))))
  4013. {
  4014. goto IL_0091;
  4015. }
  4016. }
  4017. {
  4018. int32_t L_12 = ___lhsTypeCode0;
  4019. if ((((int32_t)L_12) == ((int32_t)5)))
  4020. {
  4021. goto IL_008b;
  4022. }
  4023. }
  4024. {
  4025. int32_t L_13 = ___lhsTypeCode0;
  4026. if ((((int32_t)L_13) == ((int32_t)7)))
  4027. {
  4028. goto IL_008b;
  4029. }
  4030. }
  4031. {
  4032. int32_t L_14 = ___lhsTypeCode0;
  4033. if ((((int32_t)L_14) == ((int32_t)((int32_t)9))))
  4034. {
  4035. goto IL_008b;
  4036. }
  4037. }
  4038. {
  4039. int32_t L_15 = ___lhsTypeCode0;
  4040. if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)11)))))
  4041. {
  4042. goto IL_008e;
  4043. }
  4044. }
  4045. IL_008b:
  4046. {
  4047. return (int32_t)(((int32_t)11));
  4048. }
  4049. IL_008e:
  4050. {
  4051. return (int32_t)(((int32_t)12));
  4052. }
  4053. IL_0091:
  4054. {
  4055. int32_t L_16 = ___lhsTypeCode0;
  4056. if ((((int32_t)L_16) == ((int32_t)((int32_t)11))))
  4057. {
  4058. goto IL_00a1;
  4059. }
  4060. }
  4061. {
  4062. int32_t L_17 = ___rhsTypeCode1;
  4063. if ((!(((uint32_t)L_17) == ((uint32_t)((int32_t)11)))))
  4064. {
  4065. goto IL_00a4;
  4066. }
  4067. }
  4068. IL_00a1:
  4069. {
  4070. return (int32_t)(((int32_t)11));
  4071. }
  4072. IL_00a4:
  4073. {
  4074. int32_t L_18 = ___lhsTypeCode0;
  4075. if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)10)))))
  4076. {
  4077. goto IL_00c8;
  4078. }
  4079. }
  4080. {
  4081. int32_t L_19 = ___rhsTypeCode1;
  4082. if ((((int32_t)L_19) == ((int32_t)5)))
  4083. {
  4084. goto IL_00c2;
  4085. }
  4086. }
  4087. {
  4088. int32_t L_20 = ___rhsTypeCode1;
  4089. if ((((int32_t)L_20) == ((int32_t)7)))
  4090. {
  4091. goto IL_00c2;
  4092. }
  4093. }
  4094. {
  4095. int32_t L_21 = ___rhsTypeCode1;
  4096. if ((!(((uint32_t)L_21) == ((uint32_t)((int32_t)9)))))
  4097. {
  4098. goto IL_00c5;
  4099. }
  4100. }
  4101. IL_00c2:
  4102. {
  4103. return (int32_t)(((int32_t)11));
  4104. }
  4105. IL_00c5:
  4106. {
  4107. return (int32_t)(((int32_t)10));
  4108. }
  4109. IL_00c8:
  4110. {
  4111. int32_t L_22 = ___rhsTypeCode1;
  4112. if ((!(((uint32_t)L_22) == ((uint32_t)((int32_t)10)))))
  4113. {
  4114. goto IL_00ec;
  4115. }
  4116. }
  4117. {
  4118. int32_t L_23 = ___lhsTypeCode0;
  4119. if ((((int32_t)L_23) == ((int32_t)5)))
  4120. {
  4121. goto IL_00e6;
  4122. }
  4123. }
  4124. {
  4125. int32_t L_24 = ___lhsTypeCode0;
  4126. if ((((int32_t)L_24) == ((int32_t)7)))
  4127. {
  4128. goto IL_00e6;
  4129. }
  4130. }
  4131. {
  4132. int32_t L_25 = ___lhsTypeCode0;
  4133. if ((!(((uint32_t)L_25) == ((uint32_t)((int32_t)9)))))
  4134. {
  4135. goto IL_00e9;
  4136. }
  4137. }
  4138. IL_00e6:
  4139. {
  4140. return (int32_t)(((int32_t)11));
  4141. }
  4142. IL_00e9:
  4143. {
  4144. return (int32_t)(((int32_t)10));
  4145. }
  4146. IL_00ec:
  4147. {
  4148. return (int32_t)(((int32_t)9));
  4149. }
  4150. }
  4151. // System.Boolean Boo.Lang.Runtime.RuntimeServices::EqualityOperator(System.Object,System.TypeCode,System.Object,System.TypeCode)
  4152. extern "C" IL2CPP_METHOD_ATTR bool RuntimeServices_EqualityOperator_m2541246096 (RuntimeObject * __this /* static, unused */, RuntimeObject * ___lhs0, int32_t ___lhsTypeCode1, RuntimeObject * ___rhs2, int32_t ___rhsTypeCode3, const RuntimeMethod* method)
  4153. {
  4154. static bool s_Il2CppMethodInitialized;
  4155. if (!s_Il2CppMethodInitialized)
  4156. {
  4157. il2cpp_codegen_initialize_method (RuntimeServices_EqualityOperator_m2541246096_MetadataUsageId);
  4158. s_Il2CppMethodInitialized = true;
  4159. }
  4160. RuntimeObject* V_0 = NULL;
  4161. RuntimeObject* V_1 = NULL;
  4162. int32_t V_2 = 0;
  4163. {
  4164. RuntimeObject * L_0 = ___lhs0;
  4165. V_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_0, IConvertible_t2977365677_il2cpp_TypeInfo_var));
  4166. RuntimeObject * L_1 = ___rhs2;
  4167. V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_t2977365677_il2cpp_TypeInfo_var));
  4168. int32_t L_2 = ___lhsTypeCode1;
  4169. int32_t L_3 = ___rhsTypeCode3;
  4170. IL2CPP_RUNTIME_CLASS_INIT(RuntimeServices_t2098243569_il2cpp_TypeInfo_var);
  4171. int32_t L_4 = RuntimeServices_GetConvertTypeCode_m597524256(NULL /*static, unused*/, L_2, L_3, /*hidden argument*/NULL);
  4172. V_2 = L_4;
  4173. int32_t L_5 = V_2;
  4174. switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)((int32_t)10))))
  4175. {
  4176. case 0:
  4177. {
  4178. goto IL_0094;
  4179. }
  4180. case 1:
  4181. {
  4182. goto IL_0083;
  4183. }
  4184. case 2:
  4185. {
  4186. goto IL_0072;
  4187. }
  4188. case 3:
  4189. {
  4190. goto IL_0061;
  4191. }
  4192. case 4:
  4193. {
  4194. goto IL_0050;
  4195. }
  4196. case 5:
  4197. {
  4198. goto IL_003c;
  4199. }
  4200. }
  4201. }
  4202. {
  4203. goto IL_00a5;
  4204. }
  4205. IL_003c:
  4206. {
  4207. RuntimeObject* L_6 = V_0;
  4208. NullCheck(L_6);
  4209. Decimal_t2948259380 L_7 = InterfaceFuncInvoker1< Decimal_t2948259380 , RuntimeObject* >::Invoke(4 /* System.Decimal System.IConvertible::ToDecimal(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_6, (RuntimeObject*)NULL);
  4210. RuntimeObject* L_8 = V_1;
  4211. NullCheck(L_8);
  4212. Decimal_t2948259380 L_9 = InterfaceFuncInvoker1< Decimal_t2948259380 , RuntimeObject* >::Invoke(4 /* System.Decimal System.IConvertible::ToDecimal(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_8, (RuntimeObject*)NULL);
  4213. IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var);
  4214. bool L_10 = Decimal_op_Equality_m77262825(NULL /*static, unused*/, L_7, L_9, /*hidden argument*/NULL);
  4215. return L_10;
  4216. }
  4217. IL_0050:
  4218. {
  4219. RuntimeObject* L_11 = V_0;
  4220. NullCheck(L_11);
  4221. double L_12 = InterfaceFuncInvoker1< double, RuntimeObject* >::Invoke(5 /* System.Double System.IConvertible::ToDouble(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_11, (RuntimeObject*)NULL);
  4222. RuntimeObject* L_13 = V_1;
  4223. NullCheck(L_13);
  4224. double L_14 = InterfaceFuncInvoker1< double, RuntimeObject* >::Invoke(5 /* System.Double System.IConvertible::ToDouble(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_13, (RuntimeObject*)NULL);
  4225. return (bool)((((double)L_12) == ((double)L_14))? 1 : 0);
  4226. }
  4227. IL_0061:
  4228. {
  4229. RuntimeObject* L_15 = V_0;
  4230. NullCheck(L_15);
  4231. float L_16 = InterfaceFuncInvoker1< float, RuntimeObject* >::Invoke(10 /* System.Single System.IConvertible::ToSingle(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_15, (RuntimeObject*)NULL);
  4232. RuntimeObject* L_17 = V_1;
  4233. NullCheck(L_17);
  4234. float L_18 = InterfaceFuncInvoker1< float, RuntimeObject* >::Invoke(10 /* System.Single System.IConvertible::ToSingle(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_17, (RuntimeObject*)NULL);
  4235. return (bool)((((float)L_16) == ((float)L_18))? 1 : 0);
  4236. }
  4237. IL_0072:
  4238. {
  4239. RuntimeObject* L_19 = V_0;
  4240. NullCheck(L_19);
  4241. uint64_t L_20 = InterfaceFuncInvoker1< uint64_t, RuntimeObject* >::Invoke(15 /* System.UInt64 System.IConvertible::ToUInt64(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_19, (RuntimeObject*)NULL);
  4242. RuntimeObject* L_21 = V_1;
  4243. NullCheck(L_21);
  4244. uint64_t L_22 = InterfaceFuncInvoker1< uint64_t, RuntimeObject* >::Invoke(15 /* System.UInt64 System.IConvertible::ToUInt64(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_21, (RuntimeObject*)NULL);
  4245. return (bool)((((int64_t)L_20) == ((int64_t)L_22))? 1 : 0);
  4246. }
  4247. IL_0083:
  4248. {
  4249. RuntimeObject* L_23 = V_0;
  4250. NullCheck(L_23);
  4251. int64_t L_24 = InterfaceFuncInvoker1< int64_t, RuntimeObject* >::Invoke(8 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_23, (RuntimeObject*)NULL);
  4252. RuntimeObject* L_25 = V_1;
  4253. NullCheck(L_25);
  4254. int64_t L_26 = InterfaceFuncInvoker1< int64_t, RuntimeObject* >::Invoke(8 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_25, (RuntimeObject*)NULL);
  4255. return (bool)((((int64_t)L_24) == ((int64_t)L_26))? 1 : 0);
  4256. }
  4257. IL_0094:
  4258. {
  4259. RuntimeObject* L_27 = V_0;
  4260. NullCheck(L_27);
  4261. uint32_t L_28 = InterfaceFuncInvoker1< uint32_t, RuntimeObject* >::Invoke(14 /* System.UInt32 System.IConvertible::ToUInt32(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_27, (RuntimeObject*)NULL);
  4262. RuntimeObject* L_29 = V_1;
  4263. NullCheck(L_29);
  4264. uint32_t L_30 = InterfaceFuncInvoker1< uint32_t, RuntimeObject* >::Invoke(14 /* System.UInt32 System.IConvertible::ToUInt32(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_29, (RuntimeObject*)NULL);
  4265. return (bool)((((int32_t)L_28) == ((int32_t)L_30))? 1 : 0);
  4266. }
  4267. IL_00a5:
  4268. {
  4269. RuntimeObject* L_31 = V_0;
  4270. NullCheck(L_31);
  4271. int32_t L_32 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7 /* System.Int32 System.IConvertible::ToInt32(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_31, (RuntimeObject*)NULL);
  4272. RuntimeObject* L_33 = V_1;
  4273. NullCheck(L_33);
  4274. int32_t L_34 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7 /* System.Int32 System.IConvertible::ToInt32(System.IFormatProvider) */, IConvertible_t2977365677_il2cpp_TypeInfo_var, L_33, (RuntimeObject*)NULL);
  4275. return (bool)((((int32_t)L_32) == ((int32_t)L_34))? 1 : 0);
  4276. }
  4277. }
  4278. // System.Boolean Boo.Lang.Runtime.RuntimeServices::IsPromotableNumeric(System.TypeCode)
  4279. extern "C" IL2CPP_METHOD_ATTR bool RuntimeServices_IsPromotableNumeric_m3673263760 (RuntimeObject * __this /* static, unused */, int32_t ___code0, const RuntimeMethod* method)
  4280. {
  4281. int32_t V_0 = 0;
  4282. {
  4283. int32_t L_0 = ___code0;
  4284. V_0 = L_0;
  4285. int32_t L_1 = V_0;
  4286. switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)3)))
  4287. {
  4288. case 0:
  4289. {
  4290. goto IL_0057;
  4291. }
  4292. case 1:
  4293. {
  4294. goto IL_005b;
  4295. }
  4296. case 2:
  4297. {
  4298. goto IL_0045;
  4299. }
  4300. case 3:
  4301. {
  4302. goto IL_0043;
  4303. }
  4304. case 4:
  4305. {
  4306. goto IL_0047;
  4307. }
  4308. case 5:
  4309. {
  4310. goto IL_004d;
  4311. }
  4312. case 6:
  4313. {
  4314. goto IL_0049;
  4315. }
  4316. case 7:
  4317. {
  4318. goto IL_004f;
  4319. }
  4320. case 8:
  4321. {
  4322. goto IL_004b;
  4323. }
  4324. case 9:
  4325. {
  4326. goto IL_0051;
  4327. }
  4328. case 10:
  4329. {
  4330. goto IL_0053;
  4331. }
  4332. case 11:
  4333. {
  4334. goto IL_0055;
  4335. }
  4336. case 12:
  4337. {
  4338. goto IL_0059;
  4339. }
  4340. }
  4341. }
  4342. {
  4343. goto IL_005d;
  4344. }
  4345. IL_0043:
  4346. {
  4347. return (bool)1;
  4348. }
  4349. IL_0045:
  4350. {
  4351. return (bool)1;
  4352. }
  4353. IL_0047:
  4354. {
  4355. return (bool)1;
  4356. }
  4357. IL_0049:
  4358. {
  4359. return (bool)1;
  4360. }
  4361. IL_004b:
  4362. {
  4363. return (bool)1;
  4364. }
  4365. IL_004d:
  4366. {
  4367. return (bool)1;
  4368. }
  4369. IL_004f:
  4370. {
  4371. return (bool)1;
  4372. }
  4373. IL_0051:
  4374. {
  4375. return (bool)1;
  4376. }
  4377. IL_0053:
  4378. {
  4379. return (bool)1;
  4380. }
  4381. IL_0055:
  4382. {
  4383. return (bool)1;
  4384. }
  4385. IL_0057:
  4386. {
  4387. return (bool)1;
  4388. }
  4389. IL_0059:
  4390. {
  4391. return (bool)1;
  4392. }
  4393. IL_005b:
  4394. {
  4395. return (bool)1;
  4396. }
  4397. IL_005d:
  4398. {
  4399. return (bool)0;
  4400. }
  4401. }
  4402. // System.Reflection.MethodInfo Boo.Lang.Runtime.RuntimeServices::FindImplicitConversionOperator(System.Type,System.Type)
  4403. extern "C" IL2CPP_METHOD_ATTR MethodInfo_t * RuntimeServices_FindImplicitConversionOperator_m2560683559 (RuntimeObject * __this /* static, unused */, Type_t * ___from0, Type_t * ___to1, const RuntimeMethod* method)
  4404. {
  4405. static bool s_Il2CppMethodInitialized;
  4406. if (!s_Il2CppMethodInitialized)
  4407. {
  4408. il2cpp_codegen_initialize_method (RuntimeServices_FindImplicitConversionOperator_m2560683559_MetadataUsageId);
  4409. s_Il2CppMethodInitialized = true;
  4410. }
  4411. int32_t V_0 = 0;
  4412. MethodInfo_t * G_B3_0 = NULL;
  4413. MethodInfo_t * G_B1_0 = NULL;
  4414. MethodInfo_t * G_B2_0 = NULL;
  4415. {
  4416. Type_t * L_0 = ___from0;
  4417. NullCheck(L_0);
  4418. MethodInfoU5BU5D_t2572182361* L_1 = VirtFuncInvoker1< MethodInfoU5BU5D_t2572182361*, int32_t >::Invoke(58 /* System.Reflection.MethodInfo[] System.Type::GetMethods(System.Reflection.BindingFlags) */, L_0, ((int32_t)88));
  4419. Type_t * L_2 = ___from0;
  4420. Type_t * L_3 = ___to1;
  4421. IL2CPP_RUNTIME_CLASS_INIT(RuntimeServices_t2098243569_il2cpp_TypeInfo_var);
  4422. MethodInfo_t * L_4 = RuntimeServices_FindImplicitConversionMethod_m4176567206(NULL /*static, unused*/, (RuntimeObject*)(RuntimeObject*)L_1, L_2, L_3, /*hidden argument*/NULL);
  4423. MethodInfo_t * L_5 = L_4;
  4424. G_B1_0 = L_5;
  4425. if (L_5)
  4426. {
  4427. G_B3_0 = L_5;
  4428. goto IL_0038;
  4429. }
  4430. }
  4431. {
  4432. Type_t * L_6 = ___to1;
  4433. NullCheck(L_6);
  4434. MethodInfoU5BU5D_t2572182361* L_7 = VirtFuncInvoker1< MethodInfoU5BU5D_t2572182361*, int32_t >::Invoke(58 /* System.Reflection.MethodInfo[] System.Type::GetMethods(System.Reflection.BindingFlags) */, L_6, ((int32_t)88));
  4435. Type_t * L_8 = ___from0;
  4436. Type_t * L_9 = ___to1;
  4437. IL2CPP_RUNTIME_CLASS_INIT(RuntimeServices_t2098243569_il2cpp_TypeInfo_var);
  4438. MethodInfo_t * L_10 = RuntimeServices_FindImplicitConversionMethod_m4176567206(NULL /*static, unused*/, (RuntimeObject*)(RuntimeObject*)L_7, L_8, L_9, /*hidden argument*/NULL);
  4439. MethodInfo_t * L_11 = L_10;
  4440. G_B2_0 = L_11;
  4441. if (L_11)
  4442. {
  4443. G_B3_0 = L_11;
  4444. goto IL_0038;
  4445. }
  4446. }
  4447. {
  4448. IL2CPP_RUNTIME_CLASS_INIT(RuntimeServices_t2098243569_il2cpp_TypeInfo_var);
  4449. RuntimeObject* L_12 = RuntimeServices_GetExtensionMethods_m2018979233(NULL /*static, unused*/, /*hidden argument*/NULL);
  4450. Type_t * L_13 = ___from0;
  4451. Type_t * L_14 = ___to1;
  4452. MethodInfo_t * L_15 = RuntimeServices_FindImplicitConversionMethod_m4176567206(NULL /*static, unused*/, L_12, L_13, L_14, /*hidden argument*/NULL);
  4453. G_B3_0 = L_15;
  4454. }
  4455. IL_0038:
  4456. {
  4457. return G_B3_0;
  4458. }
  4459. }
  4460. // System.Collections.Generic.IEnumerable`1<System.Reflection.MethodInfo> Boo.Lang.Runtime.RuntimeServices::GetExtensionMethods()
  4461. extern "C" IL2CPP_METHOD_ATTR RuntimeObject* RuntimeServices_GetExtensionMethods_m2018979233 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method)
  4462. {
  4463. static bool s_Il2CppMethodInitialized;
  4464. if (!s_Il2CppMethodInitialized)
  4465. {
  4466. il2cpp_codegen_initialize_method (RuntimeServices_GetExtensionMethods_m2018979233_MetadataUsageId);
  4467. s_Il2CppMethodInitialized = true;
  4468. }
  4469. U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435 * V_0 = NULL;
  4470. {
  4471. U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435 * L_0 = (U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435 *)il2cpp_codegen_object_new(U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435_il2cpp_TypeInfo_var);
  4472. U3CGetExtensionMethodsU3Ec__IteratorC__ctor_m1217043206(L_0, /*hidden argument*/NULL);
  4473. V_0 = L_0;
  4474. U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435 * L_1 = V_0;
  4475. U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435 * L_2 = L_1;
  4476. NullCheck(L_2);
  4477. L_2->set_U24PC_2(((int32_t)-2));
  4478. return L_2;
  4479. }
  4480. }
  4481. // System.Reflection.MethodInfo Boo.Lang.Runtime.RuntimeServices::FindImplicitConversionMethod(System.Collections.Generic.IEnumerable`1<System.Reflection.MethodInfo>,System.Type,System.Type)
  4482. extern "C" IL2CPP_METHOD_ATTR MethodInfo_t * RuntimeServices_FindImplicitConversionMethod_m4176567206 (RuntimeObject * __this /* static, unused */, RuntimeObject* ___candidates0, Type_t * ___from1, Type_t * ___to2, const RuntimeMethod* method)
  4483. {
  4484. static bool s_Il2CppMethodInitialized;
  4485. if (!s_Il2CppMethodInitialized)
  4486. {
  4487. il2cpp_codegen_initialize_method (RuntimeServices_FindImplicitConversionMethod_m4176567206_MetadataUsageId);
  4488. s_Il2CppMethodInitialized = true;
  4489. }
  4490. MethodInfo_t * V_0 = NULL;
  4491. RuntimeObject* V_1 = NULL;
  4492. ParameterInfoU5BU5D_t390618515* V_2 = NULL;
  4493. MethodInfo_t * V_3 = NULL;
  4494. Exception_t * __last_unhandled_exception = 0;
  4495. NO_UNUSED_WARNING (__last_unhandled_exception);
  4496. Exception_t * __exception_local = 0;
  4497. NO_UNUSED_WARNING (__exception_local);
  4498. int32_t __leave_target = 0;
  4499. NO_UNUSED_WARNING (__leave_target);
  4500. {
  4501. RuntimeObject* L_0 = ___candidates0;
  4502. NullCheck(L_0);
  4503. RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Reflection.MethodInfo>::GetEnumerator() */, IEnumerable_1_t857479137_il2cpp_TypeInfo_var, L_0);
  4504. V_1 = L_1;
  4505. }
  4506. IL_0007:
  4507. try
  4508. { // begin try (depth: 1)
  4509. {
  4510. goto IL_0072;
  4511. }
  4512. IL_000c:
  4513. {
  4514. RuntimeObject* L_2 = V_1;
  4515. NullCheck(L_2);
  4516. MethodInfo_t * L_3 = InterfaceFuncInvoker0< MethodInfo_t * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Reflection.MethodInfo>::get_Current() */, IEnumerator_1_t2310196716_il2cpp_TypeInfo_var, L_2);
  4517. V_0 = L_3;
  4518. MethodInfo_t * L_4 = V_0;
  4519. NullCheck(L_4);
  4520. String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_4);
  4521. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  4522. bool L_6 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_5, _stringLiteral3306367446, /*hidden argument*/NULL);
  4523. if (!L_6)
  4524. {
  4525. goto IL_002d;
  4526. }
  4527. }
  4528. IL_0028:
  4529. {
  4530. goto IL_0072;
  4531. }
  4532. IL_002d:
  4533. {
  4534. MethodInfo_t * L_7 = V_0;
  4535. NullCheck(L_7);
  4536. Type_t * L_8 = VirtFuncInvoker0< Type_t * >::Invoke(32 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_7);
  4537. Type_t * L_9 = ___to2;
  4538. if ((((RuntimeObject*)(Type_t *)L_8) == ((RuntimeObject*)(Type_t *)L_9)))
  4539. {
  4540. goto IL_003e;
  4541. }
  4542. }
  4543. IL_0039:
  4544. {
  4545. goto IL_0072;
  4546. }
  4547. IL_003e:
  4548. {
  4549. MethodInfo_t * L_10 = V_0;
  4550. NullCheck(L_10);
  4551. ParameterInfoU5BU5D_t390618515* L_11 = VirtFuncInvoker0< ParameterInfoU5BU5D_t390618515* >::Invoke(15 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_10);
  4552. V_2 = L_11;
  4553. ParameterInfoU5BU5D_t390618515* L_12 = V_2;
  4554. NullCheck(L_12);
  4555. if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_12)->max_length))))) == ((int32_t)1)))
  4556. {
  4557. goto IL_0053;
  4558. }
  4559. }
  4560. IL_004e:
  4561. {
  4562. goto IL_0072;
  4563. }
  4564. IL_0053:
  4565. {
  4566. ParameterInfoU5BU5D_t390618515* L_13 = V_2;
  4567. NullCheck(L_13);
  4568. int32_t L_14 = 0;
  4569. ParameterInfo_t1861056598 * L_15 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
  4570. NullCheck(L_15);
  4571. Type_t * L_16 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_15);
  4572. Type_t * L_17 = ___from1;
  4573. NullCheck(L_16);
  4574. bool L_18 = VirtFuncInvoker1< bool, Type_t * >::Invoke(43 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_16, L_17);
  4575. if (L_18)
  4576. {
  4577. goto IL_006b;
  4578. }
  4579. }
  4580. IL_0066:
  4581. {
  4582. goto IL_0072;
  4583. }
  4584. IL_006b:
  4585. {
  4586. MethodInfo_t * L_19 = V_0;
  4587. V_3 = L_19;
  4588. IL2CPP_LEAVE(0x8F, FINALLY_0082);
  4589. }
  4590. IL_0072:
  4591. {
  4592. RuntimeObject* L_20 = V_1;
  4593. NullCheck(L_20);
  4594. bool L_21 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_20);
  4595. if (L_21)
  4596. {
  4597. goto IL_000c;
  4598. }
  4599. }
  4600. IL_007d:
  4601. {
  4602. IL2CPP_LEAVE(0x8D, FINALLY_0082);
  4603. }
  4604. } // end try (depth: 1)
  4605. catch(Il2CppExceptionWrapper& e)
  4606. {
  4607. __last_unhandled_exception = (Exception_t *)e.ex;
  4608. goto FINALLY_0082;
  4609. }
  4610. FINALLY_0082:
  4611. { // begin finally (depth: 1)
  4612. {
  4613. RuntimeObject* L_22 = V_1;
  4614. if (L_22)
  4615. {
  4616. goto IL_0086;
  4617. }
  4618. }
  4619. IL_0085:
  4620. {
  4621. IL2CPP_END_FINALLY(130)
  4622. }
  4623. IL_0086:
  4624. {
  4625. RuntimeObject* L_23 = V_1;
  4626. NullCheck(L_23);
  4627. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_23);
  4628. IL2CPP_END_FINALLY(130)
  4629. }
  4630. } // end finally (depth: 1)
  4631. IL2CPP_CLEANUP(130)
  4632. {
  4633. IL2CPP_JUMP_TBL(0x8F, IL_008f)
  4634. IL2CPP_JUMP_TBL(0x8D, IL_008d)
  4635. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  4636. }
  4637. IL_008d:
  4638. {
  4639. return (MethodInfo_t *)NULL;
  4640. }
  4641. IL_008f:
  4642. {
  4643. MethodInfo_t * L_24 = V_3;
  4644. return L_24;
  4645. }
  4646. }
  4647. #ifdef __clang__
  4648. #pragma clang diagnostic pop
  4649. #endif
  4650. #ifdef __clang__
  4651. #pragma clang diagnostic push
  4652. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4653. #pragma clang diagnostic ignored "-Wunused-variable"
  4654. #endif
  4655. // System.Void Boo.Lang.Runtime.RuntimeServices/<Coerce>c__AnonStorey1D::.ctor()
  4656. extern "C" IL2CPP_METHOD_ATTR void U3CCoerceU3Ec__AnonStorey1D__ctor_m2227718426 (U3CCoerceU3Ec__AnonStorey1D_t572148199 * __this, const RuntimeMethod* method)
  4657. {
  4658. {
  4659. Object__ctor_m297566312(__this, /*hidden argument*/NULL);
  4660. return;
  4661. }
  4662. }
  4663. // Boo.Lang.Runtime.DynamicDispatching.Dispatcher Boo.Lang.Runtime.RuntimeServices/<Coerce>c__AnonStorey1D::<>m__15()
  4664. extern "C" IL2CPP_METHOD_ATTR Dispatcher_t684365006 * U3CCoerceU3Ec__AnonStorey1D_U3CU3Em__15_m4262864175 (U3CCoerceU3Ec__AnonStorey1D_t572148199 * __this, const RuntimeMethod* method)
  4665. {
  4666. static bool s_Il2CppMethodInitialized;
  4667. if (!s_Il2CppMethodInitialized)
  4668. {
  4669. il2cpp_codegen_initialize_method (U3CCoerceU3Ec__AnonStorey1D_U3CU3Em__15_m4262864175_MetadataUsageId);
  4670. s_Il2CppMethodInitialized = true;
  4671. }
  4672. {
  4673. RuntimeObject * L_0 = __this->get_value_0();
  4674. Type_t * L_1 = __this->get_toType_1();
  4675. IL2CPP_RUNTIME_CLASS_INIT(RuntimeServices_t2098243569_il2cpp_TypeInfo_var);
  4676. Dispatcher_t684365006 * L_2 = RuntimeServices_CreateCoerceDispatcher_m661106792(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
  4677. return L_2;
  4678. }
  4679. }
  4680. #ifdef __clang__
  4681. #pragma clang diagnostic pop
  4682. #endif
  4683. #ifdef __clang__
  4684. #pragma clang diagnostic push
  4685. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4686. #pragma clang diagnostic ignored "-Wunused-variable"
  4687. #endif
  4688. // System.Void Boo.Lang.Runtime.RuntimeServices/<EmitImplicitConversionDispatcher>c__AnonStorey1E::.ctor()
  4689. extern "C" IL2CPP_METHOD_ATTR void U3CEmitImplicitConversionDispatcherU3Ec__AnonStorey1E__ctor_m1951951183 (U3CEmitImplicitConversionDispatcherU3Ec__AnonStorey1E_t4009522197 * __this, const RuntimeMethod* method)
  4690. {
  4691. {
  4692. Object__ctor_m297566312(__this, /*hidden argument*/NULL);
  4693. return;
  4694. }
  4695. }
  4696. // System.Object Boo.Lang.Runtime.RuntimeServices/<EmitImplicitConversionDispatcher>c__AnonStorey1E::<>m__16(System.Object,System.Object[])
  4697. extern "C" IL2CPP_METHOD_ATTR RuntimeObject * U3CEmitImplicitConversionDispatcherU3Ec__AnonStorey1E_U3CU3Em__16_m940011970 (U3CEmitImplicitConversionDispatcherU3Ec__AnonStorey1E_t4009522197 * __this, RuntimeObject * ___target0, ObjectU5BU5D_t2843939325* ___args1, const RuntimeMethod* method)
  4698. {
  4699. static bool s_Il2CppMethodInitialized;
  4700. if (!s_Il2CppMethodInitialized)
  4701. {
  4702. il2cpp_codegen_initialize_method (U3CEmitImplicitConversionDispatcherU3Ec__AnonStorey1E_U3CU3Em__16_m940011970_MetadataUsageId);
  4703. s_Il2CppMethodInitialized = true;
  4704. }
  4705. {
  4706. MethodInfo_t * L_0 = __this->get_method_0();
  4707. ObjectU5BU5D_t2843939325* L_1 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)1));
  4708. RuntimeObject * L_2 = ___target0;
  4709. NullCheck(L_1);
  4710. ArrayElementTypeCheck (L_1, L_2);
  4711. (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2);
  4712. NullCheck(L_0);
  4713. RuntimeObject * L_3 = MethodBase_Invoke_m1776411915(L_0, NULL, L_1, /*hidden argument*/NULL);
  4714. return L_3;
  4715. }
  4716. }
  4717. #ifdef __clang__
  4718. #pragma clang diagnostic pop
  4719. #endif
  4720. #ifdef __clang__
  4721. #pragma clang diagnostic push
  4722. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4723. #pragma clang diagnostic ignored "-Wunused-variable"
  4724. #endif
  4725. // System.Void Boo.Lang.Runtime.RuntimeServices/<GetExtensionMethods>c__IteratorC::.ctor()
  4726. extern "C" IL2CPP_METHOD_ATTR void U3CGetExtensionMethodsU3Ec__IteratorC__ctor_m1217043206 (U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435 * __this, const RuntimeMethod* method)
  4727. {
  4728. {
  4729. Object__ctor_m297566312(__this, /*hidden argument*/NULL);
  4730. return;
  4731. }
  4732. }
  4733. // System.Reflection.MethodInfo Boo.Lang.Runtime.RuntimeServices/<GetExtensionMethods>c__IteratorC::System.Collections.Generic.IEnumerator<System.Reflection.MethodInfo>.get_Current()
  4734. extern "C" IL2CPP_METHOD_ATTR MethodInfo_t * U3CGetExtensionMethodsU3Ec__IteratorC_System_Collections_Generic_IEnumeratorU3CSystem_Reflection_MethodInfoU3E_get_Current_m3252140135 (U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435 * __this, const RuntimeMethod* method)
  4735. {
  4736. {
  4737. MethodInfo_t * L_0 = __this->get_U24current_3();
  4738. return L_0;
  4739. }
  4740. }
  4741. // System.Object Boo.Lang.Runtime.RuntimeServices/<GetExtensionMethods>c__IteratorC::System.Collections.IEnumerator.get_Current()
  4742. extern "C" IL2CPP_METHOD_ATTR RuntimeObject * U3CGetExtensionMethodsU3Ec__IteratorC_System_Collections_IEnumerator_get_Current_m4085587551 (U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435 * __this, const RuntimeMethod* method)
  4743. {
  4744. {
  4745. MethodInfo_t * L_0 = __this->get_U24current_3();
  4746. return L_0;
  4747. }
  4748. }
  4749. // System.Collections.IEnumerator Boo.Lang.Runtime.RuntimeServices/<GetExtensionMethods>c__IteratorC::System.Collections.IEnumerable.GetEnumerator()
  4750. extern "C" IL2CPP_METHOD_ATTR RuntimeObject* U3CGetExtensionMethodsU3Ec__IteratorC_System_Collections_IEnumerable_GetEnumerator_m907415348 (U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435 * __this, const RuntimeMethod* method)
  4751. {
  4752. {
  4753. RuntimeObject* L_0 = U3CGetExtensionMethodsU3Ec__IteratorC_System_Collections_Generic_IEnumerableU3CSystem_Reflection_MethodInfoU3E_GetEnumerator_m1148048048(__this, /*hidden argument*/NULL);
  4754. return L_0;
  4755. }
  4756. }
  4757. // System.Collections.Generic.IEnumerator`1<System.Reflection.MethodInfo> Boo.Lang.Runtime.RuntimeServices/<GetExtensionMethods>c__IteratorC::System.Collections.Generic.IEnumerable<System.Reflection.MethodInfo>.GetEnumerator()
  4758. extern "C" IL2CPP_METHOD_ATTR RuntimeObject* U3CGetExtensionMethodsU3Ec__IteratorC_System_Collections_Generic_IEnumerableU3CSystem_Reflection_MethodInfoU3E_GetEnumerator_m1148048048 (U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435 * __this, const RuntimeMethod* method)
  4759. {
  4760. static bool s_Il2CppMethodInitialized;
  4761. if (!s_Il2CppMethodInitialized)
  4762. {
  4763. il2cpp_codegen_initialize_method (U3CGetExtensionMethodsU3Ec__IteratorC_System_Collections_Generic_IEnumerableU3CSystem_Reflection_MethodInfoU3E_GetEnumerator_m1148048048_MetadataUsageId);
  4764. s_Il2CppMethodInitialized = true;
  4765. }
  4766. {
  4767. int32_t* L_0 = __this->get_address_of_U24PC_2();
  4768. int32_t L_1 = Interlocked_CompareExchange_m3023855514(NULL /*static, unused*/, L_0, 0, ((int32_t)-2), /*hidden argument*/NULL);
  4769. if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)-2)))))
  4770. {
  4771. goto IL_0014;
  4772. }
  4773. }
  4774. {
  4775. return __this;
  4776. }
  4777. IL_0014:
  4778. {
  4779. U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435 * L_2 = (U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435 *)il2cpp_codegen_object_new(U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435_il2cpp_TypeInfo_var);
  4780. U3CGetExtensionMethodsU3Ec__IteratorC__ctor_m1217043206(L_2, /*hidden argument*/NULL);
  4781. return L_2;
  4782. }
  4783. }
  4784. // System.Boolean Boo.Lang.Runtime.RuntimeServices/<GetExtensionMethods>c__IteratorC::MoveNext()
  4785. extern "C" IL2CPP_METHOD_ATTR bool U3CGetExtensionMethodsU3Ec__IteratorC_MoveNext_m4162423597 (U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435 * __this, const RuntimeMethod* method)
  4786. {
  4787. static bool s_Il2CppMethodInitialized;
  4788. if (!s_Il2CppMethodInitialized)
  4789. {
  4790. il2cpp_codegen_initialize_method (U3CGetExtensionMethodsU3Ec__IteratorC_MoveNext_m4162423597_MetadataUsageId);
  4791. s_Il2CppMethodInitialized = true;
  4792. }
  4793. uint32_t V_0 = 0;
  4794. bool V_1 = false;
  4795. bool V_2 = false;
  4796. Exception_t * __last_unhandled_exception = 0;
  4797. NO_UNUSED_WARNING (__last_unhandled_exception);
  4798. Exception_t * __exception_local = 0;
  4799. NO_UNUSED_WARNING (__exception_local);
  4800. int32_t __leave_target = 0;
  4801. NO_UNUSED_WARNING (__leave_target);
  4802. {
  4803. int32_t L_0 = __this->get_U24PC_2();
  4804. V_0 = L_0;
  4805. __this->set_U24PC_2((-1));
  4806. V_1 = (bool)0;
  4807. uint32_t L_1 = V_0;
  4808. switch (L_1)
  4809. {
  4810. case 0:
  4811. {
  4812. goto IL_0023;
  4813. }
  4814. case 1:
  4815. {
  4816. goto IL_003b;
  4817. }
  4818. }
  4819. }
  4820. {
  4821. goto IL_00c2;
  4822. }
  4823. IL_0023:
  4824. {
  4825. IL2CPP_RUNTIME_CLASS_INIT(RuntimeServices_t2098243569_il2cpp_TypeInfo_var);
  4826. ExtensionRegistry_t2424660641 * L_2 = ((RuntimeServices_t2098243569_StaticFields*)il2cpp_codegen_static_fields_for(RuntimeServices_t2098243569_il2cpp_TypeInfo_var))->get__extensions_3();
  4827. NullCheck(L_2);
  4828. RuntimeObject* L_3 = ExtensionRegistry_get_Extensions_m3605511872(L_2, /*hidden argument*/NULL);
  4829. NullCheck(L_3);
  4830. RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Reflection.MemberInfo>::GetEnumerator() */, IEnumerable_1_t2359854630_il2cpp_TypeInfo_var, L_3);
  4831. __this->set_U3CU24s_49U3E__0_0(L_4);
  4832. V_0 = ((int32_t)-3);
  4833. }
  4834. IL_003b:
  4835. try
  4836. { // begin try (depth: 1)
  4837. {
  4838. uint32_t L_5 = V_0;
  4839. switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1)))
  4840. {
  4841. case 0:
  4842. {
  4843. goto IL_008d;
  4844. }
  4845. }
  4846. }
  4847. IL_0047:
  4848. {
  4849. goto IL_008d;
  4850. }
  4851. IL_004c:
  4852. {
  4853. RuntimeObject* L_6 = __this->get_U3CU24s_49U3E__0_0();
  4854. NullCheck(L_6);
  4855. MemberInfo_t * L_7 = InterfaceFuncInvoker0< MemberInfo_t * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Reflection.MemberInfo>::get_Current() */, IEnumerator_1_t3812572209_il2cpp_TypeInfo_var, L_6);
  4856. __this->set_U3CmemberU3E__1_1(L_7);
  4857. MemberInfo_t * L_8 = __this->get_U3CmemberU3E__1_1();
  4858. NullCheck(L_8);
  4859. int32_t L_9 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Reflection.MemberTypes System.Reflection.MemberInfo::get_MemberType() */, L_8);
  4860. if ((!(((uint32_t)L_9) == ((uint32_t)8))))
  4861. {
  4862. goto IL_008d;
  4863. }
  4864. }
  4865. IL_006e:
  4866. {
  4867. MemberInfo_t * L_10 = __this->get_U3CmemberU3E__1_1();
  4868. __this->set_U24current_3(((MethodInfo_t *)CastclassClass((RuntimeObject*)L_10, MethodInfo_t_il2cpp_TypeInfo_var)));
  4869. __this->set_U24PC_2(1);
  4870. V_1 = (bool)1;
  4871. IL2CPP_LEAVE(0xC4, FINALLY_00a2);
  4872. }
  4873. IL_008d:
  4874. {
  4875. RuntimeObject* L_11 = __this->get_U3CU24s_49U3E__0_0();
  4876. NullCheck(L_11);
  4877. bool L_12 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_11);
  4878. if (L_12)
  4879. {
  4880. goto IL_004c;
  4881. }
  4882. }
  4883. IL_009d:
  4884. {
  4885. IL2CPP_LEAVE(0xBB, FINALLY_00a2);
  4886. }
  4887. } // end try (depth: 1)
  4888. catch(Il2CppExceptionWrapper& e)
  4889. {
  4890. __last_unhandled_exception = (Exception_t *)e.ex;
  4891. goto FINALLY_00a2;
  4892. }
  4893. FINALLY_00a2:
  4894. { // begin finally (depth: 1)
  4895. {
  4896. bool L_13 = V_1;
  4897. if (!L_13)
  4898. {
  4899. goto IL_00a6;
  4900. }
  4901. }
  4902. IL_00a5:
  4903. {
  4904. IL2CPP_END_FINALLY(162)
  4905. }
  4906. IL_00a6:
  4907. {
  4908. RuntimeObject* L_14 = __this->get_U3CU24s_49U3E__0_0();
  4909. if (L_14)
  4910. {
  4911. goto IL_00af;
  4912. }
  4913. }
  4914. IL_00ae:
  4915. {
  4916. IL2CPP_END_FINALLY(162)
  4917. }
  4918. IL_00af:
  4919. {
  4920. RuntimeObject* L_15 = __this->get_U3CU24s_49U3E__0_0();
  4921. NullCheck(L_15);
  4922. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_15);
  4923. IL2CPP_END_FINALLY(162)
  4924. }
  4925. } // end finally (depth: 1)
  4926. IL2CPP_CLEANUP(162)
  4927. {
  4928. IL2CPP_JUMP_TBL(0xC4, IL_00c4)
  4929. IL2CPP_JUMP_TBL(0xBB, IL_00bb)
  4930. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  4931. }
  4932. IL_00bb:
  4933. {
  4934. __this->set_U24PC_2((-1));
  4935. }
  4936. IL_00c2:
  4937. {
  4938. return (bool)0;
  4939. }
  4940. IL_00c4:
  4941. {
  4942. return (bool)1;
  4943. }
  4944. // Dead block : IL_00c6: ldloc.2
  4945. }
  4946. // System.Void Boo.Lang.Runtime.RuntimeServices/<GetExtensionMethods>c__IteratorC::Dispose()
  4947. extern "C" IL2CPP_METHOD_ATTR void U3CGetExtensionMethodsU3Ec__IteratorC_Dispose_m3192498793 (U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435 * __this, const RuntimeMethod* method)
  4948. {
  4949. static bool s_Il2CppMethodInitialized;
  4950. if (!s_Il2CppMethodInitialized)
  4951. {
  4952. il2cpp_codegen_initialize_method (U3CGetExtensionMethodsU3Ec__IteratorC_Dispose_m3192498793_MetadataUsageId);
  4953. s_Il2CppMethodInitialized = true;
  4954. }
  4955. uint32_t V_0 = 0;
  4956. Exception_t * __last_unhandled_exception = 0;
  4957. NO_UNUSED_WARNING (__last_unhandled_exception);
  4958. Exception_t * __exception_local = 0;
  4959. NO_UNUSED_WARNING (__exception_local);
  4960. int32_t __leave_target = 0;
  4961. NO_UNUSED_WARNING (__leave_target);
  4962. {
  4963. int32_t L_0 = __this->get_U24PC_2();
  4964. V_0 = L_0;
  4965. __this->set_U24PC_2((-1));
  4966. uint32_t L_1 = V_0;
  4967. switch (L_1)
  4968. {
  4969. case 0:
  4970. {
  4971. goto IL_003b;
  4972. }
  4973. case 1:
  4974. {
  4975. goto IL_0021;
  4976. }
  4977. }
  4978. }
  4979. {
  4980. goto IL_003b;
  4981. }
  4982. IL_0021:
  4983. try
  4984. { // begin try (depth: 1)
  4985. IL2CPP_LEAVE(0x3B, FINALLY_0026);
  4986. } // end try (depth: 1)
  4987. catch(Il2CppExceptionWrapper& e)
  4988. {
  4989. __last_unhandled_exception = (Exception_t *)e.ex;
  4990. goto FINALLY_0026;
  4991. }
  4992. FINALLY_0026:
  4993. { // begin finally (depth: 1)
  4994. {
  4995. RuntimeObject* L_2 = __this->get_U3CU24s_49U3E__0_0();
  4996. if (L_2)
  4997. {
  4998. goto IL_002f;
  4999. }
  5000. }
  5001. IL_002e:
  5002. {
  5003. IL2CPP_END_FINALLY(38)
  5004. }
  5005. IL_002f:
  5006. {
  5007. RuntimeObject* L_3 = __this->get_U3CU24s_49U3E__0_0();
  5008. NullCheck(L_3);
  5009. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_3);
  5010. IL2CPP_END_FINALLY(38)
  5011. }
  5012. } // end finally (depth: 1)
  5013. IL2CPP_CLEANUP(38)
  5014. {
  5015. IL2CPP_JUMP_TBL(0x3B, IL_003b)
  5016. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  5017. }
  5018. IL_003b:
  5019. {
  5020. return;
  5021. }
  5022. }
  5023. // System.Void Boo.Lang.Runtime.RuntimeServices/<GetExtensionMethods>c__IteratorC::Reset()
  5024. extern "C" IL2CPP_METHOD_ATTR void U3CGetExtensionMethodsU3Ec__IteratorC_Reset_m865776842 (U3CGetExtensionMethodsU3Ec__IteratorC_t3368530435 * __this, const RuntimeMethod* method)
  5025. {
  5026. static bool s_Il2CppMethodInitialized;
  5027. if (!s_Il2CppMethodInitialized)
  5028. {
  5029. il2cpp_codegen_initialize_method (U3CGetExtensionMethodsU3Ec__IteratorC_Reset_m865776842_MetadataUsageId);
  5030. s_Il2CppMethodInitialized = true;
  5031. }
  5032. {
  5033. NotSupportedException_t1314879016 * L_0 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var);
  5034. NotSupportedException__ctor_m2730133172(L_0, /*hidden argument*/NULL);
  5035. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0,U3CGetExtensionMethodsU3Ec__IteratorC_Reset_m865776842_RuntimeMethod_var);
  5036. }
  5037. }
  5038. #ifdef __clang__
  5039. #pragma clang diagnostic pop
  5040. #endif