6 references to DependencyList
ILCompiler.Compiler (1)
Compiler\DependencyAnalysis\SealedVTableNode.cs (1)
251var result = new DependencyList(_nonRelocationDependencies ?? []);
ILCompiler.ReadyToRun (4)
Compiler\DependencyAnalysis\ReadyToRun\DelegateCtorSignature.cs (1)
68return new DependencyList(
Compiler\DependencyAnalysis\ReadyToRun\ExceptionInfoLookupTableNode.cs (1)
149return new DependencyNodeCore<NodeFactory>.DependencyList(new DependencyListEntry[] { new DependencyListEntry(_ehInfoNode, "EH info array") });
Compiler\DependencyAnalysis\ReadyToRun\InstrumentationDataTableNode.cs (1)
232return new DependencyList(symbols);
Compiler\DependencyAnalysis\ReadyToRun\MethodWithGCInfo.cs (1)
266DependencyList dependencyList = new DependencyList(new DependencyListEntry[] { new DependencyListEntry(GCInfoNode, "Unwind & GC info") });
ILCompiler.RyuJit (1)
Compiler\DependencyAnalysis\MethodCodeNode.cs (1)
78DependencyList dependencies = _nonRelocationDependencies != null ? new DependencyList(_nonRelocationDependencies) : null;