diff --git a/README.md b/README.md index 13ae241f9e25..5222508613f6 100644 --- a/README.md +++ b/README.md @@ -62,3 +62,4 @@ However, we provide links to older Xamarin.iOS and Mac packages for macOS downgr Copyright (c) .NET Foundation Contributors. All rights reserved. Licensed under the [MIT](https://github.com/dotnet/macios/blob/main/LICENSE) License. + diff --git a/dotnet/targets/Xamarin.Shared.Sdk.targets b/dotnet/targets/Xamarin.Shared.Sdk.targets index 002e4eb40612..021f98d652f0 100644 --- a/dotnet/targets/Xamarin.Shared.Sdk.targets +++ b/dotnet/targets/Xamarin.Shared.Sdk.targets @@ -1402,10 +1402,13 @@ + So here we set RootMode=Library for these cases. + Also, since app extensions have OutputType=Library, the trimmer won't add the current assembly to TrimmerRootAssembly at all (it's conditioned on OutputType != Library). + So we also need to add the current assembly as a root assembly if it hasn't been added already. --> + diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 21ca5a967f69..da51f16a7df7 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,16 +6,16 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26215.121 - 11.0.0-beta.26215.121 - 0.11.5-preview.26215.121 - 11.0.0-beta.26215.121 - 11.0.0-preview.4.26215.121 - 11.0.0-preview.4.26215.121 - 11.0.0-preview.4.26215.121 - 11.0.100-preview.4.26215.121 - 11.0.0-preview.4.26215.121 - 11.0.100-preview.4.26215.121 + 11.0.0-beta.26229.113 + 11.0.0-beta.26229.113 + 0.11.5-preview.26229.113 + 11.0.0-beta.26229.113 + 11.0.0-preview.5.26229.113 + 11.0.0-preview.5.26229.113 + 11.0.0-preview.5.26229.113 + 11.0.100-preview.5.26229.113 + 11.0.0-preview.5.26229.113 + 11.0.100-preview.5.26229.113 26.0.11017 26.4.10259 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index de5d431bb2f9..8a9be39bd6d5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,29 +1,29 @@ - + https://github.com/dotnet/dotnet - ab01524bbb2ef1eea0ffaef161b3ef5686e8f256 + 4c4e7f410fc876590f219fc6022b6c18d6f6a475 - + https://github.com/dotnet/dotnet - ab01524bbb2ef1eea0ffaef161b3ef5686e8f256 + 4c4e7f410fc876590f219fc6022b6c18d6f6a475 - + https://github.com/dotnet/dotnet - ab01524bbb2ef1eea0ffaef161b3ef5686e8f256 + 4c4e7f410fc876590f219fc6022b6c18d6f6a475 - + https://github.com/dotnet/dotnet - ab01524bbb2ef1eea0ffaef161b3ef5686e8f256 + 4c4e7f410fc876590f219fc6022b6c18d6f6a475 - + https://github.com/dotnet/dotnet - ab01524bbb2ef1eea0ffaef161b3ef5686e8f256 + 4c4e7f410fc876590f219fc6022b6c18d6f6a475 - + https://github.com/dotnet/dotnet - ab01524bbb2ef1eea0ffaef161b3ef5686e8f256 + 4c4e7f410fc876590f219fc6022b6c18d6f6a475 @@ -61,25 +61,25 @@ - + https://github.com/dotnet/dotnet - ab01524bbb2ef1eea0ffaef161b3ef5686e8f256 + 4c4e7f410fc876590f219fc6022b6c18d6f6a475 - + https://github.com/dotnet/dotnet - ab01524bbb2ef1eea0ffaef161b3ef5686e8f256 + 4c4e7f410fc876590f219fc6022b6c18d6f6a475 - + https://github.com/dotnet/dotnet - ab01524bbb2ef1eea0ffaef161b3ef5686e8f256 + 4c4e7f410fc876590f219fc6022b6c18d6f6a475 https://github.com/dotnet/xharness 866707736d49c2323628744716cda2475b3af9ee - + https://github.com/dotnet/dotnet - ab01524bbb2ef1eea0ffaef161b3ef5686e8f256 + 4c4e7f410fc876590f219fc6022b6c18d6f6a475 diff --git a/eng/common/core-templates/post-build/post-build.yml b/eng/common/core-templates/post-build/post-build.yml index fcf40d1d2e69..8aa86e304919 100644 --- a/eng/common/core-templates/post-build/post-build.yml +++ b/eng/common/core-templates/post-build/post-build.yml @@ -225,7 +225,7 @@ stages: displayName: Validate inputs: filePath: eng\common\sdk-task.ps1 - arguments: -task SigningValidation -restore + arguments: -task SigningValidation -restore -msbuildEngine dotnet /p:PackageBasePath='$(Build.ArtifactStagingDirectory)/PackageArtifacts' /p:SignCheckExclusionsFile='$(System.DefaultWorkingDirectory)/eng/SignCheckExclusionsFile.txt' ${{ parameters.signingValidationAdditionalParameters }} diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index d1ca56d84575..65adefc7f268 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -185,7 +185,11 @@ function InitializeDotNetCli([bool]$install, [bool]$createSdkLocationFile) { if ((-not $globalJsonHasRuntimes) -and (-not [string]::IsNullOrEmpty($env:DOTNET_INSTALL_DIR)) -and (Test-Path(Join-Path $env:DOTNET_INSTALL_DIR "sdk\$dotnetSdkVersion"))) { $dotnetRoot = $env:DOTNET_INSTALL_DIR } else { - $dotnetRoot = Join-Path $RepoRoot '.dotnet' + if (-not [string]::IsNullOrEmpty($env:DOTNET_GLOBAL_INSTALL_DIR)) { + $dotnetRoot = $env:DOTNET_GLOBAL_INSTALL_DIR + } else { + $dotnetRoot = Join-Path $RepoRoot '.dotnet' + } if (-not (Test-Path(Join-Path $dotnetRoot "sdk\$dotnetSdkVersion"))) { if ($install) { @@ -677,9 +681,19 @@ function InitializeToolset() { } $downloadArgs = @("package", "download", "Microsoft.DotNet.Arcade.Sdk@$toolsetVersion", "--verbosity", "minimal", "--prerelease", "--output", "$nugetCache") - if ($env:NUGET_CONFIG) { + $nugetConfig = $env:NUGET_CONFIG + if (-not $nugetConfig) { + # Search for any variation of nuget.config in the RepoRoot + $configFile = Get-ChildItem -Path $RepoRoot -File | Where-Object { $_.Name -ieq "nuget.config" } | Select-Object -First 1 + + if ($configFile) { + $nugetConfig = $configFile.FullName + } + } + + if ($nugetConfig) { $downloadArgs += "--configfile" - $downloadArgs += $env:NUGET_CONFIG + $downloadArgs += $nugetConfig } DotNet @downloadArgs diff --git a/eng/common/tools.sh b/eng/common/tools.sh index 22341be2cc6c..95c55ce9b4d9 100644 --- a/eng/common/tools.sh +++ b/eng/common/tools.sh @@ -148,7 +148,11 @@ function InitializeDotNetCli { if [[ $global_json_has_runtimes == false && -n "${DOTNET_INSTALL_DIR:-}" && -d "$DOTNET_INSTALL_DIR/sdk/$dotnet_sdk_version" ]]; then dotnet_root="$DOTNET_INSTALL_DIR" else - dotnet_root="${repo_root}.dotnet" + if [[ -n "${DOTNET_GLOBAL_INSTALL_DIR:-}" ]]; then + dotnet_root="$DOTNET_GLOBAL_INSTALL_DIR" + else + dotnet_root="${repo_root}.dotnet" + fi export DOTNET_INSTALL_DIR="$dotnet_root" @@ -427,8 +431,19 @@ function InitializeToolset { fi local download_args=("package" "download" "Microsoft.DotNet.Arcade.Sdk@$toolset_version" "--verbosity" "minimal" "--prerelease" "--output" "$_GetNuGetPackageCachePath") - if [[ -n "${NUGET_CONFIG:-}" ]]; then - download_args+=("--configfile" "$NUGET_CONFIG") + local nuget_config="${NUGET_CONFIG:-}" + if [[ -z "$nuget_config" ]]; then + # Search for any variation of nuget.config in the RepoRoot + local found_config + found_config=$(find "$repo_root" -maxdepth 1 -type f -iname "nuget.config" -print -quit) + + if [[ -n "$found_config" ]]; then + nuget_config="$found_config" + fi + fi + + if [[ -n "$nuget_config" ]]; then + download_args+=("--configfile" "$nuget_config") fi DotNet "${download_args[@]}" diff --git a/global.json b/global.json index 2ff76b464f1c..cec44f662489 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "11.0.100-preview.4.26215.121", + "version": "11.0.100-preview.5.26229.113", "paths": [ "builds/downloads/dotnet", "$host$" @@ -8,9 +8,9 @@ "errorMessage": "The .NET SDK could not be found, please run 'make dotnet -C builds'." }, "tools": { - "dotnet": "11.0.100-preview.4.26215.121" + "dotnet": "11.0.100-preview.5.26229.113" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26215.121" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26229.113" } } diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt index 3166fc0d9998..f9c6e4fe0beb 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt @@ -2398,6 +2398,7 @@ System.Private.CoreLib.dll:method System.Void *(System.Byte&,System.Byte*,System System.Private.CoreLib.dll:method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&) System.StubHelpers.LayoutClassMarshaler`1/Methods::Free() System.Private.CoreLib.dll:method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&) System.StubHelpers.StubHelpers/StructureMarshalInfo::ConvertToManaged System.Private.CoreLib.dll:method System.Void *(System.Byte&) System.RuntimeType/ActivatorCache::_pfnValueCtor +System.Private.CoreLib.dll:method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Threading.Tasks.ValueTaskSourceNotifier::_onCompleted System.Private.CoreLib.dll:method System.Void *(System.Object) System.RuntimeType/ActivatorCache::_pfnRefCtor System.Private.CoreLib.dll:method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*) System.Runtime.CompilerServices.PortableTailCallFrame::NextCall System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle @@ -2514,8 +2515,8 @@ System.Private.CoreLib.dll:System.Action`1 System.Threading.Manua System.Private.CoreLib.dll:System.Action`1 System.Threading.SemaphoreSlim::s_cancellationTokenCanceledEventHandler System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1::_continuation System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Sources.ManualResetValueTaskSourceCoreShared::s_sentinel -System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__39_0 -System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__39_1 +System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__44_0 +System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__44_1 System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation/<>c::<>9__2_0 System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask::s_completionAction System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::s_completionAction @@ -2814,6 +2815,8 @@ System.Private.CoreLib.dll:System.BitConverter.Int32BitsToSingle(System.Int32) System.Private.CoreLib.dll:System.BitConverter.Int64BitsToDouble(System.Int64) System.Private.CoreLib.dll:System.BitConverter.SingleToInt32Bits(System.Single) System.Private.CoreLib.dll:System.BitConverter.SingleToUInt32Bits(System.Single) +System.Private.CoreLib.dll:System.BitConverter.ToInt32(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.BitConverter.ToUInt32(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.BitConverter.UInt16BitsToHalf(System.UInt16) System.Private.CoreLib.dll:System.BitConverter.UInt32BitsToSingle(System.UInt32) System.Private.CoreLib.dll:System.BitConverter.UInt64BitsToDouble(System.UInt64) @@ -3203,7 +3206,9 @@ System.Private.CoreLib.dll:System.Boolean System.RuntimeType/RuntimeTypeCache/Me System.Private.CoreLib.dll:System.Boolean System.RuntimeTypeHandle/IntroducedMethodEnumerator::_firstCall System.Private.CoreLib.dll:System.Boolean System.SByte::System.IBinaryIntegerParseAndFormatInfo.IsSigned() System.Private.CoreLib.dll:System.Boolean System.Span`1::IsEmpty() +System.Private.CoreLib.dll:System.Boolean System.StubHelpers.LayoutClassMarshaler`1/Methods::IsBlittable() System.Private.CoreLib.dll:System.Boolean System.StubHelpers.SafeHandleCleanupWorkListElement::m_owned +System.Private.CoreLib.dll:System.Boolean System.StubHelpers.StructureMarshaler`1::s_isBlittable System.Private.CoreLib.dll:System.Boolean System.Text.Decoder::InternalHasFallbackBuffer() System.Private.CoreLib.dll:System.Boolean System.Text.DecoderNLS::_throwOnOverflow System.Private.CoreLib.dll:System.Boolean System.Text.DecoderNLS::MustFlush() @@ -3226,6 +3231,7 @@ System.Private.CoreLib.dll:System.Boolean System.Threading.CancellationTokenSour System.Private.CoreLib.dll:System.Boolean System.Threading.CancellationTokenSource::IsCancellationRequested() System.Private.CoreLib.dll:System.Boolean System.Threading.Condition/Waiter::signalled System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::HasChangeNotifications() +System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::InstanceIsFlowSuppressed() System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::IsDefault() System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::m_isDefault System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::m_isFlowSuppressed @@ -3513,7 +3519,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/ContainsAnyRes System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default.PackSources(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1 @@ -3522,7 +3528,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResu System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IOptimizations @@ -3533,7 +3539,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper` System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Ssse3AndWasmHandleZeroInNeedle @@ -3624,6 +3630,8 @@ System.Private.CoreLib.dll:System.Buffers.SearchValues`1.IndexOfAny(System.ReadO System.Private.CoreLib.dll:System.Buffers.SearchValues`1.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.SearchValues`1 System.Globalization.CompareInfo::s_nonSpecialAsciiChars System.Private.CoreLib.dll:System.Buffers.SearchValues`1 System.Reflection.Metadata.TypeNameParserHelpers::s_endOfFullTypeNameDelimiterChars +System.Private.CoreLib.dll:System.Buffers.SearchValues`1 System.String/SearchValuesStorage::NewLineChars +System.Private.CoreLib.dll:System.Buffers.SearchValues`1 System.String/SearchValuesStorage::WhiteSpaceChars System.Private.CoreLib.dll:System.Buffers.SharedArrayPool`1 System.Private.CoreLib.dll:System.Buffers.SharedArrayPool`1..ctor() System.Private.CoreLib.dll:System.Buffers.SharedArrayPool`1.CreatePerCorePartitions(System.Int32) @@ -5424,6 +5432,7 @@ System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.AllowNullAttribute..c System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Max(System.Object) +System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Min(System.Object) System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes @@ -8065,10 +8074,9 @@ System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.Sources.ManualRes System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1::Version() System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask::_token System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask::_token -System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier::_token System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1::_token System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::_token -System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier::_token +System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTaskSourceNotifier::_token System.Private.CoreLib.dll:System.Int16.CompareTo(System.Int16) System.Private.CoreLib.dll:System.Int16.CompareTo(System.Object) System.Private.CoreLib.dll:System.Int16.CreateSaturating`1(TOther) @@ -8876,7 +8884,6 @@ System.Private.CoreLib.dll:System.Int32 System.Threading.SpinWait::_count System.Private.CoreLib.dll:System.Int32 System.Threading.SpinWait::Count() System.Private.CoreLib.dll:System.Int32 System.Threading.SpinWait::SpinCountForSpinBeforeWait System.Private.CoreLib.dll:System.Int32 System.Threading.StackCrawlMark::value__ -System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.AsyncCausalityStatus::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.CausalitySynchronousWork::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.ConfigureAwaitOptions::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.InternalTaskOptions::value__ @@ -8952,6 +8959,7 @@ System.Private.CoreLib.dll:System.Int32.Equals(System.Object) System.Private.CoreLib.dll:System.Int32.GetHashCode() System.Private.CoreLib.dll:System.Int32.GetTypeCode() System.Private.CoreLib.dll:System.Int32.IsNegative(System.Int32) +System.Private.CoreLib.dll:System.Int32.Log2(System.Int32) System.Private.CoreLib.dll:System.Int32.Max(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Min(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -10207,8 +10215,8 @@ System.Private.CoreLib.dll:System.Memory`1.Pin() System.Private.CoreLib.dll:System.Memory`1.Slice(System.Int32) System.Private.CoreLib.dll:System.Memory`1.ToString() System.Private.CoreLib.dll:System.MemoryExtensions -System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|273_0(System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|287_0(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|278_0(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|292_0(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.AsMemory`1(T[], System.Int32, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32) @@ -10240,6 +10248,7 @@ System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAny`1(System.ReadOnlyS System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyExcept`1(System.ReadOnlySpan`1, T) System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyExceptInRange`1(System.ReadOnlySpan`1, T, T) System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyInRange`1(System.ReadOnlySpan`1, T, T) +System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyWhiteSpace(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.LastIndexOf`1(System.ReadOnlySpan`1, T) System.Private.CoreLib.dll:System.MemoryExtensions.Overlaps`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.SequenceCompareTo`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1) @@ -10801,7 +10810,9 @@ System.Private.CoreLib.dll:System.Object System.ComAwareWeakReference/ComInfo::_ System.Private.CoreLib.dll:System.Object System.Delegate::_methodBase System.Private.CoreLib.dll:System.Object System.Delegate::_target System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Max() +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Min() System.Private.CoreLib.dll:System.Object System.Diagnostics.EditAndContinueHelper::_objectReference System.Private.CoreLib.dll:System.Object System.Diagnostics.StackFrameHelper::dynamicMethods System.Private.CoreLib.dll:System.Object System.Diagnostics.StackFrameHelper::s_stackTraceSymbolsCache @@ -10875,6 +10886,7 @@ System.Private.CoreLib.dll:System.Object System.Threading.Tasks.TaskToAsyncResul System.Private.CoreLib.dll:System.Object System.Threading.Tasks.TaskToAsyncResult/TaskAsyncResult::AsyncState() System.Private.CoreLib.dll:System.Object System.Threading.Tasks.ValueTask::_obj System.Private.CoreLib.dll:System.Object System.Threading.Tasks.ValueTask`1::_obj +System.Private.CoreLib.dll:System.Object System.Threading.Tasks.ValueTaskSourceNotifier::_source System.Private.CoreLib.dll:System.Object System.Threading.Thread/StartHelper::_startArg System.Private.CoreLib.dll:System.Object System.Threading.ThreadBlockingInfo/Scope::_object System.Private.CoreLib.dll:System.Object System.Threading.TimerQueueTimer::_notifyWhenNoCallbacksRunning @@ -11001,8 +11013,8 @@ System.Private.CoreLib.dll:System.PlatformNotSupportedException..ctor(System.Str System.Private.CoreLib.dll:System.Predicate`1 System.Private.CoreLib.dll:System.Predicate`1..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Predicate`1.Invoke(T) -System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__219_0 -System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__138_0 +System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__224_0 +System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__143_0 System.Private.CoreLib.dll:System.Random System.Private.CoreLib.dll:System.Random/ImplBase System.Private.CoreLib.dll:System.Random/ImplBase..ctor() @@ -13207,10 +13219,13 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureC System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureExecutionContext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CompletedTask(System.Threading.Tasks.Task) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CompletedTaskResult`1(System.Threading.Tasks.Task`1) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk`1() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk`1() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeRuntimeAsyncTask`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&, System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinishSuspensionNoContinuationContext(System.Threading.ExecutionContext&, System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinishSuspensionWithContinuationContext(System.Object&, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&, System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContexts(System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContextsOnSuspension(System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreExecutionContext(System.Threading.ExecutionContext) @@ -13225,6 +13240,13 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ValueTas System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState System.Runtime.CompilerServices.AsyncHelpers::t_runtimeAsyncAwaitState System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState.CaptureContexts() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState.Pop() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState.Push(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState*) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState.Pop(System.Threading.Thread) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState.Push(System.Threading.Thread) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState* System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::StackState +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState* System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::Next System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1..cctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1..ctor() @@ -13232,18 +13254,18 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeA System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.ExecuteFromThreadPool(System.Threading.Thread) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.GetContinuationAction() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.GetResultStorage() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.HandleSuspended() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.HandleSuspended(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.MoveContinuationState() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.QueueContinuationFollowUpActionIfNecessary(System.Runtime.CompilerServices.Continuation) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.SetContinuationState(System.Runtime.CompilerServices.Continuation) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.System.Threading.Tasks.ITaskCompletionAction.get_InvokeMayRunArbitraryCode() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.System.Threading.Tasks.ITaskCompletionAction.Invoke(System.Threading.Tasks.Task) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.UnwindToPossibleHandler(System.Runtime.CompilerServices.Continuation, System.Exception) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.UnwindToPossibleHandler(System.Runtime.CompilerServices.Continuation, System.Exception, System.UInt32&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c..cctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c..ctor() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__16_0(System.Object) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__16_1(System.Object) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__18_0(System.Object) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__18_1(System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c::<>9 System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore @@ -13341,7 +13363,6 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox_Nul System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox_TypeTest_Helper(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox_TypeTest(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox(System.Runtime.CompilerServices.MethodTable*, System.Object) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.WriteBarrier(System.Object&, System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastResult System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastResult System.Runtime.CompilerServices.CastResult::CanCast System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastResult System.Runtime.CompilerServices.CastResult::CannotCast @@ -13497,9 +13518,6 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.DynamicStaticsInfo Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.DynamicStaticsInfo.MaskStaticsPointer(System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.EntryInfo System.Private.CoreLib.dll:System.Runtime.CompilerServices.EntryInfo System.Runtime.CompilerServices.GenericCache`2/Entry::_info -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExecutionAndSyncBlockStore -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExecutionAndSyncBlockStore.Pop() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExecutionAndSyncBlockStore.Push() System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExtensionAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExtensionAttribute..ctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.GenericCache`2 @@ -13538,7 +13556,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox.MoveNext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IConfiguredTaskAwaiter System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::CriticalNotifier +System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::CriticalNotifier System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion.UnsafeOnCompleted(System.Action) System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.CallClassConstructor(System.Void*, System.Void*, System.Exception*) @@ -13555,7 +13573,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.Store(System.Byte*, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.StoreSelectedScalar(System.UInt32*, System.Runtime.Intrinsics.Vector64`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd/Arm64 @@ -14752,6 +14772,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions.Store`2(TVector, T*) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AddSaturate`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AndNot`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.As`2(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AsByte`1(System.Runtime.Intrinsics.Vector128`1) @@ -14799,6 +14821,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GetElementUnsafe` System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThan`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanAny`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfFirstMatch`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNaN`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNegative`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.LastIndexOf`1(System.Runtime.Intrinsics.Vector128`1, T) @@ -14894,11 +14918,11 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Equals`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.EqualsAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector256`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetLower`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GreaterThanAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNaN`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNegative`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.LastIndexOf`1(System.Runtime.Intrinsics.Vector256`1, T) @@ -14971,10 +14995,10 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Equals`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.EqualsAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector512`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GreaterThanAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNaN`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNegative`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.LastIndexOf`1(System.Runtime.Intrinsics.Vector512`1, T) @@ -15031,12 +15055,15 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.ToString(System System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1 System.Runtime.Intrinsics.Vector512`1::Zero() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AddSaturate`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AndNot`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.As`2(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsByte`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt32`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt32`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.ConditionalSelect`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Int16, System.Int16, System.Int16, System.Int16) @@ -15054,6 +15081,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GetElementUnsafe`1 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThan`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanAny`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNaN`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNegative`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.LastIndexOf`1(System.Runtime.Intrinsics.Vector64`1, T) @@ -16810,6 +16838,8 @@ System.Private.CoreLib.dll:System.String[] System.Number::s_negPercentFormats System.Private.CoreLib.dll:System.String[] System.Number::s_posCurrencyFormats System.Private.CoreLib.dll:System.String[] System.Number::s_posPercentFormats System.Private.CoreLib.dll:System.String[] System.Number::s_smallNumberCache +System.Private.CoreLib.dll:System.String/SearchValuesStorage +System.Private.CoreLib.dll:System.String/SearchValuesStorage..cctor() System.Private.CoreLib.dll:System.StringComparer System.Private.CoreLib.dll:System.StringComparer System.StringComparer::Ordinal() System.Private.CoreLib.dll:System.StringComparer System.StringComparer::OrdinalIgnoreCase() @@ -16899,11 +16929,13 @@ System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1 System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallConvertToManaged|3_0(System.Byte&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallConvertToUnmanaged|1_0(System.Byte&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallFree|4_0(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) +System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallIsBlittable|5_0() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.ConvertToManaged(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.ConvertToUnmanaged(T, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.ConvertToUnmanagedCore(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.Free(T, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.FreeCore(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) +System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.GetIsBlittable() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods..cctor() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.BlittableConvertToManaged(System.Byte&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) @@ -16912,6 +16944,7 @@ System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.Bli System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_ConvertToManaged() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_ConvertToUnmanaged() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_Free() +System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_IsBlittable() System.Private.CoreLib.dll:System.StubHelpers.MngdFixedArrayMarshaler System.Private.CoreLib.dll:System.StubHelpers.MngdFixedArrayMarshaler.ClearNativeContents(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.StubHelpers.MngdFixedArrayMarshaler.ClearNativeContents(System.IntPtr, System.Object&, System.IntPtr) @@ -16952,11 +16985,13 @@ System.Private.CoreLib.dll:System.StubHelpers.SafeHandleCleanupWorkListElement.. System.Private.CoreLib.dll:System.StubHelpers.SafeHandleCleanupWorkListElement.AddRef() System.Private.CoreLib.dll:System.StubHelpers.SafeHandleCleanupWorkListElement.DestroyCore() System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1 +System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1..cctor() System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.ConvertToManaged(T&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.ConvertToUnmanaged(T&, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.ConvertToUnmanagedCore(T&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.Free(T&, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.FreeCore(T&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) +System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.InitIsBlittable() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers System.Private.CoreLib.dll:System.StubHelpers.StubHelpers..cctor() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.g____PInvoke|18_0(System.Runtime.CompilerServices.QCallTypeHandle, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*) @@ -17728,8 +17763,8 @@ System.Private.CoreLib.dll:System.Threading.EventWaitHandle.ValidateMode(System. System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Private.CoreLib.dll:System.Threading.ExecutionContext Microsoft.Win32.SafeHandles.SafeFileHandle/ThreadPoolValueTaskSource::_context System.Private.CoreLib.dll:System.Threading.ExecutionContext System.IO.Stream/ReadWriteTask::_context -System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::ExecutionContext -System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.ExecutionAndSyncBlockStore::_previousExecutionCtx +System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::LeafExecutionContext +System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::RootExecutionContext System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Threading.CancellationTokenSource/CallbackNode::ExecutionContext System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Threading.ExecutionContext::Default System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Threading.ExecutionContext::DefaultFlowSuppressed @@ -17750,6 +17785,7 @@ System.Private.CoreLib.dll:System.Threading.ExecutionContext.CaptureForRestore() System.Private.CoreLib.dll:System.Threading.ExecutionContext.CaptureForSuspension(System.Threading.Thread) System.Private.CoreLib.dll:System.Threading.ExecutionContext.Dispose() System.Private.CoreLib.dll:System.Threading.ExecutionContext.get_HasChangeNotifications() +System.Private.CoreLib.dll:System.Threading.ExecutionContext.get_InstanceIsFlowSuppressed() System.Private.CoreLib.dll:System.Threading.ExecutionContext.get_IsDefault() System.Private.CoreLib.dll:System.Threading.ExecutionContext.GetLocalValue(System.Threading.IAsyncLocal) System.Private.CoreLib.dll:System.Threading.ExecutionContext.IsFlowSuppressed() @@ -18229,7 +18265,7 @@ System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1::s_postCallback System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.CancellationTokenSource/<>c::<>9__36_0 System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.Tasks.SynchronizationContextAwaitTaskContinuation::s_postCallback -System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.Tasks.Task/<>c::<>9__131_0 +System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.Tasks.Task/<>c::<>9__136_0 System.Private.CoreLib.dll:System.Threading.SendOrPostCallback..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Threading.SendOrPostCallback.Invoke(System.Object) System.Private.CoreLib.dll:System.Threading.SpinLock @@ -18259,8 +18295,8 @@ System.Private.CoreLib.dll:System.Threading.StackCrawlMark System.Threading.Stac System.Private.CoreLib.dll:System.Threading.StackCrawlMark System.Threading.StackCrawlMark::LookForMyCallersCaller System.Private.CoreLib.dll:System.Threading.StackCrawlMark System.Threading.StackCrawlMark::LookForThread System.Private.CoreLib.dll:System.Threading.SynchronizationContext -System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::SynchronizationContext -System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.ExecutionAndSyncBlockStore::_previousSyncCtx +System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::LeafSynchronizationContext +System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::RootSynchronizationContext System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Threading.CancellationTokenSource/CallbackNode::SynchronizationContext System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Threading.SynchronizationContext::Current() System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Threading.Tasks.SynchronizationContextAwaitTaskContinuation::m_syncContext @@ -18283,11 +18319,6 @@ System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor() System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor(System.String) -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Canceled -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Completed -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Error -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Started System.Private.CoreLib.dll:System.Threading.Tasks.AwaitTaskContinuation System.Private.CoreLib.dll:System.Threading.Tasks.AwaitTaskContinuation..cctor() System.Private.CoreLib.dll:System.Threading.Tasks.AwaitTaskContinuation..ctor(System.Action, System.Boolean) @@ -18343,14 +18374,10 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction System.Threading.Tasks.CompletionActionInvoker::m_action System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction.get_InvokeMayRunArbitraryCode() System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction.Invoke(System.Threading.Tasks.Task) -System.Private.CoreLib.dll:System.Threading.Tasks.IValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.IValueTaskSourceNotifier System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::ValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.IValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.CapturedSchedulerAndExecutionContext System.Private.CoreLib.dll:System.Threading.Tasks.Sources.CapturedSchedulerAndExecutionContext..ctor(System.Object, System.Threading.ExecutionContext) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask::_source -System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier::_valueTaskSource System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource.GetResult(System.Int16) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource.GetStatus(System.Int16) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource.OnCompleted(System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) @@ -18359,7 +18386,6 @@ System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1.Get System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1.GetStatus(System.Int16) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1.OnCompleted(System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::_source -System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1 System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier::_valueTaskSource System.Private.CoreLib.dll:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1 System.Private.CoreLib.dll:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.get_Version() System.Private.CoreLib.dll:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.GetResult(System.Int16) @@ -18403,7 +18429,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.SynchronizationContextAwaitTas System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Private.CoreLib.dll:System.Threading.Tasks.Task modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.ValueTask::s_canceledTask System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.AsyncDispatcherInfo::CurrentTask -System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::TaskNotifier +System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::TaskNotifier System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::m_task System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.TaskAwaiter::m_task System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Threading.Tasks.CompletionActionInvoker::m_completingTask @@ -18422,7 +18448,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor() System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor(System.Boolean, System.Threading.Tasks.TaskCreationOptions, System.Threading.CancellationToken) System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor(System.Delegate, System.Object, System.Threading.Tasks.Task, System.Threading.CancellationToken, System.Threading.Tasks.TaskCreationOptions, System.Threading.Tasks.InternalTaskOptions, System.Threading.Tasks.TaskScheduler) System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor(System.Object, System.Threading.Tasks.TaskCreationOptions, System.Boolean) -System.Private.CoreLib.dll:System.Threading.Tasks.Task.g__InitializeContingentProperties|84_0() +System.Private.CoreLib.dll:System.Threading.Tasks.Task.g__InitializeContingentProperties|89_0() System.Private.CoreLib.dll:System.Threading.Tasks.Task.AddCompletionAction(System.Threading.Tasks.ITaskCompletionAction, System.Boolean) System.Private.CoreLib.dll:System.Threading.Tasks.Task.AddException(System.Object, System.Boolean) System.Private.CoreLib.dll:System.Threading.Tasks.Task.AddException(System.Object) @@ -18534,13 +18560,13 @@ System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c System.Threading.Tasks.Task/<>c::<>9 System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c..cctor() System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c..ctor() -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.<.cctor>b__296_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__219_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__39_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__39_1(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__138_0(System.Threading.Tasks.Task) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__131_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__131_1(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.<.cctor>b__301_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__224_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__44_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__44_1(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__143_0(System.Threading.Tasks.Task) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__136_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__136_1(System.Object) System.Private.CoreLib.dll:System.Threading.Tasks.Task/CancellationPromise`1 System.Private.CoreLib.dll:System.Threading.Tasks.Task/CancellationPromise`1..ctor(System.Threading.Tasks.Task, System.UInt32, System.TimeProvider, System.Threading.CancellationToken) System.Private.CoreLib.dll:System.Threading.Tasks.Task/CancellationPromise`1.Cleanup() @@ -18734,7 +18760,6 @@ System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskCompleted(S System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskWaitBegin(System.Int32, System.Int32, System.Int32, System.Threading.Tasks.TplEventSource/TaskWaitBehavior, System.Int32) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskWaitContinuationComplete(System.Int32) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskWaitEnd(System.Int32, System.Int32, System.Int32) -System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TraceOperationEnd(System.Int32, System.Threading.Tasks.AsyncCausalityStatus) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TraceSynchronousWorkBegin(System.Int32, System.Threading.Tasks.CausalitySynchronousWork) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TraceSynchronousWorkEnd(System.Threading.Tasks.CausalitySynchronousWork) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource/TaskWaitBehavior @@ -18765,6 +18790,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.get_CompletedTask() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.get_IsCompleted() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.GetHashCode() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.GetTaskForValueTaskSource(System.Threading.Tasks.Sources.IValueTaskSource) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.OnCompleted(System.Object, System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.ThrowIfCompletedUnsuccessfully() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask..cctor() @@ -18775,9 +18801,6 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTas System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask/<>c..cctor() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask/<>c..ctor() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask/<>c.<.cctor>b__4_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier..ctor(System.Threading.Tasks.Sources.IValueTaskSource, System.Int16) -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1..ctor(System.Object, TResult, System.Int16, System.Boolean) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1..ctor(System.Threading.Tasks.Sources.IValueTaskSource`1, System.Int16) @@ -18793,6 +18816,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.get_IsCompletedSuc System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.get_Result() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.GetHashCode() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.GetTaskForValueTaskSource(System.Threading.Tasks.Sources.IValueTaskSource`1) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.OnCompleted(System.Object, System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.ToString() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask..cctor() @@ -18803,15 +18827,18 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsT System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c..ctor() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c.<.cctor>b__4_0(System.Object) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c::<>9 -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier..ctor(System.Threading.Tasks.Sources.IValueTaskSource`1, System.Int16) -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1::Task() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1::_value System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1/ConfiguredValueTaskAwaiter::_value +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::ValueTaskSourceNotifier +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier System.Threading.Tasks.ValueTaskSourceNotifier::t_instance +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier..ctor(System.Object, method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags), System.Int16) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier.GetInstance(System.Object, method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags), System.Int16) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.VoidTaskResult System.Private.CoreLib.dll:System.Threading.Thread -System.Private.CoreLib.dll:System.Threading.Thread System.Runtime.CompilerServices.ExecutionAndSyncBlockStore::_thread +System.Private.CoreLib.dll:System.Threading.Thread System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::CurrentThread System.Private.CoreLib.dll:System.Threading.Thread System.Threading.AsyncFlowControl::_thread System.Private.CoreLib.dll:System.Threading.Thread System.Threading.Thread::CurrentThread() System.Private.CoreLib.dll:System.Threading.Thread System.Threading.Thread::CurrentThreadAssumedInitialized() @@ -19119,7 +19146,7 @@ System.Private.CoreLib.dll:System.Threading.Volatile/VolatileUIntPtr System.Private.CoreLib.dll:System.Threading.WaitCallback System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.QueueUserWorkItemCallback::_callback System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.QueueUserWorkItemCallbackDefaultContext::_callback -System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.Tasks.Task/<>c::<>9__131_1 +System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.Tasks.Task/<>c::<>9__136_1 System.Private.CoreLib.dll:System.Threading.WaitCallback..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Threading.WaitCallback.Invoke(System.Object) System.Private.CoreLib.dll:System.Threading.WaitHandle @@ -19339,6 +19366,7 @@ System.Private.CoreLib.dll:System.ThrowHelper.ThrowStartIndexArgumentOutOfRange_ System.Private.CoreLib.dll:System.ThrowHelper.ThrowSynchronizationLockException_LockExit() System.Private.CoreLib.dll:System.ThrowHelper.ThrowUnexpectedStateForKnownCallback(System.Object) System.Private.CoreLib.dll:System.ThrowHelper.ThrowUnreachableException() +System.Private.CoreLib.dll:System.ThrowHelper.ThrowValueArgumentOutOfRange_NeedNonNegNumException() System.Private.CoreLib.dll:System.TimeOnly System.Private.CoreLib.dll:System.TimeOnly.CompareTo(System.Object) System.Private.CoreLib.dll:System.TimeOnly.CompareTo(System.TimeOnly) @@ -19523,7 +19551,7 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetLocalTzFile(out System.Byte System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetTransitionsForYear(System.Int32, out System.ValueTuple`2&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetUtcOffset(System.DateTime, out System.TimeSpan&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryLoadTzFile(System.String, System.Byte[]&, System.String&) -System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.DateTime&) +System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.Int64&) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CalculateTransitionOffsetFromBase(System.TimeSpan, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateAdjustmentRuleForPosixFormat(System.String, System.DateTime, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateTransitionTimeFromPosixRule(System.ReadOnlySpan`1, System.ReadOnlySpan`1) @@ -19547,7 +19575,6 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToInt64(System.Byte[], Syste System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToUnixTime(System.Byte[], System.Int32, System.TimeZoneInfo/TZVersion) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_UnixTimeToDateTime(System.Int64) System.Private.CoreLib.dll:System.TimeZoneInfo.UtcOffsetOutOfRange(System.TimeSpan) -System.Private.CoreLib.dll:System.TimeZoneInfo.UtcToLocal(System.DateTime, out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo.ValidateTimeZoneInfo(System.String, System.TimeSpan, System.TimeZoneInfo/AdjustmentRule[], out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.TimeZoneInfo/<>c::<>9 @@ -19946,10 +19973,10 @@ System.Private.CoreLib.dll:System.UInt128 System.UInt128::One() System.Private.CoreLib.dll:System.UInt128 System.UInt128::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt128 System.UInt128::Zero() System.Private.CoreLib.dll:System.UInt128..ctor(System.UInt64, System.UInt64) -System.Private.CoreLib.dll:System.UInt128.g__AddDivisor|112_0(System.Span`1, System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.UInt128.g__DivideGuessTooBig|112_1(System.UInt64, System.UInt64, System.UInt32, System.UInt32, System.UInt32) -System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|112_2(System.UInt128, System.UInt128) -System.Private.CoreLib.dll:System.UInt128.g__SubtractDivisor|112_3(System.Span`1, System.ReadOnlySpan`1, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64Bits|83_1(System.UInt128, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64BitsCore|83_2(System.UInt64, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide96BitsBy64Bits|83_3(System.UInt64, System.UInt32, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|83_0(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.UInt128) System.Private.CoreLib.dll:System.UInt128.CreateSaturating`1(TOther) @@ -20432,6 +20459,7 @@ System.Private.CoreLib.dll:System.UInt64.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt64.CompareTo(System.UInt64) System.Private.CoreLib.dll:System.UInt64.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt64.DivRem(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.Equals(System.Object) System.Private.CoreLib.dll:System.UInt64.Equals(System.UInt64) System.Private.CoreLib.dll:System.UInt64.GetHashCode() @@ -21489,7 +21517,6 @@ System.Reflection.Metadata.dll:System.Reflection.Internal.PooledStringBuilder/<> System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions.GetAndValidateSize(System.IO.Stream, System.Int32, System.String) System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions.ReadExactly(System.IO.Stream, System.Byte*, System.Int32) -System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions.TryReadAll(System.IO.Stream, System.Span`1) System.Reflection.Metadata.dll:System.Reflection.Internal.StreamMemoryBlockProvider System.Reflection.Metadata.dll:System.Reflection.Internal.StreamMemoryBlockProvider..ctor(System.IO.Stream, System.Int64, System.Int32, System.Boolean) System.Reflection.Metadata.dll:System.Reflection.Internal.StreamMemoryBlockProvider.CreateMemoryMappedFileBlock(System.Int64, System.Int32) diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-size.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-size.txt index 4c77f3aa0f46..a94bebfbfee5 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-size.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-size.txt @@ -1,14 +1,14 @@ -AppBundleSize: 10,464,199 bytes (10,218.9 KB = 10.0 MB) +AppBundleSize: 10,487,775 bytes (10,242.0 KB = 10.0 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/_CodeSignature/CodeResources: 4,951 bytes (4.8 KB = 0.0 MB) -Contents/Info.plist: 1,119 bytes (1.1 KB = 0.0 MB) -Contents/MacOS/SizeTestApp: 242,320 bytes (236.6 KB = 0.2 MB) -Contents/MonoBundle/libcoreclr.dylib: 6,386,608 bytes (6,236.9 KB = 6.1 MB) +Contents/Info.plist: 1,127 bytes (1.1 KB = 0.0 MB) +Contents/MacOS/SizeTestApp: 242,528 bytes (236.8 KB = 0.2 MB) +Contents/MonoBundle/libcoreclr.dylib: 6,385,264 bytes (6,235.6 KB = 6.1 MB) Contents/MonoBundle/libSystem.Globalization.Native.dylib: 110,432 bytes (107.8 KB = 0.1 MB) -Contents/MonoBundle/libSystem.IO.Compression.Native.dylib: 1,442,208 bytes (1,408.4 KB = 1.4 MB) -Contents/MonoBundle/libSystem.Native.dylib: 146,768 bytes (143.3 KB = 0.1 MB) -Contents/MonoBundle/libSystem.Net.Security.Native.dylib: 71,120 bytes (69.5 KB = 0.1 MB) -Contents/MonoBundle/libSystem.Security.Cryptography.Native.Apple.dylib: 204,768 bytes (200.0 KB = 0.2 MB) +Contents/MonoBundle/libSystem.IO.Compression.Native.dylib: 1,442,336 bytes (1,408.5 KB = 1.4 MB) +Contents/MonoBundle/libSystem.Native.dylib: 147,744 bytes (144.3 KB = 0.1 MB) +Contents/MonoBundle/libSystem.Net.Security.Native.dylib: 71,232 bytes (69.6 KB = 0.1 MB) +Contents/MonoBundle/libSystem.Security.Cryptography.Native.Apple.dylib: 229,280 bytes (223.9 KB = 0.2 MB) Contents/MonoBundle/Microsoft.MacCatalyst.dll: 102,400 bytes (100.0 KB = 0.1 MB) Contents/MonoBundle/runtimeconfig.bin: 1,481 bytes (1.4 KB = 0.0 MB) Contents/MonoBundle/SizeTestApp.dll: 7,680 bytes (7.5 KB = 0.0 MB) @@ -16,8 +16,8 @@ Contents/MonoBundle/System.Collections.Immutable.dll: 14,848 bytes (14.5 KB = 0. Contents/MonoBundle/System.Diagnostics.StackTrace.dll: 8,192 bytes (8.0 KB = 0.0 MB) Contents/MonoBundle/System.IO.Compression.dll: 22,528 bytes (22.0 KB = 0.0 MB) Contents/MonoBundle/System.IO.MemoryMappedFiles.dll: 22,016 bytes (21.5 KB = 0.0 MB) -Contents/MonoBundle/System.Private.CoreLib.dll: 1,576,960 bytes (1,540.0 KB = 1.5 MB) +Contents/MonoBundle/System.Private.CoreLib.dll: 1,579,520 bytes (1,542.5 KB = 1.5 MB) Contents/MonoBundle/System.Reflection.Metadata.dll: 84,480 bytes (82.5 KB = 0.1 MB) Contents/MonoBundle/System.Runtime.dll: 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.InteropServices.dll: 8,192 bytes (8.0 KB = 0.0 MB) +Contents/MonoBundle/System.Runtime.InteropServices.dll: 4,608 bytes (4.5 KB = 0.0 MB) Contents/PkgInfo: 8 bytes (0.0 KB = 0.0 MB) diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-preservedapis.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-preservedapis.txt index 3166fc0d9998..f9c6e4fe0beb 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-preservedapis.txt @@ -2398,6 +2398,7 @@ System.Private.CoreLib.dll:method System.Void *(System.Byte&,System.Byte*,System System.Private.CoreLib.dll:method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&) System.StubHelpers.LayoutClassMarshaler`1/Methods::Free() System.Private.CoreLib.dll:method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&) System.StubHelpers.StubHelpers/StructureMarshalInfo::ConvertToManaged System.Private.CoreLib.dll:method System.Void *(System.Byte&) System.RuntimeType/ActivatorCache::_pfnValueCtor +System.Private.CoreLib.dll:method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Threading.Tasks.ValueTaskSourceNotifier::_onCompleted System.Private.CoreLib.dll:method System.Void *(System.Object) System.RuntimeType/ActivatorCache::_pfnRefCtor System.Private.CoreLib.dll:method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*) System.Runtime.CompilerServices.PortableTailCallFrame::NextCall System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle @@ -2514,8 +2515,8 @@ System.Private.CoreLib.dll:System.Action`1 System.Threading.Manua System.Private.CoreLib.dll:System.Action`1 System.Threading.SemaphoreSlim::s_cancellationTokenCanceledEventHandler System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1::_continuation System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Sources.ManualResetValueTaskSourceCoreShared::s_sentinel -System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__39_0 -System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__39_1 +System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__44_0 +System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__44_1 System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation/<>c::<>9__2_0 System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask::s_completionAction System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::s_completionAction @@ -2814,6 +2815,8 @@ System.Private.CoreLib.dll:System.BitConverter.Int32BitsToSingle(System.Int32) System.Private.CoreLib.dll:System.BitConverter.Int64BitsToDouble(System.Int64) System.Private.CoreLib.dll:System.BitConverter.SingleToInt32Bits(System.Single) System.Private.CoreLib.dll:System.BitConverter.SingleToUInt32Bits(System.Single) +System.Private.CoreLib.dll:System.BitConverter.ToInt32(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.BitConverter.ToUInt32(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.BitConverter.UInt16BitsToHalf(System.UInt16) System.Private.CoreLib.dll:System.BitConverter.UInt32BitsToSingle(System.UInt32) System.Private.CoreLib.dll:System.BitConverter.UInt64BitsToDouble(System.UInt64) @@ -3203,7 +3206,9 @@ System.Private.CoreLib.dll:System.Boolean System.RuntimeType/RuntimeTypeCache/Me System.Private.CoreLib.dll:System.Boolean System.RuntimeTypeHandle/IntroducedMethodEnumerator::_firstCall System.Private.CoreLib.dll:System.Boolean System.SByte::System.IBinaryIntegerParseAndFormatInfo.IsSigned() System.Private.CoreLib.dll:System.Boolean System.Span`1::IsEmpty() +System.Private.CoreLib.dll:System.Boolean System.StubHelpers.LayoutClassMarshaler`1/Methods::IsBlittable() System.Private.CoreLib.dll:System.Boolean System.StubHelpers.SafeHandleCleanupWorkListElement::m_owned +System.Private.CoreLib.dll:System.Boolean System.StubHelpers.StructureMarshaler`1::s_isBlittable System.Private.CoreLib.dll:System.Boolean System.Text.Decoder::InternalHasFallbackBuffer() System.Private.CoreLib.dll:System.Boolean System.Text.DecoderNLS::_throwOnOverflow System.Private.CoreLib.dll:System.Boolean System.Text.DecoderNLS::MustFlush() @@ -3226,6 +3231,7 @@ System.Private.CoreLib.dll:System.Boolean System.Threading.CancellationTokenSour System.Private.CoreLib.dll:System.Boolean System.Threading.CancellationTokenSource::IsCancellationRequested() System.Private.CoreLib.dll:System.Boolean System.Threading.Condition/Waiter::signalled System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::HasChangeNotifications() +System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::InstanceIsFlowSuppressed() System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::IsDefault() System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::m_isDefault System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::m_isFlowSuppressed @@ -3513,7 +3519,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/ContainsAnyRes System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default.PackSources(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1 @@ -3522,7 +3528,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResu System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IOptimizations @@ -3533,7 +3539,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper` System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Ssse3AndWasmHandleZeroInNeedle @@ -3624,6 +3630,8 @@ System.Private.CoreLib.dll:System.Buffers.SearchValues`1.IndexOfAny(System.ReadO System.Private.CoreLib.dll:System.Buffers.SearchValues`1.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.SearchValues`1 System.Globalization.CompareInfo::s_nonSpecialAsciiChars System.Private.CoreLib.dll:System.Buffers.SearchValues`1 System.Reflection.Metadata.TypeNameParserHelpers::s_endOfFullTypeNameDelimiterChars +System.Private.CoreLib.dll:System.Buffers.SearchValues`1 System.String/SearchValuesStorage::NewLineChars +System.Private.CoreLib.dll:System.Buffers.SearchValues`1 System.String/SearchValuesStorage::WhiteSpaceChars System.Private.CoreLib.dll:System.Buffers.SharedArrayPool`1 System.Private.CoreLib.dll:System.Buffers.SharedArrayPool`1..ctor() System.Private.CoreLib.dll:System.Buffers.SharedArrayPool`1.CreatePerCorePartitions(System.Int32) @@ -5424,6 +5432,7 @@ System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.AllowNullAttribute..c System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Max(System.Object) +System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Min(System.Object) System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes @@ -8065,10 +8074,9 @@ System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.Sources.ManualRes System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1::Version() System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask::_token System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask::_token -System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier::_token System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1::_token System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::_token -System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier::_token +System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTaskSourceNotifier::_token System.Private.CoreLib.dll:System.Int16.CompareTo(System.Int16) System.Private.CoreLib.dll:System.Int16.CompareTo(System.Object) System.Private.CoreLib.dll:System.Int16.CreateSaturating`1(TOther) @@ -8876,7 +8884,6 @@ System.Private.CoreLib.dll:System.Int32 System.Threading.SpinWait::_count System.Private.CoreLib.dll:System.Int32 System.Threading.SpinWait::Count() System.Private.CoreLib.dll:System.Int32 System.Threading.SpinWait::SpinCountForSpinBeforeWait System.Private.CoreLib.dll:System.Int32 System.Threading.StackCrawlMark::value__ -System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.AsyncCausalityStatus::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.CausalitySynchronousWork::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.ConfigureAwaitOptions::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.InternalTaskOptions::value__ @@ -8952,6 +8959,7 @@ System.Private.CoreLib.dll:System.Int32.Equals(System.Object) System.Private.CoreLib.dll:System.Int32.GetHashCode() System.Private.CoreLib.dll:System.Int32.GetTypeCode() System.Private.CoreLib.dll:System.Int32.IsNegative(System.Int32) +System.Private.CoreLib.dll:System.Int32.Log2(System.Int32) System.Private.CoreLib.dll:System.Int32.Max(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Min(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -10207,8 +10215,8 @@ System.Private.CoreLib.dll:System.Memory`1.Pin() System.Private.CoreLib.dll:System.Memory`1.Slice(System.Int32) System.Private.CoreLib.dll:System.Memory`1.ToString() System.Private.CoreLib.dll:System.MemoryExtensions -System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|273_0(System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|287_0(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|278_0(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|292_0(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.AsMemory`1(T[], System.Int32, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32) @@ -10240,6 +10248,7 @@ System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAny`1(System.ReadOnlyS System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyExcept`1(System.ReadOnlySpan`1, T) System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyExceptInRange`1(System.ReadOnlySpan`1, T, T) System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyInRange`1(System.ReadOnlySpan`1, T, T) +System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyWhiteSpace(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.LastIndexOf`1(System.ReadOnlySpan`1, T) System.Private.CoreLib.dll:System.MemoryExtensions.Overlaps`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.SequenceCompareTo`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1) @@ -10801,7 +10810,9 @@ System.Private.CoreLib.dll:System.Object System.ComAwareWeakReference/ComInfo::_ System.Private.CoreLib.dll:System.Object System.Delegate::_methodBase System.Private.CoreLib.dll:System.Object System.Delegate::_target System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Max() +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Min() System.Private.CoreLib.dll:System.Object System.Diagnostics.EditAndContinueHelper::_objectReference System.Private.CoreLib.dll:System.Object System.Diagnostics.StackFrameHelper::dynamicMethods System.Private.CoreLib.dll:System.Object System.Diagnostics.StackFrameHelper::s_stackTraceSymbolsCache @@ -10875,6 +10886,7 @@ System.Private.CoreLib.dll:System.Object System.Threading.Tasks.TaskToAsyncResul System.Private.CoreLib.dll:System.Object System.Threading.Tasks.TaskToAsyncResult/TaskAsyncResult::AsyncState() System.Private.CoreLib.dll:System.Object System.Threading.Tasks.ValueTask::_obj System.Private.CoreLib.dll:System.Object System.Threading.Tasks.ValueTask`1::_obj +System.Private.CoreLib.dll:System.Object System.Threading.Tasks.ValueTaskSourceNotifier::_source System.Private.CoreLib.dll:System.Object System.Threading.Thread/StartHelper::_startArg System.Private.CoreLib.dll:System.Object System.Threading.ThreadBlockingInfo/Scope::_object System.Private.CoreLib.dll:System.Object System.Threading.TimerQueueTimer::_notifyWhenNoCallbacksRunning @@ -11001,8 +11013,8 @@ System.Private.CoreLib.dll:System.PlatformNotSupportedException..ctor(System.Str System.Private.CoreLib.dll:System.Predicate`1 System.Private.CoreLib.dll:System.Predicate`1..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Predicate`1.Invoke(T) -System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__219_0 -System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__138_0 +System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__224_0 +System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__143_0 System.Private.CoreLib.dll:System.Random System.Private.CoreLib.dll:System.Random/ImplBase System.Private.CoreLib.dll:System.Random/ImplBase..ctor() @@ -13207,10 +13219,13 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureC System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureExecutionContext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CompletedTask(System.Threading.Tasks.Task) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CompletedTaskResult`1(System.Threading.Tasks.Task`1) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk`1() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk`1() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeRuntimeAsyncTask`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&, System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinishSuspensionNoContinuationContext(System.Threading.ExecutionContext&, System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinishSuspensionWithContinuationContext(System.Object&, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&, System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContexts(System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContextsOnSuspension(System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreExecutionContext(System.Threading.ExecutionContext) @@ -13225,6 +13240,13 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ValueTas System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState System.Runtime.CompilerServices.AsyncHelpers::t_runtimeAsyncAwaitState System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState.CaptureContexts() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState.Pop() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState.Push(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState*) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState.Pop(System.Threading.Thread) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState.Push(System.Threading.Thread) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState* System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::StackState +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState* System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::Next System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1..cctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1..ctor() @@ -13232,18 +13254,18 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeA System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.ExecuteFromThreadPool(System.Threading.Thread) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.GetContinuationAction() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.GetResultStorage() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.HandleSuspended() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.HandleSuspended(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.MoveContinuationState() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.QueueContinuationFollowUpActionIfNecessary(System.Runtime.CompilerServices.Continuation) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.SetContinuationState(System.Runtime.CompilerServices.Continuation) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.System.Threading.Tasks.ITaskCompletionAction.get_InvokeMayRunArbitraryCode() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.System.Threading.Tasks.ITaskCompletionAction.Invoke(System.Threading.Tasks.Task) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.UnwindToPossibleHandler(System.Runtime.CompilerServices.Continuation, System.Exception) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.UnwindToPossibleHandler(System.Runtime.CompilerServices.Continuation, System.Exception, System.UInt32&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c..cctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c..ctor() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__16_0(System.Object) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__16_1(System.Object) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__18_0(System.Object) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__18_1(System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c::<>9 System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore @@ -13341,7 +13363,6 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox_Nul System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox_TypeTest_Helper(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox_TypeTest(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox(System.Runtime.CompilerServices.MethodTable*, System.Object) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.WriteBarrier(System.Object&, System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastResult System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastResult System.Runtime.CompilerServices.CastResult::CanCast System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastResult System.Runtime.CompilerServices.CastResult::CannotCast @@ -13497,9 +13518,6 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.DynamicStaticsInfo Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.DynamicStaticsInfo.MaskStaticsPointer(System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.EntryInfo System.Private.CoreLib.dll:System.Runtime.CompilerServices.EntryInfo System.Runtime.CompilerServices.GenericCache`2/Entry::_info -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExecutionAndSyncBlockStore -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExecutionAndSyncBlockStore.Pop() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExecutionAndSyncBlockStore.Push() System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExtensionAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExtensionAttribute..ctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.GenericCache`2 @@ -13538,7 +13556,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox.MoveNext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IConfiguredTaskAwaiter System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::CriticalNotifier +System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::CriticalNotifier System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion.UnsafeOnCompleted(System.Action) System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.CallClassConstructor(System.Void*, System.Void*, System.Exception*) @@ -13555,7 +13573,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.Store(System.Byte*, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.StoreSelectedScalar(System.UInt32*, System.Runtime.Intrinsics.Vector64`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd/Arm64 @@ -14752,6 +14772,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions.Store`2(TVector, T*) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AddSaturate`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AndNot`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.As`2(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AsByte`1(System.Runtime.Intrinsics.Vector128`1) @@ -14799,6 +14821,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GetElementUnsafe` System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThan`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanAny`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfFirstMatch`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNaN`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNegative`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.LastIndexOf`1(System.Runtime.Intrinsics.Vector128`1, T) @@ -14894,11 +14918,11 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Equals`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.EqualsAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector256`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetLower`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GreaterThanAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNaN`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNegative`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.LastIndexOf`1(System.Runtime.Intrinsics.Vector256`1, T) @@ -14971,10 +14995,10 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Equals`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.EqualsAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector512`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GreaterThanAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNaN`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNegative`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.LastIndexOf`1(System.Runtime.Intrinsics.Vector512`1, T) @@ -15031,12 +15055,15 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.ToString(System System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1 System.Runtime.Intrinsics.Vector512`1::Zero() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AddSaturate`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AndNot`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.As`2(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsByte`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt32`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt32`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.ConditionalSelect`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Int16, System.Int16, System.Int16, System.Int16) @@ -15054,6 +15081,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GetElementUnsafe`1 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThan`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanAny`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNaN`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNegative`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.LastIndexOf`1(System.Runtime.Intrinsics.Vector64`1, T) @@ -16810,6 +16838,8 @@ System.Private.CoreLib.dll:System.String[] System.Number::s_negPercentFormats System.Private.CoreLib.dll:System.String[] System.Number::s_posCurrencyFormats System.Private.CoreLib.dll:System.String[] System.Number::s_posPercentFormats System.Private.CoreLib.dll:System.String[] System.Number::s_smallNumberCache +System.Private.CoreLib.dll:System.String/SearchValuesStorage +System.Private.CoreLib.dll:System.String/SearchValuesStorage..cctor() System.Private.CoreLib.dll:System.StringComparer System.Private.CoreLib.dll:System.StringComparer System.StringComparer::Ordinal() System.Private.CoreLib.dll:System.StringComparer System.StringComparer::OrdinalIgnoreCase() @@ -16899,11 +16929,13 @@ System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1 System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallConvertToManaged|3_0(System.Byte&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallConvertToUnmanaged|1_0(System.Byte&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallFree|4_0(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) +System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallIsBlittable|5_0() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.ConvertToManaged(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.ConvertToUnmanaged(T, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.ConvertToUnmanagedCore(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.Free(T, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.FreeCore(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) +System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.GetIsBlittable() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods..cctor() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.BlittableConvertToManaged(System.Byte&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) @@ -16912,6 +16944,7 @@ System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.Bli System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_ConvertToManaged() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_ConvertToUnmanaged() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_Free() +System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_IsBlittable() System.Private.CoreLib.dll:System.StubHelpers.MngdFixedArrayMarshaler System.Private.CoreLib.dll:System.StubHelpers.MngdFixedArrayMarshaler.ClearNativeContents(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.StubHelpers.MngdFixedArrayMarshaler.ClearNativeContents(System.IntPtr, System.Object&, System.IntPtr) @@ -16952,11 +16985,13 @@ System.Private.CoreLib.dll:System.StubHelpers.SafeHandleCleanupWorkListElement.. System.Private.CoreLib.dll:System.StubHelpers.SafeHandleCleanupWorkListElement.AddRef() System.Private.CoreLib.dll:System.StubHelpers.SafeHandleCleanupWorkListElement.DestroyCore() System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1 +System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1..cctor() System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.ConvertToManaged(T&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.ConvertToUnmanaged(T&, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.ConvertToUnmanagedCore(T&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.Free(T&, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.FreeCore(T&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) +System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.InitIsBlittable() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers System.Private.CoreLib.dll:System.StubHelpers.StubHelpers..cctor() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.g____PInvoke|18_0(System.Runtime.CompilerServices.QCallTypeHandle, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*) @@ -17728,8 +17763,8 @@ System.Private.CoreLib.dll:System.Threading.EventWaitHandle.ValidateMode(System. System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Private.CoreLib.dll:System.Threading.ExecutionContext Microsoft.Win32.SafeHandles.SafeFileHandle/ThreadPoolValueTaskSource::_context System.Private.CoreLib.dll:System.Threading.ExecutionContext System.IO.Stream/ReadWriteTask::_context -System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::ExecutionContext -System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.ExecutionAndSyncBlockStore::_previousExecutionCtx +System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::LeafExecutionContext +System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::RootExecutionContext System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Threading.CancellationTokenSource/CallbackNode::ExecutionContext System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Threading.ExecutionContext::Default System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Threading.ExecutionContext::DefaultFlowSuppressed @@ -17750,6 +17785,7 @@ System.Private.CoreLib.dll:System.Threading.ExecutionContext.CaptureForRestore() System.Private.CoreLib.dll:System.Threading.ExecutionContext.CaptureForSuspension(System.Threading.Thread) System.Private.CoreLib.dll:System.Threading.ExecutionContext.Dispose() System.Private.CoreLib.dll:System.Threading.ExecutionContext.get_HasChangeNotifications() +System.Private.CoreLib.dll:System.Threading.ExecutionContext.get_InstanceIsFlowSuppressed() System.Private.CoreLib.dll:System.Threading.ExecutionContext.get_IsDefault() System.Private.CoreLib.dll:System.Threading.ExecutionContext.GetLocalValue(System.Threading.IAsyncLocal) System.Private.CoreLib.dll:System.Threading.ExecutionContext.IsFlowSuppressed() @@ -18229,7 +18265,7 @@ System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1::s_postCallback System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.CancellationTokenSource/<>c::<>9__36_0 System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.Tasks.SynchronizationContextAwaitTaskContinuation::s_postCallback -System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.Tasks.Task/<>c::<>9__131_0 +System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.Tasks.Task/<>c::<>9__136_0 System.Private.CoreLib.dll:System.Threading.SendOrPostCallback..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Threading.SendOrPostCallback.Invoke(System.Object) System.Private.CoreLib.dll:System.Threading.SpinLock @@ -18259,8 +18295,8 @@ System.Private.CoreLib.dll:System.Threading.StackCrawlMark System.Threading.Stac System.Private.CoreLib.dll:System.Threading.StackCrawlMark System.Threading.StackCrawlMark::LookForMyCallersCaller System.Private.CoreLib.dll:System.Threading.StackCrawlMark System.Threading.StackCrawlMark::LookForThread System.Private.CoreLib.dll:System.Threading.SynchronizationContext -System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::SynchronizationContext -System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.ExecutionAndSyncBlockStore::_previousSyncCtx +System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::LeafSynchronizationContext +System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::RootSynchronizationContext System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Threading.CancellationTokenSource/CallbackNode::SynchronizationContext System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Threading.SynchronizationContext::Current() System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Threading.Tasks.SynchronizationContextAwaitTaskContinuation::m_syncContext @@ -18283,11 +18319,6 @@ System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor() System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor(System.String) -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Canceled -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Completed -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Error -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Started System.Private.CoreLib.dll:System.Threading.Tasks.AwaitTaskContinuation System.Private.CoreLib.dll:System.Threading.Tasks.AwaitTaskContinuation..cctor() System.Private.CoreLib.dll:System.Threading.Tasks.AwaitTaskContinuation..ctor(System.Action, System.Boolean) @@ -18343,14 +18374,10 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction System.Threading.Tasks.CompletionActionInvoker::m_action System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction.get_InvokeMayRunArbitraryCode() System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction.Invoke(System.Threading.Tasks.Task) -System.Private.CoreLib.dll:System.Threading.Tasks.IValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.IValueTaskSourceNotifier System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::ValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.IValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.CapturedSchedulerAndExecutionContext System.Private.CoreLib.dll:System.Threading.Tasks.Sources.CapturedSchedulerAndExecutionContext..ctor(System.Object, System.Threading.ExecutionContext) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask::_source -System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier::_valueTaskSource System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource.GetResult(System.Int16) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource.GetStatus(System.Int16) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource.OnCompleted(System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) @@ -18359,7 +18386,6 @@ System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1.Get System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1.GetStatus(System.Int16) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1.OnCompleted(System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::_source -System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1 System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier::_valueTaskSource System.Private.CoreLib.dll:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1 System.Private.CoreLib.dll:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.get_Version() System.Private.CoreLib.dll:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.GetResult(System.Int16) @@ -18403,7 +18429,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.SynchronizationContextAwaitTas System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Private.CoreLib.dll:System.Threading.Tasks.Task modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.ValueTask::s_canceledTask System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.AsyncDispatcherInfo::CurrentTask -System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::TaskNotifier +System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::TaskNotifier System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::m_task System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.TaskAwaiter::m_task System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Threading.Tasks.CompletionActionInvoker::m_completingTask @@ -18422,7 +18448,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor() System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor(System.Boolean, System.Threading.Tasks.TaskCreationOptions, System.Threading.CancellationToken) System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor(System.Delegate, System.Object, System.Threading.Tasks.Task, System.Threading.CancellationToken, System.Threading.Tasks.TaskCreationOptions, System.Threading.Tasks.InternalTaskOptions, System.Threading.Tasks.TaskScheduler) System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor(System.Object, System.Threading.Tasks.TaskCreationOptions, System.Boolean) -System.Private.CoreLib.dll:System.Threading.Tasks.Task.g__InitializeContingentProperties|84_0() +System.Private.CoreLib.dll:System.Threading.Tasks.Task.g__InitializeContingentProperties|89_0() System.Private.CoreLib.dll:System.Threading.Tasks.Task.AddCompletionAction(System.Threading.Tasks.ITaskCompletionAction, System.Boolean) System.Private.CoreLib.dll:System.Threading.Tasks.Task.AddException(System.Object, System.Boolean) System.Private.CoreLib.dll:System.Threading.Tasks.Task.AddException(System.Object) @@ -18534,13 +18560,13 @@ System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c System.Threading.Tasks.Task/<>c::<>9 System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c..cctor() System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c..ctor() -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.<.cctor>b__296_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__219_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__39_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__39_1(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__138_0(System.Threading.Tasks.Task) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__131_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__131_1(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.<.cctor>b__301_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__224_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__44_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__44_1(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__143_0(System.Threading.Tasks.Task) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__136_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__136_1(System.Object) System.Private.CoreLib.dll:System.Threading.Tasks.Task/CancellationPromise`1 System.Private.CoreLib.dll:System.Threading.Tasks.Task/CancellationPromise`1..ctor(System.Threading.Tasks.Task, System.UInt32, System.TimeProvider, System.Threading.CancellationToken) System.Private.CoreLib.dll:System.Threading.Tasks.Task/CancellationPromise`1.Cleanup() @@ -18734,7 +18760,6 @@ System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskCompleted(S System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskWaitBegin(System.Int32, System.Int32, System.Int32, System.Threading.Tasks.TplEventSource/TaskWaitBehavior, System.Int32) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskWaitContinuationComplete(System.Int32) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskWaitEnd(System.Int32, System.Int32, System.Int32) -System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TraceOperationEnd(System.Int32, System.Threading.Tasks.AsyncCausalityStatus) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TraceSynchronousWorkBegin(System.Int32, System.Threading.Tasks.CausalitySynchronousWork) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TraceSynchronousWorkEnd(System.Threading.Tasks.CausalitySynchronousWork) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource/TaskWaitBehavior @@ -18765,6 +18790,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.get_CompletedTask() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.get_IsCompleted() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.GetHashCode() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.GetTaskForValueTaskSource(System.Threading.Tasks.Sources.IValueTaskSource) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.OnCompleted(System.Object, System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.ThrowIfCompletedUnsuccessfully() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask..cctor() @@ -18775,9 +18801,6 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTas System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask/<>c..cctor() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask/<>c..ctor() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask/<>c.<.cctor>b__4_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier..ctor(System.Threading.Tasks.Sources.IValueTaskSource, System.Int16) -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1..ctor(System.Object, TResult, System.Int16, System.Boolean) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1..ctor(System.Threading.Tasks.Sources.IValueTaskSource`1, System.Int16) @@ -18793,6 +18816,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.get_IsCompletedSuc System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.get_Result() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.GetHashCode() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.GetTaskForValueTaskSource(System.Threading.Tasks.Sources.IValueTaskSource`1) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.OnCompleted(System.Object, System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.ToString() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask..cctor() @@ -18803,15 +18827,18 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsT System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c..ctor() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c.<.cctor>b__4_0(System.Object) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c::<>9 -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier..ctor(System.Threading.Tasks.Sources.IValueTaskSource`1, System.Int16) -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1::Task() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1::_value System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1/ConfiguredValueTaskAwaiter::_value +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::ValueTaskSourceNotifier +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier System.Threading.Tasks.ValueTaskSourceNotifier::t_instance +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier..ctor(System.Object, method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags), System.Int16) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier.GetInstance(System.Object, method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags), System.Int16) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.VoidTaskResult System.Private.CoreLib.dll:System.Threading.Thread -System.Private.CoreLib.dll:System.Threading.Thread System.Runtime.CompilerServices.ExecutionAndSyncBlockStore::_thread +System.Private.CoreLib.dll:System.Threading.Thread System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::CurrentThread System.Private.CoreLib.dll:System.Threading.Thread System.Threading.AsyncFlowControl::_thread System.Private.CoreLib.dll:System.Threading.Thread System.Threading.Thread::CurrentThread() System.Private.CoreLib.dll:System.Threading.Thread System.Threading.Thread::CurrentThreadAssumedInitialized() @@ -19119,7 +19146,7 @@ System.Private.CoreLib.dll:System.Threading.Volatile/VolatileUIntPtr System.Private.CoreLib.dll:System.Threading.WaitCallback System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.QueueUserWorkItemCallback::_callback System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.QueueUserWorkItemCallbackDefaultContext::_callback -System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.Tasks.Task/<>c::<>9__131_1 +System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.Tasks.Task/<>c::<>9__136_1 System.Private.CoreLib.dll:System.Threading.WaitCallback..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Threading.WaitCallback.Invoke(System.Object) System.Private.CoreLib.dll:System.Threading.WaitHandle @@ -19339,6 +19366,7 @@ System.Private.CoreLib.dll:System.ThrowHelper.ThrowStartIndexArgumentOutOfRange_ System.Private.CoreLib.dll:System.ThrowHelper.ThrowSynchronizationLockException_LockExit() System.Private.CoreLib.dll:System.ThrowHelper.ThrowUnexpectedStateForKnownCallback(System.Object) System.Private.CoreLib.dll:System.ThrowHelper.ThrowUnreachableException() +System.Private.CoreLib.dll:System.ThrowHelper.ThrowValueArgumentOutOfRange_NeedNonNegNumException() System.Private.CoreLib.dll:System.TimeOnly System.Private.CoreLib.dll:System.TimeOnly.CompareTo(System.Object) System.Private.CoreLib.dll:System.TimeOnly.CompareTo(System.TimeOnly) @@ -19523,7 +19551,7 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetLocalTzFile(out System.Byte System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetTransitionsForYear(System.Int32, out System.ValueTuple`2&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetUtcOffset(System.DateTime, out System.TimeSpan&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryLoadTzFile(System.String, System.Byte[]&, System.String&) -System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.DateTime&) +System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.Int64&) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CalculateTransitionOffsetFromBase(System.TimeSpan, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateAdjustmentRuleForPosixFormat(System.String, System.DateTime, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateTransitionTimeFromPosixRule(System.ReadOnlySpan`1, System.ReadOnlySpan`1) @@ -19547,7 +19575,6 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToInt64(System.Byte[], Syste System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToUnixTime(System.Byte[], System.Int32, System.TimeZoneInfo/TZVersion) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_UnixTimeToDateTime(System.Int64) System.Private.CoreLib.dll:System.TimeZoneInfo.UtcOffsetOutOfRange(System.TimeSpan) -System.Private.CoreLib.dll:System.TimeZoneInfo.UtcToLocal(System.DateTime, out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo.ValidateTimeZoneInfo(System.String, System.TimeSpan, System.TimeZoneInfo/AdjustmentRule[], out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.TimeZoneInfo/<>c::<>9 @@ -19946,10 +19973,10 @@ System.Private.CoreLib.dll:System.UInt128 System.UInt128::One() System.Private.CoreLib.dll:System.UInt128 System.UInt128::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt128 System.UInt128::Zero() System.Private.CoreLib.dll:System.UInt128..ctor(System.UInt64, System.UInt64) -System.Private.CoreLib.dll:System.UInt128.g__AddDivisor|112_0(System.Span`1, System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.UInt128.g__DivideGuessTooBig|112_1(System.UInt64, System.UInt64, System.UInt32, System.UInt32, System.UInt32) -System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|112_2(System.UInt128, System.UInt128) -System.Private.CoreLib.dll:System.UInt128.g__SubtractDivisor|112_3(System.Span`1, System.ReadOnlySpan`1, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64Bits|83_1(System.UInt128, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64BitsCore|83_2(System.UInt64, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide96BitsBy64Bits|83_3(System.UInt64, System.UInt32, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|83_0(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.UInt128) System.Private.CoreLib.dll:System.UInt128.CreateSaturating`1(TOther) @@ -20432,6 +20459,7 @@ System.Private.CoreLib.dll:System.UInt64.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt64.CompareTo(System.UInt64) System.Private.CoreLib.dll:System.UInt64.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt64.DivRem(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.Equals(System.Object) System.Private.CoreLib.dll:System.UInt64.Equals(System.UInt64) System.Private.CoreLib.dll:System.UInt64.GetHashCode() @@ -21489,7 +21517,6 @@ System.Reflection.Metadata.dll:System.Reflection.Internal.PooledStringBuilder/<> System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions.GetAndValidateSize(System.IO.Stream, System.Int32, System.String) System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions.ReadExactly(System.IO.Stream, System.Byte*, System.Int32) -System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions.TryReadAll(System.IO.Stream, System.Span`1) System.Reflection.Metadata.dll:System.Reflection.Internal.StreamMemoryBlockProvider System.Reflection.Metadata.dll:System.Reflection.Internal.StreamMemoryBlockProvider..ctor(System.IO.Stream, System.Int64, System.Int32, System.Boolean) System.Reflection.Metadata.dll:System.Reflection.Internal.StreamMemoryBlockProvider.CreateMemoryMappedFileBlock(System.Int64, System.Int32) diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-size.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-size.txt index 52f322c6257a..ef6be667f3f4 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-size.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-size.txt @@ -1,24 +1,24 @@ -AppBundleSize: 19,325,345 bytes (18,872.4 KB = 18.4 MB) +AppBundleSize: 19,346,825 bytes (18,893.4 KB = 18.5 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/_CodeSignature/CodeResources: 5,105 bytes (5.0 KB = 0.0 MB) -Contents/Info.plist: 1,119 bytes (1.1 KB = 0.0 MB) -Contents/MacOS/SizeTestApp: 242,960 bytes (237.3 KB = 0.2 MB) -Contents/MonoBundle/libcoreclr.dylib: 6,386,608 bytes (6,236.9 KB = 6.1 MB) +Contents/Info.plist: 1,127 bytes (1.1 KB = 0.0 MB) +Contents/MacOS/SizeTestApp: 243,168 bytes (237.5 KB = 0.2 MB) +Contents/MonoBundle/libcoreclr.dylib: 6,385,264 bytes (6,235.6 KB = 6.1 MB) Contents/MonoBundle/libSystem.Globalization.Native.dylib: 110,432 bytes (107.8 KB = 0.1 MB) -Contents/MonoBundle/libSystem.IO.Compression.Native.dylib: 1,442,208 bytes (1,408.4 KB = 1.4 MB) -Contents/MonoBundle/libSystem.Native.dylib: 146,768 bytes (143.3 KB = 0.1 MB) -Contents/MonoBundle/libSystem.Net.Security.Native.dylib: 71,120 bytes (69.5 KB = 0.1 MB) -Contents/MonoBundle/libSystem.Security.Cryptography.Native.Apple.dylib: 204,768 bytes (200.0 KB = 0.2 MB) +Contents/MonoBundle/libSystem.IO.Compression.Native.dylib: 1,442,336 bytes (1,408.5 KB = 1.4 MB) +Contents/MonoBundle/libSystem.Native.dylib: 147,744 bytes (144.3 KB = 0.1 MB) +Contents/MonoBundle/libSystem.Net.Security.Native.dylib: 71,232 bytes (69.6 KB = 0.1 MB) +Contents/MonoBundle/libSystem.Security.Cryptography.Native.Apple.dylib: 229,280 bytes (223.9 KB = 0.2 MB) Contents/MonoBundle/Microsoft.MacCatalyst.dll: 101,888 bytes (99.5 KB = 0.1 MB) Contents/MonoBundle/runtimeconfig.bin: 1,481 bytes (1.4 KB = 0.0 MB) Contents/MonoBundle/SizeTestApp.dll: 7,680 bytes (7.5 KB = 0.0 MB) -Contents/MonoBundle/SizeTestApp.r2r.dylib: 8,847,040 bytes (8,639.7 KB = 8.4 MB) +Contents/MonoBundle/SizeTestApp.r2r.dylib: 8,859,280 bytes (8,651.6 KB = 8.4 MB) Contents/MonoBundle/System.Collections.Immutable.dll: 13,824 bytes (13.5 KB = 0.0 MB) Contents/MonoBundle/System.Diagnostics.StackTrace.dll: 7,680 bytes (7.5 KB = 0.0 MB) Contents/MonoBundle/System.IO.Compression.dll: 22,016 bytes (21.5 KB = 0.0 MB) Contents/MonoBundle/System.IO.MemoryMappedFiles.dll: 21,504 bytes (21.0 KB = 0.0 MB) -Contents/MonoBundle/System.Private.CoreLib.dll: 1,595,392 bytes (1,558.0 KB = 1.5 MB) -Contents/MonoBundle/System.Reflection.Metadata.dll: 83,968 bytes (82.0 KB = 0.1 MB) +Contents/MonoBundle/System.Private.CoreLib.dll: 1,584,640 bytes (1,547.5 KB = 1.5 MB) +Contents/MonoBundle/System.Reflection.Metadata.dll: 83,456 bytes (81.5 KB = 0.1 MB) Contents/MonoBundle/System.Runtime.dll: 4,096 bytes (4.0 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.InteropServices.dll: 7,680 bytes (7.5 KB = 0.0 MB) +Contents/MonoBundle/System.Runtime.InteropServices.dll: 3,584 bytes (3.5 KB = 0.0 MB) Contents/PkgInfo: 8 bytes (0.0 KB = 0.0 MB) diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-interpreter-preservedapis.txt index e4e8281db97c..fe3160cfff5e 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-interpreter-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-interpreter-preservedapis.txt @@ -2747,18 +2747,23 @@ System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrier(System.Byte&, System.Private.CoreLib.dll:System.Buffer.Memmove`1(T&, T&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffers.Any1SearchValues`2 System.Private.CoreLib.dll:System.Buffers.Any1SearchValues`2..ctor(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.Any1SearchValues`2.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Any1SearchValues`2.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Any2SearchValues`2 System.Private.CoreLib.dll:System.Buffers.Any2SearchValues`2..ctor(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.Any2SearchValues`2.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Any2SearchValues`2.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Any3SearchValues`2 System.Private.CoreLib.dll:System.Buffers.Any3SearchValues`2..ctor(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.Any3SearchValues`2.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Any3SearchValues`2.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Any4SearchValues`2 System.Private.CoreLib.dll:System.Buffers.Any4SearchValues`2..ctor(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.Any4SearchValues`2.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Any4SearchValues`2.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Any5SearchValues`2 System.Private.CoreLib.dll:System.Buffers.Any5SearchValues`2..ctor(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.Any5SearchValues`2.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Any5SearchValues`2.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.ArrayPool`1 System.Private.CoreLib.dll:System.Buffers.ArrayPool`1..cctor() @@ -2775,6 +2780,7 @@ System.Private.CoreLib.dll:System.Buffers.ArrayPoolEventSource..ctor() System.Private.CoreLib.dll:System.Buffers.AsciiCharSearchValues`2 System.Private.CoreLib.dll:System.Buffers.AsciiCharSearchValues`2..ctor(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.AsciiCharSearchValues`2.ContainsAnyExcept(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.AsciiCharSearchValues`2.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.AsciiCharSearchValues`2.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadInt32BigEndian(System.ReadOnlySpan`1) @@ -2792,6 +2798,7 @@ System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt64Big System.Private.CoreLib.dll:System.Buffers.BitmapCharSearchValues System.Private.CoreLib.dll:System.Buffers.BitmapCharSearchValues..ctor(System.ReadOnlySpan`1, System.Int32) System.Private.CoreLib.dll:System.Buffers.BitmapCharSearchValues.Contains(System.UInt32[], System.Int32) +System.Private.CoreLib.dll:System.Buffers.BitmapCharSearchValues.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.BitmapCharSearchValues.IndexOfAny`1(System.Char&, System.Int32) System.Private.CoreLib.dll:System.Buffers.BitmapCharSearchValues.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.BitVector256 @@ -2803,6 +2810,7 @@ System.Private.CoreLib.dll:System.Buffers.BitVector256.CreateInverse() System.Private.CoreLib.dll:System.Buffers.BitVector256.Set(System.Int32) System.Private.CoreLib.dll:System.Buffers.EmptySearchValues`1 System.Private.CoreLib.dll:System.Buffers.EmptySearchValues`1..ctor() +System.Private.CoreLib.dll:System.Buffers.EmptySearchValues`1.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.EmptySearchValues`1.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher.CanUseUniqueLowNibbleSearch`1(System.ReadOnlySpan`1, System.Int32) @@ -2832,7 +2840,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/ContainsAnyRes System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default.PackSources(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1 @@ -2841,7 +2849,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResu System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IOptimizations @@ -2852,7 +2860,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper` System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Ssse3AndWasmHandleZeroInNeedle @@ -2864,6 +2872,7 @@ System.Private.CoreLib.dll:System.Buffers.OperationStatus System.Buffers.Operati System.Private.CoreLib.dll:System.Buffers.OperationStatus System.Buffers.OperationStatus::NeedMoreData System.Private.CoreLib.dll:System.Buffers.ProbabilisticCharSearchValues System.Private.CoreLib.dll:System.Buffers.ProbabilisticCharSearchValues..ctor(System.ReadOnlySpan`1, System.Int32) +System.Private.CoreLib.dll:System.Buffers.ProbabilisticCharSearchValues.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.ProbabilisticCharSearchValues.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.ProbabilisticMap System.Private.CoreLib.dll:System.Buffers.ProbabilisticMap System.Buffers.ProbabilisticMapState::Map @@ -2900,9 +2909,11 @@ System.Private.CoreLib.dll:System.Buffers.ProbabilisticMapState.SlowContains(Sys System.Private.CoreLib.dll:System.Buffers.ProbabilisticMapState.SlowProbabilisticContains(System.Char) System.Private.CoreLib.dll:System.Buffers.ProbabilisticWithAsciiCharSearchValues`1 System.Private.CoreLib.dll:System.Buffers.ProbabilisticWithAsciiCharSearchValues`1..ctor(System.ReadOnlySpan`1, System.Int32) +System.Private.CoreLib.dll:System.Buffers.ProbabilisticWithAsciiCharSearchValues`1.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.ProbabilisticWithAsciiCharSearchValues`1.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.RangeCharSearchValues`1 System.Private.CoreLib.dll:System.Buffers.RangeCharSearchValues`1..ctor(System.Char, System.Char) +System.Private.CoreLib.dll:System.Buffers.RangeCharSearchValues`1.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.RangeCharSearchValues`1.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.SearchValues System.Private.CoreLib.dll:System.Buffers.SearchValues.g__ShouldUseProbabilisticMap|1_0(System.Int32, System.Int32) @@ -2918,8 +2929,11 @@ System.Private.CoreLib.dll:System.Buffers.SearchValues/TrueConst.get_Value() System.Private.CoreLib.dll:System.Buffers.SearchValues`1 System.Private.CoreLib.dll:System.Buffers.SearchValues`1..ctor() System.Private.CoreLib.dll:System.Buffers.SearchValues`1.ContainsAnyExcept(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.SearchValues`1.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.SearchValues`1.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.SearchValues`1 System.Globalization.CompareInfo::s_nonSpecialAsciiChars +System.Private.CoreLib.dll:System.Buffers.SearchValues`1 System.String/SearchValuesStorage::NewLineChars +System.Private.CoreLib.dll:System.Buffers.SearchValues`1 System.String/SearchValuesStorage::WhiteSpaceChars System.Private.CoreLib.dll:System.Buffers.SharedArrayPool`1 System.Private.CoreLib.dll:System.Buffers.SharedArrayPool`1..ctor() System.Private.CoreLib.dll:System.Buffers.SharedArrayPool`1.CreatePerCorePartitions(System.Int32) @@ -4057,6 +4071,7 @@ System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.AllowNullAttribute..c System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Max(System.Object) +System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Min(System.Object) System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes @@ -6692,6 +6707,7 @@ System.Private.CoreLib.dll:System.Int32.Equals(System.Object) System.Private.CoreLib.dll:System.Int32.GetHashCode() System.Private.CoreLib.dll:System.Int32.GetTypeCode() System.Private.CoreLib.dll:System.Int32.IsNegative(System.Int32) +System.Private.CoreLib.dll:System.Int32.Log2(System.Int32) System.Private.CoreLib.dll:System.Int32.Max(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Min(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.IBinaryIntegerParseAndFormatInfo.get_IsSigned() @@ -7431,8 +7447,8 @@ System.Private.CoreLib.dll:System.MemberAccessException System.Private.CoreLib.dll:System.MemberAccessException..ctor() System.Private.CoreLib.dll:System.MemberAccessException..ctor(System.String) System.Private.CoreLib.dll:System.MemoryExtensions -System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|273_0(System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|287_0(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|278_0(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|292_0(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String) @@ -7461,6 +7477,7 @@ System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAny`1(System.ReadOnlyS System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyExcept`1(System.ReadOnlySpan`1, T) System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyExceptInRange`1(System.ReadOnlySpan`1, T, T) System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyInRange`1(System.ReadOnlySpan`1, T, T) +System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyWhiteSpace(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.LastIndexOf`1(System.ReadOnlySpan`1, T) System.Private.CoreLib.dll:System.MemoryExtensions.Overlaps`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.SequenceCompareTo`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1) @@ -7900,7 +7917,9 @@ System.Private.CoreLib.dll:System.Object System.Collections.Hashtable/Bucket::ke System.Private.CoreLib.dll:System.Object System.Collections.Hashtable/Bucket::val System.Private.CoreLib.dll:System.Object System.Delegate::_target System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Max() +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Min() System.Private.CoreLib.dll:System.Object System.Exception::_traceIPs System.Private.CoreLib.dll:System.Object System.Exception::_unused6 System.Private.CoreLib.dll:System.Object System.GC::EPHEMERON_TOMBSTONE @@ -11237,6 +11256,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.ExtractNarrowin System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.get_IsSupported() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.LoadVector128(System.Byte*) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.PopCount(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.Store(System.Byte*, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.StoreSelectedScalar(System.UInt32*, System.Runtime.Intrinsics.Vector64`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd/Arm64 @@ -11304,6 +11324,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions.Store`2(TVector, T*) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AddSaturate`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AndNot`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.As`2(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AsByte`1(System.Runtime.Intrinsics.Vector128`1) @@ -11350,6 +11372,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GetElementUnsafe` System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThan`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanAny`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfFirstMatch`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNaN`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNegative`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.LastIndexOf`1(System.Runtime.Intrinsics.Vector128`1, T) @@ -11445,11 +11469,11 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Equals`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.EqualsAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector256`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetLower`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GreaterThanAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNaN`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNegative`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.LastIndexOf`1(System.Runtime.Intrinsics.Vector256`1, T) @@ -11522,10 +11546,10 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Equals`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.EqualsAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector512`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GreaterThanAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNaN`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNegative`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.LastIndexOf`1(System.Runtime.Intrinsics.Vector512`1, T) @@ -11582,12 +11606,15 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.ToString(System System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1 System.Runtime.Intrinsics.Vector512`1::Zero() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AddSaturate`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AndNot`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.As`2(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsByte`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt32`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt32`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.ConditionalSelect`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Int16, System.Int16, System.Int16, System.Int16) @@ -11605,6 +11632,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GetElementUnsafe`1 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThan`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanAny`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNaN`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNegative`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.LastIndexOf`1(System.Runtime.Intrinsics.Vector64`1, T) @@ -12834,6 +12862,8 @@ System.Private.CoreLib.dll:System.String[] System.Number::s_posCurrencyFormats System.Private.CoreLib.dll:System.String[] System.Number::s_posPercentFormats System.Private.CoreLib.dll:System.String[] System.Number::s_smallNumberCache 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 System.Private.CoreLib.dll:System.StringComparer System.StringComparer::Ordinal() System.Private.CoreLib.dll:System.StringComparer System.StringComparer::OrdinalIgnoreCase() @@ -13610,6 +13640,7 @@ System.Private.CoreLib.dll:System.ThrowHelper.ThrowOverflowException_TimeSpanToo System.Private.CoreLib.dll:System.ThrowHelper.ThrowOverflowException() System.Private.CoreLib.dll:System.ThrowHelper.ThrowStartIndexArgumentOutOfRange_ArgumentOutOfRange_IndexMustBeLessOrEqual() System.Private.CoreLib.dll:System.ThrowHelper.ThrowUnreachableException() +System.Private.CoreLib.dll:System.ThrowHelper.ThrowValueArgumentOutOfRange_NeedNonNegNumException() System.Private.CoreLib.dll:System.TimeSpan System.Private.CoreLib.dll:System.TimeSpan System.DateTime::TimeOfDay() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeOffset::Offset() @@ -13754,7 +13785,7 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetLocalTzFile(out System.Byte System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetTransitionsForYear(System.Int32, out System.ValueTuple`2&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetUtcOffset(System.DateTime, out System.TimeSpan&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryLoadTzFile(System.String, System.Byte[]&, System.String&) -System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.DateTime&) +System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.Int64&) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CalculateTransitionOffsetFromBase(System.TimeSpan, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateAdjustmentRuleForPosixFormat(System.String, System.DateTime, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateTransitionTimeFromPosixRule(System.ReadOnlySpan`1, System.ReadOnlySpan`1) @@ -13778,7 +13809,6 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToInt64(System.Byte[], Syste System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToUnixTime(System.Byte[], System.Int32, System.TimeZoneInfo/TZVersion) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_UnixTimeToDateTime(System.Int64) System.Private.CoreLib.dll:System.TimeZoneInfo.UtcOffsetOutOfRange(System.TimeSpan) -System.Private.CoreLib.dll:System.TimeZoneInfo.UtcToLocal(System.DateTime, out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo.ValidateTimeZoneInfo(System.String, System.TimeSpan, System.TimeZoneInfo/AdjustmentRule[], out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.TimeZoneInfo/<>c::<>9 @@ -14172,10 +14202,10 @@ System.Private.CoreLib.dll:System.UInt128 System.UInt128::One() System.Private.CoreLib.dll:System.UInt128 System.UInt128::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt128 System.UInt128::Zero() System.Private.CoreLib.dll:System.UInt128..ctor(System.UInt64, System.UInt64) -System.Private.CoreLib.dll:System.UInt128.g__AddDivisor|112_0(System.Span`1, System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.UInt128.g__DivideGuessTooBig|112_1(System.UInt64, System.UInt64, System.UInt32, System.UInt32, System.UInt32) -System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|112_2(System.UInt128, System.UInt128) -System.Private.CoreLib.dll:System.UInt128.g__SubtractDivisor|112_3(System.Span`1, System.ReadOnlySpan`1, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64Bits|83_1(System.UInt128, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64BitsCore|83_2(System.UInt64, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide96BitsBy64Bits|83_3(System.UInt64, System.UInt32, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|83_0(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.UInt128) System.Private.CoreLib.dll:System.UInt128.CreateTruncating`1(TOther) @@ -14530,6 +14560,7 @@ System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.INumberB System.Private.CoreLib.dll:System.UInt64.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt64.CompareTo(System.UInt64) System.Private.CoreLib.dll:System.UInt64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt64.DivRem(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.Equals(System.Object) System.Private.CoreLib.dll:System.UInt64.Equals(System.UInt64) System.Private.CoreLib.dll:System.UInt64.GetHashCode() diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-interpreter-size.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-interpreter-size.txt index 293e83e1c9a4..1d3c5926303c 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-interpreter-size.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-interpreter-size.txt @@ -1,13 +1,13 @@ -AppBundleSize: 5,813,322 bytes (5,677.1 KB = 5.5 MB) +AppBundleSize: 5,812,402 bytes (5,676.2 KB = 5.5 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/_CodeSignature/CodeResources: 3,310 bytes (3.2 KB = 0.0 MB) -Contents/Info.plist: 1,119 bytes (1.1 KB = 0.0 MB) -Contents/MacOS/SizeTestApp: 4,568,544 bytes (4,461.5 KB = 4.4 MB) +Contents/Info.plist: 1,127 bytes (1.1 KB = 0.0 MB) +Contents/MacOS/SizeTestApp: 4,569,648 bytes (4,462.5 KB = 4.4 MB) Contents/MonoBundle/Microsoft.MacCatalyst.dll: 157,696 bytes (154.0 KB = 0.2 MB) Contents/MonoBundle/runtimeconfig.bin: 1,405 bytes (1.4 KB = 0.0 MB) Contents/MonoBundle/SizeTestApp.dll: 7,680 bytes (7.5 KB = 0.0 MB) -Contents/MonoBundle/System.Private.CoreLib.aotdata.arm64: 41,368 bytes (40.4 KB = 0.0 MB) -Contents/MonoBundle/System.Private.CoreLib.dll: 1,018,880 bytes (995.0 KB = 1.0 MB) +Contents/MonoBundle/System.Private.CoreLib.aotdata.arm64: 41,384 bytes (40.4 KB = 0.0 MB) +Contents/MonoBundle/System.Private.CoreLib.dll: 1,020,416 bytes (996.5 KB = 1.0 MB) Contents/MonoBundle/System.Runtime.dll: 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.InteropServices.dll: 8,192 bytes (8.0 KB = 0.0 MB) +Contents/MonoBundle/System.Runtime.InteropServices.dll: 4,608 bytes (4.5 KB = 0.0 MB) Contents/PkgInfo: 8 bytes (0.0 KB = 0.0 MB) diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-preservedapis.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-preservedapis.txt index 7d60ba11ece8..512fbffebf72 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-preservedapis.txt @@ -1973,18 +1973,23 @@ System.Private.CoreLib.dll:System.Buffer.BulkMoveWithWriteBarrier(System.Byte&, System.Private.CoreLib.dll:System.Buffer.Memmove`1(T&, T&, System.UIntPtr) System.Private.CoreLib.dll:System.Buffers.Any1SearchValues`2 System.Private.CoreLib.dll:System.Buffers.Any1SearchValues`2..ctor(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.Any1SearchValues`2.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Any1SearchValues`2.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Any2SearchValues`2 System.Private.CoreLib.dll:System.Buffers.Any2SearchValues`2..ctor(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.Any2SearchValues`2.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Any2SearchValues`2.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Any3SearchValues`2 System.Private.CoreLib.dll:System.Buffers.Any3SearchValues`2..ctor(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.Any3SearchValues`2.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Any3SearchValues`2.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Any4SearchValues`2 System.Private.CoreLib.dll:System.Buffers.Any4SearchValues`2..ctor(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.Any4SearchValues`2.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Any4SearchValues`2.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Any5SearchValues`2 System.Private.CoreLib.dll:System.Buffers.Any5SearchValues`2..ctor(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.Any5SearchValues`2.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Any5SearchValues`2.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.ArrayPool`1 System.Private.CoreLib.dll:System.Buffers.ArrayPool`1..cctor() @@ -2001,6 +2006,7 @@ System.Private.CoreLib.dll:System.Buffers.ArrayPoolEventSource..ctor() System.Private.CoreLib.dll:System.Buffers.AsciiCharSearchValues`2 System.Private.CoreLib.dll:System.Buffers.AsciiCharSearchValues`2..ctor(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.AsciiCharSearchValues`2.ContainsAnyExcept(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.AsciiCharSearchValues`2.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.AsciiCharSearchValues`2.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.ReadInt32BigEndian(System.ReadOnlySpan`1) @@ -2017,6 +2023,7 @@ System.Private.CoreLib.dll:System.Buffers.Binary.BinaryPrimitives.WriteUInt64Big System.Private.CoreLib.dll:System.Buffers.BitmapCharSearchValues System.Private.CoreLib.dll:System.Buffers.BitmapCharSearchValues..ctor(System.ReadOnlySpan`1, System.Int32) System.Private.CoreLib.dll:System.Buffers.BitmapCharSearchValues.Contains(System.UInt32[], System.Int32) +System.Private.CoreLib.dll:System.Buffers.BitmapCharSearchValues.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.BitmapCharSearchValues.IndexOfAny`1(System.Char&, System.Int32) System.Private.CoreLib.dll:System.Buffers.BitmapCharSearchValues.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.BitVector256 @@ -2028,6 +2035,7 @@ System.Private.CoreLib.dll:System.Buffers.BitVector256.CreateInverse() System.Private.CoreLib.dll:System.Buffers.BitVector256.Set(System.Int32) System.Private.CoreLib.dll:System.Buffers.EmptySearchValues`1 System.Private.CoreLib.dll:System.Buffers.EmptySearchValues`1..ctor() +System.Private.CoreLib.dll:System.Buffers.EmptySearchValues`1.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.EmptySearchValues`1.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher.CanUseUniqueLowNibbleSearch`1(System.ReadOnlySpan`1, System.Int32) @@ -2057,7 +2065,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/ContainsAnyRes System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default.PackSources(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1 @@ -2066,7 +2074,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResu System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IOptimizations @@ -2077,7 +2085,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper` System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Ssse3AndWasmHandleZeroInNeedle @@ -2089,6 +2097,7 @@ System.Private.CoreLib.dll:System.Buffers.OperationStatus System.Buffers.Operati System.Private.CoreLib.dll:System.Buffers.OperationStatus System.Buffers.OperationStatus::NeedMoreData System.Private.CoreLib.dll:System.Buffers.ProbabilisticCharSearchValues System.Private.CoreLib.dll:System.Buffers.ProbabilisticCharSearchValues..ctor(System.ReadOnlySpan`1, System.Int32) +System.Private.CoreLib.dll:System.Buffers.ProbabilisticCharSearchValues.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.ProbabilisticCharSearchValues.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.ProbabilisticMap System.Private.CoreLib.dll:System.Buffers.ProbabilisticMap System.Buffers.ProbabilisticMapState::Map @@ -2125,9 +2134,11 @@ System.Private.CoreLib.dll:System.Buffers.ProbabilisticMapState.SlowContains(Sys System.Private.CoreLib.dll:System.Buffers.ProbabilisticMapState.SlowProbabilisticContains(System.Char) System.Private.CoreLib.dll:System.Buffers.ProbabilisticWithAsciiCharSearchValues`1 System.Private.CoreLib.dll:System.Buffers.ProbabilisticWithAsciiCharSearchValues`1..ctor(System.ReadOnlySpan`1, System.Int32) +System.Private.CoreLib.dll:System.Buffers.ProbabilisticWithAsciiCharSearchValues`1.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.ProbabilisticWithAsciiCharSearchValues`1.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.RangeCharSearchValues`1 System.Private.CoreLib.dll:System.Buffers.RangeCharSearchValues`1..ctor(System.Char, System.Char) +System.Private.CoreLib.dll:System.Buffers.RangeCharSearchValues`1.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.RangeCharSearchValues`1.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.SearchValues System.Private.CoreLib.dll:System.Buffers.SearchValues.g__ShouldUseProbabilisticMap|1_0(System.Int32, System.Int32) @@ -2143,8 +2154,11 @@ System.Private.CoreLib.dll:System.Buffers.SearchValues/TrueConst.get_Value() System.Private.CoreLib.dll:System.Buffers.SearchValues`1 System.Private.CoreLib.dll:System.Buffers.SearchValues`1..ctor() System.Private.CoreLib.dll:System.Buffers.SearchValues`1.ContainsAnyExcept(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Buffers.SearchValues`1.IndexOfAny(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.SearchValues`1.IndexOfAnyExcept(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Buffers.SearchValues`1 System.Globalization.CompareInfo::s_nonSpecialAsciiChars +System.Private.CoreLib.dll:System.Buffers.SearchValues`1 System.String/SearchValuesStorage::NewLineChars +System.Private.CoreLib.dll:System.Buffers.SearchValues`1 System.String/SearchValuesStorage::WhiteSpaceChars System.Private.CoreLib.dll:System.Buffers.SharedArrayPool`1 System.Private.CoreLib.dll:System.Buffers.SharedArrayPool`1..ctor() System.Private.CoreLib.dll:System.Buffers.SharedArrayPool`1.CreatePerCorePartitions(System.Int32) @@ -3218,6 +3232,7 @@ System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.AllowNullAttribute..c System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Max(System.Object) +System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Min(System.Object) System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes @@ -5776,6 +5791,7 @@ System.Private.CoreLib.dll:System.Int32.Equals(System.Object) System.Private.CoreLib.dll:System.Int32.GetHashCode() System.Private.CoreLib.dll:System.Int32.GetTypeCode() System.Private.CoreLib.dll:System.Int32.IsNegative(System.Int32) +System.Private.CoreLib.dll:System.Int32.Log2(System.Int32) System.Private.CoreLib.dll:System.Int32.Max(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Min(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.IBinaryIntegerParseAndFormatInfo.get_IsSigned() @@ -6502,8 +6518,8 @@ System.Private.CoreLib.dll:System.MemberAccessException System.Private.CoreLib.dll:System.MemberAccessException..ctor() System.Private.CoreLib.dll:System.MemberAccessException..ctor(System.String) System.Private.CoreLib.dll:System.MemoryExtensions -System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|273_0(System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|287_0(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|278_0(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|292_0(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String) @@ -6532,6 +6548,7 @@ System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAny`1(System.ReadOnlyS System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyExcept`1(System.ReadOnlySpan`1, T) System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyExceptInRange`1(System.ReadOnlySpan`1, T, T) System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyInRange`1(System.ReadOnlySpan`1, T, T) +System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyWhiteSpace(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.LastIndexOf`1(System.ReadOnlySpan`1, T) System.Private.CoreLib.dll:System.MemoryExtensions.Overlaps`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.SequenceCompareTo`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1) @@ -6969,7 +6986,9 @@ System.Private.CoreLib.dll:System.Object modreq(System.Runtime.CompilerServices. System.Private.CoreLib.dll:System.Object System.ArgumentOutOfRangeException::_actualValue System.Private.CoreLib.dll:System.Object System.Delegate::_target System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Max() +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Min() System.Private.CoreLib.dll:System.Object System.Exception::_traceIPs System.Private.CoreLib.dll:System.Object System.Exception::_unused6 System.Private.CoreLib.dll:System.Object System.GC::EPHEMERON_TOMBSTONE @@ -8934,6 +8953,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.ExtractNarrowin System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.get_IsSupported() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.LoadVector128(System.Byte*) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.PopCount(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.Store(System.Byte*, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.StoreSelectedScalar(System.UInt32*, System.Runtime.Intrinsics.Vector64`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd/Arm64 @@ -9001,6 +9021,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions.Store`2(TVector, T*) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AddSaturate`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AndNot`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.As`2(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AsByte`1(System.Runtime.Intrinsics.Vector128`1) @@ -9047,6 +9069,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GetElementUnsafe` System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThan`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanAny`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfFirstMatch`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNaN`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNegative`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.LastIndexOf`1(System.Runtime.Intrinsics.Vector128`1, T) @@ -9142,11 +9166,11 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Equals`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.EqualsAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector256`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetLower`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GreaterThanAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNaN`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNegative`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.LastIndexOf`1(System.Runtime.Intrinsics.Vector256`1, T) @@ -9219,10 +9243,10 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Equals`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.EqualsAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector512`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GreaterThanAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNaN`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNegative`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.LastIndexOf`1(System.Runtime.Intrinsics.Vector512`1, T) @@ -9279,12 +9303,15 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.ToString(System System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1 System.Runtime.Intrinsics.Vector512`1::Zero() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AddSaturate`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AndNot`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.As`2(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsByte`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt32`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt32`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.ConditionalSelect`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Int16, System.Int16, System.Int16, System.Int16) @@ -9302,6 +9329,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GetElementUnsafe`1 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThan`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanAny`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNaN`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNegative`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.LastIndexOf`1(System.Runtime.Intrinsics.Vector64`1, T) @@ -10427,6 +10455,8 @@ System.Private.CoreLib.dll:System.String[] System.Number::s_negPercentFormats System.Private.CoreLib.dll:System.String[] System.Number::s_posCurrencyFormats System.Private.CoreLib.dll:System.String[] System.Number::s_posPercentFormats System.Private.CoreLib.dll:System.String[] System.Number::s_smallNumberCache +System.Private.CoreLib.dll:System.String/SearchValuesStorage +System.Private.CoreLib.dll:System.String/SearchValuesStorage..cctor() System.Private.CoreLib.dll:System.StringComparer System.Private.CoreLib.dll:System.StringComparer System.StringComparer::Ordinal() System.Private.CoreLib.dll:System.StringComparer System.StringComparer::OrdinalIgnoreCase() @@ -11190,6 +11220,7 @@ System.Private.CoreLib.dll:System.ThrowHelper.ThrowOverflowException_NegateTwosC System.Private.CoreLib.dll:System.ThrowHelper.ThrowOverflowException_TimeSpanTooLong() System.Private.CoreLib.dll:System.ThrowHelper.ThrowOverflowException() System.Private.CoreLib.dll:System.ThrowHelper.ThrowUnreachableException() +System.Private.CoreLib.dll:System.ThrowHelper.ThrowValueArgumentOutOfRange_NeedNonNegNumException() System.Private.CoreLib.dll:System.TimeSpan System.Private.CoreLib.dll:System.TimeSpan System.DateTime::TimeOfDay() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeOffset::Offset() @@ -11334,7 +11365,7 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetLocalTzFile(out System.Byte System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetTransitionsForYear(System.Int32, out System.ValueTuple`2&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetUtcOffset(System.DateTime, out System.TimeSpan&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryLoadTzFile(System.String, System.Byte[]&, System.String&) -System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.DateTime&) +System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.Int64&) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CalculateTransitionOffsetFromBase(System.TimeSpan, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateAdjustmentRuleForPosixFormat(System.String, System.DateTime, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateTransitionTimeFromPosixRule(System.ReadOnlySpan`1, System.ReadOnlySpan`1) @@ -11358,7 +11389,6 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToInt64(System.Byte[], Syste System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToUnixTime(System.Byte[], System.Int32, System.TimeZoneInfo/TZVersion) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_UnixTimeToDateTime(System.Int64) System.Private.CoreLib.dll:System.TimeZoneInfo.UtcOffsetOutOfRange(System.TimeSpan) -System.Private.CoreLib.dll:System.TimeZoneInfo.UtcToLocal(System.DateTime, out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo.ValidateTimeZoneInfo(System.String, System.TimeSpan, System.TimeZoneInfo/AdjustmentRule[], out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.TimeZoneInfo/<>c::<>9 @@ -11663,10 +11693,10 @@ System.Private.CoreLib.dll:System.UInt128 System.UInt128::One() System.Private.CoreLib.dll:System.UInt128 System.UInt128::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt128 System.UInt128::Zero() System.Private.CoreLib.dll:System.UInt128..ctor(System.UInt64, System.UInt64) -System.Private.CoreLib.dll:System.UInt128.g__AddDivisor|112_0(System.Span`1, System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.UInt128.g__DivideGuessTooBig|112_1(System.UInt64, System.UInt64, System.UInt32, System.UInt32, System.UInt32) -System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|112_2(System.UInt128, System.UInt128) -System.Private.CoreLib.dll:System.UInt128.g__SubtractDivisor|112_3(System.Span`1, System.ReadOnlySpan`1, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64Bits|83_1(System.UInt128, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64BitsCore|83_2(System.UInt64, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide96BitsBy64Bits|83_3(System.UInt64, System.UInt32, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|83_0(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.UInt128) System.Private.CoreLib.dll:System.UInt128.CreateTruncating`1(TOther) @@ -12020,6 +12050,7 @@ System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.INumberB System.Private.CoreLib.dll:System.UInt64.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt64.CompareTo(System.UInt64) System.Private.CoreLib.dll:System.UInt64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt64.DivRem(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.Equals(System.Object) System.Private.CoreLib.dll:System.UInt64.Equals(System.UInt64) System.Private.CoreLib.dll:System.UInt64.GetHashCode() diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-size.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-size.txt index 7e33b5b75a65..fdd18caaac26 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-size.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-size.txt @@ -1,18 +1,18 @@ -AppBundleSize: 16,524,646 bytes (16,137.3 KB = 15.8 MB) +AppBundleSize: 16,623,446 bytes (16,233.8 KB = 15.9 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/_CodeSignature/CodeResources: 4,134 bytes (4.0 KB = 0.0 MB) -Contents/Info.plist: 1,119 bytes (1.1 KB = 0.0 MB) -Contents/MacOS/SizeTestApp: 13,983,584 bytes (13,655.8 KB = 13.3 MB) -Contents/MonoBundle/aot-instances.aotdata.arm64: 1,037,632 bytes (1,013.3 KB = 1.0 MB) +Contents/Info.plist: 1,127 bytes (1.1 KB = 0.0 MB) +Contents/MacOS/SizeTestApp: 14,065,136 bytes (13,735.5 KB = 13.4 MB) +Contents/MonoBundle/aot-instances.aotdata.arm64: 1,051,776 bytes (1,027.1 KB = 1.0 MB) Contents/MonoBundle/Microsoft.MacCatalyst.aotdata.arm64: 35,976 bytes (35.1 KB = 0.0 MB) Contents/MonoBundle/Microsoft.MacCatalyst.dll: 51,200 bytes (50.0 KB = 0.0 MB) Contents/MonoBundle/runtimeconfig.bin: 1,481 bytes (1.4 KB = 0.0 MB) Contents/MonoBundle/SizeTestApp.aotdata.arm64: 1,552 bytes (1.5 KB = 0.0 MB) Contents/MonoBundle/SizeTestApp.dll: 7,168 bytes (7.0 KB = 0.0 MB) -Contents/MonoBundle/System.Private.CoreLib.aotdata.arm64: 844,824 bytes (825.0 KB = 0.8 MB) -Contents/MonoBundle/System.Private.CoreLib.dll: 541,696 bytes (529.0 KB = 0.5 MB) +Contents/MonoBundle/System.Private.CoreLib.aotdata.arm64: 850,480 bytes (830.5 KB = 0.8 MB) +Contents/MonoBundle/System.Private.CoreLib.dll: 542,720 bytes (530.0 KB = 0.5 MB) Contents/MonoBundle/System.Runtime.aotdata.arm64: 472 bytes (0.5 KB = 0.0 MB) Contents/MonoBundle/System.Runtime.dll: 5,120 bytes (5.0 KB = 0.0 MB) Contents/MonoBundle/System.Runtime.InteropServices.aotdata.arm64: 488 bytes (0.5 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.InteropServices.dll: 8,192 bytes (8.0 KB = 0.0 MB) +Contents/MonoBundle/System.Runtime.InteropServices.dll: 4,608 bytes (4.5 KB = 0.0 MB) Contents/PkgInfo: 8 bytes (0.0 KB = 0.0 MB) diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-NativeAOT-size.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-NativeAOT-size.txt index 7eb03909c29a..b63b20865bd6 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-NativeAOT-size.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-NativeAOT-size.txt @@ -1,7 +1,7 @@ -AppBundleSize: 2,815,261 bytes (2,749.3 KB = 2.7 MB) +AppBundleSize: 2,814,789 bytes (2,748.8 KB = 2.7 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/_CodeSignature/CodeResources: 2,358 bytes (2.3 KB = 0.0 MB) -Contents/Info.plist: 1,119 bytes (1.1 KB = 0.0 MB) -Contents/MacOS/SizeTestApp: 2,809,968 bytes (2,744.1 KB = 2.7 MB) +Contents/Info.plist: 1,127 bytes (1.1 KB = 0.0 MB) +Contents/MacOS/SizeTestApp: 2,809,488 bytes (2,743.6 KB = 2.7 MB) Contents/MonoBundle/runtimeconfig.bin: 1,808 bytes (1.8 KB = 0.0 MB) Contents/PkgInfo: 8 bytes (0.0 KB = 0.0 MB) diff --git a/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-Interpreter-size.txt b/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-Interpreter-size.txt index 277d931923ce..a585fc7bcf22 100644 --- a/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-Interpreter-size.txt +++ b/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-Interpreter-size.txt @@ -1,173 +1,173 @@ -AppBundleSize: 246,987,182 bytes (241,198.4 KB = 235.5 MB) +AppBundleSize: 246,922,534 bytes (241,135.3 KB = 235.5 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/_CodeSignature/CodeResources: 54,948 bytes (53.7 KB = 0.1 MB) -Contents/Info.plist: 750 bytes (0.7 KB = 0.0 MB) -Contents/MacOS/SizeTestApp: 7,964,176 bytes (7,777.5 KB = 7.6 MB) -Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.CSharp.dll: 884,224 bytes (863.5 KB = 0.8 MB) +Contents/Info.plist: 758 bytes (0.7 KB = 0.0 MB) +Contents/MacOS/SizeTestApp: 7,964,432 bytes (7,777.8 KB = 7.6 MB) +Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.CSharp.dll: 882,688 bytes (862.0 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Caching.Abstractions.dll: 56,320 bytes (55.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Configuration.Abstractions.dll: 28,160 bytes (27.5 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.DependencyInjection.Abstractions.dll: 141,312 bytes (138.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.DependencyInjection.Abstractions.dll: 140,800 bytes (137.5 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Diagnostics.Abstractions.dll: 19,456 bytes (19.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.FileProviders.Abstractions.dll: 15,360 bytes (15.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Hosting.Abstractions.dll: 38,400 bytes (37.5 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Logging.Abstractions.dll: 147,456 bytes (144.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Options.dll: 133,632 bytes (130.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Hosting.Abstractions.dll: 38,912 bytes (38.0 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Logging.Abstractions.dll: 150,528 bytes (147.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Options.dll: 135,168 bytes (132.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Primitives.dll: 70,144 bytes (68.5 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.macOS.dll: 36,710,400 bytes (35,850.0 KB = 35.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.VisualBasic.Core.dll: 1,324,544 bytes (1,293.5 KB = 1.3 MB) -Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Win32.Registry.dll: 24,064 bytes (23.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.VisualBasic.Core.dll: 1,321,472 bytes (1,290.5 KB = 1.3 MB) +Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Win32.Registry.dll: 23,552 bytes (23.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/SizeTestApp.dll: 6,656 bytes (6.5 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Concurrent.dll: 137,216 bytes (134.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.dll: 318,976 bytes (311.5 KB = 0.3 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Immutable.dll: 1,109,504 bytes (1,083.5 KB = 1.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.NonGeneric.dll: 94,720 bytes (92.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Specialized.dll: 95,232 bytes (93.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.Annotations.dll: 206,848 bytes (202.0 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Concurrent.dll: 136,704 bytes (133.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.dll: 317,952 bytes (310.5 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Immutable.dll: 1,105,920 bytes (1,080.0 KB = 1.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.NonGeneric.dll: 94,208 bytes (92.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Specialized.dll: 94,720 bytes (92.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.Annotations.dll: 206,336 bytes (201.5 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.dll: 7,168 bytes (7.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.EventBasedAsync.dll: 28,672 bytes (28.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.Primitives.dll: 69,632 bytes (68.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.TypeConverter.dll: 870,912 bytes (850.5 KB = 0.8 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Console.dll: 210,944 bytes (206.0 KB = 0.2 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Data.Common.dll: 3,217,920 bytes (3,142.5 KB = 3.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.DiagnosticSource.dll: 551,424 bytes (538.5 KB = 0.5 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.TypeConverter.dll: 867,840 bytes (847.5 KB = 0.8 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Console.dll: 215,040 bytes (210.0 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Data.Common.dll: 3,212,800 bytes (3,137.5 KB = 3.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.DiagnosticSource.dll: 549,888 bytes (537.0 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.FileVersionInfo.dll: 35,840 bytes (35.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Process.dll: 285,184 bytes (278.5 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Process.dll: 352,768 bytes (344.5 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.StackTrace.dll: 26,112 bytes (25.5 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.TextWriterTraceListener.dll: 55,296 bytes (54.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.TraceSource.dll: 141,312 bytes (138.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Drawing.Primitives.dll: 118,784 bytes (116.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Drawing.Primitives.dll: 118,272 bytes (115.5 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Formats.Asn1.dll: 249,344 bytes (243.5 KB = 0.2 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Formats.Tar.dll: 317,952 bytes (310.5 KB = 0.3 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.Brotli.dll: 73,216 bytes (71.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.dll: 523,776 bytes (511.5 KB = 0.5 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.ZipFile.dll: 91,648 bytes (89.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.AccessControl.dll: 23,040 bytes (22.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Formats.Tar.dll: 316,416 bytes (309.0 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.Brotli.dll: 73,728 bytes (72.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.dll: 540,672 bytes (528.0 KB = 0.5 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.ZipFile.dll: 91,136 bytes (89.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.AccessControl.dll: 22,528 bytes (22.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.DriveInfo.dll: 78,848 bytes (77.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.Watcher.dll: 111,616 bytes (109.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.IsolatedStorage.dll: 73,728 bytes (72.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.MemoryMappedFiles.dll: 84,480 bytes (82.5 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Pipelines.dll: 189,440 bytes (185.0 KB = 0.2 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Pipes.AccessControl.dll: 14,336 bytes (14.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Pipes.dll: 135,680 bytes (132.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.AsyncEnumerable.dll: 1,487,360 bytes (1,452.5 KB = 1.4 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.dll: 788,480 bytes (770.0 KB = 0.8 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.Expressions.dll: 4,642,816 bytes (4,534.0 KB = 4.4 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.Parallel.dll: 884,224 bytes (863.5 KB = 0.8 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Pipes.AccessControl.dll: 13,824 bytes (13.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Pipes.dll: 136,192 bytes (133.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.AsyncEnumerable.dll: 1,483,776 bytes (1,449.0 KB = 1.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.dll: 787,968 bytes (769.5 KB = 0.8 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.Expressions.dll: 4,638,208 bytes (4,529.5 KB = 4.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.Parallel.dll: 882,176 bytes (861.5 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.Queryable.dll: 204,288 bytes (199.5 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Memory.dll: 154,624 bytes (151.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Http.dll: 1,882,624 bytes (1,838.5 KB = 1.8 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Http.dll: 1,875,456 bytes (1,831.5 KB = 1.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Http.Json.dll: 119,296 bytes (116.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Net.HttpListener.dll: 317,440 bytes (310.0 KB = 0.3 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Mail.dll: 532,992 bytes (520.5 KB = 0.5 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.HttpListener.dll: 316,928 bytes (309.5 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Mail.dll: 530,432 bytes (518.0 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.NameResolution.dll: 105,472 bytes (103.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Net.NetworkInformation.dll: 143,872 bytes (140.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.NetworkInformation.dll: 142,336 bytes (139.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Ping.dll: 88,576 bytes (86.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Primitives.dll: 241,664 bytes (236.0 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Primitives.dll: 241,152 bytes (235.5 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Quic.dll: 372,224 bytes (363.5 KB = 0.4 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Requests.dll: 407,040 bytes (397.5 KB = 0.4 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Security.dll: 794,624 bytes (776.0 KB = 0.8 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Requests.dll: 406,016 bytes (396.5 KB = 0.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Security.dll: 793,088 bytes (774.5 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.ServerSentEvents.dll: 67,584 bytes (66.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Sockets.dll: 694,784 bytes (678.5 KB = 0.7 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebClient.dll: 166,912 bytes (163.0 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebHeaderCollection.dll: 52,224 bytes (51.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebProxy.dll: 26,624 bytes (26.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebSockets.Client.dll: 88,576 bytes (86.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebSockets.dll: 239,616 bytes (234.0 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebSockets.Client.dll: 89,088 bytes (87.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebSockets.dll: 238,592 bytes (233.0 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ObjectModel.dll: 67,072 bytes (65.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Private.CoreLib.dll: 17,944,064 bytes (17,523.5 KB = 17.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Private.DataContractSerialization.dll: 2,380,800 bytes (2,325.0 KB = 2.3 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Private.CoreLib.dll: 17,900,032 bytes (17,480.5 KB = 17.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Private.DataContractSerialization.dll: 2,376,192 bytes (2,320.5 KB = 2.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Private.Uri.dll: 252,928 bytes (247.0 KB = 0.2 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Private.Xml.dll: 8,819,200 bytes (8,612.5 KB = 8.4 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Private.Xml.Linq.dll: 416,256 bytes (406.5 KB = 0.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Private.Xml.dll: 8,779,776 bytes (8,574.0 KB = 8.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Private.Xml.Linq.dll: 414,208 bytes (404.5 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.DispatchProxy.dll: 62,976 bytes (61.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Emit.dll: 337,408 bytes (329.5 KB = 0.3 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Metadata.dll: 1,275,392 bytes (1,245.5 KB = 1.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Emit.dll: 335,872 bytes (328.0 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Metadata.dll: 1,272,832 bytes (1,243.0 KB = 1.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.TypeExtensions.dll: 24,064 bytes (23.5 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Resources.Writer.dll: 35,840 bytes (35.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.CompilerServices.VisualC.dll: 9,216 bytes (9.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.InteropServices.dll: 101,376 bytes (99.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.InteropServices.JavaScript.dll: 29,696 bytes (29.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Numerics.dll: 440,320 bytes (430.0 KB = 0.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.CompilerServices.VisualC.dll: 8,704 bytes (8.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.InteropServices.dll: 100,864 bytes (98.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.InteropServices.JavaScript.dll: 27,136 bytes (26.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Numerics.dll: 441,856 bytes (431.5 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.Formatters.dll: 118,784 bytes (116.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.Primitives.dll: 19,968 bytes (19.5 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Security.AccessControl.dll: 49,152 bytes (48.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Claims.dll: 92,160 bytes (90.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.dll: 2,426,880 bytes (2,370.0 KB = 2.3 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Principal.Windows.dll: 28,672 bytes (28.0 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.AccessControl.dll: 45,056 bytes (44.0 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Claims.dll: 91,648 bytes (89.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.dll: 2,458,112 bytes (2,400.5 KB = 2.3 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Principal.Windows.dll: 27,648 bytes (27.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Encoding.CodePages.dll: 856,576 bytes (836.5 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Encodings.Web.dll: 113,152 bytes (110.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Json.dll: 2,162,176 bytes (2,111.5 KB = 2.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Text.RegularExpressions.dll: 1,181,184 bytes (1,153.5 KB = 1.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.AccessControl.dll: 24,576 bytes (24.0 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Json.dll: 2,158,080 bytes (2,107.5 KB = 2.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Text.RegularExpressions.dll: 1,179,648 bytes (1,152.0 KB = 1.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.AccessControl.dll: 23,552 bytes (23.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Channels.dll: 155,136 bytes (151.5 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.dll: 71,168 bytes (69.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Tasks.Dataflow.dll: 523,776 bytes (511.5 KB = 0.5 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Tasks.Dataflow.dll: 522,240 bytes (510.0 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Tasks.Parallel.dll: 122,880 bytes (120.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Transactions.Local.dll: 391,680 bytes (382.5 KB = 0.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Transactions.Local.dll: 386,048 bytes (377.0 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Web.HttpUtility.dll: 47,104 bytes (46.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.XPath.XDocument.dll: 7,168 bytes (7.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/Microsoft.CSharp.dll: 787,456 bytes (769.0 KB = 0.8 MB) +Contents/MonoBundle/.xamarin/osx-x64/Microsoft.CSharp.dll: 785,408 bytes (767.0 KB = 0.7 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Caching.Abstractions.dll: 52,224 bytes (51.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Configuration.Abstractions.dll: 26,624 bytes (26.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll: 123,392 bytes (120.5 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Diagnostics.Abstractions.dll: 18,432 bytes (18.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.FileProviders.Abstractions.dll: 14,848 bytes (14.5 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Hosting.Abstractions.dll: 35,840 bytes (35.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Logging.Abstractions.dll: 132,096 bytes (129.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Options.dll: 118,272 bytes (115.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.FileProviders.Abstractions.dll: 14,336 bytes (14.0 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Hosting.Abstractions.dll: 36,352 bytes (35.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Logging.Abstractions.dll: 134,656 bytes (131.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Options.dll: 119,808 bytes (117.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Primitives.dll: 63,488 bytes (62.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.macOS.dll: 36,710,400 bytes (35,850.0 KB = 35.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/Microsoft.VisualBasic.Core.dll: 1,155,072 bytes (1,128.0 KB = 1.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Win32.Registry.dll: 24,064 bytes (23.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/Microsoft.VisualBasic.Core.dll: 1,152,000 bytes (1,125.0 KB = 1.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Win32.Registry.dll: 23,040 bytes (22.5 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/SizeTestApp.dll: 6,656 bytes (6.5 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Collections.Concurrent.dll: 122,880 bytes (120.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Collections.dll: 279,040 bytes (272.5 KB = 0.3 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Collections.Immutable.dll: 976,896 bytes (954.0 KB = 0.9 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Collections.NonGeneric.dll: 82,944 bytes (81.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Collections.Concurrent.dll: 122,368 bytes (119.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Collections.dll: 278,016 bytes (271.5 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Collections.Immutable.dll: 973,824 bytes (951.0 KB = 0.9 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Collections.NonGeneric.dll: 82,432 bytes (80.5 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Collections.Specialized.dll: 82,432 bytes (80.5 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.Annotations.dll: 181,248 bytes (177.0 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.dll: 7,168 bytes (7.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.EventBasedAsync.dll: 26,112 bytes (25.5 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.Primitives.dll: 60,416 bytes (59.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.TypeConverter.dll: 755,200 bytes (737.5 KB = 0.7 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Console.dll: 184,832 bytes (180.5 KB = 0.2 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Data.Common.dll: 2,788,864 bytes (2,723.5 KB = 2.7 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.DiagnosticSource.dll: 490,496 bytes (479.0 KB = 0.5 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.TypeConverter.dll: 752,640 bytes (735.0 KB = 0.7 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Console.dll: 188,416 bytes (184.0 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Data.Common.dll: 2,784,256 bytes (2,719.0 KB = 2.7 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.DiagnosticSource.dll: 488,960 bytes (477.5 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.FileVersionInfo.dll: 33,280 bytes (32.5 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Process.dll: 245,760 bytes (240.0 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Process.dll: 305,152 bytes (298.0 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.StackTrace.dll: 25,088 bytes (24.5 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.TextWriterTraceListener.dll: 48,640 bytes (47.5 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.TraceSource.dll: 121,344 bytes (118.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.TraceSource.dll: 120,832 bytes (118.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Drawing.Primitives.dll: 113,152 bytes (110.5 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Formats.Asn1.dll: 222,208 bytes (217.0 KB = 0.2 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Formats.Tar.dll: 275,456 bytes (269.0 KB = 0.3 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.Brotli.dll: 62,976 bytes (61.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.dll: 450,048 bytes (439.5 KB = 0.4 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Formats.Tar.dll: 274,944 bytes (268.5 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.Brotli.dll: 63,488 bytes (62.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.dll: 465,920 bytes (455.0 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.ZipFile.dll: 81,920 bytes (80.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.AccessControl.dll: 23,040 bytes (22.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.AccessControl.dll: 22,528 bytes (22.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.DriveInfo.dll: 69,120 bytes (67.5 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.Watcher.dll: 96,256 bytes (94.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.IsolatedStorage.dll: 66,560 bytes (65.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.MemoryMappedFiles.dll: 72,704 bytes (71.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipelines.dll: 172,032 bytes (168.0 KB = 0.2 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipes.AccessControl.dll: 14,336 bytes (14.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipes.dll: 116,736 bytes (114.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Linq.AsyncEnumerable.dll: 1,324,544 bytes (1,293.5 KB = 1.3 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Linq.dll: 690,688 bytes (674.5 KB = 0.7 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Linq.Expressions.dll: 3,715,584 bytes (3,628.5 KB = 3.5 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Linq.Parallel.dll: 768,512 bytes (750.5 KB = 0.7 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipelines.dll: 171,520 bytes (167.5 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipes.AccessControl.dll: 13,824 bytes (13.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipes.dll: 117,248 bytes (114.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Linq.AsyncEnumerable.dll: 1,320,960 bytes (1,290.0 KB = 1.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Linq.dll: 689,664 bytes (673.5 KB = 0.7 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Linq.Expressions.dll: 3,709,952 bytes (3,623.0 KB = 3.5 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Linq.Parallel.dll: 766,464 bytes (748.5 KB = 0.7 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Linq.Queryable.dll: 168,448 bytes (164.5 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Memory.dll: 142,336 bytes (139.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Net.Http.dll: 1,655,808 bytes (1,617.0 KB = 1.6 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Net.Http.dll: 1,654,272 bytes (1,615.5 KB = 1.6 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Http.Json.dll: 109,568 bytes (107.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Net.HttpListener.dll: 280,064 bytes (273.5 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Net.HttpListener.dll: 279,552 bytes (273.0 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Mail.dll: 462,336 bytes (451.5 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.NameResolution.dll: 92,160 bytes (90.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Net.NetworkInformation.dll: 125,440 bytes (122.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Net.NetworkInformation.dll: 123,904 bytes (121.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Ping.dll: 78,336 bytes (76.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Net.Primitives.dll: 212,992 bytes (208.0 KB = 0.2 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Net.Quic.dll: 330,240 bytes (322.5 KB = 0.3 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Net.Requests.dll: 352,768 bytes (344.5 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Net.Primitives.dll: 212,480 bytes (207.5 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Net.Quic.dll: 330,752 bytes (323.0 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Net.Requests.dll: 352,256 bytes (344.0 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Security.dll: 689,152 bytes (673.0 KB = 0.7 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.ServerSentEvents.dll: 61,952 bytes (60.5 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Sockets.dll: 594,944 bytes (581.0 KB = 0.6 MB) @@ -177,51 +177,51 @@ Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebProxy.dll: 24,064 bytes (23.5 Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebSockets.Client.dll: 79,872 bytes (78.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebSockets.dll: 212,992 bytes (208.0 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ObjectModel.dll: 58,880 bytes (57.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Private.CoreLib.dll: 16,488,448 bytes (16,102.0 KB = 15.7 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Private.DataContractSerialization.dll: 2,054,144 bytes (2,006.0 KB = 2.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Private.CoreLib.dll: 16,445,440 bytes (16,060.0 KB = 15.7 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Private.DataContractSerialization.dll: 2,049,536 bytes (2,001.5 KB = 2.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Private.Uri.dll: 229,888 bytes (224.5 KB = 0.2 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Private.Xml.dll: 7,680,000 bytes (7,500.0 KB = 7.3 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Private.Xml.Linq.dll: 360,448 bytes (352.0 KB = 0.3 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.DispatchProxy.dll: 57,344 bytes (56.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Emit.dll: 295,424 bytes (288.5 KB = 0.3 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Metadata.dll: 1,144,320 bytes (1,117.5 KB = 1.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Private.Xml.dll: 7,654,400 bytes (7,475.0 KB = 7.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Private.Xml.Linq.dll: 358,912 bytes (350.5 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.DispatchProxy.dll: 56,832 bytes (55.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Emit.dll: 293,888 bytes (287.0 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Metadata.dll: 1,142,272 bytes (1,115.5 KB = 1.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.TypeExtensions.dll: 21,504 bytes (21.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Resources.Writer.dll: 32,256 bytes (31.5 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.CompilerServices.VisualC.dll: 8,704 bytes (8.5 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.InteropServices.dll: 92,160 bytes (90.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.InteropServices.JavaScript.dll: 29,696 bytes (29.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Numerics.dll: 411,136 bytes (401.5 KB = 0.4 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.InteropServices.JavaScript.dll: 27,136 bytes (26.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Numerics.dll: 412,672 bytes (403.0 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.Formatters.dll: 105,472 bytes (103.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.Primitives.dll: 18,432 bytes (18.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Security.AccessControl.dll: 49,152 bytes (48.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Security.Claims.dll: 82,432 bytes (80.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.dll: 2,105,856 bytes (2,056.5 KB = 2.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Security.Principal.Windows.dll: 28,672 bytes (28.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Text.Encoding.CodePages.dll: 840,192 bytes (820.5 KB = 0.8 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.AccessControl.dll: 45,056 bytes (44.0 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Claims.dll: 81,920 bytes (80.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.dll: 2,130,944 bytes (2,081.0 KB = 2.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Principal.Windows.dll: 27,648 bytes (27.0 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Text.Encoding.CodePages.dll: 839,680 bytes (820.0 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Text.Encodings.Web.dll: 104,448 bytes (102.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Text.Json.dll: 1,934,848 bytes (1,889.5 KB = 1.8 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Text.RegularExpressions.dll: 1,053,184 bytes (1,028.5 KB = 1.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Threading.AccessControl.dll: 24,064 bytes (23.5 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Channels.dll: 139,776 bytes (136.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Text.Json.dll: 1,931,264 bytes (1,886.0 KB = 1.8 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Text.RegularExpressions.dll: 1,052,160 bytes (1,027.5 KB = 1.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.AccessControl.dll: 23,040 bytes (22.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Channels.dll: 139,264 bytes (136.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.dll: 64,512 bytes (63.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.Dataflow.dll: 461,824 bytes (451.0 KB = 0.4 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.Parallel.dll: 110,080 bytes (107.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Transactions.Local.dll: 346,624 bytes (338.5 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.Dataflow.dll: 460,800 bytes (450.0 KB = 0.4 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.Parallel.dll: 109,568 bytes (107.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Transactions.Local.dll: 341,504 bytes (333.5 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Web.HttpUtility.dll: 43,008 bytes (42.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XPath.XDocument.dll: 6,656 bytes (6.5 KB = 0.0 MB) -Contents/MonoBundle/libclrgc.dylib: 2,038,512 bytes (1,990.7 KB = 1.9 MB) -Contents/MonoBundle/libclrgcexp.dylib: 2,199,008 bytes (2,147.5 KB = 2.1 MB) -Contents/MonoBundle/libclrjit.dylib: 6,487,232 bytes (6,335.2 KB = 6.2 MB) -Contents/MonoBundle/libcoreclr.dylib: 12,829,056 bytes (12,528.4 KB = 12.2 MB) +Contents/MonoBundle/libclrgc.dylib: 2,038,208 bytes (1,990.4 KB = 1.9 MB) +Contents/MonoBundle/libclrgcexp.dylib: 2,198,640 bytes (2,147.1 KB = 2.1 MB) +Contents/MonoBundle/libclrjit.dylib: 6,522,368 bytes (6,369.5 KB = 6.2 MB) +Contents/MonoBundle/libcoreclr.dylib: 12,828,256 bytes (12,527.6 KB = 12.2 MB) Contents/MonoBundle/libhostfxr.dylib: 833,536 bytes (814.0 KB = 0.8 MB) Contents/MonoBundle/libhostpolicy.dylib: 776,624 bytes (758.4 KB = 0.7 MB) -Contents/MonoBundle/libmscordaccore.dylib: 4,511,296 bytes (4,405.6 KB = 4.3 MB) -Contents/MonoBundle/libmscordbi.dylib: 3,442,608 bytes (3,361.9 KB = 3.3 MB) +Contents/MonoBundle/libmscordaccore.dylib: 4,453,600 bytes (4,349.2 KB = 4.2 MB) +Contents/MonoBundle/libmscordbi.dylib: 3,447,008 bytes (3,366.2 KB = 3.3 MB) Contents/MonoBundle/libSystem.Globalization.Native.dylib: 286,816 bytes (280.1 KB = 0.3 MB) -Contents/MonoBundle/libSystem.IO.Compression.Native.dylib: 3,278,528 bytes (3,201.7 KB = 3.1 MB) -Contents/MonoBundle/libSystem.Native.dylib: 296,304 bytes (289.4 KB = 0.3 MB) -Contents/MonoBundle/libSystem.Net.Security.Native.dylib: 136,656 bytes (133.5 KB = 0.1 MB) -Contents/MonoBundle/libSystem.Security.Cryptography.Native.Apple.dylib: 436,400 bytes (426.2 KB = 0.4 MB) +Contents/MonoBundle/libSystem.IO.Compression.Native.dylib: 3,278,688 bytes (3,201.8 KB = 3.1 MB) +Contents/MonoBundle/libSystem.Native.dylib: 296,416 bytes (289.5 KB = 0.3 MB) +Contents/MonoBundle/libSystem.Net.Security.Native.dylib: 136,768 bytes (133.6 KB = 0.1 MB) +Contents/MonoBundle/libSystem.Security.Cryptography.Native.Apple.dylib: 460,880 bytes (450.1 KB = 0.4 MB) Contents/MonoBundle/Microsoft.VisualBasic.dll: 7,168 bytes (7.0 KB = 0.0 MB) Contents/MonoBundle/Microsoft.Win32.Primitives.dll: 5,632 bytes (5.5 KB = 0.0 MB) Contents/MonoBundle/mscorlib.dll: 49,664 bytes (48.5 KB = 0.0 MB) diff --git a/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-R2R-size.txt b/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-R2R-size.txt index b0d41b6c8931..75733e8b1bff 100644 --- a/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-R2R-size.txt +++ b/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-R2R-size.txt @@ -1,173 +1,173 @@ -AppBundleSize: 313,862,062 bytes (306,505.9 KB = 299.3 MB) +AppBundleSize: 312,059,686 bytes (304,745.8 KB = 297.6 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/_CodeSignature/CodeResources: 54,948 bytes (53.7 KB = 0.1 MB) -Contents/Info.plist: 750 bytes (0.7 KB = 0.0 MB) -Contents/MacOS/SizeTestApp: 7,964,176 bytes (7,777.5 KB = 7.6 MB) -Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.CSharp.dll: 884,224 bytes (863.5 KB = 0.8 MB) +Contents/Info.plist: 758 bytes (0.7 KB = 0.0 MB) +Contents/MacOS/SizeTestApp: 7,964,432 bytes (7,777.8 KB = 7.6 MB) +Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.CSharp.dll: 882,688 bytes (862.0 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Caching.Abstractions.dll: 56,320 bytes (55.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Configuration.Abstractions.dll: 28,160 bytes (27.5 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.DependencyInjection.Abstractions.dll: 141,312 bytes (138.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.DependencyInjection.Abstractions.dll: 140,800 bytes (137.5 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Diagnostics.Abstractions.dll: 19,456 bytes (19.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.FileProviders.Abstractions.dll: 15,360 bytes (15.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Hosting.Abstractions.dll: 38,400 bytes (37.5 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Logging.Abstractions.dll: 147,456 bytes (144.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Options.dll: 133,632 bytes (130.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Hosting.Abstractions.dll: 38,912 bytes (38.0 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Logging.Abstractions.dll: 150,528 bytes (147.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Options.dll: 135,168 bytes (132.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Primitives.dll: 70,144 bytes (68.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.macOS.dll: 75,900,928 bytes (74,122.0 KB = 72.4 MB) -Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.VisualBasic.Core.dll: 1,324,544 bytes (1,293.5 KB = 1.3 MB) -Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Win32.Registry.dll: 24,064 bytes (23.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.macOS.dll: 75,032,064 bytes (73,273.5 KB = 71.6 MB) +Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.VisualBasic.Core.dll: 1,321,472 bytes (1,290.5 KB = 1.3 MB) +Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Win32.Registry.dll: 23,552 bytes (23.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/SizeTestApp.dll: 10,240 bytes (10.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Concurrent.dll: 137,216 bytes (134.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.dll: 318,976 bytes (311.5 KB = 0.3 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Immutable.dll: 1,109,504 bytes (1,083.5 KB = 1.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.NonGeneric.dll: 94,720 bytes (92.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Specialized.dll: 95,232 bytes (93.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.Annotations.dll: 206,848 bytes (202.0 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Concurrent.dll: 136,704 bytes (133.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.dll: 317,952 bytes (310.5 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Immutable.dll: 1,105,920 bytes (1,080.0 KB = 1.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.NonGeneric.dll: 94,208 bytes (92.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Specialized.dll: 94,720 bytes (92.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.Annotations.dll: 206,336 bytes (201.5 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.dll: 7,168 bytes (7.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.EventBasedAsync.dll: 28,672 bytes (28.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.Primitives.dll: 69,632 bytes (68.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.TypeConverter.dll: 870,912 bytes (850.5 KB = 0.8 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Console.dll: 210,944 bytes (206.0 KB = 0.2 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Data.Common.dll: 3,217,920 bytes (3,142.5 KB = 3.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.DiagnosticSource.dll: 551,424 bytes (538.5 KB = 0.5 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.TypeConverter.dll: 867,840 bytes (847.5 KB = 0.8 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Console.dll: 215,040 bytes (210.0 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Data.Common.dll: 3,212,800 bytes (3,137.5 KB = 3.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.DiagnosticSource.dll: 549,888 bytes (537.0 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.FileVersionInfo.dll: 35,840 bytes (35.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Process.dll: 285,184 bytes (278.5 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Process.dll: 352,768 bytes (344.5 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.StackTrace.dll: 26,112 bytes (25.5 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.TextWriterTraceListener.dll: 55,296 bytes (54.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.TraceSource.dll: 141,312 bytes (138.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Drawing.Primitives.dll: 118,784 bytes (116.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Drawing.Primitives.dll: 118,272 bytes (115.5 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Formats.Asn1.dll: 249,344 bytes (243.5 KB = 0.2 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Formats.Tar.dll: 317,952 bytes (310.5 KB = 0.3 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.Brotli.dll: 73,216 bytes (71.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.dll: 523,776 bytes (511.5 KB = 0.5 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.ZipFile.dll: 91,648 bytes (89.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.AccessControl.dll: 23,040 bytes (22.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Formats.Tar.dll: 316,416 bytes (309.0 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.Brotli.dll: 73,728 bytes (72.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.dll: 540,672 bytes (528.0 KB = 0.5 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.ZipFile.dll: 91,136 bytes (89.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.AccessControl.dll: 22,528 bytes (22.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.DriveInfo.dll: 78,848 bytes (77.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.Watcher.dll: 111,616 bytes (109.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.IsolatedStorage.dll: 73,728 bytes (72.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.MemoryMappedFiles.dll: 84,480 bytes (82.5 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Pipelines.dll: 189,440 bytes (185.0 KB = 0.2 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Pipes.AccessControl.dll: 14,336 bytes (14.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Pipes.dll: 135,680 bytes (132.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.AsyncEnumerable.dll: 1,487,360 bytes (1,452.5 KB = 1.4 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.dll: 788,480 bytes (770.0 KB = 0.8 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.Expressions.dll: 4,642,816 bytes (4,534.0 KB = 4.4 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.Parallel.dll: 884,224 bytes (863.5 KB = 0.8 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Pipes.AccessControl.dll: 13,824 bytes (13.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Pipes.dll: 136,192 bytes (133.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.AsyncEnumerable.dll: 1,483,776 bytes (1,449.0 KB = 1.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.dll: 787,968 bytes (769.5 KB = 0.8 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.Expressions.dll: 4,638,208 bytes (4,529.5 KB = 4.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.Parallel.dll: 882,176 bytes (861.5 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.Queryable.dll: 204,288 bytes (199.5 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Memory.dll: 154,624 bytes (151.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Http.dll: 1,882,624 bytes (1,838.5 KB = 1.8 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Http.dll: 1,875,456 bytes (1,831.5 KB = 1.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Http.Json.dll: 119,296 bytes (116.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Net.HttpListener.dll: 317,440 bytes (310.0 KB = 0.3 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Mail.dll: 532,992 bytes (520.5 KB = 0.5 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.HttpListener.dll: 316,928 bytes (309.5 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Mail.dll: 530,432 bytes (518.0 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.NameResolution.dll: 105,472 bytes (103.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Net.NetworkInformation.dll: 143,872 bytes (140.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.NetworkInformation.dll: 142,336 bytes (139.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Ping.dll: 88,576 bytes (86.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Primitives.dll: 241,664 bytes (236.0 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Primitives.dll: 241,152 bytes (235.5 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Quic.dll: 372,224 bytes (363.5 KB = 0.4 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Requests.dll: 407,040 bytes (397.5 KB = 0.4 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Security.dll: 794,624 bytes (776.0 KB = 0.8 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Requests.dll: 406,016 bytes (396.5 KB = 0.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Security.dll: 793,088 bytes (774.5 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.ServerSentEvents.dll: 67,584 bytes (66.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Sockets.dll: 694,784 bytes (678.5 KB = 0.7 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebClient.dll: 166,912 bytes (163.0 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebHeaderCollection.dll: 52,224 bytes (51.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebProxy.dll: 26,624 bytes (26.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebSockets.Client.dll: 88,576 bytes (86.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebSockets.dll: 239,616 bytes (234.0 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebSockets.Client.dll: 89,088 bytes (87.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebSockets.dll: 238,592 bytes (233.0 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ObjectModel.dll: 67,072 bytes (65.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Private.CoreLib.dll: 17,944,064 bytes (17,523.5 KB = 17.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Private.DataContractSerialization.dll: 2,380,800 bytes (2,325.0 KB = 2.3 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Private.CoreLib.dll: 17,900,032 bytes (17,480.5 KB = 17.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Private.DataContractSerialization.dll: 2,376,192 bytes (2,320.5 KB = 2.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Private.Uri.dll: 252,928 bytes (247.0 KB = 0.2 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Private.Xml.dll: 8,819,200 bytes (8,612.5 KB = 8.4 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Private.Xml.Linq.dll: 416,256 bytes (406.5 KB = 0.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Private.Xml.dll: 8,779,776 bytes (8,574.0 KB = 8.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Private.Xml.Linq.dll: 414,208 bytes (404.5 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.DispatchProxy.dll: 62,976 bytes (61.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Emit.dll: 337,408 bytes (329.5 KB = 0.3 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Metadata.dll: 1,275,392 bytes (1,245.5 KB = 1.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Emit.dll: 335,872 bytes (328.0 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Metadata.dll: 1,272,832 bytes (1,243.0 KB = 1.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.TypeExtensions.dll: 24,064 bytes (23.5 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Resources.Writer.dll: 35,840 bytes (35.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.CompilerServices.VisualC.dll: 9,216 bytes (9.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.InteropServices.dll: 101,376 bytes (99.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.InteropServices.JavaScript.dll: 29,696 bytes (29.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Numerics.dll: 440,320 bytes (430.0 KB = 0.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.CompilerServices.VisualC.dll: 8,704 bytes (8.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.InteropServices.dll: 100,864 bytes (98.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.InteropServices.JavaScript.dll: 27,136 bytes (26.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Numerics.dll: 441,856 bytes (431.5 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.Formatters.dll: 118,784 bytes (116.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.Primitives.dll: 19,968 bytes (19.5 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Security.AccessControl.dll: 49,152 bytes (48.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Claims.dll: 92,160 bytes (90.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.dll: 2,426,880 bytes (2,370.0 KB = 2.3 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Principal.Windows.dll: 28,672 bytes (28.0 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.AccessControl.dll: 45,056 bytes (44.0 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Claims.dll: 91,648 bytes (89.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.dll: 2,458,112 bytes (2,400.5 KB = 2.3 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Principal.Windows.dll: 27,648 bytes (27.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Encoding.CodePages.dll: 856,576 bytes (836.5 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Encodings.Web.dll: 113,152 bytes (110.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Json.dll: 2,162,176 bytes (2,111.5 KB = 2.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Text.RegularExpressions.dll: 1,181,184 bytes (1,153.5 KB = 1.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.AccessControl.dll: 24,576 bytes (24.0 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Json.dll: 2,158,080 bytes (2,107.5 KB = 2.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Text.RegularExpressions.dll: 1,179,648 bytes (1,152.0 KB = 1.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.AccessControl.dll: 23,552 bytes (23.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Channels.dll: 155,136 bytes (151.5 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.dll: 71,168 bytes (69.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Tasks.Dataflow.dll: 523,776 bytes (511.5 KB = 0.5 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Tasks.Dataflow.dll: 522,240 bytes (510.0 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Tasks.Parallel.dll: 122,880 bytes (120.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-arm64/System.Transactions.Local.dll: 391,680 bytes (382.5 KB = 0.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Transactions.Local.dll: 386,048 bytes (377.0 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Web.HttpUtility.dll: 47,104 bytes (46.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.XPath.XDocument.dll: 7,168 bytes (7.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/Microsoft.CSharp.dll: 787,456 bytes (769.0 KB = 0.8 MB) +Contents/MonoBundle/.xamarin/osx-x64/Microsoft.CSharp.dll: 785,408 bytes (767.0 KB = 0.7 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Caching.Abstractions.dll: 52,224 bytes (51.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Configuration.Abstractions.dll: 26,624 bytes (26.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll: 123,392 bytes (120.5 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Diagnostics.Abstractions.dll: 18,432 bytes (18.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.FileProviders.Abstractions.dll: 14,848 bytes (14.5 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Hosting.Abstractions.dll: 35,840 bytes (35.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Logging.Abstractions.dll: 132,096 bytes (129.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Options.dll: 118,272 bytes (115.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.FileProviders.Abstractions.dll: 14,336 bytes (14.0 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Hosting.Abstractions.dll: 36,352 bytes (35.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Logging.Abstractions.dll: 134,656 bytes (131.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Options.dll: 119,808 bytes (117.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Primitives.dll: 63,488 bytes (62.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/Microsoft.macOS.dll: 64,388,096 bytes (62,879.0 KB = 61.4 MB) -Contents/MonoBundle/.xamarin/osx-x64/Microsoft.VisualBasic.Core.dll: 1,155,072 bytes (1,128.0 KB = 1.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Win32.Registry.dll: 24,064 bytes (23.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/Microsoft.macOS.dll: 63,519,232 bytes (62,030.5 KB = 60.6 MB) +Contents/MonoBundle/.xamarin/osx-x64/Microsoft.VisualBasic.Core.dll: 1,152,000 bytes (1,125.0 KB = 1.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Win32.Registry.dll: 23,040 bytes (22.5 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/SizeTestApp.dll: 9,728 bytes (9.5 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Collections.Concurrent.dll: 122,880 bytes (120.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Collections.dll: 279,040 bytes (272.5 KB = 0.3 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Collections.Immutable.dll: 976,896 bytes (954.0 KB = 0.9 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Collections.NonGeneric.dll: 82,944 bytes (81.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Collections.Concurrent.dll: 122,368 bytes (119.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Collections.dll: 278,016 bytes (271.5 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Collections.Immutable.dll: 973,824 bytes (951.0 KB = 0.9 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Collections.NonGeneric.dll: 82,432 bytes (80.5 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Collections.Specialized.dll: 82,432 bytes (80.5 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.Annotations.dll: 181,248 bytes (177.0 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.dll: 7,168 bytes (7.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.EventBasedAsync.dll: 26,112 bytes (25.5 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.Primitives.dll: 60,416 bytes (59.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.TypeConverter.dll: 755,200 bytes (737.5 KB = 0.7 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Console.dll: 184,832 bytes (180.5 KB = 0.2 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Data.Common.dll: 2,788,864 bytes (2,723.5 KB = 2.7 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.DiagnosticSource.dll: 490,496 bytes (479.0 KB = 0.5 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.TypeConverter.dll: 752,640 bytes (735.0 KB = 0.7 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Console.dll: 188,416 bytes (184.0 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Data.Common.dll: 2,784,256 bytes (2,719.0 KB = 2.7 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.DiagnosticSource.dll: 488,960 bytes (477.5 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.FileVersionInfo.dll: 33,280 bytes (32.5 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Process.dll: 245,760 bytes (240.0 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Process.dll: 305,152 bytes (298.0 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.StackTrace.dll: 25,088 bytes (24.5 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.TextWriterTraceListener.dll: 48,640 bytes (47.5 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.TraceSource.dll: 121,344 bytes (118.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.TraceSource.dll: 120,832 bytes (118.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Drawing.Primitives.dll: 113,152 bytes (110.5 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Formats.Asn1.dll: 222,208 bytes (217.0 KB = 0.2 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Formats.Tar.dll: 275,456 bytes (269.0 KB = 0.3 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.Brotli.dll: 62,976 bytes (61.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.dll: 450,048 bytes (439.5 KB = 0.4 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Formats.Tar.dll: 274,944 bytes (268.5 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.Brotli.dll: 63,488 bytes (62.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.dll: 465,920 bytes (455.0 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.ZipFile.dll: 81,920 bytes (80.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.AccessControl.dll: 23,040 bytes (22.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.AccessControl.dll: 22,528 bytes (22.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.DriveInfo.dll: 69,120 bytes (67.5 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.Watcher.dll: 96,256 bytes (94.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.IsolatedStorage.dll: 66,560 bytes (65.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.MemoryMappedFiles.dll: 72,704 bytes (71.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipelines.dll: 172,032 bytes (168.0 KB = 0.2 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipes.AccessControl.dll: 14,336 bytes (14.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipes.dll: 116,736 bytes (114.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Linq.AsyncEnumerable.dll: 1,324,544 bytes (1,293.5 KB = 1.3 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Linq.dll: 690,688 bytes (674.5 KB = 0.7 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Linq.Expressions.dll: 3,715,584 bytes (3,628.5 KB = 3.5 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Linq.Parallel.dll: 768,512 bytes (750.5 KB = 0.7 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipelines.dll: 171,520 bytes (167.5 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipes.AccessControl.dll: 13,824 bytes (13.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipes.dll: 117,248 bytes (114.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Linq.AsyncEnumerable.dll: 1,320,960 bytes (1,290.0 KB = 1.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Linq.dll: 689,664 bytes (673.5 KB = 0.7 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Linq.Expressions.dll: 3,709,952 bytes (3,623.0 KB = 3.5 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Linq.Parallel.dll: 766,464 bytes (748.5 KB = 0.7 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Linq.Queryable.dll: 168,448 bytes (164.5 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Memory.dll: 142,336 bytes (139.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Net.Http.dll: 1,655,808 bytes (1,617.0 KB = 1.6 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Net.Http.dll: 1,654,272 bytes (1,615.5 KB = 1.6 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Http.Json.dll: 109,568 bytes (107.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Net.HttpListener.dll: 280,064 bytes (273.5 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Net.HttpListener.dll: 279,552 bytes (273.0 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Mail.dll: 462,336 bytes (451.5 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.NameResolution.dll: 92,160 bytes (90.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Net.NetworkInformation.dll: 125,440 bytes (122.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Net.NetworkInformation.dll: 123,904 bytes (121.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Ping.dll: 78,336 bytes (76.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Net.Primitives.dll: 212,992 bytes (208.0 KB = 0.2 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Net.Quic.dll: 330,240 bytes (322.5 KB = 0.3 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Net.Requests.dll: 352,768 bytes (344.5 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Net.Primitives.dll: 212,480 bytes (207.5 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Net.Quic.dll: 330,752 bytes (323.0 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Net.Requests.dll: 352,256 bytes (344.0 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Security.dll: 689,152 bytes (673.0 KB = 0.7 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.ServerSentEvents.dll: 61,952 bytes (60.5 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Sockets.dll: 594,944 bytes (581.0 KB = 0.6 MB) @@ -177,51 +177,51 @@ Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebProxy.dll: 24,064 bytes (23.5 Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebSockets.Client.dll: 79,872 bytes (78.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebSockets.dll: 212,992 bytes (208.0 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ObjectModel.dll: 58,880 bytes (57.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Private.CoreLib.dll: 16,488,448 bytes (16,102.0 KB = 15.7 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Private.DataContractSerialization.dll: 2,054,144 bytes (2,006.0 KB = 2.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Private.CoreLib.dll: 16,445,440 bytes (16,060.0 KB = 15.7 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Private.DataContractSerialization.dll: 2,049,536 bytes (2,001.5 KB = 2.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Private.Uri.dll: 229,888 bytes (224.5 KB = 0.2 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Private.Xml.dll: 7,680,000 bytes (7,500.0 KB = 7.3 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Private.Xml.Linq.dll: 360,448 bytes (352.0 KB = 0.3 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.DispatchProxy.dll: 57,344 bytes (56.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Emit.dll: 295,424 bytes (288.5 KB = 0.3 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Metadata.dll: 1,144,320 bytes (1,117.5 KB = 1.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Private.Xml.dll: 7,654,400 bytes (7,475.0 KB = 7.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Private.Xml.Linq.dll: 358,912 bytes (350.5 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.DispatchProxy.dll: 56,832 bytes (55.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Emit.dll: 293,888 bytes (287.0 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Metadata.dll: 1,142,272 bytes (1,115.5 KB = 1.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.TypeExtensions.dll: 21,504 bytes (21.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Resources.Writer.dll: 32,256 bytes (31.5 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.CompilerServices.VisualC.dll: 8,704 bytes (8.5 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.InteropServices.dll: 92,160 bytes (90.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.InteropServices.JavaScript.dll: 29,696 bytes (29.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Numerics.dll: 411,136 bytes (401.5 KB = 0.4 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.InteropServices.JavaScript.dll: 27,136 bytes (26.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Numerics.dll: 412,672 bytes (403.0 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.Formatters.dll: 105,472 bytes (103.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.Primitives.dll: 18,432 bytes (18.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Security.AccessControl.dll: 49,152 bytes (48.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Security.Claims.dll: 82,432 bytes (80.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.dll: 2,105,856 bytes (2,056.5 KB = 2.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Security.Principal.Windows.dll: 28,672 bytes (28.0 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Text.Encoding.CodePages.dll: 840,192 bytes (820.5 KB = 0.8 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.AccessControl.dll: 45,056 bytes (44.0 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Claims.dll: 81,920 bytes (80.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.dll: 2,130,944 bytes (2,081.0 KB = 2.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Principal.Windows.dll: 27,648 bytes (27.0 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Text.Encoding.CodePages.dll: 839,680 bytes (820.0 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Text.Encodings.Web.dll: 104,448 bytes (102.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Text.Json.dll: 1,934,848 bytes (1,889.5 KB = 1.8 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Text.RegularExpressions.dll: 1,053,184 bytes (1,028.5 KB = 1.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Threading.AccessControl.dll: 24,064 bytes (23.5 KB = 0.0 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Channels.dll: 139,776 bytes (136.5 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Text.Json.dll: 1,931,264 bytes (1,886.0 KB = 1.8 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Text.RegularExpressions.dll: 1,052,160 bytes (1,027.5 KB = 1.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.AccessControl.dll: 23,040 bytes (22.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Channels.dll: 139,264 bytes (136.0 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.dll: 64,512 bytes (63.0 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.Dataflow.dll: 461,824 bytes (451.0 KB = 0.4 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.Parallel.dll: 110,080 bytes (107.5 KB = 0.1 MB) -Contents/MonoBundle/.xamarin/osx-x64/System.Transactions.Local.dll: 346,624 bytes (338.5 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.Dataflow.dll: 460,800 bytes (450.0 KB = 0.4 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.Parallel.dll: 109,568 bytes (107.0 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Transactions.Local.dll: 341,504 bytes (333.5 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Web.HttpUtility.dll: 43,008 bytes (42.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XPath.XDocument.dll: 6,656 bytes (6.5 KB = 0.0 MB) -Contents/MonoBundle/libclrgc.dylib: 2,038,512 bytes (1,990.7 KB = 1.9 MB) -Contents/MonoBundle/libclrgcexp.dylib: 2,199,008 bytes (2,147.5 KB = 2.1 MB) -Contents/MonoBundle/libclrjit.dylib: 6,487,232 bytes (6,335.2 KB = 6.2 MB) -Contents/MonoBundle/libcoreclr.dylib: 12,829,056 bytes (12,528.4 KB = 12.2 MB) +Contents/MonoBundle/libclrgc.dylib: 2,038,208 bytes (1,990.4 KB = 1.9 MB) +Contents/MonoBundle/libclrgcexp.dylib: 2,198,640 bytes (2,147.1 KB = 2.1 MB) +Contents/MonoBundle/libclrjit.dylib: 6,522,368 bytes (6,369.5 KB = 6.2 MB) +Contents/MonoBundle/libcoreclr.dylib: 12,828,256 bytes (12,527.6 KB = 12.2 MB) Contents/MonoBundle/libhostfxr.dylib: 833,536 bytes (814.0 KB = 0.8 MB) Contents/MonoBundle/libhostpolicy.dylib: 776,624 bytes (758.4 KB = 0.7 MB) -Contents/MonoBundle/libmscordaccore.dylib: 4,511,296 bytes (4,405.6 KB = 4.3 MB) -Contents/MonoBundle/libmscordbi.dylib: 3,442,608 bytes (3,361.9 KB = 3.3 MB) +Contents/MonoBundle/libmscordaccore.dylib: 4,453,600 bytes (4,349.2 KB = 4.2 MB) +Contents/MonoBundle/libmscordbi.dylib: 3,447,008 bytes (3,366.2 KB = 3.3 MB) Contents/MonoBundle/libSystem.Globalization.Native.dylib: 286,816 bytes (280.1 KB = 0.3 MB) -Contents/MonoBundle/libSystem.IO.Compression.Native.dylib: 3,278,528 bytes (3,201.7 KB = 3.1 MB) -Contents/MonoBundle/libSystem.Native.dylib: 296,304 bytes (289.4 KB = 0.3 MB) -Contents/MonoBundle/libSystem.Net.Security.Native.dylib: 136,656 bytes (133.5 KB = 0.1 MB) -Contents/MonoBundle/libSystem.Security.Cryptography.Native.Apple.dylib: 436,400 bytes (426.2 KB = 0.4 MB) +Contents/MonoBundle/libSystem.IO.Compression.Native.dylib: 3,278,688 bytes (3,201.8 KB = 3.1 MB) +Contents/MonoBundle/libSystem.Native.dylib: 296,416 bytes (289.5 KB = 0.3 MB) +Contents/MonoBundle/libSystem.Net.Security.Native.dylib: 136,768 bytes (133.6 KB = 0.1 MB) +Contents/MonoBundle/libSystem.Security.Cryptography.Native.Apple.dylib: 460,880 bytes (450.1 KB = 0.4 MB) Contents/MonoBundle/Microsoft.VisualBasic.dll: 7,168 bytes (7.0 KB = 0.0 MB) Contents/MonoBundle/Microsoft.Win32.Primitives.dll: 5,632 bytes (5.5 KB = 0.0 MB) Contents/MonoBundle/mscorlib.dll: 49,664 bytes (48.5 KB = 0.0 MB) diff --git a/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-size.txt b/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-size.txt index c7678b8c44b2..b17c5234d53c 100644 --- a/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-size.txt +++ b/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-size.txt @@ -1,8 +1,8 @@ -AppBundleSize: 6,087,713 bytes (5,945.0 KB = 5.8 MB) +AppBundleSize: 6,087,337 bytes (5,944.7 KB = 5.8 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/_CodeSignature/CodeResources: 2,644 bytes (2.6 KB = 0.0 MB) -Contents/Info.plist: 750 bytes (0.7 KB = 0.0 MB) -Contents/MacOS/SizeTestApp: 6,082,304 bytes (5,939.8 KB = 5.8 MB) +Contents/Info.plist: 758 bytes (0.7 KB = 0.0 MB) +Contents/MacOS/SizeTestApp: 6,081,920 bytes (5,939.4 KB = 5.8 MB) Contents/MonoBundle/runtimeconfig.bin: 1,766 bytes (1.7 KB = 0.0 MB) Contents/PkgInfo: 8 bytes (0.0 KB = 0.0 MB) Contents/Resources/archived-expanded-entitlements.xcent: 241 bytes (0.2 KB = 0.0 MB) diff --git a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-preservedapis.txt index a8f9cd53db1a..6271e5455983 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-preservedapis.txt @@ -2389,6 +2389,7 @@ System.Private.CoreLib.dll:method System.Void *(System.Byte&,System.Byte*,System System.Private.CoreLib.dll:method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&) System.StubHelpers.LayoutClassMarshaler`1/Methods::Free() System.Private.CoreLib.dll:method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&) System.StubHelpers.StubHelpers/StructureMarshalInfo::ConvertToManaged System.Private.CoreLib.dll:method System.Void *(System.Byte&) System.RuntimeType/ActivatorCache::_pfnValueCtor +System.Private.CoreLib.dll:method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Threading.Tasks.ValueTaskSourceNotifier::_onCompleted System.Private.CoreLib.dll:method System.Void *(System.Object) System.RuntimeType/ActivatorCache::_pfnRefCtor System.Private.CoreLib.dll:method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*) System.Runtime.CompilerServices.PortableTailCallFrame::NextCall System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle @@ -2505,8 +2506,8 @@ System.Private.CoreLib.dll:System.Action`1 System.Threading.Manua System.Private.CoreLib.dll:System.Action`1 System.Threading.SemaphoreSlim::s_cancellationTokenCanceledEventHandler System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1::_continuation System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Sources.ManualResetValueTaskSourceCoreShared::s_sentinel -System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__39_0 -System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__39_1 +System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__44_0 +System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__44_1 System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation/<>c::<>9__2_0 System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask::s_completionAction System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::s_completionAction @@ -2805,6 +2806,8 @@ System.Private.CoreLib.dll:System.BitConverter.Int32BitsToSingle(System.Int32) System.Private.CoreLib.dll:System.BitConverter.Int64BitsToDouble(System.Int64) System.Private.CoreLib.dll:System.BitConverter.SingleToInt32Bits(System.Single) System.Private.CoreLib.dll:System.BitConverter.SingleToUInt32Bits(System.Single) +System.Private.CoreLib.dll:System.BitConverter.ToInt32(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.BitConverter.ToUInt32(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.BitConverter.UInt16BitsToHalf(System.UInt16) System.Private.CoreLib.dll:System.BitConverter.UInt32BitsToSingle(System.UInt32) System.Private.CoreLib.dll:System.BitConverter.UInt64BitsToDouble(System.UInt64) @@ -3194,7 +3197,9 @@ System.Private.CoreLib.dll:System.Boolean System.RuntimeType/RuntimeTypeCache/Me System.Private.CoreLib.dll:System.Boolean System.RuntimeTypeHandle/IntroducedMethodEnumerator::_firstCall System.Private.CoreLib.dll:System.Boolean System.SByte::System.IBinaryIntegerParseAndFormatInfo.IsSigned() System.Private.CoreLib.dll:System.Boolean System.Span`1::IsEmpty() +System.Private.CoreLib.dll:System.Boolean System.StubHelpers.LayoutClassMarshaler`1/Methods::IsBlittable() System.Private.CoreLib.dll:System.Boolean System.StubHelpers.SafeHandleCleanupWorkListElement::m_owned +System.Private.CoreLib.dll:System.Boolean System.StubHelpers.StructureMarshaler`1::s_isBlittable System.Private.CoreLib.dll:System.Boolean System.Text.Decoder::InternalHasFallbackBuffer() System.Private.CoreLib.dll:System.Boolean System.Text.DecoderNLS::_throwOnOverflow System.Private.CoreLib.dll:System.Boolean System.Text.DecoderNLS::MustFlush() @@ -3217,6 +3222,7 @@ System.Private.CoreLib.dll:System.Boolean System.Threading.CancellationTokenSour System.Private.CoreLib.dll:System.Boolean System.Threading.CancellationTokenSource::IsCancellationRequested() System.Private.CoreLib.dll:System.Boolean System.Threading.Condition/Waiter::signalled System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::HasChangeNotifications() +System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::InstanceIsFlowSuppressed() System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::IsDefault() System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::m_isDefault System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::m_isFlowSuppressed @@ -3504,7 +3510,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/ContainsAnyRes System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default.PackSources(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1 @@ -3513,7 +3519,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResu System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IOptimizations @@ -3524,7 +3530,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper` System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Ssse3AndWasmHandleZeroInNeedle @@ -5413,6 +5419,7 @@ System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.AllowNullAttribute..c System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Max(System.Object) +System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Min(System.Object) System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes @@ -8015,10 +8022,9 @@ System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.Sources.ManualRes System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1::Version() System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask::_token System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask::_token -System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier::_token System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1::_token System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::_token -System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier::_token +System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTaskSourceNotifier::_token System.Private.CoreLib.dll:System.Int16.CompareTo(System.Int16) System.Private.CoreLib.dll:System.Int16.CompareTo(System.Object) System.Private.CoreLib.dll:System.Int16.CreateSaturating`1(TOther) @@ -8825,7 +8831,6 @@ System.Private.CoreLib.dll:System.Int32 System.Threading.SpinWait::_count System.Private.CoreLib.dll:System.Int32 System.Threading.SpinWait::Count() System.Private.CoreLib.dll:System.Int32 System.Threading.SpinWait::SpinCountForSpinBeforeWait System.Private.CoreLib.dll:System.Int32 System.Threading.StackCrawlMark::value__ -System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.AsyncCausalityStatus::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.CausalitySynchronousWork::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.ConfigureAwaitOptions::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.InternalTaskOptions::value__ @@ -8901,6 +8906,7 @@ System.Private.CoreLib.dll:System.Int32.Equals(System.Object) System.Private.CoreLib.dll:System.Int32.GetHashCode() System.Private.CoreLib.dll:System.Int32.GetTypeCode() System.Private.CoreLib.dll:System.Int32.IsNegative(System.Int32) +System.Private.CoreLib.dll:System.Int32.Log2(System.Int32) System.Private.CoreLib.dll:System.Int32.Max(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Min(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -10156,8 +10162,8 @@ System.Private.CoreLib.dll:System.Memory`1.Pin() System.Private.CoreLib.dll:System.Memory`1.Slice(System.Int32) System.Private.CoreLib.dll:System.Memory`1.ToString() System.Private.CoreLib.dll:System.MemoryExtensions -System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|273_0(System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|287_0(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|278_0(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|292_0(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.AsMemory`1(T[], System.Int32, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32) @@ -10748,7 +10754,9 @@ System.Private.CoreLib.dll:System.Object System.ComAwareWeakReference/ComInfo::_ System.Private.CoreLib.dll:System.Object System.Delegate::_methodBase System.Private.CoreLib.dll:System.Object System.Delegate::_target System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Max() +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Min() System.Private.CoreLib.dll:System.Object System.Diagnostics.EditAndContinueHelper::_objectReference System.Private.CoreLib.dll:System.Object System.Diagnostics.StackFrameHelper::dynamicMethods System.Private.CoreLib.dll:System.Object System.Diagnostics.StackFrameHelper::s_stackTraceSymbolsCache @@ -10822,6 +10830,7 @@ System.Private.CoreLib.dll:System.Object System.Threading.Tasks.TaskToAsyncResul System.Private.CoreLib.dll:System.Object System.Threading.Tasks.TaskToAsyncResult/TaskAsyncResult::AsyncState() System.Private.CoreLib.dll:System.Object System.Threading.Tasks.ValueTask::_obj System.Private.CoreLib.dll:System.Object System.Threading.Tasks.ValueTask`1::_obj +System.Private.CoreLib.dll:System.Object System.Threading.Tasks.ValueTaskSourceNotifier::_source System.Private.CoreLib.dll:System.Object System.Threading.Thread/StartHelper::_startArg System.Private.CoreLib.dll:System.Object System.Threading.ThreadBlockingInfo/Scope::_object System.Private.CoreLib.dll:System.Object System.Threading.TimerQueueTimer::_notifyWhenNoCallbacksRunning @@ -10948,8 +10957,8 @@ System.Private.CoreLib.dll:System.PlatformNotSupportedException..ctor(System.Str System.Private.CoreLib.dll:System.Predicate`1 System.Private.CoreLib.dll:System.Predicate`1..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Predicate`1.Invoke(T) -System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__219_0 -System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__138_0 +System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__224_0 +System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__143_0 System.Private.CoreLib.dll:System.Random System.Private.CoreLib.dll:System.Random/ImplBase System.Private.CoreLib.dll:System.Random/ImplBase..ctor() @@ -13150,10 +13159,13 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureC System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureExecutionContext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CompletedTask(System.Threading.Tasks.Task) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CompletedTaskResult`1(System.Threading.Tasks.Task`1) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk`1() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk`1() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeRuntimeAsyncTask`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&, System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinishSuspensionNoContinuationContext(System.Threading.ExecutionContext&, System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinishSuspensionWithContinuationContext(System.Object&, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&, System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContexts(System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContextsOnSuspension(System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreExecutionContext(System.Threading.ExecutionContext) @@ -13168,6 +13180,13 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ValueTas System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState System.Runtime.CompilerServices.AsyncHelpers::t_runtimeAsyncAwaitState System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState.CaptureContexts() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState.Pop() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState.Push(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState*) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState.Pop(System.Threading.Thread) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState.Push(System.Threading.Thread) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState* System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::StackState +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState* System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::Next System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1..cctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1..ctor() @@ -13175,18 +13194,18 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeA System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.ExecuteFromThreadPool(System.Threading.Thread) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.GetContinuationAction() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.GetResultStorage() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.HandleSuspended() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.HandleSuspended(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.MoveContinuationState() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.QueueContinuationFollowUpActionIfNecessary(System.Runtime.CompilerServices.Continuation) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.SetContinuationState(System.Runtime.CompilerServices.Continuation) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.System.Threading.Tasks.ITaskCompletionAction.get_InvokeMayRunArbitraryCode() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.System.Threading.Tasks.ITaskCompletionAction.Invoke(System.Threading.Tasks.Task) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.UnwindToPossibleHandler(System.Runtime.CompilerServices.Continuation, System.Exception) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.UnwindToPossibleHandler(System.Runtime.CompilerServices.Continuation, System.Exception, System.UInt32&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c..cctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c..ctor() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__16_0(System.Object) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__16_1(System.Object) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__18_0(System.Object) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__18_1(System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c::<>9 System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore @@ -13284,7 +13303,6 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox_Nul System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox_TypeTest_Helper(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox_TypeTest(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox(System.Runtime.CompilerServices.MethodTable*, System.Object) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.WriteBarrier(System.Object&, System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastResult System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastResult System.Runtime.CompilerServices.CastResult::CanCast System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastResult System.Runtime.CompilerServices.CastResult::CannotCast @@ -13440,9 +13458,6 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.DynamicStaticsInfo Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.DynamicStaticsInfo.MaskStaticsPointer(System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.EntryInfo System.Private.CoreLib.dll:System.Runtime.CompilerServices.EntryInfo System.Runtime.CompilerServices.GenericCache`2/Entry::_info -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExecutionAndSyncBlockStore -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExecutionAndSyncBlockStore.Pop() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExecutionAndSyncBlockStore.Push() System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExtensionAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExtensionAttribute..ctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.GenericCache`2 @@ -13481,7 +13496,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox.MoveNext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IConfiguredTaskAwaiter System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::CriticalNotifier +System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::CriticalNotifier System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion.UnsafeOnCompleted(System.Action) System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.CallClassConstructor(System.Void*, System.Void*, System.Exception*) @@ -13498,7 +13513,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.Store(System.Byte*, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.StoreSelectedScalar(System.UInt32*, System.Runtime.Intrinsics.Vector64`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd/Arm64 @@ -14695,6 +14712,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions.Store`2(TVector, T*) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AddSaturate`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AndNot`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.As`2(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AsByte`1(System.Runtime.Intrinsics.Vector128`1) @@ -14742,6 +14761,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GetElementUnsafe` System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThan`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanAny`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfFirstMatch`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNaN`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNegative`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.LastIndexOf`1(System.Runtime.Intrinsics.Vector128`1, T) @@ -14837,11 +14858,11 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Equals`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.EqualsAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector256`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetLower`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GreaterThanAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNaN`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNegative`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.LastIndexOf`1(System.Runtime.Intrinsics.Vector256`1, T) @@ -14914,10 +14935,10 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Equals`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.EqualsAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector512`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GreaterThanAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNaN`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNegative`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.LastIndexOf`1(System.Runtime.Intrinsics.Vector512`1, T) @@ -14974,12 +14995,15 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.ToString(System System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1 System.Runtime.Intrinsics.Vector512`1::Zero() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AddSaturate`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AndNot`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.As`2(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsByte`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt32`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt32`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.ConditionalSelect`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Int16, System.Int16, System.Int16, System.Int16) @@ -14997,6 +15021,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GetElementUnsafe`1 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThan`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanAny`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNaN`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNegative`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.LastIndexOf`1(System.Runtime.Intrinsics.Vector64`1, T) @@ -16841,11 +16866,13 @@ System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1 System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallConvertToManaged|3_0(System.Byte&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallConvertToUnmanaged|1_0(System.Byte&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallFree|4_0(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) +System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallIsBlittable|5_0() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.ConvertToManaged(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.ConvertToUnmanaged(T, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.ConvertToUnmanagedCore(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.Free(T, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.FreeCore(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) +System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.GetIsBlittable() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods..cctor() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.BlittableConvertToManaged(System.Byte&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) @@ -16854,6 +16881,7 @@ System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.Bli System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_ConvertToManaged() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_ConvertToUnmanaged() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_Free() +System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_IsBlittable() System.Private.CoreLib.dll:System.StubHelpers.MngdFixedArrayMarshaler System.Private.CoreLib.dll:System.StubHelpers.MngdFixedArrayMarshaler.ClearNativeContents(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.StubHelpers.MngdFixedArrayMarshaler.ClearNativeContents(System.IntPtr, System.Object&, System.IntPtr) @@ -16894,11 +16922,13 @@ System.Private.CoreLib.dll:System.StubHelpers.SafeHandleCleanupWorkListElement.. System.Private.CoreLib.dll:System.StubHelpers.SafeHandleCleanupWorkListElement.AddRef() System.Private.CoreLib.dll:System.StubHelpers.SafeHandleCleanupWorkListElement.DestroyCore() System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1 +System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1..cctor() System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.ConvertToManaged(T&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.ConvertToUnmanaged(T&, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.ConvertToUnmanagedCore(T&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.Free(T&, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.FreeCore(T&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) +System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.InitIsBlittable() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers System.Private.CoreLib.dll:System.StubHelpers.StubHelpers..cctor() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.g____PInvoke|18_0(System.Runtime.CompilerServices.QCallTypeHandle, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*) @@ -17670,8 +17700,8 @@ System.Private.CoreLib.dll:System.Threading.EventWaitHandle.ValidateMode(System. System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Private.CoreLib.dll:System.Threading.ExecutionContext Microsoft.Win32.SafeHandles.SafeFileHandle/ThreadPoolValueTaskSource::_context System.Private.CoreLib.dll:System.Threading.ExecutionContext System.IO.Stream/ReadWriteTask::_context -System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::ExecutionContext -System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.ExecutionAndSyncBlockStore::_previousExecutionCtx +System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::LeafExecutionContext +System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::RootExecutionContext System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Threading.CancellationTokenSource/CallbackNode::ExecutionContext System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Threading.ExecutionContext::Default System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Threading.ExecutionContext::DefaultFlowSuppressed @@ -17692,6 +17722,7 @@ System.Private.CoreLib.dll:System.Threading.ExecutionContext.CaptureForRestore() System.Private.CoreLib.dll:System.Threading.ExecutionContext.CaptureForSuspension(System.Threading.Thread) System.Private.CoreLib.dll:System.Threading.ExecutionContext.Dispose() System.Private.CoreLib.dll:System.Threading.ExecutionContext.get_HasChangeNotifications() +System.Private.CoreLib.dll:System.Threading.ExecutionContext.get_InstanceIsFlowSuppressed() System.Private.CoreLib.dll:System.Threading.ExecutionContext.get_IsDefault() System.Private.CoreLib.dll:System.Threading.ExecutionContext.GetLocalValue(System.Threading.IAsyncLocal) System.Private.CoreLib.dll:System.Threading.ExecutionContext.IsFlowSuppressed() @@ -18171,7 +18202,7 @@ System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1::s_postCallback System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.CancellationTokenSource/<>c::<>9__36_0 System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.Tasks.SynchronizationContextAwaitTaskContinuation::s_postCallback -System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.Tasks.Task/<>c::<>9__131_0 +System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.Tasks.Task/<>c::<>9__136_0 System.Private.CoreLib.dll:System.Threading.SendOrPostCallback..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Threading.SendOrPostCallback.Invoke(System.Object) System.Private.CoreLib.dll:System.Threading.SpinLock @@ -18201,8 +18232,8 @@ System.Private.CoreLib.dll:System.Threading.StackCrawlMark System.Threading.Stac System.Private.CoreLib.dll:System.Threading.StackCrawlMark System.Threading.StackCrawlMark::LookForMyCallersCaller System.Private.CoreLib.dll:System.Threading.StackCrawlMark System.Threading.StackCrawlMark::LookForThread System.Private.CoreLib.dll:System.Threading.SynchronizationContext -System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::SynchronizationContext -System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.ExecutionAndSyncBlockStore::_previousSyncCtx +System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::LeafSynchronizationContext +System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::RootSynchronizationContext System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Threading.CancellationTokenSource/CallbackNode::SynchronizationContext System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Threading.SynchronizationContext::Current() System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Threading.Tasks.SynchronizationContextAwaitTaskContinuation::m_syncContext @@ -18225,11 +18256,6 @@ System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor() System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor(System.String) -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Canceled -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Completed -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Error -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Started System.Private.CoreLib.dll:System.Threading.Tasks.AwaitTaskContinuation System.Private.CoreLib.dll:System.Threading.Tasks.AwaitTaskContinuation..cctor() System.Private.CoreLib.dll:System.Threading.Tasks.AwaitTaskContinuation..ctor(System.Action, System.Boolean) @@ -18285,14 +18311,10 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction System.Threading.Tasks.CompletionActionInvoker::m_action System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction.get_InvokeMayRunArbitraryCode() System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction.Invoke(System.Threading.Tasks.Task) -System.Private.CoreLib.dll:System.Threading.Tasks.IValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.IValueTaskSourceNotifier System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::ValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.IValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.CapturedSchedulerAndExecutionContext System.Private.CoreLib.dll:System.Threading.Tasks.Sources.CapturedSchedulerAndExecutionContext..ctor(System.Object, System.Threading.ExecutionContext) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask::_source -System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier::_valueTaskSource System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource.GetResult(System.Int16) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource.GetStatus(System.Int16) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource.OnCompleted(System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) @@ -18301,7 +18323,6 @@ System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1.Get System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1.GetStatus(System.Int16) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1.OnCompleted(System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::_source -System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1 System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier::_valueTaskSource System.Private.CoreLib.dll:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1 System.Private.CoreLib.dll:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.get_Version() System.Private.CoreLib.dll:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.GetResult(System.Int16) @@ -18345,7 +18366,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.SynchronizationContextAwaitTas System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Private.CoreLib.dll:System.Threading.Tasks.Task modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.ValueTask::s_canceledTask System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.AsyncDispatcherInfo::CurrentTask -System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::TaskNotifier +System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::TaskNotifier System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::m_task System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.TaskAwaiter::m_task System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Threading.Tasks.CompletionActionInvoker::m_completingTask @@ -18364,7 +18385,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor() System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor(System.Boolean, System.Threading.Tasks.TaskCreationOptions, System.Threading.CancellationToken) System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor(System.Delegate, System.Object, System.Threading.Tasks.Task, System.Threading.CancellationToken, System.Threading.Tasks.TaskCreationOptions, System.Threading.Tasks.InternalTaskOptions, System.Threading.Tasks.TaskScheduler) System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor(System.Object, System.Threading.Tasks.TaskCreationOptions, System.Boolean) -System.Private.CoreLib.dll:System.Threading.Tasks.Task.g__InitializeContingentProperties|84_0() +System.Private.CoreLib.dll:System.Threading.Tasks.Task.g__InitializeContingentProperties|89_0() System.Private.CoreLib.dll:System.Threading.Tasks.Task.AddCompletionAction(System.Threading.Tasks.ITaskCompletionAction, System.Boolean) System.Private.CoreLib.dll:System.Threading.Tasks.Task.AddException(System.Object, System.Boolean) System.Private.CoreLib.dll:System.Threading.Tasks.Task.AddException(System.Object) @@ -18476,13 +18497,13 @@ System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c System.Threading.Tasks.Task/<>c::<>9 System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c..cctor() System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c..ctor() -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.<.cctor>b__296_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__219_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__39_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__39_1(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__138_0(System.Threading.Tasks.Task) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__131_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__131_1(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.<.cctor>b__301_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__224_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__44_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__44_1(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__143_0(System.Threading.Tasks.Task) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__136_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__136_1(System.Object) System.Private.CoreLib.dll:System.Threading.Tasks.Task/CancellationPromise`1 System.Private.CoreLib.dll:System.Threading.Tasks.Task/CancellationPromise`1..ctor(System.Threading.Tasks.Task, System.UInt32, System.TimeProvider, System.Threading.CancellationToken) System.Private.CoreLib.dll:System.Threading.Tasks.Task/CancellationPromise`1.Cleanup() @@ -18676,7 +18697,6 @@ System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskCompleted(S System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskWaitBegin(System.Int32, System.Int32, System.Int32, System.Threading.Tasks.TplEventSource/TaskWaitBehavior, System.Int32) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskWaitContinuationComplete(System.Int32) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskWaitEnd(System.Int32, System.Int32, System.Int32) -System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TraceOperationEnd(System.Int32, System.Threading.Tasks.AsyncCausalityStatus) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TraceSynchronousWorkBegin(System.Int32, System.Threading.Tasks.CausalitySynchronousWork) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TraceSynchronousWorkEnd(System.Threading.Tasks.CausalitySynchronousWork) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource/TaskWaitBehavior @@ -18707,6 +18727,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.get_CompletedTask() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.get_IsCompleted() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.GetHashCode() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.GetTaskForValueTaskSource(System.Threading.Tasks.Sources.IValueTaskSource) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.OnCompleted(System.Object, System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.ThrowIfCompletedUnsuccessfully() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask..cctor() @@ -18717,9 +18738,6 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTas System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask/<>c..cctor() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask/<>c..ctor() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask/<>c.<.cctor>b__4_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier..ctor(System.Threading.Tasks.Sources.IValueTaskSource, System.Int16) -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1..ctor(System.Object, TResult, System.Int16, System.Boolean) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1..ctor(System.Threading.Tasks.Sources.IValueTaskSource`1, System.Int16) @@ -18735,6 +18753,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.get_IsCompletedSuc System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.get_Result() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.GetHashCode() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.GetTaskForValueTaskSource(System.Threading.Tasks.Sources.IValueTaskSource`1) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.OnCompleted(System.Object, System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.ToString() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask..cctor() @@ -18745,15 +18764,18 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsT System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c..ctor() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c.<.cctor>b__4_0(System.Object) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c::<>9 -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier..ctor(System.Threading.Tasks.Sources.IValueTaskSource`1, System.Int16) -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1::Task() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1::_value System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1/ConfiguredValueTaskAwaiter::_value +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::ValueTaskSourceNotifier +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier System.Threading.Tasks.ValueTaskSourceNotifier::t_instance +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier..ctor(System.Object, method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags), System.Int16) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier.GetInstance(System.Object, method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags), System.Int16) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.VoidTaskResult System.Private.CoreLib.dll:System.Threading.Thread -System.Private.CoreLib.dll:System.Threading.Thread System.Runtime.CompilerServices.ExecutionAndSyncBlockStore::_thread +System.Private.CoreLib.dll:System.Threading.Thread System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::CurrentThread System.Private.CoreLib.dll:System.Threading.Thread System.Threading.AsyncFlowControl::_thread System.Private.CoreLib.dll:System.Threading.Thread System.Threading.Thread::CurrentThread() System.Private.CoreLib.dll:System.Threading.Thread System.Threading.Thread::CurrentThreadAssumedInitialized() @@ -19061,7 +19083,7 @@ System.Private.CoreLib.dll:System.Threading.Volatile/VolatileUIntPtr System.Private.CoreLib.dll:System.Threading.WaitCallback System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.QueueUserWorkItemCallback::_callback System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.QueueUserWorkItemCallbackDefaultContext::_callback -System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.Tasks.Task/<>c::<>9__131_1 +System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.Tasks.Task/<>c::<>9__136_1 System.Private.CoreLib.dll:System.Threading.WaitCallback..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Threading.WaitCallback.Invoke(System.Object) System.Private.CoreLib.dll:System.Threading.WaitHandle @@ -19281,6 +19303,7 @@ System.Private.CoreLib.dll:System.ThrowHelper.ThrowStartIndexArgumentOutOfRange_ System.Private.CoreLib.dll:System.ThrowHelper.ThrowSynchronizationLockException_LockExit() System.Private.CoreLib.dll:System.ThrowHelper.ThrowUnexpectedStateForKnownCallback(System.Object) System.Private.CoreLib.dll:System.ThrowHelper.ThrowUnreachableException() +System.Private.CoreLib.dll:System.ThrowHelper.ThrowValueArgumentOutOfRange_NeedNonNegNumException() System.Private.CoreLib.dll:System.TimeOnly System.Private.CoreLib.dll:System.TimeOnly.CompareTo(System.Object) System.Private.CoreLib.dll:System.TimeOnly.CompareTo(System.TimeOnly) @@ -19465,7 +19488,7 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetLocalTzFile(out System.Byte System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetTransitionsForYear(System.Int32, out System.ValueTuple`2&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetUtcOffset(System.DateTime, out System.TimeSpan&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryLoadTzFile(System.String, System.Byte[]&, System.String&) -System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.DateTime&) +System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.Int64&) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CalculateTransitionOffsetFromBase(System.TimeSpan, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateAdjustmentRuleForPosixFormat(System.String, System.DateTime, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateTransitionTimeFromPosixRule(System.ReadOnlySpan`1, System.ReadOnlySpan`1) @@ -19489,7 +19512,6 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToInt64(System.Byte[], Syste System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToUnixTime(System.Byte[], System.Int32, System.TimeZoneInfo/TZVersion) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_UnixTimeToDateTime(System.Int64) System.Private.CoreLib.dll:System.TimeZoneInfo.UtcOffsetOutOfRange(System.TimeSpan) -System.Private.CoreLib.dll:System.TimeZoneInfo.UtcToLocal(System.DateTime, out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo.ValidateTimeZoneInfo(System.String, System.TimeSpan, System.TimeZoneInfo/AdjustmentRule[], out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.TimeZoneInfo/<>c::<>9 @@ -19888,10 +19910,10 @@ System.Private.CoreLib.dll:System.UInt128 System.UInt128::One() System.Private.CoreLib.dll:System.UInt128 System.UInt128::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt128 System.UInt128::Zero() System.Private.CoreLib.dll:System.UInt128..ctor(System.UInt64, System.UInt64) -System.Private.CoreLib.dll:System.UInt128.g__AddDivisor|112_0(System.Span`1, System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.UInt128.g__DivideGuessTooBig|112_1(System.UInt64, System.UInt64, System.UInt32, System.UInt32, System.UInt32) -System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|112_2(System.UInt128, System.UInt128) -System.Private.CoreLib.dll:System.UInt128.g__SubtractDivisor|112_3(System.Span`1, System.ReadOnlySpan`1, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64Bits|83_1(System.UInt128, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64BitsCore|83_2(System.UInt64, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide96BitsBy64Bits|83_3(System.UInt64, System.UInt32, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|83_0(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.UInt128) System.Private.CoreLib.dll:System.UInt128.CreateSaturating`1(TOther) @@ -20366,6 +20388,7 @@ System.Private.CoreLib.dll:System.UInt64.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt64.CompareTo(System.UInt64) System.Private.CoreLib.dll:System.UInt64.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt64.DivRem(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.Equals(System.Object) System.Private.CoreLib.dll:System.UInt64.Equals(System.UInt64) System.Private.CoreLib.dll:System.UInt64.GetHashCode() @@ -21423,7 +21446,6 @@ System.Reflection.Metadata.dll:System.Reflection.Internal.PooledStringBuilder/<> System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions.GetAndValidateSize(System.IO.Stream, System.Int32, System.String) System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions.ReadExactly(System.IO.Stream, System.Byte*, System.Int32) -System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions.TryReadAll(System.IO.Stream, System.Span`1) System.Reflection.Metadata.dll:System.Reflection.Internal.StreamMemoryBlockProvider System.Reflection.Metadata.dll:System.Reflection.Internal.StreamMemoryBlockProvider..ctor(System.IO.Stream, System.Int64, System.Int32, System.Boolean) System.Reflection.Metadata.dll:System.Reflection.Internal.StreamMemoryBlockProvider.CreateMemoryMappedFileBlock(System.Int64, System.Int32) diff --git a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-size.txt b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-size.txt index 1743754490c6..990e9f0a800f 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-size.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-size.txt @@ -1,23 +1,23 @@ -AppBundleSize: 9,187,218 bytes (8,971.9 KB = 8.8 MB) +AppBundleSize: 9,189,266 bytes (8,973.9 KB = 8.8 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: _CodeSignature/CodeResources: 9,851 bytes (9.6 KB = 0.0 MB) archived-expanded-entitlements.xcent: 384 bytes (0.4 KB = 0.0 MB) Frameworks/libcoreclr.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/libcoreclr.framework/Info.plist: 809 bytes (0.8 KB = 0.0 MB) -Frameworks/libcoreclr.framework/libcoreclr: 5,216,464 bytes (5,094.2 KB = 5.0 MB) +Frameworks/libcoreclr.framework/Info.plist: 817 bytes (0.8 KB = 0.0 MB) +Frameworks/libcoreclr.framework/libcoreclr: 5,199,600 bytes (5,077.7 KB = 5.0 MB) Frameworks/libSystem.Globalization.Native.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/libSystem.Globalization.Native.framework/Info.plist: 851 bytes (0.8 KB = 0.0 MB) +Frameworks/libSystem.Globalization.Native.framework/Info.plist: 859 bytes (0.8 KB = 0.0 MB) Frameworks/libSystem.Globalization.Native.framework/libSystem.Globalization.Native: 109,776 bytes (107.2 KB = 0.1 MB) Frameworks/libSystem.IO.Compression.Native.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/libSystem.IO.Compression.Native.framework/Info.plist: 853 bytes (0.8 KB = 0.0 MB) -Frameworks/libSystem.IO.Compression.Native.framework/libSystem.IO.Compression.Native: 1,439,536 bytes (1,405.8 KB = 1.4 MB) +Frameworks/libSystem.IO.Compression.Native.framework/Info.plist: 861 bytes (0.8 KB = 0.0 MB) +Frameworks/libSystem.IO.Compression.Native.framework/libSystem.IO.Compression.Native: 1,439,664 bytes (1,405.9 KB = 1.4 MB) Frameworks/libSystem.Native.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/libSystem.Native.framework/Info.plist: 823 bytes (0.8 KB = 0.0 MB) -Frameworks/libSystem.Native.framework/libSystem.Native: 162,480 bytes (158.7 KB = 0.2 MB) +Frameworks/libSystem.Native.framework/Info.plist: 831 bytes (0.8 KB = 0.0 MB) +Frameworks/libSystem.Native.framework/libSystem.Native: 162,544 bytes (158.7 KB = 0.2 MB) Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/Info.plist: 879 bytes (0.9 KB = 0.0 MB) -Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/libSystem.Security.Cryptography.Native.Apple: 195,232 bytes (190.7 KB = 0.2 MB) -Info.plist: 1,137 bytes (1.1 KB = 0.0 MB) +Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/Info.plist: 887 bytes (0.9 KB = 0.0 MB) +Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/libSystem.Security.Cryptography.Native.Apple: 215,440 bytes (210.4 KB = 0.2 MB) +Info.plist: 1,145 bytes (1.1 KB = 0.0 MB) Microsoft.tvOS.dll: 99,328 bytes (97.0 KB = 0.1 MB) PkgInfo: 8 bytes (0.0 KB = 0.0 MB) runtimeconfig.bin: 1,481 bytes (1.4 KB = 0.0 MB) @@ -27,7 +27,7 @@ System.Collections.Immutable.dll: 14,848 bytes (14.5 KB = 0.0 MB) System.Diagnostics.StackTrace.dll: 8,192 bytes (8.0 KB = 0.0 MB) System.IO.Compression.dll: 22,528 bytes (22.0 KB = 0.0 MB) System.IO.MemoryMappedFiles.dll: 22,016 bytes (21.5 KB = 0.0 MB) -System.Private.CoreLib.dll: 1,568,256 bytes (1,531.5 KB = 1.5 MB) +System.Private.CoreLib.dll: 1,570,304 bytes (1,533.5 KB = 1.5 MB) System.Reflection.Metadata.dll: 84,480 bytes (82.5 KB = 0.1 MB) System.Runtime.dll: 5,120 bytes (5.0 KB = 0.0 MB) -System.Runtime.InteropServices.dll: 8,192 bytes (8.0 KB = 0.0 MB) +System.Runtime.InteropServices.dll: 4,608 bytes (4.5 KB = 0.0 MB) diff --git a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-preservedapis.txt b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-preservedapis.txt index a8f9cd53db1a..6271e5455983 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-preservedapis.txt @@ -2389,6 +2389,7 @@ System.Private.CoreLib.dll:method System.Void *(System.Byte&,System.Byte*,System System.Private.CoreLib.dll:method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&) System.StubHelpers.LayoutClassMarshaler`1/Methods::Free() System.Private.CoreLib.dll:method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&) System.StubHelpers.StubHelpers/StructureMarshalInfo::ConvertToManaged System.Private.CoreLib.dll:method System.Void *(System.Byte&) System.RuntimeType/ActivatorCache::_pfnValueCtor +System.Private.CoreLib.dll:method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Threading.Tasks.ValueTaskSourceNotifier::_onCompleted System.Private.CoreLib.dll:method System.Void *(System.Object) System.RuntimeType/ActivatorCache::_pfnRefCtor System.Private.CoreLib.dll:method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*) System.Runtime.CompilerServices.PortableTailCallFrame::NextCall System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle @@ -2505,8 +2506,8 @@ System.Private.CoreLib.dll:System.Action`1 System.Threading.Manua System.Private.CoreLib.dll:System.Action`1 System.Threading.SemaphoreSlim::s_cancellationTokenCanceledEventHandler System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1::_continuation System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Sources.ManualResetValueTaskSourceCoreShared::s_sentinel -System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__39_0 -System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__39_1 +System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__44_0 +System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__44_1 System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation/<>c::<>9__2_0 System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask::s_completionAction System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::s_completionAction @@ -2805,6 +2806,8 @@ System.Private.CoreLib.dll:System.BitConverter.Int32BitsToSingle(System.Int32) System.Private.CoreLib.dll:System.BitConverter.Int64BitsToDouble(System.Int64) System.Private.CoreLib.dll:System.BitConverter.SingleToInt32Bits(System.Single) System.Private.CoreLib.dll:System.BitConverter.SingleToUInt32Bits(System.Single) +System.Private.CoreLib.dll:System.BitConverter.ToInt32(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.BitConverter.ToUInt32(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.BitConverter.UInt16BitsToHalf(System.UInt16) System.Private.CoreLib.dll:System.BitConverter.UInt32BitsToSingle(System.UInt32) System.Private.CoreLib.dll:System.BitConverter.UInt64BitsToDouble(System.UInt64) @@ -3194,7 +3197,9 @@ System.Private.CoreLib.dll:System.Boolean System.RuntimeType/RuntimeTypeCache/Me System.Private.CoreLib.dll:System.Boolean System.RuntimeTypeHandle/IntroducedMethodEnumerator::_firstCall System.Private.CoreLib.dll:System.Boolean System.SByte::System.IBinaryIntegerParseAndFormatInfo.IsSigned() System.Private.CoreLib.dll:System.Boolean System.Span`1::IsEmpty() +System.Private.CoreLib.dll:System.Boolean System.StubHelpers.LayoutClassMarshaler`1/Methods::IsBlittable() System.Private.CoreLib.dll:System.Boolean System.StubHelpers.SafeHandleCleanupWorkListElement::m_owned +System.Private.CoreLib.dll:System.Boolean System.StubHelpers.StructureMarshaler`1::s_isBlittable System.Private.CoreLib.dll:System.Boolean System.Text.Decoder::InternalHasFallbackBuffer() System.Private.CoreLib.dll:System.Boolean System.Text.DecoderNLS::_throwOnOverflow System.Private.CoreLib.dll:System.Boolean System.Text.DecoderNLS::MustFlush() @@ -3217,6 +3222,7 @@ System.Private.CoreLib.dll:System.Boolean System.Threading.CancellationTokenSour System.Private.CoreLib.dll:System.Boolean System.Threading.CancellationTokenSource::IsCancellationRequested() System.Private.CoreLib.dll:System.Boolean System.Threading.Condition/Waiter::signalled System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::HasChangeNotifications() +System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::InstanceIsFlowSuppressed() System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::IsDefault() System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::m_isDefault System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::m_isFlowSuppressed @@ -3504,7 +3510,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/ContainsAnyRes System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default.PackSources(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1 @@ -3513,7 +3519,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResu System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IOptimizations @@ -3524,7 +3530,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper` System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Ssse3AndWasmHandleZeroInNeedle @@ -5413,6 +5419,7 @@ System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.AllowNullAttribute..c System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Max(System.Object) +System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Min(System.Object) System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes @@ -8015,10 +8022,9 @@ System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.Sources.ManualRes System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1::Version() System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask::_token System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask::_token -System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier::_token System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1::_token System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::_token -System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier::_token +System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTaskSourceNotifier::_token System.Private.CoreLib.dll:System.Int16.CompareTo(System.Int16) System.Private.CoreLib.dll:System.Int16.CompareTo(System.Object) System.Private.CoreLib.dll:System.Int16.CreateSaturating`1(TOther) @@ -8825,7 +8831,6 @@ System.Private.CoreLib.dll:System.Int32 System.Threading.SpinWait::_count System.Private.CoreLib.dll:System.Int32 System.Threading.SpinWait::Count() System.Private.CoreLib.dll:System.Int32 System.Threading.SpinWait::SpinCountForSpinBeforeWait System.Private.CoreLib.dll:System.Int32 System.Threading.StackCrawlMark::value__ -System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.AsyncCausalityStatus::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.CausalitySynchronousWork::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.ConfigureAwaitOptions::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.InternalTaskOptions::value__ @@ -8901,6 +8906,7 @@ System.Private.CoreLib.dll:System.Int32.Equals(System.Object) System.Private.CoreLib.dll:System.Int32.GetHashCode() System.Private.CoreLib.dll:System.Int32.GetTypeCode() System.Private.CoreLib.dll:System.Int32.IsNegative(System.Int32) +System.Private.CoreLib.dll:System.Int32.Log2(System.Int32) System.Private.CoreLib.dll:System.Int32.Max(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Min(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -10156,8 +10162,8 @@ System.Private.CoreLib.dll:System.Memory`1.Pin() System.Private.CoreLib.dll:System.Memory`1.Slice(System.Int32) System.Private.CoreLib.dll:System.Memory`1.ToString() System.Private.CoreLib.dll:System.MemoryExtensions -System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|273_0(System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|287_0(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|278_0(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|292_0(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.AsMemory`1(T[], System.Int32, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32) @@ -10748,7 +10754,9 @@ System.Private.CoreLib.dll:System.Object System.ComAwareWeakReference/ComInfo::_ System.Private.CoreLib.dll:System.Object System.Delegate::_methodBase System.Private.CoreLib.dll:System.Object System.Delegate::_target System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Max() +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Min() System.Private.CoreLib.dll:System.Object System.Diagnostics.EditAndContinueHelper::_objectReference System.Private.CoreLib.dll:System.Object System.Diagnostics.StackFrameHelper::dynamicMethods System.Private.CoreLib.dll:System.Object System.Diagnostics.StackFrameHelper::s_stackTraceSymbolsCache @@ -10822,6 +10830,7 @@ System.Private.CoreLib.dll:System.Object System.Threading.Tasks.TaskToAsyncResul System.Private.CoreLib.dll:System.Object System.Threading.Tasks.TaskToAsyncResult/TaskAsyncResult::AsyncState() System.Private.CoreLib.dll:System.Object System.Threading.Tasks.ValueTask::_obj System.Private.CoreLib.dll:System.Object System.Threading.Tasks.ValueTask`1::_obj +System.Private.CoreLib.dll:System.Object System.Threading.Tasks.ValueTaskSourceNotifier::_source System.Private.CoreLib.dll:System.Object System.Threading.Thread/StartHelper::_startArg System.Private.CoreLib.dll:System.Object System.Threading.ThreadBlockingInfo/Scope::_object System.Private.CoreLib.dll:System.Object System.Threading.TimerQueueTimer::_notifyWhenNoCallbacksRunning @@ -10948,8 +10957,8 @@ System.Private.CoreLib.dll:System.PlatformNotSupportedException..ctor(System.Str System.Private.CoreLib.dll:System.Predicate`1 System.Private.CoreLib.dll:System.Predicate`1..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Predicate`1.Invoke(T) -System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__219_0 -System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__138_0 +System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__224_0 +System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__143_0 System.Private.CoreLib.dll:System.Random System.Private.CoreLib.dll:System.Random/ImplBase System.Private.CoreLib.dll:System.Random/ImplBase..ctor() @@ -13150,10 +13159,13 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureC System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureExecutionContext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CompletedTask(System.Threading.Tasks.Task) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CompletedTaskResult`1(System.Threading.Tasks.Task`1) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk`1() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk`1() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeRuntimeAsyncTask`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&, System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinishSuspensionNoContinuationContext(System.Threading.ExecutionContext&, System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinishSuspensionWithContinuationContext(System.Object&, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&, System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContexts(System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContextsOnSuspension(System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreExecutionContext(System.Threading.ExecutionContext) @@ -13168,6 +13180,13 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ValueTas System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState System.Runtime.CompilerServices.AsyncHelpers::t_runtimeAsyncAwaitState System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState.CaptureContexts() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState.Pop() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState.Push(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState*) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState.Pop(System.Threading.Thread) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState.Push(System.Threading.Thread) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState* System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::StackState +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState* System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::Next System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1..cctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1..ctor() @@ -13175,18 +13194,18 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeA System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.ExecuteFromThreadPool(System.Threading.Thread) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.GetContinuationAction() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.GetResultStorage() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.HandleSuspended() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.HandleSuspended(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.MoveContinuationState() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.QueueContinuationFollowUpActionIfNecessary(System.Runtime.CompilerServices.Continuation) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.SetContinuationState(System.Runtime.CompilerServices.Continuation) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.System.Threading.Tasks.ITaskCompletionAction.get_InvokeMayRunArbitraryCode() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.System.Threading.Tasks.ITaskCompletionAction.Invoke(System.Threading.Tasks.Task) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.UnwindToPossibleHandler(System.Runtime.CompilerServices.Continuation, System.Exception) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.UnwindToPossibleHandler(System.Runtime.CompilerServices.Continuation, System.Exception, System.UInt32&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c..cctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c..ctor() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__16_0(System.Object) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__16_1(System.Object) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__18_0(System.Object) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__18_1(System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c::<>9 System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore @@ -13284,7 +13303,6 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox_Nul System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox_TypeTest_Helper(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox_TypeTest(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox(System.Runtime.CompilerServices.MethodTable*, System.Object) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.WriteBarrier(System.Object&, System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastResult System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastResult System.Runtime.CompilerServices.CastResult::CanCast System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastResult System.Runtime.CompilerServices.CastResult::CannotCast @@ -13440,9 +13458,6 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.DynamicStaticsInfo Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.DynamicStaticsInfo.MaskStaticsPointer(System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.EntryInfo System.Private.CoreLib.dll:System.Runtime.CompilerServices.EntryInfo System.Runtime.CompilerServices.GenericCache`2/Entry::_info -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExecutionAndSyncBlockStore -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExecutionAndSyncBlockStore.Pop() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExecutionAndSyncBlockStore.Push() System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExtensionAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExtensionAttribute..ctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.GenericCache`2 @@ -13481,7 +13496,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox.MoveNext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IConfiguredTaskAwaiter System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::CriticalNotifier +System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::CriticalNotifier System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion.UnsafeOnCompleted(System.Action) System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.CallClassConstructor(System.Void*, System.Void*, System.Exception*) @@ -13498,7 +13513,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.Store(System.Byte*, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.StoreSelectedScalar(System.UInt32*, System.Runtime.Intrinsics.Vector64`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd/Arm64 @@ -14695,6 +14712,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions.Store`2(TVector, T*) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AddSaturate`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AndNot`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.As`2(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AsByte`1(System.Runtime.Intrinsics.Vector128`1) @@ -14742,6 +14761,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GetElementUnsafe` System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThan`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanAny`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfFirstMatch`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNaN`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNegative`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.LastIndexOf`1(System.Runtime.Intrinsics.Vector128`1, T) @@ -14837,11 +14858,11 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Equals`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.EqualsAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector256`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetLower`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GreaterThanAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNaN`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNegative`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.LastIndexOf`1(System.Runtime.Intrinsics.Vector256`1, T) @@ -14914,10 +14935,10 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Equals`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.EqualsAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector512`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GreaterThanAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNaN`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNegative`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.LastIndexOf`1(System.Runtime.Intrinsics.Vector512`1, T) @@ -14974,12 +14995,15 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.ToString(System System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1 System.Runtime.Intrinsics.Vector512`1::Zero() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AddSaturate`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AndNot`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.As`2(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsByte`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt32`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt32`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.ConditionalSelect`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Int16, System.Int16, System.Int16, System.Int16) @@ -14997,6 +15021,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GetElementUnsafe`1 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThan`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanAny`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNaN`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNegative`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.LastIndexOf`1(System.Runtime.Intrinsics.Vector64`1, T) @@ -16841,11 +16866,13 @@ System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1 System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallConvertToManaged|3_0(System.Byte&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallConvertToUnmanaged|1_0(System.Byte&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallFree|4_0(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) +System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallIsBlittable|5_0() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.ConvertToManaged(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.ConvertToUnmanaged(T, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.ConvertToUnmanagedCore(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.Free(T, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.FreeCore(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) +System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.GetIsBlittable() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods..cctor() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.BlittableConvertToManaged(System.Byte&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) @@ -16854,6 +16881,7 @@ System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.Bli System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_ConvertToManaged() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_ConvertToUnmanaged() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_Free() +System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_IsBlittable() System.Private.CoreLib.dll:System.StubHelpers.MngdFixedArrayMarshaler System.Private.CoreLib.dll:System.StubHelpers.MngdFixedArrayMarshaler.ClearNativeContents(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.StubHelpers.MngdFixedArrayMarshaler.ClearNativeContents(System.IntPtr, System.Object&, System.IntPtr) @@ -16894,11 +16922,13 @@ System.Private.CoreLib.dll:System.StubHelpers.SafeHandleCleanupWorkListElement.. System.Private.CoreLib.dll:System.StubHelpers.SafeHandleCleanupWorkListElement.AddRef() System.Private.CoreLib.dll:System.StubHelpers.SafeHandleCleanupWorkListElement.DestroyCore() System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1 +System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1..cctor() System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.ConvertToManaged(T&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.ConvertToUnmanaged(T&, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.ConvertToUnmanagedCore(T&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.Free(T&, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.FreeCore(T&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) +System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.InitIsBlittable() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers System.Private.CoreLib.dll:System.StubHelpers.StubHelpers..cctor() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.g____PInvoke|18_0(System.Runtime.CompilerServices.QCallTypeHandle, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*) @@ -17670,8 +17700,8 @@ System.Private.CoreLib.dll:System.Threading.EventWaitHandle.ValidateMode(System. System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Private.CoreLib.dll:System.Threading.ExecutionContext Microsoft.Win32.SafeHandles.SafeFileHandle/ThreadPoolValueTaskSource::_context System.Private.CoreLib.dll:System.Threading.ExecutionContext System.IO.Stream/ReadWriteTask::_context -System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::ExecutionContext -System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.ExecutionAndSyncBlockStore::_previousExecutionCtx +System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::LeafExecutionContext +System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::RootExecutionContext System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Threading.CancellationTokenSource/CallbackNode::ExecutionContext System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Threading.ExecutionContext::Default System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Threading.ExecutionContext::DefaultFlowSuppressed @@ -17692,6 +17722,7 @@ System.Private.CoreLib.dll:System.Threading.ExecutionContext.CaptureForRestore() System.Private.CoreLib.dll:System.Threading.ExecutionContext.CaptureForSuspension(System.Threading.Thread) System.Private.CoreLib.dll:System.Threading.ExecutionContext.Dispose() System.Private.CoreLib.dll:System.Threading.ExecutionContext.get_HasChangeNotifications() +System.Private.CoreLib.dll:System.Threading.ExecutionContext.get_InstanceIsFlowSuppressed() System.Private.CoreLib.dll:System.Threading.ExecutionContext.get_IsDefault() System.Private.CoreLib.dll:System.Threading.ExecutionContext.GetLocalValue(System.Threading.IAsyncLocal) System.Private.CoreLib.dll:System.Threading.ExecutionContext.IsFlowSuppressed() @@ -18171,7 +18202,7 @@ System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1::s_postCallback System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.CancellationTokenSource/<>c::<>9__36_0 System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.Tasks.SynchronizationContextAwaitTaskContinuation::s_postCallback -System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.Tasks.Task/<>c::<>9__131_0 +System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.Tasks.Task/<>c::<>9__136_0 System.Private.CoreLib.dll:System.Threading.SendOrPostCallback..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Threading.SendOrPostCallback.Invoke(System.Object) System.Private.CoreLib.dll:System.Threading.SpinLock @@ -18201,8 +18232,8 @@ System.Private.CoreLib.dll:System.Threading.StackCrawlMark System.Threading.Stac System.Private.CoreLib.dll:System.Threading.StackCrawlMark System.Threading.StackCrawlMark::LookForMyCallersCaller System.Private.CoreLib.dll:System.Threading.StackCrawlMark System.Threading.StackCrawlMark::LookForThread System.Private.CoreLib.dll:System.Threading.SynchronizationContext -System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::SynchronizationContext -System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.ExecutionAndSyncBlockStore::_previousSyncCtx +System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::LeafSynchronizationContext +System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::RootSynchronizationContext System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Threading.CancellationTokenSource/CallbackNode::SynchronizationContext System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Threading.SynchronizationContext::Current() System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Threading.Tasks.SynchronizationContextAwaitTaskContinuation::m_syncContext @@ -18225,11 +18256,6 @@ System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor() System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor(System.String) -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Canceled -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Completed -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Error -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Started System.Private.CoreLib.dll:System.Threading.Tasks.AwaitTaskContinuation System.Private.CoreLib.dll:System.Threading.Tasks.AwaitTaskContinuation..cctor() System.Private.CoreLib.dll:System.Threading.Tasks.AwaitTaskContinuation..ctor(System.Action, System.Boolean) @@ -18285,14 +18311,10 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction System.Threading.Tasks.CompletionActionInvoker::m_action System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction.get_InvokeMayRunArbitraryCode() System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction.Invoke(System.Threading.Tasks.Task) -System.Private.CoreLib.dll:System.Threading.Tasks.IValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.IValueTaskSourceNotifier System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::ValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.IValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.CapturedSchedulerAndExecutionContext System.Private.CoreLib.dll:System.Threading.Tasks.Sources.CapturedSchedulerAndExecutionContext..ctor(System.Object, System.Threading.ExecutionContext) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask::_source -System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier::_valueTaskSource System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource.GetResult(System.Int16) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource.GetStatus(System.Int16) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource.OnCompleted(System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) @@ -18301,7 +18323,6 @@ System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1.Get System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1.GetStatus(System.Int16) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1.OnCompleted(System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::_source -System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1 System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier::_valueTaskSource System.Private.CoreLib.dll:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1 System.Private.CoreLib.dll:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.get_Version() System.Private.CoreLib.dll:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.GetResult(System.Int16) @@ -18345,7 +18366,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.SynchronizationContextAwaitTas System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Private.CoreLib.dll:System.Threading.Tasks.Task modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.ValueTask::s_canceledTask System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.AsyncDispatcherInfo::CurrentTask -System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::TaskNotifier +System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::TaskNotifier System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::m_task System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.TaskAwaiter::m_task System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Threading.Tasks.CompletionActionInvoker::m_completingTask @@ -18364,7 +18385,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor() System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor(System.Boolean, System.Threading.Tasks.TaskCreationOptions, System.Threading.CancellationToken) System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor(System.Delegate, System.Object, System.Threading.Tasks.Task, System.Threading.CancellationToken, System.Threading.Tasks.TaskCreationOptions, System.Threading.Tasks.InternalTaskOptions, System.Threading.Tasks.TaskScheduler) System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor(System.Object, System.Threading.Tasks.TaskCreationOptions, System.Boolean) -System.Private.CoreLib.dll:System.Threading.Tasks.Task.g__InitializeContingentProperties|84_0() +System.Private.CoreLib.dll:System.Threading.Tasks.Task.g__InitializeContingentProperties|89_0() System.Private.CoreLib.dll:System.Threading.Tasks.Task.AddCompletionAction(System.Threading.Tasks.ITaskCompletionAction, System.Boolean) System.Private.CoreLib.dll:System.Threading.Tasks.Task.AddException(System.Object, System.Boolean) System.Private.CoreLib.dll:System.Threading.Tasks.Task.AddException(System.Object) @@ -18476,13 +18497,13 @@ System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c System.Threading.Tasks.Task/<>c::<>9 System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c..cctor() System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c..ctor() -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.<.cctor>b__296_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__219_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__39_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__39_1(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__138_0(System.Threading.Tasks.Task) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__131_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__131_1(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.<.cctor>b__301_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__224_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__44_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__44_1(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__143_0(System.Threading.Tasks.Task) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__136_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__136_1(System.Object) System.Private.CoreLib.dll:System.Threading.Tasks.Task/CancellationPromise`1 System.Private.CoreLib.dll:System.Threading.Tasks.Task/CancellationPromise`1..ctor(System.Threading.Tasks.Task, System.UInt32, System.TimeProvider, System.Threading.CancellationToken) System.Private.CoreLib.dll:System.Threading.Tasks.Task/CancellationPromise`1.Cleanup() @@ -18676,7 +18697,6 @@ System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskCompleted(S System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskWaitBegin(System.Int32, System.Int32, System.Int32, System.Threading.Tasks.TplEventSource/TaskWaitBehavior, System.Int32) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskWaitContinuationComplete(System.Int32) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskWaitEnd(System.Int32, System.Int32, System.Int32) -System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TraceOperationEnd(System.Int32, System.Threading.Tasks.AsyncCausalityStatus) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TraceSynchronousWorkBegin(System.Int32, System.Threading.Tasks.CausalitySynchronousWork) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TraceSynchronousWorkEnd(System.Threading.Tasks.CausalitySynchronousWork) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource/TaskWaitBehavior @@ -18707,6 +18727,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.get_CompletedTask() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.get_IsCompleted() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.GetHashCode() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.GetTaskForValueTaskSource(System.Threading.Tasks.Sources.IValueTaskSource) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.OnCompleted(System.Object, System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.ThrowIfCompletedUnsuccessfully() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask..cctor() @@ -18717,9 +18738,6 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTas System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask/<>c..cctor() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask/<>c..ctor() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask/<>c.<.cctor>b__4_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier..ctor(System.Threading.Tasks.Sources.IValueTaskSource, System.Int16) -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1..ctor(System.Object, TResult, System.Int16, System.Boolean) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1..ctor(System.Threading.Tasks.Sources.IValueTaskSource`1, System.Int16) @@ -18735,6 +18753,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.get_IsCompletedSuc System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.get_Result() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.GetHashCode() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.GetTaskForValueTaskSource(System.Threading.Tasks.Sources.IValueTaskSource`1) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.OnCompleted(System.Object, System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.ToString() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask..cctor() @@ -18745,15 +18764,18 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsT System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c..ctor() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c.<.cctor>b__4_0(System.Object) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c::<>9 -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier..ctor(System.Threading.Tasks.Sources.IValueTaskSource`1, System.Int16) -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1::Task() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1::_value System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1/ConfiguredValueTaskAwaiter::_value +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::ValueTaskSourceNotifier +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier System.Threading.Tasks.ValueTaskSourceNotifier::t_instance +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier..ctor(System.Object, method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags), System.Int16) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier.GetInstance(System.Object, method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags), System.Int16) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.VoidTaskResult System.Private.CoreLib.dll:System.Threading.Thread -System.Private.CoreLib.dll:System.Threading.Thread System.Runtime.CompilerServices.ExecutionAndSyncBlockStore::_thread +System.Private.CoreLib.dll:System.Threading.Thread System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::CurrentThread System.Private.CoreLib.dll:System.Threading.Thread System.Threading.AsyncFlowControl::_thread System.Private.CoreLib.dll:System.Threading.Thread System.Threading.Thread::CurrentThread() System.Private.CoreLib.dll:System.Threading.Thread System.Threading.Thread::CurrentThreadAssumedInitialized() @@ -19061,7 +19083,7 @@ System.Private.CoreLib.dll:System.Threading.Volatile/VolatileUIntPtr System.Private.CoreLib.dll:System.Threading.WaitCallback System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.QueueUserWorkItemCallback::_callback System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.QueueUserWorkItemCallbackDefaultContext::_callback -System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.Tasks.Task/<>c::<>9__131_1 +System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.Tasks.Task/<>c::<>9__136_1 System.Private.CoreLib.dll:System.Threading.WaitCallback..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Threading.WaitCallback.Invoke(System.Object) System.Private.CoreLib.dll:System.Threading.WaitHandle @@ -19281,6 +19303,7 @@ System.Private.CoreLib.dll:System.ThrowHelper.ThrowStartIndexArgumentOutOfRange_ System.Private.CoreLib.dll:System.ThrowHelper.ThrowSynchronizationLockException_LockExit() System.Private.CoreLib.dll:System.ThrowHelper.ThrowUnexpectedStateForKnownCallback(System.Object) System.Private.CoreLib.dll:System.ThrowHelper.ThrowUnreachableException() +System.Private.CoreLib.dll:System.ThrowHelper.ThrowValueArgumentOutOfRange_NeedNonNegNumException() System.Private.CoreLib.dll:System.TimeOnly System.Private.CoreLib.dll:System.TimeOnly.CompareTo(System.Object) System.Private.CoreLib.dll:System.TimeOnly.CompareTo(System.TimeOnly) @@ -19465,7 +19488,7 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetLocalTzFile(out System.Byte System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetTransitionsForYear(System.Int32, out System.ValueTuple`2&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetUtcOffset(System.DateTime, out System.TimeSpan&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryLoadTzFile(System.String, System.Byte[]&, System.String&) -System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.DateTime&) +System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.Int64&) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CalculateTransitionOffsetFromBase(System.TimeSpan, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateAdjustmentRuleForPosixFormat(System.String, System.DateTime, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateTransitionTimeFromPosixRule(System.ReadOnlySpan`1, System.ReadOnlySpan`1) @@ -19489,7 +19512,6 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToInt64(System.Byte[], Syste System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToUnixTime(System.Byte[], System.Int32, System.TimeZoneInfo/TZVersion) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_UnixTimeToDateTime(System.Int64) System.Private.CoreLib.dll:System.TimeZoneInfo.UtcOffsetOutOfRange(System.TimeSpan) -System.Private.CoreLib.dll:System.TimeZoneInfo.UtcToLocal(System.DateTime, out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo.ValidateTimeZoneInfo(System.String, System.TimeSpan, System.TimeZoneInfo/AdjustmentRule[], out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.TimeZoneInfo/<>c::<>9 @@ -19888,10 +19910,10 @@ System.Private.CoreLib.dll:System.UInt128 System.UInt128::One() System.Private.CoreLib.dll:System.UInt128 System.UInt128::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt128 System.UInt128::Zero() System.Private.CoreLib.dll:System.UInt128..ctor(System.UInt64, System.UInt64) -System.Private.CoreLib.dll:System.UInt128.g__AddDivisor|112_0(System.Span`1, System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.UInt128.g__DivideGuessTooBig|112_1(System.UInt64, System.UInt64, System.UInt32, System.UInt32, System.UInt32) -System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|112_2(System.UInt128, System.UInt128) -System.Private.CoreLib.dll:System.UInt128.g__SubtractDivisor|112_3(System.Span`1, System.ReadOnlySpan`1, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64Bits|83_1(System.UInt128, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64BitsCore|83_2(System.UInt64, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide96BitsBy64Bits|83_3(System.UInt64, System.UInt32, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|83_0(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.UInt128) System.Private.CoreLib.dll:System.UInt128.CreateSaturating`1(TOther) @@ -20366,6 +20388,7 @@ System.Private.CoreLib.dll:System.UInt64.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt64.CompareTo(System.UInt64) System.Private.CoreLib.dll:System.UInt64.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt64.DivRem(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.Equals(System.Object) System.Private.CoreLib.dll:System.UInt64.Equals(System.UInt64) System.Private.CoreLib.dll:System.UInt64.GetHashCode() @@ -21423,7 +21446,6 @@ System.Reflection.Metadata.dll:System.Reflection.Internal.PooledStringBuilder/<> System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions.GetAndValidateSize(System.IO.Stream, System.Int32, System.String) System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions.ReadExactly(System.IO.Stream, System.Byte*, System.Int32) -System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions.TryReadAll(System.IO.Stream, System.Span`1) System.Reflection.Metadata.dll:System.Reflection.Internal.StreamMemoryBlockProvider System.Reflection.Metadata.dll:System.Reflection.Internal.StreamMemoryBlockProvider..ctor(System.IO.Stream, System.Int64, System.Int32, System.Boolean) System.Reflection.Metadata.dll:System.Reflection.Internal.StreamMemoryBlockProvider.CreateMemoryMappedFileBlock(System.Int64, System.Int32) diff --git a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-size.txt b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-size.txt index 855fcac626f8..0e0ecdcc43a4 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-size.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-size.txt @@ -1,26 +1,26 @@ -AppBundleSize: 12,628,883 bytes (12,332.9 KB = 12.0 MB) +AppBundleSize: 12,616,667 bytes (12,321.0 KB = 12.0 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: _CodeSignature/CodeResources: 10,737 bytes (10.5 KB = 0.0 MB) archived-expanded-entitlements.xcent: 384 bytes (0.4 KB = 0.0 MB) Frameworks/libcoreclr.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/libcoreclr.framework/Info.plist: 809 bytes (0.8 KB = 0.0 MB) -Frameworks/libcoreclr.framework/libcoreclr: 5,216,464 bytes (5,094.2 KB = 5.0 MB) +Frameworks/libcoreclr.framework/Info.plist: 817 bytes (0.8 KB = 0.0 MB) +Frameworks/libcoreclr.framework/libcoreclr: 5,199,600 bytes (5,077.7 KB = 5.0 MB) Frameworks/libSystem.Globalization.Native.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/libSystem.Globalization.Native.framework/Info.plist: 851 bytes (0.8 KB = 0.0 MB) +Frameworks/libSystem.Globalization.Native.framework/Info.plist: 859 bytes (0.8 KB = 0.0 MB) Frameworks/libSystem.Globalization.Native.framework/libSystem.Globalization.Native: 109,776 bytes (107.2 KB = 0.1 MB) Frameworks/libSystem.IO.Compression.Native.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/libSystem.IO.Compression.Native.framework/Info.plist: 853 bytes (0.8 KB = 0.0 MB) -Frameworks/libSystem.IO.Compression.Native.framework/libSystem.IO.Compression.Native: 1,439,536 bytes (1,405.8 KB = 1.4 MB) +Frameworks/libSystem.IO.Compression.Native.framework/Info.plist: 861 bytes (0.8 KB = 0.0 MB) +Frameworks/libSystem.IO.Compression.Native.framework/libSystem.IO.Compression.Native: 1,439,664 bytes (1,405.9 KB = 1.4 MB) Frameworks/libSystem.Native.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/libSystem.Native.framework/Info.plist: 823 bytes (0.8 KB = 0.0 MB) -Frameworks/libSystem.Native.framework/libSystem.Native: 162,480 bytes (158.7 KB = 0.2 MB) +Frameworks/libSystem.Native.framework/Info.plist: 831 bytes (0.8 KB = 0.0 MB) +Frameworks/libSystem.Native.framework/libSystem.Native: 162,544 bytes (158.7 KB = 0.2 MB) Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/Info.plist: 879 bytes (0.9 KB = 0.0 MB) -Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/libSystem.Security.Cryptography.Native.Apple: 195,232 bytes (190.7 KB = 0.2 MB) +Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/Info.plist: 887 bytes (0.9 KB = 0.0 MB) +Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/libSystem.Security.Cryptography.Native.Apple: 215,440 bytes (210.4 KB = 0.2 MB) Frameworks/SizeTestApp.r2r.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/SizeTestApp.r2r.framework/Info.plist: 821 bytes (0.8 KB = 0.0 MB) -Frameworks/SizeTestApp.r2r.framework/SizeTestApp.r2r: 3,424,720 bytes (3,344.5 KB = 3.3 MB) -Info.plist: 1,137 bytes (1.1 KB = 0.0 MB) +Frameworks/SizeTestApp.r2r.framework/Info.plist: 829 bytes (0.8 KB = 0.0 MB) +Frameworks/SizeTestApp.r2r.framework/SizeTestApp.r2r: 3,424,784 bytes (3,344.5 KB = 3.3 MB) +Info.plist: 1,145 bytes (1.1 KB = 0.0 MB) Microsoft.tvOS.dll: 98,816 bytes (96.5 KB = 0.1 MB) PkgInfo: 8 bytes (0.0 KB = 0.0 MB) runtimeconfig.bin: 1,481 bytes (1.4 KB = 0.0 MB) @@ -30,7 +30,7 @@ System.Collections.Immutable.dll: 13,824 bytes (13.5 KB = 0.0 MB) System.Diagnostics.StackTrace.dll: 7,680 bytes (7.5 KB = 0.0 MB) System.IO.Compression.dll: 22,016 bytes (21.5 KB = 0.0 MB) System.IO.MemoryMappedFiles.dll: 21,504 bytes (21.0 KB = 0.0 MB) -System.Private.CoreLib.dll: 1,586,688 bytes (1,549.5 KB = 1.5 MB) -System.Reflection.Metadata.dll: 83,968 bytes (82.0 KB = 0.1 MB) +System.Private.CoreLib.dll: 1,575,424 bytes (1,538.5 KB = 1.5 MB) +System.Reflection.Metadata.dll: 83,456 bytes (81.5 KB = 0.1 MB) System.Runtime.dll: 4,096 bytes (4.0 KB = 0.0 MB) -System.Runtime.InteropServices.dll: 7,680 bytes (7.5 KB = 0.0 MB) +System.Runtime.InteropServices.dll: 3,584 bytes (3.5 KB = 0.0 MB) diff --git a/tests/dotnet/UnitTests/expected/TVOS-MonoVM-interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/TVOS-MonoVM-interpreter-preservedapis.txt index 3affd336a1fe..c110a2d0a924 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-MonoVM-interpreter-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-MonoVM-interpreter-preservedapis.txt @@ -2819,7 +2819,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/ContainsAnyRes System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default.PackSources(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1 @@ -2828,7 +2828,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResu System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IOptimizations @@ -2839,7 +2839,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper` System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Ssse3AndWasmHandleZeroInNeedle @@ -4042,6 +4042,7 @@ System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.AllowNullAttribute..c System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Max(System.Object) +System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Min(System.Object) System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes @@ -6632,6 +6633,7 @@ System.Private.CoreLib.dll:System.Int32.Equals(System.Object) System.Private.CoreLib.dll:System.Int32.GetHashCode() System.Private.CoreLib.dll:System.Int32.GetTypeCode() System.Private.CoreLib.dll:System.Int32.IsNegative(System.Int32) +System.Private.CoreLib.dll:System.Int32.Log2(System.Int32) System.Private.CoreLib.dll:System.Int32.Max(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Min(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.IBinaryIntegerParseAndFormatInfo.get_IsSigned() @@ -7371,7 +7373,7 @@ System.Private.CoreLib.dll:System.MemberAccessException System.Private.CoreLib.dll:System.MemberAccessException..ctor() System.Private.CoreLib.dll:System.MemberAccessException..ctor(System.String) System.Private.CoreLib.dll:System.MemoryExtensions -System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|273_0(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|278_0(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String) @@ -7835,7 +7837,9 @@ System.Private.CoreLib.dll:System.Object System.Collections.Hashtable/Bucket::ke System.Private.CoreLib.dll:System.Object System.Collections.Hashtable/Bucket::val System.Private.CoreLib.dll:System.Object System.Delegate::_target System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Max() +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Min() System.Private.CoreLib.dll:System.Object System.Exception::_traceIPs System.Private.CoreLib.dll:System.Object System.Exception::_unused6 System.Private.CoreLib.dll:System.Object System.GC::EPHEMERON_TOMBSTONE @@ -11163,6 +11167,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.ExtractNarrowin System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.get_IsSupported() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.LoadVector128(System.Byte*) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.PopCount(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.Store(System.Byte*, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.StoreSelectedScalar(System.UInt32*, System.Runtime.Intrinsics.Vector64`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd/Arm64 @@ -11230,6 +11235,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions.Store`2(TVector, T*) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AddSaturate`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AndNot`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.As`2(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AsByte`1(System.Runtime.Intrinsics.Vector128`1) @@ -11276,6 +11283,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GetElementUnsafe` System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThan`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanAny`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfFirstMatch`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNaN`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNegative`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.LastIndexOf`1(System.Runtime.Intrinsics.Vector128`1, T) @@ -11371,11 +11380,11 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Equals`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.EqualsAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector256`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetLower`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GreaterThanAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNaN`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNegative`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.LastIndexOf`1(System.Runtime.Intrinsics.Vector256`1, T) @@ -11448,10 +11457,10 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Equals`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.EqualsAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector512`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GreaterThanAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNaN`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNegative`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.LastIndexOf`1(System.Runtime.Intrinsics.Vector512`1, T) @@ -11508,12 +11517,15 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.ToString(System System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1 System.Runtime.Intrinsics.Vector512`1::Zero() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AddSaturate`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AndNot`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.As`2(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsByte`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt32`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt32`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.ConditionalSelect`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Int16, System.Int16, System.Int16, System.Int16) @@ -11531,6 +11543,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GetElementUnsafe`1 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThan`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanAny`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNaN`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNegative`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.LastIndexOf`1(System.Runtime.Intrinsics.Vector64`1, T) @@ -13535,6 +13548,7 @@ System.Private.CoreLib.dll:System.ThrowHelper.ThrowOverflowException_TimeSpanToo System.Private.CoreLib.dll:System.ThrowHelper.ThrowOverflowException() System.Private.CoreLib.dll:System.ThrowHelper.ThrowStartIndexArgumentOutOfRange_ArgumentOutOfRange_IndexMustBeLessOrEqual() System.Private.CoreLib.dll:System.ThrowHelper.ThrowUnreachableException() +System.Private.CoreLib.dll:System.ThrowHelper.ThrowValueArgumentOutOfRange_NeedNonNegNumException() System.Private.CoreLib.dll:System.TimeSpan System.Private.CoreLib.dll:System.TimeSpan System.DateTime::TimeOfDay() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeOffset::Offset() @@ -13679,7 +13693,7 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetLocalTzFile(out System.Byte System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetTransitionsForYear(System.Int32, out System.ValueTuple`2&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetUtcOffset(System.DateTime, out System.TimeSpan&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryLoadTzFile(System.String, System.Byte[]&, System.String&) -System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.DateTime&) +System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.Int64&) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CalculateTransitionOffsetFromBase(System.TimeSpan, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateAdjustmentRuleForPosixFormat(System.String, System.DateTime, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateTransitionTimeFromPosixRule(System.ReadOnlySpan`1, System.ReadOnlySpan`1) @@ -13703,7 +13717,6 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToInt64(System.Byte[], Syste System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToUnixTime(System.Byte[], System.Int32, System.TimeZoneInfo/TZVersion) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_UnixTimeToDateTime(System.Int64) System.Private.CoreLib.dll:System.TimeZoneInfo.UtcOffsetOutOfRange(System.TimeSpan) -System.Private.CoreLib.dll:System.TimeZoneInfo.UtcToLocal(System.DateTime, out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo.ValidateTimeZoneInfo(System.String, System.TimeSpan, System.TimeZoneInfo/AdjustmentRule[], out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.TimeZoneInfo/<>c::<>9 @@ -14097,10 +14110,10 @@ System.Private.CoreLib.dll:System.UInt128 System.UInt128::One() System.Private.CoreLib.dll:System.UInt128 System.UInt128::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt128 System.UInt128::Zero() System.Private.CoreLib.dll:System.UInt128..ctor(System.UInt64, System.UInt64) -System.Private.CoreLib.dll:System.UInt128.g__AddDivisor|112_0(System.Span`1, System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.UInt128.g__DivideGuessTooBig|112_1(System.UInt64, System.UInt64, System.UInt32, System.UInt32, System.UInt32) -System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|112_2(System.UInt128, System.UInt128) -System.Private.CoreLib.dll:System.UInt128.g__SubtractDivisor|112_3(System.Span`1, System.ReadOnlySpan`1, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64Bits|83_1(System.UInt128, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64BitsCore|83_2(System.UInt64, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide96BitsBy64Bits|83_3(System.UInt64, System.UInt32, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|83_0(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.UInt128) System.Private.CoreLib.dll:System.UInt128.CreateTruncating`1(TOther) @@ -14447,6 +14460,7 @@ System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.INumberB System.Private.CoreLib.dll:System.UInt64.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt64.CompareTo(System.UInt64) System.Private.CoreLib.dll:System.UInt64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt64.DivRem(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.Equals(System.Object) System.Private.CoreLib.dll:System.UInt64.Equals(System.UInt64) System.Private.CoreLib.dll:System.UInt64.GetHashCode() diff --git a/tests/dotnet/UnitTests/expected/TVOS-MonoVM-interpreter-size.txt b/tests/dotnet/UnitTests/expected/TVOS-MonoVM-interpreter-size.txt index 11e26a652bc5..193e8238e018 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-MonoVM-interpreter-size.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-MonoVM-interpreter-size.txt @@ -1,14 +1,14 @@ -AppBundleSize: 3,637,837 bytes (3,552.6 KB = 3.5 MB) +AppBundleSize: 3,634,773 bytes (3,549.6 KB = 3.5 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: _CodeSignature/CodeResources: 3,999 bytes (3.9 KB = 0.0 MB) archived-expanded-entitlements.xcent: 384 bytes (0.4 KB = 0.0 MB) -Info.plist: 1,137 bytes (1.1 KB = 0.0 MB) +Info.plist: 1,145 bytes (1.1 KB = 0.0 MB) Microsoft.tvOS.dll: 154,624 bytes (151.0 KB = 0.1 MB) PkgInfo: 8 bytes (0.0 KB = 0.0 MB) runtimeconfig.bin: 1,405 bytes (1.4 KB = 0.0 MB) SizeTestApp: 2,404,688 bytes (2,348.3 KB = 2.3 MB) SizeTestApp.dll: 7,680 bytes (7.5 KB = 0.0 MB) System.Private.CoreLib.aotdata.arm64: 41,448 bytes (40.5 KB = 0.0 MB) -System.Private.CoreLib.dll: 1,009,152 bytes (985.5 KB = 1.0 MB) +System.Private.CoreLib.dll: 1,009,664 bytes (986.0 KB = 1.0 MB) System.Runtime.dll: 5,120 bytes (5.0 KB = 0.0 MB) -System.Runtime.InteropServices.dll: 8,192 bytes (8.0 KB = 0.0 MB) +System.Runtime.InteropServices.dll: 4,608 bytes (4.5 KB = 0.0 MB) diff --git a/tests/dotnet/UnitTests/expected/TVOS-MonoVM-preservedapis.txt b/tests/dotnet/UnitTests/expected/TVOS-MonoVM-preservedapis.txt index 966bd5c2ebca..b17e6bbbda2a 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-MonoVM-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-MonoVM-preservedapis.txt @@ -2050,7 +2050,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/ContainsAnyRes System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default.PackSources(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1 @@ -2059,7 +2059,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResu System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IOptimizations @@ -2070,7 +2070,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper` System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Ssse3AndWasmHandleZeroInNeedle @@ -3208,6 +3208,7 @@ System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.AllowNullAttribute..c System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Max(System.Object) +System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Min(System.Object) System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes @@ -5722,6 +5723,7 @@ System.Private.CoreLib.dll:System.Int32.Equals(System.Object) System.Private.CoreLib.dll:System.Int32.GetHashCode() System.Private.CoreLib.dll:System.Int32.GetTypeCode() System.Private.CoreLib.dll:System.Int32.IsNegative(System.Int32) +System.Private.CoreLib.dll:System.Int32.Log2(System.Int32) System.Private.CoreLib.dll:System.Int32.Max(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Min(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.IBinaryIntegerParseAndFormatInfo.get_IsSigned() @@ -6448,7 +6450,7 @@ System.Private.CoreLib.dll:System.MemberAccessException System.Private.CoreLib.dll:System.MemberAccessException..ctor() System.Private.CoreLib.dll:System.MemberAccessException..ctor(System.String) System.Private.CoreLib.dll:System.MemoryExtensions -System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|273_0(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|278_0(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String) @@ -6910,7 +6912,9 @@ System.Private.CoreLib.dll:System.Object modreq(System.Runtime.CompilerServices. System.Private.CoreLib.dll:System.Object System.ArgumentOutOfRangeException::_actualValue System.Private.CoreLib.dll:System.Object System.Delegate::_target System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Max() +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Min() System.Private.CoreLib.dll:System.Object System.Exception::_traceIPs System.Private.CoreLib.dll:System.Object System.Exception::_unused6 System.Private.CoreLib.dll:System.Object System.GC::EPHEMERON_TOMBSTONE @@ -8871,6 +8875,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.ExtractNarrowin System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.get_IsSupported() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.LoadVector128(System.Byte*) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.PopCount(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.Store(System.Byte*, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.StoreSelectedScalar(System.UInt32*, System.Runtime.Intrinsics.Vector64`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd/Arm64 @@ -8938,6 +8943,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions.Store`2(TVector, T*) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AddSaturate`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AndNot`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.As`2(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AsByte`1(System.Runtime.Intrinsics.Vector128`1) @@ -8984,6 +8991,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GetElementUnsafe` System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThan`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanAny`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfFirstMatch`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNaN`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNegative`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.LastIndexOf`1(System.Runtime.Intrinsics.Vector128`1, T) @@ -9079,11 +9088,11 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Equals`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.EqualsAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector256`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetLower`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GreaterThanAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNaN`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNegative`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.LastIndexOf`1(System.Runtime.Intrinsics.Vector256`1, T) @@ -9156,10 +9165,10 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Equals`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.EqualsAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector512`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GreaterThanAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNaN`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNegative`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.LastIndexOf`1(System.Runtime.Intrinsics.Vector512`1, T) @@ -9216,12 +9225,15 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.ToString(System System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1 System.Runtime.Intrinsics.Vector512`1::Zero() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AddSaturate`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AndNot`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.As`2(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsByte`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt32`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt32`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.ConditionalSelect`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Int16, System.Int16, System.Int16, System.Int16) @@ -9239,6 +9251,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GetElementUnsafe`1 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThan`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanAny`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNaN`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNegative`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.LastIndexOf`1(System.Runtime.Intrinsics.Vector64`1, T) @@ -11126,6 +11139,7 @@ System.Private.CoreLib.dll:System.ThrowHelper.ThrowOverflowException_NegateTwosC System.Private.CoreLib.dll:System.ThrowHelper.ThrowOverflowException_TimeSpanTooLong() System.Private.CoreLib.dll:System.ThrowHelper.ThrowOverflowException() System.Private.CoreLib.dll:System.ThrowHelper.ThrowUnreachableException() +System.Private.CoreLib.dll:System.ThrowHelper.ThrowValueArgumentOutOfRange_NeedNonNegNumException() System.Private.CoreLib.dll:System.TimeSpan System.Private.CoreLib.dll:System.TimeSpan System.DateTime::TimeOfDay() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeOffset::Offset() @@ -11270,7 +11284,7 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetLocalTzFile(out System.Byte System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetTransitionsForYear(System.Int32, out System.ValueTuple`2&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetUtcOffset(System.DateTime, out System.TimeSpan&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryLoadTzFile(System.String, System.Byte[]&, System.String&) -System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.DateTime&) +System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.Int64&) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CalculateTransitionOffsetFromBase(System.TimeSpan, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateAdjustmentRuleForPosixFormat(System.String, System.DateTime, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateTransitionTimeFromPosixRule(System.ReadOnlySpan`1, System.ReadOnlySpan`1) @@ -11294,7 +11308,6 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToInt64(System.Byte[], Syste System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToUnixTime(System.Byte[], System.Int32, System.TimeZoneInfo/TZVersion) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_UnixTimeToDateTime(System.Int64) System.Private.CoreLib.dll:System.TimeZoneInfo.UtcOffsetOutOfRange(System.TimeSpan) -System.Private.CoreLib.dll:System.TimeZoneInfo.UtcToLocal(System.DateTime, out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo.ValidateTimeZoneInfo(System.String, System.TimeSpan, System.TimeZoneInfo/AdjustmentRule[], out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.TimeZoneInfo/<>c::<>9 @@ -11599,10 +11612,10 @@ System.Private.CoreLib.dll:System.UInt128 System.UInt128::One() System.Private.CoreLib.dll:System.UInt128 System.UInt128::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt128 System.UInt128::Zero() System.Private.CoreLib.dll:System.UInt128..ctor(System.UInt64, System.UInt64) -System.Private.CoreLib.dll:System.UInt128.g__AddDivisor|112_0(System.Span`1, System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.UInt128.g__DivideGuessTooBig|112_1(System.UInt64, System.UInt64, System.UInt32, System.UInt32, System.UInt32) -System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|112_2(System.UInt128, System.UInt128) -System.Private.CoreLib.dll:System.UInt128.g__SubtractDivisor|112_3(System.Span`1, System.ReadOnlySpan`1, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64Bits|83_1(System.UInt128, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64BitsCore|83_2(System.UInt64, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide96BitsBy64Bits|83_3(System.UInt64, System.UInt32, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|83_0(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.UInt128) System.Private.CoreLib.dll:System.UInt128.CreateTruncating`1(TOther) @@ -11948,6 +11961,7 @@ System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.INumberB System.Private.CoreLib.dll:System.UInt64.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt64.CompareTo(System.UInt64) System.Private.CoreLib.dll:System.UInt64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt64.DivRem(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.Equals(System.Object) System.Private.CoreLib.dll:System.UInt64.Equals(System.UInt64) System.Private.CoreLib.dll:System.UInt64.GetHashCode() diff --git a/tests/dotnet/UnitTests/expected/TVOS-MonoVM-size.txt b/tests/dotnet/UnitTests/expected/TVOS-MonoVM-size.txt index 6255862f4728..b5f16a0b4f28 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-MonoVM-size.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-MonoVM-size.txt @@ -1,19 +1,19 @@ -AppBundleSize: 9,503,403 bytes (9,280.7 KB = 9.1 MB) +AppBundleSize: 9,563,339 bytes (9,339.2 KB = 9.1 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: _CodeSignature/CodeResources: 5,233 bytes (5.1 KB = 0.0 MB) -aot-instances.aotdata.arm64: 818,536 bytes (799.4 KB = 0.8 MB) +aot-instances.aotdata.arm64: 829,256 bytes (809.8 KB = 0.8 MB) archived-expanded-entitlements.xcent: 384 bytes (0.4 KB = 0.0 MB) -Info.plist: 1,137 bytes (1.1 KB = 0.0 MB) +Info.plist: 1,145 bytes (1.1 KB = 0.0 MB) Microsoft.tvOS.aotdata.arm64: 22,584 bytes (22.1 KB = 0.0 MB) Microsoft.tvOS.dll: 49,152 bytes (48.0 KB = 0.0 MB) PkgInfo: 8 bytes (0.0 KB = 0.0 MB) runtimeconfig.bin: 1,481 bytes (1.4 KB = 0.0 MB) -SizeTestApp: 7,377,152 bytes (7,204.2 KB = 7.0 MB) +SizeTestApp: 7,426,880 bytes (7,252.8 KB = 7.1 MB) SizeTestApp.aotdata.arm64: 1,464 bytes (1.4 KB = 0.0 MB) SizeTestApp.dll: 7,168 bytes (7.0 KB = 0.0 MB) -System.Private.CoreLib.aotdata.arm64: 665,584 bytes (650.0 KB = 0.6 MB) -System.Private.CoreLib.dll: 538,624 bytes (526.0 KB = 0.5 MB) +System.Private.CoreLib.aotdata.arm64: 668,136 bytes (652.5 KB = 0.6 MB) +System.Private.CoreLib.dll: 539,136 bytes (526.5 KB = 0.5 MB) System.Runtime.aotdata.arm64: 784 bytes (0.8 KB = 0.0 MB) System.Runtime.dll: 5,120 bytes (5.0 KB = 0.0 MB) System.Runtime.InteropServices.aotdata.arm64: 800 bytes (0.8 KB = 0.0 MB) -System.Runtime.InteropServices.dll: 8,192 bytes (8.0 KB = 0.0 MB) +System.Runtime.InteropServices.dll: 4,608 bytes (4.5 KB = 0.0 MB) diff --git a/tests/dotnet/UnitTests/expected/TVOS-NativeAOT-size.txt b/tests/dotnet/UnitTests/expected/TVOS-NativeAOT-size.txt index 42073af95b9b..394bc9b4a4ce 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-NativeAOT-size.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-NativeAOT-size.txt @@ -1,8 +1,8 @@ -AppBundleSize: 2,849,462 bytes (2,782.7 KB = 2.7 MB) +AppBundleSize: 2,832,462 bytes (2,766.1 KB = 2.7 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: _CodeSignature/CodeResources: 2,589 bytes (2.5 KB = 0.0 MB) archived-expanded-entitlements.xcent: 384 bytes (0.4 KB = 0.0 MB) -Info.plist: 1,137 bytes (1.1 KB = 0.0 MB) +Info.plist: 1,145 bytes (1.1 KB = 0.0 MB) PkgInfo: 8 bytes (0.0 KB = 0.0 MB) runtimeconfig.bin: 1,808 bytes (1.8 KB = 0.0 MB) -SizeTestApp: 2,843,536 bytes (2,776.9 KB = 2.7 MB) +SizeTestApp: 2,826,528 bytes (2,760.3 KB = 2.7 MB) diff --git a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-preservedapis.txt index 56bf48e17967..08b76815a108 100644 --- a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-preservedapis.txt @@ -2389,6 +2389,7 @@ System.Private.CoreLib.dll:method System.Void *(System.Byte&,System.Byte*,System System.Private.CoreLib.dll:method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&) System.StubHelpers.LayoutClassMarshaler`1/Methods::Free() System.Private.CoreLib.dll:method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&) System.StubHelpers.StubHelpers/StructureMarshalInfo::ConvertToManaged System.Private.CoreLib.dll:method System.Void *(System.Byte&) System.RuntimeType/ActivatorCache::_pfnValueCtor +System.Private.CoreLib.dll:method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Threading.Tasks.ValueTaskSourceNotifier::_onCompleted System.Private.CoreLib.dll:method System.Void *(System.Object) System.RuntimeType/ActivatorCache::_pfnRefCtor System.Private.CoreLib.dll:method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*) System.Runtime.CompilerServices.PortableTailCallFrame::NextCall System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle @@ -2505,8 +2506,8 @@ System.Private.CoreLib.dll:System.Action`1 System.Threading.Manua System.Private.CoreLib.dll:System.Action`1 System.Threading.SemaphoreSlim::s_cancellationTokenCanceledEventHandler System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1::_continuation System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Sources.ManualResetValueTaskSourceCoreShared::s_sentinel -System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__39_0 -System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__39_1 +System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__44_0 +System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__44_1 System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation/<>c::<>9__2_0 System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask::s_completionAction System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::s_completionAction @@ -2805,6 +2806,8 @@ System.Private.CoreLib.dll:System.BitConverter.Int32BitsToSingle(System.Int32) System.Private.CoreLib.dll:System.BitConverter.Int64BitsToDouble(System.Int64) System.Private.CoreLib.dll:System.BitConverter.SingleToInt32Bits(System.Single) System.Private.CoreLib.dll:System.BitConverter.SingleToUInt32Bits(System.Single) +System.Private.CoreLib.dll:System.BitConverter.ToInt32(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.BitConverter.ToUInt32(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.BitConverter.UInt16BitsToHalf(System.UInt16) System.Private.CoreLib.dll:System.BitConverter.UInt32BitsToSingle(System.UInt32) System.Private.CoreLib.dll:System.BitConverter.UInt64BitsToDouble(System.UInt64) @@ -3194,7 +3197,9 @@ System.Private.CoreLib.dll:System.Boolean System.RuntimeType/RuntimeTypeCache/Me System.Private.CoreLib.dll:System.Boolean System.RuntimeTypeHandle/IntroducedMethodEnumerator::_firstCall System.Private.CoreLib.dll:System.Boolean System.SByte::System.IBinaryIntegerParseAndFormatInfo.IsSigned() System.Private.CoreLib.dll:System.Boolean System.Span`1::IsEmpty() +System.Private.CoreLib.dll:System.Boolean System.StubHelpers.LayoutClassMarshaler`1/Methods::IsBlittable() System.Private.CoreLib.dll:System.Boolean System.StubHelpers.SafeHandleCleanupWorkListElement::m_owned +System.Private.CoreLib.dll:System.Boolean System.StubHelpers.StructureMarshaler`1::s_isBlittable System.Private.CoreLib.dll:System.Boolean System.Text.Decoder::InternalHasFallbackBuffer() System.Private.CoreLib.dll:System.Boolean System.Text.DecoderNLS::_throwOnOverflow System.Private.CoreLib.dll:System.Boolean System.Text.DecoderNLS::MustFlush() @@ -3217,6 +3222,7 @@ System.Private.CoreLib.dll:System.Boolean System.Threading.CancellationTokenSour System.Private.CoreLib.dll:System.Boolean System.Threading.CancellationTokenSource::IsCancellationRequested() System.Private.CoreLib.dll:System.Boolean System.Threading.Condition/Waiter::signalled System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::HasChangeNotifications() +System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::InstanceIsFlowSuppressed() System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::IsDefault() System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::m_isDefault System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::m_isFlowSuppressed @@ -3504,7 +3510,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/ContainsAnyRes System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default.PackSources(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1 @@ -3513,7 +3519,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResu System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IOptimizations @@ -3524,7 +3530,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper` System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Ssse3AndWasmHandleZeroInNeedle @@ -5413,6 +5419,7 @@ System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.AllowNullAttribute..c System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Max(System.Object) +System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Min(System.Object) System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes @@ -8015,10 +8022,9 @@ System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.Sources.ManualRes System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1::Version() System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask::_token System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask::_token -System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier::_token System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1::_token System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::_token -System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier::_token +System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTaskSourceNotifier::_token System.Private.CoreLib.dll:System.Int16.CompareTo(System.Int16) System.Private.CoreLib.dll:System.Int16.CompareTo(System.Object) System.Private.CoreLib.dll:System.Int16.CreateSaturating`1(TOther) @@ -8825,7 +8831,6 @@ System.Private.CoreLib.dll:System.Int32 System.Threading.SpinWait::_count System.Private.CoreLib.dll:System.Int32 System.Threading.SpinWait::Count() System.Private.CoreLib.dll:System.Int32 System.Threading.SpinWait::SpinCountForSpinBeforeWait System.Private.CoreLib.dll:System.Int32 System.Threading.StackCrawlMark::value__ -System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.AsyncCausalityStatus::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.CausalitySynchronousWork::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.ConfigureAwaitOptions::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.InternalTaskOptions::value__ @@ -8901,6 +8906,7 @@ System.Private.CoreLib.dll:System.Int32.Equals(System.Object) System.Private.CoreLib.dll:System.Int32.GetHashCode() System.Private.CoreLib.dll:System.Int32.GetTypeCode() System.Private.CoreLib.dll:System.Int32.IsNegative(System.Int32) +System.Private.CoreLib.dll:System.Int32.Log2(System.Int32) System.Private.CoreLib.dll:System.Int32.Max(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Min(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -10156,8 +10162,8 @@ System.Private.CoreLib.dll:System.Memory`1.Pin() System.Private.CoreLib.dll:System.Memory`1.Slice(System.Int32) System.Private.CoreLib.dll:System.Memory`1.ToString() System.Private.CoreLib.dll:System.MemoryExtensions -System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|273_0(System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|287_0(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|278_0(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|292_0(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.AsMemory`1(T[], System.Int32, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32) @@ -10748,7 +10754,9 @@ System.Private.CoreLib.dll:System.Object System.ComAwareWeakReference/ComInfo::_ System.Private.CoreLib.dll:System.Object System.Delegate::_methodBase System.Private.CoreLib.dll:System.Object System.Delegate::_target System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Max() +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Min() System.Private.CoreLib.dll:System.Object System.Diagnostics.EditAndContinueHelper::_objectReference System.Private.CoreLib.dll:System.Object System.Diagnostics.StackFrameHelper::dynamicMethods System.Private.CoreLib.dll:System.Object System.Diagnostics.StackFrameHelper::s_stackTraceSymbolsCache @@ -10822,6 +10830,7 @@ System.Private.CoreLib.dll:System.Object System.Threading.Tasks.TaskToAsyncResul System.Private.CoreLib.dll:System.Object System.Threading.Tasks.TaskToAsyncResult/TaskAsyncResult::AsyncState() System.Private.CoreLib.dll:System.Object System.Threading.Tasks.ValueTask::_obj System.Private.CoreLib.dll:System.Object System.Threading.Tasks.ValueTask`1::_obj +System.Private.CoreLib.dll:System.Object System.Threading.Tasks.ValueTaskSourceNotifier::_source System.Private.CoreLib.dll:System.Object System.Threading.Thread/StartHelper::_startArg System.Private.CoreLib.dll:System.Object System.Threading.ThreadBlockingInfo/Scope::_object System.Private.CoreLib.dll:System.Object System.Threading.TimerQueueTimer::_notifyWhenNoCallbacksRunning @@ -10948,8 +10957,8 @@ System.Private.CoreLib.dll:System.PlatformNotSupportedException..ctor(System.Str System.Private.CoreLib.dll:System.Predicate`1 System.Private.CoreLib.dll:System.Predicate`1..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Predicate`1.Invoke(T) -System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__219_0 -System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__138_0 +System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__224_0 +System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__143_0 System.Private.CoreLib.dll:System.Random System.Private.CoreLib.dll:System.Random/ImplBase System.Private.CoreLib.dll:System.Random/ImplBase..ctor() @@ -13150,10 +13159,13 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureC System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureExecutionContext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CompletedTask(System.Threading.Tasks.Task) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CompletedTaskResult`1(System.Threading.Tasks.Task`1) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk`1() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk`1() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeRuntimeAsyncTask`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&, System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinishSuspensionNoContinuationContext(System.Threading.ExecutionContext&, System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinishSuspensionWithContinuationContext(System.Object&, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&, System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContexts(System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContextsOnSuspension(System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreExecutionContext(System.Threading.ExecutionContext) @@ -13168,6 +13180,13 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ValueTas System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState System.Runtime.CompilerServices.AsyncHelpers::t_runtimeAsyncAwaitState System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState.CaptureContexts() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState.Pop() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState.Push(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState*) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState.Pop(System.Threading.Thread) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState.Push(System.Threading.Thread) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState* System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::StackState +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState* System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::Next System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1..cctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1..ctor() @@ -13175,18 +13194,18 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeA System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.ExecuteFromThreadPool(System.Threading.Thread) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.GetContinuationAction() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.GetResultStorage() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.HandleSuspended() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.HandleSuspended(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.MoveContinuationState() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.QueueContinuationFollowUpActionIfNecessary(System.Runtime.CompilerServices.Continuation) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.SetContinuationState(System.Runtime.CompilerServices.Continuation) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.System.Threading.Tasks.ITaskCompletionAction.get_InvokeMayRunArbitraryCode() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.System.Threading.Tasks.ITaskCompletionAction.Invoke(System.Threading.Tasks.Task) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.UnwindToPossibleHandler(System.Runtime.CompilerServices.Continuation, System.Exception) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.UnwindToPossibleHandler(System.Runtime.CompilerServices.Continuation, System.Exception, System.UInt32&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c..cctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c..ctor() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__16_0(System.Object) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__16_1(System.Object) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__18_0(System.Object) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__18_1(System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c::<>9 System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore @@ -13284,7 +13303,6 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox_Nul System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox_TypeTest_Helper(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox_TypeTest(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox(System.Runtime.CompilerServices.MethodTable*, System.Object) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.WriteBarrier(System.Object&, System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastResult System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastResult System.Runtime.CompilerServices.CastResult::CanCast System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastResult System.Runtime.CompilerServices.CastResult::CannotCast @@ -13440,9 +13458,6 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.DynamicStaticsInfo Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.DynamicStaticsInfo.MaskStaticsPointer(System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.EntryInfo System.Private.CoreLib.dll:System.Runtime.CompilerServices.EntryInfo System.Runtime.CompilerServices.GenericCache`2/Entry::_info -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExecutionAndSyncBlockStore -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExecutionAndSyncBlockStore.Pop() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExecutionAndSyncBlockStore.Push() System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExtensionAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExtensionAttribute..ctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.GenericCache`2 @@ -13481,7 +13496,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox.MoveNext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IConfiguredTaskAwaiter System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::CriticalNotifier +System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::CriticalNotifier System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion.UnsafeOnCompleted(System.Action) System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.CallClassConstructor(System.Void*, System.Void*, System.Exception*) @@ -13498,7 +13513,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.Store(System.Byte*, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.StoreSelectedScalar(System.UInt32*, System.Runtime.Intrinsics.Vector64`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd/Arm64 @@ -14695,6 +14712,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions.Store`2(TVector, T*) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AddSaturate`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AndNot`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.As`2(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AsByte`1(System.Runtime.Intrinsics.Vector128`1) @@ -14742,6 +14761,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GetElementUnsafe` System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThan`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanAny`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfFirstMatch`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNaN`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNegative`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.LastIndexOf`1(System.Runtime.Intrinsics.Vector128`1, T) @@ -14837,11 +14858,11 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Equals`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.EqualsAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector256`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetLower`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GreaterThanAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNaN`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNegative`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.LastIndexOf`1(System.Runtime.Intrinsics.Vector256`1, T) @@ -14914,10 +14935,10 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Equals`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.EqualsAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector512`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GreaterThanAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNaN`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNegative`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.LastIndexOf`1(System.Runtime.Intrinsics.Vector512`1, T) @@ -14974,12 +14995,15 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.ToString(System System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1 System.Runtime.Intrinsics.Vector512`1::Zero() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AddSaturate`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AndNot`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.As`2(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsByte`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt32`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt32`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.ConditionalSelect`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Int16, System.Int16, System.Int16, System.Int16) @@ -14997,6 +15021,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GetElementUnsafe`1 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThan`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanAny`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNaN`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNegative`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.LastIndexOf`1(System.Runtime.Intrinsics.Vector64`1, T) @@ -16841,11 +16866,13 @@ System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1 System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallConvertToManaged|3_0(System.Byte&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallConvertToUnmanaged|1_0(System.Byte&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallFree|4_0(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) +System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallIsBlittable|5_0() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.ConvertToManaged(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.ConvertToUnmanaged(T, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.ConvertToUnmanagedCore(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.Free(T, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.FreeCore(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) +System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.GetIsBlittable() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods..cctor() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.BlittableConvertToManaged(System.Byte&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) @@ -16854,6 +16881,7 @@ System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.Bli System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_ConvertToManaged() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_ConvertToUnmanaged() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_Free() +System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_IsBlittable() System.Private.CoreLib.dll:System.StubHelpers.MngdFixedArrayMarshaler System.Private.CoreLib.dll:System.StubHelpers.MngdFixedArrayMarshaler.ClearNativeContents(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.StubHelpers.MngdFixedArrayMarshaler.ClearNativeContents(System.IntPtr, System.Object&, System.IntPtr) @@ -16894,11 +16922,13 @@ System.Private.CoreLib.dll:System.StubHelpers.SafeHandleCleanupWorkListElement.. System.Private.CoreLib.dll:System.StubHelpers.SafeHandleCleanupWorkListElement.AddRef() System.Private.CoreLib.dll:System.StubHelpers.SafeHandleCleanupWorkListElement.DestroyCore() System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1 +System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1..cctor() System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.ConvertToManaged(T&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.ConvertToUnmanaged(T&, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.ConvertToUnmanagedCore(T&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.Free(T&, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.FreeCore(T&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) +System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.InitIsBlittable() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers System.Private.CoreLib.dll:System.StubHelpers.StubHelpers..cctor() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.g____PInvoke|18_0(System.Runtime.CompilerServices.QCallTypeHandle, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*) @@ -17670,8 +17700,8 @@ System.Private.CoreLib.dll:System.Threading.EventWaitHandle.ValidateMode(System. System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Private.CoreLib.dll:System.Threading.ExecutionContext Microsoft.Win32.SafeHandles.SafeFileHandle/ThreadPoolValueTaskSource::_context System.Private.CoreLib.dll:System.Threading.ExecutionContext System.IO.Stream/ReadWriteTask::_context -System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::ExecutionContext -System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.ExecutionAndSyncBlockStore::_previousExecutionCtx +System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::LeafExecutionContext +System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::RootExecutionContext System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Threading.CancellationTokenSource/CallbackNode::ExecutionContext System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Threading.ExecutionContext::Default System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Threading.ExecutionContext::DefaultFlowSuppressed @@ -17692,6 +17722,7 @@ System.Private.CoreLib.dll:System.Threading.ExecutionContext.CaptureForRestore() System.Private.CoreLib.dll:System.Threading.ExecutionContext.CaptureForSuspension(System.Threading.Thread) System.Private.CoreLib.dll:System.Threading.ExecutionContext.Dispose() System.Private.CoreLib.dll:System.Threading.ExecutionContext.get_HasChangeNotifications() +System.Private.CoreLib.dll:System.Threading.ExecutionContext.get_InstanceIsFlowSuppressed() System.Private.CoreLib.dll:System.Threading.ExecutionContext.get_IsDefault() System.Private.CoreLib.dll:System.Threading.ExecutionContext.GetLocalValue(System.Threading.IAsyncLocal) System.Private.CoreLib.dll:System.Threading.ExecutionContext.IsFlowSuppressed() @@ -18171,7 +18202,7 @@ System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1::s_postCallback System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.CancellationTokenSource/<>c::<>9__36_0 System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.Tasks.SynchronizationContextAwaitTaskContinuation::s_postCallback -System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.Tasks.Task/<>c::<>9__131_0 +System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.Tasks.Task/<>c::<>9__136_0 System.Private.CoreLib.dll:System.Threading.SendOrPostCallback..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Threading.SendOrPostCallback.Invoke(System.Object) System.Private.CoreLib.dll:System.Threading.SpinLock @@ -18201,8 +18232,8 @@ System.Private.CoreLib.dll:System.Threading.StackCrawlMark System.Threading.Stac System.Private.CoreLib.dll:System.Threading.StackCrawlMark System.Threading.StackCrawlMark::LookForMyCallersCaller System.Private.CoreLib.dll:System.Threading.StackCrawlMark System.Threading.StackCrawlMark::LookForThread System.Private.CoreLib.dll:System.Threading.SynchronizationContext -System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::SynchronizationContext -System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.ExecutionAndSyncBlockStore::_previousSyncCtx +System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::LeafSynchronizationContext +System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::RootSynchronizationContext System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Threading.CancellationTokenSource/CallbackNode::SynchronizationContext System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Threading.SynchronizationContext::Current() System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Threading.Tasks.SynchronizationContextAwaitTaskContinuation::m_syncContext @@ -18225,11 +18256,6 @@ System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor() System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor(System.String) -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Canceled -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Completed -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Error -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Started System.Private.CoreLib.dll:System.Threading.Tasks.AwaitTaskContinuation System.Private.CoreLib.dll:System.Threading.Tasks.AwaitTaskContinuation..cctor() System.Private.CoreLib.dll:System.Threading.Tasks.AwaitTaskContinuation..ctor(System.Action, System.Boolean) @@ -18285,14 +18311,10 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction System.Threading.Tasks.CompletionActionInvoker::m_action System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction.get_InvokeMayRunArbitraryCode() System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction.Invoke(System.Threading.Tasks.Task) -System.Private.CoreLib.dll:System.Threading.Tasks.IValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.IValueTaskSourceNotifier System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::ValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.IValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.CapturedSchedulerAndExecutionContext System.Private.CoreLib.dll:System.Threading.Tasks.Sources.CapturedSchedulerAndExecutionContext..ctor(System.Object, System.Threading.ExecutionContext) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask::_source -System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier::_valueTaskSource System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource.GetResult(System.Int16) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource.GetStatus(System.Int16) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource.OnCompleted(System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) @@ -18301,7 +18323,6 @@ System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1.Get System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1.GetStatus(System.Int16) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1.OnCompleted(System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::_source -System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1 System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier::_valueTaskSource System.Private.CoreLib.dll:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1 System.Private.CoreLib.dll:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.get_Version() System.Private.CoreLib.dll:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.GetResult(System.Int16) @@ -18345,7 +18366,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.SynchronizationContextAwaitTas System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Private.CoreLib.dll:System.Threading.Tasks.Task modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.ValueTask::s_canceledTask System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.AsyncDispatcherInfo::CurrentTask -System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::TaskNotifier +System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::TaskNotifier System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::m_task System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.TaskAwaiter::m_task System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Threading.Tasks.CompletionActionInvoker::m_completingTask @@ -18364,7 +18385,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor() System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor(System.Boolean, System.Threading.Tasks.TaskCreationOptions, System.Threading.CancellationToken) System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor(System.Delegate, System.Object, System.Threading.Tasks.Task, System.Threading.CancellationToken, System.Threading.Tasks.TaskCreationOptions, System.Threading.Tasks.InternalTaskOptions, System.Threading.Tasks.TaskScheduler) System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor(System.Object, System.Threading.Tasks.TaskCreationOptions, System.Boolean) -System.Private.CoreLib.dll:System.Threading.Tasks.Task.g__InitializeContingentProperties|84_0() +System.Private.CoreLib.dll:System.Threading.Tasks.Task.g__InitializeContingentProperties|89_0() System.Private.CoreLib.dll:System.Threading.Tasks.Task.AddCompletionAction(System.Threading.Tasks.ITaskCompletionAction, System.Boolean) System.Private.CoreLib.dll:System.Threading.Tasks.Task.AddException(System.Object, System.Boolean) System.Private.CoreLib.dll:System.Threading.Tasks.Task.AddException(System.Object) @@ -18476,13 +18497,13 @@ System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c System.Threading.Tasks.Task/<>c::<>9 System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c..cctor() System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c..ctor() -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.<.cctor>b__296_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__219_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__39_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__39_1(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__138_0(System.Threading.Tasks.Task) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__131_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__131_1(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.<.cctor>b__301_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__224_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__44_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__44_1(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__143_0(System.Threading.Tasks.Task) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__136_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__136_1(System.Object) System.Private.CoreLib.dll:System.Threading.Tasks.Task/CancellationPromise`1 System.Private.CoreLib.dll:System.Threading.Tasks.Task/CancellationPromise`1..ctor(System.Threading.Tasks.Task, System.UInt32, System.TimeProvider, System.Threading.CancellationToken) System.Private.CoreLib.dll:System.Threading.Tasks.Task/CancellationPromise`1.Cleanup() @@ -18676,7 +18697,6 @@ System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskCompleted(S System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskWaitBegin(System.Int32, System.Int32, System.Int32, System.Threading.Tasks.TplEventSource/TaskWaitBehavior, System.Int32) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskWaitContinuationComplete(System.Int32) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskWaitEnd(System.Int32, System.Int32, System.Int32) -System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TraceOperationEnd(System.Int32, System.Threading.Tasks.AsyncCausalityStatus) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TraceSynchronousWorkBegin(System.Int32, System.Threading.Tasks.CausalitySynchronousWork) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TraceSynchronousWorkEnd(System.Threading.Tasks.CausalitySynchronousWork) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource/TaskWaitBehavior @@ -18707,6 +18727,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.get_CompletedTask() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.get_IsCompleted() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.GetHashCode() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.GetTaskForValueTaskSource(System.Threading.Tasks.Sources.IValueTaskSource) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.OnCompleted(System.Object, System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.ThrowIfCompletedUnsuccessfully() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask..cctor() @@ -18717,9 +18738,6 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTas System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask/<>c..cctor() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask/<>c..ctor() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask/<>c.<.cctor>b__4_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier..ctor(System.Threading.Tasks.Sources.IValueTaskSource, System.Int16) -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1..ctor(System.Object, TResult, System.Int16, System.Boolean) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1..ctor(System.Threading.Tasks.Sources.IValueTaskSource`1, System.Int16) @@ -18735,6 +18753,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.get_IsCompletedSuc System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.get_Result() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.GetHashCode() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.GetTaskForValueTaskSource(System.Threading.Tasks.Sources.IValueTaskSource`1) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.OnCompleted(System.Object, System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.ToString() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask..cctor() @@ -18745,15 +18764,18 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsT System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c..ctor() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c.<.cctor>b__4_0(System.Object) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c::<>9 -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier..ctor(System.Threading.Tasks.Sources.IValueTaskSource`1, System.Int16) -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1::Task() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1::_value System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1/ConfiguredValueTaskAwaiter::_value +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::ValueTaskSourceNotifier +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier System.Threading.Tasks.ValueTaskSourceNotifier::t_instance +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier..ctor(System.Object, method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags), System.Int16) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier.GetInstance(System.Object, method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags), System.Int16) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.VoidTaskResult System.Private.CoreLib.dll:System.Threading.Thread -System.Private.CoreLib.dll:System.Threading.Thread System.Runtime.CompilerServices.ExecutionAndSyncBlockStore::_thread +System.Private.CoreLib.dll:System.Threading.Thread System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::CurrentThread System.Private.CoreLib.dll:System.Threading.Thread System.Threading.AsyncFlowControl::_thread System.Private.CoreLib.dll:System.Threading.Thread System.Threading.Thread::CurrentThread() System.Private.CoreLib.dll:System.Threading.Thread System.Threading.Thread::CurrentThreadAssumedInitialized() @@ -19061,7 +19083,7 @@ System.Private.CoreLib.dll:System.Threading.Volatile/VolatileUIntPtr System.Private.CoreLib.dll:System.Threading.WaitCallback System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.QueueUserWorkItemCallback::_callback System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.QueueUserWorkItemCallbackDefaultContext::_callback -System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.Tasks.Task/<>c::<>9__131_1 +System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.Tasks.Task/<>c::<>9__136_1 System.Private.CoreLib.dll:System.Threading.WaitCallback..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Threading.WaitCallback.Invoke(System.Object) System.Private.CoreLib.dll:System.Threading.WaitHandle @@ -19281,6 +19303,7 @@ System.Private.CoreLib.dll:System.ThrowHelper.ThrowStartIndexArgumentOutOfRange_ System.Private.CoreLib.dll:System.ThrowHelper.ThrowSynchronizationLockException_LockExit() System.Private.CoreLib.dll:System.ThrowHelper.ThrowUnexpectedStateForKnownCallback(System.Object) System.Private.CoreLib.dll:System.ThrowHelper.ThrowUnreachableException() +System.Private.CoreLib.dll:System.ThrowHelper.ThrowValueArgumentOutOfRange_NeedNonNegNumException() System.Private.CoreLib.dll:System.TimeOnly System.Private.CoreLib.dll:System.TimeOnly.CompareTo(System.Object) System.Private.CoreLib.dll:System.TimeOnly.CompareTo(System.TimeOnly) @@ -19465,7 +19488,7 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetLocalTzFile(out System.Byte System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetTransitionsForYear(System.Int32, out System.ValueTuple`2&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetUtcOffset(System.DateTime, out System.TimeSpan&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryLoadTzFile(System.String, System.Byte[]&, System.String&) -System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.DateTime&) +System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.Int64&) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CalculateTransitionOffsetFromBase(System.TimeSpan, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateAdjustmentRuleForPosixFormat(System.String, System.DateTime, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateTransitionTimeFromPosixRule(System.ReadOnlySpan`1, System.ReadOnlySpan`1) @@ -19489,7 +19512,6 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToInt64(System.Byte[], Syste System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToUnixTime(System.Byte[], System.Int32, System.TimeZoneInfo/TZVersion) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_UnixTimeToDateTime(System.Int64) System.Private.CoreLib.dll:System.TimeZoneInfo.UtcOffsetOutOfRange(System.TimeSpan) -System.Private.CoreLib.dll:System.TimeZoneInfo.UtcToLocal(System.DateTime, out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo.ValidateTimeZoneInfo(System.String, System.TimeSpan, System.TimeZoneInfo/AdjustmentRule[], out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.TimeZoneInfo/<>c::<>9 @@ -19888,10 +19910,10 @@ System.Private.CoreLib.dll:System.UInt128 System.UInt128::One() System.Private.CoreLib.dll:System.UInt128 System.UInt128::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt128 System.UInt128::Zero() System.Private.CoreLib.dll:System.UInt128..ctor(System.UInt64, System.UInt64) -System.Private.CoreLib.dll:System.UInt128.g__AddDivisor|112_0(System.Span`1, System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.UInt128.g__DivideGuessTooBig|112_1(System.UInt64, System.UInt64, System.UInt32, System.UInt32, System.UInt32) -System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|112_2(System.UInt128, System.UInt128) -System.Private.CoreLib.dll:System.UInt128.g__SubtractDivisor|112_3(System.Span`1, System.ReadOnlySpan`1, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64Bits|83_1(System.UInt128, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64BitsCore|83_2(System.UInt64, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide96BitsBy64Bits|83_3(System.UInt64, System.UInt32, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|83_0(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.UInt128) System.Private.CoreLib.dll:System.UInt128.CreateSaturating`1(TOther) @@ -20366,6 +20388,7 @@ System.Private.CoreLib.dll:System.UInt64.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt64.CompareTo(System.UInt64) System.Private.CoreLib.dll:System.UInt64.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt64.DivRem(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.Equals(System.Object) System.Private.CoreLib.dll:System.UInt64.Equals(System.UInt64) System.Private.CoreLib.dll:System.UInt64.GetHashCode() @@ -21423,7 +21446,6 @@ System.Reflection.Metadata.dll:System.Reflection.Internal.PooledStringBuilder/<> System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions.GetAndValidateSize(System.IO.Stream, System.Int32, System.String) System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions.ReadExactly(System.IO.Stream, System.Byte*, System.Int32) -System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions.TryReadAll(System.IO.Stream, System.Span`1) System.Reflection.Metadata.dll:System.Reflection.Internal.StreamMemoryBlockProvider System.Reflection.Metadata.dll:System.Reflection.Internal.StreamMemoryBlockProvider..ctor(System.IO.Stream, System.Int64, System.Int32, System.Boolean) System.Reflection.Metadata.dll:System.Reflection.Internal.StreamMemoryBlockProvider.CreateMemoryMappedFileBlock(System.Int64, System.Int32) diff --git a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-size.txt b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-size.txt index 016cde2ba86d..72f9c63184c0 100644 --- a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-size.txt +++ b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-size.txt @@ -1,26 +1,26 @@ -AppBundleSize: 9,255,477 bytes (9,038.6 KB = 8.8 MB) +AppBundleSize: 9,257,533 bytes (9,040.6 KB = 8.8 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: _CodeSignature/CodeResources: 10,847 bytes (10.6 KB = 0.0 MB) archived-expanded-entitlements.xcent: 384 bytes (0.4 KB = 0.0 MB) Frameworks/libcoreclr.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/libcoreclr.framework/Info.plist: 833 bytes (0.8 KB = 0.0 MB) -Frameworks/libcoreclr.framework/libcoreclr: 5,203,936 bytes (5,082.0 KB = 5.0 MB) +Frameworks/libcoreclr.framework/Info.plist: 841 bytes (0.8 KB = 0.0 MB) +Frameworks/libcoreclr.framework/libcoreclr: 5,187,184 bytes (5,065.6 KB = 4.9 MB) Frameworks/libSystem.Globalization.Native.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/libSystem.Globalization.Native.framework/Info.plist: 875 bytes (0.9 KB = 0.0 MB) +Frameworks/libSystem.Globalization.Native.framework/Info.plist: 883 bytes (0.9 KB = 0.0 MB) Frameworks/libSystem.Globalization.Native.framework/libSystem.Globalization.Native: 109,232 bytes (106.7 KB = 0.1 MB) Frameworks/libSystem.IO.Compression.Native.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/libSystem.IO.Compression.Native.framework/Info.plist: 877 bytes (0.9 KB = 0.0 MB) -Frameworks/libSystem.IO.Compression.Native.framework/libSystem.IO.Compression.Native: 1,431,280 bytes (1,397.7 KB = 1.4 MB) +Frameworks/libSystem.IO.Compression.Native.framework/Info.plist: 885 bytes (0.9 KB = 0.0 MB) +Frameworks/libSystem.IO.Compression.Native.framework/libSystem.IO.Compression.Native: 1,431,408 bytes (1,397.9 KB = 1.4 MB) Frameworks/libSystem.Native.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/libSystem.Native.framework/Info.plist: 847 bytes (0.8 KB = 0.0 MB) -Frameworks/libSystem.Native.framework/libSystem.Native: 162,256 bytes (158.5 KB = 0.2 MB) +Frameworks/libSystem.Native.framework/Info.plist: 855 bytes (0.8 KB = 0.0 MB) +Frameworks/libSystem.Native.framework/libSystem.Native: 162,336 bytes (158.5 KB = 0.2 MB) Frameworks/libSystem.Net.Security.Native.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/libSystem.Net.Security.Native.framework/Info.plist: 873 bytes (0.9 KB = 0.0 MB) +Frameworks/libSystem.Net.Security.Native.framework/Info.plist: 881 bytes (0.9 KB = 0.0 MB) Frameworks/libSystem.Net.Security.Native.framework/libSystem.Net.Security.Native: 88,000 bytes (85.9 KB = 0.1 MB) Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/Info.plist: 903 bytes (0.9 KB = 0.0 MB) -Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/libSystem.Security.Cryptography.Native.Apple: 194,256 bytes (189.7 KB = 0.2 MB) -Info.plist: 1,161 bytes (1.1 KB = 0.0 MB) +Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/Info.plist: 911 bytes (0.9 KB = 0.0 MB) +Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/libSystem.Security.Cryptography.Native.Apple: 214,336 bytes (209.3 KB = 0.2 MB) +Info.plist: 1,169 bytes (1.1 KB = 0.0 MB) Microsoft.iOS.dll: 99,328 bytes (97.0 KB = 0.1 MB) PkgInfo: 8 bytes (0.0 KB = 0.0 MB) runtimeconfig.bin: 1,481 bytes (1.4 KB = 0.0 MB) @@ -30,7 +30,7 @@ System.Collections.Immutable.dll: 14,848 bytes (14.5 KB = 0.0 MB) System.Diagnostics.StackTrace.dll: 8,192 bytes (8.0 KB = 0.0 MB) System.IO.Compression.dll: 22,528 bytes (22.0 KB = 0.0 MB) System.IO.MemoryMappedFiles.dll: 22,016 bytes (21.5 KB = 0.0 MB) -System.Private.CoreLib.dll: 1,568,256 bytes (1,531.5 KB = 1.5 MB) +System.Private.CoreLib.dll: 1,570,304 bytes (1,533.5 KB = 1.5 MB) System.Reflection.Metadata.dll: 84,480 bytes (82.5 KB = 0.1 MB) System.Runtime.dll: 5,120 bytes (5.0 KB = 0.0 MB) -System.Runtime.InteropServices.dll: 8,192 bytes (8.0 KB = 0.0 MB) +System.Runtime.InteropServices.dll: 4,608 bytes (4.5 KB = 0.0 MB) diff --git a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-preservedapis.txt b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-preservedapis.txt index 56bf48e17967..08b76815a108 100644 --- a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-preservedapis.txt @@ -2389,6 +2389,7 @@ System.Private.CoreLib.dll:method System.Void *(System.Byte&,System.Byte*,System System.Private.CoreLib.dll:method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&) System.StubHelpers.LayoutClassMarshaler`1/Methods::Free() System.Private.CoreLib.dll:method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&) System.StubHelpers.StubHelpers/StructureMarshalInfo::ConvertToManaged System.Private.CoreLib.dll:method System.Void *(System.Byte&) System.RuntimeType/ActivatorCache::_pfnValueCtor +System.Private.CoreLib.dll:method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Threading.Tasks.ValueTaskSourceNotifier::_onCompleted System.Private.CoreLib.dll:method System.Void *(System.Object) System.RuntimeType/ActivatorCache::_pfnRefCtor System.Private.CoreLib.dll:method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*) System.Runtime.CompilerServices.PortableTailCallFrame::NextCall System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle @@ -2505,8 +2506,8 @@ System.Private.CoreLib.dll:System.Action`1 System.Threading.Manua System.Private.CoreLib.dll:System.Action`1 System.Threading.SemaphoreSlim::s_cancellationTokenCanceledEventHandler System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1::_continuation System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Sources.ManualResetValueTaskSourceCoreShared::s_sentinel -System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__39_0 -System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__39_1 +System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__44_0 +System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.Task/<>c::<>9__44_1 System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation/<>c::<>9__2_0 System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask::s_completionAction System.Private.CoreLib.dll:System.Action`1 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::s_completionAction @@ -2805,6 +2806,8 @@ System.Private.CoreLib.dll:System.BitConverter.Int32BitsToSingle(System.Int32) System.Private.CoreLib.dll:System.BitConverter.Int64BitsToDouble(System.Int64) System.Private.CoreLib.dll:System.BitConverter.SingleToInt32Bits(System.Single) System.Private.CoreLib.dll:System.BitConverter.SingleToUInt32Bits(System.Single) +System.Private.CoreLib.dll:System.BitConverter.ToInt32(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.BitConverter.ToUInt32(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.BitConverter.UInt16BitsToHalf(System.UInt16) System.Private.CoreLib.dll:System.BitConverter.UInt32BitsToSingle(System.UInt32) System.Private.CoreLib.dll:System.BitConverter.UInt64BitsToDouble(System.UInt64) @@ -3194,7 +3197,9 @@ System.Private.CoreLib.dll:System.Boolean System.RuntimeType/RuntimeTypeCache/Me System.Private.CoreLib.dll:System.Boolean System.RuntimeTypeHandle/IntroducedMethodEnumerator::_firstCall System.Private.CoreLib.dll:System.Boolean System.SByte::System.IBinaryIntegerParseAndFormatInfo.IsSigned() System.Private.CoreLib.dll:System.Boolean System.Span`1::IsEmpty() +System.Private.CoreLib.dll:System.Boolean System.StubHelpers.LayoutClassMarshaler`1/Methods::IsBlittable() System.Private.CoreLib.dll:System.Boolean System.StubHelpers.SafeHandleCleanupWorkListElement::m_owned +System.Private.CoreLib.dll:System.Boolean System.StubHelpers.StructureMarshaler`1::s_isBlittable System.Private.CoreLib.dll:System.Boolean System.Text.Decoder::InternalHasFallbackBuffer() System.Private.CoreLib.dll:System.Boolean System.Text.DecoderNLS::_throwOnOverflow System.Private.CoreLib.dll:System.Boolean System.Text.DecoderNLS::MustFlush() @@ -3217,6 +3222,7 @@ System.Private.CoreLib.dll:System.Boolean System.Threading.CancellationTokenSour System.Private.CoreLib.dll:System.Boolean System.Threading.CancellationTokenSource::IsCancellationRequested() System.Private.CoreLib.dll:System.Boolean System.Threading.Condition/Waiter::signalled System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::HasChangeNotifications() +System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::InstanceIsFlowSuppressed() System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::IsDefault() System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::m_isDefault System.Private.CoreLib.dll:System.Boolean System.Threading.ExecutionContext::m_isFlowSuppressed @@ -3504,7 +3510,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/ContainsAnyRes System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default.PackSources(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1 @@ -3513,7 +3519,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResu System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IOptimizations @@ -3524,7 +3530,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper` System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Ssse3AndWasmHandleZeroInNeedle @@ -5413,6 +5419,7 @@ System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.AllowNullAttribute..c System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Max(System.Object) +System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Min(System.Object) System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes @@ -8015,10 +8022,9 @@ System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.Sources.ManualRes System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1::Version() System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask::_token System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask::_token -System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier::_token System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1::_token System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::_token -System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier::_token +System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTaskSourceNotifier::_token System.Private.CoreLib.dll:System.Int16.CompareTo(System.Int16) System.Private.CoreLib.dll:System.Int16.CompareTo(System.Object) System.Private.CoreLib.dll:System.Int16.CreateSaturating`1(TOther) @@ -8825,7 +8831,6 @@ System.Private.CoreLib.dll:System.Int32 System.Threading.SpinWait::_count System.Private.CoreLib.dll:System.Int32 System.Threading.SpinWait::Count() System.Private.CoreLib.dll:System.Int32 System.Threading.SpinWait::SpinCountForSpinBeforeWait System.Private.CoreLib.dll:System.Int32 System.Threading.StackCrawlMark::value__ -System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.AsyncCausalityStatus::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.CausalitySynchronousWork::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.ConfigureAwaitOptions::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Tasks.InternalTaskOptions::value__ @@ -8901,6 +8906,7 @@ System.Private.CoreLib.dll:System.Int32.Equals(System.Object) System.Private.CoreLib.dll:System.Int32.GetHashCode() System.Private.CoreLib.dll:System.Int32.GetTypeCode() System.Private.CoreLib.dll:System.Int32.IsNegative(System.Int32) +System.Private.CoreLib.dll:System.Int32.Log2(System.Int32) System.Private.CoreLib.dll:System.Int32.Max(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Min(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -10156,8 +10162,8 @@ System.Private.CoreLib.dll:System.Memory`1.Pin() System.Private.CoreLib.dll:System.Memory`1.Slice(System.Int32) System.Private.CoreLib.dll:System.Memory`1.ToString() System.Private.CoreLib.dll:System.MemoryExtensions -System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|273_0(System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|287_0(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|278_0(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|292_0(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.AsMemory`1(T[], System.Int32, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32) @@ -10748,7 +10754,9 @@ System.Private.CoreLib.dll:System.Object System.ComAwareWeakReference/ComInfo::_ System.Private.CoreLib.dll:System.Object System.Delegate::_methodBase System.Private.CoreLib.dll:System.Object System.Delegate::_target System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Max() +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Min() System.Private.CoreLib.dll:System.Object System.Diagnostics.EditAndContinueHelper::_objectReference System.Private.CoreLib.dll:System.Object System.Diagnostics.StackFrameHelper::dynamicMethods System.Private.CoreLib.dll:System.Object System.Diagnostics.StackFrameHelper::s_stackTraceSymbolsCache @@ -10822,6 +10830,7 @@ System.Private.CoreLib.dll:System.Object System.Threading.Tasks.TaskToAsyncResul System.Private.CoreLib.dll:System.Object System.Threading.Tasks.TaskToAsyncResult/TaskAsyncResult::AsyncState() System.Private.CoreLib.dll:System.Object System.Threading.Tasks.ValueTask::_obj System.Private.CoreLib.dll:System.Object System.Threading.Tasks.ValueTask`1::_obj +System.Private.CoreLib.dll:System.Object System.Threading.Tasks.ValueTaskSourceNotifier::_source System.Private.CoreLib.dll:System.Object System.Threading.Thread/StartHelper::_startArg System.Private.CoreLib.dll:System.Object System.Threading.ThreadBlockingInfo/Scope::_object System.Private.CoreLib.dll:System.Object System.Threading.TimerQueueTimer::_notifyWhenNoCallbacksRunning @@ -10948,8 +10957,8 @@ System.Private.CoreLib.dll:System.PlatformNotSupportedException..ctor(System.Str System.Private.CoreLib.dll:System.Predicate`1 System.Private.CoreLib.dll:System.Predicate`1..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Predicate`1.Invoke(T) -System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__219_0 -System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__138_0 +System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__224_0 +System.Private.CoreLib.dll:System.Predicate`1 System.Threading.Tasks.Task/<>c::<>9__143_0 System.Private.CoreLib.dll:System.Random System.Private.CoreLib.dll:System.Random/ImplBase System.Private.CoreLib.dll:System.Random/ImplBase..ctor() @@ -13150,10 +13159,13 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureC System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureExecutionContext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CompletedTask(System.Threading.Tasks.Task) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CompletedTaskResult`1(System.Threading.Tasks.Task`1) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk`1() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk`1() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeRuntimeAsyncTask`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&, System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeTaskReturningThunk`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinalizeValueTaskReturningThunk`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinishSuspensionNoContinuationContext(System.Threading.ExecutionContext&, System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinishSuspensionWithContinuationContext(System.Object&, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&, System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContexts(System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContextsOnSuspension(System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreExecutionContext(System.Threading.ExecutionContext) @@ -13168,6 +13180,13 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ValueTas System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState System.Runtime.CompilerServices.AsyncHelpers::t_runtimeAsyncAwaitState System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState.CaptureContexts() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState.Pop() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState.Push(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState*) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState.Pop(System.Threading.Thread) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState.Push(System.Threading.Thread) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState* System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::StackState +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState* System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::Next System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1..cctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1..ctor() @@ -13175,18 +13194,18 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeA System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.ExecuteFromThreadPool(System.Threading.Thread) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.GetContinuationAction() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.GetResultStorage() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.HandleSuspended() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.HandleSuspended(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.MoveContinuationState() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.QueueContinuationFollowUpActionIfNecessary(System.Runtime.CompilerServices.Continuation) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.SetContinuationState(System.Runtime.CompilerServices.Continuation) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.System.Threading.Tasks.ITaskCompletionAction.get_InvokeMayRunArbitraryCode() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.System.Threading.Tasks.ITaskCompletionAction.Invoke(System.Threading.Tasks.Task) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.UnwindToPossibleHandler(System.Runtime.CompilerServices.Continuation, System.Exception) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1.UnwindToPossibleHandler(System.Runtime.CompilerServices.Continuation, System.Exception, System.UInt32&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c..cctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c..ctor() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__16_0(System.Object) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__16_1(System.Object) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__18_0(System.Object) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c.<.cctor>b__18_1(System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1/<>c::<>9 System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore @@ -13284,7 +13303,6 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox_Nul System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox_TypeTest_Helper(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox_TypeTest(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.Unbox(System.Runtime.CompilerServices.MethodTable*, System.Object) -System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastHelpers.WriteBarrier(System.Object&, System.Object) System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastResult System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastResult System.Runtime.CompilerServices.CastResult::CanCast System.Private.CoreLib.dll:System.Runtime.CompilerServices.CastResult System.Runtime.CompilerServices.CastResult::CannotCast @@ -13440,9 +13458,6 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.DynamicStaticsInfo Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.DynamicStaticsInfo.MaskStaticsPointer(System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.EntryInfo System.Private.CoreLib.dll:System.Runtime.CompilerServices.EntryInfo System.Runtime.CompilerServices.GenericCache`2/Entry::_info -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExecutionAndSyncBlockStore -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExecutionAndSyncBlockStore.Pop() -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExecutionAndSyncBlockStore.Push() System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExtensionAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.ExtensionAttribute..ctor() System.Private.CoreLib.dll:System.Runtime.CompilerServices.GenericCache`2 @@ -13481,7 +13496,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox.MoveNext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IConfiguredTaskAwaiter System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion -System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::CriticalNotifier +System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::CriticalNotifier System.Private.CoreLib.dll:System.Runtime.CompilerServices.ICriticalNotifyCompletion.UnsafeOnCompleted(System.Action) System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.CallClassConstructor(System.Void*, System.Void*, System.Exception*) @@ -13498,7 +13513,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.Store(System.Byte*, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.StoreSelectedScalar(System.UInt32*, System.Runtime.Intrinsics.Vector64`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd/Arm64 @@ -14695,6 +14712,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions.Store`2(TVector, T*) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AddSaturate`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AndNot`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.As`2(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AsByte`1(System.Runtime.Intrinsics.Vector128`1) @@ -14742,6 +14761,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GetElementUnsafe` System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThan`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanAny`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfFirstMatch`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNaN`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNegative`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.LastIndexOf`1(System.Runtime.Intrinsics.Vector128`1, T) @@ -14837,11 +14858,11 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Equals`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.EqualsAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector256`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetLower`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GreaterThanAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNaN`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNegative`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.LastIndexOf`1(System.Runtime.Intrinsics.Vector256`1, T) @@ -14914,10 +14935,10 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Equals`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.EqualsAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector512`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GreaterThanAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNaN`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNegative`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.LastIndexOf`1(System.Runtime.Intrinsics.Vector512`1, T) @@ -14974,12 +14995,15 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.ToString(System System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1 System.Runtime.Intrinsics.Vector512`1::Zero() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AddSaturate`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AndNot`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.As`2(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsByte`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt32`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt32`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.ConditionalSelect`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Int16, System.Int16, System.Int16, System.Int16) @@ -14997,6 +15021,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GetElementUnsafe`1 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThan`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanAny`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNaN`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNegative`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.LastIndexOf`1(System.Runtime.Intrinsics.Vector64`1, T) @@ -16841,11 +16866,13 @@ System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1 System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallConvertToManaged|3_0(System.Byte&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallConvertToUnmanaged|1_0(System.Byte&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallFree|4_0(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) +System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.g__CallIsBlittable|5_0() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.ConvertToManaged(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.ConvertToUnmanaged(T, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.ConvertToUnmanagedCore(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.Free(T, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.FreeCore(T, System.Byte*, System.StubHelpers.CleanupWorkListElement&) +System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1.GetIsBlittable() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods..cctor() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.BlittableConvertToManaged(System.Byte&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) @@ -16854,6 +16881,7 @@ System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.Bli System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_ConvertToManaged() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_ConvertToUnmanaged() System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_Free() +System.Private.CoreLib.dll:System.StubHelpers.LayoutClassMarshaler`1/Methods.get_IsBlittable() System.Private.CoreLib.dll:System.StubHelpers.MngdFixedArrayMarshaler System.Private.CoreLib.dll:System.StubHelpers.MngdFixedArrayMarshaler.ClearNativeContents(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.StubHelpers.MngdFixedArrayMarshaler.ClearNativeContents(System.IntPtr, System.Object&, System.IntPtr) @@ -16894,11 +16922,13 @@ System.Private.CoreLib.dll:System.StubHelpers.SafeHandleCleanupWorkListElement.. System.Private.CoreLib.dll:System.StubHelpers.SafeHandleCleanupWorkListElement.AddRef() System.Private.CoreLib.dll:System.StubHelpers.SafeHandleCleanupWorkListElement.DestroyCore() System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1 +System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1..cctor() System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.ConvertToManaged(T&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.ConvertToUnmanaged(T&, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.ConvertToUnmanagedCore(T&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.Free(T&, System.Byte*, System.Int32, System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.FreeCore(T&, System.Byte*, System.StubHelpers.CleanupWorkListElement&) +System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.InitIsBlittable() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers System.Private.CoreLib.dll:System.StubHelpers.StubHelpers..cctor() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.g____PInvoke|18_0(System.Runtime.CompilerServices.QCallTypeHandle, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*) @@ -17670,8 +17700,8 @@ System.Private.CoreLib.dll:System.Threading.EventWaitHandle.ValidateMode(System. System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Private.CoreLib.dll:System.Threading.ExecutionContext Microsoft.Win32.SafeHandles.SafeFileHandle/ThreadPoolValueTaskSource::_context System.Private.CoreLib.dll:System.Threading.ExecutionContext System.IO.Stream/ReadWriteTask::_context -System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::ExecutionContext -System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.ExecutionAndSyncBlockStore::_previousExecutionCtx +System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::LeafExecutionContext +System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::RootExecutionContext System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Threading.CancellationTokenSource/CallbackNode::ExecutionContext System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Threading.ExecutionContext::Default System.Private.CoreLib.dll:System.Threading.ExecutionContext System.Threading.ExecutionContext::DefaultFlowSuppressed @@ -17692,6 +17722,7 @@ System.Private.CoreLib.dll:System.Threading.ExecutionContext.CaptureForRestore() System.Private.CoreLib.dll:System.Threading.ExecutionContext.CaptureForSuspension(System.Threading.Thread) System.Private.CoreLib.dll:System.Threading.ExecutionContext.Dispose() System.Private.CoreLib.dll:System.Threading.ExecutionContext.get_HasChangeNotifications() +System.Private.CoreLib.dll:System.Threading.ExecutionContext.get_InstanceIsFlowSuppressed() System.Private.CoreLib.dll:System.Threading.ExecutionContext.get_IsDefault() System.Private.CoreLib.dll:System.Threading.ExecutionContext.GetLocalValue(System.Threading.IAsyncLocal) System.Private.CoreLib.dll:System.Threading.ExecutionContext.IsFlowSuppressed() @@ -18171,7 +18202,7 @@ System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncTask`1::s_postCallback System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.CancellationTokenSource/<>c::<>9__36_0 System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.Tasks.SynchronizationContextAwaitTaskContinuation::s_postCallback -System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.Tasks.Task/<>c::<>9__131_0 +System.Private.CoreLib.dll:System.Threading.SendOrPostCallback System.Threading.Tasks.Task/<>c::<>9__136_0 System.Private.CoreLib.dll:System.Threading.SendOrPostCallback..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Threading.SendOrPostCallback.Invoke(System.Object) System.Private.CoreLib.dll:System.Threading.SpinLock @@ -18201,8 +18232,8 @@ System.Private.CoreLib.dll:System.Threading.StackCrawlMark System.Threading.Stac System.Private.CoreLib.dll:System.Threading.StackCrawlMark System.Threading.StackCrawlMark::LookForMyCallersCaller System.Private.CoreLib.dll:System.Threading.StackCrawlMark System.Threading.StackCrawlMark::LookForThread System.Private.CoreLib.dll:System.Threading.SynchronizationContext -System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::SynchronizationContext -System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.ExecutionAndSyncBlockStore::_previousSyncCtx +System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::LeafSynchronizationContext +System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::RootSynchronizationContext System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Threading.CancellationTokenSource/CallbackNode::SynchronizationContext System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Threading.SynchronizationContext::Current() System.Private.CoreLib.dll:System.Threading.SynchronizationContext System.Threading.Tasks.SynchronizationContextAwaitTaskContinuation::m_syncContext @@ -18225,11 +18256,6 @@ System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor() System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.Threading.SynchronizationLockException..ctor(System.String) -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Canceled -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Completed -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Error -System.Private.CoreLib.dll:System.Threading.Tasks.AsyncCausalityStatus System.Threading.Tasks.AsyncCausalityStatus::Started System.Private.CoreLib.dll:System.Threading.Tasks.AwaitTaskContinuation System.Private.CoreLib.dll:System.Threading.Tasks.AwaitTaskContinuation..cctor() System.Private.CoreLib.dll:System.Threading.Tasks.AwaitTaskContinuation..ctor(System.Action, System.Boolean) @@ -18285,14 +18311,10 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction System.Threading.Tasks.CompletionActionInvoker::m_action System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction.get_InvokeMayRunArbitraryCode() System.Private.CoreLib.dll:System.Threading.Tasks.ITaskCompletionAction.Invoke(System.Threading.Tasks.Task) -System.Private.CoreLib.dll:System.Threading.Tasks.IValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.IValueTaskSourceNotifier System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::ValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.IValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.CapturedSchedulerAndExecutionContext System.Private.CoreLib.dll:System.Threading.Tasks.Sources.CapturedSchedulerAndExecutionContext..ctor(System.Object, System.Threading.ExecutionContext) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask::_source -System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier::_valueTaskSource System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource.GetResult(System.Int16) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource.GetStatus(System.Int16) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource.OnCompleted(System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) @@ -18301,7 +18323,6 @@ System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1.Get System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1.GetStatus(System.Int16) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1.OnCompleted(System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::_source -System.Private.CoreLib.dll:System.Threading.Tasks.Sources.IValueTaskSource`1 System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier::_valueTaskSource System.Private.CoreLib.dll:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1 System.Private.CoreLib.dll:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.get_Version() System.Private.CoreLib.dll:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.GetResult(System.Int16) @@ -18345,7 +18366,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.SynchronizationContextAwaitTas System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Private.CoreLib.dll:System.Threading.Tasks.Task modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.ValueTask::s_canceledTask System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.AsyncDispatcherInfo::CurrentTask -System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::TaskNotifier +System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::TaskNotifier System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::m_task System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Runtime.CompilerServices.TaskAwaiter::m_task System.Private.CoreLib.dll:System.Threading.Tasks.Task System.Threading.Tasks.CompletionActionInvoker::m_completingTask @@ -18364,7 +18385,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor() System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor(System.Boolean, System.Threading.Tasks.TaskCreationOptions, System.Threading.CancellationToken) System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor(System.Delegate, System.Object, System.Threading.Tasks.Task, System.Threading.CancellationToken, System.Threading.Tasks.TaskCreationOptions, System.Threading.Tasks.InternalTaskOptions, System.Threading.Tasks.TaskScheduler) System.Private.CoreLib.dll:System.Threading.Tasks.Task..ctor(System.Object, System.Threading.Tasks.TaskCreationOptions, System.Boolean) -System.Private.CoreLib.dll:System.Threading.Tasks.Task.g__InitializeContingentProperties|84_0() +System.Private.CoreLib.dll:System.Threading.Tasks.Task.g__InitializeContingentProperties|89_0() System.Private.CoreLib.dll:System.Threading.Tasks.Task.AddCompletionAction(System.Threading.Tasks.ITaskCompletionAction, System.Boolean) System.Private.CoreLib.dll:System.Threading.Tasks.Task.AddException(System.Object, System.Boolean) System.Private.CoreLib.dll:System.Threading.Tasks.Task.AddException(System.Object) @@ -18476,13 +18497,13 @@ System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c System.Threading.Tasks.Task/<>c::<>9 System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c..cctor() System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c..ctor() -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.<.cctor>b__296_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__219_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__39_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__39_1(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__138_0(System.Threading.Tasks.Task) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__131_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__131_1(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.<.cctor>b__301_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__224_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__44_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__44_1(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__143_0(System.Threading.Tasks.Task) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__136_0(System.Object) +System.Private.CoreLib.dll:System.Threading.Tasks.Task/<>c.b__136_1(System.Object) System.Private.CoreLib.dll:System.Threading.Tasks.Task/CancellationPromise`1 System.Private.CoreLib.dll:System.Threading.Tasks.Task/CancellationPromise`1..ctor(System.Threading.Tasks.Task, System.UInt32, System.TimeProvider, System.Threading.CancellationToken) System.Private.CoreLib.dll:System.Threading.Tasks.Task/CancellationPromise`1.Cleanup() @@ -18676,7 +18697,6 @@ System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskCompleted(S System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskWaitBegin(System.Int32, System.Int32, System.Int32, System.Threading.Tasks.TplEventSource/TaskWaitBehavior, System.Int32) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskWaitContinuationComplete(System.Int32) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TaskWaitEnd(System.Int32, System.Int32, System.Int32) -System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TraceOperationEnd(System.Int32, System.Threading.Tasks.AsyncCausalityStatus) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TraceSynchronousWorkBegin(System.Int32, System.Threading.Tasks.CausalitySynchronousWork) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource.TraceSynchronousWorkEnd(System.Threading.Tasks.CausalitySynchronousWork) System.Private.CoreLib.dll:System.Threading.Tasks.TplEventSource/TaskWaitBehavior @@ -18707,6 +18727,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.get_CompletedTask() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.get_IsCompleted() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.GetHashCode() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.GetTaskForValueTaskSource(System.Threading.Tasks.Sources.IValueTaskSource) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.OnCompleted(System.Object, System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask.ThrowIfCompletedUnsuccessfully() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask..cctor() @@ -18717,9 +18738,6 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTas System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask/<>c..cctor() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask/<>c..ctor() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceAsTask/<>c.<.cctor>b__4_0(System.Object) -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier..ctor(System.Threading.Tasks.Sources.IValueTaskSource, System.Int16) -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask/ValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1..ctor(System.Object, TResult, System.Int16, System.Boolean) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1..ctor(System.Threading.Tasks.Sources.IValueTaskSource`1, System.Int16) @@ -18735,6 +18753,7 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.get_IsCompletedSuc System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.get_Result() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.GetHashCode() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.GetTaskForValueTaskSource(System.Threading.Tasks.Sources.IValueTaskSource`1) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.OnCompleted(System.Object, System.Action`1, System.Object, System.Int16, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1.ToString() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask..cctor() @@ -18745,15 +18764,18 @@ System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsT System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c..ctor() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c.<.cctor>b__4_0(System.Object) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask/<>c::<>9 -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier..ctor(System.Threading.Tasks.Sources.IValueTaskSource`1, System.Int16) -System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1/ValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1::Task() System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1::_value System.Private.CoreLib.dll:System.Threading.Tasks.ValueTask`1 System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1/ConfiguredValueTaskAwaiter::_value +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::ValueTaskSourceNotifier +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier System.Threading.Tasks.ValueTaskSourceNotifier::t_instance +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier..ctor(System.Object, method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags), System.Int16) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier.GetInstance(System.Object, method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags), System.Int16) +System.Private.CoreLib.dll:System.Threading.Tasks.ValueTaskSourceNotifier.OnCompleted(System.Action`1, System.Object, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Private.CoreLib.dll:System.Threading.Tasks.VoidTaskResult System.Private.CoreLib.dll:System.Threading.Thread -System.Private.CoreLib.dll:System.Threading.Thread System.Runtime.CompilerServices.ExecutionAndSyncBlockStore::_thread +System.Private.CoreLib.dll:System.Threading.Thread System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState::CurrentThread System.Private.CoreLib.dll:System.Threading.Thread System.Threading.AsyncFlowControl::_thread System.Private.CoreLib.dll:System.Threading.Thread System.Threading.Thread::CurrentThread() System.Private.CoreLib.dll:System.Threading.Thread System.Threading.Thread::CurrentThreadAssumedInitialized() @@ -19061,7 +19083,7 @@ System.Private.CoreLib.dll:System.Threading.Volatile/VolatileUIntPtr System.Private.CoreLib.dll:System.Threading.WaitCallback System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.QueueUserWorkItemCallback::_callback System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.QueueUserWorkItemCallbackDefaultContext::_callback -System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.Tasks.Task/<>c::<>9__131_1 +System.Private.CoreLib.dll:System.Threading.WaitCallback System.Threading.Tasks.Task/<>c::<>9__136_1 System.Private.CoreLib.dll:System.Threading.WaitCallback..ctor(System.Object, System.IntPtr) System.Private.CoreLib.dll:System.Threading.WaitCallback.Invoke(System.Object) System.Private.CoreLib.dll:System.Threading.WaitHandle @@ -19281,6 +19303,7 @@ System.Private.CoreLib.dll:System.ThrowHelper.ThrowStartIndexArgumentOutOfRange_ System.Private.CoreLib.dll:System.ThrowHelper.ThrowSynchronizationLockException_LockExit() System.Private.CoreLib.dll:System.ThrowHelper.ThrowUnexpectedStateForKnownCallback(System.Object) System.Private.CoreLib.dll:System.ThrowHelper.ThrowUnreachableException() +System.Private.CoreLib.dll:System.ThrowHelper.ThrowValueArgumentOutOfRange_NeedNonNegNumException() System.Private.CoreLib.dll:System.TimeOnly System.Private.CoreLib.dll:System.TimeOnly.CompareTo(System.Object) System.Private.CoreLib.dll:System.TimeOnly.CompareTo(System.TimeOnly) @@ -19465,7 +19488,7 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetLocalTzFile(out System.Byte System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetTransitionsForYear(System.Int32, out System.ValueTuple`2&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetUtcOffset(System.DateTime, out System.TimeSpan&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryLoadTzFile(System.String, System.Byte[]&, System.String&) -System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.DateTime&) +System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.Int64&) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CalculateTransitionOffsetFromBase(System.TimeSpan, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateAdjustmentRuleForPosixFormat(System.String, System.DateTime, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateTransitionTimeFromPosixRule(System.ReadOnlySpan`1, System.ReadOnlySpan`1) @@ -19489,7 +19512,6 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToInt64(System.Byte[], Syste System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToUnixTime(System.Byte[], System.Int32, System.TimeZoneInfo/TZVersion) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_UnixTimeToDateTime(System.Int64) System.Private.CoreLib.dll:System.TimeZoneInfo.UtcOffsetOutOfRange(System.TimeSpan) -System.Private.CoreLib.dll:System.TimeZoneInfo.UtcToLocal(System.DateTime, out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo.ValidateTimeZoneInfo(System.String, System.TimeSpan, System.TimeZoneInfo/AdjustmentRule[], out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.TimeZoneInfo/<>c::<>9 @@ -19888,10 +19910,10 @@ System.Private.CoreLib.dll:System.UInt128 System.UInt128::One() System.Private.CoreLib.dll:System.UInt128 System.UInt128::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt128 System.UInt128::Zero() System.Private.CoreLib.dll:System.UInt128..ctor(System.UInt64, System.UInt64) -System.Private.CoreLib.dll:System.UInt128.g__AddDivisor|112_0(System.Span`1, System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.UInt128.g__DivideGuessTooBig|112_1(System.UInt64, System.UInt64, System.UInt32, System.UInt32, System.UInt32) -System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|112_2(System.UInt128, System.UInt128) -System.Private.CoreLib.dll:System.UInt128.g__SubtractDivisor|112_3(System.Span`1, System.ReadOnlySpan`1, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64Bits|83_1(System.UInt128, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64BitsCore|83_2(System.UInt64, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide96BitsBy64Bits|83_3(System.UInt64, System.UInt32, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|83_0(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.UInt128) System.Private.CoreLib.dll:System.UInt128.CreateSaturating`1(TOther) @@ -20366,6 +20388,7 @@ System.Private.CoreLib.dll:System.UInt64.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt64.CompareTo(System.UInt64) System.Private.CoreLib.dll:System.UInt64.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt64.DivRem(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.Equals(System.Object) System.Private.CoreLib.dll:System.UInt64.Equals(System.UInt64) System.Private.CoreLib.dll:System.UInt64.GetHashCode() @@ -21423,7 +21446,6 @@ System.Reflection.Metadata.dll:System.Reflection.Internal.PooledStringBuilder/<> System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions.GetAndValidateSize(System.IO.Stream, System.Int32, System.String) System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions.ReadExactly(System.IO.Stream, System.Byte*, System.Int32) -System.Reflection.Metadata.dll:System.Reflection.Internal.StreamExtensions.TryReadAll(System.IO.Stream, System.Span`1) System.Reflection.Metadata.dll:System.Reflection.Internal.StreamMemoryBlockProvider System.Reflection.Metadata.dll:System.Reflection.Internal.StreamMemoryBlockProvider..ctor(System.IO.Stream, System.Int64, System.Int32, System.Boolean) System.Reflection.Metadata.dll:System.Reflection.Internal.StreamMemoryBlockProvider.CreateMemoryMappedFileBlock(System.Int64, System.Int32) diff --git a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-size.txt b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-size.txt index 6448362c0c9e..936c576a7f51 100644 --- a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-size.txt +++ b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-size.txt @@ -1,29 +1,29 @@ -AppBundleSize: 12,677,326 bytes (12,380.2 KB = 12.1 MB) +AppBundleSize: 12,665,118 bytes (12,368.3 KB = 12.1 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: _CodeSignature/CodeResources: 11,733 bytes (11.5 KB = 0.0 MB) archived-expanded-entitlements.xcent: 384 bytes (0.4 KB = 0.0 MB) Frameworks/libcoreclr.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/libcoreclr.framework/Info.plist: 833 bytes (0.8 KB = 0.0 MB) -Frameworks/libcoreclr.framework/libcoreclr: 5,203,936 bytes (5,082.0 KB = 5.0 MB) +Frameworks/libcoreclr.framework/Info.plist: 841 bytes (0.8 KB = 0.0 MB) +Frameworks/libcoreclr.framework/libcoreclr: 5,187,184 bytes (5,065.6 KB = 4.9 MB) Frameworks/libSystem.Globalization.Native.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/libSystem.Globalization.Native.framework/Info.plist: 875 bytes (0.9 KB = 0.0 MB) +Frameworks/libSystem.Globalization.Native.framework/Info.plist: 883 bytes (0.9 KB = 0.0 MB) Frameworks/libSystem.Globalization.Native.framework/libSystem.Globalization.Native: 109,232 bytes (106.7 KB = 0.1 MB) Frameworks/libSystem.IO.Compression.Native.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/libSystem.IO.Compression.Native.framework/Info.plist: 877 bytes (0.9 KB = 0.0 MB) -Frameworks/libSystem.IO.Compression.Native.framework/libSystem.IO.Compression.Native: 1,431,280 bytes (1,397.7 KB = 1.4 MB) +Frameworks/libSystem.IO.Compression.Native.framework/Info.plist: 885 bytes (0.9 KB = 0.0 MB) +Frameworks/libSystem.IO.Compression.Native.framework/libSystem.IO.Compression.Native: 1,431,408 bytes (1,397.9 KB = 1.4 MB) Frameworks/libSystem.Native.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/libSystem.Native.framework/Info.plist: 847 bytes (0.8 KB = 0.0 MB) -Frameworks/libSystem.Native.framework/libSystem.Native: 162,256 bytes (158.5 KB = 0.2 MB) +Frameworks/libSystem.Native.framework/Info.plist: 855 bytes (0.8 KB = 0.0 MB) +Frameworks/libSystem.Native.framework/libSystem.Native: 162,336 bytes (158.5 KB = 0.2 MB) Frameworks/libSystem.Net.Security.Native.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/libSystem.Net.Security.Native.framework/Info.plist: 873 bytes (0.9 KB = 0.0 MB) +Frameworks/libSystem.Net.Security.Native.framework/Info.plist: 881 bytes (0.9 KB = 0.0 MB) Frameworks/libSystem.Net.Security.Native.framework/libSystem.Net.Security.Native: 88,000 bytes (85.9 KB = 0.1 MB) Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/Info.plist: 903 bytes (0.9 KB = 0.0 MB) -Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/libSystem.Security.Cryptography.Native.Apple: 194,256 bytes (189.7 KB = 0.2 MB) +Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/Info.plist: 911 bytes (0.9 KB = 0.0 MB) +Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/libSystem.Security.Cryptography.Native.Apple: 214,336 bytes (209.3 KB = 0.2 MB) Frameworks/SizeTestApp.r2r.framework/_CodeSignature/CodeResources: 1,798 bytes (1.8 KB = 0.0 MB) -Frameworks/SizeTestApp.r2r.framework/Info.plist: 845 bytes (0.8 KB = 0.0 MB) -Frameworks/SizeTestApp.r2r.framework/SizeTestApp.r2r: 3,404,912 bytes (3,325.1 KB = 3.2 MB) -Info.plist: 1,161 bytes (1.1 KB = 0.0 MB) +Frameworks/SizeTestApp.r2r.framework/Info.plist: 853 bytes (0.8 KB = 0.0 MB) +Frameworks/SizeTestApp.r2r.framework/SizeTestApp.r2r: 3,404,976 bytes (3,325.2 KB = 3.2 MB) +Info.plist: 1,169 bytes (1.1 KB = 0.0 MB) Microsoft.iOS.dll: 98,816 bytes (96.5 KB = 0.1 MB) PkgInfo: 8 bytes (0.0 KB = 0.0 MB) runtimeconfig.bin: 1,481 bytes (1.4 KB = 0.0 MB) @@ -33,7 +33,7 @@ System.Collections.Immutable.dll: 13,824 bytes (13.5 KB = 0.0 MB) System.Diagnostics.StackTrace.dll: 7,680 bytes (7.5 KB = 0.0 MB) System.IO.Compression.dll: 22,016 bytes (21.5 KB = 0.0 MB) System.IO.MemoryMappedFiles.dll: 21,504 bytes (21.0 KB = 0.0 MB) -System.Private.CoreLib.dll: 1,586,688 bytes (1,549.5 KB = 1.5 MB) -System.Reflection.Metadata.dll: 83,968 bytes (82.0 KB = 0.1 MB) +System.Private.CoreLib.dll: 1,575,424 bytes (1,538.5 KB = 1.5 MB) +System.Reflection.Metadata.dll: 83,456 bytes (81.5 KB = 0.1 MB) System.Runtime.dll: 4,096 bytes (4.0 KB = 0.0 MB) -System.Runtime.InteropServices.dll: 7,680 bytes (7.5 KB = 0.0 MB) +System.Runtime.InteropServices.dll: 3,584 bytes (3.5 KB = 0.0 MB) diff --git a/tests/dotnet/UnitTests/expected/iOS-MonoVM-interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/iOS-MonoVM-interpreter-preservedapis.txt index be41c525fbb5..f43b9c42416e 100644 --- a/tests/dotnet/UnitTests/expected/iOS-MonoVM-interpreter-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/iOS-MonoVM-interpreter-preservedapis.txt @@ -2819,7 +2819,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/ContainsAnyRes System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default.PackSources(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1 @@ -2828,7 +2828,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResu System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IOptimizations @@ -2839,7 +2839,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper` System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Ssse3AndWasmHandleZeroInNeedle @@ -4042,6 +4042,7 @@ System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.AllowNullAttribute..c System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Max(System.Object) +System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Min(System.Object) System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes @@ -6632,6 +6633,7 @@ System.Private.CoreLib.dll:System.Int32.Equals(System.Object) System.Private.CoreLib.dll:System.Int32.GetHashCode() System.Private.CoreLib.dll:System.Int32.GetTypeCode() System.Private.CoreLib.dll:System.Int32.IsNegative(System.Int32) +System.Private.CoreLib.dll:System.Int32.Log2(System.Int32) System.Private.CoreLib.dll:System.Int32.Max(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Min(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.IBinaryIntegerParseAndFormatInfo.get_IsSigned() @@ -7371,7 +7373,7 @@ System.Private.CoreLib.dll:System.MemberAccessException System.Private.CoreLib.dll:System.MemberAccessException..ctor() System.Private.CoreLib.dll:System.MemberAccessException..ctor(System.String) System.Private.CoreLib.dll:System.MemoryExtensions -System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|273_0(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|278_0(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String) @@ -7835,7 +7837,9 @@ System.Private.CoreLib.dll:System.Object System.Collections.Hashtable/Bucket::ke System.Private.CoreLib.dll:System.Object System.Collections.Hashtable/Bucket::val System.Private.CoreLib.dll:System.Object System.Delegate::_target System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Max() +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Min() System.Private.CoreLib.dll:System.Object System.Exception::_traceIPs System.Private.CoreLib.dll:System.Object System.Exception::_unused6 System.Private.CoreLib.dll:System.Object System.GC::EPHEMERON_TOMBSTONE @@ -11163,6 +11167,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.ExtractNarrowin System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.get_IsSupported() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.LoadVector128(System.Byte*) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.PopCount(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.Store(System.Byte*, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.StoreSelectedScalar(System.UInt32*, System.Runtime.Intrinsics.Vector64`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd/Arm64 @@ -11230,6 +11235,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions.Store`2(TVector, T*) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AddSaturate`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AndNot`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.As`2(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AsByte`1(System.Runtime.Intrinsics.Vector128`1) @@ -11276,6 +11283,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GetElementUnsafe` System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThan`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanAny`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfFirstMatch`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNaN`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNegative`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.LastIndexOf`1(System.Runtime.Intrinsics.Vector128`1, T) @@ -11371,11 +11380,11 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Equals`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.EqualsAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector256`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetLower`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GreaterThanAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNaN`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNegative`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.LastIndexOf`1(System.Runtime.Intrinsics.Vector256`1, T) @@ -11448,10 +11457,10 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Equals`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.EqualsAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector512`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GreaterThanAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNaN`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNegative`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.LastIndexOf`1(System.Runtime.Intrinsics.Vector512`1, T) @@ -11508,12 +11517,15 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.ToString(System System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1 System.Runtime.Intrinsics.Vector512`1::Zero() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AddSaturate`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AndNot`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.As`2(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsByte`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt32`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt32`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.ConditionalSelect`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Int16, System.Int16, System.Int16, System.Int16) @@ -11531,6 +11543,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GetElementUnsafe`1 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThan`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanAny`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNaN`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNegative`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.LastIndexOf`1(System.Runtime.Intrinsics.Vector64`1, T) @@ -13535,6 +13548,7 @@ System.Private.CoreLib.dll:System.ThrowHelper.ThrowOverflowException_TimeSpanToo System.Private.CoreLib.dll:System.ThrowHelper.ThrowOverflowException() System.Private.CoreLib.dll:System.ThrowHelper.ThrowStartIndexArgumentOutOfRange_ArgumentOutOfRange_IndexMustBeLessOrEqual() System.Private.CoreLib.dll:System.ThrowHelper.ThrowUnreachableException() +System.Private.CoreLib.dll:System.ThrowHelper.ThrowValueArgumentOutOfRange_NeedNonNegNumException() System.Private.CoreLib.dll:System.TimeSpan System.Private.CoreLib.dll:System.TimeSpan System.DateTime::TimeOfDay() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeOffset::Offset() @@ -13679,7 +13693,7 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetLocalTzFile(out System.Byte System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetTransitionsForYear(System.Int32, out System.ValueTuple`2&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetUtcOffset(System.DateTime, out System.TimeSpan&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryLoadTzFile(System.String, System.Byte[]&, System.String&) -System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.DateTime&) +System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.Int64&) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CalculateTransitionOffsetFromBase(System.TimeSpan, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateAdjustmentRuleForPosixFormat(System.String, System.DateTime, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateTransitionTimeFromPosixRule(System.ReadOnlySpan`1, System.ReadOnlySpan`1) @@ -13703,7 +13717,6 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToInt64(System.Byte[], Syste System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToUnixTime(System.Byte[], System.Int32, System.TimeZoneInfo/TZVersion) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_UnixTimeToDateTime(System.Int64) System.Private.CoreLib.dll:System.TimeZoneInfo.UtcOffsetOutOfRange(System.TimeSpan) -System.Private.CoreLib.dll:System.TimeZoneInfo.UtcToLocal(System.DateTime, out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo.ValidateTimeZoneInfo(System.String, System.TimeSpan, System.TimeZoneInfo/AdjustmentRule[], out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.TimeZoneInfo/<>c::<>9 @@ -14097,10 +14110,10 @@ System.Private.CoreLib.dll:System.UInt128 System.UInt128::One() System.Private.CoreLib.dll:System.UInt128 System.UInt128::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt128 System.UInt128::Zero() System.Private.CoreLib.dll:System.UInt128..ctor(System.UInt64, System.UInt64) -System.Private.CoreLib.dll:System.UInt128.g__AddDivisor|112_0(System.Span`1, System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.UInt128.g__DivideGuessTooBig|112_1(System.UInt64, System.UInt64, System.UInt32, System.UInt32, System.UInt32) -System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|112_2(System.UInt128, System.UInt128) -System.Private.CoreLib.dll:System.UInt128.g__SubtractDivisor|112_3(System.Span`1, System.ReadOnlySpan`1, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64Bits|83_1(System.UInt128, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64BitsCore|83_2(System.UInt64, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide96BitsBy64Bits|83_3(System.UInt64, System.UInt32, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|83_0(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.UInt128) System.Private.CoreLib.dll:System.UInt128.CreateTruncating`1(TOther) @@ -14447,6 +14460,7 @@ System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.INumberB System.Private.CoreLib.dll:System.UInt64.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt64.CompareTo(System.UInt64) System.Private.CoreLib.dll:System.UInt64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt64.DivRem(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.Equals(System.Object) System.Private.CoreLib.dll:System.UInt64.Equals(System.UInt64) System.Private.CoreLib.dll:System.UInt64.GetHashCode() diff --git a/tests/dotnet/UnitTests/expected/iOS-MonoVM-interpreter-size.txt b/tests/dotnet/UnitTests/expected/iOS-MonoVM-interpreter-size.txt index 2ff4293035dc..cefa3f9161c5 100644 --- a/tests/dotnet/UnitTests/expected/iOS-MonoVM-interpreter-size.txt +++ b/tests/dotnet/UnitTests/expected/iOS-MonoVM-interpreter-size.txt @@ -1,14 +1,14 @@ -AppBundleSize: 3,624,275 bytes (3,539.3 KB = 3.5 MB) +AppBundleSize: 3,621,211 bytes (3,536.3 KB = 3.5 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: _CodeSignature/CodeResources: 3,997 bytes (3.9 KB = 0.0 MB) archived-expanded-entitlements.xcent: 384 bytes (0.4 KB = 0.0 MB) -Info.plist: 1,161 bytes (1.1 KB = 0.0 MB) +Info.plist: 1,169 bytes (1.1 KB = 0.0 MB) Microsoft.iOS.dll: 154,624 bytes (151.0 KB = 0.1 MB) PkgInfo: 8 bytes (0.0 KB = 0.0 MB) runtimeconfig.bin: 1,405 bytes (1.4 KB = 0.0 MB) SizeTestApp: 2,391,104 bytes (2,335.1 KB = 2.3 MB) SizeTestApp.dll: 7,680 bytes (7.5 KB = 0.0 MB) System.Private.CoreLib.aotdata.arm64: 41,448 bytes (40.5 KB = 0.0 MB) -System.Private.CoreLib.dll: 1,009,152 bytes (985.5 KB = 1.0 MB) +System.Private.CoreLib.dll: 1,009,664 bytes (986.0 KB = 1.0 MB) System.Runtime.dll: 5,120 bytes (5.0 KB = 0.0 MB) -System.Runtime.InteropServices.dll: 8,192 bytes (8.0 KB = 0.0 MB) +System.Runtime.InteropServices.dll: 4,608 bytes (4.5 KB = 0.0 MB) diff --git a/tests/dotnet/UnitTests/expected/iOS-MonoVM-preservedapis.txt b/tests/dotnet/UnitTests/expected/iOS-MonoVM-preservedapis.txt index def307947551..cafb963c0177 100644 --- a/tests/dotnet/UnitTests/expected/iOS-MonoVM-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/iOS-MonoVM-preservedapis.txt @@ -2050,7 +2050,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/ContainsAnyRes System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Default.PackSources(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/DontNegate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1 @@ -2059,7 +2059,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResu System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IndexOfAnyResultMapper`1.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/INegator.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IOptimizations @@ -2070,7 +2070,7 @@ System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper` System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.get_NotFound() System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/IResultMapper`2.ScalarResult(T&, T&) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate -System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.ExtractMask(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.IndexOfFirstMatch(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Boolean) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Negate.NegateIfNeeded(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Buffers.IndexOfAnyAsciiSearcher/Ssse3AndWasmHandleZeroInNeedle @@ -3208,6 +3208,7 @@ System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.AllowNullAttribute..c System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Max(System.Object) +System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute.set_Min(System.Object) System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DisallowNullAttribute..ctor() System.Private.CoreLib.dll:System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes @@ -5722,6 +5723,7 @@ System.Private.CoreLib.dll:System.Int32.Equals(System.Object) System.Private.CoreLib.dll:System.Int32.GetHashCode() System.Private.CoreLib.dll:System.Int32.GetTypeCode() System.Private.CoreLib.dll:System.Int32.IsNegative(System.Int32) +System.Private.CoreLib.dll:System.Int32.Log2(System.Int32) System.Private.CoreLib.dll:System.Int32.Max(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Min(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.IBinaryIntegerParseAndFormatInfo.get_IsSigned() @@ -6448,7 +6450,7 @@ System.Private.CoreLib.dll:System.MemberAccessException System.Private.CoreLib.dll:System.MemberAccessException..ctor() System.Private.CoreLib.dll:System.MemberAccessException..ctor(System.String) System.Private.CoreLib.dll:System.MemoryExtensions -System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|273_0(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.MemoryExtensions.g__TrimFallback|278_0(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String, System.Int32) System.Private.CoreLib.dll:System.MemoryExtensions.AsSpan(System.String) @@ -6910,7 +6912,9 @@ System.Private.CoreLib.dll:System.Object modreq(System.Runtime.CompilerServices. System.Private.CoreLib.dll:System.Object System.ArgumentOutOfRangeException::_actualValue System.Private.CoreLib.dll:System.Object System.Delegate::_target System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::k__BackingField System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Max() +System.Private.CoreLib.dll:System.Object System.Diagnostics.CodeAnalysis.ConstantExpectedAttribute::Min() System.Private.CoreLib.dll:System.Object System.Exception::_traceIPs System.Private.CoreLib.dll:System.Object System.Exception::_unused6 System.Private.CoreLib.dll:System.Object System.GC::EPHEMERON_TOMBSTONE @@ -8871,6 +8875,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.ExtractNarrowin System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.get_IsSupported() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.LoadVector128(System.Byte*) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.PopCount(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.ShiftRightLogicalNarrowingLower(System.Runtime.Intrinsics.Vector128`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.Store(System.Byte*, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd.StoreSelectedScalar(System.UInt32*, System.Runtime.Intrinsics.Vector64`1, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Arm.AdvSimd/Arm64 @@ -8938,6 +8943,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions System.Private.CoreLib.dll:System.Runtime.Intrinsics.SimdVectorExtensions.Store`2(TVector, T*) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AddSaturate`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AndNot`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.As`2(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.AsByte`1(System.Runtime.Intrinsics.Vector128`1) @@ -8984,6 +8991,8 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GetElementUnsafe` System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThan`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanAny`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfFirstMatch`1(System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNaN`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.IsNegative`1(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128.LastIndexOf`1(System.Runtime.Intrinsics.Vector128`1, T) @@ -9079,11 +9088,11 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.Equals`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.EqualsAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector256`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GetLower`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.GreaterThanAny`1(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNaN`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.IsNegative`1(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256.LastIndexOf`1(System.Runtime.Intrinsics.Vector256`1, T) @@ -9156,10 +9165,10 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(System.R System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Create`1(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.Equals`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.EqualsAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) -System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.ExtractMostSignificantBits`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.get_NegativeZero`1() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GetElementUnsafe`1(System.Runtime.Intrinsics.Vector512`1&, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.GreaterThanAny`1(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNaN`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.IsNegative`1(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512.LastIndexOf`1(System.Runtime.Intrinsics.Vector512`1, T) @@ -9216,12 +9225,15 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.ToString(System System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1 System.Runtime.Intrinsics.Vector512`1::Zero() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AddSaturate`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdExtractBitMask`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AdvSimdFixupBitCount`1(System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AndNot`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.As`2(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsByte`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt32`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt32`1(System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.AsUInt64`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.ConditionalSelect`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte, System.Byte) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.Create(System.Int16, System.Int16, System.Int16, System.Int16) @@ -9239,6 +9251,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GetElementUnsafe`1 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThan`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanAny`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.GreaterThanOrEqual`1(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IndexOfLastMatch`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNaN`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.IsNegative`1(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64.LastIndexOf`1(System.Runtime.Intrinsics.Vector64`1, T) @@ -11126,6 +11139,7 @@ System.Private.CoreLib.dll:System.ThrowHelper.ThrowOverflowException_NegateTwosC System.Private.CoreLib.dll:System.ThrowHelper.ThrowOverflowException_TimeSpanTooLong() System.Private.CoreLib.dll:System.ThrowHelper.ThrowOverflowException() System.Private.CoreLib.dll:System.ThrowHelper.ThrowUnreachableException() +System.Private.CoreLib.dll:System.ThrowHelper.ThrowValueArgumentOutOfRange_NeedNonNegNumException() System.Private.CoreLib.dll:System.TimeSpan System.Private.CoreLib.dll:System.TimeSpan System.DateTime::TimeOfDay() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeOffset::Offset() @@ -11270,7 +11284,7 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetLocalTzFile(out System.Byte System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetTransitionsForYear(System.Int32, out System.ValueTuple`2&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryGetUtcOffset(System.DateTime, out System.TimeSpan&) System.Private.CoreLib.dll:System.TimeZoneInfo.TryLoadTzFile(System.String, System.Byte[]&, System.String&) -System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.DateTime&) +System.Private.CoreLib.dll:System.TimeZoneInfo.TryLocalToUtc(System.DateTime, out System.Int64&) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CalculateTransitionOffsetFromBase(System.TimeSpan, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateAdjustmentRuleForPosixFormat(System.String, System.DateTime, System.TimeSpan) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_CreateTransitionTimeFromPosixRule(System.ReadOnlySpan`1, System.ReadOnlySpan`1) @@ -11294,7 +11308,6 @@ System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToInt64(System.Byte[], Syste System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_ToUnixTime(System.Byte[], System.Int32, System.TimeZoneInfo/TZVersion) System.Private.CoreLib.dll:System.TimeZoneInfo.TZif_UnixTimeToDateTime(System.Int64) System.Private.CoreLib.dll:System.TimeZoneInfo.UtcOffsetOutOfRange(System.TimeSpan) -System.Private.CoreLib.dll:System.TimeZoneInfo.UtcToLocal(System.DateTime, out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo.ValidateTimeZoneInfo(System.String, System.TimeSpan, System.TimeZoneInfo/AdjustmentRule[], out System.Boolean&) System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.Private.CoreLib.dll:System.TimeZoneInfo/<>c System.TimeZoneInfo/<>c::<>9 @@ -11599,10 +11612,10 @@ System.Private.CoreLib.dll:System.UInt128 System.UInt128::One() System.Private.CoreLib.dll:System.UInt128 System.UInt128::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt128 System.UInt128::Zero() System.Private.CoreLib.dll:System.UInt128..ctor(System.UInt64, System.UInt64) -System.Private.CoreLib.dll:System.UInt128.g__AddDivisor|112_0(System.Span`1, System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.UInt128.g__DivideGuessTooBig|112_1(System.UInt64, System.UInt64, System.UInt32, System.UInt32, System.UInt32) -System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|112_2(System.UInt128, System.UInt128) -System.Private.CoreLib.dll:System.UInt128.g__SubtractDivisor|112_3(System.Span`1, System.ReadOnlySpan`1, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64Bits|83_1(System.UInt128, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide128BitsBy64BitsCore|83_2(System.UInt64, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__Divide96BitsBy64Bits|83_3(System.UInt64, System.UInt32, System.UInt64) +System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|83_0(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.UInt128) System.Private.CoreLib.dll:System.UInt128.CreateTruncating`1(TOther) @@ -11948,6 +11961,7 @@ System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.INumberB System.Private.CoreLib.dll:System.UInt64.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt64.CompareTo(System.UInt64) System.Private.CoreLib.dll:System.UInt64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt64.DivRem(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.Equals(System.Object) System.Private.CoreLib.dll:System.UInt64.Equals(System.UInt64) System.Private.CoreLib.dll:System.UInt64.GetHashCode() diff --git a/tests/dotnet/UnitTests/expected/iOS-MonoVM-size.txt b/tests/dotnet/UnitTests/expected/iOS-MonoVM-size.txt index c5658e78ce94..1c993fa563cd 100644 --- a/tests/dotnet/UnitTests/expected/iOS-MonoVM-size.txt +++ b/tests/dotnet/UnitTests/expected/iOS-MonoVM-size.txt @@ -1,19 +1,19 @@ -AppBundleSize: 9,460,663 bytes (9,238.9 KB = 9.0 MB) +AppBundleSize: 9,520,327 bytes (9,297.2 KB = 9.1 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: _CodeSignature/CodeResources: 5,229 bytes (5.1 KB = 0.0 MB) -aot-instances.aotdata.arm64: 818,536 bytes (799.4 KB = 0.8 MB) +aot-instances.aotdata.arm64: 829,256 bytes (809.8 KB = 0.8 MB) archived-expanded-entitlements.xcent: 384 bytes (0.4 KB = 0.0 MB) -Info.plist: 1,161 bytes (1.1 KB = 0.0 MB) +Info.plist: 1,169 bytes (1.1 KB = 0.0 MB) Microsoft.iOS.aotdata.arm64: 22,944 bytes (22.4 KB = 0.0 MB) Microsoft.iOS.dll: 49,152 bytes (48.0 KB = 0.0 MB) PkgInfo: 8 bytes (0.0 KB = 0.0 MB) runtimeconfig.bin: 1,481 bytes (1.4 KB = 0.0 MB) -SizeTestApp: 7,334,032 bytes (7,162.1 KB = 7.0 MB) +SizeTestApp: 7,383,488 bytes (7,210.4 KB = 7.0 MB) SizeTestApp.aotdata.arm64: 1,464 bytes (1.4 KB = 0.0 MB) SizeTestApp.dll: 7,168 bytes (7.0 KB = 0.0 MB) -System.Private.CoreLib.aotdata.arm64: 665,584 bytes (650.0 KB = 0.6 MB) -System.Private.CoreLib.dll: 538,624 bytes (526.0 KB = 0.5 MB) +System.Private.CoreLib.aotdata.arm64: 668,136 bytes (652.5 KB = 0.6 MB) +System.Private.CoreLib.dll: 539,136 bytes (526.5 KB = 0.5 MB) System.Runtime.aotdata.arm64: 784 bytes (0.8 KB = 0.0 MB) System.Runtime.dll: 5,120 bytes (5.0 KB = 0.0 MB) System.Runtime.InteropServices.aotdata.arm64: 800 bytes (0.8 KB = 0.0 MB) -System.Runtime.InteropServices.dll: 8,192 bytes (8.0 KB = 0.0 MB) +System.Runtime.InteropServices.dll: 4,608 bytes (4.5 KB = 0.0 MB) diff --git a/tests/dotnet/UnitTests/expected/iOS-NativeAOT-size.txt b/tests/dotnet/UnitTests/expected/iOS-NativeAOT-size.txt index d655efa679ab..9f098fb29903 100644 --- a/tests/dotnet/UnitTests/expected/iOS-NativeAOT-size.txt +++ b/tests/dotnet/UnitTests/expected/iOS-NativeAOT-size.txt @@ -1,8 +1,8 @@ -AppBundleSize: 2,849,822 bytes (2,783.0 KB = 2.7 MB) +AppBundleSize: 2,832,902 bytes (2,766.5 KB = 2.7 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: _CodeSignature/CodeResources: 2,589 bytes (2.5 KB = 0.0 MB) archived-expanded-entitlements.xcent: 384 bytes (0.4 KB = 0.0 MB) -Info.plist: 1,161 bytes (1.1 KB = 0.0 MB) +Info.plist: 1,169 bytes (1.1 KB = 0.0 MB) PkgInfo: 8 bytes (0.0 KB = 0.0 MB) runtimeconfig.bin: 1,808 bytes (1.8 KB = 0.0 MB) -SizeTestApp: 2,843,872 bytes (2,777.2 KB = 2.7 MB) +SizeTestApp: 2,826,944 bytes (2,760.7 KB = 2.7 MB)