1 instantiation of CompilerGeneratedState
illink (1)
Linker\LinkContext.cs (1)
210
_compilerGeneratedState = new
CompilerGeneratedState
(this);
14 references to CompilerGeneratedState
illink (14)
Linker.Dataflow\HoistedLocalKey.cs (1)
20
Debug.Assert (
CompilerGeneratedState
.IsHoistedLocal (field));
Linker.Dataflow\InterproceduralState.cs (1)
63
if (
CompilerGeneratedState
.TryGetStateMachineType (methodIL.Method, out TypeDefinition? stateMachineType)) {
Linker.Dataflow\MethodBodyScanner.cs (3)
923
} else if (
CompilerGeneratedState
.IsHoistedLocal (field)) {
957
if (
CompilerGeneratedState
.IsHoistedLocal (field)) {
1019
CompilerGeneratedState
.IsHoistedLocal (fieldReferenceValue.Field)
Linker.Steps\MarkStep.cs (7)
1571
bool isCompilerGenerated =
CompilerGeneratedState
.IsNestedFunctionOrStateMachineMember (method);
1645
bool isCompilerGenerated =
CompilerGeneratedState
.IsNestedFunctionOrStateMachineMember (member);
2952
if (!
CompilerGeneratedState
.IsNestedFunctionOrStateMachineMember (method) || method.Body == null)
3486
if (
CompilerGeneratedState
.IsNestedFunctionOrStateMachineMember (body.Method))
3523
Debug.Assert (
CompilerGeneratedState
.IsNestedFunctionOrStateMachineMember (methodIL.Method));
3552
if (
CompilerGeneratedState
.IsNestedFunctionOrStateMachineMember (methodIL.Method))
3719
Debug.Assert (!
CompilerGeneratedState
.IsNestedFunctionOrStateMachineMember (methodIL.Method));
Linker\LinkContext.cs (2)
75
readonly
CompilerGeneratedState
_compilerGeneratedState;
87
public
CompilerGeneratedState
CompilerGeneratedState => _compilerGeneratedState;