Lines Matching refs:Directive

287         pure(llvm::omp::Directive::OMPD_distribute_parallel_do_simd),
289 pure(llvm::omp::Directive::OMPD_distribute_parallel_do),
290 "DISTRIBUTE SIMD" >> pure(llvm::omp::Directive::OMPD_distribute_simd),
291 "DISTRIBUTE" >> pure(llvm::omp::Directive::OMPD_distribute),
292 "DO SIMD" >> pure(llvm::omp::Directive::OMPD_do_simd),
293 "DO" >> pure(llvm::omp::Directive::OMPD_do),
294 "PARALLEL DO SIMD" >> pure(llvm::omp::Directive::OMPD_parallel_do_simd),
295 "PARALLEL DO" >> pure(llvm::omp::Directive::OMPD_parallel_do),
296 "SIMD" >> pure(llvm::omp::Directive::OMPD_simd),
298 pure(llvm::omp::Directive::OMPD_target_parallel_do_simd),
299 "TARGET PARALLEL DO" >> pure(llvm::omp::Directive::OMPD_target_parallel_do),
300 "TARGET SIMD" >> pure(llvm::omp::Directive::OMPD_target_simd),
302 pure(llvm::omp::Directive::
305 pure(llvm::omp::Directive::OMPD_target_teams_distribute_parallel_do),
307 pure(llvm::omp::Directive::OMPD_target_teams_distribute_simd),
309 pure(llvm::omp::Directive::OMPD_target_teams_distribute),
310 "TASKLOOP SIMD" >> pure(llvm::omp::Directive::OMPD_taskloop_simd),
311 "TASKLOOP" >> pure(llvm::omp::Directive::OMPD_taskloop),
313 pure(llvm::omp::Directive::OMPD_teams_distribute_parallel_do_simd),
315 pure(llvm::omp::Directive::OMPD_teams_distribute_parallel_do),
317 pure(llvm::omp::Directive::OMPD_teams_distribute_simd),
318 "TEAMS DISTRIBUTE" >> pure(llvm::omp::Directive::OMPD_teams_distribute)))))
370 "BARRIER" >> pure(llvm::omp::Directive::OMPD_barrier),
371 "ORDERED" >> pure(llvm::omp::Directive::OMPD_ordered),
372 "TARGET ENTER DATA" >> pure(llvm::omp::Directive::OMPD_target_enter_data),
373 "TARGET EXIT DATA" >> pure(llvm::omp::Directive::OMPD_target_exit_data),
374 "TARGET UPDATE" >> pure(llvm::omp::Directive::OMPD_target_update),
375 "TASKWAIT" >> pure(llvm::omp::Directive::OMPD_taskwait),
376 "TASKYIELD" >> pure(llvm::omp::Directive::OMPD_taskyield)))))
393 "MASTER" >> pure(llvm::omp::Directive::OMPD_master),
394 "ORDERED" >> pure(llvm::omp::Directive::OMPD_ordered),
395 "PARALLEL WORKSHARE" >> pure(llvm::omp::Directive::OMPD_parallel_workshare),
396 "PARALLEL" >> pure(llvm::omp::Directive::OMPD_parallel),
397 "SINGLE" >> pure(llvm::omp::Directive::OMPD_single),
398 "TARGET DATA" >> pure(llvm::omp::Directive::OMPD_target_data),
399 "TARGET PARALLEL" >> pure(llvm::omp::Directive::OMPD_target_parallel),
400 "TARGET TEAMS" >> pure(llvm::omp::Directive::OMPD_target_teams),
401 "TARGET" >> pure(llvm::omp::Directive::OMPD_target),
402 "TASK"_id >> pure(llvm::omp::Directive::OMPD_task),
403 "TASKGROUP" >> pure(llvm::omp::Directive::OMPD_taskgroup),
404 "TEAMS" >> pure(llvm::omp::Directive::OMPD_teams),
405 "WORKSHARE" >> pure(llvm::omp::Directive::OMPD_workshare))))
544 "SECTIONS" >> pure(llvm::omp::Directive::OMPD_sections),
545 "PARALLEL SECTIONS" >> pure(llvm::omp::Directive::OMPD_parallel_sections))))