summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@intel.com>2019-02-18 17:59:47 +0000
committerCraig Topper <craig.topper@intel.com>2019-02-18 17:59:47 +0000
commiteb08430520461ae96c54247026e4baf3f5c3294c (patch)
tree870028601b2cc43e0a82496b859b015fb3c20daf
parent28a9d6338253d6dbe6048c5ff686536a1eb92005 (diff)
[ReleaseNotes] Add note about removal of Nios2 backend. Add some notes on X86 changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_80@354281 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/ReleaseNotes.rst16
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst
index 9e2ee95c6519..7129b69c9a64 100644
--- a/docs/ReleaseNotes.rst
+++ b/docs/ReleaseNotes.rst
@@ -134,6 +134,18 @@ Changes to the X86 Target
* Machine model for AMD bdver2 (Piledriver) CPU was added. It is used to support
instruction scheduling and other instruction cost heuristics.
+* New AVX512F gather and scatter intrinsics were added that take a <X x i1> mask
+ instead of a scalar integer. This removes the need for a bitcast in IR. The
+ new intrinsics are named like the old intrinsics with ``llvm.avx512.``
+ replaced with ``llvm.avx512.mask.``. The old intrinsics will be removed in a
+ future release.
+
+* Added ``cascadelake`` as a CPU name for -march. This is ``skylake-avx512``
+ with the addition of the ``avx512vnni`` instruction set.
+
+* ADCX instruction will no longer be emitted. This instruction is rarely better
+ than the legacy ADC instruction and just increased code size.
+
Changes to the AMDGPU Target
-----------------------------
@@ -156,6 +168,10 @@ use for it will be to add support for returning small structs as multiple
return values, once the underlying WebAssembly platform itself supports it.
Additionally, multithreading support is not yet included in the stable ABI.
+Changes to the Nios2 Target
+---------------------------
+
+* The Nios2 target was removed from this release.
Changes to the OCaml bindings
-----------------------------