Skip to content

Commit 7c984aa

Browse files
Simplify FMV version selection rules (#370)
The existing version selection rules are unclear, underspecified, and result in unintuitive version orderings. Replace this with a simpler explicit selection algorithm.
1 parent afd6b56 commit 7c984aa

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

main/acle.md

+6-8
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,7 @@ Armv8.4-A [[ARMARMv84]](#ARMARMv84). Support is added for the Dot Product intrin
423423
* Removed Function Multi Versioning features ebf16, memtag3, and rpres.
424424
* Removed Function Multi Versioning feature dgh.
425425
* Document Function Multi Versioning feature dependencies.
426+
* Simplified Function Multi Versioning version selection rules.
426427
* Fixed range of operand `o0` (too small) in AArch64 system register designations.
427428
* Fixed SVE2.1 quadword gather load/scatter store intrinsics.
428429
* Removed unnecessary Zd argument from `svcvtnb_mf8[_f32_x2]_fpm`.
@@ -2909,14 +2910,11 @@ the selection algorithm is platform dependent, where with platform means
29092910
CPU/Vendor/OS as in the target triplet.
29102911
2. The selection is permanent for the
29112912
lifetime of the process.
2912-
3. Only those versions could be considered where all
2913-
dependent features are available.
2914-
2915-
Rules of version selection are in order:
2916-
2917-
4. Select the most specific version else
2918-
5. select the version with the highest priority else
2919-
6. `"default"` is selected if no other versions are suitable.
2913+
3. Among any two versions, the higher priority version is determined by
2914+
identifying the highest priority feature that is specified in exactly one of
2915+
the versions, and selecting that version.
2916+
4. The selection algorithm must select the highest priority versions whose
2917+
dependent features are all available.
29202918

29212919
## Weak linkage
29222920

0 commit comments

Comments
 (0)