summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexey Bataev <a.bataev@hotmail.com>2019-02-05 20:38:36 +0000
committerAlexey Bataev <a.bataev@hotmail.com>2019-02-05 20:38:36 +0000
commitc2dc4d4aefba285fd205f701e9c2404802fd0aaf (patch)
treea4793b30bf3b9ebd4c7dccf7d5eb50c4785c7a12
parente5bb58b115934bec811b311b144e02fa541e7371 (diff)
downloadbcm5719-llvm-c2dc4d4aefba285fd205f701e9c2404802fd0aaf.tar.gz
bcm5719-llvm-c2dc4d4aefba285fd205f701e9c2404802fd0aaf.zip
[DOCS]Support for emission of the debug info for the Cuda devices, NFC.
llvm-svn: 353214
-rw-r--r--clang/docs/OpenMPSupport.rst7
-rw-r--r--clang/docs/ReleaseNotes.rst3
2 files changed, 7 insertions, 3 deletions
diff --git a/clang/docs/OpenMPSupport.rst b/clang/docs/OpenMPSupport.rst
index 7b567c966ee..a8bfddce63a 100644
--- a/clang/docs/OpenMPSupport.rst
+++ b/clang/docs/OpenMPSupport.rst
@@ -101,7 +101,7 @@ between the threads in the parallel regions.
Collapsed loop nest counter
---------------------------
-When using the collapse clause on a loop nest the default behaviour is to
+When using the collapse clause on a loop nest the default behavior is to
automatically extend the representation of the loop counter to 64 bits for
the cases where the sizes of the collapsed loops are not known at compile
time. To prevent this conservative choice and use at most 32 bits,
@@ -124,5 +124,8 @@ Features not supported or with limited support for Cuda devices
- Automatic translation of math functions in target regions to device-specific
math functions is not implemented yet.
-- Debug information for OpenMP target regions is not supported yet.
+- Debug information for OpenMP target regions is supported, but sometimes it may
+ be required to manually specify the address class of the inspected variables.
+ In some cases the local variables are actually allocated in the global memory,
+ but the debug info may be not aware of it.
diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst
index 67472f2a506..578dc1079b3 100644
--- a/clang/docs/ReleaseNotes.rst
+++ b/clang/docs/ReleaseNotes.rst
@@ -133,11 +133,12 @@ ABI Changes in Clang
OpenMP Support in Clang
----------------------------------
-- ...
+- Added emission of the debug information for NVPTX target devices.
CUDA Support in Clang
---------------------
+- Added emission of the debug information for the device code.
Internal API Changes
--------------------
OpenPOWER on IntegriCloud