src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/Dataflow/README.md
The dataflow analysis logic originates from IL Linker: https://github.com/dotnet/runtime/tree/main/src/tools/illink.
The purpose of this logic is to analyze dynamic behavior of the compiled code to make things like reflection work. This is done by analyzing the IL and reading dataflow annotations.
Let's try to keep this in sync. The ReferenceSource contains sources at the time of porting.
It should be updated whenever we take fixes from IL linker.
Standard updates when taking files from IL Linker:
Licensed to the .NET Foundation)#nullable enable since nullable is not globally enabled in ILC yet