Skip to content

Commit e464442

Browse files
authored
Merge branch 'main' into riscv-fix-overflow-infinite-loop
2 parents 06dbd79 + 039d2ec commit e464442

302 files changed

Lines changed: 9303 additions & 4320 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
]
1616
},
1717
"microsoft.dotnet.xharness.cli": {
18-
"version": "9.0.0-prerelease.24252.1",
18+
"version": "9.0.0-prerelease.24256.1",
1919
"commands": [
2020
"xharness"
2121
]

docs/design/coreclr/botr/vectors-and-intrinsics.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,14 @@ private void SomeVectorizationHelper()
156156
}
157157
```
158158

159+
#### Non-Deterministic Intrinsics in System.Private.Corelib
160+
161+
Some APIs exposed in System.Private.Corelib are intentionally non-deterministic across hardware and instead only ensure determinism within the scope of a single process. To facilitate the support of such APIs, the JIT defines `Compiler::BlockNonDeterministicIntrinsics(bool mustExpand)` which should be used to help block such APIs from expanding in scenarios such as ReadyToRun. Additionally, such APIs should recursively call themselves so that indirect invocation (such as via a delegate, function pointer, reflection, etc) will compute the same result.
162+
163+
An example of such a non-deterministic API is the `ConvertToIntegerNative` APIs exposed on `System.Single` and `System.Double`. These APIs convert from the source value to the target integer type using the fastest mechanism available for the underlying hardware. They exist due to the IEEE 754 specification leaving conversions undefined when the input cannot fit into the output (for example converting `float.MaxValue` to `int`) and thus different hardware having historically provided differing behaviors on these edge cases. They allow developers who do not need to be concerned with edge case handling but where the performance overhead of normalizing results for the default cast operator is too great.
164+
165+
Another example is the various `*Estimate` APIs, such as `float.ReciprocalSqrtEstimate`. These APIs allow a user to likewise opt into a faster result at the cost of some inaccuracy, where the exact inaccuracy encountered depends on the input and the underlying hardware the instruction is executed against.
166+
159167
# Mechanisms in the JIT to generate correct code to handle varied instruction set support
160168

161169
The JIT receives flags which instruct it on what instruction sets are valid to use, and has access to a new jit interface api `notifyInstructionSetUsage(isa, bool supportBehaviorRequired)`.

eng/Version.Details.xml

Lines changed: 72 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Dependencies>
22
<ProductDependencies>
3-
<Dependency Name="Microsoft.NETCore.Runtime.ICU.Transport" Version="9.0.0-preview.5.24230.1">
3+
<Dependency Name="Microsoft.NETCore.Runtime.ICU.Transport" Version="9.0.0-preview.5.24256.1">
44
<Uri>https://github.com/dotnet/icu</Uri>
5-
<Sha>3230636546e2b2dc9648c4385c201e28a550f0ea</Sha>
5+
<Sha>a0317d66a451e1d1d261814a4c5e1d61e952bf3b</Sha>
66
</Dependency>
77
<Dependency Name="System.Net.MsQuic.Transport" Version="9.0.0-alpha.1.24167.3">
88
<Uri>https://github.com/dotnet/msquic</Uri>
@@ -79,15 +79,15 @@
7979
<SourceBuild RepoName="emsdk" ManagedOnly="true" />
8080
</Dependency>
8181
<!-- Intermediate is necessary for source build. -->
82-
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-reference-packages" Version="9.0.0-alpha.1.24252.1">
82+
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-reference-packages" Version="9.0.0-alpha.1.24256.2">
8383
<Uri>https://github.com/dotnet/source-build-reference-packages</Uri>
84-
<Sha>9c1cc994f8123ec2a923c5179c238c13da1b4ab7</Sha>
84+
<Sha>a4c02499bef24d0e16255657ccdb160d26c82c32</Sha>
8585
<SourceBuild RepoName="source-build-reference-packages" ManagedOnly="true" />
8686
</Dependency>
8787
<!-- Intermediate is necessary for source build. -->
88-
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-externals" Version="9.0.0-alpha.1.24256.2">
88+
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-externals" Version="9.0.0-alpha.1.24258.1">
8989
<Uri>https://github.com/dotnet/source-build-externals</Uri>
90-
<Sha>94b5dd594f49b5b38e28e4d5c733caa8555947a4</Sha>
90+
<Sha>7dc4b475c02c94754d95520e81d107bbe1909336</Sha>
9191
<SourceBuild RepoName="source-build-externals" ManagedOnly="true" />
9292
</Dependency>
9393
</ProductDependencies>
@@ -174,57 +174,57 @@
174174
<Uri>https://github.com/dotnet/arcade</Uri>
175175
<Sha>020255bcf7d0b8beed7de05338d97396982ae527</Sha>
176176
</Dependency>
177-
<Dependency Name="System.ComponentModel.TypeConverter.TestData" Version="9.0.0-beta.24252.1">
177+
<Dependency Name="System.ComponentModel.TypeConverter.TestData" Version="9.0.0-beta.24256.1">
178178
<Uri>https://github.com/dotnet/runtime-assets</Uri>
179-
<Sha>5d106f714e1a2ea66e7f90d2bfd0c716e85945e0</Sha>
179+
<Sha>b1354bde4fb8a70380c75be89eff26e8ccd852c2</Sha>
180180
</Dependency>
181-
<Dependency Name="System.Data.Common.TestData" Version="9.0.0-beta.24252.1">
181+
<Dependency Name="System.Data.Common.TestData" Version="9.0.0-beta.24256.1">
182182
<Uri>https://github.com/dotnet/runtime-assets</Uri>
183-
<Sha>5d106f714e1a2ea66e7f90d2bfd0c716e85945e0</Sha>
183+
<Sha>b1354bde4fb8a70380c75be89eff26e8ccd852c2</Sha>
184184
</Dependency>
185-
<Dependency Name="System.Drawing.Common.TestData" Version="9.0.0-beta.24252.1">
185+
<Dependency Name="System.Drawing.Common.TestData" Version="9.0.0-beta.24256.1">
186186
<Uri>https://github.com/dotnet/runtime-assets</Uri>
187-
<Sha>5d106f714e1a2ea66e7f90d2bfd0c716e85945e0</Sha>
187+
<Sha>b1354bde4fb8a70380c75be89eff26e8ccd852c2</Sha>
188188
</Dependency>
189-
<Dependency Name="System.Formats.Tar.TestData" Version="9.0.0-beta.24252.1">
189+
<Dependency Name="System.Formats.Tar.TestData" Version="9.0.0-beta.24256.1">
190190
<Uri>https://github.com/dotnet/runtime-assets</Uri>
191-
<Sha>5d106f714e1a2ea66e7f90d2bfd0c716e85945e0</Sha>
191+
<Sha>b1354bde4fb8a70380c75be89eff26e8ccd852c2</Sha>
192192
</Dependency>
193-
<Dependency Name="System.IO.Compression.TestData" Version="9.0.0-beta.24252.1">
193+
<Dependency Name="System.IO.Compression.TestData" Version="9.0.0-beta.24256.1">
194194
<Uri>https://github.com/dotnet/runtime-assets</Uri>
195-
<Sha>5d106f714e1a2ea66e7f90d2bfd0c716e85945e0</Sha>
195+
<Sha>b1354bde4fb8a70380c75be89eff26e8ccd852c2</Sha>
196196
</Dependency>
197-
<Dependency Name="System.IO.Packaging.TestData" Version="9.0.0-beta.24252.1">
197+
<Dependency Name="System.IO.Packaging.TestData" Version="9.0.0-beta.24256.1">
198198
<Uri>https://github.com/dotnet/runtime-assets</Uri>
199-
<Sha>5d106f714e1a2ea66e7f90d2bfd0c716e85945e0</Sha>
199+
<Sha>b1354bde4fb8a70380c75be89eff26e8ccd852c2</Sha>
200200
</Dependency>
201-
<Dependency Name="System.Net.TestData" Version="9.0.0-beta.24252.1">
201+
<Dependency Name="System.Net.TestData" Version="9.0.0-beta.24256.1">
202202
<Uri>https://github.com/dotnet/runtime-assets</Uri>
203-
<Sha>5d106f714e1a2ea66e7f90d2bfd0c716e85945e0</Sha>
203+
<Sha>b1354bde4fb8a70380c75be89eff26e8ccd852c2</Sha>
204204
</Dependency>
205-
<Dependency Name="System.Private.Runtime.UnicodeData" Version="9.0.0-beta.24252.1">
205+
<Dependency Name="System.Private.Runtime.UnicodeData" Version="9.0.0-beta.24256.1">
206206
<Uri>https://github.com/dotnet/runtime-assets</Uri>
207-
<Sha>5d106f714e1a2ea66e7f90d2bfd0c716e85945e0</Sha>
207+
<Sha>b1354bde4fb8a70380c75be89eff26e8ccd852c2</Sha>
208208
</Dependency>
209-
<Dependency Name="System.Runtime.TimeZoneData" Version="9.0.0-beta.24252.1">
209+
<Dependency Name="System.Runtime.TimeZoneData" Version="9.0.0-beta.24256.1">
210210
<Uri>https://github.com/dotnet/runtime-assets</Uri>
211-
<Sha>5d106f714e1a2ea66e7f90d2bfd0c716e85945e0</Sha>
211+
<Sha>b1354bde4fb8a70380c75be89eff26e8ccd852c2</Sha>
212212
</Dependency>
213-
<Dependency Name="System.Security.Cryptography.X509Certificates.TestData" Version="9.0.0-beta.24252.1">
213+
<Dependency Name="System.Security.Cryptography.X509Certificates.TestData" Version="9.0.0-beta.24256.1">
214214
<Uri>https://github.com/dotnet/runtime-assets</Uri>
215-
<Sha>5d106f714e1a2ea66e7f90d2bfd0c716e85945e0</Sha>
215+
<Sha>b1354bde4fb8a70380c75be89eff26e8ccd852c2</Sha>
216216
</Dependency>
217-
<Dependency Name="System.Text.RegularExpressions.TestData" Version="9.0.0-beta.24252.1">
217+
<Dependency Name="System.Text.RegularExpressions.TestData" Version="9.0.0-beta.24256.1">
218218
<Uri>https://github.com/dotnet/runtime-assets</Uri>
219-
<Sha>5d106f714e1a2ea66e7f90d2bfd0c716e85945e0</Sha>
219+
<Sha>b1354bde4fb8a70380c75be89eff26e8ccd852c2</Sha>
220220
</Dependency>
221-
<Dependency Name="System.Windows.Extensions.TestData" Version="9.0.0-beta.24252.1">
221+
<Dependency Name="System.Windows.Extensions.TestData" Version="9.0.0-beta.24256.1">
222222
<Uri>https://github.com/dotnet/runtime-assets</Uri>
223-
<Sha>5d106f714e1a2ea66e7f90d2bfd0c716e85945e0</Sha>
223+
<Sha>b1354bde4fb8a70380c75be89eff26e8ccd852c2</Sha>
224224
</Dependency>
225-
<Dependency Name="Microsoft.DotNet.CilStrip.Sources" Version="9.0.0-beta.24252.1">
225+
<Dependency Name="Microsoft.DotNet.CilStrip.Sources" Version="9.0.0-beta.24256.1">
226226
<Uri>https://github.com/dotnet/runtime-assets</Uri>
227-
<Sha>5d106f714e1a2ea66e7f90d2bfd0c716e85945e0</Sha>
227+
<Sha>b1354bde4fb8a70380c75be89eff26e8ccd852c2</Sha>
228228
</Dependency>
229229
<Dependency Name="runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk" Version="16.0.5-alpha.1.24204.1" CoherentParentDependency="Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100.Transport">
230230
<Uri>https://github.com/dotnet/llvm-project</Uri>
@@ -282,55 +282,55 @@
282282
<Uri>https://github.com/dotnet/llvm-project</Uri>
283283
<Sha>26f8c30340764cfa7fa9090dc01a36c222bf09c1</Sha>
284284
</Dependency>
285-
<Dependency Name="Microsoft.NETCore.App.Runtime.win-x64" Version="9.0.0-preview.5.24256.1">
285+
<Dependency Name="Microsoft.NETCore.App.Runtime.win-x64" Version="9.0.0-preview.5.24262.2">
286286
<Uri>https://github.com/dotnet/runtime</Uri>
287-
<Sha>84b33395057737db3ea342a5151feb6b90c1b6f6</Sha>
287+
<Sha>073e35e7e32624e0f841d94364d2f28c73662ff7</Sha>
288288
</Dependency>
289-
<Dependency Name="runtime.native.System.IO.Ports" Version="9.0.0-preview.5.24256.1">
289+
<Dependency Name="runtime.native.System.IO.Ports" Version="9.0.0-preview.5.24262.2">
290290
<Uri>https://github.com/dotnet/runtime</Uri>
291-
<Sha>84b33395057737db3ea342a5151feb6b90c1b6f6</Sha>
291+
<Sha>073e35e7e32624e0f841d94364d2f28c73662ff7</Sha>
292292
</Dependency>
293-
<Dependency Name="Microsoft.NETCore.ILAsm" Version="9.0.0-preview.5.24256.1">
293+
<Dependency Name="Microsoft.NETCore.ILAsm" Version="9.0.0-preview.5.24262.2">
294294
<Uri>https://github.com/dotnet/runtime</Uri>
295-
<Sha>84b33395057737db3ea342a5151feb6b90c1b6f6</Sha>
295+
<Sha>073e35e7e32624e0f841d94364d2f28c73662ff7</Sha>
296296
</Dependency>
297-
<Dependency Name="Microsoft.NET.Sdk.IL" Version="9.0.0-preview.5.24256.1">
297+
<Dependency Name="Microsoft.NET.Sdk.IL" Version="9.0.0-preview.5.24262.2">
298298
<Uri>https://github.com/dotnet/runtime</Uri>
299-
<Sha>84b33395057737db3ea342a5151feb6b90c1b6f6</Sha>
299+
<Sha>073e35e7e32624e0f841d94364d2f28c73662ff7</Sha>
300300
</Dependency>
301-
<Dependency Name="System.Text.Json" Version="9.0.0-preview.5.24256.1">
301+
<Dependency Name="System.Text.Json" Version="9.0.0-preview.5.24262.2">
302302
<Uri>https://github.com/dotnet/runtime</Uri>
303-
<Sha>84b33395057737db3ea342a5151feb6b90c1b6f6</Sha>
303+
<Sha>073e35e7e32624e0f841d94364d2f28c73662ff7</Sha>
304304
</Dependency>
305305
<!-- Intermediate is necessary for source build. -->
306-
<Dependency Name="Microsoft.SourceBuild.Intermediate.runtime.linux-x64" Version="9.0.0-preview.5.24256.1">
306+
<Dependency Name="Microsoft.SourceBuild.Intermediate.runtime.linux-x64" Version="9.0.0-preview.5.24262.2">
307307
<Uri>https://github.com/dotnet/runtime</Uri>
308-
<Sha>84b33395057737db3ea342a5151feb6b90c1b6f6</Sha>
308+
<Sha>073e35e7e32624e0f841d94364d2f28c73662ff7</Sha>
309309
<SourceBuild RepoName="runtime" ManagedOnly="false" />
310310
</Dependency>
311-
<Dependency Name="Microsoft.DotNet.ILCompiler" Version="9.0.0-preview.5.24256.1">
311+
<Dependency Name="Microsoft.DotNet.ILCompiler" Version="9.0.0-preview.5.24262.2">
312312
<Uri>https://github.com/dotnet/runtime</Uri>
313-
<Sha>84b33395057737db3ea342a5151feb6b90c1b6f6</Sha>
313+
<Sha>073e35e7e32624e0f841d94364d2f28c73662ff7</Sha>
314314
</Dependency>
315-
<Dependency Name="System.Reflection.Metadata" Version="9.0.0-preview.5.24256.1">
315+
<Dependency Name="System.Reflection.Metadata" Version="9.0.0-preview.5.24262.2">
316316
<Uri>https://github.com/dotnet/runtime</Uri>
317-
<Sha>84b33395057737db3ea342a5151feb6b90c1b6f6</Sha>
317+
<Sha>073e35e7e32624e0f841d94364d2f28c73662ff7</Sha>
318318
</Dependency>
319-
<Dependency Name="System.Reflection.MetadataLoadContext" Version="9.0.0-preview.5.24256.1">
319+
<Dependency Name="System.Reflection.MetadataLoadContext" Version="9.0.0-preview.5.24262.2">
320320
<Uri>https://github.com/dotnet/runtime</Uri>
321-
<Sha>84b33395057737db3ea342a5151feb6b90c1b6f6</Sha>
321+
<Sha>073e35e7e32624e0f841d94364d2f28c73662ff7</Sha>
322322
</Dependency>
323-
<Dependency Name="Microsoft.DotNet.XHarness.TestRunners.Common" Version="9.0.0-prerelease.24252.1">
323+
<Dependency Name="Microsoft.DotNet.XHarness.TestRunners.Common" Version="9.0.0-prerelease.24256.1">
324324
<Uri>https://github.com/dotnet/xharness</Uri>
325-
<Sha>53a781a352194650f998d3056a514571937b26e5</Sha>
325+
<Sha>62a8662088425e03f7ba44a4ec817c198e38d0f9</Sha>
326326
</Dependency>
327-
<Dependency Name="Microsoft.DotNet.XHarness.TestRunners.Xunit" Version="9.0.0-prerelease.24252.1">
327+
<Dependency Name="Microsoft.DotNet.XHarness.TestRunners.Xunit" Version="9.0.0-prerelease.24256.1">
328328
<Uri>https://github.com/dotnet/xharness</Uri>
329-
<Sha>53a781a352194650f998d3056a514571937b26e5</Sha>
329+
<Sha>62a8662088425e03f7ba44a4ec817c198e38d0f9</Sha>
330330
</Dependency>
331-
<Dependency Name="Microsoft.DotNet.XHarness.CLI" Version="9.0.0-prerelease.24252.1">
331+
<Dependency Name="Microsoft.DotNet.XHarness.CLI" Version="9.0.0-prerelease.24256.1">
332332
<Uri>https://github.com/dotnet/xharness</Uri>
333-
<Sha>53a781a352194650f998d3056a514571937b26e5</Sha>
333+
<Sha>62a8662088425e03f7ba44a4ec817c198e38d0f9</Sha>
334334
</Dependency>
335335
<Dependency Name="Microsoft.DotNet.PackageTesting" Version="9.0.0-beta.24253.1">
336336
<Uri>https://github.com/dotnet/arcade</Uri>
@@ -352,25 +352,25 @@
352352
<Uri>https://dev.azure.com/dnceng/internal/_git/dotnet-optimization</Uri>
353353
<Sha>c3acfd159662959ff09f3a0d7663023db48bb78a</Sha>
354354
</Dependency>
355-
<Dependency Name="Microsoft.DotNet.HotReload.Utils.Generator.BuildTool" Version="9.0.0-alpha.0.24222.1">
355+
<Dependency Name="Microsoft.DotNet.HotReload.Utils.Generator.BuildTool" Version="9.0.0-alpha.0.24257.1">
356356
<Uri>https://github.com/dotnet/hotreload-utils</Uri>
357-
<Sha>249050528f8ac9882f04b2c719bda3e5a532b258</Sha>
357+
<Sha>34cf2c2dd1249d43f8a5628cac0775079c74296a</Sha>
358358
</Dependency>
359-
<Dependency Name="System.Runtime.Numerics.TestData" Version="9.0.0-beta.24252.1">
359+
<Dependency Name="System.Runtime.Numerics.TestData" Version="9.0.0-beta.24256.1">
360360
<Uri>https://github.com/dotnet/runtime-assets</Uri>
361-
<Sha>5d106f714e1a2ea66e7f90d2bfd0c716e85945e0</Sha>
361+
<Sha>b1354bde4fb8a70380c75be89eff26e8ccd852c2</Sha>
362362
</Dependency>
363-
<Dependency Name="Microsoft.Net.Compilers.Toolset" Version="4.11.0-1.24228.2">
363+
<Dependency Name="Microsoft.Net.Compilers.Toolset" Version="4.11.0-2.24260.2">
364364
<Uri>https://github.com/dotnet/roslyn</Uri>
365-
<Sha>75995e26b4c6f9a30ace7bcb65c0b4e42c0b397c</Sha>
365+
<Sha>324e078a9b47b62cd6dec6c78c6308c4540aa1e5</Sha>
366366
</Dependency>
367-
<Dependency Name="Microsoft.CodeAnalysis" Version="4.11.0-1.24228.2">
367+
<Dependency Name="Microsoft.CodeAnalysis" Version="4.11.0-2.24260.2">
368368
<Uri>https://github.com/dotnet/roslyn</Uri>
369-
<Sha>75995e26b4c6f9a30ace7bcb65c0b4e42c0b397c</Sha>
369+
<Sha>324e078a9b47b62cd6dec6c78c6308c4540aa1e5</Sha>
370370
</Dependency>
371-
<Dependency Name="Microsoft.CodeAnalysis.CSharp" Version="4.11.0-1.24228.2">
371+
<Dependency Name="Microsoft.CodeAnalysis.CSharp" Version="4.11.0-2.24260.2">
372372
<Uri>https://github.com/dotnet/roslyn</Uri>
373-
<Sha>75995e26b4c6f9a30ace7bcb65c0b4e42c0b397c</Sha>
373+
<Sha>324e078a9b47b62cd6dec6c78c6308c4540aa1e5</Sha>
374374
</Dependency>
375375
<Dependency Name="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0-beta1.24225.1">
376376
<Uri>https://github.com/dotnet/roslyn-analyzers</Uri>
@@ -381,19 +381,19 @@
381381
<Sha>8dccccec1ce3bd2fb532ec77d7e092ab9d684db7</Sha>
382382
</Dependency>
383383
<!-- Intermediate is necessary for source build. -->
384-
<Dependency Name="Microsoft.SourceBuild.Intermediate.roslyn" Version="4.11.0-1.24228.2">
384+
<Dependency Name="Microsoft.SourceBuild.Intermediate.roslyn" Version="4.11.0-2.24260.2">
385385
<Uri>https://github.com/dotnet/roslyn</Uri>
386-
<Sha>75995e26b4c6f9a30ace7bcb65c0b4e42c0b397c</Sha>
386+
<Sha>324e078a9b47b62cd6dec6c78c6308c4540aa1e5</Sha>
387387
<SourceBuild RepoName="roslyn" ManagedOnly="true" />
388388
</Dependency>
389-
<Dependency Name="Microsoft.DotNet.ApiCompat.Task" Version="9.0.100-preview.5.24256.1">
389+
<Dependency Name="Microsoft.DotNet.ApiCompat.Task" Version="9.0.100-preview.5.24263.1">
390390
<Uri>https://github.com/dotnet/sdk</Uri>
391-
<Sha>4050252d2473dba0d40ded80bac55b2e7d602351</Sha>
391+
<Sha>190723c80d85721cdc58fd906e645c4029b947bb</Sha>
392392
</Dependency>
393393
<!-- Intermediate is necessary for source build. -->
394-
<Dependency Name="Microsoft.SourceBuild.Intermediate.sdk" Version="9.0.100-preview.5.24256.1">
394+
<Dependency Name="Microsoft.SourceBuild.Intermediate.sdk" Version="9.0.100-preview.5.24263.1">
395395
<Uri>https://github.com/dotnet/sdk</Uri>
396-
<Sha>4050252d2473dba0d40ded80bac55b2e7d602351</Sha>
396+
<Sha>190723c80d85721cdc58fd906e645c4029b947bb</Sha>
397397
<SourceBuild RepoName="sdk" ManagedOnly="true" />
398398
</Dependency>
399399
<Dependency Name="optimization.windows_nt-arm64.MIBC.Runtime" Version="1.0.0-prerelease.24223.3">

0 commit comments

Comments
 (0)