Commit 166b880
committed
Squashed commit of the following:
commit 7ae87de
Author: Larry Ewing <[email protected]>
Date: Mon Sep 9 22:11:12 2024 -0500
[wasm] more cases when looking up unmanaged delegates (dotnet#107113)
Make the association between the wasm_native_to_interp_ftndescs generation and the lookup from unmanaged more robust so that we don't see problems like dotnet#107212 where the same slot was being reused for multiple methods with different signatures. To do this we change the Key(s) we use and fix the string escaping it relies on, and attempt to lookup by token first.
Next , we rewrite the C code generation to make it easier to read and modify and mitigate some potentially negative memory side effects of that we introduce a gratuitous custom text writer that understands the idea of concatenated strings and use that where possible when building the output.
Next, we change the import code generation to use binary rather than linear search for both the module and symbol. And finally, we update the ICall table generation to use the extensions.
part of dotnet#104391 and dotnet#107212
commit 1808129
Author: Elinor Fung <[email protected]>
Date: Mon Sep 9 20:03:34 2024 -0700
Remove FCThrowRes from AssemblyNative::IsDynamic (dotnet#107574)
commit 5cb6a06
Author: Aman Khalid <[email protected]>
Date: Tue Sep 10 02:38:23 2024 +0000
JIT: Add simple late layout pass (dotnet#107483)
commit c762b75
Author: Martin Costello <[email protected]>
Date: Tue Sep 10 03:15:53 2024 +0100
Add [DebuggerDisplay] to CancellationTokenSource (dotnet#105764)
* Add [DebuggerDisplay] to CancellationTokenSource
Add `[DebuggerDisplay]` to `CancellationTokenSource` to show whether cancelled or disposed.
Relates to dotnet#105698.
* Update src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs
---------
Co-authored-by: Stephen Toub <[email protected]>
commit b77b71e
Author: Katelyn Gadd <[email protected]>
Date: Mon Sep 9 17:40:14 2024 -0700
[wasm] Clean up some FIXMEs in the jiterpreter (dotnet#107562)
* Cleanup some fixmes in the jiterpreter
* Flow through size of the var in MINT_LDLOCA_S so jiterpreter can do accurate invalidation
commit c21d90e
Author: Pavel Savara <[email protected]>
Date: Tue Sep 10 02:40:00 2024 +0200
[WASI] improve single-threaded threadpool (dotnet#107395)
* fix dotnet#104803
* PollWasiEventLoopUntilResolvedVoid
* more
* wip
* CPU-bound work to do
* fix exit
* Update src/mono/sample/wasi/http-p2/Program.cs
Co-authored-by: Larry Ewing <[email protected]>
* feedback
---------
Co-authored-by: Larry Ewing <[email protected]>
commit 61de5df
Author: Elinor Fung <[email protected]>
Date: Mon Sep 9 17:14:07 2024 -0700
Make DAC and ProfToEEInterfaceImpl stop using BaseDomain (dotnet#107570)
`BaseDomain` should no longer be needed now that we only have one `AppDomain` and the `SystemDomain` can be treated as separate. This makes the DAC and ProfToEEInterfaceImpl use `AppDomain` directly and check against `SystemDomain::System()` to determine if a pointer is the system domain.
commit 76dbb27
Author: Stephen Toub <[email protected]>
Date: Mon Sep 9 19:59:54 2024 -0400
Use SearchValues in Uri.CheckForUnicodeOrEscapedUnreserved (dotnet#107357)
commit 149d4bb
Author: Miha Zupan <[email protected]>
Date: Mon Sep 9 16:54:00 2024 -0700
Extend the list of recognized SearchValues<char> field names in Regex (dotnet#107402)
commit e591fbf
Author: Kunal Pathak <[email protected]>
Date: Mon Sep 9 16:38:42 2024 -0700
Arm: Fix the base register used for restoring register from stack (dotnet#107564)
* Use correct baseReg for vstr, similar to vldr
* add test cases
* Mark internal test methods private
commit 51c350c
Author: Elinor Fung <[email protected]>
Date: Mon Sep 9 16:35:02 2024 -0700
Make missing framework error message list other architectures that were found (dotnet#107156)
When erroring on a missing framework, check if there are versions of the framework for other architectures and list them for the user.
commit 2ed43b6
Author: Alan Hayward <[email protected]>
Date: Mon Sep 9 23:53:45 2024 +0100
ARM64-SVE: Allow op inside conditionalselect to be non HWintrinsic (dotnet#107180)
* ARM64-SVE: Allow op inside conditionselect to be non HWintrinsic
* Add Sve.IsSupported check to test
commit ac4b7c6
Author: Kunal Pathak <[email protected]>
Date: Mon Sep 9 15:52:00 2024 -0700
Arm: Consider the fact that targetReg can be second half during resolution (dotnet#107493)
* Arm: Consider the fact that targetReg can be second half during resolution
* add test case
* Make sure we only handle float registers
* fix test case's public methods
commit 18eedbe
Author: Aaron Robinson <[email protected]>
Date: Mon Sep 9 14:02:51 2024 -0700
Convert Thread FCalls to QCalls (dotnet#107495)
* Convert Thread.IsAlive property
* Convert Thread.GetCurrentThread()
* Convert Thread.ThreadState property
* Convert Thread.Initialize()
commit d45ccfd
Author: Michal Strehovský <[email protected]>
Date: Tue Sep 10 05:28:57 2024 +0900
Fix reflection-calling `Set` method on arrays (dotnet#107529)
The test added in dotnet#106787 found an issue in the implementation of reflection calls to array `Set` methods. We used to throw the wrong exception type. There were probably other corner case bugs (like what exception is thrown when both element type is wrong and index is out of range and when/how value coercion should happen). This should fix that.
commit c534080
Author: Tom McDonald <[email protected]>
Date: Mon Sep 9 15:21:41 2024 -0400
Avoid using OpenThread for out of process SetThreadContext debugging (dotnet#107511)
* Avoid using OpenThread in out of process thread context scenarios
* Add comments
* Update src/coreclr/debug/di/process.cpp
Co-authored-by: mikelle-rogers <[email protected]>
* Update src/coreclr/debug/di/process.cpp
Co-authored-by: mikelle-rogers <[email protected]>
* Update src/coreclr/debug/di/process.cpp
Co-authored-by: Noah Falk <[email protected]>
---------
Co-authored-by: mikelle-rogers <[email protected]>
Co-authored-by: Noah Falk <[email protected]>
commit d2c7db0
Author: Tanner Gooding <[email protected]>
Date: Mon Sep 9 11:06:45 2024 -0700
Disable TensorExtensionsTwoSpanInFloatOut due to dotnet#107254 (dotnet#107555)
commit b7b91cb
Author: Aaron Robinson <[email protected]>
Date: Mon Sep 9 09:08:31 2024 -0700
Convert some handle APIs to QCalls (dotnet#107513)
Convert RuntimeTypeHandle.GetAssembly()
Convert RuntimeTypeHandle.GetModule()
Convert RuntimeAssembly.GetManifestModule()
commit 600f6bd
Author: David Wrighton <[email protected]>
Date: Mon Sep 9 09:04:51 2024 -0700
Fix thread static cleanup paths (dotnet#107438)
* Fix thread static cleanup paths
- Do not destroy GC handles while holding the spin lock
- Free the pLoaderHandle array when the thread is terminated
* When using a ThreadStatics stress test on collectible assemblies, a few more issues were found
- Fix issue where the LoaderAllocator's SegmentedHandleIndex wasn't being freed
- Fix issue where the logic to re-use TLSIndex values wasn't working properly
commit fe7a52d
Author: Linus Hamlin <[email protected]>
Date: Mon Sep 9 17:57:31 2024 +0200
Remove ActiveIssue for solved issues in Vector tests (dotnet#107127)
commit 0c33c6f
Author: Elinor Fung <[email protected]>
Date: Mon Sep 9 08:21:16 2024 -0700
Fix module being set as tenured too early (dotnet#107489)
commit 2fb3629
Author: Elinor Fung <[email protected]>
Date: Mon Sep 9 08:03:27 2024 -0700
Remove `BaseDomain` use in `LoaderAllocator` and event tracing helpers (dotnet#107481)
- Remove `BaseDomain` member on `LoaderAllocator`
- Add asserts in functions using `AppDomain` that the loader allocator is collectible and the type is `LAT_Assembly` (so `AssemblyLoaderAllocator` which always had `AppDomain`)
- Remove unnecessary `BaseDomain`/`AppDomain` parameters from event tracing helpers
- They were always being called with the current app domain
commit 62133e0
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date: Mon Sep 9 16:56:30 2024 +0200
[main] Update dependencies from dotnet/xharness (dotnet#107291)
* Update dependencies from https://github.com/dotnet/xharness build 20240902.2
Microsoft.DotNet.XHarness.CLI , Microsoft.DotNet.XHarness.TestRunners.Common , Microsoft.DotNet.XHarness.TestRunners.Xunit
From Version 9.0.0-prerelease.24452.1 -> To Version 9.0.0-prerelease.24452.2
* Update dependencies from https://github.com/dotnet/xharness build 20240903.1
Microsoft.DotNet.XHarness.CLI , Microsoft.DotNet.XHarness.TestRunners.Common , Microsoft.DotNet.XHarness.TestRunners.Xunit
From Version 9.0.0-prerelease.24452.2 -> To Version 9.0.0-prerelease.24453.1
* Update dependencies from https://github.com/dotnet/xharness build 20240904.2
Microsoft.DotNet.XHarness.CLI , Microsoft.DotNet.XHarness.TestRunners.Common , Microsoft.DotNet.XHarness.TestRunners.Xunit
From Version 9.0.0-prerelease.24453.1 -> To Version 10.0.0-prerelease.24454.2
* Update dependencies from https://github.com/dotnet/xharness build 20240906.1
Microsoft.DotNet.XHarness.CLI , Microsoft.DotNet.XHarness.TestRunners.Common , Microsoft.DotNet.XHarness.TestRunners.Xunit
From Version 10.0.0-prerelease.24454.2 -> To Version 10.0.0-prerelease.24456.1
* Update dependencies from https://github.com/dotnet/xharness build 20240909.1
Microsoft.DotNet.XHarness.CLI , Microsoft.DotNet.XHarness.TestRunners.Common , Microsoft.DotNet.XHarness.TestRunners.Xunit
From Version 10.0.0-prerelease.24456.1 -> To Version 10.0.0-prerelease.24459.1
---------
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: Ilona Tomkowicz <[email protected]>
commit 4c0973e
Author: Jeremi Kurdek <[email protected]>
Date: Mon Sep 9 17:53:45 2024 +0300
Fix passing assemblies using relative path (dotnet#107536)
commit 67e5768
Author: Katelyn Gadd <[email protected]>
Date: Mon Sep 9 06:19:10 2024 -0700
[wasm] Implement MINT_NEWARR in jiterpreter (dotnet#107430)
commit 176754d
Author: Matous Kozak <[email protected]>
Date: Mon Sep 9 13:35:01 2024 +0200
[mono][infra] decrease CPU count for fullAOT CI build (dotnet#107531)
commit 49bf719
Author: Pavel Savara <[email protected]>
Date: Mon Sep 9 12:30:47 2024 +0200
[browser][MT] fix feature detection on webworker (dotnet#107452)
commit aa418fc
Author: Preeyan Parmar <[email protected]>
Date: Sun Sep 8 22:44:27 2024 +0100
Remove unused declarations from clsload.hpp (dotnet#107509)
* Remove unused declarations from clsload.hpp
* also remove unused ClassLoader::TryEnsureLoaded
commit 7d68c7f
Author: Steve <[email protected]>
Date: Mon Sep 9 06:36:18 2024 +0900
Implement getClassAssemblyName (dotnet#106959)
* Add getClassAssemblyName
* Handle nullptrs
* Remove CORINFO_ASSEMBLY_HANDLE
* Address feedbacks
Co-authored-by: Jan Kotas <[email protected]>
commit 39c84a3
Author: Jan Kotas <[email protected]>
Date: Sun Sep 8 11:24:13 2024 -0700
Fix corner-case accounting bug in new codeheap allocation (dotnet#107492)
The size of internal CodeHeap structures was not included in
codeheap memory reservation. It caused false OOM exception to
be thrown when JITed method code size was near 64kB multiple
commit 10f6c4c
Author: Aaron Robinson <[email protected]>
Date: Sun Sep 8 11:02:41 2024 -0700
Convert WaitHandle FCalls to QCalls (dotnet#107488)
commit b523ec5
Author: Aman Khalid <[email protected]>
Date: Sun Sep 8 14:42:04 2024 +0000
JIT: Simplify block insertion logic during loop canonicalization (dotnet#107371)1 parent 47d20a0 commit 166b880
File tree
128 files changed
+2064
-1406
lines changed- .config
- eng
- pipelines/common/templates/runtimes
- src
- coreclr
- System.Private.CoreLib/src/System
- Reflection
- Threading
- debug
- daccess
- di
- dlls/mscorrc
- inc
- jit
- nativeaot/System.Private.CoreLib/src
- Internal/Runtime/Augments
- System
- Reflection/Runtime/TypeInfos
- tools
- Common/JitInterface
- ThunkGenerator
- aot/jitinterface
- superpmi
- superpmi-shim-collector
- superpmi-shim-counter
- superpmi-shim-simple
- superpmi
- vm
- installer/tests
- HostActivation.Tests/FrameworkResolution
- TestUtils
- libraries
- Common/tests/WasmTestRunner
- System.Numerics.Tensors/tests
- System.Numerics.Vectors/tests
- System.Private.CoreLib/src/System/Threading
- Wasi
- System.Private.Uri/src/System
- System.Runtime.Intrinsics/tests/Vectors
- System.Text.RegularExpressions/gen
- mono
- System.Private.CoreLib/src/System/Threading
- browser/runtime
- mono/mini/interp
- sample/wasi/http-p2
- wasi/testassets
- native/corehost
- fxr
- hostmisc
- tasks
- MonoTargetsTasks/ILStrip
- WasmAppBuilder
- tests/JIT/Regression/JitBlue
- Runtime_105619
- Runtime_105620
- Runtime_106869
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
128 files changed
+2064
-1406
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
18 | | - | |
| 18 | + | |
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
316 | 316 | | |
317 | 317 | | |
318 | 318 | | |
319 | | - | |
| 319 | + | |
320 | 320 | | |
321 | | - | |
| 321 | + | |
322 | 322 | | |
323 | | - | |
| 323 | + | |
324 | 324 | | |
325 | | - | |
| 325 | + | |
326 | 326 | | |
327 | | - | |
| 327 | + | |
328 | 328 | | |
329 | | - | |
| 329 | + | |
330 | 330 | | |
331 | 331 | | |
332 | 332 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
180 | 180 | | |
181 | 181 | | |
182 | 182 | | |
183 | | - | |
184 | | - | |
185 | | - | |
| 183 | + | |
| 184 | + | |
| 185 | + | |
186 | 186 | | |
187 | 187 | | |
188 | 188 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
73 | | - | |
| 73 | + | |
74 | 74 | | |
75 | 75 | | |
76 | 76 | | |
| |||
Lines changed: 30 additions & 8 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
115 | 115 | | |
116 | 116 | | |
117 | 117 | | |
118 | | - | |
119 | | - | |
120 | 118 | | |
121 | 119 | | |
122 | 120 | | |
| |||
263 | 261 | | |
264 | 262 | | |
265 | 263 | | |
266 | | - | |
| 264 | + | |
267 | 265 | | |
268 | 266 | | |
269 | 267 | | |
| |||
324 | 322 | | |
325 | 323 | | |
326 | 324 | | |
327 | | - | |
| 325 | + | |
328 | 326 | | |
329 | 327 | | |
330 | 328 | | |
| |||
586 | 584 | | |
587 | 585 | | |
588 | 586 | | |
589 | | - | |
| 587 | + | |
590 | 588 | | |
591 | | - | |
| 589 | + | |
| 590 | + | |
| 591 | + | |
| 592 | + | |
| 593 | + | |
| 594 | + | |
| 595 | + | |
| 596 | + | |
| 597 | + | |
592 | 598 | | |
593 | 599 | | |
594 | 600 | | |
| |||
701 | 707 | | |
702 | 708 | | |
703 | 709 | | |
| 710 | + | |
| 711 | + | |
| 712 | + | |
| 713 | + | |
| 714 | + | |
| 715 | + | |
| 716 | + | |
| 717 | + | |
| 718 | + | |
| 719 | + | |
| 720 | + | |
| 721 | + | |
| 722 | + | |
704 | 723 | | |
705 | | - | |
| 724 | + | |
| 725 | + | |
| 726 | + | |
| 727 | + | |
706 | 728 | | |
707 | 729 | | |
708 | 730 | | |
| |||
713 | 735 | | |
714 | 736 | | |
715 | 737 | | |
716 | | - | |
| 738 | + | |
717 | 739 | | |
718 | 740 | | |
719 | 741 | | |
| |||
Lines changed: 3 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
82 | 82 | | |
83 | 83 | | |
84 | 84 | | |
85 | | - | |
| 85 | + | |
86 | 86 | | |
87 | 87 | | |
88 | 88 | | |
| |||
1227 | 1227 | | |
1228 | 1228 | | |
1229 | 1229 | | |
1230 | | - | |
| 1230 | + | |
1231 | 1231 | | |
1232 | 1232 | | |
1233 | 1233 | | |
| |||
1388 | 1388 | | |
1389 | 1389 | | |
1390 | 1390 | | |
1391 | | - | |
| 1391 | + | |
1392 | 1392 | | |
1393 | 1393 | | |
1394 | 1394 | | |
| |||
Lines changed: 34 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
306 | 306 | | |
307 | 307 | | |
308 | 308 | | |
| 309 | + | |
| 310 | + | |
| 311 | + | |
| 312 | + | |
| 313 | + | |
| 314 | + | |
| 315 | + | |
| 316 | + | |
| 317 | + | |
| 318 | + | |
| 319 | + | |
| 320 | + | |
| 321 | + | |
309 | 322 | | |
310 | | - | |
| 323 | + | |
| 324 | + | |
| 325 | + | |
| 326 | + | |
| 327 | + | |
| 328 | + | |
| 329 | + | |
| 330 | + | |
| 331 | + | |
| 332 | + | |
| 333 | + | |
| 334 | + | |
| 335 | + | |
| 336 | + | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
311 | 340 | | |
312 | 341 | | |
313 | | - | |
| 342 | + | |
| 343 | + | |
| 344 | + | |
| 345 | + | |
314 | 346 | | |
315 | 347 | | |
316 | 348 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
34 | | - | |
| 34 | + | |
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
| |||
Lines changed: 30 additions & 13 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
151 | 151 | | |
152 | 152 | | |
153 | 153 | | |
154 | | - | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
155 | 160 | | |
156 | | - | |
157 | | - | |
| 161 | + | |
| 162 | + | |
158 | 163 | | |
159 | | - | |
160 | | - | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
161 | 172 | | |
162 | 173 | | |
163 | 174 | | |
| |||
175 | 186 | | |
176 | 187 | | |
177 | 188 | | |
178 | | - | |
179 | | - | |
180 | | - | |
181 | | - | |
182 | | - | |
| 189 | + | |
183 | 190 | | |
184 | 191 | | |
185 | 192 | | |
| |||
247 | 254 | | |
248 | 255 | | |
249 | 256 | | |
250 | | - | |
| 257 | + | |
| 258 | + | |
| 259 | + | |
| 260 | + | |
| 261 | + | |
| 262 | + | |
| 263 | + | |
| 264 | + | |
| 265 | + | |
251 | 266 | | |
252 | | - | |
253 | | - | |
| 267 | + | |
| 268 | + | |
| 269 | + | |
254 | 270 | | |
255 | 271 | | |
256 | 272 | | |
| |||
327 | 343 | | |
328 | 344 | | |
329 | 345 | | |
| 346 | + | |
330 | 347 | | |
331 | 348 | | |
332 | 349 | | |
| |||
Lines changed: 8 additions & 13 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | | - | |
12 | | - | |
| 11 | + | |
| 12 | + | |
13 | 13 | | |
14 | 14 | | |
15 | | - | |
16 | | - | |
17 | | - | |
18 | | - | |
19 | | - | |
20 | | - | |
| 15 | + | |
21 | 16 | | |
22 | | - | |
23 | | - | |
| 17 | + | |
| 18 | + | |
24 | 19 | | |
25 | 20 | | |
26 | 21 | | |
27 | | - | |
| 22 | + | |
28 | 23 | | |
29 | 24 | | |
30 | 25 | | |
| |||
34 | 29 | | |
35 | 30 | | |
36 | 31 | | |
37 | | - | |
38 | | - | |
| 32 | + | |
| 33 | + | |
39 | 34 | | |
40 | 35 | | |
0 commit comments