forked from llvm/llvm-project
- Notifications
You must be signed in to change notification settings - Fork 339
/
Copy pathOpenMPParsingTest.cpp
84 lines (65 loc) · 3.05 KB
/
OpenMPParsingTest.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
//===- llvm/unittest/IR/OpenMPIRParsingTest.cpp ---------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include"llvm/Frontend/OpenMP/OMPConstants.h"
#include"gtest/gtest.h"
usingnamespacellvm;
usingnamespacellvm::omp;
namespace {
TEST(OpenMPParsingTest, OpenMPDirectiveKind) {
EXPECT_EQ(getOpenMPDirectiveKind("foobar"), OMPD_unknown);
EXPECT_EQ(getOpenMPDirectiveKind("for"), OMPD_for);
EXPECT_EQ(getOpenMPDirectiveKind("simd"), OMPD_simd);
EXPECT_EQ(getOpenMPDirectiveKind("for simd"), OMPD_for_simd);
}
TEST(OpenMPParsingTest, getOpenMPDirectiveName) {
EXPECT_EQ(getOpenMPDirectiveName(OMPD_unknown), "unknown");
EXPECT_EQ(getOpenMPDirectiveName(OMPD_for), "for");
EXPECT_EQ(getOpenMPDirectiveName(OMPD_simd), "simd");
EXPECT_EQ(getOpenMPDirectiveName(OMPD_for_simd), "for simd");
}
TEST(OpenMPParsingTest, getOpenMPClauseKind) {
EXPECT_EQ(getOpenMPClauseKind("foobar"), OMPC_unknown);
EXPECT_EQ(getOpenMPClauseKind("schedule"), OMPC_schedule);
EXPECT_EQ(getOpenMPClauseKind("if"), OMPC_if);
}
TEST(OpenMPParsingTest, getOpenMPClauseName) {
EXPECT_EQ(getOpenMPClauseName(OMPC_unknown), "unknown");
EXPECT_EQ(getOpenMPClauseName(OMPC_schedule), "schedule");
EXPECT_EQ(getOpenMPClauseName(OMPC_if), "if");
}
TEST(OpenMPParsingTest, isAllowedClauseForDirective) {
EXPECT_TRUE(isAllowedClauseForDirective(OMPD_for, OMPC_schedule, 30));
EXPECT_FALSE(isAllowedClauseForDirective(OMPD_for, OMPC_num_teams, 30));
EXPECT_FALSE(isAllowedClauseForDirective(OMPD_for, OMPC_order, 30));
EXPECT_FALSE(isAllowedClauseForDirective(OMPD_for, OMPC_order, 45));
EXPECT_TRUE(isAllowedClauseForDirective(OMPD_for, OMPC_order, 50));
EXPECT_TRUE(isAllowedClauseForDirective(OMPD_for, OMPC_order, 51));
}
TEST(OpenMPParsingTest, getOrderKind) {
EXPECT_EQ(getOrderKind("foobar"), OMP_ORDER_concurrent);
EXPECT_EQ(getOrderKind("default"), OMP_ORDER_concurrent);
}
TEST(OpenMPParsingTest, getProcBindKind) {
EXPECT_EQ(getProcBindKind("foobar"), OMP_PROC_BIND_unknown);
EXPECT_EQ(getProcBindKind("master"), OMP_PROC_BIND_master);
EXPECT_EQ(getProcBindKind("close"), OMP_PROC_BIND_close);
EXPECT_EQ(getProcBindKind("spread"), OMP_PROC_BIND_spread);
EXPECT_EQ(getProcBindKind("default"), OMP_PROC_BIND_default);
EXPECT_EQ(getProcBindKind("unknown"), OMP_PROC_BIND_unknown);
}
TEST(OpenMPParsingTest, getScheduleKind) {
EXPECT_EQ(getScheduleKind("foobar"), OMP_SCHEDULE_Default);
// FIXME: Why are these not lower case?
EXPECT_EQ(getScheduleKind("Static"), OMP_SCHEDULE_Static);
EXPECT_EQ(getScheduleKind("Dynamic"), OMP_SCHEDULE_Dynamic);
EXPECT_EQ(getScheduleKind("Guided"), OMP_SCHEDULE_Guided);
EXPECT_EQ(getScheduleKind("Auto"), OMP_SCHEDULE_Auto);
EXPECT_EQ(getScheduleKind("Runtime"), OMP_SCHEDULE_Runtime);
EXPECT_EQ(getScheduleKind("Default"), OMP_SCHEDULE_Default);
}
} // namespace