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)
130
ReflectionMethodBodyScanner
.CheckAndReportRequires(_diagnosticContext, calledMethod.Method, DiagnosticUtilities.RequiresDynamicCodeAttribute);
197
ReflectionMethodBodyScanner
.CheckAndReportRequires(_diagnosticContext, calledMethod.Method, DiagnosticUtilities.RequiresDynamicCodeAttribute);
206
if (
ReflectionMethodBodyScanner
.IsPInvokeDangerous(calledMethod.Method, out bool comDangerousMethod, out bool aotUnsafeDelegate))
219
ReflectionMethodBodyScanner
.CheckAndReportAllRequires(_diagnosticContext, calledMethod.Method);
277
ReflectionMethodBodyScanner
.CheckAndReportRequires(_diagnosticContext, calledMethod.Method, DiagnosticUtilities.RequiresDynamicCodeAttribute);
319
ReflectionMethodBodyScanner
.CheckAndReportRequires(_diagnosticContext, calledMethod.Method, DiagnosticUtilities.RequiresDynamicCodeAttribute);
346
ReflectionMethodBodyScanner
.CheckAndReportRequires(_diagnosticContext, calledMethod.Method, DiagnosticUtilities.RequiresDynamicCodeAttribute);
778
=>
ReflectionMethodBodyScanner
.CheckAndReportRequires(_diagnosticContext, calledMethod.Method, DiagnosticUtilities.RequiresUnreferencedCodeAttribute);
Compiler\Dataflow\ReflectionMarker.cs (1)
416
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)
649
if (methodIL != null && Dataflow.
ReflectionMethodBodyScanner
.RequiresReflectionMethodBodyScannerForMethodBody(FlowAnnotations, method))
734
if (scanReflection && Dataflow.
ReflectionMethodBodyScanner
.RequiresReflectionMethodBodyScannerForAccess(FlowAnnotations, writtenField))
770
if (scanReflection && Dataflow.
ReflectionMethodBodyScanner
.RequiresReflectionMethodBodyScannerForAccess(FlowAnnotations, accessedType))
779
if (scanReflection && Dataflow.
ReflectionMethodBodyScanner
.RequiresReflectionMethodBodyScannerForCallSite(FlowAnnotations, calledMethod))