14 references to CompiledMethodCategory
ILCompiler.ReadyToRun (14)
Compiler\DependencyAnalysis\ReadyToRun\InliningInfoNode.cs (1)
67foreach (MethodWithGCInfo methodNode in factory.EnumerateCompiledMethods(_module, CompiledMethodCategory.All))
Compiler\DependencyAnalysis\ReadyToRun\InstanceEntryPointTableNode.cs (2)
38foreach (MethodWithGCInfo method in _factory.EnumerateCompiledMethods(null, CompiledMethodCategory.Instantiated)) 106foreach (MethodWithGCInfo method in factory.EnumerateCompiledMethods(null, CompiledMethodCategory.Instantiated))
Compiler\DependencyAnalysis\ReadyToRun\MethodEntryPointTableNode.cs (1)
51foreach (MethodWithGCInfo method in factory.EnumerateCompiledMethods(_module, CompiledMethodCategory.NonInstantiated))
Compiler\DependencyAnalysis\ReadyToRunCodegenNodeFactory.cs (2)
561return EnumerateCompiledMethods(null, CompiledMethodCategory.All); 564public IEnumerable<MethodWithGCInfo> EnumerateCompiledMethods(EcmaModule moduleToEnumerate, CompiledMethodCategory methodCategory)
Compiler\ReadyToRunTableManager.cs (8)
100public IEnumerable<IMethodNode> GetCompiledMethods(EcmaModule moduleToEnumerate, CompiledMethodCategory methodCategory) 145if (methodCategory == CompiledMethodCategory.All) 149else if (methodCategory == CompiledMethodCategory.Instantiated) 161if (methodCategory == CompiledMethodCategory.All) 166if (methodCategory == CompiledMethodCategory.Instantiated) 172Debug.Assert(methodCategory == CompiledMethodCategory.NonInstantiated); 184foreach (var node in GetCompiledMethods(moduleToEnumerate, CompiledMethodCategory.Instantiated)) 188foreach (var node in GetCompiledMethods(moduleToEnumerate, CompiledMethodCategory.NonInstantiated))