r353214 - [DOCS]Support for emission of the debug info for the Cuda devices, NFC.

Alexey Bataev via cfe-commits cfe-commits at lists.llvm.org
Tue Feb 5 12:38:36 PST 2019


Author: abataev
Date: Tue Feb  5 12:38:36 2019
New Revision: 353214

URL: http://llvm.org/viewvc/llvm-project?rev=353214&view=rev
Log:
[DOCS]Support for emission of the debug info for the Cuda devices, NFC.

Modified:
    cfe/trunk/docs/OpenMPSupport.rst
    cfe/trunk/docs/ReleaseNotes.rst

Modified: cfe/trunk/docs/OpenMPSupport.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/OpenMPSupport.rst?rev=353214&r1=353213&r2=353214&view=diff
==============================================================================
--- cfe/trunk/docs/OpenMPSupport.rst (original)
+++ cfe/trunk/docs/OpenMPSupport.rst Tue Feb  5 12:38:36 2019
@@ -101,7 +101,7 @@ between the threads in the parallel regi
 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 s
 - 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.
 

Modified: cfe/trunk/docs/ReleaseNotes.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/ReleaseNotes.rst?rev=353214&r1=353213&r2=353214&view=diff
==============================================================================
--- cfe/trunk/docs/ReleaseNotes.rst (original)
+++ cfe/trunk/docs/ReleaseNotes.rst Tue Feb  5 12:38:36 2019
@@ -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
 --------------------




More information about the cfe-commits mailing list