3 overrides of Join
Microsoft.CodeAnalysis.CSharp (3)
FlowAnalysis\ControlFlowPass.cs (1)
88
protected override bool
Join
(ref LocalState self, ref LocalState other)
FlowAnalysis\DefiniteAssignment.cs (1)
2890
protected override bool
Join
(ref LocalState self, ref LocalState other)
FlowAnalysis\NullableWalker.cs (1)
12500
protected override bool
Join
(ref LocalState self, ref LocalState other)
46 references to Join
Microsoft.CodeAnalysis.CSharp (46)
FlowAnalysis\AbstractFlowPass.cs (37)
33
/// href="https://en.wikipedia.org/wiki/Data-flow_analysis"/>) that moves upward through the <see cref="
Join
(ref
68
/// The flow analysis state at each label, computed by calling <see cref="
Join
(ref
158
Join
(ref StateWhenTrue, ref StateWhenFalse);
698
Join
(ref this.State, ref previousState);
710
if (
Join
(ref oldState, ref this.State))
799
var changed =
Join
(ref state, ref pending.State);
1189
Join
(ref this.State, ref shortCircuitState);
1408
Join
(ref State, ref localFunctionState.StateFromBottom);
1809
Join
(ref this.State, ref trueState);
1837
Join
(ref endState, ref this.State);
1886
Join
(ref endState, ref stateMovedUpInFinally);
1899
Join
(ref stateToUpdate, ref stateMovedUpInFinally);
1911
Join
(ref self, ref other);
1922
Join
(ref tryState, ref tempTryStateValue);
1951
Join
(ref finallyState, ref tempTryStateValue);
1996
Join
(ref stateMovedUp, ref tempTryStateValue);
2523
Join
(ref resultFalse, ref leftFalse);
2527
Join
(ref resultTrue, ref leftTrue);
2583
Join
(ref stateWhenNotNull, ref tempStateValue);
2587
Join
(ref oldStateValue, ref tempStateValue);
2721
Join
(ref State, ref shortCircuitState);
2756
Join
(ref shortCircuitState, ref State);
2967
Join
(ref StateWhenTrue, ref savedState);
2968
Join
(ref StateWhenFalse, ref savedState);
2972
Join
(ref this.State, ref savedState);
3103
Join
(ref savedState, ref State);
3111
Join
(ref State, ref stateWhenNotNull);
3130
Join
(ref this.State, ref savedState);
3136
Join
(ref this.State, ref savedState);
3152
Join
(ref this.State, ref savedState);
3156
Join
(ref this.State, ref savedState);
3295
Join
(ref this.State, ref afterConsequenceWhenTrue);
3300
Join
(ref this.StateWhenTrue, ref afterConsequenceWhenTrue);
3301
Join
(ref this.StateWhenFalse, ref afterConsequenceWhenFalse);
3357
Join
(ref this.State, ref state);
3747
Join
(ref this.State, ref leftState);
3839
Join
(ref this.State, ref afterBlock);
FlowAnalysis\AbstractFlowPass.ILocalState.cs (2)
27
/// <see cref="
Join
(ref TLocalState, ref TLocalState)"/>.
53
/// The Meet operation is the inverse of <see cref="
Join
(ref TLocalState, ref TLocalState)"/>.
FlowAnalysis\AbstractFlowPass_LocalFunctions.cs (4)
19
/// this state is <see cref="
Join
(ref TLocalState, ref TLocalState)"/>
131
Join
(ref stateAtReturn, ref this.State);
162
anyChanged |=
Join
(ref currentState.StateFromTop, ref stateAtReturn);
171
anyChanged |=
Join
(ref currentState.StateFromBottom, ref value);
FlowAnalysis\AbstractFlowPass_Switch.cs (3)
31
Join
(ref afterSwitchState, ref this.State);
77
Join
(ref afterSwitchState, ref initialState);
178
Join
(ref endState, ref this.State);