1 instantiation of CompilerGeneratedState
illink (1)
Linker\LinkContext.cs (1)
249
_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)
1004
else if (
CompilerGeneratedState
.IsHoistedLocal(field))
1048
if (
CompilerGeneratedState
.IsHoistedLocal(fieldDefinition))
1116
CompilerGeneratedState
.IsHoistedLocal(fieldReferenceValue.Field)
Linker.Steps\MarkStep.cs (7)
1730
bool isCompilerGenerated =
CompilerGeneratedState
.IsNestedFunctionOrStateMachineMember(method);
1820
bool isCompilerGenerated =
CompilerGeneratedState
.IsNestedFunctionOrStateMachineMember(member);
3230
if (!
CompilerGeneratedState
.IsNestedFunctionOrStateMachineMember(method) || method.Body == null)
3807
if (
CompilerGeneratedState
.IsNestedFunctionOrStateMachineMember(body.Method))
3870
Debug.Assert(
CompilerGeneratedState
.IsNestedFunctionOrStateMachineMember(methodIL.Method));
3899
if (
CompilerGeneratedState
.IsNestedFunctionOrStateMachineMember(methodIL.Method))
4105
Debug.Assert(!
CompilerGeneratedState
.IsNestedFunctionOrStateMachineMember(methodIL.Method));
Linker\LinkContext.cs (2)
90
readonly
CompilerGeneratedState
_compilerGeneratedState;
105
public
CompilerGeneratedState
CompilerGeneratedState => _compilerGeneratedState;