14 references to CompiledMethodCategory
ILCompiler.ReadyToRun (14)
Compiler\DependencyAnalysis\ReadyToRun\InliningInfoNode.cs (1)
67
foreach (MethodWithGCInfo methodNode in factory.EnumerateCompiledMethods(_module,
CompiledMethodCategory
.All))
Compiler\DependencyAnalysis\ReadyToRun\InstanceEntryPointTableNode.cs (2)
38
foreach (MethodWithGCInfo method in _factory.EnumerateCompiledMethods(null,
CompiledMethodCategory
.Instantiated))
106
foreach (MethodWithGCInfo method in factory.EnumerateCompiledMethods(null,
CompiledMethodCategory
.Instantiated))
Compiler\DependencyAnalysis\ReadyToRun\MethodEntryPointTableNode.cs (1)
51
foreach (MethodWithGCInfo method in factory.EnumerateCompiledMethods(_module,
CompiledMethodCategory
.NonInstantiated))
Compiler\DependencyAnalysis\ReadyToRunCodegenNodeFactory.cs (2)
534
return EnumerateCompiledMethods(null,
CompiledMethodCategory
.All);
537
public IEnumerable<MethodWithGCInfo> EnumerateCompiledMethods(EcmaModule moduleToEnumerate,
CompiledMethodCategory
methodCategory)
Compiler\ReadyToRunTableManager.cs (8)
100
public IEnumerable<IMethodNode> GetCompiledMethods(EcmaModule moduleToEnumerate,
CompiledMethodCategory
methodCategory)
142
if (methodCategory ==
CompiledMethodCategory
.All)
146
else if (methodCategory ==
CompiledMethodCategory
.Instantiated)
158
if (methodCategory ==
CompiledMethodCategory
.All)
163
if (methodCategory ==
CompiledMethodCategory
.Instantiated)
169
Debug.Assert(methodCategory ==
CompiledMethodCategory
.NonInstantiated);
181
foreach (var node in GetCompiledMethods(moduleToEnumerate,
CompiledMethodCategory
.Instantiated))
185
foreach (var node in GetCompiledMethods(moduleToEnumerate,
CompiledMethodCategory
.NonInstantiated))