-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathComputedStaticDependencyNode.cs
77 lines (66 loc) · 2.41 KB
/
ComputedStaticDependencyNode.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;
namespace ILCompiler.DependencyAnalysisFramework
{
public abstract class ComputedStaticDependencyNode<DependencyContextType> : DependencyNodeCore<DependencyContextType>
{
private IEnumerable<DependencyListEntry> _dependencies;
private IEnumerable<CombinedDependencyListEntry> _conditionalDependencies;
public void SetStaticDependencies(IEnumerable<DependencyListEntry> dependencies,
IEnumerable<CombinedDependencyListEntry> conditionalDependencies)
{
Debug.Assert(_dependencies == null);
Debug.Assert(_conditionalDependencies == null);
Debug.Assert(dependencies != null);
_dependencies = dependencies;
_conditionalDependencies = conditionalDependencies;
}
public override bool HasConditionalStaticDependencies
{
get
{
return _conditionalDependencies != null;
}
}
public override bool HasDynamicDependencies
{
get
{
return false;
}
}
public override bool InterestingForDynamicDependencyAnalysis
{
get
{
return true;
}
}
public override bool StaticDependenciesAreComputed
{
get
{
return _dependencies != null;
}
}
public override IEnumerable<CombinedDependencyListEntry> GetConditionalStaticDependencies(DependencyContextType context)
{
return _conditionalDependencies;
}
public override IEnumerable<DependencyListEntry> GetStaticDependencies(DependencyContextType context)
{
return _dependencies;
}
public override IEnumerable<CombinedDependencyListEntry> SearchDynamicDependencies(List<DependencyNodeCore<DependencyContextType>> markedNodes, int firstNode, DependencyContextType context)
{
return Array.Empty<CombinedDependencyListEntry>();
}
}
}