Only R2R public methods, methods that override public methods, and internal methods...
authorJeremy Koritzinsky <jekoritz@microsoft.com>
Wed, 16 Nov 2022 20:56:51 +0000 (12:56 -0800)
committerGitHub <noreply@github.com>
Wed, 16 Nov 2022 20:56:51 +0000 (12:56 -0800)
commit55d3027d430df06a3ae10c08b0ee25448e65d1af
treeb24e12a6b41b37ca108dbccfdd9eaa8827a51c35
parent0f412b15a237c6097d393224358958d3e51d0db9
Only R2R public methods, methods that override public methods, and internal methods that aren't always inlined (#75793)
33 files changed:
src/coreclr/tools/Common/Compiler/Dataflow/DynamicallyAccessedMembersBinder.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/Dataflow/DynamicallyAccessedMembersBinder.cs with 100% similarity]
src/coreclr/tools/Common/Compiler/Dataflow/EcmaExtensions.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/Dataflow/EcmaExtensions.cs with 100% similarity]
src/coreclr/tools/Common/Compiler/Dataflow/GenericParameterProxy.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/Dataflow/GenericParameterProxy.cs with 100% similarity]
src/coreclr/tools/Common/Compiler/Dataflow/MethodProxy.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/Dataflow/MethodProxy.cs with 100% similarity]
src/coreclr/tools/Common/Compiler/Dataflow/ParameterProxy.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/Dataflow/ParameterProxy.cs with 100% similarity]
src/coreclr/tools/Common/Compiler/Dataflow/TypeExtensions.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/Dataflow/TypeExtensions.cs with 100% similarity]
src/coreclr/tools/Common/Compiler/Dataflow/TypeProxy.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/Dataflow/TypeProxy.cs with 100% similarity]
src/coreclr/tools/Common/Compiler/EventPseudoDesc.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/EventPseudoDesc.cs with 100% similarity]
src/coreclr/tools/Common/Compiler/FeatureSettings.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/FeatureSettings.cs with 100% similarity]
src/coreclr/tools/Common/Compiler/ProcessLinkerXmlBase.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/ProcessLinkerXmlBase.cs with 100% similarity]
src/coreclr/tools/Common/Compiler/PropertyPseudoDesc.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/PropertyPseudoDesc.cs with 100% similarity]
src/coreclr/tools/Common/Compiler/PseudoDescExtensions.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/PseudoDescExtensions.cs with 100% similarity]
src/coreclr/tools/Common/Compiler/ReferenceSource/BodySubstitutionParser.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/ReferenceSource/BodySubstitutionParser.cs with 100% similarity]
src/coreclr/tools/Common/Compiler/ReferenceSource/DescriptorMarker.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/ReferenceSource/DescriptorMarker.cs with 100% similarity]
src/coreclr/tools/Common/Compiler/ReferenceSource/FeatureSettings.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/ReferenceSource/FeatureSettings.cs with 100% similarity]
src/coreclr/tools/Common/Compiler/ReferenceSource/GenericParameterProxy.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/Dataflow/ReferenceSource/GenericParameterProxy.cs with 100% similarity]
src/coreclr/tools/Common/Compiler/ReferenceSource/LinkAttributesParser.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/ReferenceSource/LinkAttributesParser.cs with 100% similarity]
src/coreclr/tools/Common/Compiler/ReferenceSource/MethodProxy.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/Dataflow/ReferenceSource/MethodProxy.cs with 100% similarity]
src/coreclr/tools/Common/Compiler/ReferenceSource/ParameterProxy.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/Dataflow/ReferenceSource/ParameterProxy.cs with 100% similarity]
src/coreclr/tools/Common/Compiler/ReferenceSource/ProcessLinkerXmlBase.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/ReferenceSource/ProcessLinkerXmlBase.cs with 100% similarity]
src/coreclr/tools/Common/Compiler/ReferenceSource/README.md [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/ReferenceSource/README.md with 100% similarity]
src/coreclr/tools/Common/Compiler/ReferenceSource/TypePreserve.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/ReferenceSource/TypePreserve.cs with 100% similarity]
src/coreclr/tools/Common/Compiler/ReferenceSource/TypeProxy.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/Dataflow/ReferenceSource/TypeProxy.cs with 100% similarity]
src/coreclr/tools/Common/Compiler/TypePreserve.cs [moved from src/coreclr/tools/aot/ILCompiler.Compiler/Compiler/TypePreserve.cs with 100% similarity]
src/coreclr/tools/aot/ILCompiler.Compiler/ILCompiler.Compiler.csproj
src/coreclr/tools/aot/ILCompiler.ReadyToRun/Compiler/EffectiveVisibility.cs [new file with mode: 0644]
src/coreclr/tools/aot/ILCompiler.ReadyToRun/Compiler/ReadyToRunLibraryRootProvider.cs
src/coreclr/tools/aot/ILCompiler.ReadyToRun/Compiler/ReadyToRunProfilingRootProvider.cs [new file with mode: 0644]
src/coreclr/tools/aot/ILCompiler.ReadyToRun/Compiler/ReadyToRunVisibilityRootProvider.cs [new file with mode: 0644]
src/coreclr/tools/aot/ILCompiler.ReadyToRun/Compiler/ReadyToRunXmlRootProvider.cs [new file with mode: 0644]
src/coreclr/tools/aot/ILCompiler.ReadyToRun/ILCompiler.ReadyToRun.csproj
src/coreclr/tools/aot/crossgen2/Program.cs
src/libraries/System.Private.Xml/src/System/Xml/Schema/DataTypeImplementation.cs