14 references to CodeVersionSource
Microsoft.Diagnostics.DataContractReader.Abstractions (2)
Contracts\Extensions\IReJITExtensions.cs (1)
18
if (cv.GetSource(ilCodeVersionHandle) ==
CodeVersionSource
.ReJIT && rejit.GetRejitState(ilCodeVersionHandle) == RejitState.Active)
Contracts\ICodeVersions.cs (1)
43
public virtual
CodeVersionSource
GetSource(ILCodeVersionHandle ilCodeVersionHandle) => throw new NotImplementedException();
Microsoft.Diagnostics.DataContractReader.Contracts (3)
Contracts\CodeVersions_1.cs (3)
413
CodeVersionSource
ICodeVersions.GetSource(ILCodeVersionHandle ilCodeVersionHandle)
417
return
CodeVersionSource
.Unknown;
418
return (
CodeVersionSource
)AsNode(ilCodeVersionHandle).Source;
Microsoft.Diagnostics.DataContractReader.Legacy (9)
ClrDataFrame.cs (1)
518
if (activeVersion.IsValid && activeVersion.IsExplicit && cv.GetSource(activeVersion) !=
CodeVersionSource
.ReJIT)
Dbi\DacDbiImpl.cs (3)
5709
&& codeVersions.GetSource(ilCodeVersion) ==
CodeVersionSource
.ReJIT)
5760
&& codeVersions.GetSource(ilCodeVersion) ==
CodeVersionSource
.EnC
5857
if (ilCodeVersion.IsValid && ilCodeVersion.IsExplicit && codeVersions.GetSource(ilCodeVersion) ==
CodeVersionSource
.ReJIT)
SOSDacImpl.cs (5)
2514
if (cv.GetSource(ilCodeVersion) !=
CodeVersionSource
.ReJIT)
5481
if (!activeILCodeVersion.IsValid || codeVersionsContract.GetSource(activeILCodeVersion) !=
CodeVersionSource
.ReJIT)
5527
if (!ilCodeVersion.IsValid || cv.GetSource(ilCodeVersion) !=
CodeVersionSource
.ReJIT)
5600
if ((rejit.GetRejitState(activeILCodeVersion) != RejitState.Active || !cv.HasDefaultIL(activeILCodeVersion)) && cv.GetSource(activeILCodeVersion) ==
CodeVersionSource
.ReJIT)
5666
cv.GetSource(activeILCodeVersion) ==
CodeVersionSource
.ReJIT)