24 references to GenericContextLoc
Microsoft.Diagnostics.DataContractReader.Abstractions (1)
Contracts\IRuntimeTypeSystem.cs (1)
243
GenericContextLoc
GetGenericContextLoc(MethodDescHandle methodDescHandle) => throw new NotImplementedException();
Microsoft.Diagnostics.DataContractReader.Contracts (15)
Contracts\CallingConvention\CallingConvention_1.cs (10)
105
GenericContextLoc
ctxLoc = rts.GetGenericContextLoc(methodDesc);
106
requiresInstArg = ctxLoc is
GenericContextLoc
.InstArgMethodDesc or
GenericContextLoc
.InstArgMethodTable;
609
GenericContextLoc
ctxLoc =
GenericContextLoc
.None;
626
if (ctxLoc ==
GenericContextLoc
.None)
631
GenericContextLoc
.InstArgMethodDesc => GCRefMapToken.MethodParam,
632
GenericContextLoc
.InstArgMethodTable => GCRefMapToken.TypeParam,
810
private static
GenericContextLoc
SafeGetGenericContextLoc(IRuntimeTypeSystem rts, MethodDescHandle md)
818
return
GenericContextLoc
.None;
Contracts\RuntimeTypeSystem_1.cs (5)
1556
public
GenericContextLoc
GetGenericContextLoc(MethodDescHandle methodDescHandle)
1560
return
GenericContextLoc
.None;
1562
return
GenericContextLoc
.InstArgMethodDesc;
1564
return
GenericContextLoc
.InstArgMethodTable;
1566
return
GenericContextLoc
.ThisPtr;
Microsoft.Diagnostics.DataContractReader.Legacy (8)
Dbi\DacDbiImpl.cs (8)
2899
GenericContextLoc
ctxLoc = rts.GetGenericContextLoc(pRepMethod);
2900
if (ctxLoc ==
GenericContextLoc
.None)
2908
if (ctxLoc ==
GenericContextLoc
.InstArgMethodDesc)
2915
else if (ctxLoc ==
GenericContextLoc
.InstArgMethodTable)
5556
case
GenericContextLoc
.None:
5559
case
GenericContextLoc
.InstArgMethodDesc:
5560
case
GenericContextLoc
.InstArgMethodTable:
5563
case
GenericContextLoc
.ThisPtr: