16 references to GenericContextLoc
Microsoft.Diagnostics.DataContractReader.Abstractions (1)
Contracts\IRuntimeTypeSystem.cs (1)
215GenericContextLoc GetGenericContextLoc(MethodDescHandle methodDescHandle) => throw new NotImplementedException();
Microsoft.Diagnostics.DataContractReader.Contracts (7)
Contracts\RuntimeTypeSystem_1.cs (5)
1380public GenericContextLoc GetGenericContextLoc(MethodDescHandle methodDescHandle) 1384return GenericContextLoc.None; 1386return GenericContextLoc.InstArgMethodDesc; 1388return GenericContextLoc.InstArgMethodTable; 1390return GenericContextLoc.ThisPtr;
Contracts\StackWalk\GC\GcScanner.cs (2)
391requiresInstArg = rts.GetGenericContextLoc(mdh) is GenericContextLoc.InstArgMethodDesc or GenericContextLoc.InstArgMethodTable;
Microsoft.Diagnostics.DataContractReader.Legacy (8)
Dbi\DacDbiImpl.cs (8)
2484GenericContextLoc ctxLoc = rts.GetGenericContextLoc(pRepMethod); 2485if (ctxLoc == GenericContextLoc.None) 2493if (ctxLoc == GenericContextLoc.InstArgMethodDesc) 2500else if (ctxLoc == GenericContextLoc.InstArgMethodTable) 4447case GenericContextLoc.None: 4450case GenericContextLoc.InstArgMethodDesc: 4451case GenericContextLoc.InstArgMethodTable: 4454case GenericContextLoc.ThisPtr: