diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2019-02-05 20:38:36 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2019-02-05 20:38:36 +0000 |
commit | c2dc4d4aefba285fd205f701e9c2404802fd0aaf (patch) | |
tree | a4793b30bf3b9ebd4c7dccf7d5eb50c4785c7a12 | |
parent | e5bb58b115934bec811b311b144e02fa541e7371 (diff) | |
download | bcm5719-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.rst | 7 | ||||
-rw-r--r-- | clang/docs/ReleaseNotes.rst | 3 |
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 -------------------- |