blob: 2a6f38a10cd16616dd6a9273acbcb173e2ec0083 [file] [log] [blame]
Alexey Bataeva769e072013-03-22 06:34:35 +00001//===--- OpenMPKinds.cpp - Token Kinds Support ----------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9/// \file
10/// \brief This file implements the OpenMP enum and support functions.
11///
12//===----------------------------------------------------------------------===//
13
14#include "clang/Basic/OpenMPKinds.h"
15#include "clang/Basic/IdentifierTable.h"
Matt Beaumont-Gay07544fa2013-03-25 21:32:02 +000016#include "llvm/ADT/StringRef.h"
Alexey Bataeva769e072013-03-22 06:34:35 +000017#include "llvm/ADT/StringSwitch.h"
18#include "llvm/Support/ErrorHandling.h"
19#include <cassert>
20
21using namespace clang;
22
23OpenMPDirectiveKind clang::getOpenMPDirectiveKind(StringRef Str) {
24 return llvm::StringSwitch<OpenMPDirectiveKind>(Str)
Alexey Bataev23b69422014-06-18 07:08:49 +000025#define OPENMP_DIRECTIVE(Name) .Case(#Name, OMPD_##Name)
Alexey Bataev4acb8592014-07-07 13:01:15 +000026#define OPENMP_DIRECTIVE_EXT(Name, Str) .Case(Str, OMPD_##Name)
Alexey Bataeva769e072013-03-22 06:34:35 +000027#include "clang/Basic/OpenMPKinds.def"
Alexey Bataev23b69422014-06-18 07:08:49 +000028 .Default(OMPD_unknown);
Alexey Bataeva769e072013-03-22 06:34:35 +000029}
30
31const char *clang::getOpenMPDirectiveName(OpenMPDirectiveKind Kind) {
Alexey Bataev4ca40ed2014-05-12 04:23:46 +000032 assert(Kind <= OMPD_unknown);
Alexey Bataeva769e072013-03-22 06:34:35 +000033 switch (Kind) {
34 case OMPD_unknown:
Alexey Bataev6f6f3b42013-05-13 04:18:18 +000035 return "unknown";
Alexey Bataev23b69422014-06-18 07:08:49 +000036#define OPENMP_DIRECTIVE(Name) \
37 case OMPD_##Name: \
38 return #Name;
Alexey Bataev4acb8592014-07-07 13:01:15 +000039#define OPENMP_DIRECTIVE_EXT(Name, Str) \
40 case OMPD_##Name: \
41 return Str;
Alexey Bataeva769e072013-03-22 06:34:35 +000042#include "clang/Basic/OpenMPKinds.def"
Alexey Bataeva769e072013-03-22 06:34:35 +000043 break;
44 }
45 llvm_unreachable("Invalid OpenMP directive kind");
46}
Alexey Bataev6f6f3b42013-05-13 04:18:18 +000047
Alexey Bataev5ec3eb12013-07-19 03:13:43 +000048OpenMPClauseKind clang::getOpenMPClauseKind(StringRef Str) {
Alexey Bataev2b5f3f02014-07-29 09:17:39 +000049 // 'flush' clause cannot be specified explicitly, because this is an implicit
50 // clause for 'flush' directive. If the 'flush' clause is explicitly specified
51 // the Parser should generate a warning about extra tokens at the end of the
52 // directive.
Alexey Bataev6125da92014-07-21 11:26:11 +000053 if (Str == "flush")
54 return OMPC_unknown;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +000055 return llvm::StringSwitch<OpenMPClauseKind>(Str)
Alexey Bataev23b69422014-06-18 07:08:49 +000056#define OPENMP_CLAUSE(Name, Class) .Case(#Name, OMPC_##Name)
Alexey Bataev5ec3eb12013-07-19 03:13:43 +000057#include "clang/Basic/OpenMPKinds.def"
Alexey Bataeve48a5fc2016-04-12 05:28:34 +000058 .Case("uniform", OMPC_uniform)
Alexey Bataev23b69422014-06-18 07:08:49 +000059 .Default(OMPC_unknown);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +000060}
61
62const char *clang::getOpenMPClauseName(OpenMPClauseKind Kind) {
Alexey Bataev4ca40ed2014-05-12 04:23:46 +000063 assert(Kind <= OMPC_unknown);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +000064 switch (Kind) {
65 case OMPC_unknown:
66 return "unknown";
Alexey Bataev23b69422014-06-18 07:08:49 +000067#define OPENMP_CLAUSE(Name, Class) \
68 case OMPC_##Name: \
69 return #Name;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +000070#include "clang/Basic/OpenMPKinds.def"
Alexey Bataeve48a5fc2016-04-12 05:28:34 +000071 case OMPC_uniform:
72 return "uniform";
Alexey Bataev5ec3eb12013-07-19 03:13:43 +000073 case OMPC_threadprivate:
74 return "threadprivate or thread local";
Alexey Bataev5ec3eb12013-07-19 03:13:43 +000075 }
76 llvm_unreachable("Invalid OpenMP clause kind");
77}
78
79unsigned clang::getOpenMPSimpleClauseType(OpenMPClauseKind Kind,
80 StringRef Str) {
81 switch (Kind) {
82 case OMPC_default:
83 return llvm::StringSwitch<OpenMPDefaultClauseKind>(Str)
Alexey Bataev23b69422014-06-18 07:08:49 +000084#define OPENMP_DEFAULT_KIND(Name) .Case(#Name, OMPC_DEFAULT_##Name)
Alexey Bataev5ec3eb12013-07-19 03:13:43 +000085#include "clang/Basic/OpenMPKinds.def"
Alexey Bataev23b69422014-06-18 07:08:49 +000086 .Default(OMPC_DEFAULT_unknown);
Alexey Bataevbcbadb62014-05-06 06:04:14 +000087 case OMPC_proc_bind:
88 return llvm::StringSwitch<OpenMPProcBindClauseKind>(Str)
Alexey Bataev23b69422014-06-18 07:08:49 +000089#define OPENMP_PROC_BIND_KIND(Name) .Case(#Name, OMPC_PROC_BIND_##Name)
Alexey Bataevbcbadb62014-05-06 06:04:14 +000090#include "clang/Basic/OpenMPKinds.def"
Alexey Bataev23b69422014-06-18 07:08:49 +000091 .Default(OMPC_PROC_BIND_unknown);
Alexey Bataev56dafe82014-06-20 07:16:17 +000092 case OMPC_schedule:
Alexey Bataev6402bca2015-12-28 07:25:51 +000093 return llvm::StringSwitch<unsigned>(Str)
94#define OPENMP_SCHEDULE_KIND(Name) \
95 .Case(#Name, static_cast<unsigned>(OMPC_SCHEDULE_##Name))
96#define OPENMP_SCHEDULE_MODIFIER(Name) \
97 .Case(#Name, static_cast<unsigned>(OMPC_SCHEDULE_MODIFIER_##Name))
Alexey Bataev56dafe82014-06-20 07:16:17 +000098#include "clang/Basic/OpenMPKinds.def"
99 .Default(OMPC_SCHEDULE_unknown);
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +0000100 case OMPC_depend:
101 return llvm::StringSwitch<OpenMPDependClauseKind>(Str)
102#define OPENMP_DEPEND_KIND(Name) .Case(#Name, OMPC_DEPEND_##Name)
103#include "clang/Basic/OpenMPKinds.def"
104 .Default(OMPC_DEPEND_unknown);
Alexey Bataev182227b2015-08-20 10:54:39 +0000105 case OMPC_linear:
106 return llvm::StringSwitch<OpenMPLinearClauseKind>(Str)
107#define OPENMP_LINEAR_KIND(Name) .Case(#Name, OMPC_LINEAR_##Name)
108#include "clang/Basic/OpenMPKinds.def"
109 .Default(OMPC_LINEAR_unknown);
Kelvin Li0bff7af2015-11-23 05:32:03 +0000110 case OMPC_map:
111 return llvm::StringSwitch<OpenMPMapClauseKind>(Str)
112#define OPENMP_MAP_KIND(Name) .Case(#Name, OMPC_MAP_##Name)
113#include "clang/Basic/OpenMPKinds.def"
114 .Default(OMPC_MAP_unknown);
Carlo Bertollib4adf552016-01-15 18:50:31 +0000115 case OMPC_dist_schedule:
116 return llvm::StringSwitch<OpenMPDistScheduleClauseKind>(Str)
117#define OPENMP_DIST_SCHEDULE_KIND(Name) .Case(#Name, OMPC_DIST_SCHEDULE_##Name)
118#include "clang/Basic/OpenMPKinds.def"
119 .Default(OMPC_DIST_SCHEDULE_unknown);
Arpith Chacko Jacob3cf89042016-01-26 16:37:23 +0000120 case OMPC_defaultmap:
121 return llvm::StringSwitch<unsigned>(Str)
122#define OPENMP_DEFAULTMAP_KIND(Name) \
123 .Case(#Name, static_cast<unsigned>(OMPC_DEFAULTMAP_##Name))
124#define OPENMP_DEFAULTMAP_MODIFIER(Name) \
125 .Case(#Name, static_cast<unsigned>(OMPC_DEFAULTMAP_MODIFIER_##Name))
126#include "clang/Basic/OpenMPKinds.def"
127 .Default(OMPC_DEFAULTMAP_unknown);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +0000128 case OMPC_unknown:
129 case OMPC_threadprivate:
Alexey Bataevaadd52e2014-02-13 05:29:23 +0000130 case OMPC_if:
Alexey Bataev3778b602014-07-17 07:32:53 +0000131 case OMPC_final:
Alexey Bataev568a8332014-03-06 06:15:19 +0000132 case OMPC_num_threads:
Alexey Bataev62c87d22014-03-21 04:51:18 +0000133 case OMPC_safelen:
Alexey Bataev66b15b52015-08-21 11:14:16 +0000134 case OMPC_simdlen:
Alexander Musman8bd31e62014-05-27 15:12:19 +0000135 case OMPC_collapse:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +0000136 case OMPC_private:
Alexey Bataevd5af8e42013-10-01 05:32:34 +0000137 case OMPC_firstprivate:
Alexander Musman1bb328c2014-06-04 13:06:39 +0000138 case OMPC_lastprivate:
David Blaikie3e8aa9a2013-09-06 20:58:25 +0000139 case OMPC_shared:
Alexey Bataevc5e02582014-06-16 07:08:35 +0000140 case OMPC_reduction:
Alexander Musmanf0d76e72014-05-29 14:36:25 +0000141 case OMPC_aligned:
Alexey Bataevd48bcd82014-03-31 03:36:38 +0000142 case OMPC_copyin:
Alexey Bataevbae9a792014-06-27 10:37:06 +0000143 case OMPC_copyprivate:
Alexey Bataev142e1fc2014-06-20 09:44:06 +0000144 case OMPC_ordered:
Alexey Bataev236070f2014-06-20 11:19:47 +0000145 case OMPC_nowait:
Alexey Bataev7aea99a2014-07-17 12:19:31 +0000146 case OMPC_untied:
Alexey Bataev74ba3a52014-07-17 12:47:03 +0000147 case OMPC_mergeable:
Alexey Bataev6125da92014-07-21 11:26:11 +0000148 case OMPC_flush:
Alexey Bataevf98b00c2014-07-23 02:27:21 +0000149 case OMPC_read:
Alexey Bataevdea47612014-07-23 07:46:59 +0000150 case OMPC_write:
Alexey Bataev67a4f222014-07-23 10:25:33 +0000151 case OMPC_update:
Alexey Bataev459dec02014-07-24 06:46:57 +0000152 case OMPC_capture:
Alexey Bataev82bad8b2014-07-24 08:55:34 +0000153 case OMPC_seq_cst:
Michael Wonge710d542015-08-07 16:16:36 +0000154 case OMPC_device:
Alexey Bataev346265e2015-09-25 10:37:12 +0000155 case OMPC_threads:
Alexey Bataevd14d1e62015-09-28 06:39:35 +0000156 case OMPC_simd:
Kelvin Li099bb8c2015-11-24 20:50:12 +0000157 case OMPC_num_teams:
Kelvin Lia15fb1a2015-11-27 18:47:36 +0000158 case OMPC_thread_limit:
Alexey Bataeva0569352015-12-01 10:17:31 +0000159 case OMPC_priority:
Alexey Bataev1fd4aed2015-12-07 12:52:51 +0000160 case OMPC_grainsize:
Alexey Bataevb825de12015-12-07 10:51:44 +0000161 case OMPC_nogroup:
Alexey Bataev382967a2015-12-08 12:06:20 +0000162 case OMPC_num_tasks:
Alexey Bataev28c75412015-12-15 08:19:24 +0000163 case OMPC_hint:
Alexey Bataeve48a5fc2016-04-12 05:28:34 +0000164 case OMPC_uniform:
Samuel Antao661c0902016-05-26 17:39:58 +0000165 case OMPC_to:
Samuel Antaoec172c62016-05-26 17:49:04 +0000166 case OMPC_from:
Carlo Bertolli2404b172016-07-13 15:37:16 +0000167 case OMPC_use_device_ptr:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +0000168 break;
169 }
170 llvm_unreachable("Invalid OpenMP simple clause kind");
171}
172
173const char *clang::getOpenMPSimpleClauseTypeName(OpenMPClauseKind Kind,
174 unsigned Type) {
175 switch (Kind) {
176 case OMPC_default:
177 switch (Type) {
178 case OMPC_DEFAULT_unknown:
179 return "unknown";
Alexey Bataev23b69422014-06-18 07:08:49 +0000180#define OPENMP_DEFAULT_KIND(Name) \
181 case OMPC_DEFAULT_##Name: \
182 return #Name;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +0000183#include "clang/Basic/OpenMPKinds.def"
184 }
185 llvm_unreachable("Invalid OpenMP 'default' clause type");
Alexey Bataevbcbadb62014-05-06 06:04:14 +0000186 case OMPC_proc_bind:
187 switch (Type) {
188 case OMPC_PROC_BIND_unknown:
189 return "unknown";
Alexey Bataev23b69422014-06-18 07:08:49 +0000190#define OPENMP_PROC_BIND_KIND(Name) \
191 case OMPC_PROC_BIND_##Name: \
192 return #Name;
Alexey Bataevbcbadb62014-05-06 06:04:14 +0000193#include "clang/Basic/OpenMPKinds.def"
194 }
195 llvm_unreachable("Invalid OpenMP 'proc_bind' clause type");
Alexey Bataev56dafe82014-06-20 07:16:17 +0000196 case OMPC_schedule:
197 switch (Type) {
198 case OMPC_SCHEDULE_unknown:
Alexey Bataev6402bca2015-12-28 07:25:51 +0000199 case OMPC_SCHEDULE_MODIFIER_last:
Alexey Bataev56dafe82014-06-20 07:16:17 +0000200 return "unknown";
201#define OPENMP_SCHEDULE_KIND(Name) \
Alexey Bataev6402bca2015-12-28 07:25:51 +0000202 case OMPC_SCHEDULE_##Name: \
203 return #Name;
204#define OPENMP_SCHEDULE_MODIFIER(Name) \
205 case OMPC_SCHEDULE_MODIFIER_##Name: \
206 return #Name;
Alexey Bataev56dafe82014-06-20 07:16:17 +0000207#include "clang/Basic/OpenMPKinds.def"
208 }
Alexey Bataev6402bca2015-12-28 07:25:51 +0000209 llvm_unreachable("Invalid OpenMP 'schedule' clause type");
Alexey Bataev1c2cfbc2015-06-23 14:25:19 +0000210 case OMPC_depend:
211 switch (Type) {
212 case OMPC_DEPEND_unknown:
213 return "unknown";
214#define OPENMP_DEPEND_KIND(Name) \
215 case OMPC_DEPEND_##Name: \
216 return #Name;
217#include "clang/Basic/OpenMPKinds.def"
218 }
Alexey Bataev6402bca2015-12-28 07:25:51 +0000219 llvm_unreachable("Invalid OpenMP 'depend' clause type");
Alexey Bataev182227b2015-08-20 10:54:39 +0000220 case OMPC_linear:
221 switch (Type) {
222 case OMPC_LINEAR_unknown:
223 return "unknown";
224#define OPENMP_LINEAR_KIND(Name) \
225 case OMPC_LINEAR_##Name: \
226 return #Name;
227#include "clang/Basic/OpenMPKinds.def"
228 }
229 llvm_unreachable("Invalid OpenMP 'linear' clause type");
Kelvin Li0bff7af2015-11-23 05:32:03 +0000230 case OMPC_map:
231 switch (Type) {
232 case OMPC_MAP_unknown:
233 return "unknown";
234#define OPENMP_MAP_KIND(Name) \
235 case OMPC_MAP_##Name: \
236 return #Name;
237#include "clang/Basic/OpenMPKinds.def"
238 default:
239 break;
240 }
241 llvm_unreachable("Invalid OpenMP 'map' clause type");
Carlo Bertollib4adf552016-01-15 18:50:31 +0000242 case OMPC_dist_schedule:
243 switch (Type) {
244 case OMPC_DIST_SCHEDULE_unknown:
245 return "unknown";
246#define OPENMP_DIST_SCHEDULE_KIND(Name) \
247 case OMPC_DIST_SCHEDULE_##Name: \
248 return #Name;
249#include "clang/Basic/OpenMPKinds.def"
250 }
251 llvm_unreachable("Invalid OpenMP 'dist_schedule' clause type");
Arpith Chacko Jacob3cf89042016-01-26 16:37:23 +0000252 case OMPC_defaultmap:
253 switch (Type) {
254 case OMPC_DEFAULTMAP_unknown:
255 case OMPC_DEFAULTMAP_MODIFIER_last:
256 return "unknown";
257#define OPENMP_DEFAULTMAP_KIND(Name) \
258 case OMPC_DEFAULTMAP_##Name: \
259 return #Name;
260#define OPENMP_DEFAULTMAP_MODIFIER(Name) \
261 case OMPC_DEFAULTMAP_MODIFIER_##Name: \
262 return #Name;
263#include "clang/Basic/OpenMPKinds.def"
264 }
265 llvm_unreachable("Invalid OpenMP 'schedule' clause type");
Alexey Bataev5ec3eb12013-07-19 03:13:43 +0000266 case OMPC_unknown:
267 case OMPC_threadprivate:
Alexey Bataevaadd52e2014-02-13 05:29:23 +0000268 case OMPC_if:
Alexey Bataev3778b602014-07-17 07:32:53 +0000269 case OMPC_final:
Alexey Bataev568a8332014-03-06 06:15:19 +0000270 case OMPC_num_threads:
Alexey Bataev62c87d22014-03-21 04:51:18 +0000271 case OMPC_safelen:
Alexey Bataev66b15b52015-08-21 11:14:16 +0000272 case OMPC_simdlen:
Alexander Musman8bd31e62014-05-27 15:12:19 +0000273 case OMPC_collapse:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +0000274 case OMPC_private:
Alexey Bataevd5af8e42013-10-01 05:32:34 +0000275 case OMPC_firstprivate:
Alexander Musman1bb328c2014-06-04 13:06:39 +0000276 case OMPC_lastprivate:
David Blaikie3e8aa9a2013-09-06 20:58:25 +0000277 case OMPC_shared:
Alexey Bataevc5e02582014-06-16 07:08:35 +0000278 case OMPC_reduction:
Alexander Musmanf0d76e72014-05-29 14:36:25 +0000279 case OMPC_aligned:
Alexey Bataevd48bcd82014-03-31 03:36:38 +0000280 case OMPC_copyin:
Alexey Bataevbae9a792014-06-27 10:37:06 +0000281 case OMPC_copyprivate:
Alexey Bataev142e1fc2014-06-20 09:44:06 +0000282 case OMPC_ordered:
Alexey Bataev236070f2014-06-20 11:19:47 +0000283 case OMPC_nowait:
Alexey Bataev7aea99a2014-07-17 12:19:31 +0000284 case OMPC_untied:
Alexey Bataev74ba3a52014-07-17 12:47:03 +0000285 case OMPC_mergeable:
Alexey Bataev6125da92014-07-21 11:26:11 +0000286 case OMPC_flush:
Alexey Bataevf98b00c2014-07-23 02:27:21 +0000287 case OMPC_read:
Alexey Bataevdea47612014-07-23 07:46:59 +0000288 case OMPC_write:
Alexey Bataev67a4f222014-07-23 10:25:33 +0000289 case OMPC_update:
Alexey Bataev459dec02014-07-24 06:46:57 +0000290 case OMPC_capture:
Alexey Bataev82bad8b2014-07-24 08:55:34 +0000291 case OMPC_seq_cst:
Michael Wonge710d542015-08-07 16:16:36 +0000292 case OMPC_device:
Alexey Bataev346265e2015-09-25 10:37:12 +0000293 case OMPC_threads:
Alexey Bataevd14d1e62015-09-28 06:39:35 +0000294 case OMPC_simd:
Kelvin Li099bb8c2015-11-24 20:50:12 +0000295 case OMPC_num_teams:
Kelvin Lia15fb1a2015-11-27 18:47:36 +0000296 case OMPC_thread_limit:
Alexey Bataeva0569352015-12-01 10:17:31 +0000297 case OMPC_priority:
Alexey Bataev1fd4aed2015-12-07 12:52:51 +0000298 case OMPC_grainsize:
Alexey Bataevb825de12015-12-07 10:51:44 +0000299 case OMPC_nogroup:
Alexey Bataev382967a2015-12-08 12:06:20 +0000300 case OMPC_num_tasks:
Alexey Bataev28c75412015-12-15 08:19:24 +0000301 case OMPC_hint:
Alexey Bataeve48a5fc2016-04-12 05:28:34 +0000302 case OMPC_uniform:
Samuel Antao661c0902016-05-26 17:39:58 +0000303 case OMPC_to:
Samuel Antaoec172c62016-05-26 17:49:04 +0000304 case OMPC_from:
Carlo Bertolli2404b172016-07-13 15:37:16 +0000305 case OMPC_use_device_ptr:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +0000306 break;
307 }
308 llvm_unreachable("Invalid OpenMP simple clause kind");
309}
310
311bool clang::isAllowedClauseForDirective(OpenMPDirectiveKind DKind,
312 OpenMPClauseKind CKind) {
Alexey Bataev4ca40ed2014-05-12 04:23:46 +0000313 assert(DKind <= OMPD_unknown);
314 assert(CKind <= OMPC_unknown);
Alexey Bataev5ec3eb12013-07-19 03:13:43 +0000315 switch (DKind) {
316 case OMPD_parallel:
317 switch (CKind) {
Alexey Bataev23b69422014-06-18 07:08:49 +0000318#define OPENMP_PARALLEL_CLAUSE(Name) \
319 case OMPC_##Name: \
320 return true;
Alexey Bataev5ec3eb12013-07-19 03:13:43 +0000321#include "clang/Basic/OpenMPKinds.def"
322 default:
323 break;
324 }
325 break;
Alexey Bataev1b59ab52014-02-27 08:29:12 +0000326 case OMPD_simd:
327 switch (CKind) {
Alexey Bataev23b69422014-06-18 07:08:49 +0000328#define OPENMP_SIMD_CLAUSE(Name) \
329 case OMPC_##Name: \
330 return true;
Alexey Bataev1b59ab52014-02-27 08:29:12 +0000331#include "clang/Basic/OpenMPKinds.def"
332 default:
333 break;
334 }
335 break;
Alexey Bataevf29276e2014-06-18 04:14:57 +0000336 case OMPD_for:
337 switch (CKind) {
Alexey Bataev23b69422014-06-18 07:08:49 +0000338#define OPENMP_FOR_CLAUSE(Name) \
339 case OMPC_##Name: \
340 return true;
Alexey Bataevf29276e2014-06-18 04:14:57 +0000341#include "clang/Basic/OpenMPKinds.def"
342 default:
343 break;
344 }
345 break;
Alexander Musmanf82886e2014-09-18 05:12:34 +0000346 case OMPD_for_simd:
347 switch (CKind) {
348#define OPENMP_FOR_SIMD_CLAUSE(Name) \
349 case OMPC_##Name: \
350 return true;
351#include "clang/Basic/OpenMPKinds.def"
352 default:
353 break;
354 }
355 break;
Alexey Bataevd3f8dd22014-06-25 11:44:49 +0000356 case OMPD_sections:
357 switch (CKind) {
Alexey Bataevbae9a792014-06-27 10:37:06 +0000358#define OPENMP_SECTIONS_CLAUSE(Name) \
Alexey Bataevd3f8dd22014-06-25 11:44:49 +0000359 case OMPC_##Name: \
360 return true;
361#include "clang/Basic/OpenMPKinds.def"
362 default:
363 break;
364 }
365 break;
Alexey Bataevd1e40fb2014-06-26 12:05:45 +0000366 case OMPD_single:
367 switch (CKind) {
Alexey Bataevbae9a792014-06-27 10:37:06 +0000368#define OPENMP_SINGLE_CLAUSE(Name) \
Alexey Bataevd1e40fb2014-06-26 12:05:45 +0000369 case OMPC_##Name: \
370 return true;
371#include "clang/Basic/OpenMPKinds.def"
372 default:
373 break;
374 }
375 break;
Alexey Bataev4acb8592014-07-07 13:01:15 +0000376 case OMPD_parallel_for:
377 switch (CKind) {
378#define OPENMP_PARALLEL_FOR_CLAUSE(Name) \
379 case OMPC_##Name: \
380 return true;
381#include "clang/Basic/OpenMPKinds.def"
382 default:
383 break;
384 }
385 break;
Alexander Musmane4e893b2014-09-23 09:33:00 +0000386 case OMPD_parallel_for_simd:
387 switch (CKind) {
388#define OPENMP_PARALLEL_FOR_SIMD_CLAUSE(Name) \
389 case OMPC_##Name: \
390 return true;
391#include "clang/Basic/OpenMPKinds.def"
392 default:
393 break;
394 }
395 break;
Alexey Bataev84d0b3e2014-07-08 08:12:03 +0000396 case OMPD_parallel_sections:
397 switch (CKind) {
398#define OPENMP_PARALLEL_SECTIONS_CLAUSE(Name) \
399 case OMPC_##Name: \
400 return true;
401#include "clang/Basic/OpenMPKinds.def"
402 default:
403 break;
404 }
405 break;
Alexey Bataev9c2e8ee2014-07-11 11:25:16 +0000406 case OMPD_task:
407 switch (CKind) {
408#define OPENMP_TASK_CLAUSE(Name) \
409 case OMPC_##Name: \
410 return true;
411#include "clang/Basic/OpenMPKinds.def"
412 default:
413 break;
414 }
415 break;
Alexey Bataev6125da92014-07-21 11:26:11 +0000416 case OMPD_flush:
417 return CKind == OMPC_flush;
418 break;
Alexey Bataev0162e452014-07-22 10:10:35 +0000419 case OMPD_atomic:
420 switch (CKind) {
421#define OPENMP_ATOMIC_CLAUSE(Name) \
422 case OMPC_##Name: \
423 return true;
424#include "clang/Basic/OpenMPKinds.def"
425 default:
426 break;
427 }
428 break;
Alexey Bataev0bd520b2014-09-19 08:19:49 +0000429 case OMPD_target:
430 switch (CKind) {
431#define OPENMP_TARGET_CLAUSE(Name) \
432 case OMPC_##Name: \
433 return true;
434#include "clang/Basic/OpenMPKinds.def"
435 default:
436 break;
437 }
438 break;
Michael Wong65f367f2015-07-21 13:44:28 +0000439 case OMPD_target_data:
440 switch (CKind) {
441#define OPENMP_TARGET_DATA_CLAUSE(Name) \
442 case OMPC_##Name: \
443 return true;
444#include "clang/Basic/OpenMPKinds.def"
445 default:
446 break;
447 }
448 break;
Samuel Antaodf67fc42016-01-19 19:15:56 +0000449 case OMPD_target_enter_data:
450 switch (CKind) {
451#define OPENMP_TARGET_ENTER_DATA_CLAUSE(Name) \
452 case OMPC_##Name: \
453 return true;
454#include "clang/Basic/OpenMPKinds.def"
455 default:
456 break;
457 }
458 break;
Samuel Antao72590762016-01-19 20:04:50 +0000459 case OMPD_target_exit_data:
460 switch (CKind) {
461#define OPENMP_TARGET_EXIT_DATA_CLAUSE(Name) \
462 case OMPC_##Name: \
463 return true;
464#include "clang/Basic/OpenMPKinds.def"
465 default:
466 break;
467 }
468 break;
Arpith Chacko Jacobe955b3d2016-01-26 18:48:41 +0000469 case OMPD_target_parallel:
470 switch (CKind) {
471#define OPENMP_TARGET_PARALLEL_CLAUSE(Name) \
472 case OMPC_##Name: \
473 return true;
474#include "clang/Basic/OpenMPKinds.def"
475 default:
476 break;
477 }
478 break;
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +0000479 case OMPD_target_parallel_for:
480 switch (CKind) {
481#define OPENMP_TARGET_PARALLEL_FOR_CLAUSE(Name) \
482 case OMPC_##Name: \
483 return true;
484#include "clang/Basic/OpenMPKinds.def"
485 default:
486 break;
487 }
488 break;
Samuel Antao686c70c2016-05-26 17:30:50 +0000489 case OMPD_target_update:
490 switch (CKind) {
491#define OPENMP_TARGET_UPDATE_CLAUSE(Name) \
492 case OMPC_##Name: \
493 return true;
494#include "clang/Basic/OpenMPKinds.def"
495 default:
496 break;
497 }
498 break;
Alexey Bataev13314bf2014-10-09 04:18:56 +0000499 case OMPD_teams:
500 switch (CKind) {
501#define OPENMP_TEAMS_CLAUSE(Name) \
502 case OMPC_##Name: \
503 return true;
504#include "clang/Basic/OpenMPKinds.def"
505 default:
506 break;
507 }
508 break;
Alexey Bataev587e1de2016-03-30 10:43:55 +0000509 case OMPD_declare_simd:
510 break;
Alexey Bataev87933c72015-09-18 08:07:34 +0000511 case OMPD_cancel:
512 switch (CKind) {
513#define OPENMP_CANCEL_CLAUSE(Name) \
514 case OMPC_##Name: \
515 return true;
516#include "clang/Basic/OpenMPKinds.def"
517 default:
518 break;
519 }
520 break;
Alexey Bataev346265e2015-09-25 10:37:12 +0000521 case OMPD_ordered:
522 switch (CKind) {
Alexey Bataev0a6ed842015-12-03 09:40:15 +0000523#define OPENMP_ORDERED_CLAUSE(Name) \
Alexey Bataev346265e2015-09-25 10:37:12 +0000524 case OMPC_##Name: \
525 return true;
526#include "clang/Basic/OpenMPKinds.def"
527 default:
528 break;
529 }
530 break;
Alexey Bataev49f6e782015-12-01 04:18:41 +0000531 case OMPD_taskloop:
532 switch (CKind) {
533#define OPENMP_TASKLOOP_CLAUSE(Name) \
534 case OMPC_##Name: \
535 return true;
536#include "clang/Basic/OpenMPKinds.def"
537 default:
538 break;
539 }
540 break;
Alexey Bataev0a6ed842015-12-03 09:40:15 +0000541 case OMPD_taskloop_simd:
542 switch (CKind) {
543#define OPENMP_TASKLOOP_SIMD_CLAUSE(Name) \
544 case OMPC_##Name: \
545 return true;
546#include "clang/Basic/OpenMPKinds.def"
547 default:
548 break;
549 }
550 break;
Alexey Bataev28c75412015-12-15 08:19:24 +0000551 case OMPD_critical:
552 switch (CKind) {
553#define OPENMP_CRITICAL_CLAUSE(Name) \
554 case OMPC_##Name: \
555 return true;
556#include "clang/Basic/OpenMPKinds.def"
557 default:
558 break;
559 }
560 break;
Carlo Bertolli6200a3d2015-12-14 14:51:25 +0000561 case OMPD_distribute:
562 switch (CKind) {
563#define OPENMP_DISTRIBUTE_CLAUSE(Name) \
564 case OMPC_##Name: \
565 return true;
566#include "clang/Basic/OpenMPKinds.def"
567 default:
568 break;
569 }
570 break;
Carlo Bertolli9925f152016-06-27 14:55:37 +0000571 case OMPD_distribute_parallel_for:
572 switch (CKind) {
573#define OPENMP_DISTRIBUTE_PARALLEL_FOR_CLAUSE(Name) \
574 case OMPC_##Name: \
575 return true;
576#include "clang/Basic/OpenMPKinds.def"
577 default:
578 break;
579 }
580 break;
Kelvin Li4a39add2016-07-05 05:00:15 +0000581 case OMPD_distribute_parallel_for_simd:
582 switch (CKind) {
583#define OPENMP_DISTRIBUTE_PARALLEL_FOR_SIMD_CLAUSE(Name) \
584 case OMPC_##Name: \
585 return true;
586#include "clang/Basic/OpenMPKinds.def"
587 default:
588 break;
589 }
590 break;
Kelvin Li787f3fc2016-07-06 04:45:38 +0000591 case OMPD_distribute_simd:
592 switch (CKind) {
593#define OPENMP_DISTRIBUTE_SIMD_CLAUSE(Name) \
594 case OMPC_##Name: \
595 return true;
596#include "clang/Basic/OpenMPKinds.def"
597 default:
598 break;
599 }
600 break;
Dmitry Polukhin0b0da292016-04-06 11:38:59 +0000601 case OMPD_declare_target:
602 case OMPD_end_declare_target:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +0000603 case OMPD_unknown:
604 case OMPD_threadprivate:
Alexey Bataev1e0498a2014-06-26 08:21:58 +0000605 case OMPD_section:
Alexander Musman80c22892014-07-17 08:54:58 +0000606 case OMPD_master:
Alexey Bataev68446b72014-07-18 07:47:19 +0000607 case OMPD_taskyield:
Alexey Bataev4d1dfea2014-07-18 09:11:51 +0000608 case OMPD_barrier:
Alexey Bataev2df347a2014-07-18 10:17:07 +0000609 case OMPD_taskwait:
Alexey Bataevc30dd2d2015-06-18 12:14:09 +0000610 case OMPD_taskgroup:
Alexey Bataev6d4ed052015-07-01 06:57:41 +0000611 case OMPD_cancellation_point:
Alexey Bataev94a4f0c2016-03-03 05:21:39 +0000612 case OMPD_declare_reduction:
Alexey Bataev5ec3eb12013-07-19 03:13:43 +0000613 break;
614 }
615 return false;
616}
Alexey Bataevf29276e2014-06-18 04:14:57 +0000617
618bool clang::isOpenMPLoopDirective(OpenMPDirectiveKind DKind) {
Alexander Musmane4e893b2014-09-23 09:33:00 +0000619 return DKind == OMPD_simd || DKind == OMPD_for || DKind == OMPD_for_simd ||
Alexey Bataev49f6e782015-12-01 04:18:41 +0000620 DKind == OMPD_parallel_for || DKind == OMPD_parallel_for_simd ||
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +0000621 DKind == OMPD_taskloop || DKind == OMPD_taskloop_simd ||
Carlo Bertolli9925f152016-06-27 14:55:37 +0000622 DKind == OMPD_distribute || DKind == OMPD_target_parallel_for ||
Kelvin Li4a39add2016-07-05 05:00:15 +0000623 DKind == OMPD_distribute_parallel_for ||
Kelvin Li787f3fc2016-07-06 04:45:38 +0000624 DKind == OMPD_distribute_parallel_for_simd ||
625 DKind == OMPD_distribute_simd;
Kelvin Li4a39add2016-07-05 05:00:15 +0000626 // TODO add next directives.
Alexey Bataevf29276e2014-06-18 04:14:57 +0000627}
628
629bool clang::isOpenMPWorksharingDirective(OpenMPDirectiveKind DKind) {
Alexander Musmane4e893b2014-09-23 09:33:00 +0000630 return DKind == OMPD_for || DKind == OMPD_for_simd ||
631 DKind == OMPD_sections || DKind == OMPD_section ||
Alexey Bataev84d0b3e2014-07-08 08:12:03 +0000632 DKind == OMPD_single || DKind == OMPD_parallel_for ||
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +0000633 DKind == OMPD_parallel_for_simd || DKind == OMPD_parallel_sections ||
Carlo Bertolli9925f152016-06-27 14:55:37 +0000634 DKind == OMPD_target_parallel_for ||
Kelvin Li4a39add2016-07-05 05:00:15 +0000635 DKind == OMPD_distribute_parallel_for ||
636 DKind == OMPD_distribute_parallel_for_simd;
637 // TODO add next directives.
Alexey Bataevf29276e2014-06-18 04:14:57 +0000638}
639
Alexey Bataev0a6ed842015-12-03 09:40:15 +0000640bool clang::isOpenMPTaskLoopDirective(OpenMPDirectiveKind DKind) {
641 return DKind == OMPD_taskloop || DKind == OMPD_taskloop_simd;
642}
643
Alexey Bataevf29276e2014-06-18 04:14:57 +0000644bool clang::isOpenMPParallelDirective(OpenMPDirectiveKind DKind) {
Alexey Bataev84d0b3e2014-07-08 08:12:03 +0000645 return DKind == OMPD_parallel || DKind == OMPD_parallel_for ||
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +0000646 DKind == OMPD_parallel_for_simd || DKind == OMPD_parallel_sections ||
Carlo Bertolli9925f152016-06-27 14:55:37 +0000647 DKind == OMPD_target_parallel || DKind == OMPD_target_parallel_for ||
Kelvin Li4a39add2016-07-05 05:00:15 +0000648 DKind == OMPD_distribute_parallel_for ||
649 DKind == OMPD_distribute_parallel_for_simd;
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +0000650 // TODO add next directives.
Alexey Bataevf29276e2014-06-18 04:14:57 +0000651}
652
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +0000653bool clang::isOpenMPTargetExecutionDirective(OpenMPDirectiveKind DKind) {
654 // TODO add next directives.
Arpith Chacko Jacob05bebb52016-02-03 15:46:42 +0000655 return DKind == OMPD_target || DKind == OMPD_target_parallel ||
656 DKind == OMPD_target_parallel_for;
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +0000657}
658
659bool clang::isOpenMPTargetDataManagementDirective(OpenMPDirectiveKind DKind) {
Arpith Chacko Jacob3d58f262016-02-02 04:00:47 +0000660 return DKind == OMPD_target_data || DKind == OMPD_target_enter_data ||
Samuel Antao686c70c2016-05-26 17:30:50 +0000661 DKind == OMPD_target_exit_data || DKind == OMPD_target_update;
Samuel Antao4be30e92015-10-02 17:14:03 +0000662}
663
Alexey Bataev13314bf2014-10-09 04:18:56 +0000664bool clang::isOpenMPTeamsDirective(OpenMPDirectiveKind DKind) {
665 return DKind == OMPD_teams; // TODO add next directives.
666}
667
Alexey Bataevf29276e2014-06-18 04:14:57 +0000668bool clang::isOpenMPSimdDirective(OpenMPDirectiveKind DKind) {
Alexander Musmane4e893b2014-09-23 09:33:00 +0000669 return DKind == OMPD_simd || DKind == OMPD_for_simd ||
Kelvin Li4a39add2016-07-05 05:00:15 +0000670 DKind == OMPD_parallel_for_simd || DKind == OMPD_taskloop_simd ||
Kelvin Li787f3fc2016-07-06 04:45:38 +0000671 DKind == OMPD_distribute_parallel_for_simd ||
672 DKind == OMPD_distribute_simd;
Kelvin Li4a39add2016-07-05 05:00:15 +0000673 // TODO add next directives.
Alexey Bataevf29276e2014-06-18 04:14:57 +0000674}
675
Carlo Bertolli6200a3d2015-12-14 14:51:25 +0000676bool clang::isOpenMPDistributeDirective(OpenMPDirectiveKind Kind) {
Kelvin Li4a39add2016-07-05 05:00:15 +0000677 return Kind == OMPD_distribute || Kind == OMPD_distribute_parallel_for ||
Kelvin Li787f3fc2016-07-06 04:45:38 +0000678 Kind == OMPD_distribute_parallel_for_simd ||
679 Kind == OMPD_distribute_simd;
Kelvin Li4a39add2016-07-05 05:00:15 +0000680 // TODO add next directives.
Carlo Bertolli6200a3d2015-12-14 14:51:25 +0000681}
682
Alexey Bataevf29276e2014-06-18 04:14:57 +0000683bool clang::isOpenMPPrivate(OpenMPClauseKind Kind) {
684 return Kind == OMPC_private || Kind == OMPC_firstprivate ||
685 Kind == OMPC_lastprivate || Kind == OMPC_linear ||
686 Kind == OMPC_reduction; // TODO add next clauses like 'reduction'.
687}
688
689bool clang::isOpenMPThreadPrivate(OpenMPClauseKind Kind) {
Alexey Bataevf56f98c2015-04-16 05:39:01 +0000690 return Kind == OMPC_threadprivate || Kind == OMPC_copyin;
Alexey Bataevf29276e2014-06-18 04:14:57 +0000691}
692
Alexey Bataev35aaee62016-04-13 13:36:48 +0000693bool clang::isOpenMPTaskingDirective(OpenMPDirectiveKind Kind) {
694 return Kind == OMPD_task || isOpenMPTaskLoopDirective(Kind);
695}
Carlo Bertolli9925f152016-06-27 14:55:37 +0000696
697bool clang::isOpenMPLoopBoundSharingDirective(OpenMPDirectiveKind Kind) {
Kelvin Li4a39add2016-07-05 05:00:15 +0000698 return Kind == OMPD_distribute_parallel_for ||
Kelvin Li787f3fc2016-07-06 04:45:38 +0000699 Kind == OMPD_distribute_parallel_for_simd ||
700 Kind == OMPD_distribute_simd;
Carlo Bertolli9925f152016-06-27 14:55:37 +0000701}