Microsoft-Scripting-Chakra-Instrumentation.man 172 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368
  1. <?xml version='1.0' encoding='utf-8' standalone='yes'?>
  2. <!-- Microsoft Scripting Instrumentation Manifest for Chakra -->
  3. <instrumentationManifest
  4. xmlns="http://schemas.microsoft.com/win/2004/08/events"
  5. xmlns:win="http://manifests.microsoft.com/win/2004/08/windows/events"
  6. xmlns:xs="http://www.w3.org/2001/XMLSchema">
  7. <instrumentation>
  8. <events
  9. xmlns="http://schemas.microsoft.com/win/2004/08/events"
  10. xmlns:win="http://manifests.microsoft.com/win/2004/08/windows/events"
  11. xmlns:xs="http://www.w3.org/2001/XMLSchema"
  12. >
  13. <provider
  14. guid="{57277741-3638-4A4B-BDBA-0AC6E45DA56C}"
  15. message="$(string.JScriptProvider.Name)"
  16. messageFileName="%SystemRoot%\system32\Chakra.dll"
  17. name="Microsoft-JScript"
  18. resourceFileName="%SystemRoot%\system32\Chakra.dll"
  19. symbol="PROVIDER_JSCRIPT9"
  20. >
  21. <keywords>
  22. <keyword
  23. mask="0x1"
  24. name="JScriptRuntime"
  25. symbol="JSCRIPT_RUNTIME_KEYWORD"
  26. />
  27. <keyword
  28. mask="0x2"
  29. name="JScriptStartRundown"
  30. symbol="JSCRIPT_RUNDOWNSTART_KEYWORD"
  31. />
  32. <keyword
  33. mask="0x4"
  34. name="JScriptEndRundown"
  35. symbol="JSCRIPT_RUNDOWNEND_KEYWORD"
  36. />
  37. <keyword
  38. mask="0x8"
  39. name="JScriptGCBucketStats"
  40. symbol="JSCRIPT_GC_BUCKET_STATS_KEYWORD"
  41. />
  42. <keyword
  43. mask="0x10"
  44. name="JScriptProjection"
  45. symbol="JSCRIPT_PROJECTION_KEYWORD"
  46. />
  47. <keyword
  48. mask="0x20"
  49. name="JScriptFrontend"
  50. symbol="JSCRIPT_FRONTED_KEYWORD"
  51. />
  52. <keyword
  53. mask="0x40"
  54. name="JScriptGarbageCollection"
  55. symbol="JSCRIPT_GC_KEYWORD"
  56. />
  57. <keyword
  58. mask="0x80"
  59. name="JScriptProfile"
  60. symbol="JSCRIPT_PROFILE_PERSISTENCE"
  61. />
  62. <keyword
  63. mask="0x100"
  64. name="JscriptBackend"
  65. symbol="JSCRIPT_BACKEND"
  66. />
  67. <keyword
  68. mask="0x200"
  69. name="JscriptJit"
  70. symbol="JSCRIPT_JIT"
  71. />
  72. <keyword
  73. mask="0x400"
  74. name="JScriptMemoryTracing"
  75. symbol="JSCRIPT_MEMORY_TRACING_KEYWORD"
  76. />
  77. <keyword
  78. mask="0x800"
  79. name="JScriptObjectAllocation"
  80. symbol="JSCRIPT_OBJECT_ALLOCATION_KEYWORD"
  81. />
  82. <keyword
  83. mask="0x1000"
  84. name="JScriptExternalReferenceAddRef"
  85. symbol="JSCRIPT_EXTERNAL_REFERENCE_ADDREF_KEYWORD"
  86. />
  87. <keyword
  88. mask="0x2000"
  89. name="JScriptObjectCleanup"
  90. symbol="JSCRIPT_OBJECT_CLEANUP_KEYWORD"
  91. />
  92. <keyword
  93. mask="0x4000"
  94. name="JScriptExternalReferenceRelease"
  95. symbol="JSCRIPT_EXTERNAL_REFERENCE_RELEASE_KEYWORD"
  96. />
  97. <keyword
  98. mask="0x8000"
  99. name="JScriptAsyncCausality"
  100. symbol="JSCRIPT_ASYNC_CAUSALITY"
  101. />
  102. <keyword
  103. mask="0x10000"
  104. name="JScriptByteCode"
  105. symbol="JSCRIPT_BYTE_CODE_KEYWORD"
  106. />
  107. <keyword
  108. mask="0x20000"
  109. name="JScriptHosting"
  110. symbol="JSCRIPT_HOSTING"
  111. />
  112. <keyword
  113. mask="0x40000"
  114. name="JScriptStackTrace"
  115. symbol="JSCRIPT_STACKTRACE_KEYWORD"
  116. />
  117. <!-- JScriptAsyncCausality_V2 : versioned from JScriptAsyncCausality (can be used in debug/non-debug mode) -->
  118. <keyword
  119. mask="0x80000"
  120. name="JScriptAsyncCausality_V2"
  121. symbol="JSCRIPT_ASYNC_CAUSALITY_V2"
  122. />
  123. <keyword
  124. mask="0x100000"
  125. name="JScriptSourceMapping"
  126. symbol="JSCRIPT_SOURCEMAPPING_KEYWORD"
  127. />
  128. <keyword
  129. mask="0x200000"
  130. name="MemProtectGarbageCollection"
  131. symbol="MEMPROTECT_GC_KEYWORD"
  132. />
  133. <keyword
  134. mask="0x400000"
  135. name="MemProtectObjectAllocation"
  136. symbol="MEMPROTECT_OBJECT_ALLOCATION_KEYWORD"
  137. />
  138. <keyword
  139. mask="0x800000"
  140. name="MemProtectHeapSize"
  141. symbol="MEMPROTECT_HEAP_SIZE_KEYWORD"
  142. />
  143. <keyword
  144. mask="0x1000000"
  145. name="Internal"
  146. symbol="INTERNAL_KEYWORD"
  147. />
  148. <keyword
  149. mask="0x2000000"
  150. name="MemProtectGCBucketStats"
  151. symbol="MEMPROTECT_GC_BUCKET_STATS_KEYWORD"
  152. />
  153. </keywords>
  154. <tasks>
  155. <task
  156. name="MethodRuntime"
  157. symbol="JSCRIPT_METHOD_RUNTIME_TASK"
  158. value="1"
  159. >
  160. <opcodes>
  161. <opcode
  162. name="MethodLoad"
  163. symbol="JSCRIPT_METHOD_METHODLOAD_OPCODE"
  164. value="10"
  165. />
  166. <opcode
  167. name="MethodUnload"
  168. symbol="JSCRIPT_METHOD_METHODUNLOAD_OPCODE"
  169. value="11"
  170. />
  171. </opcodes>
  172. </task>
  173. <task
  174. name="ScriptContextRuntime"
  175. symbol="JSCRIPT_SCRIPTCONTEXT_RUNTIME_TASK"
  176. value="2"
  177. >
  178. <opcodes>
  179. <opcode
  180. name="ScriptContextLoad"
  181. symbol="JSCRIPT_SCRIPTCONTEXT_LOAD_OPCODE"
  182. value="10"
  183. />
  184. <opcode
  185. name="ScriptContextUnload"
  186. symbol="JSCRIPT_SCRIPTCONTEXT_UNLOAD_OPCODE"
  187. value="11"
  188. />
  189. <opcode
  190. name="SourceLoad"
  191. symbol="JSCRIPT_SOURCELOAD_OPCODE"
  192. value="12"
  193. />
  194. <opcode
  195. name="SourceUnload"
  196. symbol="JSCRIPT_SOURCEUNLOAD_OPCODE"
  197. value="13"
  198. />
  199. <opcode
  200. name="ScriptContextOnStartupComplete"
  201. symbol="JSCRIPT_SCRIPTCONTEXT_ON_STARTUP_COMPLETE_OPCODE"
  202. value="14"
  203. />
  204. </opcodes>
  205. </task>
  206. <task
  207. name="MethodRundown"
  208. symbol="JSCRIPT_METHOD_RUNDOWN_TASK"
  209. value="3"
  210. >
  211. <opcodes>
  212. <opcode
  213. name="MethodDCStart"
  214. symbol="JSCRIPT_METHODDC_METHODDCSTART_OPCODE"
  215. value="10"
  216. />
  217. <opcode
  218. name="MethodDCEnd"
  219. symbol="JSCRIPT_METHODDC_METHODDCEND_OPCODE"
  220. value="11"
  221. />
  222. <opcode
  223. name="DCStartComplete"
  224. symbol="JSCRIPT_METHODDC_DCSTARTCOMPLETE_OPCODE"
  225. value="12"
  226. />
  227. <opcode
  228. name="DCEndComplete"
  229. symbol="JSCRIPT_METHODDC_DCENDCOMPLETE_OPCODE"
  230. value="13"
  231. />
  232. <opcode
  233. name="DCStartInit"
  234. symbol="JSCRIPT_METHODDC_DCSTARTINIT_OPCODE"
  235. value="14"
  236. />
  237. <opcode
  238. name="DCEndInit"
  239. symbol="JSCRIPT_METHODDC_DCENDINIT_OPCODE"
  240. value="15"
  241. />
  242. </opcodes>
  243. </task>
  244. <task
  245. name="ScriptContextRundown"
  246. symbol="JSCRIPT_SCRIPTCONTEXT_RUNDOWN_TASK"
  247. value="4"
  248. >
  249. <opcodes>
  250. <opcode
  251. name="ScriptContextDCStart"
  252. symbol="JSCRIPT_SCRIPTCONTEXT_DCSTART_OPCODE"
  253. value="10"
  254. />
  255. <opcode
  256. name="ScriptContextDCEnd"
  257. symbol="JSCRIPT_SCRIPTCONTEXT_DCEND_OPCODE"
  258. value="11"
  259. />
  260. <opcode
  261. name="SourceDCStart"
  262. symbol="JSCRIPT_SOURCE_DCSTART_OPCODE"
  263. value="12"
  264. />
  265. <opcode
  266. name="SourceDCEnd"
  267. symbol="JSCRIPT_SOURCE_DCEND_OPCODE"
  268. value="13"
  269. />
  270. </opcodes>
  271. </task>
  272. <task
  273. eventGUID="{65E6EC90-7758-4FA8-B88A-261197151E49}"
  274. name="Jscript_Projection_ResolveType"
  275. value="5"
  276. />
  277. <task
  278. eventGUID="{fa44B46D-38DF-4cC2-0A76-167DE98FA621}"
  279. name="Jscript_Projection_ConstructRuntimeClass"
  280. value="6"
  281. />
  282. <task
  283. eventGUID="{e044B46D-38DF-4cC2-0A76-167DE98FB661}"
  284. name="Jscript_Projection_MethodCall"
  285. value="7"
  286. />
  287. <task
  288. eventGUID="{C944B46D-38DF-4cC2-0A86-167DE98FA621}"
  289. name="Jscript_Projection_RawMethodCall"
  290. value="8"
  291. />
  292. <task
  293. eventGUID="{9A94B47D-8aDF-5DC2-0A86-167DE98FA623}"
  294. name="Jscript_Projection_InvokesJsDelegate"
  295. value="9"
  296. />
  297. <task
  298. eventGUID="{9A94B47D-FDa8-5DC2-0A86-167DE98FA624}"
  299. name="Jscript_Projection_InvokeNativeDelegate"
  300. value="10"
  301. />
  302. <task
  303. eventGUID="{9A9c947D-8aDF-5DC2-0A86-167DE98FAD23}"
  304. name="Jscript_Projection_AddEventListener"
  305. value="11"
  306. />
  307. <task
  308. eventGUID="{ab9c947D-8aeF-5DC2-0A86-167DE98FAD02}"
  309. name="Jscript_Projection_RemoveEventListener"
  310. value="12"
  311. />
  312. <task
  313. eventGUID="{6D44B4fA-38DF-4cC2-0A76-167DE98FA631}"
  314. name="Jscript_Projection_GetTypeMetaDataInformation"
  315. value="13"
  316. />
  317. <task
  318. eventGUID="{4C42D2AC-7B3E-48AB-91CE-C7E3FFACF8BF}"
  319. name="Jscript_Projection_SetEventHandler"
  320. value="14"
  321. />
  322. <task
  323. eventGUID="{B4FB623E-A94C-4226-B0E4-FC8253F29DE5}"
  324. name="Jscript_Projection_RemoveAllEventsAndEventHandlers"
  325. value="15"
  326. />
  327. <task
  328. eventGUID="{F0C3C89F-C1D3-46E6-8523-2D4B71E29194}"
  329. name="Jscript_Projection_InvokeEvent"
  330. value="16"
  331. />
  332. <task
  333. eventGUID="{670B4B95-BAF8-42E1-A1FD-BFD478CBF720}"
  334. name="Jscript_Projection_InvokeEventEvParamPrep"
  335. value="17"
  336. />
  337. <task
  338. eventGUID="{90DF5CDF-6EED-47A4-B698-548C7ABF4FE9}"
  339. name="Jscript_Projection_GetExprFromConcreteTypeName"
  340. value="18"
  341. />
  342. <task
  343. eventGUID="{17395D83-1E5C-43AD-A5D4-41631D334F3C}"
  344. name="Jscript_Projection_GetTypeFromTypeNameParts"
  345. value="19"
  346. />
  347. <task
  348. eventGUID="{97B5C7A6-8CC5-4E4D-BB85-3887ED687304}"
  349. name="Jscript_Projection_ReferenceOrArrayGetValue"
  350. value="20"
  351. />
  352. <task
  353. eventGUID="{8A960840-27EA-487F-B7C0-7A6E8764563E}"
  354. name="Jscript_Projection_PropertyValueVarFromGRCN"
  355. value="21"
  356. />
  357. <task
  358. eventGUID="{9FCF06D2-7907-46B4-A2E4-4B5632945965}"
  359. name="Jscript_Projection_VarFromGRCN"
  360. value="22"
  361. />
  362. <task
  363. eventGUID="{1EBC5E72-4C4A-455E-A9AA-53C11B32E3E1}"
  364. name="Jscript_Projection_WriteIReference"
  365. value="23"
  366. />
  367. <task
  368. eventGUID="{48B75069-B48D-404B-9545-9240B69CB7F3}"
  369. name="Jscript_Projection_WriteInspectable"
  370. value="24"
  371. />
  372. <task
  373. eventGUID="{60990A40-3DC5-418E-8C2E-08E5FADE7F8D}"
  374. name="Jscript_Projection_GetNonArrayTypeAsPropertyValue"
  375. value="25"
  376. />
  377. <task
  378. eventGUID="{3D8FEDCE-CF8E-4D65-8EB9-BD1CBBC890D5}"
  379. name="Jscript_Projection_GetNonArrayBasicTypeAsPropertyValue"
  380. value="26"
  381. />
  382. <task
  383. eventGUID="{1DC3AB0F-3C64-405A-9852-5895C133F9A8}"
  384. name="Jscript_Projection_GetTypedArrayAsPropertyValue"
  385. value="27"
  386. />
  387. <task
  388. eventGUID="{4110D5BD-5FF8-4FF2-A33D-D1B92B127606}"
  389. name="Jscript_Projection_GetBasicTypedArrayAsPropertyValue"
  390. value="28"
  391. />
  392. <task
  393. name="GenerateBytecodeMethod"
  394. value="29"
  395. />
  396. <task
  397. name="ParseMethod"
  398. value="30"
  399. />
  400. <task
  401. eventGUID="{56aa7888-cd74-471f-b480-25d257cedcd4}"
  402. name="Jscript_GC_ResetMarks"
  403. value="31"
  404. />
  405. <task
  406. eventGUID="{56aa7888-cd74-471f-b480-25d257cedcd5}"
  407. name="Jscript_GC_ScanRoots"
  408. value="32"
  409. />
  410. <task
  411. eventGUID="{56aa7888-cd74-471f-b480-25d257cedcd6}"
  412. name="Jscript_GC_ScanStack"
  413. value="33"
  414. />
  415. <task
  416. eventGUID="{56aa7888-cd74-471f-b480-25d257cedcd7}"
  417. name="Jscript_GC_Mark"
  418. value="34"
  419. />
  420. <task
  421. eventGUID="{56aa7888-cd74-471f-b480-25d257cedcd8}"
  422. name="Jscript_GC_Rescan"
  423. value="35"
  424. />
  425. <task
  426. eventGUID="{56aa7888-cd74-471f-b480-25d257cedcd9}"
  427. name="Jscript_GC_Sweep"
  428. value="36"
  429. />
  430. <task
  431. eventGUID="{56aa7888-cd74-471f-b480-25d257cedcda}"
  432. name="Jscript_GC_SetupBackgroundSweep"
  433. value="37"
  434. />
  435. <task
  436. eventGUID="{56aa7888-cd74-471f-b480-25d257cedcdb}"
  437. name="Jscript_GC_BackgroundSweep"
  438. value="38"
  439. />
  440. <task
  441. eventGUID="{56aa7888-cd74-471f-b480-25d257cedcdc}"
  442. name="Jscript_GC_TransferSweptObjects"
  443. value="39"
  444. />
  445. <task
  446. eventGUID="{56aa7888-cd74-471f-b480-25d257cedcdd}"
  447. name="Jscript_GC_Dispose"
  448. value="40"
  449. />
  450. <task
  451. eventGUID="{56aa7888-cd74-471f-b480-25d257cedcde}"
  452. name="Jscript_GC_BackgroundMark"
  453. value="41"
  454. />
  455. <task
  456. eventGUID="{56aa7888-cd74-471f-b480-25d257cedcdf}"
  457. name="Jscript_GC_ResetWriteWatch"
  458. value="42"
  459. />
  460. <task
  461. name="Jscript_Profile_Persistence"
  462. value="43"
  463. >
  464. <opcodes>
  465. <opcode
  466. name="Load"
  467. symbol="JSCRIPT_LOAD"
  468. value="15"
  469. />
  470. <opcode
  471. name="Save"
  472. symbol="JSCRIPT_SAVE"
  473. value="16"
  474. />
  475. </opcodes>
  476. </task>
  477. <task
  478. name="Jscript_Backend_Inline"
  479. value="44"
  480. />
  481. <task
  482. name="Jscript_Method_Jit"
  483. value="45"
  484. >
  485. <opcodes>
  486. <opcode
  487. name="Start"
  488. symbol="JSCRIPT_JIT_START"
  489. value="17"
  490. />
  491. <opcode
  492. name="Stop"
  493. symbol="JSCRIPT_JIT_STOP"
  494. value="18"
  495. />
  496. <opcode
  497. name="Queue"
  498. symbol="JSCRIPT_JIT_QUEUE"
  499. value="19"
  500. />
  501. <opcode
  502. name="Dequeue"
  503. symbol="JSCRIPT_JIT_DEQUEUE"
  504. value="20"
  505. />
  506. </opcodes>
  507. </task>
  508. <task
  509. eventGUID="{196a6ce6-8826-4d5f-9b33-55ba2d3accbe}"
  510. name="Jscript_GC_IdleCollect"
  511. value="46"
  512. />
  513. <task
  514. eventGUID="{313cb172-9dd2-4f8c-a41f-baf742647490}"
  515. name="Jscript_Page_Allocator_Size"
  516. symbol="JSCRIPT_PAGE_ALLOCATOR_SIZE_TASK"
  517. value="47"
  518. >
  519. <opcodes>
  520. <opcode
  521. name="UsedPageSize"
  522. symbol="JSCRIPT_PAGE_USED_SIZE"
  523. value="10"
  524. />
  525. </opcodes>
  526. </task>
  527. <task
  528. eventGUID="{2d68a40e-b890-4c6f-8c2e-b4c856cc21cf}"
  529. name="Jscript_Recycler_Allocation"
  530. value="48"
  531. >
  532. <opcodes>
  533. <opcode
  534. name="Free_Memory"
  535. symbol="JSCRIPT_FREE_MEMORY"
  536. value="10"
  537. />
  538. <opcode
  539. name="Free_Memory_Block"
  540. symbol="JSCRIPT_FREE_MEMORY_BLOCK"
  541. value="11"
  542. />
  543. <opcode
  544. name="Allocate_Object"
  545. symbol="JSCRIPT_ALLOCATE_OBJECT"
  546. value="12"
  547. />
  548. <opcode
  549. name="Allocate_Array"
  550. symbol="JSCRIPT_ALLOCATE_ARRAY"
  551. value="13"
  552. />
  553. <opcode
  554. name="Allocate_Function"
  555. symbol="JSCRIPT_ALLOCATE_Function"
  556. value="14"
  557. />
  558. <opcode
  559. name="Allocate_DOM_Object"
  560. symbol="JSCRIPT_ALLOCATE_DOM_OBJECT"
  561. value="15"
  562. />
  563. <opcode
  564. name="Allocate_WinRT_JSProxy_Object"
  565. symbol="JSCRIPT_ALLOCATE_WINRT_JSPROXY_OBJECT"
  566. value="16"
  567. />
  568. <opcode
  569. name="Allocate_PixelArray"
  570. symbol="JSCRIPT_ALLOCATE_PIXELARRAY"
  571. value="17"
  572. />
  573. <opcode
  574. name="External_AddRef"
  575. symbol="JSCRIPT_ALLOCATE_EXTERNAL_ADDREF"
  576. value="18"
  577. />
  578. <opcode
  579. name="External_Release"
  580. symbol="JSCRIPT_ALLOCATE_EXTERNAL_RELEASE"
  581. value="19"
  582. />
  583. <opcode
  584. name="Allocate_WinRT_RuntimeClass_Object"
  585. symbol="JSCRIPT_ALLOCATE_WINRT_RUNTIMECLASS_OBJECT"
  586. value="20"
  587. />
  588. <opcode
  589. name="Allocate_WinRT_Namespace_Object"
  590. symbol="JSCRIPT_ALLOCATE_WINRT_NAMESPACE_OBJECT"
  591. value="21"
  592. />
  593. <opcode
  594. name="Allocate_WinRT_Struct_Object"
  595. symbol="JSCRIPT_ALLOCATE_WINRT_STRUCT_OBJECT"
  596. value="22"
  597. />
  598. <opcode
  599. name="Allocate_WinRT_Enum_Object"
  600. symbol="JSCRIPT_ALLOCATE_WINRT_ENUM_OBJECT"
  601. value="23"
  602. />
  603. <opcode
  604. name="Allocate_WinRT_TypedArray_Object"
  605. symbol="JSCRIPT_ALLOCATE_WINRT_TYPEDARRAY_OBJECT"
  606. value="24"
  607. />
  608. <opcode
  609. name="Allocate_WinRT_Delegate_Object"
  610. symbol="JSCRIPT_ALLOCATE_WINRT_DELEGATE_OBJECT"
  611. value="25"
  612. />
  613. <opcode
  614. name="Allocate_WinRT_EventHandler_Object"
  615. symbol="JSCRIPT_ALLOCATE_WINRT_EVENTHANLDER_OBJECT"
  616. value="26"
  617. />
  618. <opcode
  619. name="Allocate_WinRT_Collections_Object"
  620. symbol="JSCRIPT_ALLOCATE_WINRT_COLLECTIONS_OBJECT"
  621. value="27"
  622. />
  623. <opcode
  624. name="Allocate_WinRT_PropertyValue_Object"
  625. symbol="JSCRIPT_ALLOCATE_WINRT_PROPERTYVALUE_OBJECT"
  626. value="28"
  627. />
  628. <opcode
  629. name="Free_WinRT_Delegate_Object"
  630. symbol="JSCRIPT_FREE_WINRT_DELEGATE_OBJECT"
  631. value="29"
  632. />
  633. <opcode
  634. name="Free_WinRT_EventHandler_Object"
  635. symbol="JSCRIPT_FREE_WINRT_EVENTHANLDER_OBJECT"
  636. value="30"
  637. />
  638. <opcode
  639. name="Free_WinRT_Collections_Object"
  640. symbol="JSCRIPT_FREE_WINRT_COLLECTIONS_OBJECT"
  641. value="31"
  642. />
  643. <opcode
  644. name="Free_WinRT_PropertyValue_Object"
  645. symbol="JSCRIPT_FREE_WINRT_PROPERTYVALUE_OBJECT"
  646. value="32"
  647. />
  648. </opcodes>
  649. </task>
  650. <task
  651. eventGUID="{66aa7888-cd74-471f-b480-25d257cedcd9}"
  652. name="Jscript_GC_SweepWeakRef"
  653. value="49"
  654. />
  655. <task
  656. eventGUID="{66aa7888-cd74-471f-b480-25d257cedcda}"
  657. name="Jscript_GC_ProcessTrackedObject"
  658. value="50"
  659. />
  660. <task
  661. eventGUID="{66aa7888-cd74-471f-b480-25d257cedcdb}"
  662. name="Jscript_GC_ProcessClientTrackedObject"
  663. value="51"
  664. />
  665. <task
  666. eventGUID="{66aa7888-cd74-471f-b480-25d257cedcdc}"
  667. name="Jscript_GC_BackgroundZeroPage"
  668. value="52"
  669. />
  670. <task
  671. eventGUID="{66aa7888-cd74-471f-b480-25d257cedcdd}"
  672. name="Jscript_GC_FlushZeroPage"
  673. value="53"
  674. />
  675. <task
  676. eventGUID="{66aa7888-cd74-471f-b480-25d257cedcde}"
  677. name="Jscript_GC_DecommitConcurrentCollectPageAllocator"
  678. value="54"
  679. />
  680. <task
  681. eventGUID="{66aa7888-cd74-471f-b480-25d257cedcdf}"
  682. name="Jscript_GC_SweepPartialReusePage"
  683. value="55"
  684. />
  685. <task
  686. eventGUID="{66aa7888-cd74-471f-b480-25d257cedce0}"
  687. name="Jscript_GC_BackgroundRescan"
  688. value="56"
  689. />
  690. <task
  691. eventGUID="{66aa7888-cd74-471f-b480-25d257cedce1}"
  692. name="Jscript_GC_BackgroundResetWriteWatch"
  693. value="57"
  694. />
  695. <task
  696. eventGUID="{56aa7888-cd74-471f-b480-25d257cedce2}"
  697. name="Jscript_GC_BackgroundScanRoots"
  698. value="58"
  699. />
  700. <task
  701. eventGUID="{56aa7888-cd74-471f-b480-25d257cedce3}"
  702. name="Jscript_GC_BackgroundResetMarks"
  703. value="59"
  704. />
  705. <task
  706. eventGUID="{56aa7888-cd74-471f-b480-25d257cedce4}"
  707. name="Jscript_GC_RescanMarkWait"
  708. value="60"
  709. />
  710. <task
  711. eventGUID="{56aa7888-cd74-471f-b480-25d257cedce5}"
  712. name="Jscript_GC_SynchronousMarkWait"
  713. value="61"
  714. />
  715. <task
  716. eventGUID="{56aa7888-cd74-471f-b480-25d257cedce6}"
  717. name="Jscript_GC_FinishConcurrentWait"
  718. value="62"
  719. />
  720. <task
  721. eventGUID="{56aa7888-cd74-471f-b480-25d257cedce7}"
  722. name="Jscript_GC_EndMarkOnLowMemory"
  723. value="63"
  724. />
  725. <task
  726. eventGUID="{56aa7888-cd74-471f-b480-25d257cedce8}"
  727. name="Jscript_AsyncCausality_StackTrace"
  728. value="64"
  729. />
  730. <task
  731. eventGUID="{457D74E6-78AD-49fd-8DD1-C185896E7466}"
  732. name="JScript_ByteCodeDeserialize"
  733. value="65"
  734. />
  735. <task
  736. eventGUID="{56aa7888-cd74-471f-b480-25d257cedce9}"
  737. name="Jscript_Hosting_BinaryInconsistency"
  738. value="66"
  739. />
  740. <task
  741. eventGUID="{3993e20a-ba62-4adc-8f5c-e55166d08200}"
  742. name="Jscript_Hosting_BinaryConsistencyInfo"
  743. value="67"
  744. />
  745. <task
  746. eventGUID="{4B86D08B-2864-421C-AFB1-BF58AE05044A}"
  747. name="Jscript_StackTrace"
  748. value="68"
  749. />
  750. <task
  751. eventGUID="{cca4995d-2c97-43f6-a974-e11e9fcbab79}"
  752. name="Jscript_Host_Native"
  753. value="69"
  754. />
  755. <task
  756. eventGUID="{4B86D005-2864-421C-AFB1-BF58AE8B044A}"
  757. name="Jscript_SourceMapping"
  758. value="70"
  759. />
  760. <task
  761. eventGUID="{56aa7888-cd74-471f-b480-25d257cedcea}"
  762. name="Jscript_GC_ParallelMark"
  763. value="71"
  764. />
  765. <task
  766. eventGUID="{56aa7888-cd74-471f-b480-25d257cedceb}"
  767. name="Jscript_GC_BackgroundParallelMark"
  768. value="72"
  769. />
  770. <task
  771. eventGUID="{808dc352-cfa5-4912-9907-9e29361d1c08}"
  772. name="Memprotect_GC_ResetMarks"
  773. value="73"
  774. />
  775. <task
  776. eventGUID="{cd3b3d62-3f3e-47ee-857c-bad3ad94dbcd}"
  777. name="Memprotect_GC_ScanRoots"
  778. value="74"
  779. />
  780. <task
  781. eventGUID="{a11cc8a8-fef7-4a9b-b24e-d7fc02a68df5}"
  782. name="Memprotect_GC_ScanStack"
  783. value="75"
  784. />
  785. <task
  786. eventGUID="{cb6d6f0f-27ae-4f00-95e3-9cc085d85686}"
  787. name="Memprotect_GC_Mark"
  788. value="76"
  789. />
  790. <task
  791. eventGUID="{ef982975-087e-456c-897b-2ab23ac59885}"
  792. name="Memprotect_GC_Rescan"
  793. value="77"
  794. />
  795. <task
  796. eventGUID="{6a3587b5-148a-4cd2-8c63-d43ecaff0789}"
  797. name="Memprotect_GC_Sweep"
  798. value="78"
  799. />
  800. <task
  801. eventGUID="{788139af-d655-4abc-9462-2aba2abac238}"
  802. name="Memprotect_GC_SetupBackgroundSweep"
  803. value="79"
  804. />
  805. <task
  806. eventGUID="{bde9822d-c863-4547-ab7e-2c45c81e8ac8}"
  807. name="Memprotect_GC_BackgroundSweep"
  808. value="80"
  809. />
  810. <task
  811. eventGUID="{aa3d9ea4-ad7b-4f0c-940a-58e040f53e19}"
  812. name="Memprotect_GC_TransferSweptObjects"
  813. value="81"
  814. />
  815. <task
  816. eventGUID="{a0a7c40e-cdff-4970-8c39-8a9c27756d87}"
  817. name="Memprotect_GC_Dispose"
  818. value="82"
  819. />
  820. <task
  821. eventGUID="{f8129083-1cb9-4578-be4e-58785bad4e4c}"
  822. name="Memprotect_GC_BackgroundMark"
  823. value="83"
  824. />
  825. <task
  826. eventGUID="{07a1febb-aef7-48b8-8cbd-e866b0eacd5c}"
  827. name="Memprotect_GC_ResetWriteWatch"
  828. value="84"
  829. />
  830. <task
  831. eventGUID="{1440bbe4-b0c3-4c96-a333-031e138e2f9d}"
  832. name="Memprotect_GC_IdleCollect"
  833. value="85"
  834. />
  835. <task
  836. eventGUID="{db6c6ca1-6bb1-461f-a4c1-9b2fa06e1e93}"
  837. name="Memprotect_GC_SweepWeakRef"
  838. value="86"
  839. />
  840. <task
  841. eventGUID="{64c8f2e0-c198-42d9-9fdf-44e9d34ab48f}"
  842. name="Memprotect_GC_ProcessTrackedObject"
  843. value="87"
  844. />
  845. <task
  846. eventGUID="{d6fb5084-cd49-45ae-ba38-40ff751ae35c}"
  847. name="Memprotect_GC_ProcessClientTrackedObject"
  848. value="88"
  849. />
  850. <task
  851. eventGUID="{7ba28b1c-ba06-4d87-8692-796834a68ba0}"
  852. name="Memprotect_GC_BackgroundZeroPage"
  853. value="89"
  854. />
  855. <task
  856. eventGUID="{136f70cc-b5d3-477f-a790-f19345eda28a}"
  857. name="Memprotect_GC_FlushZeroPage"
  858. value="90"
  859. />
  860. <task
  861. eventGUID="{7e40b1d6-b3b0-446e-a795-24235f6fb168}"
  862. name="Memprotect_GC_DecommitConcurrentCollectPageAllocator"
  863. value="91"
  864. />
  865. <task
  866. eventGUID="{6e39f32d-cdf1-483f-8bee-d5d513df60ec}"
  867. name="Memprotect_GC_SweepPartialReusePage"
  868. value="92"
  869. />
  870. <task
  871. eventGUID="{f8ffa8e2-c4a8-4708-afa5-134a6872447c}"
  872. name="Memprotect_GC_BackgroundRescan"
  873. value="93"
  874. />
  875. <task
  876. eventGUID="{df75ab61-b4a0-4cf8-b544-ec3980418a24}"
  877. name="Memprotect_GC_BackgroundResetWriteWatch"
  878. value="94"
  879. />
  880. <task
  881. eventGUID="{71e1ad23-8cf1-49cf-99be-b7c7913e5376}"
  882. name="Memprotect_GC_BackgroundScanRoots"
  883. value="95"
  884. />
  885. <task
  886. eventGUID="{32e45a72-3790-429c-8954-0dd6a6ad6480}"
  887. name="Memprotect_GC_BackgroundResetMarks"
  888. value="96"
  889. />
  890. <task
  891. eventGUID="{18d40cb5-aedb-4adf-8fb6-7db6dff0781d}"
  892. name="Memprotect_GC_RescanMarkWait"
  893. value="97"
  894. />
  895. <task
  896. eventGUID="{6dc7593a-7293-4541-aae1-a494086cd202}"
  897. name="Memprotect_GC_SynchronousMarkWait"
  898. value="98"
  899. />
  900. <task
  901. eventGUID="{5e3e368c-8c86-4100-a56d-abcef87ef59e}"
  902. name="Memprotect_GC_FinishConcurrentWait"
  903. value="99"
  904. />
  905. <task
  906. eventGUID="{8f48f451-aa73-4bad-bfb6-314e8d0a4066}"
  907. name="Memprotect_GC_EndMarkOnLowMemory"
  908. value="100"
  909. />
  910. <task
  911. eventGUID="{a2397418-10af-4eb6-8055-d309269fb668}"
  912. name="Memprotect_GC_ParallelMark"
  913. value="101"
  914. />
  915. <task
  916. eventGUID="{32c86020-c4e1-475c-b353-ab8c58b98153}"
  917. name="Memprotect_GC_BackgroundParallelMark"
  918. value="102"
  919. />
  920. <task
  921. eventGUID="{4fe2e2cd-1498-4b2d-866c-f851ed190ffa}"
  922. name="Memprotect_GC"
  923. value="103"
  924. />
  925. <task
  926. eventGUID="{ca5712cd-23b8-4f93-849e-9107bce9558e}"
  927. name="Memprotect_GC_Allocation"
  928. value="104"
  929. />
  930. <task
  931. eventGUID="{420737b4-4f9c-479c-bd31-28391e1ddfa1}"
  932. name="Memprotect_GC_Unroot"
  933. value="105"
  934. />
  935. <task
  936. eventGUID="{56aa7888-cd74-471f-b480-25d257cedcec}"
  937. name="Jscript_GC_Init"
  938. value="106"
  939. />
  940. <task
  941. eventGUID="{09fdd3c1-a5f7-4b7f-aabc-6eecc4e30309}"
  942. name="Memprotect_GC_Heap_Size"
  943. value="107"
  944. />
  945. <task
  946. eventGUID="{7aabacec-6052-4f52-9aae-10fd5b5bfc0c}"
  947. name="Jscript_Internal_Generic_Event"
  948. value="108"
  949. />
  950. <task
  951. eventGUID="{3b122f5b-4f0d-4bef-a973-7a3953f9bcc8}"
  952. name="Jscript_GC_Bucket_Stats"
  953. value="109"
  954. />
  955. <task
  956. eventGUID="{2780AF73-7C2B-4D48-B73A-285F95F5C9F4}"
  957. name="Memprotect_GC_Bucket_Stats"
  958. value="110"
  959. />
  960. <task
  961. eventGUID="{2B8B3364-E069-47E6-B103-E934A5895868}"
  962. name="Jscript_Backend_Bailout"
  963. value="111"
  964. />
  965. <task
  966. eventGUID="{C2D9F2CC-F3AF-44BA-987C-F827429235E9}"
  967. name="Jscript_Backend_Bailout_LoopBody"
  968. value="112"
  969. />
  970. <task
  971. eventGUID="{42A92C23-0987-41C3-A306-5E694D4BF9AC}"
  972. name="Jscript_GC_Clear_InlineCache"
  973. value="113"
  974. />
  975. <task
  976. eventGUID="{0F77E6FC-4576-48E4-BF78-FEDABD408B14}"
  977. name="Jscript_GC_PreSweepCallback"
  978. value="114"
  979. />
  980. <task
  981. eventGUID="{43B60965-B85D-4977-B992-7F159C15939F}"
  982. name="Memprotect_GC_PreSweepCallback"
  983. value="115"
  984. />
  985. <task
  986. eventGUID="{493BE439-9A73-4303-AE84-5437F2A04EBA}"
  987. name="Jscript_GC2"
  988. value="116"
  989. />
  990. <task
  991. eventGUID="{78B2F90D-2786-405B-9FFD-E6E45E12AC1D}"
  992. name="Memprotect_GC2"
  993. value="117"
  994. />
  995. </tasks>
  996. <maps>
  997. <valueMap name="MethodAddressRangeMap">
  998. <map
  999. message="$(string.JScriptProvider.Method.InterpretedMessage)"
  1000. value="0x1"
  1001. />
  1002. <map
  1003. message="$(string.JScriptProvider.Method.JittedMessage)"
  1004. value="0x2"
  1005. />
  1006. <map
  1007. message="$(string.JScriptProvider.Method.JittedLoopBodyMessage)"
  1008. value="0x3"
  1009. />
  1010. <map
  1011. message="$(string.JScriptProvider.Method.JittedLoopBodyMessage)"
  1012. value="0x4"
  1013. />
  1014. <map
  1015. message="$(string.JScriptProvider.Method.JittedLoopBodyMessage)"
  1016. value="0x5"
  1017. />
  1018. <map
  1019. message="$(string.JScriptProvider.Method.JittedLoopBodyMessage)"
  1020. value="0x6"
  1021. />
  1022. <map
  1023. message="$(string.JScriptProvider.Method.JittedLoopBodyMessage)"
  1024. value="0x7"
  1025. />
  1026. <map
  1027. message="$(string.JScriptProvider.Method.JittedLoopBodyMessage)"
  1028. value="0x8"
  1029. />
  1030. <map
  1031. message="$(string.JScriptProvider.Method.JittedLoopBodyMessage)"
  1032. value="0x9"
  1033. />
  1034. <map
  1035. message="$(string.JScriptProvider.Method.JittedLoopBodyMessage)"
  1036. value="0xA"
  1037. />
  1038. </valueMap>
  1039. <valueMap name="JitLevelMap">
  1040. <map
  1041. message="$(string.JScriptProvider.Method.SimpleJitMessage)"
  1042. value="0x1"
  1043. />
  1044. <map
  1045. message="$(string.JScriptProvider.Method.FullJitMessage)"
  1046. value="0x2"
  1047. />
  1048. </valueMap>
  1049. <valueMap name="SourceRequestFor">
  1050. <map
  1051. message="$(string.JScriptProvider.Source.Reason)"
  1052. value="0x1"
  1053. />
  1054. <map
  1055. message="$(string.JScriptProvider.Source.ReasonLength)"
  1056. value="0x2"
  1057. />
  1058. </valueMap>
  1059. <valueMap name="GCBucketNames">
  1060. <map
  1061. message="$(string.JScriptProvider.GCBucket.Normal_S})"
  1062. value="0x0000"
  1063. />
  1064. <map
  1065. message="$(string.JScriptProvider.GCBucket.Leaf_S})"
  1066. value="0x0001"
  1067. />
  1068. <map
  1069. message="$(string.JScriptProvider.GCBucket.Fin_S})"
  1070. value="0x0002"
  1071. />
  1072. <map
  1073. message="$(string.JScriptProvider.GCBucket.NormWB_S})"
  1074. value="0x0003"
  1075. />
  1076. <map
  1077. message="$(string.JScriptProvider.GCBucket.FinWB_S})"
  1078. value="0x0004"
  1079. />
  1080. <map
  1081. message="$(string.JScriptProvider.GCBucket.Visited_S})"
  1082. value="0x0005"
  1083. />
  1084. <map
  1085. message="$(string.JScriptProvider.GCBucket.Normal_M})"
  1086. value="0x0100"
  1087. />
  1088. <map
  1089. message="$(string.JScriptProvider.GCBucket.Leaf_M})"
  1090. value="0x0101"
  1091. />
  1092. <map
  1093. message="$(string.JScriptProvider.GCBucket.Fin_M})"
  1094. value="0x0102"
  1095. />
  1096. <map
  1097. message="$(string.JScriptProvider.GCBucket.NormWB_M})"
  1098. value="0x0103"
  1099. />
  1100. <map
  1101. message="$(string.JScriptProvider.GCBucket.FinWB_M})"
  1102. value="0x0104"
  1103. />
  1104. <map
  1105. message="$(string.JScriptProvider.GCBucket.Visited_M})"
  1106. value="0x0105"
  1107. />
  1108. <map
  1109. message="$(string.JScriptProvider.GCBucket.Large)"
  1110. value="0x0200"
  1111. />
  1112. <map
  1113. message="$(string.JScriptProvider.GCBucket.Total)"
  1114. value="0x0300"
  1115. />
  1116. </valueMap>
  1117. </maps>
  1118. <templates>
  1119. <template tid="SourceLoadUnload">
  1120. <data
  1121. inType="win:UInt64"
  1122. name="SourceID"
  1123. />
  1124. <data
  1125. inType="win:Pointer"
  1126. name="ScriptContextID"
  1127. outType="win:HexInt64"
  1128. />
  1129. <data
  1130. inType="win:UInt32"
  1131. name="SourceFlags"
  1132. />
  1133. <data
  1134. inType="win:UnicodeString"
  1135. name="Url"
  1136. />
  1137. </template>
  1138. <template tid="ScriptContextLoadUnload">
  1139. <data
  1140. inType="win:Pointer"
  1141. name="ScriptContextID"
  1142. outType="win:HexInt64"
  1143. />
  1144. </template>
  1145. <template tid="MethodLoadUnload">
  1146. <data
  1147. inType="win:Pointer"
  1148. name="ScriptContextID"
  1149. outType="win:HexInt64"
  1150. />
  1151. <data
  1152. inType="win:Pointer"
  1153. name="MethodStartAddress"
  1154. outType="win:HexInt64"
  1155. />
  1156. <data
  1157. inType="win:UInt64"
  1158. name="MethodSize"
  1159. />
  1160. <data
  1161. inType="win:UInt32"
  1162. name="MethodID"
  1163. />
  1164. <data
  1165. inType="win:UInt16"
  1166. name="MethodFlags"
  1167. />
  1168. <data
  1169. inType="win:UInt16"
  1170. map="MethodAddressRangeMap"
  1171. name="MethodAddressRangeID"
  1172. />
  1173. <data
  1174. inType="win:UInt64"
  1175. name="SourceID"
  1176. />
  1177. <data
  1178. inType="win:UInt32"
  1179. name="Line"
  1180. outType="xs:unsignedInt"
  1181. />
  1182. <data
  1183. inType="win:UInt32"
  1184. name="Column"
  1185. outType="xs:unsignedInt"
  1186. />
  1187. <data
  1188. inType="win:UnicodeString"
  1189. name="MethodName"
  1190. outType="xs:string"
  1191. />
  1192. </template>
  1193. <template tid="ProjectionTypeName">
  1194. <data
  1195. inType="win:UnicodeString"
  1196. name="TypeName"
  1197. />
  1198. </template>
  1199. <template tid="ProjectionTypeNameAndMethodName">
  1200. <data
  1201. inType="win:UnicodeString"
  1202. name="TypeName"
  1203. />
  1204. <data
  1205. inType="win:UnicodeString"
  1206. name="MethodName"
  1207. />
  1208. </template>
  1209. <template tid="ProjectionTypeNameAndEventName">
  1210. <data
  1211. inType="win:UnicodeString"
  1212. name="TypeName"
  1213. />
  1214. <data
  1215. inType="win:UnicodeString"
  1216. name="EventName"
  1217. />
  1218. </template>
  1219. <template tid="ProjectionIsBoxedInterface">
  1220. <data
  1221. inType="win:Boolean"
  1222. name="IsBoxed"
  1223. />
  1224. </template>
  1225. <template tid="ParseStartStop">
  1226. <data
  1227. inType="win:UInt64"
  1228. name="SourceID"
  1229. />
  1230. <data
  1231. inType="win:Pointer"
  1232. name="ScriptContextID"
  1233. outType="win:HexInt64"
  1234. />
  1235. <data
  1236. inType="win:UInt32"
  1237. name="MethodID"
  1238. />
  1239. <data
  1240. inType="win:UInt32"
  1241. name="ASTSize"
  1242. />
  1243. <data
  1244. inType="win:Boolean"
  1245. name="IsDeferred"
  1246. />
  1247. <data
  1248. inType="win:UnicodeString"
  1249. name="MethodName"
  1250. outType="xs:string"
  1251. />
  1252. </template>
  1253. <template tid="BytecodeGenInfo">
  1254. <data
  1255. inType="win:UInt64"
  1256. name="SourceID"
  1257. />
  1258. <data
  1259. inType="win:Pointer"
  1260. name="ScriptContextID"
  1261. outType="win:HexInt64"
  1262. />
  1263. <data
  1264. inType="win:UInt32"
  1265. name="MethodID"
  1266. />
  1267. <data
  1268. inType="win:UInt32"
  1269. name="BytecodeCount"
  1270. />
  1271. <data
  1272. inType="win:UInt32"
  1273. name="BytecodeSize"
  1274. />
  1275. <data
  1276. inType="win:UnicodeString"
  1277. name="MethodName"
  1278. outType="xs:string"
  1279. />
  1280. </template>
  1281. <template tid="GCPhase">
  1282. <data
  1283. inType="win:Pointer"
  1284. name="RecyclerID"
  1285. outType="win:HexInt64"
  1286. />
  1287. </template>
  1288. <template tid="GCWaitStart">
  1289. <data
  1290. inType="win:Pointer"
  1291. name="RecyclerID"
  1292. outType="win:HexInt64"
  1293. />
  1294. <data
  1295. inType="win:UInt32"
  1296. name="Timeout"
  1297. />
  1298. </template>
  1299. <template tid="GCWaitStop">
  1300. <data
  1301. inType="win:Pointer"
  1302. name="RecyclerID"
  1303. outType="win:HexInt64"
  1304. />
  1305. <data
  1306. inType="win:Boolean"
  1307. name="HasTimedout"
  1308. />
  1309. </template>
  1310. <template tid="GCBackgroundMark">
  1311. <data
  1312. inType="win:Pointer"
  1313. name="RecyclerID"
  1314. outType="win:HexInt64"
  1315. />
  1316. <data
  1317. inType="win:Int8"
  1318. name="BackgroundMarkRescanCount"
  1319. />
  1320. </template>
  1321. <template tid="GCPhaseCollect">
  1322. <data
  1323. inType="win:Pointer"
  1324. name="RecyclerID"
  1325. outType="win:HexInt64"
  1326. />
  1327. <data
  1328. inType="win:UInt32"
  1329. name="SweptBytes"
  1330. />
  1331. </template>
  1332. <template tid="GCTriggerInfo">
  1333. <data
  1334. inType="win:Pointer"
  1335. name="RecyclerID"
  1336. outType="win:HexInt64"
  1337. />
  1338. <data
  1339. inType="win:UInt32"
  1340. name="Phase"
  1341. />
  1342. <data
  1343. inType="win:UInt32"
  1344. name="CollectionTrigger"
  1345. />
  1346. <data
  1347. inType="win:UInt32"
  1348. name="CollectionStartFlags"
  1349. />
  1350. </template>
  1351. <template tid="GCBucketStats">
  1352. <data
  1353. inType="win:Pointer"
  1354. name="RecyclerID"
  1355. outType="win:HexInt64"
  1356. />
  1357. <data
  1358. inType="win:UInt16"
  1359. name="Type"
  1360. map="GCBucketNames"
  1361. outType="win:HexInt16"
  1362. />
  1363. <data
  1364. inType="win:UInt16"
  1365. name="SizeCat"
  1366. />
  1367. <data
  1368. inType="win:UInt64"
  1369. name="UsedBytes"
  1370. />
  1371. <data
  1372. inType="win:UInt64"
  1373. name="TotalBytes"
  1374. />
  1375. </template>
  1376. <template tid="GCInThreadSweepData">
  1377. <data
  1378. inType="win:Pointer"
  1379. name="RecyclerID"
  1380. outType="win:HexInt64"
  1381. />
  1382. <data
  1383. inType="win:UInt32"
  1384. name="ScannedCount"
  1385. />
  1386. <data
  1387. inType="win:UInt32"
  1388. name="ClearedCount"
  1389. />
  1390. <data
  1391. inType="win:UInt32"
  1392. name="RegionScannedCount"
  1393. />
  1394. <data
  1395. inType="win:UInt32"
  1396. name="RegionClearedCount"
  1397. />
  1398. </template>
  1399. <template tid="GCClearInlineCacheData">
  1400. <data
  1401. inType="win:Pointer"
  1402. name="ThreadContextID"
  1403. outType="win:HexInt64"
  1404. />
  1405. <data
  1406. inType="win:UInt32"
  1407. name="ScriptContextCount"
  1408. />
  1409. <data
  1410. inType="win:UInt32"
  1411. name="AllocatedSize"
  1412. />
  1413. <data
  1414. inType="win:UInt32"
  1415. name="PreClearFreeSize"
  1416. />
  1417. <data
  1418. inType="win:UInt32"
  1419. name="FreeSize"
  1420. />
  1421. <data
  1422. inType="win:UInt32"
  1423. name="PolyInlineCacheSize"
  1424. />
  1425. </template>
  1426. <template tid="ProfileSave">
  1427. <data
  1428. inType="win:UInt64"
  1429. name="SourceID"
  1430. />
  1431. <data
  1432. inType="win:Pointer"
  1433. name="ScriptContextID"
  1434. outType="win:HexInt64"
  1435. />
  1436. <data
  1437. inType="win:UInt32"
  1438. name="Size"
  1439. />
  1440. <data
  1441. inType="win:Boolean"
  1442. name="IsSaveOnClose"
  1443. />
  1444. </template>
  1445. <template tid="StartupComplete">
  1446. <data
  1447. inType="win:Pointer"
  1448. name="ScriptContextID"
  1449. outType="win:HexInt64"
  1450. />
  1451. </template>
  1452. <template tid="ProfileLoad">
  1453. <data
  1454. inType="win:UInt64"
  1455. name="SourceID"
  1456. />
  1457. <data
  1458. inType="win:Pointer"
  1459. name="ScriptContextID"
  1460. outType="win:HexInt64"
  1461. />
  1462. </template>
  1463. <template tid="InlineInfo">
  1464. <data
  1465. inType="win:UInt32"
  1466. name="CallerMethodID"
  1467. />
  1468. <data
  1469. inType="win:UInt32"
  1470. name="InlineeMethodID"
  1471. />
  1472. <data
  1473. inType="win:UnicodeString"
  1474. name="Caller"
  1475. outType="xs:string"
  1476. />
  1477. <data
  1478. inType="win:UnicodeString"
  1479. name="Inlinee"
  1480. outType="xs:string"
  1481. />
  1482. </template>
  1483. <template tid="JitMethodStart">
  1484. <data
  1485. inType="win:UInt32"
  1486. name="MethodID"
  1487. />
  1488. <data
  1489. inType="win:UnicodeString"
  1490. name="MethodName"
  1491. />
  1492. <data
  1493. inType="win:Pointer"
  1494. name="ScriptContext"
  1495. />
  1496. <data
  1497. inType="win:UInt32"
  1498. name="InterpretedCount"
  1499. />
  1500. <data
  1501. inType="win:UInt32"
  1502. name="SourceCodeSize"
  1503. />
  1504. <data
  1505. inType="win:UInt32"
  1506. name="ByteCodeSize"
  1507. />
  1508. <data
  1509. inType="win:UInt32"
  1510. name="ByteCodeInLoopSize"
  1511. />
  1512. <data
  1513. inType="win:UInt16"
  1514. map="JitLevelMap"
  1515. name="JitLevel"
  1516. />
  1517. </template>
  1518. <template tid="JitMethodStop">
  1519. <data
  1520. inType="win:UInt32"
  1521. name="MethodID"
  1522. />
  1523. <data
  1524. inType="win:UnicodeString"
  1525. name="MethodName"
  1526. />
  1527. <data
  1528. inType="win:Pointer"
  1529. name="ScriptContext"
  1530. />
  1531. <data
  1532. inType="win:UInt32"
  1533. name="InterpretedCount"
  1534. />
  1535. <data
  1536. inType="win:Pointer"
  1537. name="MethodStartAddress"
  1538. />
  1539. <data
  1540. inType="win:UInt64"
  1541. name="MethodSize"
  1542. />
  1543. </template>
  1544. <template tid="JitMethodQueueDequeue">
  1545. <data
  1546. inType="win:UInt32"
  1547. name="MethodID"
  1548. />
  1549. <data
  1550. inType="win:UnicodeString"
  1551. name="MethodName"
  1552. />
  1553. <data
  1554. inType="win:Pointer"
  1555. name="ScriptContext"
  1556. />
  1557. <data
  1558. inType="win:UInt32"
  1559. name="InterpretedCount"
  1560. />
  1561. </template>
  1562. <template tid="JscriptSizeInBytes">
  1563. <data
  1564. inType="win:UInt64"
  1565. name="SizeInBytes"
  1566. outType="xs:unsignedLong"
  1567. />
  1568. </template>
  1569. <template tid="JscriptAllocation">
  1570. <data
  1571. inType="win:Pointer"
  1572. name="MemoryAddress"
  1573. outType="win:HexInt64"
  1574. />
  1575. </template>
  1576. <template tid="JscriptRecyclerFree">
  1577. <data
  1578. inType="win:UInt32"
  1579. name="Count"
  1580. />
  1581. <struct
  1582. count="Count"
  1583. name="Values"
  1584. >
  1585. <data
  1586. inType="win:Pointer"
  1587. name="MemoryAddress"
  1588. outType="win:HexInt64"
  1589. />
  1590. <data
  1591. inType="win:UInt32"
  1592. name="Size"
  1593. />
  1594. </struct>
  1595. </template>
  1596. <template tid="JscriptRecyclerFreeBlock">
  1597. <data
  1598. inType="win:Pointer"
  1599. name="MemoryAddress"
  1600. outType="win:HexInt64"
  1601. />
  1602. <data
  1603. inType="win:UInt32"
  1604. name="BlockSize"
  1605. />
  1606. <data
  1607. inType="win:UInt32"
  1608. name="ObjectSize"
  1609. />
  1610. </template>
  1611. <template tid="JscriptAllocateFunction">
  1612. <data
  1613. inType="win:Pointer"
  1614. name="MemoryAddress"
  1615. outType="win:HexInt64"
  1616. />
  1617. <data
  1618. inType="win:UInt32"
  1619. name="MethodID"
  1620. />
  1621. </template>
  1622. <template tid="JscriptDOMAllocation">
  1623. <data
  1624. inType="win:Pointer"
  1625. name="MemoryAddress"
  1626. outType="win:HexInt64"
  1627. />
  1628. <data
  1629. inType="win:UInt32"
  1630. name="TypeId"
  1631. />
  1632. </template>
  1633. <template tid="JScriptWinRTObjectAllocation">
  1634. <data
  1635. inType="win:Pointer"
  1636. name="MemoryAddress"
  1637. outType="win:HexInt64"
  1638. />
  1639. <data
  1640. inType="win:UnicodeString"
  1641. name="TypeName"
  1642. outType="xs:string"
  1643. />
  1644. </template>
  1645. <template tid="JscriptWinRTWrapperAllocation">
  1646. <data
  1647. inType="win:Pointer"
  1648. name="MemoryAddress"
  1649. outType="win:HexInt64"
  1650. />
  1651. <data
  1652. inType="win:UnicodeString"
  1653. name="TypeName"
  1654. outType="xs:string"
  1655. />
  1656. <data
  1657. inType="win:Pointer"
  1658. name="jsVar"
  1659. outType="win:HexInt64"
  1660. />
  1661. </template>
  1662. <template tid="JscriptWinRTEventHandlerAllocation">
  1663. <data
  1664. inType="win:Pointer"
  1665. name="MemoryAddress"
  1666. outType="win:HexInt64"
  1667. />
  1668. <data
  1669. inType="win:UnicodeString"
  1670. name="TypeName"
  1671. outType="xs:string"
  1672. />
  1673. <data
  1674. inType="win:Pointer"
  1675. name="callback"
  1676. outType="win:HexInt64"
  1677. />
  1678. <data
  1679. inType="win:UnicodeString"
  1680. name="EventName"
  1681. outType="xs:string"
  1682. />
  1683. </template>
  1684. <template tid="JscriptWinRTPropertyValueAllocation">
  1685. <data
  1686. inType="win:Pointer"
  1687. name="MemoryAddress"
  1688. outType="win:HexInt64"
  1689. />
  1690. <data
  1691. inType="win:UnicodeString"
  1692. name="TypeName"
  1693. outType="xs:string"
  1694. />
  1695. <data
  1696. inType="win:Boolean"
  1697. name="IsArray"
  1698. />
  1699. </template>
  1700. <template tid="JscriptWinRTWrapperFree">
  1701. <data
  1702. inType="win:Pointer"
  1703. name="MemoryAddress"
  1704. outType="win:HexInt64"
  1705. />
  1706. </template>
  1707. <template tid="JscriptAsyncCausalityCallstackPayload">
  1708. <data
  1709. inType="win:UInt64"
  1710. name="AsyncOperationId"
  1711. />
  1712. <data
  1713. inType="win:UInt16"
  1714. name="FrameCount"
  1715. />
  1716. <data
  1717. inType="win:UInt16"
  1718. name="NameBufferCount"
  1719. />
  1720. <data
  1721. inType="win:UnicodeString"
  1722. length="NameBufferCount"
  1723. name="NameBuffer"
  1724. />
  1725. <struct
  1726. count="FrameCount"
  1727. name="Frames"
  1728. >
  1729. <data
  1730. inType="win:UInt64"
  1731. name="DocumentId"
  1732. />
  1733. <data
  1734. inType="win:UInt32"
  1735. name="SourceLocationStartIndex"
  1736. />
  1737. <data
  1738. inType="win:UInt32"
  1739. name="SourceLocationLength"
  1740. />
  1741. <data
  1742. inType="win:UInt16"
  1743. name="NameIndex"
  1744. />
  1745. </struct>
  1746. </template>
  1747. <template tid="Element_Zero">
  1748. <data
  1749. inType="win:Pointer"
  1750. name="Element"
  1751. />
  1752. <data
  1753. inType="win:UInt32"
  1754. name="Zero"
  1755. />
  1756. </template>
  1757. <template tid="JscriptHostingBinaryInconsistencyState">
  1758. <data
  1759. inType="win:UInt32"
  1760. name="Jscript9EngineSize"
  1761. />
  1762. <data
  1763. inType="win:UInt32"
  1764. name="MshtmlEngineSize"
  1765. />
  1766. <data
  1767. inType="win:UInt32"
  1768. name="Jscript9ContextSize"
  1769. />
  1770. <data
  1771. inType="win:UInt32"
  1772. name="MshtmlContextSize"
  1773. />
  1774. <data
  1775. inType="win:UInt32"
  1776. name="Jscript9LibrarySize"
  1777. />
  1778. <data
  1779. inType="win:UInt32"
  1780. name="MshtmlLibrarySize"
  1781. />
  1782. <data
  1783. inType="win:UInt32"
  1784. name="Jscript9CEOSize"
  1785. />
  1786. <data
  1787. inType="win:UInt32"
  1788. name="MshtmlCEOSize"
  1789. />
  1790. <data
  1791. inType="win:UInt32"
  1792. name="Jscript9ScriptEngineOffset"
  1793. />
  1794. <data
  1795. inType="win:UInt32"
  1796. name="MshtmlScriptEngineOffset"
  1797. />
  1798. <data
  1799. inType="win:UInt32"
  1800. name="Jscript9ScriptContextOffset"
  1801. />
  1802. <data
  1803. inType="win:UInt32"
  1804. name="MshtmlScriptContextOffset"
  1805. />
  1806. <data
  1807. inType="win:UInt32"
  1808. name="Jscript9LibraryOffset"
  1809. />
  1810. <data
  1811. inType="win:UInt32"
  1812. name="MshtmlLibraryOffset"
  1813. />
  1814. <data
  1815. inType="win:UInt32"
  1816. name="Jscript9TypeOffset"
  1817. />
  1818. <data
  1819. inType="win:UInt32"
  1820. name="MshtmlTypeOffset"
  1821. />
  1822. <data
  1823. inType="win:UInt32"
  1824. name="Jscript9TypeIdOffset"
  1825. />
  1826. <data
  1827. inType="win:UInt32"
  1828. name="MshtmlTypeIdOffset"
  1829. />
  1830. <data
  1831. inType="win:UInt32"
  1832. name="Jscript9TaggedIntSize"
  1833. />
  1834. <data
  1835. inType="win:UInt32"
  1836. name="MshtmlTaggIntSize"
  1837. />
  1838. <data
  1839. inType="win:UInt32"
  1840. name="Jscript9NumberSize"
  1841. />
  1842. <data
  1843. inType="win:UInt32"
  1844. name="MshtmlNumberSize"
  1845. />
  1846. <data
  1847. inType="win:UInt32"
  1848. name="Jscript9TypeIdLimit"
  1849. />
  1850. <data
  1851. inType="win:UInt32"
  1852. name="MshtmlTypeIdLimit"
  1853. />
  1854. <data
  1855. inType="win:UInt32"
  1856. name="JScript9NumberUtilitiesSize"
  1857. />
  1858. <data
  1859. inType="win:UInt32"
  1860. name="MsHtmlNumberUtilitiesSize"
  1861. />
  1862. <data
  1863. inType="win:UInt32"
  1864. name="JScript9NumberUtilitiesOffset"
  1865. />
  1866. <data
  1867. inType="win:UInt32"
  1868. name="MsHtmlNumberUtilitiesOffset"
  1869. />
  1870. </template>
  1871. <template tid="JscriptHostingBinaryConsistencyInfo">
  1872. <data
  1873. inType="win:UInt32"
  1874. name="MshtmlEngineSize"
  1875. />
  1876. <data
  1877. inType="win:UInt32"
  1878. name="MshtmlContextSize"
  1879. />
  1880. <data
  1881. inType="win:UInt32"
  1882. name="MshtmlLibrarySize"
  1883. />
  1884. <data
  1885. inType="win:UInt32"
  1886. name="MshtmlCEOSize"
  1887. />
  1888. <data
  1889. inType="win:UInt32"
  1890. name="MshtmlScriptEngineOffset"
  1891. />
  1892. <data
  1893. inType="win:UInt32"
  1894. name="MshtmlScriptContextOffset"
  1895. />
  1896. <data
  1897. inType="win:UInt32"
  1898. name="MshtmlLibraryOffset"
  1899. />
  1900. <data
  1901. inType="win:UInt32"
  1902. name="MshtmlTypeOffset"
  1903. />
  1904. <data
  1905. inType="win:UInt32"
  1906. name="MshtmlTypeIdOffset"
  1907. />
  1908. <data
  1909. inType="win:UInt32"
  1910. name="MshtmlTaggIntSize"
  1911. />
  1912. <data
  1913. inType="win:UInt32"
  1914. name="MshtmlNumberSize"
  1915. />
  1916. <data
  1917. inType="win:UInt32"
  1918. name="MshtmlTypeIdLimit"
  1919. />
  1920. <data
  1921. inType="win:UInt32"
  1922. name="MsHtmlNumberUtilitiesSize"
  1923. />
  1924. <data
  1925. inType="win:UInt32"
  1926. name="MsHtmlNumberUtilitiesOffset"
  1927. />
  1928. </template>
  1929. <template tid="JscriptStackTraceInfo">
  1930. <data
  1931. inType="win:UInt64"
  1932. name="OperationId"
  1933. />
  1934. <data
  1935. inType="win:UInt16"
  1936. name="FrameCount"
  1937. />
  1938. <data
  1939. inType="win:UInt32"
  1940. name="FrameNameBufferCount"
  1941. />
  1942. <data
  1943. inType="win:UnicodeString"
  1944. length="FrameNameBufferCount"
  1945. name="FrameNameBuffer"
  1946. />
  1947. <struct
  1948. count="FrameCount"
  1949. name="Frames"
  1950. >
  1951. <data
  1952. inType="win:Pointer"
  1953. name="ScriptContextID"
  1954. outType="win:HexInt64"
  1955. />
  1956. <data
  1957. inType="win:UInt32"
  1958. name="SourceLocationLineNumber"
  1959. />
  1960. <data
  1961. inType="win:UInt32"
  1962. name="SourceLocationColumnNumber"
  1963. />
  1964. <data
  1965. inType="win:UInt32"
  1966. name="MethodIDOrFrameNameIndex"
  1967. />
  1968. <data
  1969. inType="win:UInt8"
  1970. name="IsFrameNameIndex"
  1971. />
  1972. </struct>
  1973. </template>
  1974. <template tid="JscriptHostNativeModuleLoad">
  1975. <data
  1976. inType="win:Pointer"
  1977. name="ModuleID"
  1978. outType="win:HexInt64"
  1979. />
  1980. <data
  1981. inType="win:Binary"
  1982. length="20"
  1983. name="SHA1Hash"
  1984. />
  1985. <data
  1986. inType="win:UnicodeString"
  1987. name="Url"
  1988. />
  1989. <data
  1990. inType="win:HexInt32"
  1991. name="ModuleSize"
  1992. />
  1993. </template>
  1994. <template tid="JscriptHostNativeFunctionLoad">
  1995. <data
  1996. inType="win:Pointer"
  1997. name="ModuleID"
  1998. outType="win:HexInt64"
  1999. />
  2000. <data
  2001. inType="win:HexInt32"
  2002. name="SerializationIndex"
  2003. />
  2004. <data
  2005. inType="win:UnicodeString"
  2006. name="Name"
  2007. />
  2008. <data
  2009. inType="win:HexInt32"
  2010. name="FunctionOffset"
  2011. />
  2012. <data
  2013. inType="win:HexInt32"
  2014. name="FunctionSize"
  2015. />
  2016. </template>
  2017. <template tid="JScriptSourceMappingInfo">
  2018. <data
  2019. inType="win:UnicodeString"
  2020. name="ReasonBuffer"
  2021. />
  2022. <data
  2023. inType="win:UInt16"
  2024. map="SourceRequestFor"
  2025. name="SourceRequestFor"
  2026. />
  2027. </template>
  2028. <template tid="MemprotectObjectAlloc">
  2029. <data
  2030. inType="win:Pointer"
  2031. name="HeapHandle"
  2032. outType="win:HexInt64"
  2033. />
  2034. <data
  2035. inType="win:UInt64"
  2036. name="Size"
  2037. />
  2038. <data
  2039. inType="win:Pointer"
  2040. name="Address"
  2041. outType="win:HexInt64"
  2042. />
  2043. <data
  2044. inType="win:UInt32"
  2045. name="Source"
  2046. />
  2047. </template>
  2048. <template tid="MemprotectObjectUnroot">
  2049. <data
  2050. inType="win:Pointer"
  2051. name="HeapHandle"
  2052. outType="win:HexInt64"
  2053. />
  2054. <data
  2055. inType="win:Pointer"
  2056. name="Address"
  2057. outType="win:HexInt64"
  2058. />
  2059. <data
  2060. inType="win:UInt32"
  2061. name="Source"
  2062. />
  2063. </template>
  2064. <template tid="GCInit">
  2065. <data
  2066. inType="win:Pointer"
  2067. name="RecyclerID"
  2068. outType="win:HexInt64"
  2069. />
  2070. <data
  2071. inType="win:Double"
  2072. name="Timestamp"
  2073. />
  2074. </template>
  2075. <template tid="MemprotectHeap">
  2076. <data
  2077. inType="win:Pointer"
  2078. name="RecyclerID"
  2079. outType="win:HexInt64"
  2080. />
  2081. <data
  2082. inType="win:UInt64"
  2083. name="UsedBytes"
  2084. />
  2085. <data
  2086. inType="win:UInt64"
  2087. name="ReservedBytes"
  2088. />
  2089. <data
  2090. inType="win:UInt64"
  2091. name="CommittedBytes"
  2092. />
  2093. <data
  2094. inType="win:UInt64"
  2095. name="NumberOfSegments"
  2096. />
  2097. <data
  2098. inType="win:Boolean"
  2099. name="FromGC"
  2100. />
  2101. </template>
  2102. <template tid="InternalGenericEvent">
  2103. <data
  2104. inType="win:UnicodeString"
  2105. name="eventData"
  2106. />
  2107. </template>
  2108. <template tid="BailoutInfo">
  2109. <data
  2110. inType="win:UInt32"
  2111. name="FunctionMethodID"
  2112. />
  2113. <data
  2114. inType="win:UInt32"
  2115. name="FunctionSourceID"
  2116. />
  2117. <data
  2118. inType="win:UnicodeString"
  2119. name="FunctionDisplayName"
  2120. outType="xs:string"
  2121. />
  2122. <data
  2123. inType="win:UInt32"
  2124. name="BailoutKind"
  2125. />
  2126. <data
  2127. inType="win:UInt32"
  2128. name="BailoutCount"
  2129. />
  2130. <data
  2131. inType="win:UInt32"
  2132. name="CallCount"
  2133. />
  2134. <data
  2135. inType="win:AnsiString"
  2136. name="RejitReason"
  2137. outType="xs:string"
  2138. />
  2139. <data
  2140. inType="win:Boolean"
  2141. name="Rethunk"
  2142. outType="xs:boolean"
  2143. />
  2144. </template>
  2145. <template tid="BailoutFromLoopBodyInfo">
  2146. <data
  2147. inType="win:UInt32"
  2148. name="FunctionMethodID"
  2149. />
  2150. <data
  2151. inType="win:UInt32"
  2152. name="FunctionSourceID"
  2153. />
  2154. <data
  2155. inType="win:UnicodeString"
  2156. name="FunctionDisplayName"
  2157. outType="xs:string"
  2158. />
  2159. <data
  2160. inType="win:UInt32"
  2161. name="LoopNumber"
  2162. />
  2163. <data
  2164. inType="win:UInt32"
  2165. name="BailoutKind"
  2166. />
  2167. <data
  2168. inType="win:AnsiString"
  2169. name="RejitReason"
  2170. outType="xs:string"
  2171. />
  2172. </template>
  2173. </templates>
  2174. <events>
  2175. <event
  2176. keywords="JScriptStartRundown"
  2177. level="win:Informational"
  2178. opcode="DCStartInit"
  2179. symbol="DCStartInit"
  2180. task="MethodRundown"
  2181. value="1"
  2182. />
  2183. <event
  2184. keywords="JScriptStartRundown"
  2185. level="win:Informational"
  2186. opcode="DCStartComplete"
  2187. symbol="DCStartComplete"
  2188. task="MethodRundown"
  2189. value="2"
  2190. />
  2191. <event
  2192. keywords="JScriptEndRundown"
  2193. level="win:Informational"
  2194. opcode="DCEndInit"
  2195. symbol="DCEndInit"
  2196. task="MethodRundown"
  2197. value="3"
  2198. />
  2199. <event
  2200. keywords="JScriptEndRundown"
  2201. level="win:Informational"
  2202. opcode="DCEndComplete"
  2203. symbol="DCEndComplete"
  2204. task="MethodRundown"
  2205. value="4"
  2206. />
  2207. <event
  2208. keywords="JScriptStartRundown"
  2209. level="win:Informational"
  2210. opcode="MethodDCStart"
  2211. symbol="MethodDCStart"
  2212. task="MethodRundown"
  2213. template="MethodLoadUnload"
  2214. value="5"
  2215. />
  2216. <event
  2217. keywords="JScriptEndRundown"
  2218. level="win:Informational"
  2219. opcode="MethodDCEnd"
  2220. symbol="MethodDCEnd"
  2221. task="MethodRundown"
  2222. template="MethodLoadUnload"
  2223. value="6"
  2224. />
  2225. <event
  2226. keywords="JScriptStartRundown"
  2227. level="win:Informational"
  2228. opcode="ScriptContextDCStart"
  2229. symbol="ScriptContextDCStart"
  2230. task="ScriptContextRundown"
  2231. template="ScriptContextLoadUnload"
  2232. value="7"
  2233. />
  2234. <event
  2235. keywords="JScriptEndRundown"
  2236. level="win:Informational"
  2237. opcode="ScriptContextDCEnd"
  2238. symbol="ScriptContextDCEnd"
  2239. task="ScriptContextRundown"
  2240. template="ScriptContextLoadUnload"
  2241. value="8"
  2242. />
  2243. <event
  2244. keywords="JScriptRuntime"
  2245. level="win:Informational"
  2246. opcode="MethodLoad"
  2247. symbol="MethodLoad"
  2248. task="MethodRuntime"
  2249. template="MethodLoadUnload"
  2250. value="9"
  2251. />
  2252. <event
  2253. keywords="JScriptRuntime"
  2254. level="win:Informational"
  2255. opcode="MethodUnload"
  2256. symbol="MethodUnload"
  2257. task="MethodRuntime"
  2258. template="MethodLoadUnload"
  2259. value="10"
  2260. />
  2261. <event
  2262. keywords="JScriptRuntime"
  2263. level="win:Informational"
  2264. opcode="ScriptContextLoad"
  2265. symbol="ScriptContextLoad"
  2266. task="ScriptContextRuntime"
  2267. template="ScriptContextLoadUnload"
  2268. value="11"
  2269. />
  2270. <event
  2271. keywords="JScriptRuntime"
  2272. level="win:Informational"
  2273. opcode="ScriptContextUnload"
  2274. symbol="ScriptContextUnload"
  2275. task="ScriptContextRuntime"
  2276. template="ScriptContextLoadUnload"
  2277. value="12"
  2278. />
  2279. <event
  2280. keywords="JScriptProjection"
  2281. opcode="win:Start"
  2282. symbol="JSCRIPT_PROJECTION_RESOLVETYPE_START"
  2283. task="Jscript_Projection_ResolveType"
  2284. template="ProjectionTypeName"
  2285. value="13"
  2286. />
  2287. <event
  2288. keywords="JScriptProjection"
  2289. opcode="win:Stop"
  2290. symbol="JSCRIPT_PROJECTION_RESOLVETYPE_STOP"
  2291. task="Jscript_Projection_ResolveType"
  2292. template="ProjectionTypeName"
  2293. value="14"
  2294. />
  2295. <event
  2296. keywords="JScriptProjection"
  2297. opcode="win:Start"
  2298. symbol="JSCRIPT_PROJECTION_CONSTRUCTRUNTIMECLASS_START"
  2299. task="Jscript_Projection_ConstructRuntimeClass"
  2300. template="ProjectionTypeName"
  2301. value="15"
  2302. />
  2303. <event
  2304. keywords="JScriptProjection"
  2305. opcode="win:Stop"
  2306. symbol="JSCRIPT_PROJECTION_CONSTRUCTRUNTIMECLASS_STOP"
  2307. task="Jscript_Projection_ConstructRuntimeClass"
  2308. template="ProjectionTypeName"
  2309. value="16"
  2310. />
  2311. <event
  2312. keywords="JScriptProjection"
  2313. opcode="win:Start"
  2314. symbol="JSCRIPT_PROJECTION_METHODCALL_START"
  2315. task="Jscript_Projection_MethodCall"
  2316. template="ProjectionTypeNameAndMethodName"
  2317. value="17"
  2318. />
  2319. <event
  2320. keywords="JScriptProjection"
  2321. opcode="win:Stop"
  2322. symbol="JSCRIPT_PROJECTION_METHODCALL_STOP"
  2323. task="Jscript_Projection_MethodCall"
  2324. template="ProjectionTypeNameAndMethodName"
  2325. value="18"
  2326. />
  2327. <event
  2328. keywords="JScriptProjection"
  2329. opcode="win:Start"
  2330. symbol="JSCRIPT_PROJECTION_RAWMETHODCALL_START"
  2331. task="Jscript_Projection_RawMethodCall"
  2332. template="ProjectionTypeNameAndMethodName"
  2333. value="19"
  2334. />
  2335. <event
  2336. keywords="JScriptProjection"
  2337. opcode="win:Stop"
  2338. symbol="JSCRIPT_PROJECTION_RAWMETHODCALL_STOP"
  2339. task="Jscript_Projection_RawMethodCall"
  2340. template="ProjectionTypeNameAndMethodName"
  2341. value="20"
  2342. />
  2343. <event
  2344. keywords="JScriptProjection"
  2345. opcode="win:Start"
  2346. symbol="JSCRIPT_PROJECTION_INVOKEJSDELEGATE_START"
  2347. task="Jscript_Projection_InvokesJsDelegate"
  2348. template="ProjectionTypeNameAndMethodName"
  2349. value="21"
  2350. />
  2351. <event
  2352. keywords="JScriptProjection"
  2353. opcode="win:Stop"
  2354. symbol="JSCRIPT_PROJECTION_INVOKEJSDELEGATE_STOP"
  2355. task="Jscript_Projection_InvokesJsDelegate"
  2356. template="ProjectionTypeNameAndMethodName"
  2357. value="22"
  2358. />
  2359. <event
  2360. keywords="JScriptProjection"
  2361. opcode="win:Start"
  2362. symbol="JSCRIPT_PROJECTION_INVOKENATIVEDELEGATE_START"
  2363. task="Jscript_Projection_InvokeNativeDelegate"
  2364. template="ProjectionTypeNameAndMethodName"
  2365. value="23"
  2366. />
  2367. <event
  2368. keywords="JScriptProjection"
  2369. opcode="win:Stop"
  2370. symbol="JSCRIPT_PROJECTION_INVOKENATIVEDELEGATE_STOP"
  2371. task="Jscript_Projection_InvokeNativeDelegate"
  2372. template="ProjectionTypeNameAndMethodName"
  2373. value="24"
  2374. />
  2375. <event
  2376. keywords="JScriptProjection"
  2377. opcode="win:Start"
  2378. symbol="JSCRIPT_PROJECTION_ADDEVENTLISTENER_START"
  2379. task="Jscript_Projection_AddEventListener"
  2380. template="ProjectionTypeNameAndMethodName"
  2381. value="25"
  2382. />
  2383. <event
  2384. keywords="JScriptProjection"
  2385. opcode="win:Stop"
  2386. symbol="JSCRIPT_PROJECTION_ADDEVENTLISTENER_STOP"
  2387. task="Jscript_Projection_AddEventListener"
  2388. template="ProjectionTypeNameAndMethodName"
  2389. value="26"
  2390. />
  2391. <event
  2392. keywords="JScriptProjection"
  2393. opcode="win:Start"
  2394. symbol="JSCRIPT_PROJECTION_REMOVEEVENTLISTENER_START"
  2395. task="Jscript_Projection_RemoveEventListener"
  2396. template="ProjectionTypeNameAndMethodName"
  2397. value="27"
  2398. />
  2399. <event
  2400. keywords="JScriptProjection"
  2401. opcode="win:Stop"
  2402. symbol="JSCRIPT_PROJECTION_REMOVEEVENTLISTENER_STOP"
  2403. task="Jscript_Projection_RemoveEventListener"
  2404. template="ProjectionTypeNameAndMethodName"
  2405. value="28"
  2406. />
  2407. <event
  2408. keywords="JScriptProjection"
  2409. opcode="win:Start"
  2410. symbol="JSCRIPT_PROJECTION_GETTYPEMETADATAINFORMATION_START"
  2411. task="Jscript_Projection_GetTypeMetaDataInformation"
  2412. template="ProjectionTypeName"
  2413. value="29"
  2414. />
  2415. <event
  2416. keywords="JScriptProjection"
  2417. opcode="win:Stop"
  2418. symbol="JSCRIPT_PROJECTION_GETTYPEMETADATAINFORMATION_STOP"
  2419. task="Jscript_Projection_GetTypeMetaDataInformation"
  2420. template="ProjectionTypeName"
  2421. value="30"
  2422. />
  2423. <event
  2424. keywords="JScriptProjection"
  2425. opcode="win:Start"
  2426. symbol="JSCRIPT_PROJECTION_SETEVENTHANDLER_START"
  2427. task="Jscript_Projection_SetEventHandler"
  2428. template="ProjectionTypeNameAndEventName"
  2429. value="31"
  2430. />
  2431. <event
  2432. keywords="JScriptProjection"
  2433. opcode="win:Stop"
  2434. symbol="JSCRIPT_PROJECTION_SETEVENTHANDLER_STOP"
  2435. task="Jscript_Projection_SetEventHandler"
  2436. template="ProjectionTypeNameAndEventName"
  2437. value="32"
  2438. />
  2439. <event
  2440. keywords="JScriptProjection"
  2441. opcode="win:Start"
  2442. symbol="JSCRIPT_PROJECTION_REMOVEALLEVENTSANDEVENTHANDLERS_START"
  2443. task="Jscript_Projection_RemoveAllEventsAndEventHandlers"
  2444. template="ProjectionTypeName"
  2445. value="33"
  2446. />
  2447. <event
  2448. keywords="JScriptProjection"
  2449. opcode="win:Stop"
  2450. symbol="JSCRIPT_PROJECTION_REMOVEALLEVENTSANDEVENTHANDLERS_STOP"
  2451. task="Jscript_Projection_RemoveAllEventsAndEventHandlers"
  2452. template="ProjectionTypeName"
  2453. value="34"
  2454. />
  2455. <event
  2456. keywords="JScriptProjection"
  2457. opcode="win:Start"
  2458. symbol="JSCRIPT_PROJECTION_INVOKEEVENT_START"
  2459. task="Jscript_Projection_InvokeEvent"
  2460. template="ProjectionTypeNameAndEventName"
  2461. value="35"
  2462. />
  2463. <event
  2464. keywords="JScriptProjection"
  2465. opcode="win:Stop"
  2466. symbol="JSCRIPT_PROJECTION_INVOKEEVENT_STOP"
  2467. task="Jscript_Projection_InvokeEvent"
  2468. template="ProjectionTypeNameAndEventName"
  2469. value="36"
  2470. />
  2471. <event
  2472. keywords="JScriptProjection"
  2473. opcode="win:Start"
  2474. symbol="JSCRIPT_PROJECTION_INVOKEEVENTEVPARAMPREP_START"
  2475. task="Jscript_Projection_InvokeEventEvParamPrep"
  2476. template="ProjectionTypeNameAndEventName"
  2477. value="37"
  2478. />
  2479. <event
  2480. keywords="JScriptProjection"
  2481. opcode="win:Stop"
  2482. symbol="JSCRIPT_PROJECTION_INVOKEEVENTEVPARAMPREP_STOP"
  2483. task="Jscript_Projection_InvokeEventEvParamPrep"
  2484. template="ProjectionTypeNameAndEventName"
  2485. value="38"
  2486. />
  2487. <event
  2488. keywords="JScriptStartRundown"
  2489. level="win:Informational"
  2490. opcode="SourceDCStart"
  2491. symbol="SourceDCStart"
  2492. task="ScriptContextRundown"
  2493. template="SourceLoadUnload"
  2494. value="39"
  2495. />
  2496. <event
  2497. keywords="JScriptEndRundown"
  2498. level="win:Informational"
  2499. opcode="SourceDCEnd"
  2500. symbol="SourceDCEnd"
  2501. task="ScriptContextRundown"
  2502. template="SourceLoadUnload"
  2503. value="40"
  2504. />
  2505. <event
  2506. keywords="JScriptRuntime"
  2507. level="win:Informational"
  2508. opcode="SourceLoad"
  2509. symbol="SourceLoad"
  2510. task="ScriptContextRuntime"
  2511. template="SourceLoadUnload"
  2512. value="41"
  2513. />
  2514. <event
  2515. keywords="JScriptRuntime"
  2516. level="win:Informational"
  2517. opcode="SourceUnload"
  2518. symbol="SourceUnload"
  2519. task="ScriptContextRuntime"
  2520. template="SourceLoadUnload"
  2521. value="42"
  2522. />
  2523. <event
  2524. keywords="JScriptProjection"
  2525. opcode="win:Start"
  2526. symbol="JSCRIPT_PROJECTION_GETEXPRFROMCONCRETETYPENAME_START"
  2527. task="Jscript_Projection_GetExprFromConcreteTypeName"
  2528. template="ProjectionTypeName"
  2529. value="43"
  2530. />
  2531. <event
  2532. keywords="JScriptProjection"
  2533. opcode="win:Stop"
  2534. symbol="JSCRIPT_PROJECTION_GETEXPRFROMCONCRETETYPENAME_STOP"
  2535. task="Jscript_Projection_GetExprFromConcreteTypeName"
  2536. template="ProjectionTypeName"
  2537. value="44"
  2538. />
  2539. <event
  2540. keywords="JScriptProjection"
  2541. opcode="win:Start"
  2542. symbol="JSCRIPT_PROJECTION_GETTYPEFROMTYPENAMEPARTS_START"
  2543. task="Jscript_Projection_GetTypeFromTypeNameParts"
  2544. template="ProjectionTypeName"
  2545. value="45"
  2546. />
  2547. <event
  2548. keywords="JScriptProjection"
  2549. opcode="win:Stop"
  2550. symbol="JSCRIPT_PROJECTION_GETTYPEFROMTYPENAMEPARTS_STOP"
  2551. task="Jscript_Projection_GetTypeFromTypeNameParts"
  2552. template="ProjectionTypeName"
  2553. value="46"
  2554. />
  2555. <event
  2556. keywords="JScriptProjection"
  2557. opcode="win:Start"
  2558. symbol="JSCRIPT_PROJECTION_REFERENCEORARRAYGETVALUE_START"
  2559. task="Jscript_Projection_ReferenceOrArrayGetValue"
  2560. template="ProjectionTypeName"
  2561. value="47"
  2562. />
  2563. <event
  2564. keywords="JScriptProjection"
  2565. opcode="win:Stop"
  2566. symbol="JSCRIPT_PROJECTION_REFERENCEORARRAYGETVALUE_STOP"
  2567. task="Jscript_Projection_ReferenceOrArrayGetValue"
  2568. template="ProjectionTypeName"
  2569. value="48"
  2570. />
  2571. <event
  2572. keywords="JScriptProjection"
  2573. opcode="win:Start"
  2574. symbol="JSCRIPT_PROJECTION_PROPERTYVALUEVARFROMGRCN_START"
  2575. task="Jscript_Projection_PropertyValueVarFromGRCN"
  2576. template="ProjectionTypeName"
  2577. value="49"
  2578. />
  2579. <event
  2580. keywords="JScriptProjection"
  2581. opcode="win:Stop"
  2582. symbol="JSCRIPT_PROJECTION_PROPERTYVALUEVARFROMGRCN_STOP"
  2583. task="Jscript_Projection_PropertyValueVarFromGRCN"
  2584. template="ProjectionTypeName"
  2585. value="50"
  2586. />
  2587. <event
  2588. keywords="JScriptProjection"
  2589. opcode="win:Start"
  2590. symbol="JSCRIPT_PROJECTION_VARFROMGRCN_START"
  2591. task="Jscript_Projection_VarFromGRCN"
  2592. template="ProjectionTypeName"
  2593. value="51"
  2594. />
  2595. <event
  2596. keywords="JScriptProjection"
  2597. opcode="win:Stop"
  2598. symbol="JSCRIPT_PROJECTION_VARFROMGRCN_STOP"
  2599. task="Jscript_Projection_VarFromGRCN"
  2600. template="ProjectionTypeName"
  2601. value="52"
  2602. />
  2603. <event
  2604. keywords="JScriptProjection"
  2605. opcode="win:Start"
  2606. symbol="JSCRIPT_PROJECTION_WRITEIREFERENCE_START"
  2607. task="Jscript_Projection_WriteIReference"
  2608. template="ProjectionTypeName"
  2609. value="53"
  2610. />
  2611. <event
  2612. keywords="JScriptProjection"
  2613. opcode="win:Stop"
  2614. symbol="JSCRIPT_PROJECTION_WRITEIREFERENCE_STOP"
  2615. task="Jscript_Projection_WriteIReference"
  2616. template="ProjectionTypeName"
  2617. value="54"
  2618. />
  2619. <event
  2620. keywords="JScriptProjection"
  2621. opcode="win:Start"
  2622. symbol="JSCRIPT_PROJECTION_WRITEINSPECTABLE_START"
  2623. task="Jscript_Projection_WriteInspectable"
  2624. template="ProjectionIsBoxedInterface"
  2625. value="55"
  2626. />
  2627. <event
  2628. keywords="JScriptProjection"
  2629. opcode="win:Stop"
  2630. symbol="JSCRIPT_PROJECTION_WRITEINSPECTABLE_STOP"
  2631. task="Jscript_Projection_WriteInspectable"
  2632. template="ProjectionIsBoxedInterface"
  2633. value="56"
  2634. />
  2635. <event
  2636. keywords="JScriptProjection"
  2637. opcode="win:Start"
  2638. symbol="JSCRIPT_PROJECTION_GETNONARRAYTYPEASPROPERTYVALUE_START"
  2639. task="Jscript_Projection_GetNonArrayTypeAsPropertyValue"
  2640. template="ProjectionTypeName"
  2641. value="57"
  2642. />
  2643. <event
  2644. keywords="JScriptProjection"
  2645. opcode="win:Stop"
  2646. symbol="JSCRIPT_PROJECTION_GETNONARRAYTYPEASPROPERTYVALUE_STOP"
  2647. task="Jscript_Projection_GetNonArrayTypeAsPropertyValue"
  2648. template="ProjectionTypeName"
  2649. value="58"
  2650. />
  2651. <event
  2652. keywords="JScriptProjection"
  2653. opcode="win:Start"
  2654. symbol="JSCRIPT_PROJECTION_GETNONARRAYBASICTYPEASPROPERTYVALUE_START"
  2655. task="Jscript_Projection_GetNonArrayBasicTypeAsPropertyValue"
  2656. template="ProjectionTypeName"
  2657. value="59"
  2658. />
  2659. <event
  2660. keywords="JScriptProjection"
  2661. opcode="win:Stop"
  2662. symbol="JSCRIPT_PROJECTION_GETNONARRAYBASICTYPEASPROPERTYVALUE_STOP"
  2663. task="Jscript_Projection_GetNonArrayBasicTypeAsPropertyValue"
  2664. template="ProjectionTypeName"
  2665. value="60"
  2666. />
  2667. <event
  2668. keywords="JScriptProjection"
  2669. opcode="win:Start"
  2670. symbol="JSCRIPT_PROJECTION_GETTYPEDARRAYASPROPERTYVALUE_START"
  2671. task="Jscript_Projection_GetTypedArrayAsPropertyValue"
  2672. template="ProjectionTypeName"
  2673. value="61"
  2674. />
  2675. <event
  2676. keywords="JScriptProjection"
  2677. opcode="win:Stop"
  2678. symbol="JSCRIPT_PROJECTION_GETTYPEDARRAYASPROPERTYVALUE_STOP"
  2679. task="Jscript_Projection_GetTypedArrayAsPropertyValue"
  2680. template="ProjectionTypeName"
  2681. value="62"
  2682. />
  2683. <event
  2684. keywords="JScriptProjection"
  2685. opcode="win:Start"
  2686. symbol="JSCRIPT_PROJECTION_GETBASICTYPEDARRAYASPROPERTYVALUE_START"
  2687. task="Jscript_Projection_GetBasicTypedArrayAsPropertyValue"
  2688. template="ProjectionTypeName"
  2689. value="63"
  2690. />
  2691. <event
  2692. keywords="JScriptProjection"
  2693. opcode="win:Stop"
  2694. symbol="JSCRIPT_PROJECTION_GETBASICTYPEDARRAYASPROPERTYVALUE_STOP"
  2695. task="Jscript_Projection_GetBasicTypedArrayAsPropertyValue"
  2696. template="ProjectionTypeName"
  2697. value="64"
  2698. />
  2699. <event
  2700. keywords="JScriptFrontend"
  2701. opcode="win:Start"
  2702. symbol="JSCRIPT_PARSE_METHOD_START"
  2703. task="ParseMethod"
  2704. template="ParseStartStop"
  2705. value="65"
  2706. />
  2707. <event
  2708. keywords="JScriptFrontend"
  2709. opcode="win:Stop"
  2710. symbol="JSCRIPT_PARSE_METHOD_STOP"
  2711. task="ParseMethod"
  2712. template="ParseStartStop"
  2713. value="66"
  2714. />
  2715. <event
  2716. keywords="JScriptFrontend"
  2717. opcode="win:Info"
  2718. symbol="JSCRIPT_BYTECODEGEN_METHOD"
  2719. task="GenerateBytecodeMethod"
  2720. template="BytecodeGenInfo"
  2721. value="67"
  2722. />
  2723. <event
  2724. keywords="JScriptGarbageCollection"
  2725. opcode="win:Start"
  2726. symbol="JSCRIPT_GC_RESETMARKS_START"
  2727. task="Jscript_GC_ResetMarks"
  2728. template="GCPhase"
  2729. value="68"
  2730. />
  2731. <event
  2732. keywords="JScriptGarbageCollection"
  2733. opcode="win:Stop"
  2734. symbol="JSCRIPT_GC_RESETMARKS_STOP"
  2735. task="Jscript_GC_ResetMarks"
  2736. template="GCPhase"
  2737. value="69"
  2738. />
  2739. <event
  2740. keywords="JScriptGarbageCollection"
  2741. opcode="win:Start"
  2742. symbol="JSCRIPT_GC_SCANROOTS_START"
  2743. task="Jscript_GC_ScanRoots"
  2744. template="GCPhase"
  2745. value="70"
  2746. />
  2747. <event
  2748. keywords="JScriptGarbageCollection"
  2749. opcode="win:Stop"
  2750. symbol="JSCRIPT_GC_SCANROOTS_STOP"
  2751. task="Jscript_GC_ScanRoots"
  2752. template="GCPhase"
  2753. value="71"
  2754. />
  2755. <event
  2756. keywords="JScriptGarbageCollection"
  2757. opcode="win:Start"
  2758. symbol="JSCRIPT_GC_SCANSTACK_START"
  2759. task="Jscript_GC_ScanStack"
  2760. template="GCPhase"
  2761. value="72"
  2762. />
  2763. <event
  2764. keywords="JScriptGarbageCollection"
  2765. opcode="win:Stop"
  2766. symbol="JSCRIPT_GC_SCANSTACK_STOP"
  2767. task="Jscript_GC_ScanStack"
  2768. template="GCPhase"
  2769. value="73"
  2770. />
  2771. <event
  2772. keywords="JScriptGarbageCollection"
  2773. opcode="win:Start"
  2774. symbol="JSCRIPT_GC_MARK_START"
  2775. task="Jscript_GC_Mark"
  2776. template="GCPhase"
  2777. value="74"
  2778. />
  2779. <event
  2780. keywords="JScriptGarbageCollection"
  2781. opcode="win:Stop"
  2782. symbol="JSCRIPT_GC_MARK_STOP"
  2783. task="Jscript_GC_Mark"
  2784. template="GCPhase"
  2785. value="75"
  2786. />
  2787. <event
  2788. keywords="JScriptGarbageCollection"
  2789. opcode="win:Start"
  2790. symbol="JSCRIPT_GC_RESCAN_START"
  2791. task="Jscript_GC_Rescan"
  2792. template="GCPhase"
  2793. value="76"
  2794. />
  2795. <event
  2796. keywords="JScriptGarbageCollection"
  2797. opcode="win:Stop"
  2798. symbol="JSCRIPT_GC_RESCAN_STOP"
  2799. task="Jscript_GC_Rescan"
  2800. template="GCPhase"
  2801. value="77"
  2802. />
  2803. <event
  2804. keywords="JScriptGarbageCollection"
  2805. opcode="win:Start"
  2806. symbol="JSCRIPT_GC_SWEEP_START"
  2807. task="Jscript_GC_Sweep"
  2808. template="GCPhase"
  2809. value="78"
  2810. />
  2811. <event
  2812. keywords="JScriptGarbageCollection"
  2813. opcode="win:Stop"
  2814. symbol="JSCRIPT_GC_SWEEP_STOP"
  2815. task="Jscript_GC_Sweep"
  2816. template="GCPhaseCollect"
  2817. value="79"
  2818. />
  2819. <event
  2820. keywords="JScriptGarbageCollection"
  2821. opcode="win:Start"
  2822. symbol="JSCRIPT_GC_SETUPBACKGROUNDSWEEP_START"
  2823. task="Jscript_GC_SetupBackgroundSweep"
  2824. template="GCPhase"
  2825. value="80"
  2826. />
  2827. <event
  2828. keywords="JScriptGarbageCollection"
  2829. opcode="win:Stop"
  2830. symbol="JSCRIPT_GC_SETUPBACKGROUNDSWEEP_STOP"
  2831. task="Jscript_GC_SetupBackgroundSweep"
  2832. template="GCPhase"
  2833. value="81"
  2834. />
  2835. <event
  2836. keywords="JScriptGarbageCollection"
  2837. opcode="win:Start"
  2838. symbol="JSCRIPT_GC_BACKGROUNDSWEEP_START"
  2839. task="Jscript_GC_BackgroundSweep"
  2840. template="GCPhase"
  2841. value="82"
  2842. />
  2843. <event
  2844. keywords="JScriptGarbageCollection"
  2845. opcode="win:Stop"
  2846. symbol="JSCRIPT_GC_BACKGROUNDSWEEP_STOP"
  2847. task="Jscript_GC_BackgroundSweep"
  2848. template="GCPhaseCollect"
  2849. value="83"
  2850. />
  2851. <event
  2852. keywords="JScriptGarbageCollection"
  2853. opcode="win:Start"
  2854. symbol="JSCRIPT_GC_TRANSFERSWEPTOBJECTS_START"
  2855. task="Jscript_GC_TransferSweptObjects"
  2856. template="GCPhase"
  2857. value="84"
  2858. />
  2859. <event
  2860. keywords="JScriptGarbageCollection"
  2861. opcode="win:Stop"
  2862. symbol="JSCRIPT_GC_TRANSFERSWEPTOBJECTS_STOP"
  2863. task="Jscript_GC_TransferSweptObjects"
  2864. template="GCPhase"
  2865. value="85"
  2866. />
  2867. <event
  2868. keywords="JScriptGarbageCollection"
  2869. opcode="win:Start"
  2870. symbol="JSCRIPT_GC_DISPOSE_START"
  2871. task="Jscript_GC_Dispose"
  2872. template="GCPhase"
  2873. value="86"
  2874. />
  2875. <event
  2876. keywords="JScriptGarbageCollection"
  2877. opcode="win:Stop"
  2878. symbol="JSCRIPT_GC_DISPOSE_STOP"
  2879. task="Jscript_GC_Dispose"
  2880. template="GCPhaseCollect"
  2881. value="87"
  2882. />
  2883. <event
  2884. keywords="JScriptGarbageCollection"
  2885. opcode="win:Start"
  2886. symbol="JSCRIPT_GC_BACKGROUNDMARK_START"
  2887. task="Jscript_GC_BackgroundMark"
  2888. template="GCBackgroundMark"
  2889. value="88"
  2890. />
  2891. <event
  2892. keywords="JScriptGarbageCollection"
  2893. opcode="win:Stop"
  2894. symbol="JSCRIPT_GC_BACKGROUNDMARK_STOP"
  2895. task="Jscript_GC_BackgroundMark"
  2896. template="GCBackgroundMark"
  2897. value="89"
  2898. />
  2899. <event
  2900. keywords="JScriptGarbageCollection"
  2901. opcode="win:Start"
  2902. symbol="JSCRIPT_GC_RESETWRITEWATCH_START"
  2903. task="Jscript_GC_ResetWriteWatch"
  2904. template="GCPhase"
  2905. value="90"
  2906. />
  2907. <event
  2908. keywords="JScriptGarbageCollection"
  2909. opcode="win:Stop"
  2910. symbol="JSCRIPT_GC_RESETWRITEWATCH_STOP"
  2911. task="Jscript_GC_ResetWriteWatch"
  2912. template="GCPhase"
  2913. value="91"
  2914. />
  2915. <event
  2916. keywords="JScriptProfile"
  2917. opcode="Save"
  2918. symbol="JSCRIPT_PROFILE_SAVE"
  2919. task="Jscript_Profile_Persistence"
  2920. template="ProfileSave"
  2921. value="92"
  2922. />
  2923. <event
  2924. keywords="JScriptProfile"
  2925. opcode="ScriptContextOnStartupComplete"
  2926. symbol="JSCRIPT_ON_STARTUP_COMPLETE"
  2927. task="ScriptContextRuntime"
  2928. template="StartupComplete"
  2929. value="93"
  2930. />
  2931. <event
  2932. keywords="JScriptProfile"
  2933. opcode="Load"
  2934. symbol="JSCRIPT_PROFILE_LOAD"
  2935. task="Jscript_Profile_Persistence"
  2936. template="ProfileLoad"
  2937. value="94"
  2938. />
  2939. <event
  2940. keywords="JscriptBackend"
  2941. opcode="win:Info"
  2942. symbol="JSCRIPT_BACKEND_INLINE"
  2943. task="Jscript_Backend_Inline"
  2944. template="InlineInfo"
  2945. value="95"
  2946. />
  2947. <event
  2948. keywords="JscriptJit"
  2949. opcode="Start"
  2950. symbol="JSCRIPT_FUNCTION_JIT_START"
  2951. task="Jscript_Method_Jit"
  2952. template="JitMethodStart"
  2953. value="96"
  2954. />
  2955. <event
  2956. keywords="JscriptJit"
  2957. opcode="Stop"
  2958. symbol="JSCRIPT_FUNCTION_JIT_STOP"
  2959. task="Jscript_Method_Jit"
  2960. template="JitMethodStop"
  2961. value="97"
  2962. />
  2963. <event
  2964. keywords="JscriptJit"
  2965. opcode="Queue"
  2966. symbol="JSCRIPT_FUNCTION_JIT_QUEUED"
  2967. task="Jscript_Method_Jit"
  2968. template="JitMethodQueueDequeue"
  2969. value="98"
  2970. />
  2971. <event
  2972. keywords="JscriptJit"
  2973. opcode="Dequeue"
  2974. symbol="JSCRIPT_FUNCTION_JIT_DEQUEUED"
  2975. task="Jscript_Method_Jit"
  2976. template="JitMethodQueueDequeue"
  2977. value="99"
  2978. />
  2979. <event
  2980. keywords="JScriptGarbageCollection"
  2981. opcode="win:Start"
  2982. symbol="JSCRIPT_GC_IDLE_START"
  2983. task="Jscript_GC_IdleCollect"
  2984. template="GCPhase"
  2985. value="100"
  2986. />
  2987. <event
  2988. keywords="JScriptGarbageCollection"
  2989. opcode="win:Info"
  2990. symbol="JSCRIPT_GC_IDLE_CALLBACK_NEWCOLLECT"
  2991. task="Jscript_GC_IdleCollect"
  2992. template="GCPhase"
  2993. value="101"
  2994. />
  2995. <event
  2996. keywords="JScriptGarbageCollection"
  2997. opcode="win:Info"
  2998. symbol="JSCRIPT_GC_IDLE_CALLBACK_FINISH"
  2999. task="Jscript_GC_IdleCollect"
  3000. template="GCPhase"
  3001. value="102"
  3002. />
  3003. <event
  3004. keywords="JScriptGarbageCollection"
  3005. opcode="win:Info"
  3006. symbol="JSCRIPT_GC_IDLE_SCHEDULED"
  3007. task="Jscript_GC_IdleCollect"
  3008. template="GCPhase"
  3009. value="103"
  3010. />
  3011. <event
  3012. keywords="JScriptGarbageCollection"
  3013. opcode="win:Stop"
  3014. symbol="JSCRIPT_GC_IDLE_FINISHED"
  3015. task="Jscript_GC_IdleCollect"
  3016. template="GCPhase"
  3017. value="104"
  3018. />
  3019. <event
  3020. keywords="JScriptMemoryTracing"
  3021. opcode="UsedPageSize"
  3022. symbol="JSCRIPT_PAGE_ALLOCATOR_USED_SIZE"
  3023. task="Jscript_Page_Allocator_Size"
  3024. template="JscriptSizeInBytes"
  3025. value="105"
  3026. />
  3027. <event
  3028. keywords="JScriptObjectCleanup"
  3029. level="win:Informational"
  3030. opcode="Free_Memory"
  3031. symbol="JSCRIPT_RECYCLER_FREE_MEMORY"
  3032. task="Jscript_Recycler_Allocation"
  3033. template="JscriptRecyclerFree"
  3034. value="106"
  3035. />
  3036. <event
  3037. keywords="JScriptObjectCleanup"
  3038. level="win:Informational"
  3039. opcode="Free_Memory_Block"
  3040. symbol="JSCRIPT_RECYCLER_FREE_MEMORY_BLOCK"
  3041. task="Jscript_Recycler_Allocation"
  3042. template="JscriptRecyclerFreeBlock"
  3043. value="107"
  3044. />
  3045. <event
  3046. keywords="JScriptObjectAllocation"
  3047. level="win:Informational"
  3048. opcode="Allocate_Object"
  3049. symbol="JSCRIPT_RECYCLER_ALLOCATE_OBJECT"
  3050. task="Jscript_Recycler_Allocation"
  3051. template="JscriptAllocation"
  3052. value="108"
  3053. />
  3054. <event
  3055. keywords="JScriptObjectAllocation"
  3056. level="win:Informational"
  3057. opcode="Allocate_Array"
  3058. symbol="JSCRIPT_RECYCLER_ALLOCATE_ARRAY"
  3059. task="Jscript_Recycler_Allocation"
  3060. template="JscriptAllocation"
  3061. value="109"
  3062. />
  3063. <event
  3064. keywords="JScriptObjectAllocation"
  3065. level="win:Informational"
  3066. opcode="Allocate_Function"
  3067. symbol="JSCRIPT_RECYCLER_ALLOCATE_FUNCTION"
  3068. task="Jscript_Recycler_Allocation"
  3069. template="JscriptAllocateFunction"
  3070. value="110"
  3071. />
  3072. <event
  3073. keywords="JScriptObjectAllocation"
  3074. level="win:Informational"
  3075. opcode="Allocate_DOM_Object"
  3076. symbol="JSCRIPT_RECYCLER_ALLOCATE_DOM_OBJECT"
  3077. task="Jscript_Recycler_Allocation"
  3078. template="JscriptDOMAllocation"
  3079. value="111"
  3080. />
  3081. <event
  3082. keywords="JScriptObjectAllocation"
  3083. level="win:Informational"
  3084. opcode="Allocate_WinRT_JSProxy_Object"
  3085. symbol="JSCRIPT_RECYCLER_ALLOCATE_WINRT_JSPROXY_OBJECT"
  3086. task="Jscript_Recycler_Allocation"
  3087. template="JScriptWinRTObjectAllocation"
  3088. value="112"
  3089. />
  3090. <event
  3091. keywords="JScriptObjectAllocation"
  3092. level="win:Informational"
  3093. opcode="Allocate_PixelArray"
  3094. symbol="JSCRIPT_RECYCLER_ALLOCATE_PIXELARRAY"
  3095. task="Jscript_Recycler_Allocation"
  3096. template="JscriptAllocation"
  3097. value="113"
  3098. />
  3099. <event
  3100. keywords="JScriptExternalReferenceAddRef"
  3101. level="win:Informational"
  3102. opcode="External_AddRef"
  3103. symbol="JSCRIPT_RECYCLER_EXTERNAL_ADDREF"
  3104. task="Jscript_Recycler_Allocation"
  3105. template="JscriptAllocation"
  3106. value="114"
  3107. />
  3108. <event
  3109. keywords="JScriptExternalReferenceRelease"
  3110. level="win:Informational"
  3111. opcode="External_Release"
  3112. symbol="JSCRIPT_RECYCLER_EXTERNAL_RELEASE"
  3113. task="Jscript_Recycler_Allocation"
  3114. template="JscriptAllocation"
  3115. value="115"
  3116. />
  3117. <event
  3118. keywords="JScriptObjectAllocation"
  3119. opcode="Allocate_WinRT_RuntimeClass_Object"
  3120. symbol="JSCRIPT_RECYCLER_ALLOCATE_WINRT_RUNTIMECLASS_OBJECT"
  3121. task="Jscript_Recycler_Allocation"
  3122. template="JScriptWinRTObjectAllocation"
  3123. value="116"
  3124. />
  3125. <event
  3126. keywords="JScriptObjectAllocation"
  3127. opcode="Allocate_WinRT_Namespace_Object"
  3128. symbol="JSCRIPT_RECYCLER_ALLOCATE_WINRT_NAMESPACE_OBJECT"
  3129. task="Jscript_Recycler_Allocation"
  3130. template="JScriptWinRTObjectAllocation"
  3131. value="117"
  3132. />
  3133. <event
  3134. keywords="JScriptObjectAllocation"
  3135. opcode="Allocate_WinRT_Struct_Object"
  3136. symbol="JSCRIPT_RECYCLER_ALLOCATE_WINRT_STRUCT_OBJECT"
  3137. task="Jscript_Recycler_Allocation"
  3138. template="JScriptWinRTObjectAllocation"
  3139. value="118"
  3140. />
  3141. <event
  3142. keywords="JScriptObjectAllocation"
  3143. opcode="Allocate_WinRT_Enum_Object"
  3144. symbol="JSCRIPT_RECYCLER_ALLOCATE_WINRT_ENUM_OBJECT"
  3145. task="Jscript_Recycler_Allocation"
  3146. template="JScriptWinRTObjectAllocation"
  3147. value="119"
  3148. />
  3149. <event
  3150. keywords="JScriptObjectAllocation"
  3151. opcode="Allocate_WinRT_TypedArray_Object"
  3152. symbol="JSCRIPT_RECYCLER_ALLOCATE_WINRT_TYPEDARRAY_OBJECT"
  3153. task="Jscript_Recycler_Allocation"
  3154. template="JScriptWinRTObjectAllocation"
  3155. value="120"
  3156. />
  3157. <event
  3158. keywords="JScriptObjectAllocation"
  3159. opcode="Allocate_WinRT_Delegate_Object"
  3160. symbol="JSCRIPT_RECYCLER_ALLOCATE_WINRT_DELEGATE_OBJECT"
  3161. task="Jscript_Recycler_Allocation"
  3162. template="JscriptWinRTWrapperAllocation"
  3163. value="121"
  3164. />
  3165. <event
  3166. keywords="JScriptObjectAllocation"
  3167. opcode="Allocate_WinRT_EventHandler_Object"
  3168. symbol="JSCRIPT_RECYCLER_ALLOCATE_WINRT_EVENTHANDLER_OBJECT"
  3169. task="Jscript_Recycler_Allocation"
  3170. template="JscriptWinRTEventHandlerAllocation"
  3171. value="122"
  3172. />
  3173. <event
  3174. keywords="JScriptObjectAllocation"
  3175. opcode="Allocate_WinRT_Collections_Object"
  3176. symbol="JSCRIPT_RECYCLER_ALLOCATE_WINRT_COLLECTIONS_OBJECT"
  3177. task="Jscript_Recycler_Allocation"
  3178. template="JscriptWinRTWrapperAllocation"
  3179. value="123"
  3180. />
  3181. <event
  3182. keywords="JScriptObjectAllocation"
  3183. opcode="Allocate_WinRT_PropertyValue_Object"
  3184. symbol="JSCRIPT_RECYCLER_ALLOCATE_WINRT_PROPERTYVALUE_OBJECT"
  3185. task="Jscript_Recycler_Allocation"
  3186. template="JscriptWinRTPropertyValueAllocation"
  3187. value="124"
  3188. />
  3189. <event
  3190. keywords="JScriptObjectAllocation"
  3191. opcode="Free_WinRT_Delegate_Object"
  3192. symbol="JSCRIPT_RECYCLER_FREE_WINRT_DELEGATE_OBJECT"
  3193. task="Jscript_Recycler_Allocation"
  3194. template="JscriptWinRTWrapperFree"
  3195. value="125"
  3196. />
  3197. <event
  3198. keywords="JScriptObjectAllocation"
  3199. opcode="Free_WinRT_EventHandler_Object"
  3200. symbol="JSCRIPT_RECYCLER_FREE_WINRT_EVENTHANDLER_OBJECT"
  3201. task="Jscript_Recycler_Allocation"
  3202. template="JscriptWinRTWrapperFree"
  3203. value="126"
  3204. />
  3205. <event
  3206. keywords="JScriptObjectAllocation"
  3207. opcode="Free_WinRT_Collections_Object"
  3208. symbol="JSCRIPT_RECYCLER_FREE_WINRT_COLLECTIONS_OBJECT"
  3209. task="Jscript_Recycler_Allocation"
  3210. template="JscriptWinRTWrapperFree"
  3211. value="127"
  3212. />
  3213. <event
  3214. keywords="JScriptObjectAllocation"
  3215. opcode="Free_WinRT_PropertyValue_Object"
  3216. symbol="JSCRIPT_RECYCLER_FREE_WINRT_PROPERTYVALUE_OBJECT"
  3217. task="Jscript_Recycler_Allocation"
  3218. template="JscriptWinRTWrapperFree"
  3219. value="128"
  3220. />
  3221. <event
  3222. keywords="JScriptGarbageCollection"
  3223. opcode="win:Start"
  3224. symbol="JSCRIPT_GC_SWEEP_WEAKREF_START"
  3225. task="Jscript_GC_SweepWeakRef"
  3226. template="GCPhase"
  3227. value="129"
  3228. />
  3229. <event
  3230. keywords="JScriptGarbageCollection"
  3231. opcode="win:Stop"
  3232. symbol="JSCRIPT_GC_SWEEP_WEAKREF_STOP"
  3233. task="Jscript_GC_SweepWeakRef"
  3234. template="GCPhase"
  3235. value="130"
  3236. />
  3237. <event
  3238. keywords="JScriptGarbageCollection"
  3239. opcode="win:Start"
  3240. symbol="JSCRIPT_GC_PROCESS_TRACKED_OBJECT_START"
  3241. task="Jscript_GC_ProcessTrackedObject"
  3242. template="GCPhase"
  3243. value="131"
  3244. />
  3245. <event
  3246. keywords="JScriptGarbageCollection"
  3247. opcode="win:Stop"
  3248. symbol="JSCRIPT_GC_PROCESS_TRACKED_OBJECT_STOP"
  3249. task="Jscript_GC_ProcessTrackedObject"
  3250. template="GCPhase"
  3251. value="132"
  3252. />
  3253. <event
  3254. keywords="JScriptGarbageCollection"
  3255. opcode="win:Start"
  3256. symbol="JSCRIPT_GC_PROCESS_CLIENT_TRACKED_OBJECT_START"
  3257. task="Jscript_GC_ProcessClientTrackedObject"
  3258. template="GCPhase"
  3259. value="133"
  3260. />
  3261. <event
  3262. keywords="JScriptGarbageCollection"
  3263. opcode="win:Stop"
  3264. symbol="JSCRIPT_GC_PROCESS_CLIENT_TRACKED_OBJECT_STOP"
  3265. task="Jscript_GC_ProcessClientTrackedObject"
  3266. template="GCPhase"
  3267. value="134"
  3268. />
  3269. <event
  3270. keywords="JScriptGarbageCollection"
  3271. opcode="win:Start"
  3272. symbol="JSCRIPT_GC_BACKGROUNDZEROPAGE_START"
  3273. task="Jscript_GC_BackgroundZeroPage"
  3274. template="GCPhase"
  3275. value="135"
  3276. />
  3277. <event
  3278. keywords="JScriptGarbageCollection"
  3279. opcode="win:Stop"
  3280. symbol="JSCRIPT_GC_BACKGROUNDZEROPAGE_STOP"
  3281. task="Jscript_GC_BackgroundZeroPage"
  3282. template="GCPhase"
  3283. value="136"
  3284. />
  3285. <event
  3286. keywords="JScriptGarbageCollection"
  3287. opcode="win:Start"
  3288. symbol="JSCRIPT_GC_FLUSHZEROPAGE_START"
  3289. task="Jscript_GC_FlushZeroPage"
  3290. template="GCPhase"
  3291. value="137"
  3292. />
  3293. <event
  3294. keywords="JScriptGarbageCollection"
  3295. opcode="win:Stop"
  3296. symbol="JSCRIPT_GC_FLUSHZEROPAGE_STOP"
  3297. task="Jscript_GC_FlushZeroPage"
  3298. template="GCPhase"
  3299. value="138"
  3300. />
  3301. <event
  3302. keywords="JScriptGarbageCollection"
  3303. opcode="win:Start"
  3304. symbol="JSCRIPT_GC_DECOMMIT_CONCURRENT_COLLECT_PAGE_ALLOCATOR_START"
  3305. task="Jscript_GC_DecommitConcurrentCollectPageAllocator"
  3306. template="GCPhase"
  3307. value="139"
  3308. />
  3309. <event
  3310. keywords="JScriptGarbageCollection"
  3311. opcode="win:Stop"
  3312. symbol="JSCRIPT_GC_DECOMMIT_CONCURRENT_COLLECT_PAGE_ALLOCATOR_STOP"
  3313. task="Jscript_GC_DecommitConcurrentCollectPageAllocator"
  3314. template="GCPhase"
  3315. value="140"
  3316. />
  3317. <event
  3318. keywords="JScriptGarbageCollection"
  3319. opcode="win:Start"
  3320. symbol="JSCRIPT_GC_SWEEP_PARTIAL_REUSE_PAGE_START"
  3321. task="Jscript_GC_SweepPartialReusePage"
  3322. template="GCPhase"
  3323. value="141"
  3324. />
  3325. <event
  3326. keywords="JScriptGarbageCollection"
  3327. opcode="win:Stop"
  3328. symbol="JSCRIPT_GC_SWEEP_PARTIAL_REUSE_PAGE_STOP"
  3329. task="Jscript_GC_SweepPartialReusePage"
  3330. template="GCPhase"
  3331. value="142"
  3332. />
  3333. <event
  3334. keywords="JScriptGarbageCollection"
  3335. opcode="win:Start"
  3336. symbol="JSCRIPT_GC_BACKGROUNDRESCAN_START"
  3337. task="Jscript_GC_BackgroundRescan"
  3338. template="GCBackgroundMark"
  3339. value="143"
  3340. />
  3341. <event
  3342. keywords="JScriptGarbageCollection"
  3343. opcode="win:Stop"
  3344. symbol="JSCRIPT_GC_BACKGROUNDRESCAN_STOP"
  3345. task="Jscript_GC_BackgroundRescan"
  3346. template="GCBackgroundMark"
  3347. value="144"
  3348. />
  3349. <event
  3350. keywords="JScriptGarbageCollection"
  3351. opcode="win:Start"
  3352. symbol="JSCRIPT_GC_BACKGROUNDRESETWRITEWATCH_START"
  3353. task="Jscript_GC_BackgroundResetWriteWatch"
  3354. template="GCBackgroundMark"
  3355. value="145"
  3356. />
  3357. <event
  3358. keywords="JScriptGarbageCollection"
  3359. opcode="win:Stop"
  3360. symbol="JSCRIPT_GC_BACKGROUNDRESETWRITEWATCH_STOP"
  3361. task="Jscript_GC_BackgroundResetWriteWatch"
  3362. template="GCBackgroundMark"
  3363. value="146"
  3364. />
  3365. <event
  3366. keywords="JScriptGarbageCollection"
  3367. opcode="win:Start"
  3368. symbol="JSCRIPT_GC_BACKGROUNDSCANROOTS_START"
  3369. task="Jscript_GC_BackgroundScanRoots"
  3370. template="GCPhase"
  3371. value="147"
  3372. />
  3373. <event
  3374. keywords="JScriptGarbageCollection"
  3375. opcode="win:Stop"
  3376. symbol="JSCRIPT_GC_BACKGROUNDSCANROOTS_STOP"
  3377. task="Jscript_GC_BackgroundScanRoots"
  3378. template="GCPhase"
  3379. value="148"
  3380. />
  3381. <event
  3382. keywords="JScriptGarbageCollection"
  3383. opcode="win:Start"
  3384. symbol="JSCRIPT_GC_BACKGROUNDRESETMARKS_START"
  3385. task="Jscript_GC_BackgroundResetMarks"
  3386. template="GCPhase"
  3387. value="149"
  3388. />
  3389. <event
  3390. keywords="JScriptGarbageCollection"
  3391. opcode="win:Stop"
  3392. symbol="JSCRIPT_GC_BACKGROUNDRESETMARKS_STOP"
  3393. task="Jscript_GC_BackgroundResetMarks"
  3394. template="GCPhase"
  3395. value="150"
  3396. />
  3397. <event
  3398. keywords="JScriptGarbageCollection"
  3399. opcode="win:Start"
  3400. symbol="JSCRIPT_GC_RESCANMARKWAIT_START"
  3401. task="Jscript_GC_RescanMarkWait"
  3402. template="GCWaitStart"
  3403. value="151"
  3404. />
  3405. <event
  3406. keywords="JScriptGarbageCollection"
  3407. opcode="win:Stop"
  3408. symbol="JSCRIPT_GC_RESCANMARKWAIT_STOP"
  3409. task="Jscript_GC_RescanMarkWait"
  3410. template="GCWaitStop"
  3411. value="152"
  3412. />
  3413. <event
  3414. keywords="JScriptGarbageCollection"
  3415. opcode="win:Start"
  3416. symbol="JSCRIPT_GC_SYNCHRONOUSMARKWAIT_START"
  3417. task="Jscript_GC_SynchronousMarkWait"
  3418. template="GCWaitStart"
  3419. value="153"
  3420. />
  3421. <event
  3422. keywords="JScriptGarbageCollection"
  3423. opcode="win:Stop"
  3424. symbol="JSCRIPT_GC_SYNCHRONOUSMARKWAIT_STOP"
  3425. task="Jscript_GC_SynchronousMarkWait"
  3426. template="GCWaitStop"
  3427. value="154"
  3428. />
  3429. <event
  3430. keywords="JScriptGarbageCollection"
  3431. opcode="win:Start"
  3432. symbol="JSCRIPT_GC_FINISHCONCURRENTWAIT_START"
  3433. task="Jscript_GC_FinishConcurrentWait"
  3434. template="GCWaitStart"
  3435. value="155"
  3436. />
  3437. <event
  3438. keywords="JScriptGarbageCollection"
  3439. opcode="win:Stop"
  3440. symbol="JSCRIPT_GC_FINISHCONCURRENTWAIT_STOP"
  3441. task="Jscript_GC_FinishConcurrentWait"
  3442. template="GCWaitStop"
  3443. value="156"
  3444. />
  3445. <event
  3446. keywords="JScriptGarbageCollection"
  3447. opcode="win:Start"
  3448. symbol="JSCRIPT_GC_ENDMARKONLOWMEMORY_START"
  3449. task="Jscript_GC_EndMarkOnLowMemory"
  3450. template="GCPhase"
  3451. value="157"
  3452. />
  3453. <event
  3454. keywords="JScriptGarbageCollection"
  3455. opcode="win:Stop"
  3456. symbol="JSCRIPT_GC_ENDMARKONLOWMEMORY_STOP"
  3457. task="Jscript_GC_EndMarkOnLowMemory"
  3458. template="GCPhase"
  3459. value="158"
  3460. />
  3461. <event
  3462. keywords="JScriptAsyncCausality"
  3463. opcode="win:Info"
  3464. symbol="JSCRIPT_ASYNCCAUSALITY_STACKTRACE"
  3465. task="Jscript_AsyncCausality_StackTrace"
  3466. template="JscriptAsyncCausalityCallstackPayload"
  3467. value="159"
  3468. />
  3469. <event
  3470. keywords="JScriptByteCode"
  3471. opcode="win:Start"
  3472. symbol="JSCRIPT_BYTECODEDESERIALIZE_START"
  3473. task="JScript_ByteCodeDeserialize"
  3474. template="Element_Zero"
  3475. value="160"
  3476. />
  3477. <event
  3478. keywords="JScriptByteCode"
  3479. opcode="win:Stop"
  3480. symbol="JSCRIPT_BYTECODEDESERIALIZE_STOP"
  3481. task="JScript_ByteCodeDeserialize"
  3482. template="Element_Zero"
  3483. value="161"
  3484. />
  3485. <event
  3486. keywords="JScriptHosting"
  3487. opcode="win:Info"
  3488. symbol="JSCRIPT_HOSTING_BINARYINCONSISTENCY"
  3489. task="Jscript_Hosting_BinaryInconsistency"
  3490. template="JscriptHostingBinaryInconsistencyState"
  3491. value="162"
  3492. />
  3493. <event
  3494. keywords="JScriptHosting"
  3495. opcode="win:Info"
  3496. symbol="JSCRIPT_HOSTING_BINARY_CONSISTENCY_INFO"
  3497. task="Jscript_Hosting_BinaryConsistencyInfo"
  3498. template="JscriptHostingBinaryConsistencyInfo"
  3499. value="163"
  3500. />
  3501. <event
  3502. keywords="JScriptStackTrace"
  3503. opcode="win:Info"
  3504. symbol="JSCRIPT_STACKTRACE"
  3505. task="Jscript_StackTrace"
  3506. template="JscriptStackTraceInfo"
  3507. value="164"
  3508. />
  3509. <!-- Same template of JScriptStackTrace is used -->
  3510. <event
  3511. keywords="JScriptAsyncCausality_V2"
  3512. opcode="win:Info"
  3513. symbol="JSCRIPT_ASYNCCAUSALITY_STACKTRACE_V2"
  3514. task="Jscript_AsyncCausality_StackTrace"
  3515. template="JscriptStackTraceInfo"
  3516. value="165"
  3517. />
  3518. <event
  3519. keywords="JscriptJit"
  3520. opcode="win:Info"
  3521. symbol="JSCRIPT_NATIVE_MODULE_LOAD"
  3522. task="Jscript_Host_Native"
  3523. template="JscriptHostNativeModuleLoad"
  3524. value="166"
  3525. />
  3526. <event
  3527. keywords="JscriptJit"
  3528. opcode="win:Info"
  3529. symbol="JSCRIPT_NATIVE_FUNCTION_LOAD"
  3530. task="Jscript_Host_Native"
  3531. template="JscriptHostNativeFunctionLoad"
  3532. value="167"
  3533. />
  3534. <event
  3535. keywords="JScriptSourceMapping"
  3536. opcode="win:Info"
  3537. symbol="JSCRIPT_SOURCEMAPPING"
  3538. task="Jscript_SourceMapping"
  3539. template="JScriptSourceMappingInfo"
  3540. value="168"
  3541. />
  3542. <event
  3543. keywords="JScriptGarbageCollection"
  3544. opcode="win:Start"
  3545. symbol="JSCRIPT_GC_PARALLELMARK_START"
  3546. task="Jscript_GC_ParallelMark"
  3547. template="GCPhase"
  3548. value="169"
  3549. />
  3550. <event
  3551. keywords="JScriptGarbageCollection"
  3552. opcode="win:Stop"
  3553. symbol="JSCRIPT_GC_PARALLELMARK_STOP"
  3554. task="Jscript_GC_ParallelMark"
  3555. template="GCPhase"
  3556. value="170"
  3557. />
  3558. <event
  3559. keywords="JScriptGarbageCollection"
  3560. opcode="win:Start"
  3561. symbol="JSCRIPT_GC_BACKGROUNDPARALLELMARK_START"
  3562. task="Jscript_GC_BackgroundParallelMark"
  3563. template="GCBackgroundMark"
  3564. value="171"
  3565. />
  3566. <event
  3567. keywords="JScriptGarbageCollection"
  3568. opcode="win:Stop"
  3569. symbol="JSCRIPT_GC_BACKGROUNDPARALLELMARK_STOP"
  3570. task="Jscript_GC_BackgroundParallelMark"
  3571. template="GCBackgroundMark"
  3572. value="172"
  3573. />
  3574. <event
  3575. keywords="MemProtectGarbageCollection"
  3576. opcode="win:Start"
  3577. symbol="MEMPROTECT_GC_RESETMARKS_START"
  3578. task="Memprotect_GC_ResetMarks"
  3579. template="GCPhase"
  3580. value="173"
  3581. />
  3582. <event
  3583. keywords="MemProtectGarbageCollection"
  3584. opcode="win:Stop"
  3585. symbol="MEMPROTECT_GC_RESETMARKS_STOP"
  3586. task="Memprotect_GC_ResetMarks"
  3587. template="GCPhase"
  3588. value="174"
  3589. />
  3590. <event
  3591. keywords="MemProtectGarbageCollection"
  3592. opcode="win:Start"
  3593. symbol="MEMPROTECT_GC_SCANROOTS_START"
  3594. task="Memprotect_GC_ScanRoots"
  3595. template="GCPhase"
  3596. value="175"
  3597. />
  3598. <event
  3599. keywords="MemProtectGarbageCollection"
  3600. opcode="win:Stop"
  3601. symbol="MEMPROTECT_GC_SCANROOTS_STOP"
  3602. task="Memprotect_GC_ScanRoots"
  3603. template="GCPhase"
  3604. value="176"
  3605. />
  3606. <event
  3607. keywords="MemProtectGarbageCollection"
  3608. opcode="win:Start"
  3609. symbol="MEMPROTECT_GC_SCANSTACK_START"
  3610. task="Memprotect_GC_ScanStack"
  3611. template="GCPhase"
  3612. value="177"
  3613. />
  3614. <event
  3615. keywords="MemProtectGarbageCollection"
  3616. opcode="win:Stop"
  3617. symbol="MEMPROTECT_GC_SCANSTACK_STOP"
  3618. task="Memprotect_GC_ScanStack"
  3619. template="GCPhase"
  3620. value="178"
  3621. />
  3622. <event
  3623. keywords="MemProtectGarbageCollection"
  3624. opcode="win:Start"
  3625. symbol="MEMPROTECT_GC_MARK_START"
  3626. task="Memprotect_GC_Mark"
  3627. template="GCPhase"
  3628. value="179"
  3629. />
  3630. <event
  3631. keywords="MemProtectGarbageCollection"
  3632. opcode="win:Stop"
  3633. symbol="MEMPROTECT_GC_MARK_STOP"
  3634. task="Memprotect_GC_Mark"
  3635. template="GCPhase"
  3636. value="180"
  3637. />
  3638. <event
  3639. keywords="MemProtectGarbageCollection"
  3640. opcode="win:Start"
  3641. symbol="MEMPROTECT_GC_RESCAN_START"
  3642. task="Memprotect_GC_Rescan"
  3643. template="GCPhase"
  3644. value="181"
  3645. />
  3646. <event
  3647. keywords="MemProtectGarbageCollection"
  3648. opcode="win:Stop"
  3649. symbol="MEMPROTECT_GC_RESCAN_STOP"
  3650. task="Memprotect_GC_Rescan"
  3651. template="GCPhase"
  3652. value="182"
  3653. />
  3654. <event
  3655. keywords="MemProtectGarbageCollection"
  3656. opcode="win:Start"
  3657. symbol="MEMPROTECT_GC_SWEEP_START"
  3658. task="Memprotect_GC_Sweep"
  3659. template="GCPhase"
  3660. value="183"
  3661. />
  3662. <event
  3663. keywords="MemProtectGarbageCollection"
  3664. opcode="win:Stop"
  3665. symbol="MEMPROTECT_GC_SWEEP_STOP"
  3666. task="Memprotect_GC_Sweep"
  3667. template="GCPhaseCollect"
  3668. value="184"
  3669. />
  3670. <event
  3671. keywords="MemProtectGarbageCollection"
  3672. opcode="win:Start"
  3673. symbol="MEMPROTECT_GC_SETUPBACKGROUNDSWEEP_START"
  3674. task="Memprotect_GC_SetupBackgroundSweep"
  3675. template="GCPhase"
  3676. value="185"
  3677. />
  3678. <event
  3679. keywords="MemProtectGarbageCollection"
  3680. opcode="win:Stop"
  3681. symbol="MEMPROTECT_GC_SETUPBACKGROUNDSWEEP_STOP"
  3682. task="Memprotect_GC_SetupBackgroundSweep"
  3683. template="GCPhase"
  3684. value="186"
  3685. />
  3686. <event
  3687. keywords="MemProtectGarbageCollection"
  3688. opcode="win:Start"
  3689. symbol="MEMPROTECT_GC_BACKGROUNDSWEEP_START"
  3690. task="Memprotect_GC_BackgroundSweep"
  3691. template="GCPhase"
  3692. value="187"
  3693. />
  3694. <event
  3695. keywords="MemProtectGarbageCollection"
  3696. opcode="win:Stop"
  3697. symbol="MEMPROTECT_GC_BACKGROUNDSWEEP_STOP"
  3698. task="Memprotect_GC_BackgroundSweep"
  3699. template="GCPhaseCollect"
  3700. value="188"
  3701. />
  3702. <event
  3703. keywords="MemProtectGarbageCollection"
  3704. opcode="win:Start"
  3705. symbol="MEMPROTECT_GC_TRANSFERSWEPTOBJECTS_START"
  3706. task="Memprotect_GC_TransferSweptObjects"
  3707. template="GCPhase"
  3708. value="189"
  3709. />
  3710. <event
  3711. keywords="MemProtectGarbageCollection"
  3712. opcode="win:Stop"
  3713. symbol="MEMPROTECT_GC_TRANSFERSWEPTOBJECTS_STOP"
  3714. task="Memprotect_GC_TransferSweptObjects"
  3715. template="GCPhase"
  3716. value="190"
  3717. />
  3718. <event
  3719. keywords="MemProtectGarbageCollection"
  3720. opcode="win:Start"
  3721. symbol="MEMPROTECT_GC_DISPOSE_START"
  3722. task="Memprotect_GC_Dispose"
  3723. template="GCPhase"
  3724. value="191"
  3725. />
  3726. <event
  3727. keywords="MemProtectGarbageCollection"
  3728. opcode="win:Stop"
  3729. symbol="MEMPROTECT_GC_DISPOSE_STOP"
  3730. task="Memprotect_GC_Dispose"
  3731. template="GCPhaseCollect"
  3732. value="192"
  3733. />
  3734. <event
  3735. keywords="MemProtectGarbageCollection"
  3736. opcode="win:Start"
  3737. symbol="MEMPROTECT_GC_BACKGROUNDMARK_START"
  3738. task="Memprotect_GC_BackgroundMark"
  3739. template="GCBackgroundMark"
  3740. value="193"
  3741. />
  3742. <event
  3743. keywords="MemProtectGarbageCollection"
  3744. opcode="win:Stop"
  3745. symbol="MEMPROTECT_GC_BACKGROUNDMARK_STOP"
  3746. task="Memprotect_GC_BackgroundMark"
  3747. template="GCBackgroundMark"
  3748. value="194"
  3749. />
  3750. <event
  3751. keywords="MemProtectGarbageCollection"
  3752. opcode="win:Start"
  3753. symbol="MEMPROTECT_GC_RESETWRITEWATCH_START"
  3754. task="Memprotect_GC_ResetWriteWatch"
  3755. template="GCPhase"
  3756. value="195"
  3757. />
  3758. <event
  3759. keywords="MemProtectGarbageCollection"
  3760. opcode="win:Stop"
  3761. symbol="MEMPROTECT_GC_RESETWRITEWATCH_STOP"
  3762. task="Memprotect_GC_ResetWriteWatch"
  3763. template="GCPhase"
  3764. value="196"
  3765. />
  3766. <event
  3767. keywords="MemProtectGarbageCollection"
  3768. opcode="win:Start"
  3769. symbol="MEMPROTECT_GC_IDLE_START"
  3770. task="Memprotect_GC_IdleCollect"
  3771. template="GCPhase"
  3772. value="197"
  3773. />
  3774. <event
  3775. keywords="MemProtectGarbageCollection"
  3776. opcode="win:Info"
  3777. symbol="MEMPROTECT_GC_IDLE_CALLBACK_NEWCOLLECT"
  3778. task="Memprotect_GC_IdleCollect"
  3779. template="GCPhase"
  3780. value="198"
  3781. />
  3782. <event
  3783. keywords="MemProtectGarbageCollection"
  3784. opcode="win:Info"
  3785. symbol="MEMPROTECT_GC_IDLE_CALLBACK_FINISH"
  3786. task="Memprotect_GC_IdleCollect"
  3787. template="GCPhase"
  3788. value="199"
  3789. />
  3790. <event
  3791. keywords="MemProtectGarbageCollection"
  3792. opcode="win:Info"
  3793. symbol="MEMPROTECT_GC_IDLE_SCHEDULED"
  3794. task="Memprotect_GC_IdleCollect"
  3795. template="GCPhase"
  3796. value="200"
  3797. />
  3798. <event
  3799. keywords="MemProtectGarbageCollection"
  3800. opcode="win:Stop"
  3801. symbol="MEMPROTECT_GC_IDLE_FINISHED"
  3802. task="Memprotect_GC_IdleCollect"
  3803. template="GCPhase"
  3804. value="201"
  3805. />
  3806. <event
  3807. keywords="MemProtectGarbageCollection"
  3808. opcode="win:Start"
  3809. symbol="MEMPROTECT_GC_SWEEP_WEAKREF_START"
  3810. task="Memprotect_GC_SweepWeakRef"
  3811. template="GCPhase"
  3812. value="202"
  3813. />
  3814. <event
  3815. keywords="MemProtectGarbageCollection"
  3816. opcode="win:Stop"
  3817. symbol="MEMPROTECT_GC_SWEEP_WEAKREF_STOP"
  3818. task="Memprotect_GC_SweepWeakRef"
  3819. template="GCPhase"
  3820. value="203"
  3821. />
  3822. <event
  3823. keywords="MemProtectGarbageCollection"
  3824. opcode="win:Start"
  3825. symbol="MEMPROTECT_GC_PROCESS_TRACKED_OBJECT_START"
  3826. task="Memprotect_GC_ProcessTrackedObject"
  3827. template="GCPhase"
  3828. value="204"
  3829. />
  3830. <event
  3831. keywords="MemProtectGarbageCollection"
  3832. opcode="win:Stop"
  3833. symbol="MEMPROTECT_GC_PROCESS_TRACKED_OBJECT_STOP"
  3834. task="Memprotect_GC_ProcessTrackedObject"
  3835. template="GCPhase"
  3836. value="205"
  3837. />
  3838. <event
  3839. keywords="MemProtectGarbageCollection"
  3840. opcode="win:Start"
  3841. symbol="MEMPROTECT_GC_PROCESS_CLIENT_TRACKED_OBJECT_START"
  3842. task="Memprotect_GC_ProcessClientTrackedObject"
  3843. template="GCPhase"
  3844. value="206"
  3845. />
  3846. <event
  3847. keywords="MemProtectGarbageCollection"
  3848. opcode="win:Stop"
  3849. symbol="MEMPROTECT_GC_PROCESS_CLIENT_TRACKED_OBJECT_STOP"
  3850. task="Memprotect_GC_ProcessClientTrackedObject"
  3851. template="GCPhase"
  3852. value="207"
  3853. />
  3854. <event
  3855. keywords="MemProtectGarbageCollection"
  3856. opcode="win:Start"
  3857. symbol="MEMPROTECT_GC_BACKGROUNDZEROPAGE_START"
  3858. task="Memprotect_GC_BackgroundZeroPage"
  3859. template="GCPhase"
  3860. value="208"
  3861. />
  3862. <event
  3863. keywords="MemProtectGarbageCollection"
  3864. opcode="win:Stop"
  3865. symbol="MEMPROTECT_GC_BACKGROUNDZEROPAGE_STOP"
  3866. task="Memprotect_GC_BackgroundZeroPage"
  3867. template="GCPhase"
  3868. value="209"
  3869. />
  3870. <event
  3871. keywords="MemProtectGarbageCollection"
  3872. opcode="win:Start"
  3873. symbol="MEMPROTECT_GC_FLUSHZEROPAGE_START"
  3874. task="Memprotect_GC_FlushZeroPage"
  3875. template="GCPhase"
  3876. value="210"
  3877. />
  3878. <event
  3879. keywords="MemProtectGarbageCollection"
  3880. opcode="win:Stop"
  3881. symbol="MEMPROTECT_GC_FLUSHZEROPAGE_STOP"
  3882. task="Memprotect_GC_FlushZeroPage"
  3883. template="GCPhase"
  3884. value="211"
  3885. />
  3886. <event
  3887. keywords="MemProtectGarbageCollection"
  3888. opcode="win:Start"
  3889. symbol="MEMPROTECT_GC_DECOMMIT_CONCURRENT_COLLECT_PAGE_ALLOCATOR_START"
  3890. task="Memprotect_GC_DecommitConcurrentCollectPageAllocator"
  3891. template="GCPhase"
  3892. value="212"
  3893. />
  3894. <event
  3895. keywords="MemProtectGarbageCollection"
  3896. opcode="win:Stop"
  3897. symbol="MEMPROTECT_GC_DECOMMIT_CONCURRENT_COLLECT_PAGE_ALLOCATOR_STOP"
  3898. task="Memprotect_GC_DecommitConcurrentCollectPageAllocator"
  3899. template="GCPhase"
  3900. value="213"
  3901. />
  3902. <event
  3903. keywords="MemProtectGarbageCollection"
  3904. opcode="win:Start"
  3905. symbol="MEMPROTECT_GC_SWEEP_PARTIAL_REUSE_PAGE_START"
  3906. task="Memprotect_GC_SweepPartialReusePage"
  3907. template="GCPhase"
  3908. value="214"
  3909. />
  3910. <event
  3911. keywords="MemProtectGarbageCollection"
  3912. opcode="win:Stop"
  3913. symbol="MEMPROTECT_GC_SWEEP_PARTIAL_REUSE_PAGE_STOP"
  3914. task="Memprotect_GC_SweepPartialReusePage"
  3915. template="GCPhase"
  3916. value="215"
  3917. />
  3918. <event
  3919. keywords="MemProtectGarbageCollection"
  3920. opcode="win:Start"
  3921. symbol="MEMPROTECT_GC_BACKGROUNDRESCAN_START"
  3922. task="Memprotect_GC_BackgroundRescan"
  3923. template="GCBackgroundMark"
  3924. value="216"
  3925. />
  3926. <event
  3927. keywords="MemProtectGarbageCollection"
  3928. opcode="win:Stop"
  3929. symbol="MEMPROTECT_GC_BACKGROUNDRESCAN_STOP"
  3930. task="Memprotect_GC_BackgroundRescan"
  3931. template="GCBackgroundMark"
  3932. value="217"
  3933. />
  3934. <event
  3935. keywords="MemProtectGarbageCollection"
  3936. opcode="win:Start"
  3937. symbol="MEMPROTECT_GC_BACKGROUNDRESETWRITEWATCH_START"
  3938. task="Memprotect_GC_BackgroundResetWriteWatch"
  3939. template="GCBackgroundMark"
  3940. value="218"
  3941. />
  3942. <event
  3943. keywords="MemProtectGarbageCollection"
  3944. opcode="win:Stop"
  3945. symbol="MEMPROTECT_GC_BACKGROUNDRESETWRITEWATCH_STOP"
  3946. task="Memprotect_GC_BackgroundResetWriteWatch"
  3947. template="GCBackgroundMark"
  3948. value="219"
  3949. />
  3950. <event
  3951. keywords="MemProtectGarbageCollection"
  3952. opcode="win:Start"
  3953. symbol="MEMPROTECT_GC_BACKGROUNDSCANROOTS_START"
  3954. task="Memprotect_GC_BackgroundScanRoots"
  3955. template="GCPhase"
  3956. value="220"
  3957. />
  3958. <event
  3959. keywords="MemProtectGarbageCollection"
  3960. opcode="win:Stop"
  3961. symbol="MEMPROTECT_GC_BACKGROUNDSCANROOTS_STOP"
  3962. task="Memprotect_GC_BackgroundScanRoots"
  3963. template="GCPhase"
  3964. value="221"
  3965. />
  3966. <event
  3967. keywords="MemProtectGarbageCollection"
  3968. opcode="win:Start"
  3969. symbol="MEMPROTECT_GC_BACKGROUNDRESETMARKS_START"
  3970. task="Memprotect_GC_BackgroundResetMarks"
  3971. template="GCPhase"
  3972. value="222"
  3973. />
  3974. <event
  3975. keywords="MemProtectGarbageCollection"
  3976. opcode="win:Stop"
  3977. symbol="MEMPROTECT_GC_BACKGROUNDRESETMARKS_STOP"
  3978. task="Memprotect_GC_BackgroundResetMarks"
  3979. template="GCPhase"
  3980. value="223"
  3981. />
  3982. <event
  3983. keywords="MemProtectGarbageCollection"
  3984. opcode="win:Start"
  3985. symbol="MEMPROTECT_GC_RESCANMARKWAIT_START"
  3986. task="Memprotect_GC_RescanMarkWait"
  3987. template="GCWaitStart"
  3988. value="224"
  3989. />
  3990. <event
  3991. keywords="MemProtectGarbageCollection"
  3992. opcode="win:Stop"
  3993. symbol="MEMPROTECT_GC_RESCANMARKWAIT_STOP"
  3994. task="Memprotect_GC_RescanMarkWait"
  3995. template="GCWaitStop"
  3996. value="225"
  3997. />
  3998. <event
  3999. keywords="MemProtectGarbageCollection"
  4000. opcode="win:Start"
  4001. symbol="MEMPROTECT_GC_SYNCHRONOUSMARKWAIT_START"
  4002. task="Memprotect_GC_SynchronousMarkWait"
  4003. template="GCWaitStart"
  4004. value="226"
  4005. />
  4006. <event
  4007. keywords="MemProtectGarbageCollection"
  4008. opcode="win:Stop"
  4009. symbol="MEMPROTECT_GC_SYNCHRONOUSMARKWAIT_STOP"
  4010. task="Memprotect_GC_SynchronousMarkWait"
  4011. template="GCWaitStop"
  4012. value="227"
  4013. />
  4014. <event
  4015. keywords="MemProtectGarbageCollection"
  4016. opcode="win:Start"
  4017. symbol="MEMPROTECT_GC_FINISHCONCURRENTWAIT_START"
  4018. task="Memprotect_GC_FinishConcurrentWait"
  4019. template="GCWaitStart"
  4020. value="228"
  4021. />
  4022. <event
  4023. keywords="MemProtectGarbageCollection"
  4024. opcode="win:Stop"
  4025. symbol="MEMPROTECT_GC_FINISHCONCURRENTWAIT_STOP"
  4026. task="Memprotect_GC_FinishConcurrentWait"
  4027. template="GCWaitStop"
  4028. value="229"
  4029. />
  4030. <event
  4031. keywords="MemProtectGarbageCollection"
  4032. opcode="win:Start"
  4033. symbol="MEMPROTECT_GC_ENDMARKONLOWMEMORY_START"
  4034. task="Memprotect_GC_EndMarkOnLowMemory"
  4035. template="GCPhase"
  4036. value="230"
  4037. />
  4038. <event
  4039. keywords="MemProtectGarbageCollection"
  4040. opcode="win:Stop"
  4041. symbol="MEMPROTECT_GC_ENDMARKONLOWMEMORY_STOP"
  4042. task="Memprotect_GC_EndMarkOnLowMemory"
  4043. template="GCPhase"
  4044. value="231"
  4045. />
  4046. <event
  4047. keywords="MemProtectGarbageCollection"
  4048. opcode="win:Start"
  4049. symbol="MEMPROTECT_GC_PARALLELMARK_START"
  4050. task="Memprotect_GC_ParallelMark"
  4051. template="GCPhase"
  4052. value="232"
  4053. />
  4054. <event
  4055. keywords="MemProtectGarbageCollection"
  4056. opcode="win:Stop"
  4057. symbol="MEMPROTECT_GC_PARALLELMARK_STOP"
  4058. task="Memprotect_GC_ParallelMark"
  4059. template="GCPhase"
  4060. value="233"
  4061. />
  4062. <event
  4063. keywords="MemProtectGarbageCollection"
  4064. opcode="win:Start"
  4065. symbol="MEMPROTECT_GC_BACKGROUNDPARALLELMARK_START"
  4066. task="Memprotect_GC_BackgroundParallelMark"
  4067. template="GCBackgroundMark"
  4068. value="234"
  4069. />
  4070. <event
  4071. keywords="MemProtectGarbageCollection"
  4072. opcode="win:Stop"
  4073. symbol="MEMPROTECT_GC_BACKGROUNDPARALLELMARK_STOP"
  4074. task="Memprotect_GC_BackgroundParallelMark"
  4075. template="GCBackgroundMark"
  4076. value="235"
  4077. />
  4078. <event
  4079. keywords="MemProtectGarbageCollection"
  4080. opcode="win:Start"
  4081. symbol="MEMPROTECT_GC_START"
  4082. task="Memprotect_GC"
  4083. template="Element_Zero"
  4084. value="236"
  4085. />
  4086. <event
  4087. keywords="MemProtectGarbageCollection"
  4088. opcode="win:Stop"
  4089. symbol="MEMPROTECT_GC_STOP"
  4090. task="Memprotect_GC"
  4091. template="Element_Zero"
  4092. value="237"
  4093. />
  4094. <event
  4095. keywords="MemProtectObjectAllocation"
  4096. opcode="win:Info"
  4097. symbol="MEMPROTECT_OBJECT_ALLOCATION"
  4098. task="Memprotect_GC_Allocation"
  4099. template="MemprotectObjectAlloc"
  4100. value="238"
  4101. />
  4102. <event
  4103. keywords="MemProtectObjectAllocation"
  4104. opcode="win:Info"
  4105. symbol="MEMPROTECT_OBJECT_UNROOT"
  4106. task="Memprotect_GC_Unroot"
  4107. template="MemprotectObjectUnroot"
  4108. value="239"
  4109. />
  4110. <event
  4111. keywords="JScriptGarbageCollection"
  4112. opcode="win:Info"
  4113. symbol="JSCRIPT_GC_INIT"
  4114. task="Jscript_GC_Init"
  4115. template="GCInit"
  4116. value="240"
  4117. />
  4118. <event
  4119. keywords="MemProtectHeapSize"
  4120. opcode="win:Info"
  4121. symbol="MEMPROTECT_GC_HEAP_SIZE"
  4122. task="Memprotect_GC_Heap_Size"
  4123. template="MemprotectHeap"
  4124. value="241"
  4125. />
  4126. <event
  4127. keywords="Internal"
  4128. opcode="win:Info"
  4129. symbol="JSCRIPT_INTERNAL_GENERIC_EVENT"
  4130. task="Jscript_Internal_Generic_Event"
  4131. template="InternalGenericEvent"
  4132. value="242"
  4133. />
  4134. <event
  4135. keywords="JScriptGarbageCollection"
  4136. opcode="win:Info"
  4137. symbol="JSCRIPT_GC_BUCKET_STATS"
  4138. task="Jscript_GC_Bucket_Stats"
  4139. template="GCBucketStats"
  4140. value="243"
  4141. />
  4142. <event
  4143. keywords="MemProtectGarbageCollection"
  4144. opcode="win:Info"
  4145. symbol="MEMPROTECT_GC_BUCKET_STATS"
  4146. task="Memprotect_GC_Bucket_Stats"
  4147. template="GCBucketStats"
  4148. value="244"
  4149. />
  4150. <event
  4151. keywords="JscriptBackend"
  4152. opcode="win:Info"
  4153. symbol="JSCRIPT_BACKEND_BAILOUT"
  4154. task="Jscript_Backend_Bailout"
  4155. template="BailoutInfo"
  4156. value="245"
  4157. />
  4158. <event
  4159. keywords="JscriptBackend"
  4160. opcode="win:Info"
  4161. symbol="JSCRIPT_BACKEND_BAILOUT_FROM_LOOP_BODY"
  4162. task="Jscript_Backend_Bailout_LoopBody"
  4163. template="BailoutFromLoopBodyInfo"
  4164. value="246"
  4165. />
  4166. <event
  4167. keywords="JScriptGarbageCollection"
  4168. opcode="win:Start"
  4169. symbol="JSCRIPT_GC_CLEAR_INLINECACHE_START"
  4170. task="Jscript_GC_Clear_InlineCache"
  4171. value="247"
  4172. />
  4173. <event
  4174. keywords="JScriptGarbageCollection"
  4175. opcode="win:Stop"
  4176. symbol="JSCRIPT_GC_CLEAR_INLINECACHE_STOP"
  4177. task="Jscript_GC_Clear_InlineCache"
  4178. template="GCClearInlineCacheData"
  4179. value="248"
  4180. />
  4181. <event
  4182. keywords="JScriptGarbageCollection"
  4183. opcode="win:Start"
  4184. symbol="JSCRIPT_GC_PRESWEEPCALLBACK_START"
  4185. task="Jscript_GC_PreSweepCallback"
  4186. template="GCPhase"
  4187. value="249"
  4188. />
  4189. <event
  4190. keywords="JScriptGarbageCollection"
  4191. opcode="win:Stop"
  4192. symbol="JSCRIPT_GC_PRESWEEPCALLBACK_STOP"
  4193. task="Jscript_GC_PreSweepCallback"
  4194. template="GCPhase"
  4195. value="250"
  4196. />
  4197. <event
  4198. keywords="MemProtectGarbageCollection"
  4199. opcode="win:Start"
  4200. symbol="MEMPROTECT_GC_PRESWEEPCALLBACK_START"
  4201. task="Memprotect_GC_PreSweepCallback"
  4202. template="GCPhase"
  4203. value="251"
  4204. />
  4205. <event
  4206. keywords="MemProtectGarbageCollection"
  4207. opcode="win:Stop"
  4208. symbol="MEMPROTECT_GC_PRESWEEPCALLBACK_STOP"
  4209. task="Memprotect_GC_PreSweepCallback"
  4210. template="GCPhase"
  4211. value="252"
  4212. />
  4213. <event
  4214. keywords="JScriptGarbageCollection"
  4215. opcode="win:Stop"
  4216. symbol="JSCRIPT_GC_SWEEP_WEAKREF_STOP_EX"
  4217. task="Jscript_GC_SweepWeakRef"
  4218. template="GCInThreadSweepData"
  4219. value="253"
  4220. />
  4221. <event
  4222. keywords="MemProtectGarbageCollection"
  4223. opcode="win:Stop"
  4224. symbol="MEMPROTECT_GC_SWEEP_WEAKREF_STOP_EX"
  4225. task="Memprotect_GC_SweepWeakRef"
  4226. template="GCInThreadSweepData"
  4227. value="254"
  4228. />
  4229. <event
  4230. keywords="JScriptGarbageCollection"
  4231. opcode="win:Start"
  4232. symbol="JSCRIPT_GC_START2"
  4233. task="Jscript_GC2"
  4234. template="GCTriggerInfo"
  4235. value="255"
  4236. />
  4237. <event
  4238. keywords="JScriptGarbageCollection"
  4239. opcode="win:Stop"
  4240. symbol="JSCRIPT_GC_STOP2"
  4241. task="Jscript_GC2"
  4242. template="GCTriggerInfo"
  4243. value="256"
  4244. />
  4245. <event
  4246. keywords="MemProtectGarbageCollection"
  4247. opcode="win:Start"
  4248. symbol="MEMPROTECT_GC_START2"
  4249. task="Memprotect_GC2"
  4250. template="GCTriggerInfo"
  4251. value="257"
  4252. />
  4253. <event
  4254. keywords="MemProtectGarbageCollection"
  4255. opcode="win:Stop"
  4256. symbol="MEMPROTECT_GC_STOP2"
  4257. task="Memprotect_GC2"
  4258. template="GCTriggerInfo"
  4259. value="258"
  4260. />
  4261. </events>
  4262. </provider>
  4263. </events>
  4264. </instrumentation>
  4265. <localization>
  4266. <resources culture="en-US">
  4267. <stringTable>
  4268. <string
  4269. id="JScriptProvider.Name"
  4270. value="Microsoft-JScript"
  4271. />
  4272. <string
  4273. id="ManDesc"
  4274. value="Microsoft Scripting Manifest for JScript9"
  4275. />
  4276. <string
  4277. id="ManName"
  4278. value="JScript9 Manifest"
  4279. />
  4280. <string
  4281. id="JScriptProvider.Method.InterpretedMessage"
  4282. value="Interpreted"
  4283. />
  4284. <string
  4285. id="JScriptProvider.Method.JittedMessage"
  4286. value="JIT"
  4287. />
  4288. <string
  4289. id="JScriptProvider.Method.JittedLoopBodyMessage"
  4290. value="JITLoopBody"
  4291. />
  4292. <string
  4293. id="JScriptProvider.Method.SimpleJitMessage"
  4294. value="SimpleJit"
  4295. />
  4296. <string
  4297. id="JScriptProvider.Method.FullJitMessage"
  4298. value="FullJit"
  4299. />
  4300. <string
  4301. id="JScriptProvider.Source.ReasonLength"
  4302. value="ReasonLength"
  4303. />
  4304. <string
  4305. id="JScriptProvider.Source.Reason"
  4306. value="Reason"
  4307. />
  4308. <string
  4309. id="JScriptProvider.GCBucket.Normal_S}"
  4310. value="Normal (S)"
  4311. />
  4312. <string
  4313. id="JScriptProvider.GCBucket.Leaf_S}"
  4314. value="Leaf (S)"
  4315. />
  4316. <string
  4317. id="JScriptProvider.GCBucket.Fin_S}"
  4318. value="Fin (S)"
  4319. />
  4320. <string
  4321. id="JScriptProvider.GCBucket.NormWB_S}"
  4322. value="NormWB (S)"
  4323. />
  4324. <string
  4325. id="JScriptProvider.GCBucket.FinWB_S}"
  4326. value="FinWB (S)"
  4327. />
  4328. <string
  4329. id="JScriptProvider.GCBucket.Visited_S}"
  4330. value="Visited (S)"
  4331. />
  4332. <string
  4333. id="JScriptProvider.GCBucket.Normal_M}"
  4334. value="Normal (M)"
  4335. />
  4336. <string
  4337. id="JScriptProvider.GCBucket.Leaf_M}"
  4338. value="Leaf (M)"
  4339. />
  4340. <string
  4341. id="JScriptProvider.GCBucket.Fin_M}"
  4342. value="Fin (M)"
  4343. />
  4344. <string
  4345. id="JScriptProvider.GCBucket.NormWB_M}"
  4346. value="NormWB (M)"
  4347. />
  4348. <string
  4349. id="JScriptProvider.GCBucket.FinWB_M}"
  4350. value="FinWB (M)"
  4351. />
  4352. <string
  4353. id="JScriptProvider.GCBucket.Visited_M}"
  4354. value="Visited (M)"
  4355. />
  4356. <string
  4357. id="JScriptProvider.GCBucket.Large"
  4358. value="Large"
  4359. />
  4360. <string
  4361. id="JScriptProvider.GCBucket.Total"
  4362. value="Total"
  4363. />
  4364. </stringTable>
  4365. </resources>
  4366. </localization>
  4367. </instrumentationManifest>