1 instantiation of ReflectionMethodBodyScanner
ILCompiler.Compiler (1)
Compiler\Dataflow\ReflectionMethodBodyScanner.cs (1)
133
var scanner = new
ReflectionMethodBodyScanner
(factory, annotations, logger, new MessageOrigin(methodIL.OwningMethod));
21 references to ReflectionMethodBodyScanner
ILCompiler.Compiler (21)
Compiler\Dataflow\AttributeDataFlow.cs (3)
52
ReflectionMethodBodyScanner
.CheckAndReportAllRequires(_diagnosticContext, method);
75
ReflectionMethodBodyScanner
.CheckAndReportAllRequires(_diagnosticContext, field);
87
ReflectionMethodBodyScanner
.CheckAndReportAllRequires(_diagnosticContext, setter);
Compiler\Dataflow\HandleCallAction.cs (8)
127
ReflectionMethodBodyScanner
.CheckAndReportRequires(_diagnosticContext, calledMethod.Method, DiagnosticUtilities.RequiresDynamicCodeAttribute);
191
ReflectionMethodBodyScanner
.CheckAndReportRequires(_diagnosticContext, calledMethod.Method, DiagnosticUtilities.RequiresDynamicCodeAttribute);
200
if (
ReflectionMethodBodyScanner
.IsPInvokeDangerous(calledMethod.Method, out bool comDangerousMethod, out bool aotUnsafeDelegate))
213
ReflectionMethodBodyScanner
.CheckAndReportAllRequires(_diagnosticContext, calledMethod.Method);
271
ReflectionMethodBodyScanner
.CheckAndReportRequires(_diagnosticContext, calledMethod.Method, DiagnosticUtilities.RequiresDynamicCodeAttribute);
313
ReflectionMethodBodyScanner
.CheckAndReportRequires(_diagnosticContext, calledMethod.Method, DiagnosticUtilities.RequiresDynamicCodeAttribute);
340
ReflectionMethodBodyScanner
.CheckAndReportRequires(_diagnosticContext, calledMethod.Method, DiagnosticUtilities.RequiresDynamicCodeAttribute);
755
=>
ReflectionMethodBodyScanner
.CheckAndReportRequires(_diagnosticContext, calledMethod.Method, DiagnosticUtilities.RequiresUnreferencedCodeAttribute);
Compiler\Dataflow\ReflectionMarker.cs (1)
402
ReflectionMethodBodyScanner
.ReportRequires(diagnosticContext, entity, requiresAttributeName, requiresAttribute);
Compiler\Dataflow\ReflectionMethodBodyScanner.cs (1)
133
var
scanner = new ReflectionMethodBodyScanner(factory, annotations, logger, new MessageOrigin(methodIL.OwningMethod));
Compiler\Dataflow\TrimAnalysisFieldAccessPattern.cs (1)
33
ReflectionMethodBodyScanner
.CheckAndReportAllRequires(diagnosticContext, Field);
Compiler\Dataflow\TrimAnalysisMethodCallPattern.cs (1)
87
ReflectionMethodBodyScanner
.HandleCall(MethodBody, CalledMethod, Operation, Instance, Arguments,
Compiler\DependencyAnalysis\DataflowAnalyzedMethodNode.cs (1)
36
return Dataflow.
ReflectionMethodBodyScanner
.ScanAndProcessReturnValue(factory, mdManager.FlowAnnotations, mdManager.Logger, _methodIL, out _runtimeDependencies);
Compiler\DependencyAnalysis\ObjectGetTypeFlowDependenciesNode.cs (1)
44
DependencyList result = Dataflow.
ReflectionMethodBodyScanner
.ProcessTypeGetTypeDataflow(factory, flowAnnotations, logger, _type);
Compiler\UsageBasedMetadataManager.cs (4)
656
if (methodIL != null && Dataflow.
ReflectionMethodBodyScanner
.RequiresReflectionMethodBodyScannerForMethodBody(FlowAnnotations, method))
741
if (scanReflection && Dataflow.
ReflectionMethodBodyScanner
.RequiresReflectionMethodBodyScannerForAccess(FlowAnnotations, writtenField))
777
if (scanReflection && Dataflow.
ReflectionMethodBodyScanner
.RequiresReflectionMethodBodyScannerForAccess(FlowAnnotations, accessedType))
786
if (scanReflection && Dataflow.
ReflectionMethodBodyScanner
.RequiresReflectionMethodBodyScannerForCallSite(FlowAnnotations, calledMethod))