Pavel Savara [Thu, 15 Dec 2022 15:52:03 +0000 (16:52 +0100)]
[wasm] fix aotProfiler init (#79651)
Zoltan Varga [Thu, 15 Dec 2022 15:43:29 +0000 (10:43 -0500)]
[mono] Initial support for unloadable ALCs (#77399)
* [mono] Add LoaderAllocator type, whose instances are used to
detect whenever a collectible ALC has managed references.
* [mono] Add an implicit GC reference between objects allocated from a collectible ALC and its LoaderAllocator object.
* [mono] Add a new hash table which is similar to MonoGHashTable, but it doesn't keep the key/value objects alive by itself.
* [mono] Add a keepalive field to some reflection objects to keep the alc alive if user code
holds a reference to them. Change the reflection hashes in MonoMemoryManager to weak hashes
so the hashes themselves don't keep the alc alive.
* Fix reflection hashes.
* [mono] Optimize the case when mono_method_get_signature_checked () is called with a non-zero context and a non-generic signature.
* Free memory manager caches.
* [mono] Store static variables with GC references in collectible alcs
on the GC heap.
Normally, static variables are stored in an array inside MonoVTable
which is registered as a GC root. For collectible alcs, this would
not work, since GC references in these arrays would keep the alc alive.
Instead, store them in arrays referenced by the LoaderAllocator object.
This assumes the static variables will no longer be accessed after
the LoaderAllocator object dies.
* Add basic unload functionality.
* Fix weak hashes.
* Free MonoJitInfos belonging to unloaded memory managers.
* Avoid returning collectible types from mono_metadata_get_shared_type ().
* Add docs.
* Fix the build.
* Fix the build.
* Disable unloading for now.
Michal Strehovský [Thu, 15 Dec 2022 15:37:00 +0000 (00:37 +0900)]
Delete MetadataType from the runtime type system (#79693)
Casts to `MetadataType` will never succeed in the runtime type system. We had some.
* Making it so that `InstantiatedType` and `CanonType` derive from `DefType` instead of `MetadataType` in the runtime type system.
* Moved some things into dotfiles.
Jan Vorlicek [Thu, 15 Dec 2022 14:06:03 +0000 (15:06 +0100)]
Fix WXORX issue in EEClass::Destruct (#79696)
While investigating failures of some coreclr tests when running in an
unloadable context, I've hit AV in EEClass::Destruct in one of the
tests. The reason is that we are missing ExecutableWriterHolder when
updating refCount on pDelegateEEClass->m_pInstRetBuffCallStub.
This change fixes it.
Adeel Mujahid [Thu, 15 Dec 2022 10:17:53 +0000 (12:17 +0200)]
Fix perf. regression caused by signed/unsigned comp (#79137)
Pavel Savara [Thu, 15 Dec 2022 09:02:55 +0000 (10:02 +0100)]
[wasm] WasmDebugLevel in samples (#79644)
* do not enable debugging is samples in release mode because it disables interp optimizations
* feedback from @thaystg and @radical
Michal Strehovský [Thu, 15 Dec 2022 05:36:17 +0000 (14:36 +0900)]
Do not generate cctor info on generic definition `MethodTable` (#79689)
This is already wrong, irrespective of #79384.
SingleAccretion [Thu, 15 Dec 2022 01:59:35 +0000 (04:59 +0300)]
Improve "one asg morphing" and move it to `morphblock.cpp` (#79037)
* Enhance OneAsg morphing
To also consider RHS types, in case the RHS wasn't suitable.
TODO: move the whole thing to the general block morphing.
* Move OneAsg morphing to morphblock.cpp
* Disable in minopts except for small types
The main point of the transformation is to keep things DNERless.
Exclude small types because for them the transformation is required
in case of "full" stores into normalize-on-store locals.
SingleAccretion [Thu, 15 Dec 2022 01:57:28 +0000 (04:57 +0300)]
Stop producing and handling `ADDR` nodes (#78246)
* Start importing local address nodes
* Stop producing GT_ADDR nodes
* Use LCL_FLDs in MD array import
* Delete some ADDR uses
* Fix formatting
* Work around MSVC not being smart
Sigh.
Ankit Jain [Thu, 15 Dec 2022 01:50:52 +0000 (20:50 -0500)]
[wasm] dotnet-runtime-perf: Fix V8 version to 11.0.162 (#79682)
* [wasm] dotnet-runtime-perf: Fix V8 version to 11.0.162
Context: investigating https://github.com/dotnet/perf-autofiling-issues/issues/10711
The `baseline` was run with V8 `11.0.162`, whereas the the `compare` was
run with `11.0.216`. Fixing the version to the baseline one to check if
V8 might the cause here.
Tanner Gooding [Thu, 15 Dec 2022 01:46:31 +0000 (17:46 -0800)]
Remove some dead code from the legacy SIMD support (#79680)
* Remove dead code from impSIMDRelOp
* Remove SIMDIntrinsicSub as it is dead
* Remove SIMDIntrinsicInit as it is dead
* Remove SIMDIntrinsicBitwiseOr as it is dead
* Remove SIMDIntrinsicEqual as it is dead
* Remove SIMDIntrinsicBitwiseAnd as it is dead
* Remove SIMDIntrinsicCast as it is dead
* Remove SIMDIntrinsicHWAccel as it is dead
* Removing SIMDIntrinsicShuffleSSE2 as it is dead
* Applying formatting patch
Kunal Pathak [Thu, 15 Dec 2022 01:21:30 +0000 (17:21 -0800)]
disable loop alignment during asmdiffs (#79629)
Stephen Toub [Thu, 15 Dec 2022 01:02:42 +0000 (20:02 -0500)]
ifdef out unsupported Enum underlying types for nativeaot (#79472)
* ifdef out unsupported Enum underlying types for nativeaot
* Use dedicated ifdef
Co-authored-by: Jan Kotas <jkotas@microsoft.com>
Radek Doulik [Wed, 14 Dec 2022 23:14:18 +0000 (00:14 +0100)]
[wasm] Add the illink substitutions for SIMD (#79672)
This should fix size regression introduce with https://github.com/dotnet/runtime/pull/78068
The untrimmed S.N.Vector class added few kilobytes to the assemblies
of the bench sample. That wasn't that bad, OTOH the code produced
by the aot compiler was much larger, 5MB in this case.
So this will case default non-SIMD case. In the case of SIMD build we
will need more investigation.
Jakob Botsch Nielsen [Wed, 14 Dec 2022 21:00:56 +0000 (22:00 +0100)]
JIT: Properly mark compilation as having throw helpers in debug codegen (#79504)
Otherwise we may fail to allocate the outgoing arg area and align the
stack properly.
Fix #78092
Lachlan Ennis [Wed, 14 Dec 2022 20:02:51 +0000 (06:02 +1000)]
Fix `IDesignerSerializationManager` nullability (#79429)
* Add nullable annotation based off documentation
Viktor Hofer [Wed, 14 Dec 2022 20:01:15 +0000 (21:01 +0100)]
Revert "Fix up NativeAOT testing" & don't build clr.runtime for libraries AOT tests (#79637)
* Revert "Fix up NativeAOT testing (#79523)"
This reverts commit
b2bebcbbd0234d7924867a40e8621f4fab82082d.
* Don't build clr.runtime for libraries AOT tests
866f3eb479a67b9c8d084bb972c4dd904db56bfd made it again possible to build
the host.native subset without the clr.runtime. Previously there was a
dependency on the singlefilehost which was removed when it isn't
required.
Tanner Gooding [Wed, 14 Dec 2022 19:23:41 +0000 (11:23 -0800)]
This fixes emitGetVexPrefixSize to support detecting 2-byte prefix support (#79478)
* Remove the dead emitOutputRexOrVexPrefixIfNeeded and rename emitOutputSimdPrefixIfNeeded to emitOutputRexOrSimdPrefixIfNeeded
* Remove the dead emitGetAdjustedSize and rename emitGetAdjustedSizeEvexAware to emitGetAdjustedSize
* Simplify the emitGetEvexPrefixSize and emitGetVexPrefixSize methods
* Create helper emitExtractVexPrefix and emitExtractEvexPrefix functions
* Update emitGetVexPrefixSize and emitGetEvexPrefixSize to take an instrDesc
* Update emitGetPrefixSize to take the instrDesc so the VEX prefix size can be computed correctly
* Update emitGetVexPrefixSize to support returning 2 or 3
* Ensure IF_RWR_CNS is handled in emitGetVexPrefixSize
* Don't try to estimate the 2-byte VEX prefix when optimizations are disabled
* Ensure we don't negatively impact estimated alignment sizes for debug code
* Just check MinOpts not OptimizationsDisabled
* Mark some of the modified methods as const to indicate they don't mutate the emitter
* Resolve the throughput issue by not getting optSize untill necessary
* Switch back to doing accurate vex prefix size estimation always
* Small cleanup to reduce regression
Viktor Hofer [Wed, 14 Dec 2022 18:30:45 +0000 (19:30 +0100)]
Fix libraries outerloop pipelines (#79652)
* Fix libraries outerloop pipelines
Fixes https://github.com/dotnet/runtime/issues/76755
dotnet-maestro[bot] [Wed, 14 Dec 2022 18:17:21 +0000 (19:17 +0100)]
[main] Update dependencies from dotnet/runtime dotnet/llvm-project dotnet/icu dotnet/xharness dotnet/emsdk dotnet/hotreload-utils dotnet/roslyn (#78557)
* Update dependencies from https://github.com/dotnet/xharness build
20221116.2
Microsoft.DotNet.XHarness.CLI , Microsoft.DotNet.XHarness.TestRunners.Common , Microsoft.DotNet.XHarness.TestRunners.Xunit
From Version 1.0.0-prerelease.22566.1 -> To Version 1.0.0-prerelease.22566.2
* Update dependencies from https://github.com/dotnet/hotreload-utils build
20221116.1
Microsoft.DotNet.HotReload.Utils.Generator.BuildTool
From Version 1.1.0-alpha.0.22510.2 -> To Version 1.1.0-alpha.0.22566.1
* Update dependencies from https://github.com/dotnet/llvm-project build
20221118.1
runtime.linux-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.linux-musl-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-musl-x64.Microsoft.NETCore.Runtime.ObjWriter , runtime.linux-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-x64.Microsoft.NETCore.Runtime.ObjWriter , runtime.osx.11.0-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.osx.11.0-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.osx.10.12-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.osx.10.12-x64.Microsoft.NETCore.Runtime.ObjWriter , runtime.win-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.win-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.win-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.win-x64.Microsoft.NETCore.Runtime.ObjWriter
From Version 1.0.0-alpha.1.22566.1 -> To Version 1.0.0-alpha.1.22568.1
* Update dependencies from https://github.com/dotnet/roslyn build
20221118.11
Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset
From Version 4.5.0-1.22564.5 -> To Version 4.5.0-1.22568.11
* Update dependencies from https://github.com/dotnet/xharness build
20221119.1
Microsoft.DotNet.XHarness.CLI , Microsoft.DotNet.XHarness.TestRunners.Common , Microsoft.DotNet.XHarness.TestRunners.Xunit
From Version 1.0.0-prerelease.22566.1 -> To Version 1.0.0-prerelease.22569.1
* Update dependencies from https://github.com/dotnet/runtime build
20221120.4
Microsoft.NET.Sdk.IL , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.ILAsm , runtime.native.System.IO.Ports , System.Text.Json
From Version 8.0.0-alpha.1.22559.2 -> To Version 8.0.0-alpha.1.22570.4
* Update dependencies from https://github.com/dotnet/roslyn build
20221121.11
Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset
From Version 4.5.0-1.22564.5 -> To Version 4.5.0-1.22571.11
* Update dependencies from https://github.com/dotnet/hotreload-utils build
20221122.2
Microsoft.DotNet.HotReload.Utils.Generator.BuildTool
From Version 1.1.0-alpha.0.22510.2 -> To Version 1.1.0-alpha.0.22572.2
* Update dependencies from https://github.com/dotnet/runtime build
20221128.1
Microsoft.NET.Sdk.IL , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.ILAsm , runtime.native.System.IO.Ports , System.Text.Json
From Version 8.0.0-alpha.1.22559.2 -> To Version 8.0.0-alpha.1.22578.1
* Update dependencies from https://github.com/dotnet/llvm-project build
20221128.1
runtime.linux-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.linux-musl-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-musl-x64.Microsoft.NETCore.Runtime.ObjWriter , runtime.linux-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-x64.Microsoft.NETCore.Runtime.ObjWriter , runtime.osx.11.0-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.osx.11.0-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.osx.10.12-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.osx.10.12-x64.Microsoft.NETCore.Runtime.ObjWriter , runtime.win-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.win-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.win-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.win-x64.Microsoft.NETCore.Runtime.ObjWriter
From Version 1.0.0-alpha.1.22566.1 -> To Version 1.0.0-alpha.1.22578.1
* Update dependencies from https://github.com/dotnet/llvm-project build
20221128.3
runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.osx-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.osx-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.win-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.win-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools
From Version 14.0.0-alpha.1.22561.1 -> To Version 14.0.0-alpha.1.22578.3
* Update dependencies from https://github.com/dotnet/icu build
20221128.1
Microsoft.NETCore.Runtime.ICU.Transport
From Version 8.0.0-alpha.1.22557.1 -> To Version 8.0.0-alpha.1.22578.1
* Update dependencies from https://github.com/dotnet/xharness build
20221128.1
Microsoft.DotNet.XHarness.CLI , Microsoft.DotNet.XHarness.TestRunners.Common , Microsoft.DotNet.XHarness.TestRunners.Xunit
From Version 1.0.0-prerelease.22566.1 -> To Version 1.0.0-prerelease.22578.1
* Update dependencies from https://github.com/dotnet/hotreload-utils build
20221128.1
Microsoft.DotNet.HotReload.Utils.Generator.BuildTool
From Version 1.1.0-alpha.0.22510.2 -> To Version 1.1.0-alpha.0.22578.1
* Update dependencies from https://github.com/dotnet/emsdk build
20221128.1
Microsoft.NET.Workload.Emscripten.net7.Manifest-8.0.100
From Version 8.0.0-alpha.1.22558.2 -> To Version 8.0.0-alpha.1.22578.1
* Update dependencies from https://github.com/dotnet/roslyn build
20221130.13
Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset
From Version 4.5.0-1.22571.11 -> To Version 4.5.0-2.22580.13
* Update dependencies from https://github.com/dotnet/hotreload-utils build
20221201.1
Microsoft.DotNet.HotReload.Utils.Generator.BuildTool
From Version 1.1.0-alpha.0.22578.1 -> To Version 1.1.0-alpha.0.22601.1
* Update dependencies from https://github.com/dotnet/runtime build
20221205.1
Microsoft.NET.Sdk.IL , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.ILAsm , runtime.native.System.IO.Ports , System.Text.Json
From Version 8.0.0-alpha.1.22559.2 -> To Version 8.0.0-alpha.1.22605.1
* Update dependencies from https://github.com/dotnet/llvm-project build
20221205.1
runtime.linux-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.linux-musl-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-musl-x64.Microsoft.NETCore.Runtime.ObjWriter , runtime.linux-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-x64.Microsoft.NETCore.Runtime.ObjWriter , runtime.osx.11.0-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.osx.11.0-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.osx.10.12-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.osx.10.12-x64.Microsoft.NETCore.Runtime.ObjWriter , runtime.win-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.win-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.win-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.win-x64.Microsoft.NETCore.Runtime.ObjWriter
From Version 1.0.0-alpha.1.22566.1 -> To Version 1.0.0-alpha.1.22605.1
* Update dependencies from https://github.com/dotnet/llvm-project build
20221205.3
runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.osx-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.osx-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.win-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.win-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools
From Version 14.0.0-alpha.1.22561.1 -> To Version 14.0.0-alpha.1.22605.3
* Update dependencies from https://github.com/dotnet/emsdk build
20221205.2
Microsoft.NET.Workload.Emscripten.net7.Manifest-8.0.100
From Version 8.0.0-alpha.1.22558.2 -> To Version 8.0.0-alpha.1.22605.2
* Update dependencies from https://github.com/dotnet/hotreload-utils build
20221205.1
Microsoft.DotNet.HotReload.Utils.Generator.BuildTool
From Version 1.1.0-alpha.0.22510.2 -> To Version 1.1.0-alpha.0.22605.1
* Update dependencies from https://github.com/dotnet/roslyn build
20221206.12
Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset
From Version 4.5.0-1.22564.5 -> To Version 4.5.0-2.22606.12
* Update dependencies from https://github.com/dotnet/xharness build
20221207.1
Microsoft.DotNet.XHarness.CLI , Microsoft.DotNet.XHarness.TestRunners.Common , Microsoft.DotNet.XHarness.TestRunners.Xunit
From Version 1.0.0-prerelease.22566.1 -> To Version 1.0.0-prerelease.22607.1
* Update dependencies from https://github.com/dotnet/roslyn build
20221208.4
Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset
From Version 4.5.0-1.22564.5 -> To Version 4.5.0-2.22608.4
* Update dependencies from https://github.com/dotnet/roslyn build
20221208.26
Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset
From Version 4.5.0-1.22564.5 -> To Version 4.5.0-2.22608.26
* Update dependencies from https://github.com/dotnet/roslyn build
20221208.21
Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset
From Version 4.5.0-1.22564.5 -> To Version 4.5.0-3.22608.21
* Update dependencies from https://github.com/dotnet/runtime build
20221211.2
Microsoft.NET.Sdk.IL , Microsoft.NETCore.App.Runtime.win-x64 , Microsoft.NETCore.ILAsm , runtime.native.System.IO.Ports , System.Text.Json
From Version 8.0.0-alpha.1.22559.2 -> To Version 8.0.0-alpha.1.22611.2
* Update dependencies from https://github.com/dotnet/llvm-project build
20221212.1
runtime.linux-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.linux-musl-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-musl-x64.Microsoft.NETCore.Runtime.ObjWriter , runtime.linux-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-x64.Microsoft.NETCore.Runtime.ObjWriter , runtime.osx.11.0-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.osx.11.0-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.osx.10.12-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.osx.10.12-x64.Microsoft.NETCore.Runtime.ObjWriter , runtime.win-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.win-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.win-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.win-x64.Microsoft.NETCore.Runtime.ObjWriter
From Version 1.0.0-alpha.1.22566.1 -> To Version 1.0.0-alpha.1.22612.1
* Update dependencies from https://github.com/dotnet/llvm-project build
20221212.3
runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.osx-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.osx-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.win-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.win-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools
From Version 14.0.0-alpha.1.22561.1 -> To Version 14.0.0-alpha.1.22612.3
* Update dependencies from https://github.com/dotnet/icu build
20221212.1
Microsoft.NETCore.Runtime.ICU.Transport
From Version 8.0.0-alpha.1.22557.1 -> To Version 8.0.0-alpha.1.22612.1
* Update dependencies from https://github.com/dotnet/xharness build
20221212.1
Microsoft.DotNet.XHarness.CLI , Microsoft.DotNet.XHarness.TestRunners.Common , Microsoft.DotNet.XHarness.TestRunners.Xunit
From Version 1.0.0-prerelease.22566.1 -> To Version 1.0.0-prerelease.22612.1
* Update dependencies from https://github.com/dotnet/emsdk build
20221212.1
Microsoft.NET.Workload.Emscripten.net7.Manifest-8.0.100
From Version 8.0.0-alpha.1.22558.2 -> To Version 8.0.0-alpha.1.22612.1
* Update dependencies from https://github.com/dotnet/hotreload-utils build
20221212.1
Microsoft.DotNet.HotReload.Utils.Generator.BuildTool
From Version 1.1.0-alpha.0.22510.2 -> To Version 1.1.0-alpha.0.22612.1
* Update dependencies from https://github.com/dotnet/roslyn build
20221212.3
Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset
From Version 4.5.0-1.22564.5 -> To Version 4.5.0-3.22612.3
* Update dependencies from https://github.com/dotnet/llvm-project build
20221213.1
runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.osx-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.osx-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.win-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.win-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools
From Version 14.0.0-alpha.1.22561.1 -> To Version 14.0.0-alpha.1.22613.1
* Update dependencies from https://github.com/dotnet/llvm-project build
20221213.2
runtime.linux-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.linux-musl-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-musl-x64.Microsoft.NETCore.Runtime.ObjWriter , runtime.linux-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.linux-x64.Microsoft.NETCore.Runtime.ObjWriter , runtime.osx.11.0-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.osx.11.0-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.osx.10.12-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.osx.10.12-x64.Microsoft.NETCore.Runtime.ObjWriter , runtime.win-arm64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.win-arm64.Microsoft.NETCore.Runtime.ObjWriter , runtime.win-x64.Microsoft.NETCore.Runtime.JIT.Tools , runtime.win-x64.Microsoft.NETCore.Runtime.ObjWriter
From Version 1.0.0-alpha.1.22566.1 -> To Version 1.0.0-alpha.1.22613.2
* Update dependencies from https://github.com/dotnet/roslyn build
20221213.20
Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset
From Version 4.5.0-1.22564.5 -> To Version 4.5.0-3.22613.20
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: Ankit Jain <radical@gmail.com>
Katelyn Gadd [Wed, 14 Dec 2022 17:53:36 +0000 (09:53 -0800)]
[wasm] Outline exception throws in the interp and ifdef out unreachable opcodes (#79239)
* Outline THROW_EX_GENERAL and ifdef out unreachable opcodes in the wasm version of the mono interpreter for better performance
* Introduce IROPDEF for intermediate opcodes that are only used during code generation
* Move IR opcodes to the end of the table and don't generate jump targets for them
* Add an include guard to mintops.def to ensure that config.h is always included when it is used
* Make the jiterp opcodes platform specific, fix a bug in genmintops that produced wrong ordering
* Fix jiterpreter heuristic erroneously rejecting mov opcodes
Radek Doulik [Wed, 14 Dec 2022 17:20:21 +0000 (18:20 +0100)]
[wasm] Enable the String task (#79640)
Viktor Hofer [Wed, 14 Dec 2022 16:36:06 +0000 (17:36 +0100)]
Fix workloads build step in official builds (#79656)
Andy Gocke [Wed, 14 Dec 2022 12:01:27 +0000 (04:01 -0800)]
Change RunningPublish property name to _IsPublishing (#79483)
The crossgen publish capability currently uses a RunningPublish property
to signal that certain settings should be enabled. The SDK now provides a
property that serves the same purpose called '_IsPublishing'. By using the
SDK property, the right publish behavior will automatically happen if a user
runs 'dotnet publish' on the crossgen2 project.
Viktor Hofer [Wed, 14 Dec 2022 11:55:15 +0000 (12:55 +0100)]
Create Microsoft.NET.ILLink.Tasks package (#79609)
* Create Microsoft.NET.ILLink.Tasks package
* Infrastructure support and repo clean-up
dotnet bot [Wed, 14 Dec 2022 09:46:59 +0000 (01:46 -0800)]
Localized file check-in by OneLocBuild Task: Build definition ID 679: Build ID
2067005 (#79632)
Kunal Pathak [Wed, 14 Dec 2022 09:15:14 +0000 (01:15 -0800)]
Add kunalspathak mentionee for codegen-coreclr (#79635)
Stephen Toub [Wed, 14 Dec 2022 07:00:38 +0000 (02:00 -0500)]
Use non-generic Array.Sort in EnumInfo on nativeaot (#79473)
* Use non-generic Array.Sort in EnumInfo on nativeaot
* Non-generic sort
* Update src/coreclr/nativeaot/System.Private.Reflection.Execution/src/Internal/Reflection/Execution/NativeFormatEnumInfo.cs
Co-authored-by: Jan Kotas <jkotas@microsoft.com>
SingleAccretion [Wed, 14 Dec 2022 00:26:48 +0000 (03:26 +0300)]
Always set `addlDelta` to zero on x86 (#79467)
* Always set "addlDelta" to zero on x86
The value is used to compensate for the additional instruction bytes,
which should only be relevant for RIP-relative addressing, while x86
uses absolute addressing.
* Re-enable the test
Ankit Jain [Tue, 13 Dec 2022 23:04:15 +0000 (18:04 -0500)]
[wasm] Disable running blazor template projects (#79536)
* [wasm] Print browser console messages to the test output to catch blazor issues
* WBT: Remove unused AppRefDir arguments
* Re-enable the tests without the blazor-run parts
* fix build
Stephen Toub [Tue, 13 Dec 2022 22:51:17 +0000 (17:51 -0500)]
Fix ordering of checks in AppendInterpolatedStringHandler.AppendFormatted (#79539)
We want to check for IsEnum first to avoid boxing the enum via ISpanFormattable.TryFormat. This just swaps the two blocks.
madelson [Tue, 13 Dec 2022 21:04:56 +0000 (16:04 -0500)]
Implement DynamicMethod.RTDynamicMethod.CreateDelegate. (#79427)
* Implement DynamicMethod.RTDynamicMethod.CreateDelegate.
The implementation simply calls back to DynamicMethod.CreateDelegate.
fix #78365
* Refactor DynamicMethod to remove RTDynamicMethod.
See https://github.com/dotnet/runtime/pull/79427/files#r1044093019
* Remove redundant mono method
David Mason [Tue, 13 Dec 2022 21:01:28 +0000 (13:01 -0800)]
Take EventListener.EventListenersLock in EventPipeEventDispatcher.SendCommand (#79185)
Viktor Hofer [Tue, 13 Dec 2022 18:54:23 +0000 (19:54 +0100)]
Use ReferencePathWithRefAssemblies for libs ILLink (#79595)
Fixes https://github.com/dotnet/runtime/issues/79513
The libraries build invokes ILLink to perform "library" mode trimming. The libraries build step is expected to be runtime agnostic and shouldn't bind against a specific CoreLib runtime implementation.
During compilation, even though we have a ProjectReference pointing to the CoreLib/src project, we build against CoreLib/ref. But that ILLink invocation doesn't honor that as it uses the ReferencePath msbuild item instead of ReferencePathWithRefAssemblies.
Tomas Weinfurt [Tue, 13 Dec 2022 18:25:16 +0000 (10:25 -0800)]
support server ALPN on macOS (#79434)
* support server ALPN on macOS
* reset status
ws77.cho [Tue, 13 Dec 2022 16:26:35 +0000 (01:26 +0900)]
Fix memory leaks reported by static analyzer (#78492)
Pavel Savara [Tue, 13 Dec 2022 15:21:55 +0000 (16:21 +0100)]
do not free method name (#79608)
Jakob Botsch Nielsen [Tue, 13 Dec 2022 14:39:04 +0000 (15:39 +0100)]
Fix mcs -dumpMap (#79571)
This needs to be in sync with how printing in the JIT works to ensure
that we don't ask for data that the JIT did not make available.
Fix #79568
Eirik Tsarpalis [Tue, 13 Dec 2022 14:38:01 +0000 (16:38 +0200)]
Fix #79556. (#79562)
Radek Doulik [Tue, 13 Dec 2022 14:21:24 +0000 (15:21 +0100)]
[wasm] Add few Span and String measurements (#79566)
Measure Span<T> SequenceEqual for bytes and chars
Measure string.Normalize for ASCII and non-ASCII
Radek Doulik [Tue, 13 Dec 2022 14:17:47 +0000 (15:17 +0100)]
[wasm] Let browser-bench post bootstrap flag (#79573)
This helps our perf measurements infrastructure to detect successful
bootstrap of the bench run
Tom Deseyn [Tue, 13 Dec 2022 13:36:02 +0000 (14:36 +0100)]
Console.Unix: don't calculate cached cursor position from the last column. (#78466)
After printing in the last column, setting CursorLeft is expected to
place the cursor back in that same row.
Vlad Brezae [Tue, 13 Dec 2022 13:17:29 +0000 (15:17 +0200)]
[mono] Fix passing of NULL via mono_runtime_invoke to method expecting nullable (#79597)
The code was always trying to unbox the boxed vt, not accounting for NULL.
Kevin Jones [Tue, 13 Dec 2022 12:50:54 +0000 (07:50 -0500)]
Handle RSA zero modulus for Android
Andy Gocke [Tue, 13 Dec 2022 12:03:32 +0000 (04:03 -0800)]
Don't require singlefilehost in host.native (#79565)
* Don't require singlefilehost in host.native
The corehost project currently tries to build the singlefilehost with
the embedded DAC, which we can skip if we never built the
singlefilehost in the first place.
* Update corehost.proj
Co-authored-by: Viktor Hofer <viktor.hofer@microsoft.com>
Vlad Brezae [Tue, 13 Dec 2022 08:57:50 +0000 (10:57 +0200)]
[mono][interp] Fix some issues that are hit in tests when we tier up methods immediately (#79564)
* [mono][interp] Fix difference in behavior between tiered and untiered compilation
We were trying to get the vtable only in the tiered compilation case.
* Disable test that hits known interpreter limitation
Michal Strehovský [Tue, 13 Dec 2022 08:26:55 +0000 (17:26 +0900)]
Condition some NamedPipe tests on COM support (#79578)
Fixes #79180.
Brian Bohe [Tue, 13 Dec 2022 05:38:37 +0000 (00:38 -0500)]
Adding new ReadyToRun helper for static cctor (#76898)
* Adding new ReadyToRun helper for static cctor
When accessing a static field the static cctor of the class is
called. Then the helper CORINFO_HELP_READYTORUN_STATIC_BASE
was printed twice during the same block, the first for the cctor
and the second for the getter, as if they were two calls for the
same method.
* Removing helper CORINFO_HELP_STRCNS_CURRENT_MODULE
* Removing CORINFO_HELP_STRCNS_CURRENT_MODULE
* Changing TYP_BYREF to TYP_VOID
* Formatting files
* Splitting up R2R STATIC_BASE in more helpers
* Updating STATIC_BASE R2R helper with new helpers
* Extending getReadyToRunHelper support
Consider the new R2R helpers that were group in
CORINFO_HELP_READYTORUN_STATIC_BASE.
* Keeping the preffered R2R helper constructor
In some cases the R2R helpers already call to the
constructor. In those cases we can insert a repeated
call that will be eliminated by CSE. There are still
cases in which we may need to call the constructor.
* Extending value numbering with new helpers
* Renaming helper
* Replacing STATIC_BASE helper in ilc for NON_GC
* Fixing helper order
* Refactoring code
* Supporting R2R_STATIC_BASE helper in nativeaot
* Moving compiler var initialization to compCompile
* Using new helper names in ILC
* Encapsulating common method
* Removing CORINFO_HELP_READYTORUN_STATIC_BASE helper
* Removing comment
* Moving new helper function to shared code
* Setting undef helper as default
* Repeating same helper call for CSE optimization
Avoid hardcoding the Non-GC helper call, which is used just to
trigger the constructor if it is needed, and use the existing
helper call in the code, so CSE would persist only one.
* Update src/coreclr/jit/compiler.cpp
Co-authored-by: Jakob Botsch Nielsen <Jakob.botsch.nielsen@gmail.com>
* Update src/coreclr/tools/Common/Compiler/DependencyAnalysis/CorInfoHelpers.cs
Co-authored-by: Jakob Botsch Nielsen <Jakob.botsch.nielsen@gmail.com>
* Update src/coreclr/tools/aot/ILCompiler.RyuJit/JitInterface/CorInfoImpl.RyuJit.cs
Co-authored-by: Michal Strehovský <MichalStrehovsky@users.noreply.github.com>
* Update src/coreclr/tools/aot/ILCompiler.ReadyToRun/JitInterface/CorInfoImpl.ReadyToRun.cs
Co-authored-by: Michal Strehovský <MichalStrehovsky@users.noreply.github.com>
* Formatting jithelpers.h
* Renaming function
* Moving CorInfoHelper function to R2R/AOT interface
* Updating preferred helper when is not thread type
* Removing some helper value nums
Static base helper was removed and cctor returns
void.
* Formatting file
* Ensuring void return when the helper is cctor
* Updating preferred helper when when classes matches
* Removing cctor trigger helper from aot,vm and jit
* Updating m_prefferedInitCctor default value
It is initialized with CORINFO_HELP_UNDEF and set to R2R GC or NON
GC Static Base later.
* Updating comments
* Updating comments
Co-authored-by: Brian Bohe <brianbohe@microsoft.com>
Co-authored-by: Jakob Botsch Nielsen <Jakob.botsch.nielsen@gmail.com>
Co-authored-by: Michal Strehovský <MichalStrehovsky@users.noreply.github.com>
Andrii Kurdiumov [Tue, 13 Dec 2022 04:25:01 +0000 (10:25 +0600)]
Fix versions of the .NET 8 ILC package (#79497)
* Fix versions of the .NET 8 ILC package
* Apply suggestions from code review
Co-authored-by: Jan Kotas <jkotas@microsoft.com>
Mark Plesko [Tue, 13 Dec 2022 02:17:54 +0000 (18:17 -0800)]
Preparation for JIT\Regression test merging - assembly/file renames (#79489)
This is a collection of renames that can be merged independently of actual test merging. Automated changes were done with the ILTransform tool (started by @trylek, my version at https://github.com/markples/utils/tree/for-PR-dotnet-runtime-79489, commit
131b3764).
- ILTransform -p
- Standardize project suffixes since _d, etc., are special cases for test merging but -dbg is not
- Rename a few tests where the project and IL files had CaSiNg differences
- ILTransform -ilfile
- Rename IL files to match the .ilproj root name (which excludes suffixes such as _d)
- Update the project files to refer to the new filenames using $(MSBuildProjectName) except src/tests/JIT/Regression/CLR-x86-JIT/V2.0-Beta2/
b323557 where the IL file doesn't have the suffix
- ILTransform -m
- Remove all .module (including extern) lines from IL files
- ILTransform -a
- Rename IL .assembly names to match their filenames
- Some lines were `.assembly foo // as "foo"` - remove those comments too
- ILTransform -n -a -ilfile
- Deduplicate project names across JIT/Regression
- If a set of duplicates is simply one csproj and one ilproj, then add _il to the ilproj and leave the csproj alone
- Otherwise append the difference in the closest different directory names. For example:
- V1-M11-Beta1/b40347/b40347.ilproj -> b40347_M11-Beta1.ilproj
- V1-M12-Beta2/b40347/b40347.ilproj -> b40347_M12-Beta2.ilproj
- However, avoid creating foo_foo. For example:
- V1-M12-Beta2/b51875/b51875.csproj -> <unchanged>
- V1-M12-Beta2/b51875/Desktop/b51875.csproj -> b51875_Desktop.csproj
- Also rename IL files and .assembly names to match the new project names
- Manual fixes for IL->C# assembly references in tests dev11_132534 and dev11_145295
Michal Strehovský [Tue, 13 Dec 2022 00:26:27 +0000 (09:26 +0900)]
Fix up NativeAOT testing (#79523)
Tomas Weinfurt [Tue, 13 Dec 2022 00:09:16 +0000 (16:09 -0800)]
fix SslStream.IsMutuallyAuthenticated with cached credentials (#79128)
* fix SslStream.IsMutuallyAuthenticated with cached credentials
* nano
* protocol
* fix test
* Apply suggestions from code review
Co-authored-by: Radek Zikmund <32671551+rzikm@users.noreply.github.com>
Co-authored-by: Simon Rozsival <simon@rozsival.com>
* fix CertificateValidationClientServer_EndToEnd_Ok test
Co-authored-by: Radek Zikmund <32671551+rzikm@users.noreply.github.com>
Co-authored-by: Simon Rozsival <simon@rozsival.com>
Radek Doulik [Mon, 12 Dec 2022 22:21:55 +0000 (23:21 +0100)]
[wasm] Enable System.Numerics vectors SIMD (#78068)
This helps in cases where there's only S.N.Vector path in the BCL code, like `SpanHelpers.IndexOfChar(ref char searchSpace, char value, int length)`. In this case the `Span:IndexOf char` measurement improves from 0.0143ms to 0.0114ms.
* [wasm] Enable System.Numerics vectors SIMD
* Do not hardcode S.N.Vector IsHardwareAccelerated
Jakob Botsch Nielsen [Mon, 12 Dec 2022 20:16:37 +0000 (21:16 +0100)]
JIT: Add missing case to relational with constant optimization (#79541)
Almost all cases of #11349 were fixed, except for this missing one.
Fix #11349
Austin Wise [Mon, 12 Dec 2022 20:02:59 +0000 (12:02 -0800)]
[NativeAOT] Objective-C Marshal: object tracker support (#78280)
* NativeAOT Objective-C Marshal: object tracker support
* Remove support for registering multiple begin/end callbacks, since the API was not designed with multiple managed worlds in mind.
* Use more asserts where it should not be possible for there to be no callback.
* Add missing GC-trigger disable when calling managed callouts.
* Simplify initialization logic
* Add comments to CoreCLR and NativeAOT about constants that should have the same size.
* Remove superfluous use of C++ templates.
* Use the C# unmanaged function pointer types in more places, improving type safety
* Add SuppressGCTransition and fix compile error by adding cast
Co-authored-by: Michal Strehovský <MichalStrehovsky@users.noreply.github.com>
Co-authored-by: Aaron Robinson <arobins@microsoft.com>
Vlad Brezae [Mon, 12 Dec 2022 17:25:39 +0000 (19:25 +0200)]
[mono][interp] Add unbox when calling valuetype method through delegate (#79445)
* [mono][interp] Add unbox when calling valuetype method through delegate
If we are calling an open instance delegate, where the target method is on a valuetype, we will need to unbox this pointer.
* [mono][interp] Remove redundant check
If we are calling a method of a valuetype, then we already know `this` pointer is an instantiation of a valuetype.
* [mono][interp] Remove dead opcode
* [tests] Add regression test
* [tests] Disable test on fullaot
Jakob Botsch Nielsen [Mon, 12 Dec 2022 17:00:42 +0000 (18:00 +0100)]
Add explicit tail. prefix to a tailcall test (#79532)
Otherwise any change can cause us to stop tailcalling conservatively,
e.g. due to new inlining introducing an address-taken local.
Fix #79517
Katya Sokolova [Mon, 12 Dec 2022 15:48:59 +0000 (16:48 +0100)]
Fix compression (#79412)
* Fix compression
* Apply suggestions from code review
Co-authored-by: Miha Zupan <mihazupan.zupan1@gmail.com>
* Adding SendAsync to ref
* fix ws deflate tests
* Check bytes on server side
Co-authored-by: Miha Zupan <mihazupan.zupan1@gmail.com>
Co-authored-by: Natalia Kondratyeva <knatalia@microsoft.com>
yowl [Mon, 12 Dec 2022 15:13:21 +0000 (10:13 -0500)]
set the return type to match the definition in InternalCalls.cs - and return the value. (#79538)
Eirik Tsarpalis [Mon, 12 Dec 2022 13:34:22 +0000 (15:34 +0200)]
Add weakly typed Serialize and Deserialize overloads accepting JsonTypeInfo. (#79397)
Peter Sollich [Mon, 12 Dec 2022 13:14:33 +0000 (14:14 +0100)]
Remove hard_limit_for_bookkeeping (#77480)
As it turns out, it's not so easy to set aside a hard limit for the GC's bookkeeping, because some regions will be partially comitted and so will need more bookkeeping information as a percentage.
So this removes the hard_limit_for_bookkeeping and associated fields, and instead commits memory for the mark array eagerly, even if BGC is not in progress.
The issue is that GC needs at least one free region, and it needs the mark array committed. So when it tries to get a region at the end, and we cannot commit the mark array, we cannot actually get a free region. Currently we AV in this case, but there really isn't a good option to recover at this point. So it's better to keep the mark array committed and perhaps fail with an OOM exception.
Pavel Savara [Mon, 12 Dec 2022 12:13:44 +0000 (13:13 +0100)]
[wasm] reduce MethodImplOptions.NoInlining (#79457)
* reduce MethodImplOptions.NoInlining
Ankit Jain [Mon, 12 Dec 2022 11:22:43 +0000 (06:22 -0500)]
[wasm] Disable failing blazor tests (#79526)
Issue: #79514
Ahmet Ibrahim AKSOY [Mon, 12 Dec 2022 11:20:00 +0000 (12:20 +0100)]
Mark test Outerloop (#79528)
MSDN.WhiteKnight [Mon, 12 Dec 2022 10:57:58 +0000 (15:57 +0500)]
Split library and package Readme (#78888)
* Split library and package Readme
* Fix punctuation
* Fix lint issues
* Automatically include package readme file if existent
* Rename README.md to PACKAGE.md
* Move PACKAGE.md into source directory
* Reinstate examples in README.md
* Update contributing guidelines
* Update docs/coding-guidelines/libraries-packaging.md
Co-authored-by: Viktor Hofer <viktor.hofer@microsoft.com>
Vlad Brezae [Mon, 12 Dec 2022 10:47:19 +0000 (12:47 +0200)]
[mono][interp] Throw invalid program if stack state is invalid (#73215)
Rather than printing warning and then overflowing the stack info buffer. Store error in TransformData to reduce code size.
Vitek Karas [Mon, 12 Dec 2022 10:33:54 +0000 (02:33 -0800)]
Fixes remaining issues with DynamicDependency attribute and adds tests (#79398)
Ports over all DynamicDependencyAttribute tests we have in linker. All tests are now passing, two had to be partially disabled due to:
* copyused testing which NativeAOT doesn't really support
* known missing support for XML attribute files in AOT
Product changes:
* DynamicDependencyAttribute will produce a warning if it can't resolve the target of the dependency.
* Support for DynamicDependencyAttribute on fields
Small improvements to assembly checker - mainly ability to handle delegate types.
Add tests for reflection-only accessed fields and methods and DynamicDependency on them. Fixed the problem with those tests by also hooking up FieldMetadataNote and MethodMetadataNode.
Jan Kotas [Mon, 12 Dec 2022 09:24:24 +0000 (01:24 -0800)]
Delete unused FreeLibraryAndExitThread from PAL (#79452)
Jan Vorlicek [Mon, 12 Dec 2022 09:21:17 +0000 (10:21 +0100)]
Fix GC stress C on macOS arm64 (#79426)
* Fix GC stress C on macOS arm64
Tests relying on SIGCHLD signal are intermittently hanging when
running with GC stress C enabled. Investigations have shown that
the problem is that while according to dtrace the SIGCHLD was
delivered to a thread, the signal handler for it was actually not
invoked. That caused tests waiting for child completion to wait
forever, thus the tests were hanging.
Further investigations have uncovered the real issue. The problem
is that when we return from the coreclr hardware exception handler
to PAL after processing an invalid instruction used by the GC stress
C machinery, we use MachSetThreadContext to update the context
of the thread and to resume its execution. The problem is that the
MachSetThreadContext uses the pattern of suspend thread / set
thread state / resume thread. This pattern is problematic when
async signals can be delivered to the thread. The kernel can update
the thread state to point to the signal handler even when the thread
is suspended. So in our case, the kernel has set the state to execute
the signal handler, but in race conditions, we have overwritten that
by our context, effectively going back to the managed code and
preventing the signal handler execution.
We are using MachSetThreadContext instead of RtlRestoreContext at
that place because we need all registers to be restored and it
is not possible to restore all the registers and jump to the target
in user mode code. We are left with at least one register containing
different value (the target address).
This change uses a trick to achieve full thread state restoration.
It invokes a new helper RestoreCompleteContext which contains just
a single invalid instruction. The hardware exception handling is
triggered by that, we detect that the fault address is the
RestoreCompleteContext address and we set the context of the faulting
thread to the desired context. In this case, the signal handling
cannot interfere with this process and so there is no race.
I have originally modified RtlRestoreContext instead of creating
the new RestoreCompleteContext, but it turned out that for the
other usages of RtlRestoreContext, it is too expensive. And for
the other usages, we don't require the full fidelity restoration.
* Changes from PR feedback
Oleksandr Didyk [Mon, 12 Dec 2022 07:35:55 +0000 (08:35 +0100)]
add --allconfigurations for portable source-build (#79400)
Adeel Mujahid [Mon, 12 Dec 2022 03:40:04 +0000 (05:40 +0200)]
Link static libstdc++ with libicuc in NativeAOT (#79501)
* Link static libstdc++ with libicuc in NativeAOT
* Address CR feedback
* Improve static related conditions
* Delete default
Filip Navara [Mon, 12 Dec 2022 01:43:17 +0000 (02:43 +0100)]
[NativeAOT] Enable smoke tests on macOS (#76560)
ws77.cho [Sun, 11 Dec 2022 23:54:30 +0000 (08:54 +0900)]
Select libraries using the ICU build time version (#79259)
Stephen Toub [Sun, 11 Dec 2022 14:11:02 +0000 (09:11 -0500)]
Use ArgumentOutOfRangeException.Throw helpers in more places (#79460)
* Use ArgumentOutOfRangeException.Throw helpers in more places
* Fix a few issues
* Fix another test
* Apply suggestions from code review
Co-authored-by: Miha Zupan <mihazupan.zupan1@gmail.com>
Co-authored-by: Miha Zupan <mihazupan.zupan1@gmail.com>
Tomas Weinfurt [Sat, 10 Dec 2022 23:25:25 +0000 (15:25 -0800)]
improve symlink handling in Ping (#79323)
* improve symlink handling in Ping
* update comment
* feedback from review
Pavel Savara [Sat, 10 Dec 2022 21:07:41 +0000 (22:07 +0100)]
[wasm] terser setup
- default terser config for smaller size (#79466)
- fix ProducVersion
- dotn't generate dummy linker functions
Michal Strehovský [Sat, 10 Dec 2022 05:39:01 +0000 (14:39 +0900)]
Only create MethodTable optional fields when needed (#79435)
Noticed a difference between statically built and dynamically built `MethodTable` for `int*[]`.
Vladimir Sadov [Sat, 10 Dec 2022 01:39:11 +0000 (17:39 -0800)]
Fix for COM Weakreference test failure under JIT stress. (#79476)
* Prevent methods from inlining when relying on life time of their locals.
* refactor local functions.
Bruce Forstall [Sat, 10 Dec 2022 00:36:40 +0000 (17:36 -0700)]
Enable `runtime-coreclr jitstress-isas-avx512` pipeline on Linux (#79417)
Now our Linux x64 machines in CI are AVX-512 capable.
Andrew Au [Sat, 10 Dec 2022 00:10:26 +0000 (16:10 -0800)]
Move the rearrange_uoh_segments call earlier so that distribute_free_regions can take them into account (#79262)
Andrew Au [Fri, 9 Dec 2022 22:55:10 +0000 (14:55 -0800)]
A gentle reminder that TraceGC is turned off (#79183)
ws77.cho [Fri, 9 Dec 2022 22:39:02 +0000 (07:39 +0900)]
fix determin lib name varation logic (#79370)
When checking whether the suffix is contained, the size calcuation is wrong.
In case of Linux, u".so" is defined to PLATFORM_SHARED_LIB_SUFFIX_W.
So, string length (3) should be added to iterator.
But, in the current implementation, ARRAY_SIZE(PLATFORM_SHARED_LIB_SUFFIX_W) (4) is added to iterator.
Brian Bohe [Fri, 9 Dec 2022 19:57:12 +0000 (14:57 -0500)]
Fixing assert on variable live range for simd12 LCL / STORE_LCL (#79182)
* Adding jitdump for varible debug info
* Forcing home and live update after SIMD12 store lcl
Although LSRA is indicating the tree produces the
result in an xmm's register, we are storing vector3
always on stack, so its home on varDsc and liveness
information must be recorded accordingly. LSRA
seems not to has this information.
* Formatting file
* Add missing case of targetReg in genStoreLclTypeSIMD12()
* Fix liveness update for genStoreLclFld() and genStoreLclVar on x64
* Fix liveness update for genStoreLclTypeSIMD12() on arm64
* Fix and unifying genStoreLclFld/LclVar on x64
* Revert "Ignoring test regression runtime_63354 in x86 (#79358)"
This reverts commit
1dec6480669d2008cd4c067dc43fa9da31e779ac.
Co-authored-by: Brian Bohe <brianbohe@microsoft.com>
Co-authored-by: Kunal Pathak <Kunal.Pathak@microsoft.com>
Josie Bigler [Fri, 9 Dec 2022 17:51:37 +0000 (11:51 -0600)]
Increase test coverage of System.Reflection.Context (#77999)
Radek Doulik [Fri, 9 Dec 2022 17:38:28 +0000 (18:38 +0100)]
[wasm] Add Vector128.Narrow intrinsics (#79447)
Add intrinsics for
i8x16.narrow_i16x8_s(a: v128, b: v128) -> v128
i8x16.narrow_i16x8_u(a: v128, b: v128) -> v128
i16x8.narrow_i32x4_s(a: v128, b: v128) -> v128
i16x8.narrow_i32x4_u(a: v128, b: v128) -> v128
These improve string handling, where the i16x8.narrow_i32x4_u is used.
Like:
> wa-info -d -f corlib_System_Text_ASCIIUtility_ExtractAsciiVector_System_Runtime_Intrinsics_Vector128_1_uint16_System_Runtime_Intrinsics_Vector128_1_uint16 dotnet.wasm
(func corlib_System_Text_ASCIIUtility_ExtractAsciiVector_System_Runtime_Intrinsics_Vector128_1_uint16_System_Runtime_Intrinsics_Vector128_1_uint16(param $0 i32, $1 i32, $2 i32, $3 i32))
local.get $0
local.get $1
v128.load align:4 [SIMD]
local.get $2
v128.load align:4 [SIMD]
i8x16.narrow.i16x8.u [SIMD]
v128.store [SIMD]
> wa-info -d -f corlib_System_Text_ASCIIUtility_NarrowUtf16ToAscii_Intrinsified_char__byte__uintptr dotnet.wasm
(func corlib_System_Text_ASCIIUtility_NarrowUtf16ToAscii_Intrinsified_char__byte__uintptr(param $0 i32, $1 i32, $2 i32, $3 i32) (result i32))
...
v128.load [SIMD]
local.tee $5
v128.const 0xff80ff80ff80ff80ff80ff80ff80ff80 [SIMD]
local.tee $6
v128.and [SIMD]
v128.any.true [SIMD]
br.if
local.get $1
i32.eqz
br.if
local.get $1
local.get $5
local.get $5
i8x16.narrow.i16x8.u [SIMD]
v128.store64.lane 0 [SIMD]
...
It is also measurable in the browser-bench, where
`Json, non-ASCII text deserialize` improves from 0.5048ms to 0.4428ms
for simd on chrome.
Zoltan Varga [Fri, 9 Dec 2022 16:45:37 +0000 (11:45 -0500)]
[mono] Add a managed cache for flags in RuntimeType. (#78840)
Ankit Jain [Fri, 9 Dec 2022 16:17:16 +0000 (11:17 -0500)]
[wasm] Wasm.Build.Tests - build projects for net8.0 by default (#79254)
* [wasm] Wasm.Build.Tests - build projects for net8.0 by default
* [wasm] Fix templates to use the correct tfm
* InstallWorkloadFromArtifacts: Share the nuget cache for installing all the workload combinations
* WBT: fix re-runs
* WBT: fix non-wasm console project tests
* Fix tfm used for blazor projects
* WBT: Update to use 7.0.0 version of the workload
* WBT: Update tests to remove workarounds for 7.0 that aren't needed anymore
* Fix BrowserBuildAndRun for 7.0
* WBT: Run a blazor template referencing a native lib
* WBT: Update SkiaSharp reference
* WBT: Use warnAsError for blazor builds
* WBT: Disable tests failing to run 8.0-sdk+tfm=net7 - https://github.com/dotnet/runtime/issues/79313
Pavel Savara [Fri, 9 Dec 2022 13:52:32 +0000 (14:52 +0100)]
[wasm] optimize interop startup and linker hints (#77256)
Prepare for making legacy interop optional and small optimization
Filip Navara [Fri, 9 Dec 2022 13:11:26 +0000 (14:11 +0100)]
Don't embed bitcode on tvOS anymore (#79349)
Co-authored-by: Michal Strehovský <MichalStrehovsky@users.noreply.github.com>
Milos Kotlar [Fri, 9 Dec 2022 09:29:01 +0000 (10:29 +0100)]
[mono][tests] Throw InvalidProgramException when ENDFILTER has invalid value type or invalid number of values (#79394)
* Throw InvalidProgramException when ENDFILTER has invalid value type or invalid number of values
Michal Strehovský [Fri, 9 Dec 2022 09:16:51 +0000 (18:16 +0900)]
Fix creation of pointer arrays (#79433)
Creation of pointer arrays is on a similar plan to multi-dim arrays - we create them from a template type, but the template is slightly wrong. Previously, EETypeCreator would massage the bits into the correct shape, but now we mostly just copy the bits from the template. Use a more precise template for pointer arrays.
Without this, the base size and element type of pointer arrays was slightly wrong.
I'm also deleting the duplicated "use a special template for this one" logic.
dotnet-maestro[bot] [Fri, 9 Dec 2022 08:25:19 +0000 (09:25 +0100)]
[main] Update dependencies from dotnet/linker (#79272)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Radek Zikmund [Fri, 9 Dec 2022 01:45:57 +0000 (02:45 +0100)]
Temporarily disable NoCallback_RevokedCertificate_NoRevocationChecking_Succeeds (#79407)
The 3rd party service has expired certificate
Jeff Handley [Thu, 8 Dec 2022 21:50:09 +0000 (13:50 -0800)]
Add ImmutableArray<T>.Builder.DrainToImmutable() (#79385)
* Add ImmutableArray<T>.Builder.DrainToImmutable
* Refactor DrainToImmutable for a more optimized implementation
* Augment and refine DrainToImmutable unit tests
Marek Fišera [Thu, 8 Dec 2022 21:08:34 +0000 (22:08 +0100)]
[wasm] Ignore not relevant rollup warnings (#79396)
Radek Doulik [Thu, 8 Dec 2022 20:58:58 +0000 (21:58 +0100)]
Fix wrong value in the comment (#79401)
Tlakaelel Axayakatl Ceja [Thu, 8 Dec 2022 20:55:38 +0000 (12:55 -0800)]
Remaining feedback part1 (#79011)
* Delete remaining eng folder files
* Import repo root Directory.Build.props|targets
* Remove some of the duplicated package settings defined in the repo root Directory.Build.props
* Use shared new Roslyn ApiCompat infrastructure
* Disable some warning codes in illink editorconfig
* Disable warning about IL3000 since code is safe, it will never be used in single file
* Move ilasm.proj file outside of the eng folder
* Add missing analyzer generated tests and skip the CompilerGeneratedCodeSubstitutions test since it uses constant propagation that is not supported by the analyzer
Thays Grazia [Thu, 8 Dec 2022 19:04:44 +0000 (16:04 -0300)]
[wasm][debugger] Revert don't need to escape special characters anymore (#78320)
* Trying to fix again
* Removing comment
* trying to fix CI
* implementing escaped string for dotnet:// as discussed with @radical
* addressing radical suggestion
* fix CI
* implementing test with colon as discussed with @radical.
* fix on windows
* pushing @radical changes and addressing @radical comments
* using ilona suggestion about conditionalfact
* Reverting one suggestion.
* Fixing behavior on mac
Stephen Toub [Thu, 8 Dec 2022 18:54:00 +0000 (13:54 -0500)]
Fix startingStackpos tracking for loop in loop (#79382)
* Fix startingStackpos tracking for loop in loop
This extends the fix made earlier around proper handling of the backtracking stack in EmitLoop. If this loop is inside of another loop, then we need to preserve the startingStackpos on the backtracking stack upon successfully completing the loop, as the outer loop might iterate and cause another occurrence of this loop to run, which will then overwrite our single startingStackpos local. If that iteration backtracks, we then need to be able to pop the previous iterations startingStackpos and restore its value.
* Update src/libraries/System.Text.RegularExpressions/src/System/Text/RegularExpressions/RegexCompiler.cs
Jeremy Koritzinsky [Thu, 8 Dec 2022 18:29:21 +0000 (10:29 -0800)]
Implement unmanaged-to-managed direction for vtable stub generator (#77130)