[PATCH] D134086: [LangRef] Clarify that noimplicitfloat disables all implicit vectors not just floating point.
Craig Topper via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Sep 19 10:14:01 PDT 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGe6f8a6b56e27: [LangRef] Clarify that noimplicitfloat disables all implicit vectors not just… (authored by craig.topper).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D134086/new/
https://reviews.llvm.org/D134086
Files:
llvm/docs/LangRef.rst
Index: llvm/docs/LangRef.rst
===================================================================
--- llvm/docs/LangRef.rst
+++ llvm/docs/LangRef.rst
@@ -1781,10 +1781,15 @@
function can return a pointer to a previously deallocated memory object.
``noimplicitfloat``
Disallows implicit floating-point code. This inhibits optimizations that
- use floating-point code and floating-point/SIMD/vector registers for
- operations that are not nominally floating-point. LLVM instructions that
- perform floating-point operations or require access to floating-point
- registers may still cause floating-point code to be generated.
+ use floating-point code and floating-point registers for operations that are
+ not nominally floating-point. LLVM instructions that perform floating-point
+ operations or require access to floating-point registers may still cause
+ floating-point code to be generated.
+
+ Also inhibits optimizations that create SIMD/vector code and registers from
+ scalar code such as vectorization or memcpy/memset optimization. This
+ includes integer vectors. Vector instructions present in IR may still cause
+ vector code to be generated.
``noinline``
This attribute indicates that the inliner should never inline this
function in any situation. This attribute may not be used together
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D134086.461257.patch
Type: text/x-patch
Size: 1359 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220919/f8f4e8c7/attachment.bin>
More information about the llvm-commits
mailing list