forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrejit.cpp
1244 lines (1095 loc) · 43 KB
/
rejit.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//
// ReJit.cpp
//
//
// This module implements the tracking and execution of rejit requests. In order to avoid
// any overhead on the non-profiled case we don't intrude on any 'normal' data structures
// except one member on the AppDomain to hold our main hashtable and crst (the
// ReJitManager). See comments in rejit.h to understand relationships between ReJitInfo,
// SharedReJitInfo, and ReJitManager, particularly SharedReJitInfo::InternalFlags which
// capture the state of a rejit request, and ReJitInfo::InternalFlags which captures the
// state of a particular MethodDesc from a rejit request.
//
// A ReJIT request (tracked via SharedReJitInfo) is made at the level of a (Module *,
// methodDef) pair, and thus affects all instantiations of a generic. Each MethodDesc
// affected by a ReJIT request has its state tracked via a ReJitInfo instance. A
// ReJitInfo can represent a rejit request against an already-jitted MethodDesc, or a
// rejit request against a not-yet-jitted MethodDesc (called a "pre-rejit" request). A
// Pre-ReJIT request happens when a profiler specifies a (Module *, methodDef) pair that
// has not yet been JITted, or that represents a generic function which always has the
// potential to JIT new instantiations in the future.
//
// Top-level functions in this file of most interest are:
//
// * (static) code:ReJitManager::RequestReJIT:
// Profiling API just delegates all rejit requests directly to this function. It is
// responsible for recording the request into the appropriate ReJITManagers and for
// jump-stamping any already-JITted functions affected by the request (so that future
// calls hit the prestub)
//
// * code:ReJitManager::DoReJitIfNecessary:
// MethodDesc::DoPrestub calls this to determine whether it's been invoked to do a rejit.
// If so, ReJitManager::DoReJitIfNecessary is responsible for (indirectly) gathering the
// appropriate IL and codegen flags, calling UnsafeJitFunction(), and redirecting the
// jump-stamp from the prestub to the newly-rejitted code.
//
// * code:ReJitManager::GetCurrentReJitFlags:
// CEEInfo::canInline() calls this as part of its calculation of whether it may inline a
// given method. (Profilers may specify on a per-rejit-request basis whether the rejit of
// a method may inline callees.)
//
//
// #Invariants:
//
// For a given Module/MethodDef there is at most 1 SharedReJitInfo that is not Reverted,
// though there may be many that are in the Reverted state. If a method is rejitted
// multiple times, with multiple versions actively in use on the stacks, then all but the
// most recent are put into the Reverted state even though they may not yet be physically
// reverted and pitched yet.
//
// For a given MethodDesc there is at most 1 ReJitInfo in the kJumpToPrestub or kJumpToRejittedCode
// state.
//
// The ReJitManager::m_crstTable lock is held whenever reading or writing to that
// ReJitManager instance's table (including state transitions applied to the ReJitInfo &
// SharedReJitInfo instances stored in that table).
//
// The ReJitManager::m_crstTable lock is never held during callbacks to the profiler
// such as GetReJITParameters, ReJITStarted, JITComplete, ReportReJITError
//
// Any thread holding the ReJitManager::m_crstTable lock can't block during runtime suspension
// therefore it can't call any GC_TRIGGERS functions
//
// Transitions between SharedRejitInfo states happen only in the following cicumstances:
// 1) New SharedRejitInfo added to table (Requested State)
// Inside RequestRejit
// Global Crst held, table Crst held
//
// 2) Requested -> GettingReJITParameters
// Inside DoRejitIfNecessary
// Global Crst NOT held, table Crst held
//
// 3) GettingReJITParameters -> Active
// Inside DoRejitIfNecessary
// Global Crst NOT held, table Crst held
//
// 4) * -> Reverted
// Inside RequestRejit or RequestRevert
// Global Crst held, table Crst held
//
//
// Transitions between RejitInfo states happen only in the following circumstances:
// 1) New RejitInfo added to table (kJumpNone state)
// Inside RequestRejit
// Global Crst MAY/MAY NOT be held, table Crst held
// Allowed SharedReJit states: Requested, GettingReJITParameters, Active
//
// 2) kJumpNone -> kJumpToPrestub
// Inside RequestRejit
// Global Crst MAY/MAY NOT be held, table Crst held
// Allowed SharedReJit states: Requested, GettingReJITParameters, Active
//
// 3) kJumpToPreStub -> kJumpToRejittedCode
// Inside DoReJitIfNecessary
// Global Crst NOT held, table Crst held
// Allowed SharedReJit states: Active
//
// 4) * -> kJumpNone
// Inside RequestRevert, RequestRejit
// Global Crst held, table crst held
// Allowed SharedReJit states: Reverted
//
//
// #Beware Invariant misconceptions - don't make bad assumptions!
// Even if a SharedReJitInfo is in the Reverted state:
// a) RejitInfos may still be in the kJumpToPreStub or kJumpToRejittedCode state
// Reverted really just means the runtime has started reverting, but it may not
// be complete yet on the thread executing Revert or RequestRejit.
// b) The code for this version of the method may be executing on any number of
// threads. Even after transitioning all rejit infos to kJumpNone state we
// have no power to abort or hijack threads already running the rejitted code.
//
// Even if a SharedReJitInfo is in the Active state:
// a) The corresponding ReJitInfos may not be jump-stamped yet.
// Some thread is still in the progress of getting this thread jump-stamped
// OR it is a place-holder ReJitInfo.
// b) An older ReJitInfo linked to a reverted SharedReJitInfo could still be
// in kJumpToPreStub or kJumpToReJittedCode state. RequestRejit is still in
// progress on some thread.
//
//
// #Known issues with REJIT at this time:
// NGEN inlined methods will not be properly rejitted
// Exception callstacks through rejitted code do not produce correct StackTraces
// Live debugging is not supported when rejit is enabled
// Rejit leaks rejitted methods, RejitInfos, and SharedRejitInfos until AppDomain unload
// Dump debugging doesn't correctly locate RejitInfos that are keyed by MethodDesc
// Metadata update creates large memory increase switching to RW (not specifically a rejit issue)
//
// ======================================================================================
#include "common.h"
#include "rejit.h"
#include "method.hpp"
#include "eeconfig.h"
#include "methoditer.h"
#include "dbginterface.h"
#include "threadsuspend.h"
#ifdef FEATURE_REJIT
#ifdef FEATURE_CODE_VERSIONING
#include "../debug/ee/debugger.h"
#include "../debug/ee/walker.h"
#include "../debug/ee/controller.h"
#include "codeversion.h"
/* static */
CrstStatic ReJitManager::s_csGlobalRequest;
//---------------------------------------------------------------------------------------
// Helpers
//static
CORJIT_FLAGS ReJitManager::JitFlagsFromProfCodegenFlags(DWORD dwCodegenFlags)
{
LIMITED_METHOD_DAC_CONTRACT;
CORJIT_FLAGS jitFlags;
if ((dwCodegenFlags & COR_PRF_CODEGEN_DISABLE_ALL_OPTIMIZATIONS) != 0)
{
jitFlags.Set(CORJIT_FLAGS::CORJIT_FLAG_DEBUG_CODE);
}
if ((dwCodegenFlags & COR_PRF_CODEGEN_DEBUG_INFO) != 0)
{
jitFlags.Set(CORJIT_FLAGS::CORJIT_FLAG_DEBUG_INFO);
}
if ((dwCodegenFlags & COR_PRF_CODEGEN_DISABLE_INLINING) != 0)
{
jitFlags.Set(CORJIT_FLAGS::CORJIT_FLAG_NO_INLINING);
}
// In the future more flags may be added that need to be converted here (e.g.,
// COR_PRF_CODEGEN_ENTERLEAVE / CORJIT_FLAG_PROF_ENTERLEAVE)
return jitFlags;
}
//---------------------------------------------------------------------------------------
// ProfilerFunctionControl implementation
ProfilerFunctionControl::ProfilerFunctionControl(LoaderHeap * pHeap) :
m_refCount(1),
m_pHeap(pHeap),
m_dwCodegenFlags(0),
m_cbIL(0),
m_pbIL(NULL),
m_cInstrumentedMapEntries(0),
m_rgInstrumentedMapEntries(NULL)
{
LIMITED_METHOD_CONTRACT;
}
ProfilerFunctionControl::~ProfilerFunctionControl()
{
LIMITED_METHOD_CONTRACT;
// Intentionally not deleting m_pbIL or m_rgInstrumentedMapEntries, as its ownership gets transferred to the
// SharedReJitInfo that manages that rejit request.
}
HRESULT ProfilerFunctionControl::QueryInterface(REFIID id, void** pInterface)
{
LIMITED_METHOD_CONTRACT;
if ((id != IID_IUnknown) &&
(id != IID_ICorProfilerFunctionControl))
{
*pInterface = NULL;
return E_NOINTERFACE;
}
*pInterface = this;
this->AddRef();
return S_OK;
}
ULONG ProfilerFunctionControl::AddRef()
{
LIMITED_METHOD_CONTRACT;
return InterlockedIncrement(&m_refCount);
}
ULONG ProfilerFunctionControl::Release()
{
LIMITED_METHOD_CONTRACT;
ULONG refCount = InterlockedDecrement(&m_refCount);
if (0 == refCount)
{
delete this;
}
return refCount;
}
//---------------------------------------------------------------------------------------
//
// Profiler calls this to specify a set of flags from COR_PRF_CODEGEN_FLAGS
// to control rejitting a particular methodDef.
//
// Arguments:
// * flags - set of flags from COR_PRF_CODEGEN_FLAGS
//
// Return Value:
// Always S_OK;
//
HRESULT ProfilerFunctionControl::SetCodegenFlags(DWORD flags)
{
LIMITED_METHOD_CONTRACT;
m_dwCodegenFlags = flags;
return S_OK;
}
//---------------------------------------------------------------------------------------
//
// Profiler calls this to specify the IL to use when rejitting a particular methodDef.
//
// Arguments:
// * cbNewILMethodHeader - Size in bytes of pbNewILMethodHeader
// * pbNewILMethodHeader - Pointer to beginning of IL header + IL bytes.
//
// Return Value:
// HRESULT indicating success or failure.
//
// Notes:
// Caller owns allocating and freeing pbNewILMethodHeader as expected.
// SetILFunctionBody copies pbNewILMethodHeader into a separate buffer.
//
HRESULT ProfilerFunctionControl::SetILFunctionBody(ULONG cbNewILMethodHeader, LPCBYTE pbNewILMethodHeader)
{
CONTRACTL
{
NOTHROW;
GC_NOTRIGGER;
MODE_ANY;
}
CONTRACTL_END;
if (cbNewILMethodHeader == 0)
{
return E_INVALIDARG;
}
if (pbNewILMethodHeader == NULL)
{
return E_INVALIDARG;
}
_ASSERTE(m_cbIL == 0);
_ASSERTE(m_pbIL == NULL);
#ifdef DACCESS_COMPILE
m_pbIL = new (nothrow) BYTE[cbNewILMethodHeader];
#else
// IL is stored on the appropriate loader heap, and its memory will be owned by the
// SharedReJitInfo we copy the pointer to.
m_pbIL = (LPBYTE) (void *) m_pHeap->AllocMem_NoThrow(S_SIZE_T(cbNewILMethodHeader));
#endif
if (m_pbIL == NULL)
{
return E_OUTOFMEMORY;
}
m_cbIL = cbNewILMethodHeader;
memcpy(m_pbIL, pbNewILMethodHeader, cbNewILMethodHeader);
return S_OK;
}
HRESULT ProfilerFunctionControl::SetILInstrumentedCodeMap(ULONG cILMapEntries, COR_IL_MAP * rgILMapEntries)
{
#ifdef DACCESS_COMPILE
// I'm not sure why any of these methods would need to be compiled in DAC? Could we remove the
// entire class from the DAC'ized code build?
_ASSERTE(!"This shouldn't be called in DAC");
return E_NOTIMPL;
#else
CONTRACTL
{
NOTHROW;
GC_NOTRIGGER;
MODE_ANY;
}
CONTRACTL_END;
if (cILMapEntries >= (MAXULONG / sizeof(COR_IL_MAP)))
{
// Too big! The allocation below would overflow when calculating the size.
return E_INVALIDARG;
}
if (g_pDebugInterface == NULL)
{
return CORPROF_E_DEBUGGING_DISABLED;
}
// copy the il map and il map entries into the corresponding fields.
m_cInstrumentedMapEntries = cILMapEntries;
// IL is stored on the appropriate loader heap, and its memory will be owned by the
// SharedReJitInfo we copy the pointer to.
m_rgInstrumentedMapEntries = (COR_IL_MAP*) (void *) m_pHeap->AllocMem_NoThrow(S_SIZE_T(cILMapEntries * sizeof(COR_IL_MAP)));
if (m_rgInstrumentedMapEntries == NULL)
return E_OUTOFMEMORY;
memcpy_s(m_rgInstrumentedMapEntries, sizeof(COR_IL_MAP) * cILMapEntries, rgILMapEntries, sizeof(COR_IL_MAP) * cILMapEntries);
return S_OK;
#endif // DACCESS_COMPILE
}
//---------------------------------------------------------------------------------------
//
// ReJitManager may use this to access the codegen flags the profiler had set on this
// ICorProfilerFunctionControl.
//
// Return Value:
// * codegen flags previously set via SetCodegenFlags; 0 if none were set.
//
DWORD ProfilerFunctionControl::GetCodegenFlags()
{
return m_dwCodegenFlags;
}
//---------------------------------------------------------------------------------------
//
// ReJitManager may use this to access the IL header + instructions the
// profiler had set on this ICorProfilerFunctionControl via SetIL
//
// Return Value:
// * Pointer to ProfilerFunctionControl-allocated buffer containing the
// IL header and instructions the profiler had provided.
//
LPBYTE ProfilerFunctionControl::GetIL()
{
return m_pbIL;
}
//---------------------------------------------------------------------------------------
//
// ReJitManager may use this to access the count of instrumented map entry flags the
// profiler had set on this ICorProfilerFunctionControl.
//
// Return Value:
// * size of the instrumented map entry array
//
ULONG ProfilerFunctionControl::GetInstrumentedMapEntryCount()
{
return m_cInstrumentedMapEntries;
}
//---------------------------------------------------------------------------------------
//
// ReJitManager may use this to access the instrumented map entries the
// profiler had set on this ICorProfilerFunctionControl.
//
// Return Value:
// * the array of instrumented map entries
//
COR_IL_MAP* ProfilerFunctionControl::GetInstrumentedMapEntries()
{
return m_rgInstrumentedMapEntries;
}
#ifndef DACCESS_COMPILE
//---------------------------------------------------------------------------------------
// ReJitManager implementation
// All the state-changey stuff is kept up here in the !DACCESS_COMPILE block.
// The more read-only inspection-y stuff follows the block.
//---------------------------------------------------------------------------------------
//
// ICorProfilerInfo4::RequestReJIT calls into this method to do most of the
// work. Takes care of finding the appropriate ReJitManager instances to
// record the rejit requests and perform jmp-stamping.
//
// Arguments:
// * cFunctions - Element count of rgModuleIDs & rgMethodDefs
// * rgModuleIDs - Parallel array of ModuleIDs to rejit
// * rgMethodDefs - Parallel array of methodDefs to rejit
//
// Return Value:
// HRESULT indicating success or failure of the overall operation. Each
// individual methodDef (or MethodDesc associated with the methodDef)
// may encounter its own failure, which is reported by the ReJITError()
// callback, which is called into the profiler directly.
//
// static
HRESULT ReJitManager::RequestReJIT(
ULONG cFunctions,
ModuleID rgModuleIDs[],
mdMethodDef rgMethodDefs[],
COR_PRF_REJIT_FLAGS flags)
{
return ReJitManager::UpdateActiveILVersions(cFunctions, rgModuleIDs, rgMethodDefs, NULL, FALSE, flags);
}
// static
HRESULT ReJitManager::UpdateActiveILVersions(
ULONG cFunctions,
ModuleID rgModuleIDs[],
mdMethodDef rgMethodDefs[],
HRESULT rgHrStatuses[],
BOOL fIsRevert,
COR_PRF_REJIT_FLAGS flags)
{
CONTRACTL
{
NOTHROW;
GC_TRIGGERS;
CAN_TAKE_LOCK;
MODE_PREEMPTIVE;
}
CONTRACTL_END;
// Serialize all RequestReJIT() and Revert() calls against each other (even across AppDomains)
CrstHolder ch(&(s_csGlobalRequest));
HRESULT hr = S_OK;
// Request at least 1 method to reJIT!
_ASSERTE ((cFunctions != 0) && (rgModuleIDs != NULL) && (rgMethodDefs != NULL));
// Temporary storage to batch up all the ReJitInfos that will get jump stamped
// later when the runtime is suspended.
//
//DESKTOP WARNING: On CoreCLR we are safe but if this code ever gets ported back
//there aren't any protections against domain unload. Any of these moduleIDs
//code version managers, or code versions would become invalid if the domain which
//contains them was unloaded.
SHash<CodeActivationBatchTraits> mgrToCodeActivationBatch;
CDynArray<CodeVersionManager::CodePublishError> errorRecords;
for (ULONG i = 0; i < cFunctions; i++)
{
Module * pModule = reinterpret_cast< Module * >(rgModuleIDs[i]);
if (pModule == NULL || TypeFromToken(rgMethodDefs[i]) != mdtMethodDef)
{
ReportReJITError(pModule, rgMethodDefs[i], NULL, E_INVALIDARG);
continue;
}
if (pModule->IsBeingUnloaded())
{
ReportReJITError(pModule, rgMethodDefs[i], NULL, CORPROF_E_DATAINCOMPLETE);
continue;
}
if (pModule->IsReflectionEmit())
{
ReportReJITError(pModule, rgMethodDefs[i], NULL, CORPROF_E_MODULE_IS_DYNAMIC);
continue;
}
if (pModule->IsEditAndContinueEnabled())
{
ReportReJITError(pModule, rgMethodDefs[i], NULL, CORPROF_E_MODULE_IS_ENC);
continue;
}
if (!pModule->GetMDImport()->IsValidToken(rgMethodDefs[i]))
{
ReportReJITError(pModule, rgMethodDefs[i], NULL, E_INVALIDARG);
continue;
}
MethodDesc * pMD = pModule->LookupMethodDef(rgMethodDefs[i]);
if (pMD != NULL)
{
_ASSERTE(!pMD->IsNoMetadata());
// Weird, non-user functions can't be rejitted
if (!pMD->IsIL())
{
// Intentionally not reporting an error in this case, to be consistent
// with the pre-rejit case, as we have no opportunity to report an error
// in a pre-rejit request for a non-IL method, since the rejit manager
// never gets a call from the prestub worker for non-IL methods. Thus,
// since pre-rejit requests silently ignore rejit requests for non-IL
// methods, regular rejit requests will also silently ignore rejit requests for
// non-IL methods to be consistent.
continue;
}
}
hr = UpdateActiveILVersion(&mgrToCodeActivationBatch, pModule, rgMethodDefs[i], fIsRevert, static_cast<COR_PRF_REJIT_FLAGS>(flags | COR_PRF_REJIT_INLINING_CALLBACKS));
if (FAILED(hr))
{
return hr;
}
if ((flags & COR_PRF_REJIT_BLOCK_INLINING) == COR_PRF_REJIT_BLOCK_INLINING)
{
hr = UpdateNativeInlinerActiveILVersions(&mgrToCodeActivationBatch, pModule, rgMethodDefs[i], fIsRevert, flags);
if (FAILED(hr))
{
return hr;
}
if (pMD != NULL)
{
// If pMD is not null, then the method may have already been inlined somewhere. Go check.
hr = UpdateJitInlinerActiveILVersions(&mgrToCodeActivationBatch, pMD, fIsRevert, flags);
if (FAILED(hr))
{
return hr;
}
}
}
} // for (ULONG i = 0; i < cFunctions; i++)
// For each code versioning mgr, if there's work to do,
// enter the code versioning mgr's crst, and do the batched work.
SHash<CodeActivationBatchTraits>::Iterator beginIter = mgrToCodeActivationBatch.Begin();
SHash<CodeActivationBatchTraits>::Iterator endIter = mgrToCodeActivationBatch.End();
{
for (SHash<CodeActivationBatchTraits>::Iterator iter = beginIter; iter != endIter; iter++)
{
CodeActivationBatch * pCodeActivationBatch = *iter;
CodeVersionManager * pCodeVersionManager = pCodeActivationBatch->m_pCodeVersionManager;
int cMethodsToActivate = pCodeActivationBatch->m_methodsToActivate.Count();
if (cMethodsToActivate == 0)
{
continue;
}
{
// SetActiveILCodeVersions takes the SystemDomain crst, which needs to be acquired before the
// ThreadStore crsts
SystemDomain::LockHolder lh;
hr = pCodeVersionManager->SetActiveILCodeVersions(pCodeActivationBatch->m_methodsToActivate.Ptr(), pCodeActivationBatch->m_methodsToActivate.Count(), &errorRecords);
if (FAILED(hr))
break;
}
}
}
if (FAILED(hr))
{
_ASSERTE(hr == E_OUTOFMEMORY);
return hr;
}
// Report any errors that were batched up
for (int i = 0; i < errorRecords.Count(); i++)
{
if (rgHrStatuses != NULL)
{
for (DWORD j = 0; j < cFunctions; j++)
{
if (rgMethodDefs[j] == errorRecords[i].methodDef &&
reinterpret_cast<Module*>(rgModuleIDs[j]) == errorRecords[i].pModule)
{
rgHrStatuses[j] = errorRecords[i].hrStatus;
}
}
}
else
{
ReportReJITError(&(errorRecords[i]));
}
}
// We got through processing everything, but profiler will need to see the individual ReJITError
// callbacks to know what, if anything, failed.
return S_OK;
}
// static
HRESULT ReJitManager::UpdateActiveILVersion(
SHash<CodeActivationBatchTraits> *pMgrToCodeActivationBatch,
Module *pModule,
mdMethodDef methodDef,
BOOL fIsRevert,
COR_PRF_REJIT_FLAGS flags)
{
CONTRACTL
{
NOTHROW;
GC_TRIGGERS;
CAN_TAKE_LOCK;
MODE_PREEMPTIVE;
}
CONTRACTL_END;
_ASSERTE(pMgrToCodeActivationBatch != NULL);
_ASSERTE(pModule != NULL);
_ASSERTE(methodDef != mdTokenNil);
HRESULT hr = S_OK;
CodeVersionManager * pCodeVersionManager = pModule->GetCodeVersionManager();
_ASSERTE(pCodeVersionManager != NULL);
CodeActivationBatch * pCodeActivationBatch = pMgrToCodeActivationBatch->Lookup(pCodeVersionManager);
if (pCodeActivationBatch == NULL)
{
pCodeActivationBatch = new (nothrow)CodeActivationBatch(pCodeVersionManager);
if (pCodeActivationBatch == NULL)
{
return E_OUTOFMEMORY;
}
hr = S_OK;
EX_TRY
{
// This throws when out of memory, but remains internally
// consistent (without adding the new element)
pMgrToCodeActivationBatch->Add(pCodeActivationBatch);
}
EX_CATCH_HRESULT(hr);
_ASSERT(hr == S_OK || hr == E_OUTOFMEMORY);
if (FAILED(hr))
{
return hr;
}
}
{
CodeVersionManager::LockHolder codeVersioningLockHolder;
// Bind the il code version
ILCodeVersion* pILCodeVersion = pCodeActivationBatch->m_methodsToActivate.Append();
if (pILCodeVersion == NULL)
{
return E_OUTOFMEMORY;
}
if (fIsRevert)
{
// activate the original version
*pILCodeVersion = ILCodeVersion(pModule, methodDef);
}
else
{
// activate an unused or new IL version
hr = ReJitManager::BindILVersion(pCodeVersionManager, pModule, methodDef, pILCodeVersion, flags);
if (FAILED(hr))
{
_ASSERTE(hr == E_OUTOFMEMORY);
return hr;
}
}
}
return hr;
}
// static
HRESULT ReJitManager::UpdateNativeInlinerActiveILVersions(
SHash<CodeActivationBatchTraits> *pMgrToCodeActivationBatch,
Module *pInlineeModule,
mdMethodDef inlineeMethodDef,
BOOL fIsRevert,
COR_PRF_REJIT_FLAGS flags)
{
CONTRACTL
{
NOTHROW;
GC_TRIGGERS;
CAN_TAKE_LOCK;
MODE_PREEMPTIVE;
}
CONTRACTL_END;
_ASSERTE(pMgrToCodeActivationBatch != NULL);
_ASSERTE(pInlineeModule != NULL);
_ASSERTE(RidFromToken(inlineeMethodDef) != 0);
HRESULT hr = S_OK;
// Iterate through all modules, for any that are NGEN or R2R need to check if there are inliners there and call
// RequestReJIT on them
AppDomain::AssemblyIterator assemblyIterator = AppDomain::GetCurrentDomain()->IterateAssembliesEx((AssemblyIterationFlags) (kIncludeLoaded | kIncludeExecution));
CollectibleAssemblyHolder<Assembly *> pAssembly;
NativeImageInliningIterator inlinerIter;
while (assemblyIterator.Next(pAssembly.This()))
{
_ASSERTE(pAssembly != NULL);
Module * pModule = pAssembly->GetModule();
if (pModule->HasReadyToRunInlineTrackingMap())
{
inlinerIter.Reset(pModule, MethodInModule(pInlineeModule, inlineeMethodDef));
while (inlinerIter.Next())
{
MethodInModule inliner = inlinerIter.GetMethod();
{
CodeVersionManager *pCodeVersionManager = pModule->GetCodeVersionManager();
CodeVersionManager::LockHolder codeVersioningLockHolder;
ILCodeVersion ilVersion = pCodeVersionManager->GetActiveILCodeVersion(inliner.m_module, inliner.m_methodDef);
if (!ilVersion.HasDefaultIL())
{
// This method has already been ReJITted, no need to request another ReJIT at this point.
// The ReJITted method will be in the JIT inliner check below.
continue;
}
}
hr = UpdateActiveILVersion(pMgrToCodeActivationBatch, inliner.m_module, inliner.m_methodDef, fIsRevert, flags);
if (FAILED(hr))
{
ReportReJITError(inliner.m_module, inliner.m_methodDef, NULL, hr);
}
}
}
}
return S_OK;
}
// static
HRESULT ReJitManager::UpdateJitInlinerActiveILVersions(
SHash<CodeActivationBatchTraits> *pMgrToCodeActivationBatch,
MethodDesc *pInlinee,
BOOL fIsRevert,
COR_PRF_REJIT_FLAGS flags)
{
CONTRACTL
{
NOTHROW;
GC_TRIGGERS;
CAN_TAKE_LOCK;
MODE_PREEMPTIVE;
}
CONTRACTL_END;
_ASSERTE(pMgrToCodeActivationBatch != NULL);
_ASSERTE(pInlinee != NULL);
HRESULT hr = S_OK;
Module *pModule = pInlinee->GetModule();
if (pModule->HasJitInlineTrackingMap())
{
// JITInlineTrackingMap::VisitInliners wants to be in cooperative mode,
// but UpdateActiveILVersion wants to be in preemptive mode. Rather than do
// a bunch of mode switching just batch up the inliners.
InlineSArray<MethodDesc *, 10> inliners;
auto lambda = [&](MethodDesc *inliner, MethodDesc *inlinee)
{
_ASSERTE(!inliner->IsNoMetadata());
if (inliner->IsIL())
{
EX_TRY
{
// InlineSArray can throw if we run out of memory,
// need to guard against it.
inliners.Append(inliner);
}
EX_CATCH_HRESULT(hr);
return SUCCEEDED(hr);
}
// Keep going
return true;
};
JITInlineTrackingMap *pMap = pModule->GetJitInlineTrackingMap();
pMap->VisitInliners(pInlinee, lambda);
if (FAILED(hr))
{
return hr;
}
EX_TRY
{
// InlineSArray iterator can throw
for (auto it = inliners.Begin(); it != inliners.End(); ++it)
{
Module *inlinerModule = (*it)->GetModule();
mdMethodDef inlinerMethodDef = (*it)->GetMemberDef();
hr = UpdateActiveILVersion(pMgrToCodeActivationBatch, inlinerModule, inlinerMethodDef, fIsRevert, flags);
if (FAILED(hr))
{
ReportReJITError(inlinerModule, inlinerMethodDef, NULL, hr);
}
}
}
EX_CATCH_HRESULT(hr);
}
return hr;
}
// static
HRESULT ReJitManager::BindILVersion(
CodeVersionManager *pCodeVersionManager,
PTR_Module pModule,
mdMethodDef methodDef,
ILCodeVersion *pILCodeVersion,
COR_PRF_REJIT_FLAGS flags)
{
CONTRACTL
{
NOTHROW;
GC_NOTRIGGER;
MODE_PREEMPTIVE;
CAN_TAKE_LOCK;
PRECONDITION(CheckPointer(pCodeVersionManager));
PRECONDITION(CheckPointer(pModule));
PRECONDITION(CheckPointer(pILCodeVersion));
}
CONTRACTL_END;
_ASSERTE(CodeVersionManager::IsLockOwnedByCurrentThread());
_ASSERTE((pModule != NULL) && (methodDef != mdTokenNil));
// Check if there was there a previous rejit request for this method that hasn't been exposed back
// to the profiler yet
ILCodeVersion ilCodeVersion = pCodeVersionManager->GetActiveILCodeVersion(pModule, methodDef);
BOOL fDoCallback = (flags & COR_PRF_REJIT_INLINING_CALLBACKS) == COR_PRF_REJIT_INLINING_CALLBACKS;
if (ilCodeVersion.GetRejitState() == ILCodeVersion::RejitFlags::kStateRequested)
{
// We can 'reuse' this instance because the profiler doesn't know about
// it yet. (This likely happened because a profiler called RequestReJIT
// twice in a row, without us having a chance to jmp-stamp the code yet OR
// while iterating through instantiations of a generic, the iterator found
// duplicate entries for the same instantiation.)
// TODO: this assert likely needs to be removed. This code path should be
// hit for any duplicates, and that can happen regardless of whether this
// is the first ReJIT or not.
_ASSERTE(ilCodeVersion.HasDefaultIL());
*pILCodeVersion = ilCodeVersion;
if (fDoCallback)
{
// There could be a case where the method that a profiler requested ReJIT on also ends up in the
// inlining graph from a different method. In that case we should override the previous setting,
// but we should never override a request to get the callback with a request to suppress it.
pILCodeVersion->SetEnableReJITCallback(true);
}
return S_FALSE;
}
// Either there was no ILCodeVersion yet for this MethodDesc OR whatever we've found
// couldn't be reused (and needed to be reverted). Create a new ILCodeVersion to return
// to the caller.
HRESULT hr = pCodeVersionManager->AddILCodeVersion(pModule, methodDef, pILCodeVersion, FALSE);
pILCodeVersion->SetEnableReJITCallback(fDoCallback);
return hr;
}
//---------------------------------------------------------------------------------------
//
// ICorProfilerInfo4::RequestRevert calls into this guy to do most of the
// work. Takes care of finding the appropriate ReJitManager instances to
// perform the revert
//
// Arguments:
// * cFunctions - Element count of rgModuleIDs & rgMethodDefs
// * rgModuleIDs - Parallel array of ModuleIDs to revert
// * rgMethodDefs - Parallel array of methodDefs to revert
// * rgHrStatuses - [out] Parallel array of HRESULTs indicating success/failure
// of reverting each (ModuleID, methodDef).
//
// Return Value:
// HRESULT indicating success or failure of the overall operation. Each
// individual methodDef (or MethodDesc associated with the methodDef)
// may encounter its own failure, which is reported by the rgHrStatuses
// [out] parameter.
//
// static
HRESULT ReJitManager::RequestRevert(
ULONG cFunctions,
ModuleID rgModuleIDs[],
mdMethodDef rgMethodDefs[],
HRESULT rgHrStatuses[])
{
CONTRACTL
{
NOTHROW;
GC_TRIGGERS;
CAN_TAKE_LOCK;
MODE_PREEMPTIVE;
}
CONTRACTL_END;
return UpdateActiveILVersions(cFunctions, rgModuleIDs, rgMethodDefs, rgHrStatuses, TRUE, static_cast<COR_PRF_REJIT_FLAGS>(0));
}
// static
HRESULT ReJitManager::ConfigureILCodeVersion(ILCodeVersion ilCodeVersion)
{
STANDARD_VM_CONTRACT;
_ASSERTE(!CodeVersionManager::IsLockOwnedByCurrentThread());
HRESULT hr = S_OK;
Module* pModule = ilCodeVersion.GetModule();
mdMethodDef methodDef = ilCodeVersion.GetMethodDef();
BOOL fNeedsParameters = FALSE;
BOOL fWaitForParameters = FALSE;
{
// Serialize access to the rejit state
CodeVersionManager::LockHolder codeVersioningLockHolder;
switch (ilCodeVersion.GetRejitState())
{
case ILCodeVersion::RejitFlags::kStateRequested:
ilCodeVersion.SetRejitState(ILCodeVersion::RejitFlags::kStateGettingReJITParameters);
fNeedsParameters = TRUE;
break;
case ILCodeVersion::RejitFlags::kStateGettingReJITParameters:
fWaitForParameters = TRUE;
break;
default:
return S_OK;
}
}
if (fNeedsParameters)
{
HRESULT hr = S_OK;
ReleaseHolder<ProfilerFunctionControl> pFuncControl = NULL;
if (ilCodeVersion.GetEnableReJITCallback())
{
// Here's where we give a chance for the rejit requestor to
// examine and modify the IL & codegen flags before it gets to
// the JIT. This allows one to add probe calls for things like
// code coverage, performance, or whatever. These will be
// stored in pShared.
_ASSERTE(pModule != NULL);
_ASSERTE(methodDef != mdTokenNil);
pFuncControl =
new (nothrow)ProfilerFunctionControl(pModule->GetLoaderAllocator()->GetLowFrequencyHeap());
if (pFuncControl == NULL)
{
hr = E_OUTOFMEMORY;