
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
818 B
C++
32 lines
818 B
C++
// RUN: rm -rf %t
|
|
// RUN: split-file %s %t
|
|
// RUN: cd %t
|
|
|
|
// RUN: %clang_cc1 -std=c++20 -fopenmp -triple x86_64-unknown-linux-gnu %t/AssumeMod.cppm -emit-module-interface -o %t/AssumeMod.pcm
|
|
// RUN: %clang_cc1 -std=c++20 -fopenmp -triple x86_64-unknown-linux-gnu %t/UseAssumeMod.cpp -fmodule-file=AssumeMod=%t/AssumeMod.pcm -ast-dump-all | FileCheck %t/AssumeMod.cppm
|
|
|
|
// expected-no-diagnostics
|
|
|
|
//--- AssumeMod.cppm
|
|
module;
|
|
export module AssumeMod;
|
|
export int foo(int y) {
|
|
int x = -1;
|
|
#pragma omp assume holds(y == 5)
|
|
// CHECK: OMPAssumeDirective 0x{{.*}} <line:5:1, col:33>
|
|
// CHECK-NEXT: OMPHoldsClause 0x{{.*}} <col:20, col:32>
|
|
{
|
|
x = y;
|
|
}
|
|
return x;
|
|
}
|
|
//--- UseAssumeMod.cpp
|
|
import AssumeMod;
|
|
|
|
extern "C" int printf(const char* fmt, ...);
|
|
|
|
int main() {
|
|
printf ("foo(5)=%d\n", foo (5));
|
|
return 0;
|
|
}
|