[OpenMP] Initial implementation of parse+sema for clause use_device_ptr of 'target data'
http://reviews.llvm.org/D21904 This patch is similar to the implementation of 'private' clause: it adds a list of private pointers to be used within the target data region to store the device pointers returned by the runtime. Please refer to the following document for a full description of what the runtime witll return in this case (page 10 and 11): https://github.com/clang-omp/OffloadingDesign I am happy to answer any question related to the runtime interface to help reviewing this patch. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@275271 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- include/clang/AST/OpenMPClause.h 65 additions, 0 deletionsinclude/clang/AST/OpenMPClause.h
- include/clang/AST/RecursiveASTVisitor.h 7 additions, 0 deletionsinclude/clang/AST/RecursiveASTVisitor.h
- include/clang/Basic/DiagnosticSemaKinds.td 2 additions, 0 deletionsinclude/clang/Basic/DiagnosticSemaKinds.td
- include/clang/Basic/OpenMPKinds.def 2 additions, 0 deletionsinclude/clang/Basic/OpenMPKinds.def
- include/clang/Sema/Sema.h 5 additions, 0 deletionsinclude/clang/Sema/Sema.h
- lib/AST/OpenMPClause.cpp 20 additions, 0 deletionslib/AST/OpenMPClause.cpp
- lib/AST/StmtPrinter.cpp 8 additions, 0 deletionslib/AST/StmtPrinter.cpp
- lib/AST/StmtProfile.cpp 4 additions, 0 deletionslib/AST/StmtProfile.cpp
- lib/Basic/OpenMPKinds.cpp 2 additions, 0 deletionslib/Basic/OpenMPKinds.cpp
- lib/CodeGen/CGStmtOpenMP.cpp 1 addition, 0 deletionslib/CodeGen/CGStmtOpenMP.cpp
- lib/Parse/ParseOpenMP.cpp 3 additions, 0 deletionslib/Parse/ParseOpenMP.cpp
- lib/Sema/SemaOpenMP.cpp 43 additions, 0 deletionslib/Sema/SemaOpenMP.cpp
- lib/Sema/TreeTransform.h 27 additions, 0 deletionslib/Sema/TreeTransform.h
- lib/Serialization/ASTReaderStmt.cpp 14 additions, 0 deletionslib/Serialization/ASTReaderStmt.cpp
- lib/Serialization/ASTWriterStmt.cpp 8 additions, 0 deletionslib/Serialization/ASTWriterStmt.cpp
- test/OpenMP/target_data_use_device_ptr_ast_print.cpp 154 additions, 0 deletionstest/OpenMP/target_data_use_device_ptr_ast_print.cpp
- test/OpenMP/target_data_use_device_ptr_messages.cpp 206 additions, 0 deletionstest/OpenMP/target_data_use_device_ptr_messages.cpp
- tools/libclang/CIndex.cpp 3 additions, 0 deletionstools/libclang/CIndex.cpp
Loading
Please register or sign in to comment