This is a minimal patch to support parsing for "omp assume" directives. These are meant to be hints to a compiler's optimisers: as such, it is legitimate (if not very useful) to ignore them. The patch builds on top of the existing support for "omp assumes" directives (note spelling!). Unlike the "omp [begin/end] assumes" directives, "omp assume" is associated with a compound statement, i.e. it can appear within a function. The "holds" assumption could (theoretically) be mapped onto the existing builtin "__builtin_assume", though the latter applies to a single point in the program, and the former to a range (i.e. the whole of the associated compound statement). This patch fixes sollve's OpenMP 5.1 "omp assume"-based tests.
32 lines
626 B
C++
32 lines
626 B
C++
// RUN: %clang_cc1 -fopenmp -x c++ -std=c++11 -ast-print %s | FileCheck %s
|
|
// expected-no-diagnostics
|
|
|
|
extern int bar(int);
|
|
|
|
int foo(int arg)
|
|
{
|
|
#pragma omp assume no_openmp_routines
|
|
{
|
|
auto fn = [](int x) { return bar(x); };
|
|
// CHECK: auto fn = [](int x) {
|
|
return fn(5);
|
|
}
|
|
}
|
|
|
|
class C {
|
|
public:
|
|
int foo(int a);
|
|
};
|
|
|
|
// We're really just checking that this parses. All the assumptions are thrown
|
|
// away immediately for now.
|
|
int C::foo(int a)
|
|
{
|
|
#pragma omp assume holds(sizeof(void*) == 8) absent(parallel)
|
|
{
|
|
auto fn = [](int x) { return bar(x); };
|
|
// CHECK: auto fn = [](int x) {
|
|
return fn(5);
|
|
}
|
|
}
|