[OpenMP50] Add parallel master construct, by Chi Chun Chen.
authorcchen <cchen@cray.com>
Wed, 4 Dec 2019 19:36:07 +0000 (14:36 -0500)
committerAlexey Bataev <a.bataev@hotmail.com>
Wed, 4 Dec 2019 19:53:17 +0000 (14:53 -0500)
commit713dab21e27c987b9114547ce7136bac2e775de9
tree696ff853d8c9db4fab6b73fbfcab6de0c4185d0d
parent9e978bb01ceae8eaa415d8951cc96803e68b73fb
[OpenMP50] Add parallel master construct, by Chi Chun Chen.

Reviewers: ABataev, jdoerfert

Reviewed By: ABataev

Subscribers: jholewinski, guansong, arphaman, jfb, cfe-commits, sandoval, dreachem

Tags: #clang

Differential Revision: https://reviews.llvm.org/D70726
37 files changed:
clang/include/clang-c/Index.h
clang/include/clang/AST/RecursiveASTVisitor.h
clang/include/clang/AST/StmtOpenMP.h
clang/include/clang/Basic/OpenMPKinds.def
clang/include/clang/Basic/StmtNodes.td
clang/include/clang/Sema/Sema.h
clang/include/clang/Serialization/ASTBitCodes.h
clang/lib/AST/StmtOpenMP.cpp
clang/lib/AST/StmtPrinter.cpp
clang/lib/AST/StmtProfile.cpp
clang/lib/Basic/OpenMPKinds.cpp
clang/lib/CodeGen/CGOpenMPRuntime.cpp
clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
clang/lib/CodeGen/CGStmt.cpp
clang/lib/CodeGen/CGStmtOpenMP.cpp
clang/lib/CodeGen/CodeGenFunction.h
clang/lib/Parse/ParseOpenMP.cpp
clang/lib/Sema/SemaOpenMP.cpp
clang/lib/Sema/TreeTransform.h
clang/lib/Serialization/ASTReaderStmt.cpp
clang/lib/Serialization/ASTWriterStmt.cpp
clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
clang/test/OpenMP/nesting_of_regions.cpp
clang/test/OpenMP/parallel_master_ast_print.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_master_codegen.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_master_copyin_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_master_default_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_master_firstprivate_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_master_if_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_master_message.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_master_num_threads_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_master_private_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_master_proc_bind_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_master_reduction_messages.cpp [new file with mode: 0644]
clang/test/OpenMP/parallel_master_shared_messages.cpp [new file with mode: 0644]
clang/tools/libclang/CIndex.cpp
clang/tools/libclang/CXCursor.cpp