summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Doerfert <doerfert@cs.uni-saarland.de>2016-03-03 11:33:49 +0000
committerJohannes Doerfert <doerfert@cs.uni-saarland.de>2016-03-03 11:33:49 +0000
commit0a21113a52b800752bcc7973cfaa2a23f230385a (patch)
tree28cab4d966bcedd6c57db80c8c5a21c850b5d9df
parentd1be3b05bbffcab7f853393dae90df17ceb2a5bb (diff)
downloadbcm5719-llvm-0a21113a52b800752bcc7973cfaa2a23f230385a.tar.gz
bcm5719-llvm-0a21113a52b800752bcc7973cfaa2a23f230385a.zip
[DOC] Add documentation for the supported call instructions
llvm-svn: 262608
-rw-r--r--polly/docs/ReleaseNotes.rst17
1 files changed, 17 insertions, 0 deletions
diff --git a/polly/docs/ReleaseNotes.rst b/polly/docs/ReleaseNotes.rst
index 5de20536845..8e186c40167 100644
--- a/polly/docs/ReleaseNotes.rst
+++ b/polly/docs/ReleaseNotes.rst
@@ -49,6 +49,23 @@ the ``struct``).
s->B[i] += s->A[i];
}
+
+
+Function calls with known side effects
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+Function calls that have only known memory effects can be represented as
+accesses in the polyhedral model. While calls without side effects were
+supported before, we now allow and model two other kinds. The first are
+intrinsic calls to ``memcpy``, ``memmove`` and ``memset``. These calls can be
+represented precisely if the pointers involved are known and the given length
+is affine. Additionally, we allow to over-approximate function calls that are
+known only to read memory, read memory accesible through pointer arguments or
+access only memory accesible through pointer arguments. See also the function
+attributes ``readonly`` and ``argmemonly`` for more information.
+
+
+
Update of the isl math library
------------------------------
OpenPOWER on IntegriCloud