Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SystemZ release notes for 18.x. #84560

Merged
merged 2 commits into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions clang/docs/ReleaseNotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1325,6 +1325,11 @@ AIX Support
or newer. Similar to the LTO support on AIX, ThinLTO is implemented with
the libLTO.so plugin.

SystemZ Support
^^^^^^^^^^^^^^^
- Properly support 16 byte atomic int/fp types and ops. Atomic __int128 (and
long double) variables are now aligned to 16 bytes by default (like gcc 14).

WebAssembly Support
^^^^^^^^^^^^^^^^^^^

Expand Down
5 changes: 5 additions & 0 deletions lld/docs/ReleaseNotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -163,5 +163,10 @@ WebAssembly Improvements
is read from object files within the archive. This matches the behaviour of
the ELF linker.

SystemZ
-------

* Add target support for SystemZ (s390x).

Fixes
#####
11 changes: 11 additions & 0 deletions llvm/docs/ReleaseNotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,17 @@ Changes to the RISC-V Backend
* ``-mcpu=sifive-p670`` was added.
* Support for the Zicond extension is no longer experimental.

Changes to the SystemZ Backend
------------------------------

* Properly support 16 byte atomic int/fp types and ops.
* Support i128 as legal type in VRs.
* Add an i128 cost model.
* Support building individual functions with backchain using the
__attribute__((target("backchain"))) syntax.
* Add exception handling for XPLINK.
* Add support for llvm-objcopy.

Changes to the WebAssembly Backend
----------------------------------

Expand Down
2 changes: 2 additions & 0 deletions openmp/docs/ReleaseNotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ from the `LLVM releases web site <https://llvm.org/releases/>`_.

Non-comprehensive list of changes in this release
=================================================

* SystemZ support added.
Loading