Changeset View
Changeset View
Standalone View
Standalone View
llvm/include/llvm/Frontend/OpenMP/OMPKinds.def
Show All 21 Lines | |||||
#define __OMP_DIRECTIVE_EXT(Name, Str) OMP_DIRECTIVE(OMPD_##Name, Str) | #define __OMP_DIRECTIVE_EXT(Name, Str) OMP_DIRECTIVE(OMPD_##Name, Str) | ||||
#define __OMP_DIRECTIVE(Name) __OMP_DIRECTIVE_EXT(Name, #Name) | #define __OMP_DIRECTIVE(Name) __OMP_DIRECTIVE_EXT(Name, #Name) | ||||
__OMP_DIRECTIVE(threadprivate) | __OMP_DIRECTIVE(threadprivate) | ||||
__OMP_DIRECTIVE(parallel) | __OMP_DIRECTIVE(parallel) | ||||
__OMP_DIRECTIVE(task) | __OMP_DIRECTIVE(task) | ||||
__OMP_DIRECTIVE(simd) | __OMP_DIRECTIVE(simd) | ||||
__OMP_DIRECTIVE(tile) | |||||
__OMP_DIRECTIVE(for) | __OMP_DIRECTIVE(for) | ||||
__OMP_DIRECTIVE(sections) | __OMP_DIRECTIVE(sections) | ||||
__OMP_DIRECTIVE(section) | __OMP_DIRECTIVE(section) | ||||
__OMP_DIRECTIVE(single) | __OMP_DIRECTIVE(single) | ||||
__OMP_DIRECTIVE(master) | __OMP_DIRECTIVE(master) | ||||
__OMP_DIRECTIVE(critical) | __OMP_DIRECTIVE(critical) | ||||
__OMP_DIRECTIVE(taskyield) | __OMP_DIRECTIVE(taskyield) | ||||
__OMP_DIRECTIVE(barrier) | __OMP_DIRECTIVE(barrier) | ||||
▲ Show 20 Lines • Show All 95 Lines • ▼ Show 20 Lines | #define __OMP_IMPLICIT_CLAUSE_NO_CLASS(Name, Str) \ | ||||
OMP_CLAUSE_NO_CLASS(OMPC_##Name, Str) | OMP_CLAUSE_NO_CLASS(OMPC_##Name, Str) | ||||
__OMP_CLAUSE(allocator, OMPAllocatorClause) | __OMP_CLAUSE(allocator, OMPAllocatorClause) | ||||
__OMP_CLAUSE(if, OMPIfClause) | __OMP_CLAUSE(if, OMPIfClause) | ||||
__OMP_CLAUSE(final, OMPFinalClause) | __OMP_CLAUSE(final, OMPFinalClause) | ||||
__OMP_CLAUSE(num_threads, OMPNumThreadsClause) | __OMP_CLAUSE(num_threads, OMPNumThreadsClause) | ||||
__OMP_CLAUSE(safelen, OMPSafelenClause) | __OMP_CLAUSE(safelen, OMPSafelenClause) | ||||
__OMP_CLAUSE(simdlen, OMPSimdlenClause) | __OMP_CLAUSE(simdlen, OMPSimdlenClause) | ||||
__OMP_CLAUSE(sizes, OMPSizesClause) | |||||
__OMP_CLAUSE(collapse, OMPCollapseClause) | __OMP_CLAUSE(collapse, OMPCollapseClause) | ||||
__OMP_CLAUSE(default, OMPDefaultClause) | __OMP_CLAUSE(default, OMPDefaultClause) | ||||
__OMP_CLAUSE(private, OMPPrivateClause) | __OMP_CLAUSE(private, OMPPrivateClause) | ||||
__OMP_CLAUSE(firstprivate, OMPFirstprivateClause) | __OMP_CLAUSE(firstprivate, OMPFirstprivateClause) | ||||
__OMP_CLAUSE(lastprivate, OMPLastprivateClause) | __OMP_CLAUSE(lastprivate, OMPLastprivateClause) | ||||
__OMP_CLAUSE(shared, OMPSharedClause) | __OMP_CLAUSE(shared, OMPSharedClause) | ||||
__OMP_CLAUSE(reduction, OMPReductionClause) | __OMP_CLAUSE(reduction, OMPReductionClause) | ||||
__OMP_CLAUSE(linear, OMPLinearClause) | __OMP_CLAUSE(linear, OMPLinearClause) | ||||
▲ Show 20 Lines • Show All 1,034 Lines • ▼ Show 20 Lines | |||||
__OMP_DIRECTIVE_CLAUSE(simd, 1, ~0, simdlen) | __OMP_DIRECTIVE_CLAUSE(simd, 1, ~0, simdlen) | ||||
__OMP_DIRECTIVE_CLAUSE(simd, 1, ~0, collapse) | __OMP_DIRECTIVE_CLAUSE(simd, 1, ~0, collapse) | ||||
__OMP_DIRECTIVE_CLAUSE(simd, 1, ~0, reduction) | __OMP_DIRECTIVE_CLAUSE(simd, 1, ~0, reduction) | ||||
__OMP_DIRECTIVE_CLAUSE(simd, 1, ~0, allocate) | __OMP_DIRECTIVE_CLAUSE(simd, 1, ~0, allocate) | ||||
__OMP_DIRECTIVE_CLAUSE(simd, 50, ~0, if) | __OMP_DIRECTIVE_CLAUSE(simd, 50, ~0, if) | ||||
__OMP_DIRECTIVE_CLAUSE(simd, 50, ~0, nontemporal) | __OMP_DIRECTIVE_CLAUSE(simd, 50, ~0, nontemporal) | ||||
__OMP_DIRECTIVE_CLAUSE(simd, 50, ~0, order) | __OMP_DIRECTIVE_CLAUSE(simd, 50, ~0, order) | ||||
__OMP_DIRECTIVE_CLAUSE(tile, 1, ~0, sizes) | |||||
__OMP_DIRECTIVE_CLAUSE(for, 1, ~0, private) | __OMP_DIRECTIVE_CLAUSE(for, 1, ~0, private) | ||||
__OMP_DIRECTIVE_CLAUSE(for, 1, ~0, lastprivate) | __OMP_DIRECTIVE_CLAUSE(for, 1, ~0, lastprivate) | ||||
__OMP_DIRECTIVE_CLAUSE(for, 1, ~0, firstprivate) | __OMP_DIRECTIVE_CLAUSE(for, 1, ~0, firstprivate) | ||||
__OMP_DIRECTIVE_CLAUSE(for, 1, ~0, reduction) | __OMP_DIRECTIVE_CLAUSE(for, 1, ~0, reduction) | ||||
__OMP_DIRECTIVE_CLAUSE(for, 1, ~0, collapse) | __OMP_DIRECTIVE_CLAUSE(for, 1, ~0, collapse) | ||||
__OMP_DIRECTIVE_CLAUSE(for, 1, ~0, schedule) | __OMP_DIRECTIVE_CLAUSE(for, 1, ~0, schedule) | ||||
__OMP_DIRECTIVE_CLAUSE(for, 1, ~0, ordered) | __OMP_DIRECTIVE_CLAUSE(for, 1, ~0, ordered) | ||||
__OMP_DIRECTIVE_CLAUSE(for, 1, ~0, nowait) | __OMP_DIRECTIVE_CLAUSE(for, 1, ~0, nowait) | ||||
▲ Show 20 Lines • Show All 694 Lines • Show Last 20 Lines |