diff --git a/docs/building-apps/build-properties.md b/docs/building-apps/build-properties.md
index 81788ba60cf6..6089dc2ed05c 100644
--- a/docs/building-apps/build-properties.md
+++ b/docs/building-apps/build-properties.md
@@ -167,8 +167,9 @@ This can be overriden by setting the `BundleCreateDump` property:
Note: the `createdump` tool does currently not work for sandboxed apps ([#18961](https://github.com/dotnet/macios/issues/18961));
-Only applicable to projects that use the CoreCLR runtime (which, at the moment
-of this writing, is only macOS projects).
+Note: an alternative option is to enable the in-process crash reporter (see [EnableCrashReport](#enablecrashreport)). The in-process crash reporter also works for sandboxed apps.
+
+Only applicable to macOS projects.
[createdump]: https://github.com/dotnet/runtime/blob/3b63eb1346f1ddbc921374a5108d025662fb5ffd/docs/design/coreclr/botr/xplat-minidump-generation.md
@@ -599,10 +600,6 @@ The crash reports are written to a subdirectory of the app's caches directory.
See also: [Collect crash dumps](https://learn.microsoft.com/en-us/dotnet/core/diagnostics/collect-dumps-crash).
-The in-process crash reporter is only available in the mobile CoreCLR runtime
-(iOS, tvOS and Mac Catalyst); the desktop macOS runtime relies on the
-[`createdump`](#bundlecreatedump) tool instead.
-
## EnableDefaultCodesignEntitlements
See [CodesignEntitlements](#codesignentitlements).
@@ -1412,6 +1409,14 @@ The product definition template (`.plist`) to be used when creating the product
Only applicable to macOS and Mac Catalyst apps.
+## PublishReadyToRunComposite
+
+Specifies whether ReadyToRun (R2R) compilation produces a single composite image containing all the assemblies, or one image per assembly.
+
+Only composite ReadyToRun compilation is supported for iOS, tvOS and Mac Catalyst apps, because the ReadyToRun code is embedded in the app bundle as native Mach-O code, and the runtime only knows how to locate such code for a composite image. Setting this property to `false` will produce a build error; set [PublishReadyToRun](https://learn.microsoft.com/dotnet/core/deploying/ready-to-run) to `false` to turn off ReadyToRun compilation completely instead.
+
+Default: `true` (when `PublishReadyToRun` is `true`).
+
## RecommendedXcodeVersion
The version of Xcode recommended for use with this version of .NET for iOS, tvOS, macOS and Mac Catalyst.
diff --git a/dotnet/targets/Microsoft.Sdk.R2R.targets b/dotnet/targets/Microsoft.Sdk.R2R.targets
index 255e2ed34808..191be8cfef46 100644
--- a/dotnet/targets/Microsoft.Sdk.R2R.targets
+++ b/dotnet/targets/Microsoft.Sdk.R2R.targets
@@ -3,6 +3,18 @@
+
+
+
+
+
false
true
+
- false
+ false
+ false
<_ComObjectDescriptorSupport Condition="'$(_ComObjectDescriptorSupport)' == ''">false
diff --git a/src/AppKit/Enums.cs b/src/AppKit/Enums.cs
index d0a5f53f825e..5c5b57601150 100644
--- a/src/AppKit/Enums.cs
+++ b/src/AppKit/Enums.cs
@@ -27,14 +27,15 @@
namespace AppKit {
+ /// Specifies a return response from an application modal session.
[NoMacCatalyst]
[Native]
public enum NSRunResponse : long {
- /// To be added.
+ /// Indicates that the modal session stopped.
Stopped = -1000,
- /// To be added.
+ /// Indicates that the modal session was aborted.
Aborted = -1001,
- /// To be added.
+ /// Indicates that the modal session should continue.
Continues = -1002,
}
@@ -342,16 +343,17 @@ public enum NSColorSpaceModel : long {
#endregion
#region NSParagraphStyle
+ /// Specifies the alignment of text at a tab stop.
[NoMacCatalyst]
[Native]
public enum NSTextTabType : ulong {
- /// To be added.
+ /// Left-aligns text at the tab stop.
Left,
- /// To be added.
+ /// Right-aligns text at the tab stop.
Right,
- /// To be added.
+ /// Centers text at the tab stop.
Center,
- /// To be added.
+ /// Aligns decimal characters at the tab stop.
Decimal,
}
@@ -1431,24 +1433,26 @@ public enum NSWindowCollectionBehavior : ulong {
CanJoinAllApplications = 1 << 18,
}
+ /// Specifies which windows to include in a window-number list.
[NoMacCatalyst]
[Flags]
[Native]
public enum NSWindowNumberListOptions : ulong {
- /// To be added.
+ /// Includes windows from all applications, instead of only the calling application.
AllApplication = 1 << 0,
- /// To be added.
+ /// Includes windows from all spaces, instead of only the active space.
AllSpaces = 1 << 4,
}
+ /// Specifies the direction in which a window traverses its key-view loop.
[NoMacCatalyst]
[Native]
public enum NSSelectionDirection : ulong {
- /// To be added.
+ /// Indicates that the window is not traversing the key-view loop.
Direct = 0,
- /// To be added.
+ /// Proceeds to the next valid key view.
Next,
- /// To be added.
+ /// Proceeds to the previous valid key view.
Previous,
}
@@ -2629,14 +2633,15 @@ public enum NSTableViewColumnAutoresizingStyle : ulong {
FirstColumnOnly,
}
+ /// Specifies how a table view highlights selected rows.
[NoMacCatalyst]
[Native]
public enum NSTableViewSelectionHighlightStyle : long {
- /// To be added.
+ /// Does not highlight selected rows.
None = -1,
- /// To be added.
+ /// Uses the regular selection highlight style.
Regular = 0,
- /// To be added.
+ /// Uses the source-list selection highlight style.
[Deprecated (PlatformName.MacOSX, 11, 0, message: "Set 'NSTableView.Style' to 'NSTableViewStyle.SourceList' instead.")]
SourceList = 1,
}
@@ -2676,17 +2681,18 @@ public enum NSTableColumnResizing : long {
UserResizingMask = (1 << 1),
}
+ /// Specifies which grid lines a table view draws.
[NoMacCatalyst]
[Flags]
[Native]
public enum NSTableViewGridStyle : ulong {
- /// To be added.
+ /// Does not draw grid lines.
None = 0,
- /// To be added.
+ /// Draws solid vertical grid lines.
SolidVerticalLine = 1 << 0,
- /// To be added.
+ /// Draws solid horizontal grid lines.
SolidHorizontalLine = 1 << 1,
- /// To be added.
+ /// Draws dashed horizontal grid lines.
DashedHorizontalGridLine = 1 << 3,
}
@@ -2726,40 +2732,43 @@ public enum NSImageAlignment : ulong {
Right,
}
+ /// Specifies the frame drawn around an image.
[NoMacCatalyst]
[Native]
public enum NSImageFrameStyle : ulong {
- /// To be added.
+ /// Draws no frame.
None = 0,
- /// To be added.
+ /// Draws a frame suitable for a photograph.
Photo,
- /// To be added.
+ /// Draws a gray bezel frame.
GrayBezel,
- /// To be added.
+ /// Draws a grooved frame.
Groove,
- /// To be added.
+ /// Draws a button-style frame.
Button,
}
+ /// Specifies when a speech synthesizer pauses or stops speaking.
[NoMacCatalyst]
[Native]
public enum NSSpeechBoundary : ulong {
- /// To be added.
+ /// Pauses or stops speaking immediately.
Immediate = 0,
- /// To be added.
+ /// Pauses or stops speaking at the next word boundary.
Word = 1,
- /// To be added.
+ /// Pauses or stops speaking at the next sentence boundary.
Sentence,
}
+ /// Specifies the visual style of a split view divider.
[NoMacCatalyst]
[Native]
public enum NSSplitViewDividerStyle : long {
- /// To be added.
+ /// Uses a thick divider.
Thick = 1,
- /// To be added.
+ /// Uses a thin divider.
Thin = 2,
- /// To be added.
+ /// Uses a pane-splitter divider.
PaneSplitter = 3,
}
@@ -2775,16 +2784,17 @@ public enum NSSplitViewItemBehavior : long {
Inspector,
}
+ /// Specifies how an image is scaled to fit its frame.
[NoMacCatalyst]
[Native]
public enum NSImageScaling : ulong {
- /// To be added.
+ /// Scales the image down proportionally when it is larger than the frame.
ProportionallyDown = 0,
- /// To be added.
+ /// Scales the image independently along each axis to fill the frame.
AxesIndependently,
- /// To be added.
+ /// Does not scale the image.
None,
- /// To be added.
+ /// Scales the image proportionally up or down to fit the frame.
ProportionallyUpOrDown,
}
diff --git a/src/ObjCRuntime/DynamicRegistrar.cs b/src/ObjCRuntime/DynamicRegistrar.cs
index 3026119c0a01..94b172571d70 100644
--- a/src/ObjCRuntime/DynamicRegistrar.cs
+++ b/src/ObjCRuntime/DynamicRegistrar.cs
@@ -708,6 +708,11 @@ protected override Type GetGenericTypeDefinition (Type type)
return type.GetGenericTypeDefinition ();
}
+ protected override IEnumerable GetGenericArguments (Type type)
+ {
+ return type.GetGenericArguments ();
+ }
+
protected override bool IsDelegate (Type type)
{
return type.IsSubclassOf (typeof (System.Delegate));
diff --git a/src/ObjCRuntime/Registrar.cs b/src/ObjCRuntime/Registrar.cs
index fc7d13e5b911..f34abcdb5562 100644
--- a/src/ObjCRuntime/Registrar.cs
+++ b/src/ObjCRuntime/Registrar.cs
@@ -1154,6 +1154,7 @@ protected virtual void OnRegisterCategory (ObjCType type, [NotNullIfNotNull (nam
protected abstract bool IsAbstract (TType type);
protected abstract bool IsPointer (TType type);
protected abstract TType GetGenericTypeDefinition (TType type);
+ protected abstract IEnumerable GetGenericArguments (TType type);
public abstract bool VerifyIsConstrainedToNSObject (TType type, out TType? constrained_type);
protected abstract TType? GetEnumUnderlyingType (TType type);
protected abstract bool TryGetEnumUnderlyingType ([NotNullWhen (true)] TType? tr, [NotNullWhen (true)] out TType? underlyingType);
@@ -2779,6 +2780,9 @@ protected string ToSignature (TType type, ObjCMember? member, ref bool success,
return "#";
if (IsINativeObject (type)) {
+ if (IsGenericType (type))
+ VerifyGenericArguments (type, member);
+
if (!IsGenericType (type) && !IsInterface (type) && !IsNSObject (type) && IsAbstract (type)) {
ReportWarning (4179, Errors.MT4179, type.FullName, member?.FullName);
}
@@ -2810,6 +2814,17 @@ protected string ToSignature (TType type, ObjCMember? member, ref bool success,
return string.Empty;
}
+ void VerifyGenericArguments (TType type, ObjCMember? member)
+ {
+ foreach (var argument in GetGenericArguments (type)) {
+ if (HasModelAttribute (argument))
+ throw CreateException (4192, member, Errors.MT4192, GetTypeFullName (argument), GetTypeFullName (type));
+
+ if (IsGenericType (argument))
+ VerifyGenericArguments (argument, member);
+ }
+ }
+
string ValueTypeSignature (TType type, ObjCMember member)
{
bool success = true;
diff --git a/tests/assembly-preparer/PreserveBlockCodeHandlerTests.cs b/tests/assembly-preparer/PreserveBlockCodeHandlerTests.cs
index f775a21fc656..ad39cd811c5c 100644
--- a/tests/assembly-preparer/PreserveBlockCodeHandlerTests.cs
+++ b/tests/assembly-preparer/PreserveBlockCodeHandlerTests.cs
@@ -45,9 +45,8 @@ static internal void Invoke (IntPtr block, int magic_number)
Assert.That ((string) attribs [0].ConstructorArguments [1].Value, Is.EqualTo ("ObjCRuntime.Trampolines.SDInnerBlock"), "First attribute's second argument");
Assert.That ((string) attribs [0].ConstructorArguments [2].Value, Is.EqualTo ("Test"), "First attribute's third argument");
- // Invoke method: DDA(string memberSignature) - same declaring type, so simpler constructor.
- // The signature doesn't include the parameter list, because there's only one method named 'Invoke'.
+ // Invoke method: DDA(string memberSignature) - same declaring type, so simpler constructor
Assert.That (attribs [1].ConstructorArguments.Count, Is.EqualTo (1), "Second attribute's argument count");
- Assert.That ((string) attribs [1].ConstructorArguments [0].Value, Is.EqualTo ("Invoke"), "Second attribute's first argument");
+ Assert.That ((string) attribs [1].ConstructorArguments [0].Value, Is.EqualTo ("Invoke(System.IntPtr,System.Int32)"), "Second attribute's first argument");
}
}
diff --git a/tests/assembly-preparer/PreserveSmartEnumConversionsTest.cs b/tests/assembly-preparer/PreserveSmartEnumConversionsTest.cs
index 8fe86714feb7..95f90cee942d 100644
--- a/tests/assembly-preparer/PreserveSmartEnumConversionsTest.cs
+++ b/tests/assembly-preparer/PreserveSmartEnumConversionsTest.cs
@@ -108,8 +108,7 @@ void AssertHasDynamicDependency (ICustomAttributeProvider provider, string membe
void AssertMethodHasDynamicDependencies (ICustomAttributeProvider provider)
{
- // 'GetConstant' has no parameter list, because it's the only method with that name (unlike 'GetValue').
- AssertHasDynamicDependency (provider, "GetConstant", "CoreAnimation.CAToneMapModeExtensions", $"Microsoft.{platform.AsString ()}");
+ AssertHasDynamicDependency (provider, "GetConstant(CoreAnimation.CAToneMapMode)", "CoreAnimation.CAToneMapModeExtensions", $"Microsoft.{platform.AsString ()}");
AssertHasDynamicDependency (provider, "GetValue(Foundation.NSString)", "CoreAnimation.CAToneMapModeExtensions", $"Microsoft.{platform.AsString ()}");
}
diff --git a/tests/assembly-preparer/RegistrarTests.cs b/tests/assembly-preparer/RegistrarTests.cs
new file mode 100644
index 000000000000..d6a4b2ba5e55
--- /dev/null
+++ b/tests/assembly-preparer/RegistrarTests.cs
@@ -0,0 +1,49 @@
+// Copyright (c) Microsoft Corporation.
+// Licensed under the MIT License.
+
+namespace AssemblyPreparerTests;
+
+public class RegistrarTests : BaseClass {
+ [Test]
+ public void ModelClassAsGenericArgument ()
+ {
+ var code = @"
+ using Foundation;
+ using ObjCRuntime;
+
+ class MyClass : NSObject {
+ [Export (""sessionOptions"")]
+ public NSDictionary GetSessionOptions ()
+ {
+ throw new System.NotImplementedException ();
+ }
+ }
+ ";
+
+ using var preparer = CreatePreparer (ApplePlatform.iOS, false, p => p.Registrar = RegistrarMode.ManagedStatic, code, out _);
+ preparer.Prepare (out _);
+
+ var logger = (TestLogger) preparer.Configuration.Logger;
+ var exception = logger.Errors.Single (v => v.Code == 4192);
+ Assert.That (exception.Message, Is.EqualTo ("The registrar cannot use the model class 'Foundation.NSFileManagerDelegate' as a generic type argument in the generic type 'Foundation.NSDictionary`2'. Use the protocol interface instead of the model class."));
+ }
+
+ [Test]
+ public void ProtocolInterfaceAsGenericArgument ()
+ {
+ var code = @"
+ using Foundation;
+ using ObjCRuntime;
+
+ class MyClass : NSObject {
+ [Export (""sessionOptions"")]
+ public NSDictionary GetSessionOptions ()
+ {
+ throw new System.NotImplementedException ();
+ }
+ }
+ ";
+
+ AssertPrepare (ApplePlatform.iOS, false, RegistrarMode.ManagedStatic, code, out _);
+ }
+}
diff --git a/tests/assembly-preparer/ReproTest.cs b/tests/assembly-preparer/ReproTest.cs
index 3b3c8a8ef301..b1fdaf023b0b 100644
--- a/tests/assembly-preparer/ReproTest.cs
+++ b/tests/assembly-preparer/ReproTest.cs
@@ -202,6 +202,7 @@ AssemblyPreparerInfo GetAssemblyInfo (ITaskItem item)
class TestLogger : IToolLog {
public int Verbosity => 0;
public required ApplePlatform Platform { get; set; }
+ public List Errors { get; } = [];
public void Log (string value)
{
@@ -220,6 +221,7 @@ public void LogException (Exception ex)
public void LogError (ProductException ex)
{
+ Errors.Add (ex);
Console.WriteLine (ex.ToString ());
}
diff --git a/tests/cecil-tests/Documentation.KnownFailures.txt b/tests/cecil-tests/Documentation.KnownFailures.txt
index 4b4442aee72d..37e939269cb3 100644
--- a/tests/cecil-tests/Documentation.KnownFailures.txt
+++ b/tests/cecil-tests/Documentation.KnownFailures.txt
@@ -54426,7 +54426,6 @@ T:AppKit.NSImageAlignment
T:AppKit.NSImageCacheMode
T:AppKit.NSImageCell
T:AppKit.NSImageDynamicRange
-T:AppKit.NSImageFrameStyle
T:AppKit.NSImageHint
T:AppKit.NSImageInterpolation
T:AppKit.NSImageLayoutDirection
@@ -54437,7 +54436,6 @@ T:AppKit.NSImageRep
T:AppKit.NSImageRepLoadStatus
T:AppKit.NSImageResizingModeExtensions
T:AppKit.NSImageScale
-T:AppKit.NSImageScaling
T:AppKit.NSImageSymbolColorRenderingMode
T:AppKit.NSImageSymbolConfiguration
T:AppKit.NSImageSymbolScale
@@ -54574,7 +54572,6 @@ T:AppKit.NSRulerMarkerClientViewDelegation
T:AppKit.NSRulerView
T:AppKit.NSRulerViewUnits
T:AppKit.NSRunningApplication
-T:AppKit.NSRunResponse
T:AppKit.NSSaveOperationType
T:AppKit.NSSavePanel
T:AppKit.NSSavePanelComplete
@@ -54615,7 +54612,6 @@ T:AppKit.NSSegmentedControl
T:AppKit.NSSegmentedControlRole
T:AppKit.NSSegmentStyle
T:AppKit.NSSegmentSwitchTracking
-T:AppKit.NSSelectionDirection
T:AppKit.NSSharingCollaborationMode
T:AppKit.NSSharingCollaborationModeRestriction
T:AppKit.NSSharingContentScope
@@ -54639,7 +54635,6 @@ T:AppKit.NSSliderCell
T:AppKit.NSSliderTouchBarItem
T:AppKit.NSSliderType
T:AppKit.NSSound
-T:AppKit.NSSpeechBoundary
T:AppKit.NSSpeechRecognizer
T:AppKit.NSSpeechSynthesizer
T:AppKit.NSSpellChecker
@@ -54647,7 +54642,6 @@ T:AppKit.NSSpellCheckerShowCorrectionIndicatorOfTypeHandler
T:AppKit.NSSpellingState
T:AppKit.NSSplitView
T:AppKit.NSSplitViewController
-T:AppKit.NSSplitViewDividerStyle
T:AppKit.NSSplitViewItem
T:AppKit.NSSplitViewItemAccessoryViewController
T:AppKit.NSSplitViewItemBehavior
@@ -54698,7 +54692,6 @@ T:AppKit.NSTableViewDiffableDataSourceRowProvider
T:AppKit.NSTableViewDiffableDataSourceSectionHeaderViewProvider
T:AppKit.NSTableViewDraggingDestinationFeedbackStyle
T:AppKit.NSTableViewEventString
-T:AppKit.NSTableViewGridStyle
T:AppKit.NSTableViewIndexFilter
T:AppKit.NSTableViewPredicate
T:AppKit.NSTableViewRowAction
@@ -54710,7 +54703,6 @@ T:AppKit.NSTableViewRowHeight
T:AppKit.NSTableViewRowPredicate
T:AppKit.NSTableViewRowSizeStyle
T:AppKit.NSTableViewSearchString
-T:AppKit.NSTableViewSelectionHighlightStyle
T:AppKit.NSTableViewSource
T:AppKit.NSTableViewStyle
T:AppKit.NSTableViewToolTip
@@ -54794,7 +54786,6 @@ T:AppKit.NSTextSelectionNavigationModifier
T:AppKit.NSTextSelectionNavigationWritingDirection
T:AppKit.NSTextTable
T:AppKit.NSTextTableBlock
-T:AppKit.NSTextTabType
T:AppKit.NSTextView
T:AppKit.NSTextView_SharingService
T:AppKit.NSTextViewCellPasteboard
@@ -54900,7 +54891,6 @@ T:AppKit.NSWindowFramePredicate
T:AppKit.NSWindowLevel
T:AppKit.NSWindowMenu
T:AppKit.NSWindowNSWindow
-T:AppKit.NSWindowNumberListOptions
T:AppKit.NSWindowResize
T:AppKit.NSWindowSharingType
T:AppKit.NSWindowSheetRect
diff --git a/tests/dotnet/UnitTests/DotNetWatchTest.cs b/tests/dotnet/UnitTests/DotNetWatchTest.cs
index 682c88504f53..9e0daebd8c86 100644
--- a/tests/dotnet/UnitTests/DotNetWatchTest.cs
+++ b/tests/dotnet/UnitTests/DotNetWatchTest.cs
@@ -55,30 +55,6 @@ void DotNetWatchImpl (ApplePlatform platform, bool useMonoRuntime, bool enableSa
{
Configuration.IgnoreIfIgnoredPlatform (platform);
- // Hot Reload with CoreCLR is currently broken on the mobile platforms: the app crashes with
- // "System.BadImageFormatException: Bad IL range" right after the update has been applied.
- // Desktop macOS is not affected.
- //
- // That error comes from CoreCLR's PEAssembly::GetIL, which means the runtime looked up the
- // updated method's IL in the *baseline* PE image using the RVA from the metadata delta - and
- // that RVA is delta-relative, so it's out of range in the baseline image. In other words the
- // runtime didn't pick up the delta IL when compiling the updated method.
- //
- // This is fallout from https://github.com/dotnet/runtime/pull/130159 ("Use CodeVersioning for
- // EnC"), which made the delta IL be stored as an ILCodeVersion: only
- // VersionedPrepareCodeConfig::GetILHeader returns it, while the plain
- // PrepareCodeConfig::GetILHeader falls back to MethodDesc::GetILHeader (= the baseline RVA
- // lookup that ends up throwing). Something on the mobile-only code path prepares the updated
- // method with a non-versioned config. The mobile difference isn't code versioning as such
- // (that's enabled everywhere, since FEATURE_METADATA_UPDATER turns on FEATURE_CODE_VERSIONING),
- // but rather that FEATURE_DYNAMIC_CODE_COMPILED is off for Apple mobile, so there's no JIT and
- // these apps run the CoreCLR interpreter instead.
- //
- // Tracked upstream here: https://github.com/dotnet/runtime/issues/132804
- // Re-enable these test cases once the fix has flowed into our runtime.
- if (!useMonoRuntime && platform != ApplePlatform.MacOSX)
- Assert.Ignore ("Hot Reload with CoreCLR is currently broken on this platform: https://github.com/dotnet/macios/issues/26470");
-
var projectPath = GetProjectPath ("HotReloadTestApp", platform: platform);
var projectDirectory = Path.GetDirectoryName (projectPath)!;
diff --git a/tests/dotnet/UnitTests/DynamicCodeSupportTest.cs b/tests/dotnet/UnitTests/DynamicCodeSupportTest.cs
new file mode 100644
index 000000000000..6c4634c74e40
--- /dev/null
+++ b/tests/dotnet/UnitTests/DynamicCodeSupportTest.cs
@@ -0,0 +1,78 @@
+// Copyright (c) Microsoft Corporation.
+// Licensed under the MIT License.
+
+#nullable enable
+
+namespace Xamarin.Tests {
+ [TestFixture]
+ public class DynamicCodeSupportTest : TestBaseClass {
+ [TestCase (ApplePlatform.iOS, "iossimulator-arm64")]
+ [TestCase (ApplePlatform.TVOS, "tvossimulator-arm64")]
+ [TestCase (ApplePlatform.MacCatalyst, "maccatalyst-arm64")]
+ [TestCase (ApplePlatform.MacOSX, "osx-arm64")]
+ public void SupportedWithCoreCLR (ApplePlatform platform, string runtimeIdentifiers)
+ {
+ // CoreCLR supports dynamic code (JIT and/or Reflection.Emit), so we must not claim otherwise:
+ // libraries such as Entity Framework Core use this feature switch to detect NativeAOT, and would
+ // otherwise refuse to work at all. See https://github.com/dotnet/macios/issues/26430.
+ Configuration.IgnoreIfIgnoredPlatform (platform);
+ Configuration.AssertRuntimeIdentifiersAvailable (platform, runtimeIdentifiers);
+
+ var project_path = GetProjectPath ("MySimpleApp", platform: platform);
+ Clean (project_path);
+ var properties = GetDefaultProperties (runtimeIdentifiers);
+
+ var rv = DotNet.AssertBuild (project_path, properties);
+
+ Assert.That (GetDynamicCodeSupport (rv.BinLogPath), Is.EqualTo ("true"), "Dynamic code must be supported when using CoreCLR.");
+ }
+
+ // Note: iOS/tvOS aren't covered here, because publishing for those platforms requires a device
+ // runtime identifier (and thus code signing), which isn't always available.
+ [TestCase (ApplePlatform.MacCatalyst, "maccatalyst-arm64")]
+ [TestCase (ApplePlatform.MacOSX, "osx-arm64")]
+ public void UnsupportedWithNativeAot (ApplePlatform platform, string runtimeIdentifiers)
+ {
+ // NativeAOT doesn't support dynamic code at all.
+ Configuration.IgnoreIfIgnoredPlatform (platform);
+ Configuration.AssertRuntimeIdentifiersAvailable (platform, runtimeIdentifiers);
+
+ var project_path = GetProjectPath ("MySimpleApp", platform: platform);
+ Clean (project_path);
+ var properties = GetDefaultProperties (runtimeIdentifiers);
+ properties ["PublishAot"] = "true";
+
+ var rv = DotNet.AssertPublish (project_path, properties);
+
+ Assert.That (GetDynamicCodeSupport (rv.BinLogPath), Is.EqualTo ("false"), "Dynamic code must not be supported when using NativeAOT.");
+ }
+
+ [TestCase (ApplePlatform.iOS, "iossimulator-arm64", "true")]
+ [TestCase (ApplePlatform.iOS, "iossimulator-arm64", "false")]
+ public void UserSpecifiedValue (ApplePlatform platform, string runtimeIdentifiers, string dynamicCodeSupport)
+ {
+ // When the user sets $(DynamicCodeSupport), the value must be used as-is.
+ Configuration.IgnoreIfIgnoredPlatform (platform);
+ Configuration.AssertRuntimeIdentifiersAvailable (platform, runtimeIdentifiers);
+
+ var project_path = GetProjectPath ("MySimpleApp", platform: platform);
+ Clean (project_path);
+ var properties = GetDefaultProperties (runtimeIdentifiers);
+ properties ["DynamicCodeSupport"] = dynamicCodeSupport;
+
+ var rv = DotNet.AssertBuild (project_path, properties);
+
+ Assert.That (GetDynamicCodeSupport (rv.BinLogPath), Is.EqualTo (dynamicCodeSupport), "The user-specified value must be used.");
+ }
+
+ // Returns the effective value of the $(DynamicCodeSupport) property, which becomes the
+ // 'System.Runtime.CompilerServices.RuntimeFeature.IsDynamicCodeSupported' trimmer feature switch.
+ static string GetDynamicCodeSupport (string binLogPath)
+ {
+ // If the property isn't set at all, dotnet/sdk's default (which is 'true') applies.
+ if (!BinLog.TryFindPropertyValue (binLogPath, "DynamicCodeSupport", out var value) || string.IsNullOrEmpty (value))
+ return "true";
+ return value;
+ }
+ }
+}
diff --git a/tests/dotnet/UnitTests/EnableCrashReportTest.cs b/tests/dotnet/UnitTests/EnableCrashReportTest.cs
index 4f7198c0a4e8..94aad8d89751 100644
--- a/tests/dotnet/UnitTests/EnableCrashReportTest.cs
+++ b/tests/dotnet/UnitTests/EnableCrashReportTest.cs
@@ -8,16 +8,13 @@ namespace Xamarin.Tests {
public class EnableCrashReportTest : TestBaseClass {
[Test]
[TestCase (ApplePlatform.MacCatalyst, "maccatalyst-arm64")]
+ [TestCase (ApplePlatform.MacOSX, "osx-arm64")]
public void Enabled (ApplePlatform platform, string runtimeIdentifiers)
{
// When $(EnableCrashReport) is set to true, the DOTNET_EnableCrashReport=1 environment
// variable is set at startup, which makes the .NET runtime's in-process crash reporter
// write a JSON crash report when the app crashes. Verify this by crashing the app on
// launch and checking that a crash report file was created.
- //
- // Note: only the mobile CoreCLR flavor (iOS, tvOS and Mac Catalyst) has the in-process
- // crash reporter; the desktop macOS runtime relies on 'createdump' instead (see the
- // BundleCreateDump property), which is why macOS isn't tested here.
var project = "MySimpleApp";
Configuration.IgnoreIfIgnoredPlatform (platform);
Configuration.AssertRuntimeIdentifiersAvailable (platform, runtimeIdentifiers);
diff --git a/tests/dotnet/UnitTests/ProjectTest.cs b/tests/dotnet/UnitTests/ProjectTest.cs
index 05b34c88ee14..39161cfe2170 100644
--- a/tests/dotnet/UnitTests/ProjectTest.cs
+++ b/tests/dotnet/UnitTests/ProjectTest.cs
@@ -509,6 +509,25 @@ public void PublishSingleFile_IsNotSupported (ApplePlatform platform, string run
Assert.That (errors.Select (e => e.Message), Has.Some.Contains ("does not support publishing to a single file"), "Error message");
}
+ [Test]
+ [TestCase (ApplePlatform.iOS, "iossimulator-arm64")]
+ [TestCase (ApplePlatform.TVOS, "tvossimulator-arm64")]
+ [TestCase (ApplePlatform.MacCatalyst, "maccatalyst-arm64")]
+ public void PublishReadyToRunComposite_False_IsNotSupported (ApplePlatform platform, string runtimeIdentifiers)
+ {
+ var project = "MySimpleApp";
+ Configuration.IgnoreIfIgnoredPlatform (platform);
+
+ var project_path = GetProjectPath (project, platform: platform);
+ Clean (project_path);
+ var properties = GetDefaultProperties (runtimeIdentifiers);
+ properties ["PublishReadyToRunComposite"] = "false";
+ var rv = DotNet.AssertBuildFailure (project_path, properties);
+ var errors = BinLog.GetBuildLogErrors (rv.BinLogPath).ToArray ();
+ Assert.That (errors.Length, Is.EqualTo (1), "Error count");
+ Assert.That (errors [0].Message, Does.StartWith ("Setting 'PublishReadyToRunComposite' to 'false' isn't supported"), "Error message");
+ }
+
[Test]
[TestCase (ApplePlatform.iOS, "ios-arm64;iossimulator-x64")]
[TestCase (ApplePlatform.iOS, "ios-arm64;iossimulator-arm64")]
diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt
index cd891dd2dcb9..9f48f9ec24e2 100644
--- a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt
+++ b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt
@@ -3590,6 +3590,22 @@ System.Private.CoreLib.dll:System.Boolean System.ReadOnlyMemory`1::IsEmpty()
System.Private.CoreLib.dll:System.Boolean System.ReadOnlySpan`1::IsEmpty()
System.Private.CoreLib.dll:System.Boolean System.Reflection.Assembly::IsDynamic()
System.Private.CoreLib.dll:System.Boolean System.Reflection.Assembly::s_loadFromHandlerSet
+System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.AssemblyBuilder::IsDynamic()
+System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.AssemblyBuilder::t_allowDynamicCode
+System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_initLocals
+System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_restrictedSkipVisibility
+System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::_skipVisibility
+System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.DynamicMethod::InitLocals()
+System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsByRefLike()
+System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsConstructedGenericType()
+System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericParameter()
+System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericType()
+System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsGenericTypeDefinition()
+System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::IsSZArray()
+System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_bIsGenParam
+System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_hasBeenCreated
+System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.RuntimeTypeBuilder::m_isHiddenGlobalType
+System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SignatureHelper::m_sigDone
System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::_isSzArray
System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::IsConstructedGenericType()
System.Private.CoreLib.dll:System.Boolean System.Reflection.Emit.SymbolType::IsSZArray()
@@ -3733,6 +3749,8 @@ System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.Nullab
System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeAsyncMethodGenerationAttribute::P
System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::k__BackingField
System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::WrapNonExceptionThrows()
+System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::k__BackingField
+System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::IsDynamicCodeSupported()
System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.TypeHandle::IsTypeDesc()
System.Private.CoreLib.dll:System.Boolean System.Runtime.DependentHandle::IsAllocated()
System.Private.CoreLib.dll:System.Boolean System.Runtime.EH/RhEHClause::_isSameTry
@@ -3789,6 +3807,7 @@ System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericType()
System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericTypeDefinition()
System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsNullableOfT()
System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsSZArray()
+System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsUnmanagedFunctionPointer()
System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::_ctorIsPublic
System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::CtorIsPublic()
System.Private.CoreLib.dll:System.Boolean System.RuntimeType/RuntimeTypeCache::IsGlobal()
@@ -3955,6 +3974,7 @@ System.Private.CoreLib.dll:System.Boolean System.Type::IsPublic()
System.Private.CoreLib.dll:System.Boolean System.Type::IsSealed()
System.Private.CoreLib.dll:System.Boolean System.Type::IsSignatureType()
System.Private.CoreLib.dll:System.Boolean System.Type::IsSZArray()
+System.Private.CoreLib.dll:System.Boolean System.Type::IsUnmanagedFunctionPointer()
System.Private.CoreLib.dll:System.Boolean System.Type::IsValueType()
System.Private.CoreLib.dll:System.Boolean System.Type::IsVariableBoundArray()
System.Private.CoreLib.dll:System.Boolean System.UInt128::System.IBinaryIntegerParseAndFormatInfo.IsSigned()
@@ -3998,6 +4018,7 @@ System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper:
System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper::rgiLastFrameFromForeignExceptionStackTrace
System.Private.CoreLib.dll:System.Boolean[] System.Reflection.ParameterModifier::_byRef
System.Private.CoreLib.dll:System.Buffer
+System.Private.CoreLib.dll:System.Buffer.BlockCopy(System.Array, System.Int32, System.Array, System.Int32, System.Int32)
System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrier(System.Byte&, System.Byte&, System.UIntPtr)
System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierBatch(System.Byte&, System.Byte&, System.UIntPtr)
System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierInternal(System.Byte&, System.Byte&, System.UIntPtr)
@@ -4058,11 +4079,16 @@ System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt16Litt
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32BigEndian(System.ReadOnlySpan`1)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32LittleEndian(System.ReadOnlySpan`1)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt64LittleEndian(System.ReadOnlySpan`1)
+System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int16)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int32)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int64)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt16)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt32)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt64)
+System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16BigEndian(System.Span`1, System.Int16)
+System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16LittleEndian(System.Span`1, System.Int16)
+System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32BigEndian(System.Span`1, System.Int32)
+System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32LittleEndian(System.Span`1, System.Int32)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32BigEndian(System.Span`1, System.UInt32)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32LittleEndian(System.Span`1, System.UInt32)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt64BigEndian(System.Span`1, System.UInt64)
@@ -4325,6 +4351,7 @@ System.Private.CoreLib.dll:System.Byte System.Half::BiasedExponent()
System.Private.CoreLib.dll:System.Byte System.Number/NumberBufferKind::value__
System.Private.CoreLib.dll:System.Byte System.Reflection.ConstArray::Item(System.Int32)
System.Private.CoreLib.dll:System.Byte System.Reflection.CorElementType::value__
+System.Private.CoreLib.dll:System.Byte System.Reflection.MdSigCallingConvention::value__
System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::hashShift
System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::victimCounter
System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.MethodDesc::ChunkIndex
@@ -4464,6 +4491,12 @@ System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::_public
System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKey()
System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKeyToken()
System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyNameParser/AssemblyNameParts::_publicKeyOrToken
+System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.CustomAttributeBuilder::Data()
+System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_code
+System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_exceptionHeader
+System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_localSignature
+System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.RuntimeILGenerator::m_ILStream
+System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.SignatureHelper::m_signature
System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::k__BackingField
System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::PublicKeyOrToken()
System.Private.CoreLib.dll:System.Byte[] System.Reflection.RuntimeMethodBody::_IL
@@ -4830,6 +4863,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Assembly::s_loadfile
System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyExternalTypeDictionary::_lazyData
System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Threading.WaitSubsystem/WaitableObject::s_namedObjects
+System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Emit.RuntimeModuleBuilder::_typeBuilderDict
System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::_dictionary
System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1
System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1..ctor()
@@ -5015,6 +5049,8 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.Dispose(
System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.get_Current()
System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.MoveNext()
System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.TypeNameBuilder::_stack
+System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.DynamicScope::m_tokens
+System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_listMethods
System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Metadata.TypeName::_genericArguments
System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyTypeLoadDictionary`1::_preCachedModules
System.Private.CoreLib.dll:System.Collections.Generic.List`1 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::m_faultExceptions
@@ -5028,6 +5064,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimers
System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimersToFire
System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.TimeZoneInfo::_equivalentZones
+System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_typeInterfaces
System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list
System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer
System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Collections.Generic.NonRandomizedStringEqualityComparer::WrappedAroundDefaultComparer
@@ -6058,6 +6095,7 @@ System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.Compi
System.Private.CoreLib.dll:System.Delegate.Combine(System.Delegate, System.Delegate)
System.Private.CoreLib.dll:System.Delegate.CombineImpl(System.Delegate)
System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, out System.Delegate/BindToMethodDetails&)
+System.Private.CoreLib.dll:System.Delegate.CreateDelegateForDynamicMethod(System.Type, System.Object, System.RuntimeMethodHandle, System.Reflection.Emit.DynamicMethod)
System.Private.CoreLib.dll:System.Delegate.CreateDelegateInternal(System.RuntimeType, System.Reflection.RuntimeMethodInfo, System.Object, System.DelegateBindingFlags)
System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*, System.Runtime.CompilerServices.ObjectHandleOnStack)
System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*)
@@ -6506,6 +6544,7 @@ System.Private.CoreLib.dll:System.Enum.GetEnumInfo`1(System.RuntimeType, System.
System.Private.CoreLib.dll:System.Enum.GetEnumValuesAndNames(System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, Interop/BOOL)
System.Private.CoreLib.dll:System.Enum.GetHashCode()
System.Private.CoreLib.dll:System.Enum.GetMultipleEnumsFlagsFormatResultLength(System.Int32, System.Int32)
+System.Private.CoreLib.dll:System.Enum.GetName`1(TEnum)
System.Private.CoreLib.dll:System.Enum.GetNameInlined`1(System.Enum/EnumInfo`1, TStorage)
System.Private.CoreLib.dll:System.Enum.GetSingleFlagsEnumNameForValue`1(TStorage, System.String[], TStorage[], out System.Int32&)
System.Private.CoreLib.dll:System.Enum.GetTypeCode()
@@ -8254,6 +8293,7 @@ System.Private.CoreLib.dll:System.Guid System.Diagnostics.Tracing.ActivityTracke
System.Private.CoreLib.dll:System.Guid System.Diagnostics.Tracing.ActivityTracker/ActivityInfo::m_guid
System.Private.CoreLib.dll:System.Guid System.Diagnostics.Tracing.EventSource::CurrentThreadActivityId()
System.Private.CoreLib.dll:System.Guid System.Guid::Empty
+System.Private.CoreLib.dll:System.Guid System.Reflection.Emit.RuntimeModuleBuilder::ModuleVersionId()
System.Private.CoreLib.dll:System.Guid System.Reflection.Module::ModuleVersionId()
System.Private.CoreLib.dll:System.Guid System.Reflection.RuntimeModule::ModuleVersionId()
System.Private.CoreLib.dll:System.Guid System.Runtime.InteropServices.ComWrappers::IID_IFindReferenceTargetsCallback
@@ -8771,6 +8811,7 @@ System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxVal
System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MinValue()
System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.One()
System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.Zero()
+System.Private.CoreLib.dll:System.Int16 System.Reflection.Emit.OpCode::Value()
System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::Token
System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1/StateMachineBox::Version()
System.Private.CoreLib.dll:System.Int16 System.Runtime.InteropServices.MarshalAsAttribute::SizeParamIndex
@@ -9376,6 +9417,46 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::Length()
System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::m_length
System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncodedArgument/CustomAttributeDataParser::_curr
System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncoding::value__
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupInstSize
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupPos
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_depth
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_pos
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.AssemblyBuilderAccess::value__
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicILGenerator::m_methodSigToken
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver::m_stackSize
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver/SecurityControlFlags::value__
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ILGenerator::ILOffset()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::Id()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::m_label
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::EvaluationStackDelta()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::m_flags
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::Size()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCodeValues::value__
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OperandType::value__
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::ILOffset()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_curDepth
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_currExcStackCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_exceptionCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_fixupCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_labelCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_length
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_maxDepth
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_targetDepth
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MDStreamVersion()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MetadataToken()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterPosition()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_genParamPos
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_lastTokenizedMethod
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_tdType
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::MetadataToken()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::TypeToken()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iOpenScopeCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_argCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_currSig
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_sizeLoc
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.StackBehaviour::value__
System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SymbolType::_rank
System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeBuilderInstantiation::GenericParameterPosition()
System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeKind::value__
@@ -9459,6 +9540,12 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureHasElementTyp
System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::GenericParameterPosition()
System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::MetadataToken()
System.Private.CoreLib.dll:System.Int32 System.Reflection.TypeAttributes::value__
+System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::ClassTokenOrFilterOffset
+System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::Flags
+System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerLength
+System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerOffset
+System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryLength
+System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryOffset
System.Private.CoreLib.dll:System.Int32 System.Resources.UltimateResourceFallbackLocation::value__
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterOffset
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_initialCacheSize
@@ -9483,6 +9570,7 @@ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericC
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_lastFlushSize
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_maxCacheSize
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.InlineArrayAttribute::k__BackingField
+System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodImplOptions::value__
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTable::MultiDimensionalArrayRank()
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTableAuxiliaryData::CachedVersionResilientHashCode
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute::k__BackingField
@@ -9863,6 +9951,7 @@ System.Private.CoreLib.dll:System.Int32[] System.Globalization.SymbolFilteringBu
System.Private.CoreLib.dll:System.Int32[] System.Globalization.TaiwanCalendar::Eras()
System.Private.CoreLib.dll:System.Int32[] System.Globalization.ThaiBuddhistCalendar::Eras()
System.Private.CoreLib.dll:System.Int32[] System.Globalization.UmAlQuraCalendar::Eras()
+System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupList
System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaLowerBound
System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaUpperBound
System.Private.CoreLib.dll:System.Int32[] System.Reflection.MetadataEnumResult::_largeResult
@@ -9942,6 +10031,7 @@ System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryAccessor::Capac
System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::_position
System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Length()
System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Position()
+System.Private.CoreLib.dll:System.Int64 System.Reflection.Emit.RuntimeILGenerator::m_depthAdjustment
System.Private.CoreLib.dll:System.Int64 System.Reflection.PrimitiveValue::Byte8
System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_cy
System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_i8
@@ -10946,6 +11036,7 @@ System.Private.CoreLib.dll:System.IRuntimeFieldInfo
System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.RuntimeFieldHandle::m_ptr
System.Private.CoreLib.dll:System.IRuntimeFieldInfo.get_Value()
System.Private.CoreLib.dll:System.IRuntimeMethodInfo
+System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.Reflection.Emit.DynamicMethod::_methodHandle
System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.RuntimeMethodHandle::m_value
System.Private.CoreLib.dll:System.IRuntimeMethodInfo.GetValue(System.IRuntimeMethodInfo)
System.Private.CoreLib.dll:System.ISpanFormattable
@@ -11192,9 +11283,12 @@ System.Private.CoreLib.dll:System.ModuleHandle
System.Private.CoreLib.dll:System.ModuleHandle System.ModuleHandle::EmptyHandle
System.Private.CoreLib.dll:System.ModuleHandle System.Reflection.Module::ModuleHandle()
System.Private.CoreLib.dll:System.ModuleHandle..ctor(System.Reflection.RuntimeModule)
+System.Private.CoreLib.dll:System.ModuleHandle.g____PInvoke|9_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Byte*, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack)
System.Private.CoreLib.dll:System.ModuleHandle.g__ThrowInvalidOperationException|13_0()
System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.ModuleHandle)
System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.Object)
+System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Reflection.RuntimeModule, System.String, System.Byte[], System.Resolver)
+System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Runtime.CompilerServices.QCallModule, System.String, System.Byte[], System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack)
System.Private.CoreLib.dll:System.ModuleHandle.GetHashCode()
System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Reflection.RuntimeModule)
System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Runtime.CompilerServices.QCallModule)
@@ -12231,8 +12325,14 @@ System.Private.CoreLib.dll:System.Object System.ReadOnlyMemory`1::_object
System.Private.CoreLib.dll:System.Object System.Reflection.Assembly::s_overriddenEntryAssembly
System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::_value
System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::Value()
+System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModuleLock
+System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicScope::Item(System.Int32)
+System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::s_assemblyBuilderLock
+System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::SyncRoot()
+System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeModuleBuilder::SyncRoot()
System.Private.CoreLib.dll:System.Object System.Reflection.ParameterInfo::DefaultValue()
System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::m_syncRoot
+System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::SyncRoot()
System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty1
System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty2
System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty3
@@ -12591,6 +12691,10 @@ System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(Syste
System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(System.String)
System.Private.CoreLib.dll:System.Reflection.Assembly
System.Private.CoreLib.dll:System.Reflection.Assembly System.AssemblyLoadEventArgs::k__BackingField
+System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeEnumBuilder::Assembly()
+System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Assembly()
+System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeModuleBuilder::Assembly()
+System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeTypeBuilder::Assembly()
System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.SymbolType::Assembly()
System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.TypeBuilderInstantiation::Assembly()
System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Module::Assembly()
@@ -12657,11 +12761,13 @@ System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_ContentType()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_CultureName()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Flags()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_FullName()
+System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_HashAlgorithm()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Name()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawFlags()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKey()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKeyToken()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Version()
+System.Private.CoreLib.dll:System.Reflection.AssemblyName.GetPublicKey()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.InitializeAssemblySpec(System.Reflection.NativeAssemblyNameParts*, System.Void*)
System.Private.CoreLib.dll:System.Reflection.AssemblyName.ParseAsAssemblySpec(System.Char*, System.Void*, System.Exception*)
System.Private.CoreLib.dll:System.Reflection.AssemblyName.set_CodeBase(System.String)
@@ -12790,6 +12896,8 @@ System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflectio
System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::HasThis
System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::Standard
System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::VarArgs
+System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::_callingConvention
+System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::CallingConvention()
System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.MethodBase::CallingConvention()
System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeConstructorInfo::CallingConvention()
System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeMethodInfo::CallingConvention()
@@ -12814,6 +12922,8 @@ System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Length()
System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Signature()
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.CustomAttributeData::Constructor()
+System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::_ctor
+System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.CustomAttributeBuilder::Ctor()
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::Constructor()
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::m_ctor
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo..ctor()
@@ -12821,6 +12931,7 @@ System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Equals(System.Objec
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.get_MemberType()
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetGenericArguments()
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetReturnType()
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Equality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo)
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Inequality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo)
@@ -13036,21 +13147,116 @@ System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToStri
System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToString(System.Boolean)
System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute
System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute..ctor(System.String)
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchAddresses()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchEndAddresses()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetEndAddress()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetExceptionTypes()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFilterAddresses()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFinallyEndAddress()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetNumberOfCatches()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetStartAddress()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.IsInner(System.Reflection.Emit.__ExceptionInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.DynamicResolver::m_exceptions
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.RuntimeILGenerator::m_exceptions
+System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData
+System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData[] System.Reflection.Emit.RuntimeILGenerator::m_fixupData
+System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo
+System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo[] System.Reflection.Emit.RuntimeILGenerator::m_labelList
System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder..ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.EnsureDynamicCodeSupported()
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_IsDynamic()
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_Location()
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1)
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.ThrowDynamicCodeNotSupported()
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::Run
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::RunAndCollect
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.RuntimeAssemblyBuilder::_access
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_MethodHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetMethodImplementationFlags()
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetParameters()
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Data()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator System.Reflection.Emit.DynamicMethod::_ilGenerator
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator..ctor(System.Reflection.Emit.DynamicMethod, System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.AddParameters(System.Reflection.Emit.SignatureHelper, System.Type[], System.Type[][], System.Type[][])
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMemberRefToken(System.Reflection.MethodInfo, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[][], System.Type[][], System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.Emit.DynamicMethod)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo, System.RuntimeType)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo, System.RuntimeType)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo, System.RuntimeType)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.RuntimeType)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.RecordTokenFixup()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo System.Reflection.Emit.DynamicMethod::_dynamicILInfo
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.DynamicResolver::m_method
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.VarArgMethod::m_dynamicMethod
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..cctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..ctor(System.String, System.Type, System.Type[], System.Reflection.Module, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.g__LazyCreateSignature|23_0()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type, System.Object)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_CallingConvention()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_InitLocals()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Invoker()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_MethodHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Module()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Name()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnParameter()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnType()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Signature()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Boolean)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetDynamicMethodsModule()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodDescriptor()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodImplementationFlags()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParameters()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParametersAsSpan()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Init(System.String, System.Reflection.MethodAttributes, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type, System.Reflection.Module, System.Boolean, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.LoadParameters()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.ToString()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver System.Reflection.Emit.DynamicMethod::_resolver
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver..ctor(System.Reflection.Emit.DynamicILGenerator)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.CalculateNumberOfExceptions(System.Reflection.Emit.__ExceptionInfo[])
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.Finalize()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetCodeInfo(out System.Int32&, out System.Int32&, out System.Int32&)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetDynamicMethod()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetEHInfo(System.Int32, System.Void*)
@@ -13060,10 +13266,940 @@ System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetRawEHInfo()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetStringLiteral(System.Int32)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveSignature(System.Int32, System.Int32)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout..ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout.Finalize()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::CanSkipCSEvaluation
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::Default
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::HasCreationContext
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::RestrictedSkipVisibilityChecks
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::SkipVisibilityChecks
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicILGenerator::m_scope
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicResolver::m_scope
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope..ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.get_Item(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetString(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Byte[])
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.DynamicMethod)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.VarArgMethod)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle, System.RuntimeTypeHandle)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle, System.RuntimeTypeHandle)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeTypeHandle)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.ResolveSignature(System.Int32, System.Int32)
System.Private.CoreLib.dll:System.Reflection.Emit.EnumBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldInfo()
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldType()
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetValue(System.Object)
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo
+System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo..ctor(System.RuntimeFieldHandle, System.RuntimeTypeHandle)
+System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo
+System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo..ctor(System.RuntimeMethodHandle, System.RuntimeTypeHandle)
System.Private.CoreLib.dll:System.Reflection.Emit.GenericTypeParameterBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator..ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.DefineLabel()
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.SByte)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.get_ILOffset()
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.MarkLabel(System.Reflection.Emit.Label)
+System.Private.CoreLib.dll:System.Reflection.Emit.Label
+System.Private.CoreLib.dll:System.Reflection.Emit.Label System.Reflection.Emit.__FixupData::m_fixupLabel
+System.Private.CoreLib.dll:System.Reflection.Emit.Label..ctor(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Object)
+System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Reflection.Emit.Label)
+System.Private.CoreLib.dll:System.Reflection.Emit.Label.get_Id()
+System.Private.CoreLib.dll:System.Reflection.Emit.Label.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_MethodHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetMethodImplementationFlags()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetParameters()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder System.Reflection.Emit.SignatureHelper::m_module
+System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder..ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetTypeMetadataToken(System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::And
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Arglist
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Box
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Break
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Call
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Calli
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Callvirt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Castclass
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ceq
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ckfinite
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Constrained
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpblk
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Dup
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfilter
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfinally
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initblk
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Isinst
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Jmp
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_5
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_6
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_7
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_M1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelema
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldflda
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldftn
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldlen
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldnull
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsflda
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldstr
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldtoken
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldvirtftn
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Localloc
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mkrefany
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Neg
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newarr
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Nop
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Not
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Or
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Pop
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix5
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix6
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix7
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefixref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Readonly
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanytype
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanyval
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ret
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rethrow
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shl
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sizeof
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stsfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Switch
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Tailcall
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Throw
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unaligned
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox_Any
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Volatile
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Xor
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode..ctor(System.Reflection.Emit.OpCodeValues, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.EndsUncondJmpBlk()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Object)
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Reflection.Emit.OpCode)
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_EvaluationStackDelta()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_OperandType()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Size()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPop()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPush()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Value()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.op_Equality(System.Reflection.Emit.OpCode, System.Reflection.Emit.OpCode)
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.ToString()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes..cctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes.TakesSingleByteArgument(System.Reflection.Emit.OpCode)
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCode::m_value
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::And
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Arglist
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Box
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Break
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Call
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Calli
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Callvirt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Castclass
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ceq
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ckfinite
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Constrained_
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpblk
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Dup
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfilter
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfinally
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initblk
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Isinst
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Jmp
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_5
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_6
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_7
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_M1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelema
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldflda
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldftn
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldlen
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldnull
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsflda
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldstr
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldtoken
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldvirtftn
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Localloc
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mkrefany
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Neg
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newarr
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Nop
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Not
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Or
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Pop
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix5
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix6
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix7
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefixref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Readonly_
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanytype
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanyval
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ret
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rethrow
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shl
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sizeof
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stsfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Switch
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Tail_
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Throw
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unaligned_
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox_Any
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Volatile_
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Xor
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OpCode::OperandType()
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineBrTarget
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineField
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI8
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineMethod
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineNone
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlinePhi
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineR
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSig
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineString
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSwitch
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineTok
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineType
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineVar
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineBrTarget
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineI
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineR
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineVar
System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::_assemblyBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::ContainingAssemblyBuilder()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..cctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..ctor(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Reflection.NativeAssemblyNameParts*, System.Configuration.Assemblies.AssemblyHashAlgorithm, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.CompilerServices.ObjectHandleOnStack)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.Loader.AssemblyLoadContext, System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_FullName()
System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_InternalAssembly()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_ManifestModule()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_SyncRoot()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetModules(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetName(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetType(System.String, System.Boolean, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.InternalDefineDynamicAssembly(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_MethodHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodImplementationFlags()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodSignature()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetParameters()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Assembly()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_BaseType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_FullName()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Module()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Namespace()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_UnderlyingSystemType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetAttributeFlagsImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructors(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetElementType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetEvent(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetField(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetFields(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetInterfaces()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMembers(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethods(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetNestedType(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetProperties(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.HasElementTypeImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsArrayImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsByRefImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPointerImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPrimitiveImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Assembly()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_BaseType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_FullName()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Module()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Namespace()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_UnderlyingSystemType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetAttributeFlagsImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructors(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetElementType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetEvent(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetField(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetFields(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetInterfaces()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMembers(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethods(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetNestedType(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetProperties(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.HasElementTypeImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsArrayImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsByRefImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPointerImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPrimitiveImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder[] System.Reflection.Emit.RuntimeTypeBuilder::m_inst
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator..ctor(System.Reflection.MethodInfo, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.AddFixup(System.Reflection.Emit.Label, System.Int32, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.BakeByteArray()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnsureCapacity(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.get_ILOffset()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetExceptions()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetLabelPos(System.Reflection.Emit.Label)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMaxStackSize()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMethodToken(System.Reflection.MethodBase, System.Type[], System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.IncreaseCapacity(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.InternalEmit(System.Reflection.Emit.OpCode)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.MarkLabel(System.Reflection.Emit.Label)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.PutInteger4(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.RecordTokenFixup()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.SortExceptions(System.Reflection.Emit.__ExceptionInfo[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.UpdateStackSize(System.Reflection.Emit.OpCode, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_declMeth
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_MethodHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodBaseReturnType(System.Reflection.MethodBase)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodImplementationFlags()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodSignature()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetParameters()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetTypeBuilder()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeAssemblyBuilder::_manifestModuleBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_module
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder..ctor(System.Reflection.Emit.RuntimeAssemblyBuilder, System.Reflection.RuntimeModule)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|25_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|16_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|23_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|13_0(System.Runtime.CompilerServices.QCallModule, System.UInt16*, System.Runtime.CompilerServices.QCallModule, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.Equals(System.Object)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_Assembly()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ContainingAssemblyBuilder()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_InternalModule()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MDStreamVersion()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MetadataToken()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ModuleVersionId()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ScopeName()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_SyncRoot()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodTokenNoLock(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldTokenNoLock(System.Reflection.FieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetGenericMethodBaseDefinition(System.Reflection.MethodBase)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Reflection.Module, System.Int32, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Runtime.CompilerServices.QCallModule, System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Int32, System.String, System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Int32, System.RuntimeTypeHandle, System.Reflection.RuntimeFieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeConstructorInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeMethodInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.RuntimeMethodHandleInternal)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefSignature(System.Reflection.MethodBase, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefToken(System.Reflection.MethodBase, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenInternal(System.Reflection.MethodBase, System.Type[], System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenNoLock(System.Reflection.MethodInfo, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetModuleHandleImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetPEKind(out System.Reflection.PortableExecutableKinds&, out System.Reflection.ImageFileMachine&)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetRuntimeModuleFromModule(System.Reflection.Module)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Runtime.CompilerServices.QCallModule, System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeMetadataToken(System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRef(System.Runtime.CompilerServices.QCallModule, System.String, System.Runtime.CompilerServices.QCallModule, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRefNested(System.Type, System.Reflection.Module)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenInternal(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenWorkerNoLock(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveMethod(System.Int32, System.Type[], System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveType(System.Int32, System.Type[], System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.UnmangleTypeName(System.String)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeEnumBuilder::m_typeBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_DeclaringType
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_genTypeDef
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder..ctor(System.Reflection.Emit.RuntimeModuleBuilder)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|8_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.Byte*, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|5_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte*, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Reflection.Emit.RuntimeModuleBuilder, System.Int32, System.Int32, System.ReadOnlySpan`1)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.ReadOnlySpan`1, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineMethodSpec(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Assembly()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_BaseType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringMethod()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_FullName()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterAttributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterPosition()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsByRefLike()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsConstructedGenericType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericParameter()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericTypeDefinition()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsSZArray()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_MetadataToken()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Module()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Namespace()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeToken()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_UnderlyingSystemType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetAttributeFlagsImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructors(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetElementType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetEvent(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetField(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetFields(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericArguments()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericTypeDefinition()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetInterfaces()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMember(System.String, System.Reflection.MemberTypes, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMembers(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethods(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetModuleBuilder()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetNestedType(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetProperties(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.HasElementTypeImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsArrayImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Reflection.TypeInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsByRefImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsCreatedCore()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPointerImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPrimitiveImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsSubclassOf(System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsTypeEqual(System.Type, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ThrowIfCreated()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ToString()
+System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree
+System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree System.Reflection.Emit.RuntimeILGenerator::m_ScopeTree
+System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree..ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.RuntimeILGenerator::m_localSignature
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.VarArgMethod::m_signature
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32, System.Type, System.Type[], System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type, System.Type[], System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Reflection.Emit.DynamicScope, System.Type[], System.Type[][], System.Type[][])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Type[], System.Type[][], System.Type[][])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddData(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddDynamicArgument(System.Reflection.Emit.DynamicScope, System.Type, System.Type[], System.Type[], System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddElementType(System.Reflection.CorElementType)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Reflection.Emit.DynamicScope)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Type[], System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelperWorker(System.Type, System.Boolean, System.Reflection.Emit.DynamicScope)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddSentinel()
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddToken(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Equals(System.Object)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetFieldSigHelper(System.Reflection.Module)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetLocalVarSigHelper(System.Reflection.Module)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Emit.DynamicScope, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Int32, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Type, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSpecSigHelper(System.Reflection.Module, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature()
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetTypeSigToken(System.Reflection.Module, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IncrementArgCounts()
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddRuntimeType(System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddTypeToken(System.Int32, System.Reflection.CorElementType)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignature(out System.Int32&)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignatureArray()
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IsSimpleType(System.Reflection.CorElementType)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.SetNumberOfSignatureElements(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ToString()
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPop()
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPush()
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop0
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1_pop1
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_pop1
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi_popi
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi8
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr4
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr8
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_pop1
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_pop1
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi8
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr4
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr8
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popref
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push0
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1_push1
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi8
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr4
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr8
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushref
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpop
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpush
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_MethodHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetMethodImplementationFlags()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetModule()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetParameters()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetToken(System.Reflection.Emit.RuntimeModuleBuilder)
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.IsDefined(System.Type, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType
System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType..ctor(System.Type, System.Reflection.Emit.TypeKind)
System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.FormatRank(System.Int32)
@@ -13114,6 +14250,16 @@ System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetBounds(System.In
System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetFormat(System.String, System.Int32, System.Int32)
System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.ToString()
System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder System.Reflection.Emit.RuntimeModuleBuilder::_globalTypeBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder..ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.GetNullableUnderlyingType()
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreated()
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreatedCore()
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType()
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeByRefType()
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeGenericType(System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakePointerType()
System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation
System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation..ctor(System.Type, System.Type[])
System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation.get_Assembly()
@@ -13204,6 +14350,9 @@ System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format
System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::AssemblyQualifiedName
System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::FullName
System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::ToString
+System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod
+System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper)
+System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper)
System.Private.CoreLib.dll:System.Reflection.EventAttributes
System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::None
System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::ReservedMask
@@ -13276,6 +14425,7 @@ System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType Sys
System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize4
System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize8
System.Private.CoreLib.dll:System.Reflection.FieldAttributes
+System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Attributes()
System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Assembly
System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::FamANDAssem
System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Family
@@ -13301,19 +14451,26 @@ System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.M
System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::Attributes()
System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::m_fieldAttributes
System.Private.CoreLib.dll:System.Reflection.FieldInfo
+System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldInfo()
+System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.InvokerEmitUtil/Methods::s_ByReferenceOfByte_Value
System.Private.CoreLib.dll:System.Reflection.FieldInfo..ctor()
System.Private.CoreLib.dll:System.Reflection.FieldInfo.Equals(System.Object)
System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldHandle()
System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldType()
System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_IsStatic()
System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_MemberType()
System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetOptionalCustomModifiers()
+System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetRequiredCustomModifiers()
System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetValue(System.Object)
System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Equality(System.Reflection.FieldInfo, System.Reflection.FieldInfo)
System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Inequality(System.Reflection.FieldInfo, System.Reflection.FieldInfo)
System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo)
System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object)
System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes
+System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterAttributes()
+System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_genParamAttributes
System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::AllowByRefLike
System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Contravariant
System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Covariant
@@ -13355,6 +14512,10 @@ System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.M
System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeConstructorInfo::InvocationFlags()
System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeMethodInfo::InvocationFlags()
System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_ObjSpanArgs(System.Reflection.MethodBase, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_RefArgs(System.Reflection.MethodBase, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.EmitCallAndReturnHandling(System.Reflection.Emit.ILGenerator, System.Reflection.MethodBase, System.Boolean, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.Unbox(System.Reflection.Emit.ILGenerator, System.Type)
System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs
System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Reflection.MethodBaseInvoker::_invokeFunc_ObjSpanArgs
System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs..ctor(System.Object, System.IntPtr)
@@ -13363,6 +14524,15 @@ System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs
System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Reflection.MethodBaseInvoker::_invokeFunc_RefArgs
System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs..ctor(System.Object, System.IntPtr)
System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs.Invoke(System.Object, System.IntPtr*)
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ByReferenceOfByte_Value()
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Object_GetRawData()
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Pointer_Box()
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Span_get_Item()
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ThrowHelper_Throw_NullReference_InvokeNullRefReturned()
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Type_GetTypeFromHandle()
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper.Throw_NullReference_InvokeNullRefReturned()
System.Private.CoreLib.dll:System.Reflection.InvokeUtils
System.Private.CoreLib.dll:System.Reflection.InvokeUtils.ConvertOrWiden(System.RuntimeType, System.Object, System.RuntimeType, System.Reflection.CorElementType)
System.Private.CoreLib.dll:System.Reflection.InvokeUtils.PrimitiveWiden(System.Byte&, System.Byte&, System.Reflection.CorElementType, System.Reflection.CorElementType)
@@ -13395,14 +14565,33 @@ System.Private.CoreLib.dll:System.Reflection.MdFieldInfo..ctor(System.Int32, Sys
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.CacheEquals(System.Object)
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.Equals(System.Object)
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldHandle()
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldType()
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_MetadataToken()
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Name()
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetOptionalCustomModifiers()
+System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRequiredCustomModifiers()
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRuntimeModule()
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Boolean)
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Object)
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::C
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::CallConvMask
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Default
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ExplicitThis
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::FastCall
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Field
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Generic
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::GenericInst
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::HasThis
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::LocalSig
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Property
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::StdCall
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ThisCall
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Unmanaged
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Vararg
System.Private.CoreLib.dll:System.Reflection.MemberFilter
System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterAttribute
System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterName
@@ -13652,7 +14841,13 @@ System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection
System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeRef
System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeSpec
System.Private.CoreLib.dll:System.Reflection.MethodAttributes
+System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Attributes()
+System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::_attributes
System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::Attributes()
+System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Attributes()
+System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeConstructorBuilder::Attributes()
+System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeMethodBuilder::Attributes()
+System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.SymbolMethod::Attributes()
System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Abstract
System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Assembly
System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::CheckAccessOnOverride
@@ -13686,6 +14881,7 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase
System.Private.CoreLib.dll:System.Reflection.MethodBase System.Diagnostics.StackFrame::_method
System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::_exceptionMethod
System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::TargetSite()
+System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.RuntimeTypeBuilder::DeclaringMethod()
System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.TypeBuilderInstantiation::DeclaringMethod()
System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.MethodBaseInvoker::_method
System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.RuntimeMethodBody::_methodBase
@@ -13739,10 +14935,13 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase/InvokerStrategy System.R
System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedArgumentsWithCopyBack
System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedByRefs
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker
+System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::_invoker
+System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::Invoker()
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::Invoker()
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::m_invoker
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::Invoker()
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::m_invoker
+System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.Emit.DynamicMethod, System.Signature)
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.MethodBase, System.RuntimeType[])
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeConstructorInfo)
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeMethodInfo)
@@ -13784,12 +14983,21 @@ System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflect
System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflection.MethodImplAttributes::Unmanaged
System.Private.CoreLib.dll:System.Reflection.MethodInfo
System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Delegate::Method()
+System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.MethodOnTypeBuilderInstantiation::_method
+System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.RuntimeILGenerator::m_methodBuilder
+System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Object_GetRawData
+System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Pointer_Box
+System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Span_get_Item
+System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_ThrowHelper_Throw_NullReference_InvokeNullRefReturned
+System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Type_GetTypeFromHandle
System.Private.CoreLib.dll:System.Reflection.MethodInfo..ctor()
+System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type, System.Object)
System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type)
System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate`1()
System.Private.CoreLib.dll:System.Reflection.MethodInfo.Equals(System.Object)
System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_GenericParameterCount()
System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_MemberType()
+System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnParameter()
System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnType()
System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericArguments()
System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericMethodDefinition()
@@ -13816,6 +15024,13 @@ System.Private.CoreLib.dll:System.Reflection.Missing..cctor()
System.Private.CoreLib.dll:System.Reflection.Missing..ctor()
System.Private.CoreLib.dll:System.Reflection.Module
System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Assembly::ManifestModule()
+System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::_module
+System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::Module()
+System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModule
+System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeAssemblyBuilder::ManifestModule()
+System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeEnumBuilder::Module()
+System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Module()
+System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeTypeBuilder::Module()
System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.SymbolType::Module()
System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.TypeBuilderInstantiation::Module()
System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.MemberInfo::Module()
@@ -13869,7 +15084,10 @@ System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflecti
System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::Attributes()
System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl
System.Private.CoreLib.dll:System.Reflection.ParameterInfo
+System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.Emit.DynamicMethod::ReturnParameter()
+System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.MethodInfo::ReturnParameter()
System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::m_returnParameter
+System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::ReturnParameter()
System.Private.CoreLib.dll:System.Reflection.ParameterInfo..ctor()
System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Attributes()
System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_DefaultValue()
@@ -13885,6 +15103,8 @@ System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Position()
System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Boolean)
System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Type, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributesData()
+System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetOptionalCustomModifiers()
+System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetRequiredCustomModifiers()
System.Private.CoreLib.dll:System.Reflection.ParameterInfo.IsDefined(System.Type, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.ParameterInfo.ToString()
System.Private.CoreLib.dll:System.Reflection.ParameterInfo[] System.Reflection.RuntimeConstructorInfo::m_parameters
@@ -13997,11 +15217,14 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.CacheEquals(System.Obje
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.Equals(System.Object)
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Attributes()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldAccessor()
+System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldHandle()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldType()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_MetadataToken()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Name()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetFieldDesc()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetOptionalCustomModifiers()
+System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRequiredCustomModifiers()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRuntimeModule()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetSignature()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetValue(System.Object)
@@ -14009,6 +15232,7 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.InitializeFieldType()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo)
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.System.IRuntimeFieldInfo.get_Value()
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly
+System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::_internalAssembly
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::InternalAssembly()
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.RuntimeModule::m_runtimeAssembly
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Runtime.InteropServices.TypeMapLazyDictionary/CallbackContext::_currAssembly
@@ -14026,6 +15250,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_FullName()
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_IsDynamic()
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_Location()
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_ManifestModule()
+System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_SyncRoot()
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase()
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase(System.Runtime.CompilerServices.QCallAssembly, System.Runtime.CompilerServices.StringHandleOnStack)
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCustomAttributes(System.Boolean)
@@ -14091,7 +15316,9 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetHashCode(
System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetMethodImplementationFlags()
System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParameters()
System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParametersAsSpan()
+System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetReturnType()
System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeModule()
+System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeType()
System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo)
System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
@@ -14164,6 +15391,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttribute
System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributes(System.Type, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributesData()
System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeModule()
+System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeType()
System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo)
System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.IsDefined(System.Type, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.ToString()
@@ -14176,6 +15404,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Reflection.RuntimeExceptionHandlingClause::_methodBody
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody..ctor()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo
+System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.Emit.VarArgMethod::m_method
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_addMethod
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_raiseMethod
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_removeMethod
@@ -14186,10 +15415,12 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|25_0()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CacheEquals(System.Object)
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ComputeAndUpdateInvocationFlags()
+System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type, System.Object)
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type)
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegateInternal(System.Type, System.Object, System.DelegateBindingFlags)
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Equals(System.Object)
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchNonReturnParameters()
+System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchReturnParameter()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ArgumentTypes()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Attributes()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_BindingFlags()
@@ -14208,6 +15439,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_MethodHandle(
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Module()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Name()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnParameter()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnType()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Signature()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetCustomAttributes(System.Boolean)
@@ -14223,6 +15455,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParameters()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParametersAsSpan()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParentDefinition()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeModule()
+System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeType()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo)
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.InvokePropertySetter(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Globalization.CultureInfo)
@@ -14231,6 +15464,8 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ThrowNoInvokeExce
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ToString()
System.Private.CoreLib.dll:System.Reflection.RuntimeModule
System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.ModuleHandle::m_ptr
+System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::_internalModule
+System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::InternalModule()
System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.RuntimeCustomAttributeData::m_scope
System.Private.CoreLib.dll:System.Reflection.RuntimeModule..ctor()
System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ConvertToTypeHandleArray(System.Type[])
@@ -14251,6 +15486,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeModule.GetUnderlyingNativeHa
System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveMethod(System.Int32, System.Type[], System.Type[])
System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveType(System.Int32, System.Type[], System.Type[])
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo
+System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.MethodInfo, System.String, System.Type, System.Int32)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.MemberInfo)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.RuntimePropertyInfo)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Signature, System.Reflection.MetadataImport, System.Int32, System.Int32, System.Reflection.ParameterAttributes, System.Reflection.MemberInfo)
@@ -14266,14 +15502,18 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetCustomAttri
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValue(System.Boolean)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributeData()
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributes()
+System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetOptionalCustomModifiers()
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature, out System.Reflection.ParameterInfo&, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawConstant(System.Reflection.CustomAttributeData)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDateTimeConstant(System.Reflection.CustomAttributeData)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDecimalConstant(System.Reflection.CustomAttributeData)
+System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRequiredCustomModifiers()
+System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetReturnParameter(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRuntimeModule()
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.IsDefined(System.Type, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.TryGetDefaultValueInternal(System.Boolean, out System.Object&)
+System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo[] System.Reflection.Emit.DynamicMethod::_parameters
System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo
System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo..ctor(System.Int32, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, out System.Boolean&)
System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo.CacheEquals(System.Object)
@@ -14487,6 +15727,7 @@ System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor
System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String, System.Exception)
System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String)
System.Private.CoreLib.dll:System.Reflection.TypeAttributes
+System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_iAttr
System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::Abstract
System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AnsiClass
System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AutoClass
@@ -14555,6 +15796,7 @@ System.Private.CoreLib.dll:System.Reflection.TypeDelegator.IsPrimitiveImpl()
System.Private.CoreLib.dll:System.Reflection.TypeInfo
System.Private.CoreLib.dll:System.Reflection.TypeInfo..ctor()
System.Private.CoreLib.dll:System.Reflection.TypeInfo.AsType()
+System.Private.CoreLib.dll:System.Reflection.TypeInfo.GetRankString(System.Int32)
System.Private.CoreLib.dll:System.Reflection.TypeInfo.IsAssignableFrom(System.Reflection.TypeInfo)
System.Private.CoreLib.dll:System.Reflection.TypeNameResolver
System.Private.CoreLib.dll:System.Reflection.TypeNameResolver.g____PInvoke|19_0(System.IntPtr, System.Int32, System.UInt32)
@@ -14600,6 +15842,7 @@ System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Int32, System
System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Resolver*, System.Int32, System.Int32, System.Byte[]*, System.Exception*)
System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&)
System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Resolver*, System.Int32, System.IntPtr*, System.IntPtr*, System.IntPtr*, System.Exception*)
+System.Private.CoreLib.dll:System.Resolver/CORINFO_EH_CLAUSE
System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException
System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor()
System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)
@@ -15093,6 +16336,20 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.GetMethodD
System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc* System.Delegate::MethodDesc()
System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk
System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk* System.Runtime.CompilerServices.MethodDescChunk::Next
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute..ctor(System.Runtime.CompilerServices.MethodImplOptions)
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplAttribute::k__BackingField
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveInlining
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveOptimization
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Async
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::ForwardRef
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::InternalCall
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoInlining
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoOptimization
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::PreserveSig
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Synchronized
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Unmanaged
System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable
System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.AreSameType(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.get_ContainsGCPointers()
@@ -15221,6 +16478,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.PreserveBaseOverrides
System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly
System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly..ctor(System.Reflection.RuntimeAssembly&)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.Emit.RuntimeModuleBuilder&)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.RuntimeModule&)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle
System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle..ctor(System.RuntimeType&)
@@ -15262,6 +16520,9 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeAsyncTaskConti
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute..ctor()
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.set_WrapNonExceptionThrows(System.Boolean)
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature..cctor()
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature.get_IsDynamicCodeSupported()
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__AllocTailCallArgBufferWorker|45_0(System.Int32)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__GetHashCodeWorker|15_0(System.Object)
@@ -15275,10 +16536,12 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.Box(Sy
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallDefaultConstructor(System.Object*, method System.Void *(System.Object), System.Exception*)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallToString(System.Object*, System.String*, System.Exception*)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CanPrimitiveWiden(System.Reflection.CorElementType, System.Reflection.CorElementType)
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CompileMethod(System.RuntimeMethodHandleInternal)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CreateSpan`1(System.RuntimeFieldHandle)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(System.IntPtr, method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*), System.Byte&)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumCompareTo`1(T, T)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumEquals`1(T, T)
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetElementSize(System.Array)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCode(System.Object)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCodeSlow(System.Runtime.CompilerServices.ObjectHandleOnStack)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetMethodTable(System.Object)
@@ -15952,6 +17215,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySp
System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.get_BufferSize()
System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetManagedValuesSource()
System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference()
+System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference(System.ReadOnlySpan`1)
System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetUnmanagedValuesDestination()
System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.ToUnmanaged()
System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1
@@ -17036,6 +18300,12 @@ System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute
System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute..ctor(System.String)
System.Private.CoreLib.dll:System.RuntimeArgumentHandle
System.Private.CoreLib.dll:System.RuntimeFieldHandle
+System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldHandle()
+System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.GenericFieldInfo::m_fieldHandle
+System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.FieldInfo::FieldHandle()
+System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.MdFieldInfo::FieldHandle()
+System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.RtFieldInfo::FieldHandle()
+System.Private.CoreLib.dll:System.RuntimeFieldHandle..ctor(System.IRuntimeFieldInfo)
System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|24_0(System.RuntimeFieldHandleInternal, System.Void**, System.UInt32*)
System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|30_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*, System.Runtime.CompilerServices.ObjectHandleOnStack)
System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|34_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*)
@@ -17081,7 +18351,13 @@ System.Private.CoreLib.dll:System.RuntimeFieldInfoStub..ctor(System.RuntimeField
System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.FromPtr(System.IntPtr)
System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.System.IRuntimeFieldInfo.get_Value()
System.Private.CoreLib.dll:System.RuntimeMethodHandle
+System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::MethodHandle()
System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.DynamicMethod::MethodHandle()
+System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.GenericMethodInfo::m_methodHandle
+System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.MethodOnTypeBuilderInstantiation::MethodHandle()
+System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeConstructorBuilder::MethodHandle()
+System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeMethodBuilder::MethodHandle()
+System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.SymbolMethod::MethodHandle()
System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.MethodBase::MethodHandle()
System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeConstructorInfo::MethodHandle()
System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeMethodInfo::MethodHandle()
@@ -17089,6 +18365,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle..ctor(System.IRuntimeMetho
System.Private.CoreLib.dll:System.RuntimeMethodHandle.g__GetStubIfNeededWorker|47_0(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType[])
System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.IRuntimeMethodInfo, System.TypeNameFormatFlags)
System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.RuntimeMethodHandleInternal, System.TypeNameFormatFlags, System.Runtime.CompilerServices.StringHandleOnStack)
+System.Private.CoreLib.dll:System.RuntimeMethodHandle.Destroy(System.RuntimeMethodHandleInternal)
System.Private.CoreLib.dll:System.RuntimeMethodHandle.EnsureNonNullMethodInfo(System.IRuntimeMethodInfo)
System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.Object)
System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.RuntimeMethodHandle)
@@ -17143,6 +18420,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(S
System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.ObjectHandleOnStack)
System.Private.CoreLib.dll:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle)
System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal
+System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.Emit.DynamicResolver/DestroyScout::m_methodHandle
System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodHandleInternal::EmptyHandle()
System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::_handle
System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::Current()
@@ -17155,6 +18433,9 @@ System.Private.CoreLib.dll:System.RuntimeMethodInfoStub
System.Private.CoreLib.dll:System.RuntimeMethodInfoStub..ctor(System.RuntimeMethodHandleInternal, System.Object)
System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.FromPtr(System.IntPtr)
System.Private.CoreLib.dll:System.RuntimeType
+System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_returnType
+System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_typeOwner
+System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.RuntimeTypeBuilder::m_bakedRuntimeType
System.Private.CoreLib.dll:System.RuntimeType System.Reflection.MdFieldInfo::m_fieldType
System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Pointer::_ptrType
System.Private.CoreLib.dll:System.RuntimeType System.Reflection.RtFieldInfo::m_fieldType
@@ -17234,6 +18515,7 @@ System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericType()
System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericTypeDefinition()
System.Private.CoreLib.dll:System.RuntimeType.get_IsNullableOfT()
System.Private.CoreLib.dll:System.RuntimeType.get_IsSZArray()
+System.Private.CoreLib.dll:System.RuntimeType.get_IsUnmanagedFunctionPointer()
System.Private.CoreLib.dll:System.RuntimeType.get_MemberType()
System.Private.CoreLib.dll:System.RuntimeType.get_MetadataToken()
System.Private.CoreLib.dll:System.RuntimeType.get_Module()
@@ -17264,6 +18546,7 @@ System.Private.CoreLib.dll:System.RuntimeType.GetField(System.String, System.Ref
System.Private.CoreLib.dll:System.RuntimeType.GetFieldCandidates(System.String, System.Reflection.BindingFlags, System.Boolean)
System.Private.CoreLib.dll:System.RuntimeType.GetFields(System.Reflection.BindingFlags)
System.Private.CoreLib.dll:System.RuntimeType.GetFieldWithSameMetadataDefinitionAs(System.RuntimeType, System.Reflection.MemberInfo)
+System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerCallingConventions()
System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerParameterTypes()
System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerReturnType()
System.Private.CoreLib.dll:System.RuntimeType.GetGenericArguments()
@@ -17332,6 +18615,7 @@ System.Private.CoreLib.dll:System.RuntimeType.TryChangeTypeSpecial(System.Object
System.Private.CoreLib.dll:System.RuntimeType.TryGetByRefElementType(System.RuntimeType, out System.RuntimeType&)
System.Private.CoreLib.dll:System.RuntimeType.ValidateGenericArguments(System.Reflection.MemberInfo, System.RuntimeType[], System.Exception)
System.Private.CoreLib.dll:System.RuntimeType[] System.Enum::s_underlyingTypes
+System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.Emit.DynamicMethod::_parameterTypes
System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.MethodBaseInvoker::_argTypes
System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeConstructorInfo::ArgumentTypes()
System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeMethodInfo::ArgumentTypes()
@@ -17488,6 +18772,9 @@ System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1
System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_interfaceCache
System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_nestedClassesCache
System.Private.CoreLib.dll:System.RuntimeTypeHandle
+System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericFieldInfo::m_context
+System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericMethodInfo::m_context
+System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.RuntimeTypeBuilder::TypeHandle()
System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.SymbolType::TypeHandle()
System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.TypeBuilderInstantiation::TypeHandle()
System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.SignatureType::TypeHandle()
@@ -17581,6 +18868,7 @@ System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsNullHandle()
System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPointer(System.RuntimeType)
System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPrimitive(System.RuntimeType)
System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsSZArray(System.RuntimeType)
+System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsUnmanagedFunctionPointer(System.RuntimeType)
System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Int32)
System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Runtime.CompilerServices.QCallTypeHandle, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack)
System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeByRef()
@@ -17734,6 +19022,8 @@ System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Drain(System.Span`1, System.Span`1)
System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Start(System.Span`1)
System.Private.CoreLib.dll:System.Signature
+System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::_signature
+System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::Signature()
System.Private.CoreLib.dll:System.Signature System.Reflection.MethodBaseInvoker::_signature
System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::m_signature
System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::Signature()
@@ -17744,6 +19034,7 @@ System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInf
System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInfo::Signature()
System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeFieldInfo, System.RuntimeType)
System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType)
+System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType[], System.RuntimeType, System.Reflection.CallingConventions)
System.Private.CoreLib.dll:System.Signature..ctor(System.Void*, System.Int32, System.RuntimeType)
System.Private.CoreLib.dll:System.Signature.AreEqual(System.Signature, System.Signature)
System.Private.CoreLib.dll:System.Signature.AreEqual(System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle)
@@ -17751,6 +19042,11 @@ System.Private.CoreLib.dll:System.Signature.get_Arguments()
System.Private.CoreLib.dll:System.Signature.get_CallingConvention()
System.Private.CoreLib.dll:System.Signature.get_FieldType()
System.Private.CoreLib.dll:System.Signature.get_ReturnType()
+System.Private.CoreLib.dll:System.Signature.GetCustomModifiers(System.Int32, System.Boolean)
+System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Int32, System.Boolean)
+System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Int32, Interop/BOOL, System.Runtime.CompilerServices.ObjectHandleOnStack)
+System.Private.CoreLib.dll:System.Signature.GetParameterOffset(System.Int32)
+System.Private.CoreLib.dll:System.Signature.GetParameterOffsetInternal(System.Void*, System.Int32, System.Int32)
System.Private.CoreLib.dll:System.Signature.Init(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal)
System.Private.CoreLib.dll:System.Signature.Init(System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal)
System.Private.CoreLib.dll:System.Single
@@ -17968,6 +19264,7 @@ System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TVa
System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TValue&, TValue, TValue, TValue, System.Int32)
System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfChar(System.Char&, System.Char, System.Int32)
System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfValueType`2(TValue&, TValue, System.Int32)
+System.Private.CoreLib.dll:System.SpanHelpers.ReplaceValueType`1(T&, T&, T, T, System.UIntPtr)
System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Byte&, System.Int32, System.Byte&, System.Int32)
System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Char&, System.Int32, System.Char&, System.Int32)
System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo`1(T&, System.Int32, T&, System.Int32)
@@ -18253,7 +19550,30 @@ System.Private.CoreLib.dll:System.String System.Reflection.AssemblyTitleAttribut
System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::k__BackingField
System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::StringValue()
System.Private.CoreLib.dll:System.String System.Reflection.DefaultMemberAttribute::k__BackingField
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.AssemblyBuilder::Location()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::_name
System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.OpCode::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeAssemblyBuilder::FullName()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeConstructorBuilder::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::FullName()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Namespace()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::FullName()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Namespace()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeMethodBuilder::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeModuleBuilder::ScopeName()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::FullName()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strFullQualName
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strName
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strNameSpace
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Namespace()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolMethod::Name()
System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::_format
System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::FullName()
System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::Name()
@@ -18462,6 +19782,7 @@ System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCa
System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCaseSlow(System.UInt32, System.UInt32, System.ReadOnlySpan`1)
System.Private.CoreLib.dll:System.String.GetPinnableReference()
System.Private.CoreLib.dll:System.String.GetRawStringData()
+System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt16()
System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt8()
System.Private.CoreLib.dll:System.String.GetTypeCode()
System.Private.CoreLib.dll:System.String.IndexOf(System.Char, System.Int32, System.Int32)
@@ -18475,6 +19796,8 @@ System.Private.CoreLib.dll:System.String.IsNullOrEmpty(System.String)
System.Private.CoreLib.dll:System.String.Join(System.String, System.Object[])
System.Private.CoreLib.dll:System.String.Join(System.String, System.ReadOnlySpan`1)
System.Private.CoreLib.dll:System.String.JoinCore(System.ReadOnlySpan`1, System.ReadOnlySpan`1)
+System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32, System.Int32)
+System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32)
System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char)
System.Private.CoreLib.dll:System.String.MakeSeparatorList(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&)
System.Private.CoreLib.dll:System.String.MakeSeparatorListAny(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&)
@@ -18483,6 +19806,7 @@ System.Private.CoreLib.dll:System.String.MakeSeparatorListVectorized(System.Read
System.Private.CoreLib.dll:System.String.op_Equality(System.String, System.String)
System.Private.CoreLib.dll:System.String.op_Implicit(System.String) => System.ReadOnlySpan`1
System.Private.CoreLib.dll:System.String.op_Inequality(System.String, System.String)
+System.Private.CoreLib.dll:System.String.Replace(System.Char, System.Char)
System.Private.CoreLib.dll:System.String.Split(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions)
System.Private.CoreLib.dll:System.String.Split(System.String, System.StringSplitOptions)
System.Private.CoreLib.dll:System.String.SplitInternal(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions)
@@ -18585,6 +19909,7 @@ System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo
System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo::s_asciiDigits
System.Private.CoreLib.dll:System.String[] System.Globalization.TimeSpanFormat/FormatLiterals::_literals
System.Private.CoreLib.dll:System.String[] System.Number/SmallNumberCache::Value
+System.Private.CoreLib.dll:System.String[] System.Reflection.Emit.OpCode::g_nameCache
System.Private.CoreLib.dll:System.String/SearchValuesStorage
System.Private.CoreLib.dll:System.String/SearchValuesStorage..cctor()
System.Private.CoreLib.dll:System.StringComparer
@@ -19166,6 +20491,7 @@ System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.String)
System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.Text.StringBuilder)
System.Private.CoreLib.dll:System.Text.StringBuilder.g__MoveNext|125_0(System.String, System.Int32&)
System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Boolean)
+System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Byte)
System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char, System.Int32)
System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char)
System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char&, System.Int32)
@@ -21534,8 +22860,33 @@ System.Private.CoreLib.dll:System.Type System.Reflection.CustomAttributeType::P
System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::k__BackingField
System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::WrapNonExceptionThrows()
+System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::k__BackingField
+System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::IsDynamicCodeSupported()
System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.TypeHandle::IsTypeDesc()
System.Private.CoreLib.dll:System.Boolean System.Runtime.DependentHandle::IsAllocated()
System.Private.CoreLib.dll:System.Boolean System.Runtime.EH/RhEHClause::_isSameTry
@@ -3789,6 +3807,7 @@ System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericType()
System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericTypeDefinition()
System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsNullableOfT()
System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsSZArray()
+System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsUnmanagedFunctionPointer()
System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::_ctorIsPublic
System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::CtorIsPublic()
System.Private.CoreLib.dll:System.Boolean System.RuntimeType/RuntimeTypeCache::IsGlobal()
@@ -3955,6 +3974,7 @@ System.Private.CoreLib.dll:System.Boolean System.Type::IsPublic()
System.Private.CoreLib.dll:System.Boolean System.Type::IsSealed()
System.Private.CoreLib.dll:System.Boolean System.Type::IsSignatureType()
System.Private.CoreLib.dll:System.Boolean System.Type::IsSZArray()
+System.Private.CoreLib.dll:System.Boolean System.Type::IsUnmanagedFunctionPointer()
System.Private.CoreLib.dll:System.Boolean System.Type::IsValueType()
System.Private.CoreLib.dll:System.Boolean System.Type::IsVariableBoundArray()
System.Private.CoreLib.dll:System.Boolean System.UInt128::System.IBinaryIntegerParseAndFormatInfo.IsSigned()
@@ -3998,6 +4018,7 @@ System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper:
System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper::rgiLastFrameFromForeignExceptionStackTrace
System.Private.CoreLib.dll:System.Boolean[] System.Reflection.ParameterModifier::_byRef
System.Private.CoreLib.dll:System.Buffer
+System.Private.CoreLib.dll:System.Buffer.BlockCopy(System.Array, System.Int32, System.Array, System.Int32, System.Int32)
System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrier(System.Byte&, System.Byte&, System.UIntPtr)
System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierBatch(System.Byte&, System.Byte&, System.UIntPtr)
System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierInternal(System.Byte&, System.Byte&, System.UIntPtr)
@@ -4058,11 +4079,16 @@ System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt16Litt
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32BigEndian(System.ReadOnlySpan`1)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32LittleEndian(System.ReadOnlySpan`1)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt64LittleEndian(System.ReadOnlySpan`1)
+System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int16)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int32)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int64)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt16)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt32)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt64)
+System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16BigEndian(System.Span`1, System.Int16)
+System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16LittleEndian(System.Span`1, System.Int16)
+System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32BigEndian(System.Span`1, System.Int32)
+System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32LittleEndian(System.Span`1, System.Int32)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32BigEndian(System.Span`1, System.UInt32)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32LittleEndian(System.Span`1, System.UInt32)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt64BigEndian(System.Span`1, System.UInt64)
@@ -4325,6 +4351,7 @@ System.Private.CoreLib.dll:System.Byte System.Half::BiasedExponent()
System.Private.CoreLib.dll:System.Byte System.Number/NumberBufferKind::value__
System.Private.CoreLib.dll:System.Byte System.Reflection.ConstArray::Item(System.Int32)
System.Private.CoreLib.dll:System.Byte System.Reflection.CorElementType::value__
+System.Private.CoreLib.dll:System.Byte System.Reflection.MdSigCallingConvention::value__
System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::hashShift
System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::victimCounter
System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.MethodDesc::ChunkIndex
@@ -4464,6 +4491,12 @@ System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::_public
System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKey()
System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKeyToken()
System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyNameParser/AssemblyNameParts::_publicKeyOrToken
+System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.CustomAttributeBuilder::Data()
+System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_code
+System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_exceptionHeader
+System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_localSignature
+System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.RuntimeILGenerator::m_ILStream
+System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.SignatureHelper::m_signature
System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::k__BackingField
System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::PublicKeyOrToken()
System.Private.CoreLib.dll:System.Byte[] System.Reflection.RuntimeMethodBody::_IL
@@ -4830,6 +4863,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Assembly::s_loadfile
System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyExternalTypeDictionary::_lazyData
System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Threading.WaitSubsystem/WaitableObject::s_namedObjects
+System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Emit.RuntimeModuleBuilder::_typeBuilderDict
System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::_dictionary
System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1
System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1..ctor()
@@ -5015,6 +5049,8 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.Dispose(
System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.get_Current()
System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.MoveNext()
System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.TypeNameBuilder::_stack
+System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.DynamicScope::m_tokens
+System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_listMethods
System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Metadata.TypeName::_genericArguments
System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyTypeLoadDictionary`1::_preCachedModules
System.Private.CoreLib.dll:System.Collections.Generic.List`1 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::m_faultExceptions
@@ -5028,6 +5064,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimers
System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimersToFire
System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.TimeZoneInfo::_equivalentZones
+System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_typeInterfaces
System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list
System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer
System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Collections.Generic.NonRandomizedStringEqualityComparer::WrappedAroundDefaultComparer
@@ -6058,6 +6095,7 @@ System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.Compi
System.Private.CoreLib.dll:System.Delegate.Combine(System.Delegate, System.Delegate)
System.Private.CoreLib.dll:System.Delegate.CombineImpl(System.Delegate)
System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, out System.Delegate/BindToMethodDetails&)
+System.Private.CoreLib.dll:System.Delegate.CreateDelegateForDynamicMethod(System.Type, System.Object, System.RuntimeMethodHandle, System.Reflection.Emit.DynamicMethod)
System.Private.CoreLib.dll:System.Delegate.CreateDelegateInternal(System.RuntimeType, System.Reflection.RuntimeMethodInfo, System.Object, System.DelegateBindingFlags)
System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*, System.Runtime.CompilerServices.ObjectHandleOnStack)
System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*)
@@ -6506,6 +6544,7 @@ System.Private.CoreLib.dll:System.Enum.GetEnumInfo`1(System.RuntimeType, System.
System.Private.CoreLib.dll:System.Enum.GetEnumValuesAndNames(System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, Interop/BOOL)
System.Private.CoreLib.dll:System.Enum.GetHashCode()
System.Private.CoreLib.dll:System.Enum.GetMultipleEnumsFlagsFormatResultLength(System.Int32, System.Int32)
+System.Private.CoreLib.dll:System.Enum.GetName`1(TEnum)
System.Private.CoreLib.dll:System.Enum.GetNameInlined`1(System.Enum/EnumInfo`1, TStorage)
System.Private.CoreLib.dll:System.Enum.GetSingleFlagsEnumNameForValue`1(TStorage, System.String[], TStorage[], out System.Int32&)
System.Private.CoreLib.dll:System.Enum.GetTypeCode()
@@ -8254,6 +8293,7 @@ System.Private.CoreLib.dll:System.Guid System.Diagnostics.Tracing.ActivityTracke
System.Private.CoreLib.dll:System.Guid System.Diagnostics.Tracing.ActivityTracker/ActivityInfo::m_guid
System.Private.CoreLib.dll:System.Guid System.Diagnostics.Tracing.EventSource::CurrentThreadActivityId()
System.Private.CoreLib.dll:System.Guid System.Guid::Empty
+System.Private.CoreLib.dll:System.Guid System.Reflection.Emit.RuntimeModuleBuilder::ModuleVersionId()
System.Private.CoreLib.dll:System.Guid System.Reflection.Module::ModuleVersionId()
System.Private.CoreLib.dll:System.Guid System.Reflection.RuntimeModule::ModuleVersionId()
System.Private.CoreLib.dll:System.Guid System.Runtime.InteropServices.ComWrappers::IID_IFindReferenceTargetsCallback
@@ -8771,6 +8811,7 @@ System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxVal
System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MinValue()
System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.One()
System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.Zero()
+System.Private.CoreLib.dll:System.Int16 System.Reflection.Emit.OpCode::Value()
System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::Token
System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1/StateMachineBox::Version()
System.Private.CoreLib.dll:System.Int16 System.Runtime.InteropServices.MarshalAsAttribute::SizeParamIndex
@@ -9376,6 +9417,46 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::Length()
System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::m_length
System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncodedArgument/CustomAttributeDataParser::_curr
System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncoding::value__
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupInstSize
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupPos
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_depth
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_pos
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.AssemblyBuilderAccess::value__
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicILGenerator::m_methodSigToken
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver::m_stackSize
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver/SecurityControlFlags::value__
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ILGenerator::ILOffset()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::Id()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::m_label
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::EvaluationStackDelta()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::m_flags
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::Size()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCodeValues::value__
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OperandType::value__
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::ILOffset()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_curDepth
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_currExcStackCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_exceptionCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_fixupCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_labelCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_length
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_maxDepth
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_targetDepth
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MDStreamVersion()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MetadataToken()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterPosition()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_genParamPos
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_lastTokenizedMethod
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_tdType
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::MetadataToken()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::TypeToken()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iOpenScopeCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_argCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_currSig
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_sizeLoc
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.StackBehaviour::value__
System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SymbolType::_rank
System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeBuilderInstantiation::GenericParameterPosition()
System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeKind::value__
@@ -9459,6 +9540,12 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureHasElementTyp
System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::GenericParameterPosition()
System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::MetadataToken()
System.Private.CoreLib.dll:System.Int32 System.Reflection.TypeAttributes::value__
+System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::ClassTokenOrFilterOffset
+System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::Flags
+System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerLength
+System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerOffset
+System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryLength
+System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryOffset
System.Private.CoreLib.dll:System.Int32 System.Resources.UltimateResourceFallbackLocation::value__
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterOffset
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_initialCacheSize
@@ -9483,6 +9570,7 @@ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericC
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_lastFlushSize
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_maxCacheSize
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.InlineArrayAttribute::k__BackingField
+System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodImplOptions::value__
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTable::MultiDimensionalArrayRank()
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTableAuxiliaryData::CachedVersionResilientHashCode
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute::k__BackingField
@@ -9863,6 +9951,7 @@ System.Private.CoreLib.dll:System.Int32[] System.Globalization.SymbolFilteringBu
System.Private.CoreLib.dll:System.Int32[] System.Globalization.TaiwanCalendar::Eras()
System.Private.CoreLib.dll:System.Int32[] System.Globalization.ThaiBuddhistCalendar::Eras()
System.Private.CoreLib.dll:System.Int32[] System.Globalization.UmAlQuraCalendar::Eras()
+System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupList
System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaLowerBound
System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaUpperBound
System.Private.CoreLib.dll:System.Int32[] System.Reflection.MetadataEnumResult::_largeResult
@@ -9942,6 +10031,7 @@ System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryAccessor::Capac
System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::_position
System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Length()
System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Position()
+System.Private.CoreLib.dll:System.Int64 System.Reflection.Emit.RuntimeILGenerator::m_depthAdjustment
System.Private.CoreLib.dll:System.Int64 System.Reflection.PrimitiveValue::Byte8
System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_cy
System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_i8
@@ -10946,6 +11036,7 @@ System.Private.CoreLib.dll:System.IRuntimeFieldInfo
System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.RuntimeFieldHandle::m_ptr
System.Private.CoreLib.dll:System.IRuntimeFieldInfo.get_Value()
System.Private.CoreLib.dll:System.IRuntimeMethodInfo
+System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.Reflection.Emit.DynamicMethod::_methodHandle
System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.RuntimeMethodHandle::m_value
System.Private.CoreLib.dll:System.IRuntimeMethodInfo.GetValue(System.IRuntimeMethodInfo)
System.Private.CoreLib.dll:System.ISpanFormattable
@@ -11192,9 +11283,12 @@ System.Private.CoreLib.dll:System.ModuleHandle
System.Private.CoreLib.dll:System.ModuleHandle System.ModuleHandle::EmptyHandle
System.Private.CoreLib.dll:System.ModuleHandle System.Reflection.Module::ModuleHandle()
System.Private.CoreLib.dll:System.ModuleHandle..ctor(System.Reflection.RuntimeModule)
+System.Private.CoreLib.dll:System.ModuleHandle.g____PInvoke|9_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Byte*, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack)
System.Private.CoreLib.dll:System.ModuleHandle.g__ThrowInvalidOperationException|13_0()
System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.ModuleHandle)
System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.Object)
+System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Reflection.RuntimeModule, System.String, System.Byte[], System.Resolver)
+System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Runtime.CompilerServices.QCallModule, System.String, System.Byte[], System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack)
System.Private.CoreLib.dll:System.ModuleHandle.GetHashCode()
System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Reflection.RuntimeModule)
System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Runtime.CompilerServices.QCallModule)
@@ -12231,8 +12325,14 @@ System.Private.CoreLib.dll:System.Object System.ReadOnlyMemory`1::_object
System.Private.CoreLib.dll:System.Object System.Reflection.Assembly::s_overriddenEntryAssembly
System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::_value
System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::Value()
+System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModuleLock
+System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicScope::Item(System.Int32)
+System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::s_assemblyBuilderLock
+System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::SyncRoot()
+System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeModuleBuilder::SyncRoot()
System.Private.CoreLib.dll:System.Object System.Reflection.ParameterInfo::DefaultValue()
System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::m_syncRoot
+System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::SyncRoot()
System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty1
System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty2
System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty3
@@ -12591,6 +12691,10 @@ System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(Syste
System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(System.String)
System.Private.CoreLib.dll:System.Reflection.Assembly
System.Private.CoreLib.dll:System.Reflection.Assembly System.AssemblyLoadEventArgs::k__BackingField
+System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeEnumBuilder::Assembly()
+System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Assembly()
+System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeModuleBuilder::Assembly()
+System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeTypeBuilder::Assembly()
System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.SymbolType::Assembly()
System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.TypeBuilderInstantiation::Assembly()
System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Module::Assembly()
@@ -12657,11 +12761,13 @@ System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_ContentType()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_CultureName()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Flags()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_FullName()
+System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_HashAlgorithm()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Name()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawFlags()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKey()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKeyToken()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Version()
+System.Private.CoreLib.dll:System.Reflection.AssemblyName.GetPublicKey()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.InitializeAssemblySpec(System.Reflection.NativeAssemblyNameParts*, System.Void*)
System.Private.CoreLib.dll:System.Reflection.AssemblyName.ParseAsAssemblySpec(System.Char*, System.Void*, System.Exception*)
System.Private.CoreLib.dll:System.Reflection.AssemblyName.set_CodeBase(System.String)
@@ -12790,6 +12896,8 @@ System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflectio
System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::HasThis
System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::Standard
System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::VarArgs
+System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::_callingConvention
+System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::CallingConvention()
System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.MethodBase::CallingConvention()
System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeConstructorInfo::CallingConvention()
System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeMethodInfo::CallingConvention()
@@ -12814,6 +12922,8 @@ System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Length()
System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Signature()
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.CustomAttributeData::Constructor()
+System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::_ctor
+System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.CustomAttributeBuilder::Ctor()
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::Constructor()
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::m_ctor
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo..ctor()
@@ -12821,6 +12931,7 @@ System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Equals(System.Objec
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.get_MemberType()
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetGenericArguments()
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetReturnType()
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Equality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo)
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Inequality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo)
@@ -13036,21 +13147,116 @@ System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToStri
System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToString(System.Boolean)
System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute
System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute..ctor(System.String)
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchAddresses()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchEndAddresses()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetEndAddress()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetExceptionTypes()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFilterAddresses()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFinallyEndAddress()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetNumberOfCatches()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetStartAddress()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.IsInner(System.Reflection.Emit.__ExceptionInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.DynamicResolver::m_exceptions
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.RuntimeILGenerator::m_exceptions
+System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData
+System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData[] System.Reflection.Emit.RuntimeILGenerator::m_fixupData
+System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo
+System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo[] System.Reflection.Emit.RuntimeILGenerator::m_labelList
System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder..ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.EnsureDynamicCodeSupported()
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_IsDynamic()
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_Location()
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1)
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.ThrowDynamicCodeNotSupported()
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::Run
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::RunAndCollect
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.RuntimeAssemblyBuilder::_access
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_MethodHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetMethodImplementationFlags()
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetParameters()
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Data()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator System.Reflection.Emit.DynamicMethod::_ilGenerator
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator..ctor(System.Reflection.Emit.DynamicMethod, System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.AddParameters(System.Reflection.Emit.SignatureHelper, System.Type[], System.Type[][], System.Type[][])
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMemberRefToken(System.Reflection.MethodInfo, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[][], System.Type[][], System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.Emit.DynamicMethod)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo, System.RuntimeType)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo, System.RuntimeType)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo, System.RuntimeType)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.RuntimeType)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.RecordTokenFixup()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo System.Reflection.Emit.DynamicMethod::_dynamicILInfo
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.DynamicResolver::m_method
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.VarArgMethod::m_dynamicMethod
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..cctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..ctor(System.String, System.Type, System.Type[], System.Reflection.Module, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.g__LazyCreateSignature|23_0()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type, System.Object)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_CallingConvention()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_InitLocals()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Invoker()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_MethodHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Module()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Name()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnParameter()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnType()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Signature()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Boolean)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetDynamicMethodsModule()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodDescriptor()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodImplementationFlags()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParameters()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParametersAsSpan()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Init(System.String, System.Reflection.MethodAttributes, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type, System.Reflection.Module, System.Boolean, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.LoadParameters()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.ToString()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver System.Reflection.Emit.DynamicMethod::_resolver
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver..ctor(System.Reflection.Emit.DynamicILGenerator)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.CalculateNumberOfExceptions(System.Reflection.Emit.__ExceptionInfo[])
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.Finalize()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetCodeInfo(out System.Int32&, out System.Int32&, out System.Int32&)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetDynamicMethod()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetEHInfo(System.Int32, System.Void*)
@@ -13060,10 +13266,940 @@ System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetRawEHInfo()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetStringLiteral(System.Int32)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveSignature(System.Int32, System.Int32)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout..ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout.Finalize()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::CanSkipCSEvaluation
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::Default
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::HasCreationContext
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::RestrictedSkipVisibilityChecks
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::SkipVisibilityChecks
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicILGenerator::m_scope
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicResolver::m_scope
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope..ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.get_Item(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetString(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Byte[])
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.DynamicMethod)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.VarArgMethod)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle, System.RuntimeTypeHandle)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle, System.RuntimeTypeHandle)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeTypeHandle)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.ResolveSignature(System.Int32, System.Int32)
System.Private.CoreLib.dll:System.Reflection.Emit.EnumBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldInfo()
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldType()
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetValue(System.Object)
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo
+System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo..ctor(System.RuntimeFieldHandle, System.RuntimeTypeHandle)
+System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo
+System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo..ctor(System.RuntimeMethodHandle, System.RuntimeTypeHandle)
System.Private.CoreLib.dll:System.Reflection.Emit.GenericTypeParameterBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator..ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.DefineLabel()
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.SByte)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.get_ILOffset()
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.MarkLabel(System.Reflection.Emit.Label)
+System.Private.CoreLib.dll:System.Reflection.Emit.Label
+System.Private.CoreLib.dll:System.Reflection.Emit.Label System.Reflection.Emit.__FixupData::m_fixupLabel
+System.Private.CoreLib.dll:System.Reflection.Emit.Label..ctor(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Object)
+System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Reflection.Emit.Label)
+System.Private.CoreLib.dll:System.Reflection.Emit.Label.get_Id()
+System.Private.CoreLib.dll:System.Reflection.Emit.Label.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_MethodHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetMethodImplementationFlags()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetParameters()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder System.Reflection.Emit.SignatureHelper::m_module
+System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder..ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetTypeMetadataToken(System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::And
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Arglist
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Box
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Break
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Call
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Calli
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Callvirt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Castclass
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ceq
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ckfinite
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Constrained
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpblk
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Dup
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfilter
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfinally
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initblk
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Isinst
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Jmp
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_5
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_6
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_7
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_M1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelema
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldflda
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldftn
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldlen
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldnull
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsflda
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldstr
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldtoken
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldvirtftn
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Localloc
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mkrefany
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Neg
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newarr
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Nop
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Not
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Or
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Pop
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix5
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix6
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix7
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefixref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Readonly
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanytype
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanyval
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ret
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rethrow
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shl
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sizeof
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stsfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Switch
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Tailcall
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Throw
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unaligned
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox_Any
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Volatile
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Xor
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode..ctor(System.Reflection.Emit.OpCodeValues, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.EndsUncondJmpBlk()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Object)
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Reflection.Emit.OpCode)
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_EvaluationStackDelta()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_OperandType()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Size()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPop()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPush()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Value()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.op_Equality(System.Reflection.Emit.OpCode, System.Reflection.Emit.OpCode)
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.ToString()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes..cctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes.TakesSingleByteArgument(System.Reflection.Emit.OpCode)
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCode::m_value
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::And
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Arglist
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Box
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Break
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Call
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Calli
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Callvirt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Castclass
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ceq
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ckfinite
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Constrained_
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpblk
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Dup
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfilter
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfinally
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initblk
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Isinst
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Jmp
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_5
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_6
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_7
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_M1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelema
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldflda
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldftn
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldlen
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldnull
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsflda
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldstr
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldtoken
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldvirtftn
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Localloc
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mkrefany
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Neg
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newarr
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Nop
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Not
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Or
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Pop
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix5
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix6
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix7
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefixref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Readonly_
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanytype
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanyval
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ret
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rethrow
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shl
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sizeof
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stsfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Switch
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Tail_
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Throw
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unaligned_
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox_Any
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Volatile_
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Xor
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OpCode::OperandType()
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineBrTarget
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineField
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI8
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineMethod
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineNone
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlinePhi
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineR
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSig
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineString
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSwitch
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineTok
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineType
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineVar
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineBrTarget
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineI
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineR
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineVar
System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::_assemblyBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::ContainingAssemblyBuilder()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..cctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..ctor(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Reflection.NativeAssemblyNameParts*, System.Configuration.Assemblies.AssemblyHashAlgorithm, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.CompilerServices.ObjectHandleOnStack)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.Loader.AssemblyLoadContext, System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_FullName()
System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_InternalAssembly()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_ManifestModule()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_SyncRoot()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetModules(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetName(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetType(System.String, System.Boolean, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.InternalDefineDynamicAssembly(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_MethodHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodImplementationFlags()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodSignature()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetParameters()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Assembly()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_BaseType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_FullName()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Module()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Namespace()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_UnderlyingSystemType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetAttributeFlagsImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructors(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetElementType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetEvent(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetField(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetFields(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetInterfaces()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMembers(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethods(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetNestedType(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetProperties(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.HasElementTypeImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsArrayImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsByRefImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPointerImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPrimitiveImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Assembly()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_BaseType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_FullName()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Module()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Namespace()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_UnderlyingSystemType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetAttributeFlagsImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructors(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetElementType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetEvent(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetField(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetFields(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetInterfaces()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMembers(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethods(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetNestedType(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetProperties(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.HasElementTypeImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsArrayImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsByRefImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPointerImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPrimitiveImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder[] System.Reflection.Emit.RuntimeTypeBuilder::m_inst
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator..ctor(System.Reflection.MethodInfo, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.AddFixup(System.Reflection.Emit.Label, System.Int32, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.BakeByteArray()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnsureCapacity(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.get_ILOffset()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetExceptions()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetLabelPos(System.Reflection.Emit.Label)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMaxStackSize()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMethodToken(System.Reflection.MethodBase, System.Type[], System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.IncreaseCapacity(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.InternalEmit(System.Reflection.Emit.OpCode)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.MarkLabel(System.Reflection.Emit.Label)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.PutInteger4(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.RecordTokenFixup()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.SortExceptions(System.Reflection.Emit.__ExceptionInfo[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.UpdateStackSize(System.Reflection.Emit.OpCode, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_declMeth
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_MethodHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodBaseReturnType(System.Reflection.MethodBase)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodImplementationFlags()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodSignature()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetParameters()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetTypeBuilder()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeAssemblyBuilder::_manifestModuleBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_module
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder..ctor(System.Reflection.Emit.RuntimeAssemblyBuilder, System.Reflection.RuntimeModule)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|25_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|16_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|23_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|13_0(System.Runtime.CompilerServices.QCallModule, System.UInt16*, System.Runtime.CompilerServices.QCallModule, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.Equals(System.Object)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_Assembly()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ContainingAssemblyBuilder()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_InternalModule()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MDStreamVersion()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MetadataToken()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ModuleVersionId()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ScopeName()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_SyncRoot()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodTokenNoLock(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldTokenNoLock(System.Reflection.FieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetGenericMethodBaseDefinition(System.Reflection.MethodBase)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Reflection.Module, System.Int32, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Runtime.CompilerServices.QCallModule, System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Int32, System.String, System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Int32, System.RuntimeTypeHandle, System.Reflection.RuntimeFieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeConstructorInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeMethodInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.RuntimeMethodHandleInternal)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefSignature(System.Reflection.MethodBase, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefToken(System.Reflection.MethodBase, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenInternal(System.Reflection.MethodBase, System.Type[], System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenNoLock(System.Reflection.MethodInfo, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetModuleHandleImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetPEKind(out System.Reflection.PortableExecutableKinds&, out System.Reflection.ImageFileMachine&)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetRuntimeModuleFromModule(System.Reflection.Module)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Runtime.CompilerServices.QCallModule, System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeMetadataToken(System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRef(System.Runtime.CompilerServices.QCallModule, System.String, System.Runtime.CompilerServices.QCallModule, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRefNested(System.Type, System.Reflection.Module)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenInternal(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenWorkerNoLock(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveMethod(System.Int32, System.Type[], System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveType(System.Int32, System.Type[], System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.UnmangleTypeName(System.String)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeEnumBuilder::m_typeBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_DeclaringType
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_genTypeDef
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder..ctor(System.Reflection.Emit.RuntimeModuleBuilder)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|8_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.Byte*, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|5_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte*, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Reflection.Emit.RuntimeModuleBuilder, System.Int32, System.Int32, System.ReadOnlySpan`1)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.ReadOnlySpan`1, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineMethodSpec(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Assembly()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_BaseType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringMethod()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_FullName()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterAttributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterPosition()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsByRefLike()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsConstructedGenericType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericParameter()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericTypeDefinition()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsSZArray()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_MetadataToken()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Module()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Namespace()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeToken()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_UnderlyingSystemType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetAttributeFlagsImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructors(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetElementType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetEvent(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetField(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetFields(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericArguments()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericTypeDefinition()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetInterfaces()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMember(System.String, System.Reflection.MemberTypes, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMembers(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethods(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetModuleBuilder()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetNestedType(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetProperties(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.HasElementTypeImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsArrayImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Reflection.TypeInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsByRefImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsCreatedCore()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPointerImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPrimitiveImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsSubclassOf(System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsTypeEqual(System.Type, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ThrowIfCreated()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ToString()
+System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree
+System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree System.Reflection.Emit.RuntimeILGenerator::m_ScopeTree
+System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree..ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.RuntimeILGenerator::m_localSignature
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.VarArgMethod::m_signature
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32, System.Type, System.Type[], System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type, System.Type[], System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Reflection.Emit.DynamicScope, System.Type[], System.Type[][], System.Type[][])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Type[], System.Type[][], System.Type[][])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddData(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddDynamicArgument(System.Reflection.Emit.DynamicScope, System.Type, System.Type[], System.Type[], System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddElementType(System.Reflection.CorElementType)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Reflection.Emit.DynamicScope)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Type[], System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelperWorker(System.Type, System.Boolean, System.Reflection.Emit.DynamicScope)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddSentinel()
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddToken(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Equals(System.Object)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetFieldSigHelper(System.Reflection.Module)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetLocalVarSigHelper(System.Reflection.Module)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Emit.DynamicScope, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Int32, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Type, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSpecSigHelper(System.Reflection.Module, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature()
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetTypeSigToken(System.Reflection.Module, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IncrementArgCounts()
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddRuntimeType(System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddTypeToken(System.Int32, System.Reflection.CorElementType)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignature(out System.Int32&)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignatureArray()
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IsSimpleType(System.Reflection.CorElementType)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.SetNumberOfSignatureElements(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ToString()
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPop()
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPush()
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop0
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1_pop1
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_pop1
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi_popi
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi8
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr4
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr8
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_pop1
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_pop1
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi8
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr4
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr8
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popref
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push0
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1_push1
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi8
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr4
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr8
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushref
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpop
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpush
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_MethodHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetMethodImplementationFlags()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetModule()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetParameters()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetToken(System.Reflection.Emit.RuntimeModuleBuilder)
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.IsDefined(System.Type, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType
System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType..ctor(System.Type, System.Reflection.Emit.TypeKind)
System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.FormatRank(System.Int32)
@@ -13114,6 +14250,16 @@ System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetBounds(System.In
System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetFormat(System.String, System.Int32, System.Int32)
System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.ToString()
System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder System.Reflection.Emit.RuntimeModuleBuilder::_globalTypeBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder..ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.GetNullableUnderlyingType()
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreated()
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreatedCore()
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType()
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeByRefType()
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeGenericType(System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakePointerType()
System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation
System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation..ctor(System.Type, System.Type[])
System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation.get_Assembly()
@@ -13204,6 +14350,9 @@ System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format
System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::AssemblyQualifiedName
System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::FullName
System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::ToString
+System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod
+System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper)
+System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper)
System.Private.CoreLib.dll:System.Reflection.EventAttributes
System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::None
System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::ReservedMask
@@ -13276,6 +14425,7 @@ System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType Sys
System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize4
System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize8
System.Private.CoreLib.dll:System.Reflection.FieldAttributes
+System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Attributes()
System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Assembly
System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::FamANDAssem
System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Family
@@ -13301,19 +14451,26 @@ System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.M
System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::Attributes()
System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::m_fieldAttributes
System.Private.CoreLib.dll:System.Reflection.FieldInfo
+System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldInfo()
+System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.InvokerEmitUtil/Methods::s_ByReferenceOfByte_Value
System.Private.CoreLib.dll:System.Reflection.FieldInfo..ctor()
System.Private.CoreLib.dll:System.Reflection.FieldInfo.Equals(System.Object)
System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldHandle()
System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldType()
System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_IsStatic()
System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_MemberType()
System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetOptionalCustomModifiers()
+System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetRequiredCustomModifiers()
System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetValue(System.Object)
System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Equality(System.Reflection.FieldInfo, System.Reflection.FieldInfo)
System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Inequality(System.Reflection.FieldInfo, System.Reflection.FieldInfo)
System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo)
System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object)
System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes
+System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterAttributes()
+System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_genParamAttributes
System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::AllowByRefLike
System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Contravariant
System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Covariant
@@ -13355,6 +14512,10 @@ System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.M
System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeConstructorInfo::InvocationFlags()
System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeMethodInfo::InvocationFlags()
System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_ObjSpanArgs(System.Reflection.MethodBase, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_RefArgs(System.Reflection.MethodBase, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.EmitCallAndReturnHandling(System.Reflection.Emit.ILGenerator, System.Reflection.MethodBase, System.Boolean, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.Unbox(System.Reflection.Emit.ILGenerator, System.Type)
System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs
System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Reflection.MethodBaseInvoker::_invokeFunc_ObjSpanArgs
System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs..ctor(System.Object, System.IntPtr)
@@ -13363,6 +14524,15 @@ System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs
System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Reflection.MethodBaseInvoker::_invokeFunc_RefArgs
System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs..ctor(System.Object, System.IntPtr)
System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs.Invoke(System.Object, System.IntPtr*)
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ByReferenceOfByte_Value()
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Object_GetRawData()
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Pointer_Box()
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Span_get_Item()
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ThrowHelper_Throw_NullReference_InvokeNullRefReturned()
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Type_GetTypeFromHandle()
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper.Throw_NullReference_InvokeNullRefReturned()
System.Private.CoreLib.dll:System.Reflection.InvokeUtils
System.Private.CoreLib.dll:System.Reflection.InvokeUtils.ConvertOrWiden(System.RuntimeType, System.Object, System.RuntimeType, System.Reflection.CorElementType)
System.Private.CoreLib.dll:System.Reflection.InvokeUtils.PrimitiveWiden(System.Byte&, System.Byte&, System.Reflection.CorElementType, System.Reflection.CorElementType)
@@ -13395,14 +14565,33 @@ System.Private.CoreLib.dll:System.Reflection.MdFieldInfo..ctor(System.Int32, Sys
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.CacheEquals(System.Object)
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.Equals(System.Object)
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldHandle()
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldType()
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_MetadataToken()
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Name()
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetOptionalCustomModifiers()
+System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRequiredCustomModifiers()
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRuntimeModule()
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Boolean)
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Object)
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::C
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::CallConvMask
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Default
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ExplicitThis
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::FastCall
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Field
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Generic
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::GenericInst
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::HasThis
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::LocalSig
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Property
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::StdCall
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ThisCall
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Unmanaged
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Vararg
System.Private.CoreLib.dll:System.Reflection.MemberFilter
System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterAttribute
System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterName
@@ -13652,7 +14841,13 @@ System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection
System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeRef
System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeSpec
System.Private.CoreLib.dll:System.Reflection.MethodAttributes
+System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Attributes()
+System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::_attributes
System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::Attributes()
+System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Attributes()
+System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeConstructorBuilder::Attributes()
+System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeMethodBuilder::Attributes()
+System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.SymbolMethod::Attributes()
System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Abstract
System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Assembly
System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::CheckAccessOnOverride
@@ -13686,6 +14881,7 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase
System.Private.CoreLib.dll:System.Reflection.MethodBase System.Diagnostics.StackFrame::_method
System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::_exceptionMethod
System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::TargetSite()
+System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.RuntimeTypeBuilder::DeclaringMethod()
System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.TypeBuilderInstantiation::DeclaringMethod()
System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.MethodBaseInvoker::_method
System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.RuntimeMethodBody::_methodBase
@@ -13739,10 +14935,13 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase/InvokerStrategy System.R
System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedArgumentsWithCopyBack
System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedByRefs
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker
+System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::_invoker
+System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::Invoker()
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::Invoker()
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::m_invoker
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::Invoker()
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::m_invoker
+System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.Emit.DynamicMethod, System.Signature)
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.MethodBase, System.RuntimeType[])
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeConstructorInfo)
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeMethodInfo)
@@ -13784,12 +14983,21 @@ System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflect
System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflection.MethodImplAttributes::Unmanaged
System.Private.CoreLib.dll:System.Reflection.MethodInfo
System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Delegate::Method()
+System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.MethodOnTypeBuilderInstantiation::_method
+System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.RuntimeILGenerator::m_methodBuilder
+System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Object_GetRawData
+System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Pointer_Box
+System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Span_get_Item
+System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_ThrowHelper_Throw_NullReference_InvokeNullRefReturned
+System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Type_GetTypeFromHandle
System.Private.CoreLib.dll:System.Reflection.MethodInfo..ctor()
+System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type, System.Object)
System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type)
System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate`1()
System.Private.CoreLib.dll:System.Reflection.MethodInfo.Equals(System.Object)
System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_GenericParameterCount()
System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_MemberType()
+System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnParameter()
System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnType()
System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericArguments()
System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericMethodDefinition()
@@ -13816,6 +15024,13 @@ System.Private.CoreLib.dll:System.Reflection.Missing..cctor()
System.Private.CoreLib.dll:System.Reflection.Missing..ctor()
System.Private.CoreLib.dll:System.Reflection.Module
System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Assembly::ManifestModule()
+System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::_module
+System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::Module()
+System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModule
+System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeAssemblyBuilder::ManifestModule()
+System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeEnumBuilder::Module()
+System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Module()
+System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeTypeBuilder::Module()
System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.SymbolType::Module()
System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.TypeBuilderInstantiation::Module()
System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.MemberInfo::Module()
@@ -13869,7 +15084,10 @@ System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflecti
System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::Attributes()
System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl
System.Private.CoreLib.dll:System.Reflection.ParameterInfo
+System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.Emit.DynamicMethod::ReturnParameter()
+System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.MethodInfo::ReturnParameter()
System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::m_returnParameter
+System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::ReturnParameter()
System.Private.CoreLib.dll:System.Reflection.ParameterInfo..ctor()
System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Attributes()
System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_DefaultValue()
@@ -13885,6 +15103,8 @@ System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Position()
System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Boolean)
System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Type, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributesData()
+System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetOptionalCustomModifiers()
+System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetRequiredCustomModifiers()
System.Private.CoreLib.dll:System.Reflection.ParameterInfo.IsDefined(System.Type, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.ParameterInfo.ToString()
System.Private.CoreLib.dll:System.Reflection.ParameterInfo[] System.Reflection.RuntimeConstructorInfo::m_parameters
@@ -13997,11 +15217,14 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.CacheEquals(System.Obje
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.Equals(System.Object)
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Attributes()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldAccessor()
+System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldHandle()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldType()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_MetadataToken()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Name()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetFieldDesc()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetOptionalCustomModifiers()
+System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRequiredCustomModifiers()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRuntimeModule()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetSignature()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetValue(System.Object)
@@ -14009,6 +15232,7 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.InitializeFieldType()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo)
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.System.IRuntimeFieldInfo.get_Value()
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly
+System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::_internalAssembly
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::InternalAssembly()
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.RuntimeModule::m_runtimeAssembly
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Runtime.InteropServices.TypeMapLazyDictionary/CallbackContext::_currAssembly
@@ -14026,6 +15250,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_FullName()
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_IsDynamic()
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_Location()
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_ManifestModule()
+System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_SyncRoot()
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase()
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase(System.Runtime.CompilerServices.QCallAssembly, System.Runtime.CompilerServices.StringHandleOnStack)
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCustomAttributes(System.Boolean)
@@ -14091,7 +15316,9 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetHashCode(
System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetMethodImplementationFlags()
System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParameters()
System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParametersAsSpan()
+System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetReturnType()
System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeModule()
+System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeType()
System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo)
System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
@@ -14164,6 +15391,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttribute
System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributes(System.Type, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributesData()
System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeModule()
+System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeType()
System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo)
System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.IsDefined(System.Type, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.ToString()
@@ -14176,6 +15404,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Reflection.RuntimeExceptionHandlingClause::_methodBody
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody..ctor()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo
+System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.Emit.VarArgMethod::m_method
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_addMethod
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_raiseMethod
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_removeMethod
@@ -14186,10 +15415,12 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|25_0()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CacheEquals(System.Object)
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ComputeAndUpdateInvocationFlags()
+System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type, System.Object)
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type)
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegateInternal(System.Type, System.Object, System.DelegateBindingFlags)
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Equals(System.Object)
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchNonReturnParameters()
+System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchReturnParameter()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ArgumentTypes()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Attributes()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_BindingFlags()
@@ -14208,6 +15439,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_MethodHandle(
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Module()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Name()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnParameter()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnType()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Signature()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetCustomAttributes(System.Boolean)
@@ -14223,6 +15455,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParameters()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParametersAsSpan()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParentDefinition()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeModule()
+System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeType()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo)
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.InvokePropertySetter(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Globalization.CultureInfo)
@@ -14231,6 +15464,8 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ThrowNoInvokeExce
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ToString()
System.Private.CoreLib.dll:System.Reflection.RuntimeModule
System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.ModuleHandle::m_ptr
+System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::_internalModule
+System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::InternalModule()
System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.RuntimeCustomAttributeData::m_scope
System.Private.CoreLib.dll:System.Reflection.RuntimeModule..ctor()
System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ConvertToTypeHandleArray(System.Type[])
@@ -14251,6 +15486,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeModule.GetUnderlyingNativeHa
System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveMethod(System.Int32, System.Type[], System.Type[])
System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveType(System.Int32, System.Type[], System.Type[])
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo
+System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.MethodInfo, System.String, System.Type, System.Int32)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.MemberInfo)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.RuntimePropertyInfo)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Signature, System.Reflection.MetadataImport, System.Int32, System.Int32, System.Reflection.ParameterAttributes, System.Reflection.MemberInfo)
@@ -14266,14 +15502,18 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetCustomAttri
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValue(System.Boolean)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributeData()
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributes()
+System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetOptionalCustomModifiers()
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature, out System.Reflection.ParameterInfo&, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawConstant(System.Reflection.CustomAttributeData)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDateTimeConstant(System.Reflection.CustomAttributeData)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDecimalConstant(System.Reflection.CustomAttributeData)
+System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRequiredCustomModifiers()
+System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetReturnParameter(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRuntimeModule()
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.IsDefined(System.Type, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.TryGetDefaultValueInternal(System.Boolean, out System.Object&)
+System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo[] System.Reflection.Emit.DynamicMethod::_parameters
System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo
System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo..ctor(System.Int32, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, out System.Boolean&)
System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo.CacheEquals(System.Object)
@@ -14487,6 +15727,7 @@ System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor
System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String, System.Exception)
System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String)
System.Private.CoreLib.dll:System.Reflection.TypeAttributes
+System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_iAttr
System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::Abstract
System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AnsiClass
System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AutoClass
@@ -14555,6 +15796,7 @@ System.Private.CoreLib.dll:System.Reflection.TypeDelegator.IsPrimitiveImpl()
System.Private.CoreLib.dll:System.Reflection.TypeInfo
System.Private.CoreLib.dll:System.Reflection.TypeInfo..ctor()
System.Private.CoreLib.dll:System.Reflection.TypeInfo.AsType()
+System.Private.CoreLib.dll:System.Reflection.TypeInfo.GetRankString(System.Int32)
System.Private.CoreLib.dll:System.Reflection.TypeInfo.IsAssignableFrom(System.Reflection.TypeInfo)
System.Private.CoreLib.dll:System.Reflection.TypeNameResolver
System.Private.CoreLib.dll:System.Reflection.TypeNameResolver.g____PInvoke|19_0(System.IntPtr, System.Int32, System.UInt32)
@@ -14600,6 +15842,7 @@ System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Int32, System
System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Resolver*, System.Int32, System.Int32, System.Byte[]*, System.Exception*)
System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&)
System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Resolver*, System.Int32, System.IntPtr*, System.IntPtr*, System.IntPtr*, System.Exception*)
+System.Private.CoreLib.dll:System.Resolver/CORINFO_EH_CLAUSE
System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException
System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor()
System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)
@@ -15093,6 +16336,20 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.GetMethodD
System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc* System.Delegate::MethodDesc()
System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk
System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk* System.Runtime.CompilerServices.MethodDescChunk::Next
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute..ctor(System.Runtime.CompilerServices.MethodImplOptions)
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplAttribute::k__BackingField
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveInlining
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveOptimization
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Async
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::ForwardRef
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::InternalCall
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoInlining
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoOptimization
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::PreserveSig
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Synchronized
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Unmanaged
System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable
System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.AreSameType(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.get_ContainsGCPointers()
@@ -15221,6 +16478,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.PreserveBaseOverrides
System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly
System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly..ctor(System.Reflection.RuntimeAssembly&)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.Emit.RuntimeModuleBuilder&)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.RuntimeModule&)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle
System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle..ctor(System.RuntimeType&)
@@ -15262,6 +16520,9 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeAsyncTaskConti
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute..ctor()
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.set_WrapNonExceptionThrows(System.Boolean)
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature..cctor()
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature.get_IsDynamicCodeSupported()
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__AllocTailCallArgBufferWorker|45_0(System.Int32)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__GetHashCodeWorker|15_0(System.Object)
@@ -15275,10 +16536,12 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.Box(Sy
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallDefaultConstructor(System.Object*, method System.Void *(System.Object), System.Exception*)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallToString(System.Object*, System.String*, System.Exception*)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CanPrimitiveWiden(System.Reflection.CorElementType, System.Reflection.CorElementType)
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CompileMethod(System.RuntimeMethodHandleInternal)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CreateSpan`1(System.RuntimeFieldHandle)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(System.IntPtr, method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*), System.Byte&)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumCompareTo`1(T, T)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumEquals`1(T, T)
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetElementSize(System.Array)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCode(System.Object)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCodeSlow(System.Runtime.CompilerServices.ObjectHandleOnStack)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetMethodTable(System.Object)
@@ -15952,6 +17215,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySp
System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.get_BufferSize()
System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetManagedValuesSource()
System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference()
+System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference(System.ReadOnlySpan`1)
System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetUnmanagedValuesDestination()
System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.ToUnmanaged()
System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1
@@ -17036,6 +18300,12 @@ System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute
System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute..ctor(System.String)
System.Private.CoreLib.dll:System.RuntimeArgumentHandle
System.Private.CoreLib.dll:System.RuntimeFieldHandle
+System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldHandle()
+System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.GenericFieldInfo::m_fieldHandle
+System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.FieldInfo::FieldHandle()
+System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.MdFieldInfo::FieldHandle()
+System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.RtFieldInfo::FieldHandle()
+System.Private.CoreLib.dll:System.RuntimeFieldHandle..ctor(System.IRuntimeFieldInfo)
System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|24_0(System.RuntimeFieldHandleInternal, System.Void**, System.UInt32*)
System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|30_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*, System.Runtime.CompilerServices.ObjectHandleOnStack)
System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|34_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*)
@@ -17081,7 +18351,13 @@ System.Private.CoreLib.dll:System.RuntimeFieldInfoStub..ctor(System.RuntimeField
System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.FromPtr(System.IntPtr)
System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.System.IRuntimeFieldInfo.get_Value()
System.Private.CoreLib.dll:System.RuntimeMethodHandle
+System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::MethodHandle()
System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.DynamicMethod::MethodHandle()
+System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.GenericMethodInfo::m_methodHandle
+System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.MethodOnTypeBuilderInstantiation::MethodHandle()
+System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeConstructorBuilder::MethodHandle()
+System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeMethodBuilder::MethodHandle()
+System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.SymbolMethod::MethodHandle()
System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.MethodBase::MethodHandle()
System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeConstructorInfo::MethodHandle()
System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeMethodInfo::MethodHandle()
@@ -17089,6 +18365,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle..ctor(System.IRuntimeMetho
System.Private.CoreLib.dll:System.RuntimeMethodHandle.g__GetStubIfNeededWorker|47_0(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType[])
System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.IRuntimeMethodInfo, System.TypeNameFormatFlags)
System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.RuntimeMethodHandleInternal, System.TypeNameFormatFlags, System.Runtime.CompilerServices.StringHandleOnStack)
+System.Private.CoreLib.dll:System.RuntimeMethodHandle.Destroy(System.RuntimeMethodHandleInternal)
System.Private.CoreLib.dll:System.RuntimeMethodHandle.EnsureNonNullMethodInfo(System.IRuntimeMethodInfo)
System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.Object)
System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.RuntimeMethodHandle)
@@ -17143,6 +18420,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(S
System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.ObjectHandleOnStack)
System.Private.CoreLib.dll:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle)
System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal
+System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.Emit.DynamicResolver/DestroyScout::m_methodHandle
System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodHandleInternal::EmptyHandle()
System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::_handle
System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::Current()
@@ -17155,6 +18433,9 @@ System.Private.CoreLib.dll:System.RuntimeMethodInfoStub
System.Private.CoreLib.dll:System.RuntimeMethodInfoStub..ctor(System.RuntimeMethodHandleInternal, System.Object)
System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.FromPtr(System.IntPtr)
System.Private.CoreLib.dll:System.RuntimeType
+System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_returnType
+System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_typeOwner
+System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.RuntimeTypeBuilder::m_bakedRuntimeType
System.Private.CoreLib.dll:System.RuntimeType System.Reflection.MdFieldInfo::m_fieldType
System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Pointer::_ptrType
System.Private.CoreLib.dll:System.RuntimeType System.Reflection.RtFieldInfo::m_fieldType
@@ -17234,6 +18515,7 @@ System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericType()
System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericTypeDefinition()
System.Private.CoreLib.dll:System.RuntimeType.get_IsNullableOfT()
System.Private.CoreLib.dll:System.RuntimeType.get_IsSZArray()
+System.Private.CoreLib.dll:System.RuntimeType.get_IsUnmanagedFunctionPointer()
System.Private.CoreLib.dll:System.RuntimeType.get_MemberType()
System.Private.CoreLib.dll:System.RuntimeType.get_MetadataToken()
System.Private.CoreLib.dll:System.RuntimeType.get_Module()
@@ -17264,6 +18546,7 @@ System.Private.CoreLib.dll:System.RuntimeType.GetField(System.String, System.Ref
System.Private.CoreLib.dll:System.RuntimeType.GetFieldCandidates(System.String, System.Reflection.BindingFlags, System.Boolean)
System.Private.CoreLib.dll:System.RuntimeType.GetFields(System.Reflection.BindingFlags)
System.Private.CoreLib.dll:System.RuntimeType.GetFieldWithSameMetadataDefinitionAs(System.RuntimeType, System.Reflection.MemberInfo)
+System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerCallingConventions()
System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerParameterTypes()
System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerReturnType()
System.Private.CoreLib.dll:System.RuntimeType.GetGenericArguments()
@@ -17332,6 +18615,7 @@ System.Private.CoreLib.dll:System.RuntimeType.TryChangeTypeSpecial(System.Object
System.Private.CoreLib.dll:System.RuntimeType.TryGetByRefElementType(System.RuntimeType, out System.RuntimeType&)
System.Private.CoreLib.dll:System.RuntimeType.ValidateGenericArguments(System.Reflection.MemberInfo, System.RuntimeType[], System.Exception)
System.Private.CoreLib.dll:System.RuntimeType[] System.Enum::s_underlyingTypes
+System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.Emit.DynamicMethod::_parameterTypes
System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.MethodBaseInvoker::_argTypes
System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeConstructorInfo::ArgumentTypes()
System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeMethodInfo::ArgumentTypes()
@@ -17488,6 +18772,9 @@ System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1
System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_interfaceCache
System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_nestedClassesCache
System.Private.CoreLib.dll:System.RuntimeTypeHandle
+System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericFieldInfo::m_context
+System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericMethodInfo::m_context
+System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.RuntimeTypeBuilder::TypeHandle()
System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.SymbolType::TypeHandle()
System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.TypeBuilderInstantiation::TypeHandle()
System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.SignatureType::TypeHandle()
@@ -17581,6 +18868,7 @@ System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsNullHandle()
System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPointer(System.RuntimeType)
System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPrimitive(System.RuntimeType)
System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsSZArray(System.RuntimeType)
+System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsUnmanagedFunctionPointer(System.RuntimeType)
System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Int32)
System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Runtime.CompilerServices.QCallTypeHandle, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack)
System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeByRef()
@@ -17734,6 +19022,8 @@ System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Drain(System.Span`1, System.Span`1)
System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Start(System.Span`1)
System.Private.CoreLib.dll:System.Signature
+System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::_signature
+System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::Signature()
System.Private.CoreLib.dll:System.Signature System.Reflection.MethodBaseInvoker::_signature
System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::m_signature
System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::Signature()
@@ -17744,6 +19034,7 @@ System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInf
System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInfo::Signature()
System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeFieldInfo, System.RuntimeType)
System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType)
+System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType[], System.RuntimeType, System.Reflection.CallingConventions)
System.Private.CoreLib.dll:System.Signature..ctor(System.Void*, System.Int32, System.RuntimeType)
System.Private.CoreLib.dll:System.Signature.AreEqual(System.Signature, System.Signature)
System.Private.CoreLib.dll:System.Signature.AreEqual(System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle)
@@ -17751,6 +19042,11 @@ System.Private.CoreLib.dll:System.Signature.get_Arguments()
System.Private.CoreLib.dll:System.Signature.get_CallingConvention()
System.Private.CoreLib.dll:System.Signature.get_FieldType()
System.Private.CoreLib.dll:System.Signature.get_ReturnType()
+System.Private.CoreLib.dll:System.Signature.GetCustomModifiers(System.Int32, System.Boolean)
+System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Int32, System.Boolean)
+System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Int32, Interop/BOOL, System.Runtime.CompilerServices.ObjectHandleOnStack)
+System.Private.CoreLib.dll:System.Signature.GetParameterOffset(System.Int32)
+System.Private.CoreLib.dll:System.Signature.GetParameterOffsetInternal(System.Void*, System.Int32, System.Int32)
System.Private.CoreLib.dll:System.Signature.Init(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal)
System.Private.CoreLib.dll:System.Signature.Init(System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal)
System.Private.CoreLib.dll:System.Single
@@ -17968,6 +19264,7 @@ System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TVa
System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TValue&, TValue, TValue, TValue, System.Int32)
System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfChar(System.Char&, System.Char, System.Int32)
System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfValueType`2(TValue&, TValue, System.Int32)
+System.Private.CoreLib.dll:System.SpanHelpers.ReplaceValueType`1(T&, T&, T, T, System.UIntPtr)
System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Byte&, System.Int32, System.Byte&, System.Int32)
System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Char&, System.Int32, System.Char&, System.Int32)
System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo`1(T&, System.Int32, T&, System.Int32)
@@ -18253,7 +19550,30 @@ System.Private.CoreLib.dll:System.String System.Reflection.AssemblyTitleAttribut
System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::k__BackingField
System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::StringValue()
System.Private.CoreLib.dll:System.String System.Reflection.DefaultMemberAttribute::k__BackingField
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.AssemblyBuilder::Location()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::_name
System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.OpCode::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeAssemblyBuilder::FullName()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeConstructorBuilder::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::FullName()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Namespace()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::FullName()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Namespace()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeMethodBuilder::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeModuleBuilder::ScopeName()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::FullName()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strFullQualName
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strName
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strNameSpace
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Namespace()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolMethod::Name()
System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::_format
System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::FullName()
System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::Name()
@@ -18462,6 +19782,7 @@ System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCa
System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCaseSlow(System.UInt32, System.UInt32, System.ReadOnlySpan`1)
System.Private.CoreLib.dll:System.String.GetPinnableReference()
System.Private.CoreLib.dll:System.String.GetRawStringData()
+System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt16()
System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt8()
System.Private.CoreLib.dll:System.String.GetTypeCode()
System.Private.CoreLib.dll:System.String.IndexOf(System.Char, System.Int32, System.Int32)
@@ -18475,6 +19796,8 @@ System.Private.CoreLib.dll:System.String.IsNullOrEmpty(System.String)
System.Private.CoreLib.dll:System.String.Join(System.String, System.Object[])
System.Private.CoreLib.dll:System.String.Join(System.String, System.ReadOnlySpan`1)
System.Private.CoreLib.dll:System.String.JoinCore(System.ReadOnlySpan`1, System.ReadOnlySpan`1)
+System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32, System.Int32)
+System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32)
System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char)
System.Private.CoreLib.dll:System.String.MakeSeparatorList(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&)
System.Private.CoreLib.dll:System.String.MakeSeparatorListAny(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&)
@@ -18483,6 +19806,7 @@ System.Private.CoreLib.dll:System.String.MakeSeparatorListVectorized(System.Read
System.Private.CoreLib.dll:System.String.op_Equality(System.String, System.String)
System.Private.CoreLib.dll:System.String.op_Implicit(System.String) => System.ReadOnlySpan`1
System.Private.CoreLib.dll:System.String.op_Inequality(System.String, System.String)
+System.Private.CoreLib.dll:System.String.Replace(System.Char, System.Char)
System.Private.CoreLib.dll:System.String.Split(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions)
System.Private.CoreLib.dll:System.String.Split(System.String, System.StringSplitOptions)
System.Private.CoreLib.dll:System.String.SplitInternal(System.ReadOnlySpan`1, System.Int32, System.StringSplitOptions)
@@ -18585,6 +19909,7 @@ System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo
System.Private.CoreLib.dll:System.String[] System.Globalization.NumberFormatInfo::s_asciiDigits
System.Private.CoreLib.dll:System.String[] System.Globalization.TimeSpanFormat/FormatLiterals::_literals
System.Private.CoreLib.dll:System.String[] System.Number/SmallNumberCache::Value
+System.Private.CoreLib.dll:System.String[] System.Reflection.Emit.OpCode::g_nameCache
System.Private.CoreLib.dll:System.String/SearchValuesStorage
System.Private.CoreLib.dll:System.String/SearchValuesStorage..cctor()
System.Private.CoreLib.dll:System.StringComparer
@@ -19166,6 +20491,7 @@ System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.String)
System.Private.CoreLib.dll:System.Text.StringBuilder..ctor(System.Text.StringBuilder)
System.Private.CoreLib.dll:System.Text.StringBuilder.g__MoveNext|125_0(System.String, System.Int32&)
System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Boolean)
+System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Byte)
System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char, System.Int32)
System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char)
System.Private.CoreLib.dll:System.Text.StringBuilder.Append(System.Char&, System.Int32)
@@ -21534,8 +22860,33 @@ System.Private.CoreLib.dll:System.Type System.Reflection.CustomAttributeType::P
System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::k__BackingField
System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::WrapNonExceptionThrows()
+System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::k__BackingField
+System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.RuntimeFeature::IsDynamicCodeSupported()
System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.TypeHandle::IsTypeDesc()
System.Private.CoreLib.dll:System.Boolean System.Runtime.DependentHandle::IsAllocated()
System.Private.CoreLib.dll:System.Boolean System.Runtime.EH/RhEHClause::_isSameTry
@@ -3706,6 +3724,7 @@ System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericType()
System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsGenericTypeDefinition()
System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsNullableOfT()
System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsSZArray()
+System.Private.CoreLib.dll:System.Boolean System.RuntimeType::IsUnmanagedFunctionPointer()
System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::_ctorIsPublic
System.Private.CoreLib.dll:System.Boolean System.RuntimeType/ActivatorCache::CtorIsPublic()
System.Private.CoreLib.dll:System.Boolean System.RuntimeType/RuntimeTypeCache::IsGlobal()
@@ -3872,6 +3891,7 @@ System.Private.CoreLib.dll:System.Boolean System.Type::IsPublic()
System.Private.CoreLib.dll:System.Boolean System.Type::IsSealed()
System.Private.CoreLib.dll:System.Boolean System.Type::IsSignatureType()
System.Private.CoreLib.dll:System.Boolean System.Type::IsSZArray()
+System.Private.CoreLib.dll:System.Boolean System.Type::IsUnmanagedFunctionPointer()
System.Private.CoreLib.dll:System.Boolean System.Type::IsValueType()
System.Private.CoreLib.dll:System.Boolean System.Type::IsVariableBoundArray()
System.Private.CoreLib.dll:System.Boolean System.UInt128::System.IBinaryIntegerParseAndFormatInfo.IsSigned()
@@ -3915,6 +3935,7 @@ System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper:
System.Private.CoreLib.dll:System.Boolean[] System.Diagnostics.StackFrameHelper::rgiLastFrameFromForeignExceptionStackTrace
System.Private.CoreLib.dll:System.Boolean[] System.Reflection.ParameterModifier::_byRef
System.Private.CoreLib.dll:System.Buffer
+System.Private.CoreLib.dll:System.Buffer.BlockCopy(System.Array, System.Int32, System.Array, System.Int32, System.Int32)
System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrier(System.Byte&, System.Byte&, System.UIntPtr)
System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierBatch(System.Byte&, System.Byte&, System.UIntPtr)
System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrierInternal(System.Byte&, System.Byte&, System.UIntPtr)
@@ -3975,11 +3996,16 @@ System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt16Litt
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32BigEndian(System.ReadOnlySpan`1)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt32LittleEndian(System.ReadOnlySpan`1)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadUInt64LittleEndian(System.ReadOnlySpan`1)
+System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int16)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int32)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.Int64)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt16)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt32)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReverseEndianness(System.UInt64)
+System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16BigEndian(System.Span`1, System.Int16)
+System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt16LittleEndian(System.Span`1, System.Int16)
+System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32BigEndian(System.Span`1, System.Int32)
+System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteInt32LittleEndian(System.Span`1, System.Int32)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32BigEndian(System.Span`1, System.UInt32)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt32LittleEndian(System.Span`1, System.UInt32)
System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt64BigEndian(System.Span`1, System.UInt64)
@@ -4236,6 +4262,7 @@ System.Private.CoreLib.dll:System.Byte System.Half::BiasedExponent()
System.Private.CoreLib.dll:System.Byte System.Number/NumberBufferKind::value__
System.Private.CoreLib.dll:System.Byte System.Reflection.ConstArray::Item(System.Int32)
System.Private.CoreLib.dll:System.Byte System.Reflection.CorElementType::value__
+System.Private.CoreLib.dll:System.Byte System.Reflection.MdSigCallingConvention::value__
System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::hashShift
System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.EntryInfo::victimCounter
System.Private.CoreLib.dll:System.Byte System.Runtime.CompilerServices.MethodDesc::ChunkIndex
@@ -4375,6 +4402,12 @@ System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::_public
System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKey()
System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyName::RawPublicKeyToken()
System.Private.CoreLib.dll:System.Byte[] System.Reflection.AssemblyNameParser/AssemblyNameParts::_publicKeyOrToken
+System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.CustomAttributeBuilder::Data()
+System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_code
+System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_exceptionHeader
+System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.DynamicResolver::m_localSignature
+System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.RuntimeILGenerator::m_ILStream
+System.Private.CoreLib.dll:System.Byte[] System.Reflection.Emit.SignatureHelper::m_signature
System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::k__BackingField
System.Private.CoreLib.dll:System.Byte[] System.Reflection.Metadata.AssemblyNameInfo::PublicKeyOrToken()
System.Private.CoreLib.dll:System.Byte[] System.Reflection.RuntimeMethodBody::_IL
@@ -4741,6 +4774,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Assembly::s_loadfile
System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyExternalTypeDictionary::_lazyData
System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Threading.WaitSubsystem/WaitableObject::s_namedObjects
+System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Reflection.Emit.RuntimeModuleBuilder::_typeBuilderDict
System.Private.CoreLib.dll:System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::_dictionary
System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1
System.Private.CoreLib.dll:System.Collections.Generic.EnumComparer`1..ctor()
@@ -4926,6 +4960,8 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.Dispose(
System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.get_Current()
System.Private.CoreLib.dll:System.Collections.Generic.List`1/Enumerator.MoveNext()
System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.TypeNameBuilder::_stack
+System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.DynamicScope::m_tokens
+System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_listMethods
System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Metadata.TypeName::_genericArguments
System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Runtime.InteropServices.TypeMapLazyDictionary/LazyTypeLoadDictionary`1::_preCachedModules
System.Private.CoreLib.dll:System.Collections.Generic.List`1 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.TaskExceptionHolder::m_faultExceptions
@@ -4939,6 +4975,7 @@ System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimers
System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Threading.TimerQueue::s_scheduledTimersToFire
System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.TimeZoneInfo::_equivalentZones
+System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Reflection.Emit.RuntimeTypeBuilder::m_typeInterfaces
System.Private.CoreLib.dll:System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::_list
System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer
System.Private.CoreLib.dll:System.Collections.Generic.NonRandomizedStringEqualityComparer System.Collections.Generic.NonRandomizedStringEqualityComparer::WrappedAroundDefaultComparer
@@ -5969,6 +6006,7 @@ System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.Compi
System.Private.CoreLib.dll:System.Delegate.Combine(System.Delegate, System.Delegate)
System.Private.CoreLib.dll:System.Delegate.CombineImpl(System.Delegate)
System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, out System.Delegate/BindToMethodDetails&)
+System.Private.CoreLib.dll:System.Delegate.CreateDelegateForDynamicMethod(System.Type, System.Object, System.RuntimeMethodHandle, System.Reflection.Emit.DynamicMethod)
System.Private.CoreLib.dll:System.Delegate.CreateDelegateInternal(System.RuntimeType, System.Reflection.RuntimeMethodInfo, System.Object, System.DelegateBindingFlags)
System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*, System.Runtime.CompilerServices.ObjectHandleOnStack)
System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*)
@@ -6417,6 +6455,7 @@ System.Private.CoreLib.dll:System.Enum.GetEnumInfo`1(System.RuntimeType, System.
System.Private.CoreLib.dll:System.Enum.GetEnumValuesAndNames(System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, Interop/BOOL)
System.Private.CoreLib.dll:System.Enum.GetHashCode()
System.Private.CoreLib.dll:System.Enum.GetMultipleEnumsFlagsFormatResultLength(System.Int32, System.Int32)
+System.Private.CoreLib.dll:System.Enum.GetName`1(TEnum)
System.Private.CoreLib.dll:System.Enum.GetNameInlined`1(System.Enum/EnumInfo`1, TStorage)
System.Private.CoreLib.dll:System.Enum.GetSingleFlagsEnumNameForValue`1(TStorage, System.String[], TStorage[], out System.Int32&)
System.Private.CoreLib.dll:System.Enum.GetTypeCode()
@@ -8643,6 +8682,7 @@ System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxVal
System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MinValue()
System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.One()
System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.Zero()
+System.Private.CoreLib.dll:System.Int16 System.Reflection.Emit.OpCode::Value()
System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::Token
System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.PoolingAsyncValueTaskMethodBuilder`1/StateMachineBox::Version()
System.Private.CoreLib.dll:System.Int16 System.Runtime.InteropServices.MarshalAsAttribute::SizeParamIndex
@@ -9247,6 +9287,46 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::Length()
System.Private.CoreLib.dll:System.Int32 System.Reflection.ConstArray::m_length
System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncodedArgument/CustomAttributeDataParser::_curr
System.Private.CoreLib.dll:System.Int32 System.Reflection.CustomAttributeEncoding::value__
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupInstSize
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__FixupData::m_fixupPos
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_depth
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.__LabelInfo::m_pos
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.AssemblyBuilderAccess::value__
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicILGenerator::m_methodSigToken
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver::m_stackSize
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.DynamicResolver/SecurityControlFlags::value__
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ILGenerator::ILOffset()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::Id()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.Label::m_label
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::EvaluationStackDelta()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::m_flags
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCode::Size()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OpCodeValues::value__
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.OperandType::value__
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::ILOffset()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_curDepth
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_currExcStackCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_exceptionCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_fixupCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_labelCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_length
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_maxDepth
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeILGenerator::m_targetDepth
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MDStreamVersion()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeModuleBuilder::MetadataToken()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterPosition()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_genParamPos
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_lastTokenizedMethod
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::m_tdType
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::MetadataToken()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.RuntimeTypeBuilder::TypeToken()
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.ScopeTree::m_iOpenScopeCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_argCount
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_currSig
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SignatureHelper::m_sizeLoc
+System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.StackBehaviour::value__
System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.SymbolType::_rank
System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeBuilderInstantiation::GenericParameterPosition()
System.Private.CoreLib.dll:System.Int32 System.Reflection.Emit.TypeKind::value__
@@ -9330,6 +9410,12 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureHasElementTyp
System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::GenericParameterPosition()
System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::MetadataToken()
System.Private.CoreLib.dll:System.Int32 System.Reflection.TypeAttributes::value__
+System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::ClassTokenOrFilterOffset
+System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::Flags
+System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerLength
+System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::HandlerOffset
+System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryLength
+System.Private.CoreLib.dll:System.Int32 System.Resolver/CORINFO_EH_CLAUSE::TryOffset
System.Private.CoreLib.dll:System.Int32 System.Resources.UltimateResourceFallbackLocation::value__
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterOffset
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_initialCacheSize
@@ -9354,6 +9440,7 @@ System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericC
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_lastFlushSize
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.GenericCache`2::_maxCacheSize
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.InlineArrayAttribute::k__BackingField
+System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodImplOptions::value__
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTable::MultiDimensionalArrayRank()
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.MethodTableAuxiliaryData::CachedVersionResilientHashCode
System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute::k__BackingField
@@ -9734,6 +9821,7 @@ System.Private.CoreLib.dll:System.Int32[] System.Globalization.SymbolFilteringBu
System.Private.CoreLib.dll:System.Int32[] System.Globalization.TaiwanCalendar::Eras()
System.Private.CoreLib.dll:System.Int32[] System.Globalization.ThaiBuddhistCalendar::Eras()
System.Private.CoreLib.dll:System.Int32[] System.Globalization.UmAlQuraCalendar::Eras()
+System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.RuntimeILGenerator::m_RelocFixupList
System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaLowerBound
System.Private.CoreLib.dll:System.Int32[] System.Reflection.Emit.SymbolType::_iaUpperBound
System.Private.CoreLib.dll:System.Int32[] System.Reflection.MetadataEnumResult::_largeResult
@@ -9813,6 +9901,7 @@ System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryAccessor::Capac
System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::_position
System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Length()
System.Private.CoreLib.dll:System.Int64 System.IO.UnmanagedMemoryStream::Position()
+System.Private.CoreLib.dll:System.Int64 System.Reflection.Emit.RuntimeILGenerator::m_depthAdjustment
System.Private.CoreLib.dll:System.Int64 System.Reflection.PrimitiveValue::Byte8
System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_cy
System.Private.CoreLib.dll:System.Int64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_i8
@@ -10817,6 +10906,7 @@ System.Private.CoreLib.dll:System.IRuntimeFieldInfo
System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.RuntimeFieldHandle::m_ptr
System.Private.CoreLib.dll:System.IRuntimeFieldInfo.get_Value()
System.Private.CoreLib.dll:System.IRuntimeMethodInfo
+System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.Reflection.Emit.DynamicMethod::_methodHandle
System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.RuntimeMethodHandle::m_value
System.Private.CoreLib.dll:System.IRuntimeMethodInfo.GetValue(System.IRuntimeMethodInfo)
System.Private.CoreLib.dll:System.ISpanFormattable
@@ -11058,9 +11148,12 @@ System.Private.CoreLib.dll:System.ModuleHandle
System.Private.CoreLib.dll:System.ModuleHandle System.ModuleHandle::EmptyHandle
System.Private.CoreLib.dll:System.ModuleHandle System.Reflection.Module::ModuleHandle()
System.Private.CoreLib.dll:System.ModuleHandle..ctor(System.Reflection.RuntimeModule)
+System.Private.CoreLib.dll:System.ModuleHandle.g____PInvoke|9_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Byte*, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack)
System.Private.CoreLib.dll:System.ModuleHandle.g__ThrowInvalidOperationException|13_0()
System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.ModuleHandle)
System.Private.CoreLib.dll:System.ModuleHandle.Equals(System.Object)
+System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Reflection.RuntimeModule, System.String, System.Byte[], System.Resolver)
+System.Private.CoreLib.dll:System.ModuleHandle.GetDynamicMethod(System.Runtime.CompilerServices.QCallModule, System.String, System.Byte[], System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack)
System.Private.CoreLib.dll:System.ModuleHandle.GetHashCode()
System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Reflection.RuntimeModule)
System.Private.CoreLib.dll:System.ModuleHandle.GetMDStreamVersion(System.Runtime.CompilerServices.QCallModule)
@@ -12096,8 +12189,14 @@ System.Private.CoreLib.dll:System.Object System.ReadOnlyMemory`1::_object
System.Private.CoreLib.dll:System.Object System.Reflection.Assembly::s_overriddenEntryAssembly
System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::_value
System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::Value()
+System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModuleLock
+System.Private.CoreLib.dll:System.Object System.Reflection.Emit.DynamicScope::Item(System.Int32)
+System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::s_assemblyBuilderLock
+System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeAssemblyBuilder::SyncRoot()
+System.Private.CoreLib.dll:System.Object System.Reflection.Emit.RuntimeModuleBuilder::SyncRoot()
System.Private.CoreLib.dll:System.Object System.Reflection.ParameterInfo::DefaultValue()
System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::m_syncRoot
+System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeAssembly::SyncRoot()
System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty1
System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty2
System.Private.CoreLib.dll:System.Object System.Reflection.RuntimeConstructorInfo::_empty3
@@ -12456,6 +12555,10 @@ System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(Syste
System.Private.CoreLib.dll:System.Reflection.AmbiguousMatchException..ctor(System.String)
System.Private.CoreLib.dll:System.Reflection.Assembly
System.Private.CoreLib.dll:System.Reflection.Assembly System.AssemblyLoadEventArgs::k__BackingField
+System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeEnumBuilder::Assembly()
+System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Assembly()
+System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeModuleBuilder::Assembly()
+System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.RuntimeTypeBuilder::Assembly()
System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.SymbolType::Assembly()
System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Emit.TypeBuilderInstantiation::Assembly()
System.Private.CoreLib.dll:System.Reflection.Assembly System.Reflection.Module::Assembly()
@@ -12522,11 +12625,13 @@ System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_ContentType()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_CultureName()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Flags()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_FullName()
+System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_HashAlgorithm()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Name()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawFlags()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKey()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_RawPublicKeyToken()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.get_Version()
+System.Private.CoreLib.dll:System.Reflection.AssemblyName.GetPublicKey()
System.Private.CoreLib.dll:System.Reflection.AssemblyName.InitializeAssemblySpec(System.Reflection.NativeAssemblyNameParts*, System.Void*)
System.Private.CoreLib.dll:System.Reflection.AssemblyName.ParseAsAssemblySpec(System.Char*, System.Void*, System.Exception*)
System.Private.CoreLib.dll:System.Reflection.AssemblyName.set_CodeBase(System.String)
@@ -12655,6 +12760,8 @@ System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflectio
System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::HasThis
System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::Standard
System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.CallingConventions::VarArgs
+System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::_callingConvention
+System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::CallingConvention()
System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.MethodBase::CallingConvention()
System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeConstructorInfo::CallingConvention()
System.Private.CoreLib.dll:System.Reflection.CallingConventions System.Reflection.RuntimeMethodInfo::CallingConvention()
@@ -12679,6 +12786,8 @@ System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Length()
System.Private.CoreLib.dll:System.Reflection.ConstArray.get_Signature()
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.CustomAttributeData::Constructor()
+System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::_ctor
+System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.Emit.CustomAttributeBuilder::Ctor()
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::Constructor()
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo System.Reflection.RuntimeCustomAttributeData::m_ctor
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo..ctor()
@@ -12686,6 +12795,7 @@ System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Equals(System.Objec
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.get_MemberType()
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetGenericArguments()
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.GetReturnType()
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Equality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo)
System.Private.CoreLib.dll:System.Reflection.ConstructorInfo.op_Inequality(System.Reflection.ConstructorInfo, System.Reflection.ConstructorInfo)
@@ -12901,21 +13011,116 @@ System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToStri
System.Private.CoreLib.dll:System.Reflection.CustomAttributeTypedArgument.ToString(System.Boolean)
System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute
System.Private.CoreLib.dll:System.Reflection.DefaultMemberAttribute..ctor(System.String)
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchAddresses()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetCatchEndAddresses()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetEndAddress()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetExceptionTypes()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFilterAddresses()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetFinallyEndAddress()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetNumberOfCatches()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.GetStartAddress()
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo.IsInner(System.Reflection.Emit.__ExceptionInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.DynamicResolver::m_exceptions
+System.Private.CoreLib.dll:System.Reflection.Emit.__ExceptionInfo[] System.Reflection.Emit.RuntimeILGenerator::m_exceptions
+System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData
+System.Private.CoreLib.dll:System.Reflection.Emit.__FixupData[] System.Reflection.Emit.RuntimeILGenerator::m_fixupData
+System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo
+System.Private.CoreLib.dll:System.Reflection.Emit.__LabelInfo[] System.Reflection.Emit.RuntimeILGenerator::m_labelList
System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder..ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.EnsureDynamicCodeSupported()
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_IsDynamic()
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.get_Location()
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder)
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1)
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilder.ThrowDynamicCodeNotSupported()
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::Run
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.AssemblyBuilderAccess::RunAndCollect
+System.Private.CoreLib.dll:System.Reflection.Emit.AssemblyBuilderAccess System.Reflection.Emit.RuntimeAssemblyBuilder::_access
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_MethodHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetMethodImplementationFlags()
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.GetParameters()
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.CustomAttributeBuilder.get_Data()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator System.Reflection.Emit.DynamicMethod::_ilGenerator
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator..ctor(System.Reflection.Emit.DynamicMethod, System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.AddParameters(System.Reflection.Emit.SignatureHelper, System.Type[], System.Type[][], System.Type[][])
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMemberRefToken(System.Reflection.MethodInfo, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[][], System.Type[][], System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.Emit.DynamicMethod)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo, System.RuntimeType)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeConstructorInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo, System.RuntimeType)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeFieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo, System.RuntimeType)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.Reflection.RuntimeMethodInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenFor(System.RuntimeType)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.GetTokenForVarArgMethod(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILGenerator.RecordTokenFixup()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo System.Reflection.Emit.DynamicMethod::_dynamicILInfo
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicILInfo.GetCallableMethod(System.Reflection.RuntimeModule, System.Reflection.Emit.DynamicMethod)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.DynamicResolver::m_method
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod System.Reflection.Emit.VarArgMethod::m_dynamicMethod
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..cctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod..ctor(System.String, System.Type, System.Type[], System.Reflection.Module, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.g__LazyCreateSignature|23_0()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type, System.Object)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.CreateDelegate(System.Type)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_CallingConvention()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_InitLocals()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Invoker()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_MethodHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Module()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Name()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnParameter()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_ReturnType()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.get_Signature()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Boolean)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetDynamicMethodsModule()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetILGenerator(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodDescriptor()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetMethodImplementationFlags()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParameters()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.GetParametersAsSpan()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Init(System.String, System.Reflection.MethodAttributes, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type, System.Reflection.Module, System.Boolean, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.LoadParameters()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicMethod.ToString()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver System.Reflection.Emit.DynamicMethod::_resolver
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver..ctor(System.Reflection.Emit.DynamicILGenerator)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.CalculateNumberOfExceptions(System.Reflection.Emit.__ExceptionInfo[])
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.Finalize()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetCodeInfo(out System.Int32&, out System.Int32&, out System.Int32&)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetDynamicMethod()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetEHInfo(System.Int32, System.Void*)
@@ -12925,10 +13130,939 @@ System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetRawEHInfo()
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.GetStringLiteral(System.Int32)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveSignature(System.Int32, System.Int32)
System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout..ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/DestroyScout.Finalize()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::CanSkipCSEvaluation
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::Default
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::HasCreationContext
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::RestrictedSkipVisibilityChecks
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicResolver/SecurityControlFlags System.Reflection.Emit.DynamicResolver/SecurityControlFlags::SkipVisibilityChecks
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicILGenerator::m_scope
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope System.Reflection.Emit.DynamicResolver::m_scope
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope..ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.get_Item(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetString(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Byte[])
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.DynamicMethod)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.Reflection.Emit.VarArgMethod)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle, System.RuntimeTypeHandle)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeFieldHandle)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle, System.RuntimeTypeHandle)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeMethodHandle)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.GetTokenFor(System.RuntimeTypeHandle)
+System.Private.CoreLib.dll:System.Reflection.Emit.DynamicScope.ResolveSignature(System.Int32, System.Int32)
System.Private.CoreLib.dll:System.Reflection.Emit.EnumBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldInfo()
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_FieldType()
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.GetValue(System.Object)
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.FieldOnTypeBuilderInstantiation.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo
+System.Private.CoreLib.dll:System.Reflection.Emit.GenericFieldInfo..ctor(System.RuntimeFieldHandle, System.RuntimeTypeHandle)
+System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo
+System.Private.CoreLib.dll:System.Reflection.Emit.GenericMethodInfo..ctor(System.RuntimeMethodHandle, System.RuntimeTypeHandle)
System.Private.CoreLib.dll:System.Reflection.Emit.GenericTypeParameterBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator..ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.DefineLabel()
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.SByte)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.Emit(System.Reflection.Emit.OpCode)
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.get_ILOffset()
+System.Private.CoreLib.dll:System.Reflection.Emit.ILGenerator.MarkLabel(System.Reflection.Emit.Label)
+System.Private.CoreLib.dll:System.Reflection.Emit.Label
+System.Private.CoreLib.dll:System.Reflection.Emit.Label System.Reflection.Emit.__FixupData::m_fixupLabel
+System.Private.CoreLib.dll:System.Reflection.Emit.Label..ctor(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Object)
+System.Private.CoreLib.dll:System.Reflection.Emit.Label.Equals(System.Reflection.Emit.Label)
+System.Private.CoreLib.dll:System.Reflection.Emit.Label.get_Id()
+System.Private.CoreLib.dll:System.Reflection.Emit.Label.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_MethodHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetMethodImplementationFlags()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.GetParameters()
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.MethodOnTypeBuilderInstantiation.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder System.Reflection.Emit.SignatureHelper::m_module
+System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder..ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.ModuleBuilder.GetTypeMetadataToken(System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::And
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Arglist
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Box
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Break
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Call
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Calli
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Callvirt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Castclass
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ceq
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ckfinite
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Constrained
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpblk
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Dup
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfilter
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfinally
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initblk
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Isinst
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Jmp
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_5
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_6
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_7
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_M1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelema
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldflda
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldftn
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldlen
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldnull
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsflda
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldstr
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldtoken
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldvirtftn
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Localloc
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mkrefany
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Neg
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newarr
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Nop
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Not
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Or
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Pop
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix5
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix6
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix7
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefixref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Readonly
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanytype
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanyval
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ret
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rethrow
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shl
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sizeof
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stsfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Switch
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Tailcall
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Throw
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unaligned
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox_Any
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Volatile
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Xor
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode..ctor(System.Reflection.Emit.OpCodeValues, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.EndsUncondJmpBlk()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Object)
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.Equals(System.Reflection.Emit.OpCode)
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_EvaluationStackDelta()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_OperandType()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Size()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPop()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_StackBehaviourPush()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.get_Value()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.op_Equality(System.Reflection.Emit.OpCode, System.Reflection.Emit.OpCode)
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCode.ToString()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes..cctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodes.TakesSingleByteArgument(System.Reflection.Emit.OpCode)
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCode::m_value
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Add_Ovf_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::And
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Arglist
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Beq_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bge_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bgt_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ble_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Blt_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Bne_Un_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Box
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Br_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Break
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brfalse_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Brtrue_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Call
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Calli
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Callvirt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Castclass
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ceq
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cgt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ckfinite
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Clt_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Constrained_
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I1_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I2_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I4_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_I8_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U1_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U2_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U4_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_Ovf_U8_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Conv_U8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpblk
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Cpobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Div_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Dup
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfilter
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Endfinally
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initblk
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Initobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Isinst
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Jmp
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarg_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldarga_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_5
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_6
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_7
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_M1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I4_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldc_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelem_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldelema
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldflda
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldftn
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldind_U4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldlen
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloc_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldloca_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldnull
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldsflda
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldstr
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldtoken
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ldvirtftn
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Leave_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Localloc
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mkrefany
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Mul_Ovf_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Neg
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newarr
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Newobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Nop
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Not
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Or
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Pop
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix5
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix6
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefix7
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Prefixref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Readonly_
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanytype
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Refanyval
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rem_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Ret
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Rethrow
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shl
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Shr_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sizeof
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Starg_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stelem_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_I8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R4
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_R8
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stind_Ref
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_0
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_1
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_2
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_3
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stloc_S
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stobj
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Stsfld
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Sub_Ovf_Un
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Switch
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Tail_
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Throw
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unaligned_
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Unbox_Any
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Volatile_
+System.Private.CoreLib.dll:System.Reflection.Emit.OpCodeValues System.Reflection.Emit.OpCodeValues::Xor
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OpCode::OperandType()
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineBrTarget
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineField
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineI8
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineMethod
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineNone
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlinePhi
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineR
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSig
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineString
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineSwitch
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineTok
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineType
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::InlineVar
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineBrTarget
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineI
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineR
+System.Private.CoreLib.dll:System.Reflection.Emit.OperandType System.Reflection.Emit.OperandType::ShortInlineVar
System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::_assemblyBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder System.Reflection.Emit.RuntimeModuleBuilder::ContainingAssemblyBuilder()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..cctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder..ctor(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Reflection.NativeAssemblyNameParts*, System.Configuration.Assemblies.AssemblyHashAlgorithm, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.CompilerServices.ObjectHandleOnStack)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.CreateDynamicAssembly(System.Runtime.Loader.AssemblyLoadContext, System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_FullName()
System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_InternalAssembly()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_ManifestModule()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.get_SyncRoot()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetModules(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetName(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.GetType(System.String, System.Boolean, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.InternalDefineDynamicAssembly(System.Reflection.AssemblyName, System.Reflection.Emit.AssemblyBuilderAccess, System.Runtime.Loader.AssemblyLoadContext, System.Collections.Generic.IEnumerable`1)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeAssemblyBuilder.SetCustomAttributeCore(System.Reflection.ConstructorInfo, System.ReadOnlySpan`1)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_MethodHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodImplementationFlags()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetMethodSignature()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.GetParameters()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeConstructorBuilder.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Assembly()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_BaseType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_FullName()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Module()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_Namespace()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.get_UnderlyingSystemType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetAttributeFlagsImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetConstructors(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetElementType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetEvent(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetField(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetFields(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetInterfaces()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMembers(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetMethods(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetNestedType(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetProperties(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.HasElementTypeImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsArrayImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsByRefImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPointerImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeEnumBuilder.IsPrimitiveImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Assembly()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_BaseType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_FullName()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Module()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_Namespace()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.get_UnderlyingSystemType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetAttributeFlagsImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetConstructors(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetElementType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetEvent(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetField(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetFields(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetInterfaces()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMembers(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetMethods(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetNestedType(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetProperties(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.HasElementTypeImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsArrayImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsByRefImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPointerImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder.IsPrimitiveImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeGenericTypeParameterBuilder[] System.Reflection.Emit.RuntimeTypeBuilder::m_inst
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator..ctor(System.Reflection.MethodInfo, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.AddFixup(System.Reflection.Emit.Label, System.Int32, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.BakeByteArray()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.DefineLabel(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Byte)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int16)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.ConstructorInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.Emit.Label)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.FieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.Emit(System.Reflection.Emit.OpCode)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EmitCall(System.Reflection.Emit.OpCode, System.Reflection.MethodInfo, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnlargeArray`1(T[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.EnsureCapacity(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.get_ILOffset()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetExceptions()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetLabelPos(System.Reflection.Emit.Label)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMaxStackSize()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.GetMethodToken(System.Reflection.MethodBase, System.Type[], System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.IncreaseCapacity(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.InternalEmit(System.Reflection.Emit.OpCode)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.MarkLabel(System.Reflection.Emit.Label)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.PutInteger4(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.RecordTokenFixup()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.SortExceptions(System.Reflection.Emit.__ExceptionInfo[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeILGenerator.UpdateStackSize(System.Reflection.Emit.OpCode, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_declMeth
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_MethodHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodBaseReturnType(System.Reflection.MethodBase)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodImplementationFlags()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetMethodSignature()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetParameters()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.GetTypeBuilder()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeMethodBuilder.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeAssemblyBuilder::_manifestModuleBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_module
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder..ctor(System.Reflection.Emit.RuntimeAssemblyBuilder, System.Reflection.RuntimeModule)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|25_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|16_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.UInt16*, System.Byte*, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|23_0(System.Runtime.CompilerServices.QCallModule, System.Byte*, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.g____PInvoke|13_0(System.Runtime.CompilerServices.QCallModule, System.UInt16*, System.Runtime.CompilerServices.QCallModule, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.Equals(System.Object)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_Assembly()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ContainingAssemblyBuilder()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_InternalModule()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MDStreamVersion()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_MetadataToken()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_ScopeName()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.get_SyncRoot()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodToken(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetArrayMethodTokenNoLock(System.Type, System.String, System.Reflection.CallingConventions, System.Type, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldMetadataToken(System.Reflection.FieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetFieldTokenNoLock(System.Reflection.FieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetGenericMethodBaseDefinition(System.Reflection.MethodBase)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Reflection.Module, System.Int32, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRef(System.Runtime.CompilerServices.QCallModule, System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Int32, System.String, System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefFromSignature(System.Runtime.CompilerServices.QCallModule, System.Int32, System.String, System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Int32, System.RuntimeTypeHandle, System.Reflection.RuntimeFieldInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfFieldInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeConstructorInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Int32, System.Reflection.RuntimeMethodInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefOfMethodInfo(System.Runtime.CompilerServices.QCallModule, System.Int32, System.RuntimeMethodHandleInternal)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefSignature(System.Reflection.MethodBase, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMemberRefToken(System.Reflection.MethodBase, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.ConstructorInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodMetadataToken(System.Reflection.MethodInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenInternal(System.Reflection.MethodBase, System.Type[], System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetMethodTokenNoLock(System.Reflection.MethodInfo, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetModuleHandleImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetPEKind(out System.Reflection.PortableExecutableKinds&, out System.Reflection.ImageFileMachine&)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetRuntimeModuleFromModule(System.Reflection.Module)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTokenFromTypeSpec(System.Runtime.CompilerServices.QCallModule, System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeMetadataToken(System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRef(System.Runtime.CompilerServices.QCallModule, System.String, System.Runtime.CompilerServices.QCallModule, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeRefNested(System.Type, System.Reflection.Module)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenInternal(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.GetTypeTokenWorkerNoLock(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveMethod(System.Int32, System.Type[], System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.ResolveType(System.Int32, System.Type[], System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeModuleBuilder.UnmangleTypeName(System.String)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeEnumBuilder::m_typeBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_DeclaringType
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder System.Reflection.Emit.RuntimeTypeBuilder::m_genTypeDef
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder..ctor(System.Reflection.Emit.RuntimeModuleBuilder)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|8_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.Byte*, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.g____PInvoke|5_0(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte*, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Reflection.Emit.RuntimeModuleBuilder, System.Int32, System.Int32, System.ReadOnlySpan`1)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineCustomAttribute(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Int32, System.ReadOnlySpan`1, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.DefineMethodSpec(System.Runtime.CompilerServices.QCallModule, System.Int32, System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Assembly()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_BaseType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringMethod()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_FullName()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterAttributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_GenericParameterPosition()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsByRefLike()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsConstructedGenericType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericParameter()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsGenericTypeDefinition()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_IsSZArray()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_MetadataToken()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Module()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_Namespace()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_TypeToken()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.get_UnderlyingSystemType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetAttributeFlagsImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructorImpl(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetConstructors(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetElementType()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetEvent(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetField(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetFields(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericArguments()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetGenericTypeDefinition()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetInterfaces()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMember(System.String, System.Reflection.MemberTypes, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMembers(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethodImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetMethods(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetModuleBuilder()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetNestedType(System.String, System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetProperties(System.Reflection.BindingFlags)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.GetPropertyImpl(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Type, System.Type[], System.Reflection.ParameterModifier[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.HasElementTypeImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.InvokeMember(System.String, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Object[], System.Reflection.ParameterModifier[], System.Globalization.CultureInfo, System.String[])
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsArrayImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Reflection.TypeInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsAssignableFrom(System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsByRefImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsCreatedCore()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsDefined(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPointerImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsPrimitiveImpl()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsSubclassOf(System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.IsTypeEqual(System.Type, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ThrowIfCreated()
+System.Private.CoreLib.dll:System.Reflection.Emit.RuntimeTypeBuilder.ToString()
+System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree
+System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree System.Reflection.Emit.RuntimeILGenerator::m_ScopeTree
+System.Private.CoreLib.dll:System.Reflection.Emit.ScopeTree..ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.RuntimeILGenerator::m_localSignature
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper System.Reflection.Emit.VarArgMethod::m_signature
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32, System.Type, System.Type[], System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Reflection.MdSigCallingConvention)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper..ctor(System.Reflection.Module, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type, System.Type[], System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArgument(System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Reflection.Emit.DynamicScope, System.Type[], System.Type[][], System.Type[][])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddArguments(System.Type[], System.Type[][], System.Type[][])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddData(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddDynamicArgument(System.Reflection.Emit.DynamicScope, System.Type, System.Type[], System.Type[], System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddElementType(System.Reflection.CorElementType)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Reflection.Emit.DynamicScope)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelper(System.Type, System.Type[], System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddOneArgTypeHelperWorker(System.Type, System.Boolean, System.Reflection.Emit.DynamicScope)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddSentinel()
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.AddToken(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Equals(System.Object)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[], System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ExpandArray(System.Byte[])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetFieldSigHelper(System.Reflection.Module)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetLocalVarSigHelper(System.Reflection.Module)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.CallingConventions, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Emit.DynamicScope, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Int32, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type, System.Type[], System.Type[], System.Type[], System.Type[][], System.Type[][])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Reflection.CallingConventions, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSigHelper(System.Reflection.Module, System.Type, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetMethodSpecSigHelper(System.Reflection.Module, System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature()
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetSignature(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.GetTypeSigToken(System.Reflection.Module, System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IncrementArgCounts()
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention, System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module, System.Reflection.MdSigCallingConvention)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.Init(System.Reflection.Module)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddRuntimeType(System.Type)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalAddTypeToken(System.Int32, System.Reflection.CorElementType)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignature(out System.Int32&)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.InternalGetSignatureArray()
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.IsSimpleType(System.Reflection.CorElementType)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.SetNumberOfSignatureElements(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.SignatureHelper.ToString()
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPop()
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.OpCode::StackBehaviourPush()
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop0
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pop1_pop1
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_pop1
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi_popi
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popi8
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr4
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popi_popr8
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_pop1
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_pop1
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popi8
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr4
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popr8
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Popref_popi_popref
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push0
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Push1_push1
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushi8
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr4
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushr8
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Pushref
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpop
+System.Private.CoreLib.dll:System.Reflection.Emit.StackBehaviour System.Reflection.Emit.StackBehaviour::Varpush
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_DeclaringType()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_MethodHandle()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_Name()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetCustomAttributes(System.Type, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetMethodImplementationFlags()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetModule()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetParameters()
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.GetToken(System.Reflection.Emit.RuntimeModuleBuilder)
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.Emit.SymbolMethod.IsDefined(System.Type, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType
System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType..ctor(System.Type, System.Reflection.Emit.TypeKind)
System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.FormatRank(System.Int32)
@@ -12979,6 +14113,16 @@ System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetBounds(System.In
System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.SetFormat(System.String, System.Int32, System.Int32)
System.Private.CoreLib.dll:System.Reflection.Emit.SymbolType.ToString()
System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder System.Reflection.Emit.RuntimeModuleBuilder::_globalTypeBuilder
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder..ctor()
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.GetNullableUnderlyingType()
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreated()
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.IsCreatedCore()
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType()
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeArrayType(System.Int32)
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeByRefType()
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakeGenericType(System.Type[])
+System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilder.MakePointerType()
System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation
System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation..ctor(System.Type, System.Type[])
System.Private.CoreLib.dll:System.Reflection.Emit.TypeBuilderInstantiation.get_Assembly()
@@ -13069,6 +14213,9 @@ System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format
System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::AssemblyQualifiedName
System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::FullName
System.Private.CoreLib.dll:System.Reflection.Emit.TypeNameBuilder/Format System.Reflection.Emit.TypeNameBuilder/Format::ToString
+System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod
+System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.Emit.DynamicMethod, System.Reflection.Emit.SignatureHelper)
+System.Private.CoreLib.dll:System.Reflection.Emit.VarArgMethod..ctor(System.Reflection.RuntimeMethodInfo, System.Reflection.Emit.SignatureHelper)
System.Private.CoreLib.dll:System.Reflection.EventAttributes
System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::None
System.Private.CoreLib.dll:System.Reflection.EventAttributes System.Reflection.EventAttributes::ReservedMask
@@ -13141,6 +14288,7 @@ System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType Sys
System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize4
System.Private.CoreLib.dll:System.Reflection.FieldAccessor/FieldAccessorType System.Reflection.FieldAccessor/FieldAccessorType::StaticValueTypeSize8
System.Private.CoreLib.dll:System.Reflection.FieldAttributes
+System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Attributes()
System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Assembly
System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::FamANDAssem
System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.FieldAttributes::Family
@@ -13166,19 +14314,26 @@ System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.M
System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::Attributes()
System.Private.CoreLib.dll:System.Reflection.FieldAttributes System.Reflection.RtFieldInfo::m_fieldAttributes
System.Private.CoreLib.dll:System.Reflection.FieldInfo
+System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldInfo()
+System.Private.CoreLib.dll:System.Reflection.FieldInfo System.Reflection.InvokerEmitUtil/Methods::s_ByReferenceOfByte_Value
System.Private.CoreLib.dll:System.Reflection.FieldInfo..ctor()
System.Private.CoreLib.dll:System.Reflection.FieldInfo.Equals(System.Object)
System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldHandle()
System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_FieldType()
System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_IsStatic()
System.Private.CoreLib.dll:System.Reflection.FieldInfo.get_MemberType()
System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetOptionalCustomModifiers()
+System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetRequiredCustomModifiers()
System.Private.CoreLib.dll:System.Reflection.FieldInfo.GetValue(System.Object)
System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Equality(System.Reflection.FieldInfo, System.Reflection.FieldInfo)
System.Private.CoreLib.dll:System.Reflection.FieldInfo.op_Inequality(System.Reflection.FieldInfo, System.Reflection.FieldInfo)
System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo)
System.Private.CoreLib.dll:System.Reflection.FieldInfo.SetValue(System.Object, System.Object)
System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes
+System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::GenericParameterAttributes()
+System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_genParamAttributes
System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::AllowByRefLike
System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Contravariant
System.Private.CoreLib.dll:System.Reflection.GenericParameterAttributes System.Reflection.GenericParameterAttributes::Covariant
@@ -13220,6 +14375,10 @@ System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.M
System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeConstructorInfo::InvocationFlags()
System.Private.CoreLib.dll:System.Reflection.InvocationFlags System.Reflection.RuntimeMethodInfo::InvocationFlags()
System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_ObjSpanArgs(System.Reflection.MethodBase, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.CreateInvokeDelegate_RefArgs(System.Reflection.MethodBase, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.EmitCallAndReturnHandling(System.Reflection.Emit.ILGenerator, System.Reflection.MethodBase, System.Boolean, System.Boolean)
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil.Unbox(System.Reflection.Emit.ILGenerator, System.Type)
System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs
System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs System.Reflection.MethodBaseInvoker::_invokeFunc_ObjSpanArgs
System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_ObjSpanArgs..ctor(System.Object, System.IntPtr)
@@ -13228,6 +14387,15 @@ System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs
System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs System.Reflection.MethodBaseInvoker::_invokeFunc_RefArgs
System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs..ctor(System.Object, System.IntPtr)
System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/InvokeFunc_RefArgs.Invoke(System.Object, System.IntPtr*)
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ByReferenceOfByte_Value()
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Object_GetRawData()
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Pointer_Box()
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Span_get_Item()
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.ThrowHelper_Throw_NullReference_InvokeNullRefReturned()
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/Methods.Type_GetTypeFromHandle()
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper
+System.Private.CoreLib.dll:System.Reflection.InvokerEmitUtil/ThrowHelper.Throw_NullReference_InvokeNullRefReturned()
System.Private.CoreLib.dll:System.Reflection.InvokeUtils
System.Private.CoreLib.dll:System.Reflection.InvokeUtils.ConvertOrWiden(System.RuntimeType, System.Object, System.RuntimeType, System.Reflection.CorElementType)
System.Private.CoreLib.dll:System.Reflection.InvokeUtils.PrimitiveWiden(System.Byte&, System.Byte&, System.Reflection.CorElementType, System.Reflection.CorElementType)
@@ -13260,14 +14428,33 @@ System.Private.CoreLib.dll:System.Reflection.MdFieldInfo..ctor(System.Int32, Sys
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.CacheEquals(System.Object)
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.Equals(System.Object)
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Attributes()
+System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldHandle()
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_FieldType()
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_MetadataToken()
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.get_Name()
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetOptionalCustomModifiers()
+System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRequiredCustomModifiers()
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetRuntimeModule()
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Boolean)
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.GetValue(System.Object)
System.Private.CoreLib.dll:System.Reflection.MdFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo)
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::C
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::CallConvMask
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Default
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ExplicitThis
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::FastCall
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Field
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Generic
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::GenericInst
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::HasThis
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::LocalSig
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Property
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::StdCall
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::ThisCall
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Unmanaged
+System.Private.CoreLib.dll:System.Reflection.MdSigCallingConvention System.Reflection.MdSigCallingConvention::Vararg
System.Private.CoreLib.dll:System.Reflection.MemberFilter
System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterAttribute
System.Private.CoreLib.dll:System.Reflection.MemberFilter System.Type::FilterName
@@ -13515,7 +14702,13 @@ System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection
System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeRef
System.Private.CoreLib.dll:System.Reflection.MetadataTokenType System.Reflection.MetadataTokenType::TypeSpec
System.Private.CoreLib.dll:System.Reflection.MethodAttributes
+System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Attributes()
+System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::_attributes
System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::Attributes()
+System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Attributes()
+System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeConstructorBuilder::Attributes()
+System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.RuntimeMethodBuilder::Attributes()
+System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.Emit.SymbolMethod::Attributes()
System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Abstract
System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::Assembly
System.Private.CoreLib.dll:System.Reflection.MethodAttributes System.Reflection.MethodAttributes::CheckAccessOnOverride
@@ -13549,6 +14742,7 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase
System.Private.CoreLib.dll:System.Reflection.MethodBase System.Diagnostics.StackFrame::_method
System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::_exceptionMethod
System.Private.CoreLib.dll:System.Reflection.MethodBase System.Exception::TargetSite()
+System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.RuntimeTypeBuilder::DeclaringMethod()
System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.Emit.TypeBuilderInstantiation::DeclaringMethod()
System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.MethodBaseInvoker::_method
System.Private.CoreLib.dll:System.Reflection.MethodBase System.Reflection.RuntimeMethodBody::_methodBase
@@ -13602,10 +14796,13 @@ System.Private.CoreLib.dll:System.Reflection.MethodBase/InvokerStrategy System.R
System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedArgumentsWithCopyBack
System.Private.CoreLib.dll:System.Reflection.MethodBase/StackAllocatedByRefs
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker
+System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::_invoker
+System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.Emit.DynamicMethod::Invoker()
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::Invoker()
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeConstructorInfo::m_invoker
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::Invoker()
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker System.Reflection.RuntimeMethodInfo::m_invoker
+System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.Emit.DynamicMethod, System.Signature)
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.MethodBase, System.RuntimeType[])
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeConstructorInfo)
System.Private.CoreLib.dll:System.Reflection.MethodBaseInvoker..ctor(System.Reflection.RuntimeMethodInfo)
@@ -13647,12 +14844,21 @@ System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflect
System.Private.CoreLib.dll:System.Reflection.MethodImplAttributes System.Reflection.MethodImplAttributes::Unmanaged
System.Private.CoreLib.dll:System.Reflection.MethodInfo
System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Delegate::Method()
+System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.MethodOnTypeBuilderInstantiation::_method
+System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.Emit.RuntimeILGenerator::m_methodBuilder
+System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Object_GetRawData
+System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Pointer_Box
+System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Span_get_Item
+System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_ThrowHelper_Throw_NullReference_InvokeNullRefReturned
+System.Private.CoreLib.dll:System.Reflection.MethodInfo System.Reflection.InvokerEmitUtil/Methods::s_Type_GetTypeFromHandle
System.Private.CoreLib.dll:System.Reflection.MethodInfo..ctor()
+System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type, System.Object)
System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate(System.Type)
System.Private.CoreLib.dll:System.Reflection.MethodInfo.CreateDelegate`1()
System.Private.CoreLib.dll:System.Reflection.MethodInfo.Equals(System.Object)
System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_GenericParameterCount()
System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_MemberType()
+System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnParameter()
System.Private.CoreLib.dll:System.Reflection.MethodInfo.get_ReturnType()
System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericArguments()
System.Private.CoreLib.dll:System.Reflection.MethodInfo.GetGenericMethodDefinition()
@@ -13679,6 +14885,13 @@ System.Private.CoreLib.dll:System.Reflection.Missing..cctor()
System.Private.CoreLib.dll:System.Reflection.Missing..ctor()
System.Private.CoreLib.dll:System.Reflection.Module
System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Assembly::ManifestModule()
+System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::_module
+System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::Module()
+System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.DynamicMethod::s_anonymouslyHostedDynamicMethodsModule
+System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeAssemblyBuilder::ManifestModule()
+System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeEnumBuilder::Module()
+System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Module()
+System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.RuntimeTypeBuilder::Module()
System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.SymbolType::Module()
System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.Emit.TypeBuilderInstantiation::Module()
System.Private.CoreLib.dll:System.Reflection.Module System.Reflection.MemberInfo::Module()
@@ -13731,7 +14944,10 @@ System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflecti
System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::Attributes()
System.Private.CoreLib.dll:System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl
System.Private.CoreLib.dll:System.Reflection.ParameterInfo
+System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.Emit.DynamicMethod::ReturnParameter()
+System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.MethodInfo::ReturnParameter()
System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::m_returnParameter
+System.Private.CoreLib.dll:System.Reflection.ParameterInfo System.Reflection.RuntimeMethodInfo::ReturnParameter()
System.Private.CoreLib.dll:System.Reflection.ParameterInfo..ctor()
System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Attributes()
System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_DefaultValue()
@@ -13747,6 +14963,8 @@ System.Private.CoreLib.dll:System.Reflection.ParameterInfo.get_Position()
System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Boolean)
System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributes(System.Type, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetCustomAttributesData()
+System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetOptionalCustomModifiers()
+System.Private.CoreLib.dll:System.Reflection.ParameterInfo.GetRequiredCustomModifiers()
System.Private.CoreLib.dll:System.Reflection.ParameterInfo.IsDefined(System.Type, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.ParameterInfo.ToString()
System.Private.CoreLib.dll:System.Reflection.ParameterInfo[] System.Reflection.RuntimeConstructorInfo::m_parameters
@@ -13859,11 +15077,14 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.CacheEquals(System.Obje
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.Equals(System.Object)
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Attributes()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldAccessor()
+System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldHandle()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_FieldType()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_MetadataToken()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.get_Name()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetFieldDesc()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetHashCode()
+System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetOptionalCustomModifiers()
+System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRequiredCustomModifiers()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetRuntimeModule()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetSignature()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.GetValue(System.Object)
@@ -13871,6 +15092,7 @@ System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.InitializeFieldType()
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.SetValue(System.Object, System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Globalization.CultureInfo)
System.Private.CoreLib.dll:System.Reflection.RtFieldInfo.System.IRuntimeFieldInfo.get_Value()
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly
+System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::_internalAssembly
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.Emit.RuntimeAssemblyBuilder::InternalAssembly()
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Reflection.RuntimeModule::m_runtimeAssembly
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly System.Runtime.InteropServices.TypeMapLazyDictionary/CallbackContext::_currAssembly
@@ -13888,6 +15110,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_FullName()
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_IsDynamic()
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_Location()
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_ManifestModule()
+System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.get_SyncRoot()
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase()
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCodeBase(System.Runtime.CompilerServices.QCallAssembly, System.Runtime.CompilerServices.StringHandleOnStack)
System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.GetCustomAttributes(System.Boolean)
@@ -13953,7 +15176,9 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetHashCode(
System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetMethodImplementationFlags()
System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParameters()
System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetParametersAsSpan()
+System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetReturnType()
System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeModule()
+System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.GetRuntimeType()
System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo)
System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
@@ -14026,6 +15251,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttribute
System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributes(System.Type, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetCustomAttributesData()
System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeModule()
+System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.GetRuntimeType()
System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo)
System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.IsDefined(System.Type, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.RuntimeFieldInfo.ToString()
@@ -14038,6 +15264,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody System.Reflection.RuntimeExceptionHandlingClause::_methodBody
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodBody..ctor()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo
+System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.Emit.VarArgMethod::m_method
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_addMethod
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_raiseMethod
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimeEventInfo::m_removeMethod
@@ -14048,10 +15275,12 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|25_0()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CacheEquals(System.Object)
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ComputeAndUpdateInvocationFlags()
+System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type, System.Object)
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type)
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegateInternal(System.Type, System.Object, System.DelegateBindingFlags)
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Equals(System.Object)
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchNonReturnParameters()
+System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.FetchReturnParameter()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ArgumentTypes()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Attributes()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_BindingFlags()
@@ -14070,6 +15299,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_MethodHandle(
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Module()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Name()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReflectedType()
+System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnParameter()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_ReturnType()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.get_Signature()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetCustomAttributes(System.Boolean)
@@ -14085,6 +15315,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParameters()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParametersAsSpan()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetParentDefinition()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeModule()
+System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.GetRuntimeType()
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.HasSameMetadataDefinitionAs(System.Reflection.MemberInfo)
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo)
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.InvokePropertySetter(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Globalization.CultureInfo)
@@ -14093,6 +15324,8 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ThrowNoInvokeExce
System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ToString()
System.Private.CoreLib.dll:System.Reflection.RuntimeModule
System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.ModuleHandle::m_ptr
+System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::_internalModule
+System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.Emit.RuntimeModuleBuilder::InternalModule()
System.Private.CoreLib.dll:System.Reflection.RuntimeModule System.Reflection.RuntimeCustomAttributeData::m_scope
System.Private.CoreLib.dll:System.Reflection.RuntimeModule..ctor()
System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ConvertToTypeHandleArray(System.Type[])
@@ -14112,6 +15345,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeModule.GetUnderlyingNativeHa
System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveMethod(System.Int32, System.Type[], System.Type[])
System.Private.CoreLib.dll:System.Reflection.RuntimeModule.ResolveType(System.Int32, System.Type[], System.Type[])
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo
+System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.MethodInfo, System.String, System.Type, System.Int32)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.MemberInfo)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Reflection.RuntimeParameterInfo, System.Reflection.RuntimePropertyInfo)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo..ctor(System.Signature, System.Reflection.MetadataImport, System.Int32, System.Int32, System.Reflection.ParameterAttributes, System.Reflection.MemberInfo)
@@ -14127,14 +15361,18 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetCustomAttri
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValue(System.Boolean)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributeData()
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetDefaultValueFromCustomAttributes()
+System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetOptionalCustomModifiers()
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature, out System.Reflection.ParameterInfo&, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetParameters(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawConstant(System.Reflection.CustomAttributeData)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDateTimeConstant(System.Reflection.CustomAttributeData)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRawDecimalConstant(System.Reflection.CustomAttributeData)
+System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRequiredCustomModifiers()
+System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetReturnParameter(System.IRuntimeMethodInfo, System.Reflection.MemberInfo, System.Signature)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.GetRuntimeModule()
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.IsDefined(System.Type, System.Boolean)
System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo.TryGetDefaultValueInternal(System.Boolean, out System.Object&)
+System.Private.CoreLib.dll:System.Reflection.RuntimeParameterInfo[] System.Reflection.Emit.DynamicMethod::_parameters
System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo
System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo..ctor(System.Int32, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, out System.Boolean&)
System.Private.CoreLib.dll:System.Reflection.RuntimePropertyInfo.CacheEquals(System.Object)
@@ -14348,6 +15586,7 @@ System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor
System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String, System.Exception)
System.Private.CoreLib.dll:System.Reflection.TargetParameterCountException..ctor(System.String)
System.Private.CoreLib.dll:System.Reflection.TypeAttributes
+System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.Emit.RuntimeTypeBuilder::m_iAttr
System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::Abstract
System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AnsiClass
System.Private.CoreLib.dll:System.Reflection.TypeAttributes System.Reflection.TypeAttributes::AutoClass
@@ -14416,6 +15655,7 @@ System.Private.CoreLib.dll:System.Reflection.TypeDelegator.IsPrimitiveImpl()
System.Private.CoreLib.dll:System.Reflection.TypeInfo
System.Private.CoreLib.dll:System.Reflection.TypeInfo..ctor()
System.Private.CoreLib.dll:System.Reflection.TypeInfo.AsType()
+System.Private.CoreLib.dll:System.Reflection.TypeInfo.GetRankString(System.Int32)
System.Private.CoreLib.dll:System.Reflection.TypeInfo.IsAssignableFrom(System.Reflection.TypeInfo)
System.Private.CoreLib.dll:System.Reflection.TypeNameResolver
System.Private.CoreLib.dll:System.Reflection.TypeNameResolver.g____PInvoke|19_0(System.IntPtr, System.Int32, System.UInt32)
@@ -14461,6 +15701,7 @@ System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Int32, System
System.Private.CoreLib.dll:System.Resolver.ResolveSignature(System.Resolver*, System.Int32, System.Int32, System.Byte[]*, System.Exception*)
System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Int32, out System.IntPtr&, out System.IntPtr&, out System.IntPtr&)
System.Private.CoreLib.dll:System.Resolver.ResolveToken(System.Resolver*, System.Int32, System.IntPtr*, System.IntPtr*, System.IntPtr*, System.Exception*)
+System.Private.CoreLib.dll:System.Resolver/CORINFO_EH_CLAUSE
System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException
System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor()
System.Private.CoreLib.dll:System.Resources.MissingManifestResourceException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)
@@ -14954,6 +16195,20 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.GetMethodD
System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc* System.Delegate::MethodDesc()
System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk
System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk* System.Runtime.CompilerServices.MethodDescChunk::Next
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplAttribute..ctor(System.Runtime.CompilerServices.MethodImplOptions)
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplAttribute::k__BackingField
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveInlining
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::AggressiveOptimization
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Async
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::ForwardRef
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::InternalCall
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoInlining
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::NoOptimization
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::PreserveSig
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Synchronized
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodImplOptions System.Runtime.CompilerServices.MethodImplOptions::Unmanaged
System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable
System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.AreSameType(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable.get_ContainsGCPointers()
@@ -15082,6 +16337,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.PreserveBaseOverrides
System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly
System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallAssembly..ctor(System.Reflection.RuntimeAssembly&)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.Emit.RuntimeModuleBuilder&)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallModule..ctor(System.Reflection.RuntimeModule&)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle
System.Private.CoreLib.dll:System.Runtime.CompilerServices.QCallTypeHandle..ctor(System.RuntimeType&)
@@ -15123,6 +16379,9 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeAsyncTaskConti
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute..ctor()
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute.set_WrapNonExceptionThrows(System.Boolean)
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature..cctor()
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeFeature.get_IsDynamicCodeSupported()
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__AllocTailCallArgBufferWorker|45_0(System.Int32)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.g__GetHashCodeWorker|15_0(System.Object)
@@ -15136,10 +16395,12 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.Box(Sy
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallDefaultConstructor(System.Object*, method System.Void *(System.Object), System.Exception*)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CallToString(System.Object*, System.String*, System.Exception*)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CanPrimitiveWiden(System.Reflection.CorElementType, System.Reflection.CorElementType)
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CompileMethod(System.RuntimeMethodHandleInternal)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.CreateSpan`1(System.RuntimeFieldHandle)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.DispatchTailCalls(System.IntPtr, method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*), System.Byte&)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumCompareTo`1(T, T)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.EnumEquals`1(T, T)
+System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetElementSize(System.Array)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCode(System.Object)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetHashCodeSlow(System.Runtime.CompilerServices.ObjectHandleOnStack)
System.Private.CoreLib.dll:System.Runtime.CompilerServices.RuntimeHelpers.GetMethodTable(System.Object)
@@ -15813,6 +17074,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySp
System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.get_BufferSize()
System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetManagedValuesSource()
System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference()
+System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetPinnableReference(System.ReadOnlySpan`1)
System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.GetUnmanagedValuesDestination()
System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.ReadOnlySpanMarshaller`2/ManagedToUnmanagedIn.ToUnmanaged()
System.Private.CoreLib.dll:System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1
@@ -16897,6 +18159,12 @@ System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute
System.Private.CoreLib.dll:System.Runtime.Versioning.TargetPlatformAttribute..ctor(System.String)
System.Private.CoreLib.dll:System.RuntimeArgumentHandle
System.Private.CoreLib.dll:System.RuntimeFieldHandle
+System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.FieldOnTypeBuilderInstantiation::FieldHandle()
+System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.Emit.GenericFieldInfo::m_fieldHandle
+System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.FieldInfo::FieldHandle()
+System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.MdFieldInfo::FieldHandle()
+System.Private.CoreLib.dll:System.RuntimeFieldHandle System.Reflection.RtFieldInfo::FieldHandle()
+System.Private.CoreLib.dll:System.RuntimeFieldHandle..ctor(System.IRuntimeFieldInfo)
System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|24_0(System.RuntimeFieldHandleInternal, System.Void**, System.UInt32*)
System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|30_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*, System.Runtime.CompilerServices.ObjectHandleOnStack)
System.Private.CoreLib.dll:System.RuntimeFieldHandle.g____PInvoke|34_0(System.IntPtr, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.QCallTypeHandle, System.Runtime.CompilerServices.QCallTypeHandle, System.Int32*)
@@ -16942,7 +18210,13 @@ System.Private.CoreLib.dll:System.RuntimeFieldInfoStub..ctor(System.RuntimeField
System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.FromPtr(System.IntPtr)
System.Private.CoreLib.dll:System.RuntimeFieldInfoStub.System.IRuntimeFieldInfo.get_Value()
System.Private.CoreLib.dll:System.RuntimeMethodHandle
+System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::MethodHandle()
System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.DynamicMethod::MethodHandle()
+System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.GenericMethodInfo::m_methodHandle
+System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.MethodOnTypeBuilderInstantiation::MethodHandle()
+System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeConstructorBuilder::MethodHandle()
+System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.RuntimeMethodBuilder::MethodHandle()
+System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.Emit.SymbolMethod::MethodHandle()
System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.MethodBase::MethodHandle()
System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeConstructorInfo::MethodHandle()
System.Private.CoreLib.dll:System.RuntimeMethodHandle System.Reflection.RuntimeMethodInfo::MethodHandle()
@@ -16950,6 +18224,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle..ctor(System.IRuntimeMetho
System.Private.CoreLib.dll:System.RuntimeMethodHandle.g__GetStubIfNeededWorker|47_0(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType[])
System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.IRuntimeMethodInfo, System.TypeNameFormatFlags)
System.Private.CoreLib.dll:System.RuntimeMethodHandle.ConstructInstantiation(System.RuntimeMethodHandleInternal, System.TypeNameFormatFlags, System.Runtime.CompilerServices.StringHandleOnStack)
+System.Private.CoreLib.dll:System.RuntimeMethodHandle.Destroy(System.RuntimeMethodHandleInternal)
System.Private.CoreLib.dll:System.RuntimeMethodHandle.EnsureNonNullMethodInfo(System.IRuntimeMethodInfo)
System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.Object)
System.Private.CoreLib.dll:System.RuntimeMethodHandle.Equals(System.RuntimeMethodHandle)
@@ -17004,6 +18279,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(S
System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.ObjectHandleOnStack)
System.Private.CoreLib.dll:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle)
System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal
+System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.Emit.DynamicResolver/DestroyScout::m_methodHandle
System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodHandleInternal::EmptyHandle()
System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::_handle
System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::Current()
@@ -17016,6 +18292,9 @@ System.Private.CoreLib.dll:System.RuntimeMethodInfoStub
System.Private.CoreLib.dll:System.RuntimeMethodInfoStub..ctor(System.RuntimeMethodHandleInternal, System.Object)
System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.FromPtr(System.IntPtr)
System.Private.CoreLib.dll:System.RuntimeType
+System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_returnType
+System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.DynamicMethod::_typeOwner
+System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Emit.RuntimeTypeBuilder::m_bakedRuntimeType
System.Private.CoreLib.dll:System.RuntimeType System.Reflection.MdFieldInfo::m_fieldType
System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Pointer::_ptrType
System.Private.CoreLib.dll:System.RuntimeType System.Reflection.RtFieldInfo::m_fieldType
@@ -17095,6 +18374,7 @@ System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericType()
System.Private.CoreLib.dll:System.RuntimeType.get_IsGenericTypeDefinition()
System.Private.CoreLib.dll:System.RuntimeType.get_IsNullableOfT()
System.Private.CoreLib.dll:System.RuntimeType.get_IsSZArray()
+System.Private.CoreLib.dll:System.RuntimeType.get_IsUnmanagedFunctionPointer()
System.Private.CoreLib.dll:System.RuntimeType.get_MemberType()
System.Private.CoreLib.dll:System.RuntimeType.get_MetadataToken()
System.Private.CoreLib.dll:System.RuntimeType.get_Module()
@@ -17125,6 +18405,7 @@ System.Private.CoreLib.dll:System.RuntimeType.GetField(System.String, System.Ref
System.Private.CoreLib.dll:System.RuntimeType.GetFieldCandidates(System.String, System.Reflection.BindingFlags, System.Boolean)
System.Private.CoreLib.dll:System.RuntimeType.GetFields(System.Reflection.BindingFlags)
System.Private.CoreLib.dll:System.RuntimeType.GetFieldWithSameMetadataDefinitionAs(System.RuntimeType, System.Reflection.MemberInfo)
+System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerCallingConventions()
System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerParameterTypes()
System.Private.CoreLib.dll:System.RuntimeType.GetFunctionPointerReturnType()
System.Private.CoreLib.dll:System.RuntimeType.GetGenericArguments()
@@ -17193,6 +18474,7 @@ System.Private.CoreLib.dll:System.RuntimeType.TryChangeTypeSpecial(System.Object
System.Private.CoreLib.dll:System.RuntimeType.TryGetByRefElementType(System.RuntimeType, out System.RuntimeType&)
System.Private.CoreLib.dll:System.RuntimeType.ValidateGenericArguments(System.Reflection.MemberInfo, System.RuntimeType[], System.Exception)
System.Private.CoreLib.dll:System.RuntimeType[] System.Enum::s_underlyingTypes
+System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.Emit.DynamicMethod::_parameterTypes
System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.MethodBaseInvoker::_argTypes
System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeConstructorInfo::ArgumentTypes()
System.Private.CoreLib.dll:System.RuntimeType[] System.Reflection.RuntimeMethodInfo::ArgumentTypes()
@@ -17349,6 +18631,9 @@ System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1
System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_interfaceCache
System.Private.CoreLib.dll:System.RuntimeType/RuntimeTypeCache/MemberInfoCache`1 System.RuntimeType/RuntimeTypeCache::m_nestedClassesCache
System.Private.CoreLib.dll:System.RuntimeTypeHandle
+System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericFieldInfo::m_context
+System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.GenericMethodInfo::m_context
+System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.RuntimeTypeBuilder::TypeHandle()
System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.SymbolType::TypeHandle()
System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.Emit.TypeBuilderInstantiation::TypeHandle()
System.Private.CoreLib.dll:System.RuntimeTypeHandle System.Reflection.SignatureType::TypeHandle()
@@ -17442,6 +18727,7 @@ System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsNullHandle()
System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPointer(System.RuntimeType)
System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsPrimitive(System.RuntimeType)
System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsSZArray(System.RuntimeType)
+System.Private.CoreLib.dll:System.RuntimeTypeHandle.IsUnmanagedFunctionPointer(System.RuntimeType)
System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Int32)
System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeArray(System.Runtime.CompilerServices.QCallTypeHandle, System.Int32, System.Runtime.CompilerServices.ObjectHandleOnStack)
System.Private.CoreLib.dll:System.RuntimeTypeHandle.MakeByRef()
@@ -17595,6 +18881,8 @@ System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Drain(System.Span`1, System.Span`1)
System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Start(System.Span`1)
System.Private.CoreLib.dll:System.Signature
+System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::_signature
+System.Private.CoreLib.dll:System.Signature System.Reflection.Emit.DynamicMethod::Signature()
System.Private.CoreLib.dll:System.Signature System.Reflection.MethodBaseInvoker::_signature
System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::m_signature
System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimeConstructorInfo::Signature()
@@ -17605,6 +18893,7 @@ System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInf
System.Private.CoreLib.dll:System.Signature System.Reflection.RuntimePropertyInfo::Signature()
System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeFieldInfo, System.RuntimeType)
System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType)
+System.Private.CoreLib.dll:System.Signature..ctor(System.IRuntimeMethodInfo, System.RuntimeType[], System.RuntimeType, System.Reflection.CallingConventions)
System.Private.CoreLib.dll:System.Signature..ctor(System.Void*, System.Int32, System.RuntimeType)
System.Private.CoreLib.dll:System.Signature.AreEqual(System.Signature, System.Signature)
System.Private.CoreLib.dll:System.Signature.AreEqual(System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle, System.Void*, System.Int32, System.Runtime.CompilerServices.QCallTypeHandle)
@@ -17612,6 +18901,11 @@ System.Private.CoreLib.dll:System.Signature.get_Arguments()
System.Private.CoreLib.dll:System.Signature.get_CallingConvention()
System.Private.CoreLib.dll:System.Signature.get_FieldType()
System.Private.CoreLib.dll:System.Signature.get_ReturnType()
+System.Private.CoreLib.dll:System.Signature.GetCustomModifiers(System.Int32, System.Boolean)
+System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Int32, System.Boolean)
+System.Private.CoreLib.dll:System.Signature.GetCustomModifiersAtOffset(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Int32, Interop/BOOL, System.Runtime.CompilerServices.ObjectHandleOnStack)
+System.Private.CoreLib.dll:System.Signature.GetParameterOffset(System.Int32)
+System.Private.CoreLib.dll:System.Signature.GetParameterOffsetInternal(System.Void*, System.Int32, System.Int32)
System.Private.CoreLib.dll:System.Signature.Init(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal)
System.Private.CoreLib.dll:System.Signature.Init(System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal)
System.Private.CoreLib.dll:System.Single
@@ -17828,6 +19122,7 @@ System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TVa
System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfAnyValueType`2(TValue&, TValue, TValue, TValue, System.Int32)
System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfChar(System.Char&, System.Char, System.Int32)
System.Private.CoreLib.dll:System.SpanHelpers.NonPackedIndexOfValueType`2(TValue&, TValue, System.Int32)
+System.Private.CoreLib.dll:System.SpanHelpers.ReplaceValueType`1(T&, T&, T, T, System.UIntPtr)
System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Byte&, System.Int32, System.Byte&, System.Int32)
System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo(System.Char&, System.Int32, System.Char&, System.Int32)
System.Private.CoreLib.dll:System.SpanHelpers.SequenceCompareTo`1(T&, System.Int32, T&, System.Int32)
@@ -18113,7 +19408,30 @@ System.Private.CoreLib.dll:System.String System.Reflection.AssemblyTitleAttribut
System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::k__BackingField
System.Private.CoreLib.dll:System.String System.Reflection.CustomAttributeEncodedArgument::StringValue()
System.Private.CoreLib.dll:System.String System.Reflection.DefaultMemberAttribute::k__BackingField
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.AssemblyBuilder::Location()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.ConstructorOnTypeBuilderInstantiation::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::_name
System.Private.CoreLib.dll:System.String System.Reflection.Emit.DynamicMethod::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.FieldOnTypeBuilderInstantiation::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.MethodOnTypeBuilderInstantiation::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.OpCode::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeAssemblyBuilder::FullName()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeConstructorBuilder::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::FullName()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeEnumBuilder::Namespace()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::FullName()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeGenericTypeParameterBuilder::Namespace()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeMethodBuilder::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeModuleBuilder::ScopeName()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::FullName()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strFullQualName
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strName
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::m_strNameSpace
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Name()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.RuntimeTypeBuilder::Namespace()
+System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolMethod::Name()
System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::_format
System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::FullName()
System.Private.CoreLib.dll:System.String System.Reflection.Emit.SymbolType::Name()
@@ -18322,6 +19640,7 @@ System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCa
System.Private.CoreLib.dll:System.String.GetNonRandomizedHashCodeOrdinalIgnoreCaseSlow(System.UInt32, System.UInt32, System.ReadOnlySpan`1)
System.Private.CoreLib.dll:System.String.GetPinnableReference()
System.Private.CoreLib.dll:System.String.GetRawStringData()
+System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt16()
System.Private.CoreLib.dll:System.String.GetRawStringDataAsUInt8()
System.Private.CoreLib.dll:System.String.GetTypeCode()
System.Private.CoreLib.dll:System.String.IndexOf(System.Char, System.Int32, System.Int32)
@@ -18335,6 +19654,8 @@ System.Private.CoreLib.dll:System.String.IsNullOrEmpty(System.String)
System.Private.CoreLib.dll:System.String.Join(System.String, System.Object[])
System.Private.CoreLib.dll:System.String.Join(System.String, System.ReadOnlySpan`1)
System.Private.CoreLib.dll:System.String.JoinCore(System.ReadOnlySpan`1, System.ReadOnlySpan`1)
+System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32, System.Int32)
+System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char, System.Int32)
System.Private.CoreLib.dll:System.String.LastIndexOf(System.Char)
System.Private.CoreLib.dll:System.String.MakeSeparatorList(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1&)
System.Private.CoreLib.dll:System.String.MakeSeparatorListAny(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.Collections.Generic.ValueListBuilder`1