llvm-project/clang/test/OpenMP
Richard Smith 5e9746f520 DR583, DR1512: Implement a rewrite to C++'s 'composite pointer type' rules.
This has two significant effects:

1) Direct relational comparisons between null pointer constants (0 and nullopt)
   and pointers are now ill-formed. This was always the case for C, and it
   appears that C++ only ever permitted by accident. For instance, cases like
     nullptr < &a
   are now rejected.

2) Comparisons and conditional operators between differently-cv-qualified
   pointer types now work, and produce a composite type that both source
   pointer types can convert to (when possible). For instance, comparison
   between 'int **' and 'const int **' is now valid, and uses an intermediate
   type of 'const int *const *'.

Clang previously supported #2 as an extension.

We do not accept the cases in #1 as an extension. I've tested a fair amount of
code to check that this doesn't break it, but if it turns out that someone is
relying on this, we can easily add it back as an extension.

This is a re-commit of r284800.

llvm-svn: 284890
2016-10-21 22:00:42 +00:00
..
atomic_ast_print.cpp [OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492) 2015-05-20 04:24:19 +00:00
atomic_capture_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
atomic_codegen.cpp [OPENMP] Fix debug info for 'atomic' construct. 2015-12-14 09:26:19 +00:00
atomic_messages.c [OpenMP] Ignore parens in atomic capture 2016-07-20 19:41:17 +00:00
atomic_messages.cpp [OpenMP] Ignore parens in atomic capture 2016-07-20 19:41:17 +00:00
atomic_read_codegen.c Produce a better diagnostic for global register variables. 2015-11-18 00:15:28 +00:00
atomic_update_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
atomic_write_codegen.c Revert "Change memcpy/memset/memmove to have dest and source alignments." 2015-11-19 05:55:59 +00:00
barrier_ast_print.cpp [OPENMP] Fix for declarative/standalone directives use. 2016-01-13 11:18:54 +00:00
barrier_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
barrier_messages.cpp [OPENMP] Fix for declarative/standalone directives use. 2016-01-13 11:18:54 +00:00
cancel_ast_print.cpp [OPENMP 4.0] Add 'if' clause for 'cancel' directive. 2015-09-18 08:07:34 +00:00
cancel_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
cancel_if_messages.cpp [OPENMP 4.0] Add 'if' clause for 'cancel' directive. 2015-09-18 08:07:34 +00:00
cancel_messages.cpp [OPENMP] Fix for declarative/standalone directives use. 2016-01-13 11:18:54 +00:00
cancellation_point_ast_print.cpp [OPENMP 4.0] Initial support for 'omp cancellation point' construct. 2015-07-01 06:57:41 +00:00
cancellation_point_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
cancellation_point_messages.cpp [OPENMP] Fix for declarative/standalone directives use. 2016-01-13 11:18:54 +00:00
critical_ast_print.cpp [OPENMP 4.5] Parsing/sema for 'hint' clause of 'critical' directive. 2015-12-15 08:19:24 +00:00
critical_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
critical_messages.cpp [OPENMP 4.5] Parsing/sema for 'hint' clause of 'critical' directive. 2015-12-15 08:19:24 +00:00
debug-info-openmp-array.cpp Fix for PR30639: CGDebugInfo Null dereference with OpenMP array 2016-10-13 09:52:46 +00:00
declare_reduction_ast_print.c [OPENMP 4.0] Initial support for 'omp declare reduction' construct. 2016-03-03 05:21:39 +00:00
declare_reduction_ast_print.cpp [OPENMP 4.0] Initial support for 'omp declare reduction' construct. 2016-03-03 05:21:39 +00:00
declare_reduction_codegen.c [OPENMP 4.0] Use 'declare reduction' constructs in 'reduction' clauses. 2016-03-17 10:19:46 +00:00
declare_reduction_codegen.cpp [OPENMP] Fix crash on initialization of classes with no init clause in 2016-04-27 11:38:05 +00:00
declare_reduction_messages.c [OPENMP 4.0] Initial support for 'omp declare reduction' construct. 2016-03-03 05:21:39 +00:00
declare_reduction_messages.cpp [OPENMP 4.0] Use 'declare reduction' constructs in 'reduction' clauses. 2016-03-17 10:19:46 +00:00
declare_simd_ast_print.c [OPENMP 4.0] Support for 'linear' clause in 'declare simd' directive. 2016-04-12 11:02:11 +00:00
declare_simd_ast_print.cpp [OPENMP 4.0] Support for 'linear' clause in 'declare simd' directive. 2016-04-12 11:02:11 +00:00
declare_simd_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
declare_simd_messages.cpp [OPENMP 4.0] Support for 'linear' clause in 'declare simd' directive. 2016-04-12 11:02:11 +00:00
declare_target_ast_print.cpp [OpenMP] Parse+Sema for '#pragma omp declare target' syntax version 4.5 2016-05-09 14:59:13 +00:00
declare_target_messages.cpp [OpenMP] Parse+Sema for '#pragma omp declare target' syntax version 4.5 2016-05-09 14:59:13 +00:00
distribute_ast_print.cpp [OPENMP 4.5] Allow to use non-static data members in non-static member functions in 'private' clause. 2016-01-20 09:07:54 +00:00
distribute_codegen.cpp [OpenMP] Use fopenmp prefix for all options introduced by the offloading implementation. 2016-06-30 21:22:08 +00:00
distribute_collapse_messages.cpp Add parse and sema of OpenMP distribute directive with all clauses except dist_schedule 2015-12-14 14:51:25 +00:00
distribute_dist_schedule_ast_print.cpp Add OpenMP dist_schedule clause to distribute directive and related regression tests. 2016-01-15 18:50:31 +00:00
distribute_dist_schedule_messages.cpp Add OpenMP dist_schedule clause to distribute directive and related regression tests. 2016-01-15 18:50:31 +00:00
distribute_firstprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
distribute_parallel_for_ast_print.cpp Resubmission of http://reviews.llvm.org/D21564 after fixes. 2016-06-27 14:55:37 +00:00
distribute_parallel_for_collapse_messages.cpp Resubmission of http://reviews.llvm.org/D21564 after fixes. 2016-06-27 14:55:37 +00:00
distribute_parallel_for_copyin_messages.cpp Resubmission of http://reviews.llvm.org/D21564 after fixes. 2016-06-27 14:55:37 +00:00
distribute_parallel_for_default_messages.cpp Resubmission of http://reviews.llvm.org/D21564 after fixes. 2016-06-27 14:55:37 +00:00
distribute_parallel_for_dist_schedule_messages.cpp Resubmission of http://reviews.llvm.org/D21564 after fixes. 2016-06-27 14:55:37 +00:00
distribute_parallel_for_firstprivate_messages.cpp Resubmission of http://reviews.llvm.org/D21564 after fixes. 2016-06-27 14:55:37 +00:00
distribute_parallel_for_if_messages.cpp Resubmission of http://reviews.llvm.org/D21564 after fixes. 2016-06-27 14:55:37 +00:00
distribute_parallel_for_lastprivate_messages.cpp Resubmission of http://reviews.llvm.org/D21564 after fixes. 2016-06-27 14:55:37 +00:00
distribute_parallel_for_num_threads_messages.cpp Resubmission of http://reviews.llvm.org/D21564 after fixes. 2016-06-27 14:55:37 +00:00
distribute_parallel_for_private_messages.cpp Resubmission of http://reviews.llvm.org/D21564 after fixes. 2016-06-27 14:55:37 +00:00
distribute_parallel_for_proc_bind_messages.cpp Resubmission of http://reviews.llvm.org/D21564 after fixes. 2016-06-27 14:55:37 +00:00
distribute_parallel_for_reduction_messages.cpp [OpenMP] fix segfault when a variable referenced in reduction clause is a reference parameter\nDifferential Revision: http://reviews.llvm.org/D24524 2016-10-04 14:41:36 +00:00
distribute_parallel_for_schedule_messages.cpp Resubmission of http://reviews.llvm.org/D21564 after fixes. 2016-06-27 14:55:37 +00:00
distribute_parallel_for_shared_messages.cpp Resubmission of http://reviews.llvm.org/D21564 after fixes. 2016-06-27 14:55:37 +00:00
distribute_parallel_for_simd_aligned_messages.cpp DR583, DR1512: Implement a rewrite to C++'s 'composite pointer type' rules. 2016-10-21 22:00:42 +00:00
distribute_parallel_for_simd_ast_print.cpp [OpenMP] Sema and parse for 'distribute parallel for simd' 2016-07-05 05:00:15 +00:00
distribute_parallel_for_simd_collapse_messages.cpp [OpenMP] Sema and parse for 'distribute parallel for simd' 2016-07-05 05:00:15 +00:00
distribute_parallel_for_simd_copyin_messages.cpp [OpenMP] Sema and parse for 'distribute parallel for simd' 2016-07-05 05:00:15 +00:00
distribute_parallel_for_simd_default_messages.cpp [OpenMP] Sema and parse for 'distribute parallel for simd' 2016-07-05 05:00:15 +00:00
distribute_parallel_for_simd_dist_schedule_messages.cpp [OpenMP] Sema and parse for 'distribute parallel for simd' 2016-07-05 05:00:15 +00:00
distribute_parallel_for_simd_firstprivate_messages.cpp [OpenMP] Sema and parse for 'distribute parallel for simd' 2016-07-05 05:00:15 +00:00
distribute_parallel_for_simd_if_messages.cpp [OpenMP] Sema and parse for 'distribute parallel for simd' 2016-07-05 05:00:15 +00:00
distribute_parallel_for_simd_lastprivate_messages.cpp [OpenMP] Sema and parse for 'distribute parallel for simd' 2016-07-05 05:00:15 +00:00
distribute_parallel_for_simd_linear_messages.cpp [OpenMP] Sema and parse for 'distribute parallel for simd' 2016-07-05 05:00:15 +00:00
distribute_parallel_for_simd_loop_messages.cpp [OpenMP] add more tests for 'distribute parallel for simd' pragma 2016-07-13 20:40:32 +00:00
distribute_parallel_for_simd_misc_messages.c [OpenMP] add check for both simdlen and safelen clauses specified 2016-07-15 04:39:07 +00:00
distribute_parallel_for_simd_num_threads_messages.cpp [OpenMP] Sema and parse for 'distribute parallel for simd' 2016-07-05 05:00:15 +00:00
distribute_parallel_for_simd_private_messages.cpp [OpenMP] Sema and parse for 'distribute parallel for simd' 2016-07-05 05:00:15 +00:00
distribute_parallel_for_simd_proc_bind_messages.cpp [OpenMP] Sema and parse for 'distribute parallel for simd' 2016-07-05 05:00:15 +00:00
distribute_parallel_for_simd_reduction_messages.cpp [OpenMP] fix segfault when a variable referenced in reduction clause is a reference parameter\nDifferential Revision: http://reviews.llvm.org/D24524 2016-10-04 14:41:36 +00:00
distribute_parallel_for_simd_safelen_messages.cpp [OpenMP] Sema and parse for 'distribute parallel for simd' 2016-07-05 05:00:15 +00:00
distribute_parallel_for_simd_schedule_messages.cpp [OpenMP] Sema and parse for 'distribute parallel for simd' 2016-07-05 05:00:15 +00:00
distribute_parallel_for_simd_shared_messages.cpp [OpenMP] Sema and parse for 'distribute parallel for simd' 2016-07-05 05:00:15 +00:00
distribute_parallel_for_simd_simdlen_messages.cpp [OpenMP] Sema and parse for 'distribute parallel for simd' 2016-07-05 05:00:15 +00:00
distribute_private_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
distribute_simd_aligned_messages.cpp DR583, DR1512: Implement a rewrite to C++'s 'composite pointer type' rules. 2016-10-21 22:00:42 +00:00
distribute_simd_ast_print.cpp [OpenMP] Sema and parsing for 'distribute simd' pragma 2016-07-06 04:45:38 +00:00
distribute_simd_collapse_messages.cpp [OpenMP] Sema and parsing for 'distribute simd' pragma 2016-07-06 04:45:38 +00:00
distribute_simd_dist_schedule_messages.cpp [OpenMP] Sema and parsing for 'distribute simd' pragma 2016-07-06 04:45:38 +00:00
distribute_simd_firstprivate_messages.cpp [OpenMP] Sema and parsing for 'distribute simd' pragma 2016-07-06 04:45:38 +00:00
distribute_simd_lastprivate_messages.cpp [OpenMP] Sema and parsing for 'distribute simd' pragma 2016-07-06 04:45:38 +00:00
distribute_simd_linear_messages.cpp [OpenMP] Sema and parsing for 'distribute simd' pragma 2016-07-06 04:45:38 +00:00
distribute_simd_loop_messages.cpp [OpenMP] add more tests for 'distribute simd' pragma 2016-07-13 19:16:56 +00:00
distribute_simd_misc_messages.c [OpenMP] add check for both simdlen and safelen clauses specified 2016-07-15 04:39:07 +00:00
distribute_simd_private_messages.cpp [OpenMP] Sema and parsing for 'distribute simd' pragma 2016-07-06 04:45:38 +00:00
distribute_simd_reduction_messages.cpp [OpenMP] fix segfault when a variable referenced in reduction clause is a reference parameter\nDifferential Revision: http://reviews.llvm.org/D24524 2016-10-04 14:41:36 +00:00
distribute_simd_safelen_messages.cpp [OpenMP] Sema and parsing for 'distribute simd' pragma 2016-07-06 04:45:38 +00:00
distribute_simd_simdlen_messages.cpp [OpenMP] Sema and parsing for 'distribute simd' pragma 2016-07-06 04:45:38 +00:00
driver.c [OPENMP] Fixed processing of '-fopenmp-version=' option and test. 2016-05-27 04:13:39 +00:00
dump.cpp [OPENMP 4.0] Parsing/sema analysis for 'simdlen' clause in 'declare simd' 2016-04-07 12:45:37 +00:00
flush_ast_print.cpp [OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492) 2015-05-20 04:24:19 +00:00
flush_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
flush_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
for_ast_print.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
for_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
for_collapse_messages.cpp Lit C++11 Compatibility Patch #6 2016-04-11 19:30:25 +00:00
for_firstprivate_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
for_firstprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
for_lastprivate_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
for_lastprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
for_linear_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
for_linear_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
for_loop_messages.cpp [OPENMP] Remove extra code transformation. 2016-03-29 08:58:54 +00:00
for_misc_messages.c Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
for_ordered_clause.cpp Lit C++11 Compatibility Patch #6 2016-04-11 19:30:25 +00:00
for_private_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
for_private_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
for_reduction_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
for_reduction_codegen_UDR.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
for_reduction_messages.cpp [OpenMP] fix segfault when a variable referenced in reduction clause is a reference parameter\nDifferential Revision: http://reviews.llvm.org/D24524 2016-10-04 14:41:36 +00:00
for_schedule_messages.cpp [OPENMP 4.5] Sema/parsing support for extended format of 'schedule' clause. 2015-12-28 07:25:51 +00:00
for_simd_aligned_messages.cpp DR583, DR1512: Implement a rewrite to C++'s 'composite pointer type' rules. 2016-10-21 22:00:42 +00:00
for_simd_ast_print.cpp [OPENMP 4.5] Allow to use non-static data members in non-static member functions in 'private' clause. 2016-01-20 09:07:54 +00:00
for_simd_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
for_simd_collapse_messages.cpp Lit C++11 Compatibility Patch #6 2016-04-11 19:30:25 +00:00
for_simd_firstprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
for_simd_lastprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
for_simd_linear_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
for_simd_loop_messages.cpp [OPENMP] Remove extra code transformation. 2016-03-29 08:58:54 +00:00
for_simd_misc_messages.c Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
for_simd_private_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
for_simd_reduction_messages.cpp [OpenMP] fix segfault when a variable referenced in reduction clause is a reference parameter\nDifferential Revision: http://reviews.llvm.org/D24524 2016-10-04 14:41:36 +00:00
for_simd_safelen_messages.cpp Lit C++11 Compatibility Patch #6 2016-04-11 19:30:25 +00:00
for_simd_schedule_messages.cpp [OPENMP 4.5] Sema/parsing support for extended format of 'schedule' clause. 2015-12-28 07:25:51 +00:00
for_simd_simdlen_messages.cpp Lit C++11 Compatibility Patch #6 2016-04-11 19:30:25 +00:00
function-attr.cpp Add a test case for r251476. 2015-10-28 02:32:19 +00:00
linking.c Support setting default value for -rtlib at build time 2016-07-27 08:15:54 +00:00
loops_explicit_clauses_codegen.cpp [OPENMP] Fix for LCV in simd directives in explicit clauses. 2016-04-22 03:56:56 +00:00
master_ast_print.cpp [OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492) 2015-05-20 04:24:19 +00:00
master_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
master_messages.cpp [OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492) 2015-05-20 04:24:19 +00:00
nesting_of_regions.cpp Revert "[OpenMP] Sema and parsing for 'teams distribute simd’ pragma" 2016-08-18 09:25:07 +00:00
no_option.c [OPENMP] Improved diagnostic messages for vars with the predetermined data sharing attributes and reformatting 2014-06-19 09:13:45 +00:00
no_option_no_warn.c [OPENMP] Improved diagnostic messages for vars with the predetermined data sharing attributes and reformatting 2014-06-19 09:13:45 +00:00
nvptx_target_codegen.cpp [OpenMP] Use fopenmp prefix for all options introduced by the offloading implementation. 2016-06-30 21:22:08 +00:00
nvptx_target_firstprivate_codegen.cpp [OpenMP] Use fopenmp prefix for all options introduced by the offloading implementation. 2016-06-30 21:22:08 +00:00
nvptx_teams_codegen.cpp [OpenMP] Use fopenmp prefix for all options introduced by the offloading implementation. 2016-06-30 21:22:08 +00:00
openmp_check.cpp [OPENMP] Fix for http://llvm.org/PR25221: Infinite loop while parsing OpenMP directive 2015-10-19 06:40:17 +00:00
openmp_common.c [OPENMP] Fix for http://llvm.org/PR24430: clang hangs on invalid input with openmp directive 2015-08-12 07:10:54 +00:00
option_warn.c
ordered_ast_print.cpp [OPENMP 4.5] Parsing/sema for 'depend(sink:vec)' clause in 'ordered' directive. 2015-12-23 10:27:45 +00:00
ordered_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
ordered_doacross_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
ordered_messages.cpp [OPENMP 4.5] Parsing/sema for 'depend(sink:vec)' clause in 'ordered' directive. 2015-12-23 10:27:45 +00:00
parallel_ast_print.cpp Warn if function or variable cannot be implicitly instantiated 2016-04-19 06:19:52 +00:00
parallel_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
parallel_copyin_codegen.cpp [OPENMP] Allow runtime insert its own code inside OpenMP regions. 2016-03-29 05:34:15 +00:00
parallel_copyin_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
parallel_default_messages.cpp [OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492) 2015-05-20 04:24:19 +00:00
parallel_firstprivate_codegen.cpp Re-apply r272900 - [OpenMP] Cast captures by copy when passed to fork call so that they are compatible to what the runtime library expects. 2016-06-16 18:39:34 +00:00
parallel_firstprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
parallel_for_ast_print.cpp [OPENMP 4.5] Allow to use non-static data members in non-static member functions in 'private' clause. 2016-01-20 09:07:54 +00:00
parallel_for_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
parallel_for_collapse_messages.cpp Lit C++11 Compatibility Patch #6 2016-04-11 19:30:25 +00:00
parallel_for_copyin_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
parallel_for_default_messages.cpp [OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492) 2015-05-20 04:24:19 +00:00
parallel_for_firstprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
parallel_for_if_messages.cpp [OPENMP] Emit an additional note during analysis of 'if' clause. 2015-09-15 17:23:56 +00:00
parallel_for_lastprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
parallel_for_linear_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
parallel_for_linear_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
parallel_for_loop_messages.cpp [OPENMP] Remove extra code transformation. 2016-03-29 08:58:54 +00:00
parallel_for_messages.cpp [OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492) 2015-05-20 04:24:19 +00:00
parallel_for_misc_messages.c Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
parallel_for_num_threads_messages.cpp [OPENMP 4.5] Parsing/sema analysis for 'priority' clause. 2015-12-01 10:17:31 +00:00
parallel_for_ordered_messages.cpp Lit C++11 Compatibility Patch #6 2016-04-11 19:30:25 +00:00
parallel_for_private_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
parallel_for_proc_bind_messages.cpp [OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492) 2015-05-20 04:24:19 +00:00
parallel_for_reduction_messages.cpp [OpenMP] fix segfault when a variable referenced in reduction clause is a reference parameter\nDifferential Revision: http://reviews.llvm.org/D24524 2016-10-04 14:41:36 +00:00
parallel_for_schedule_messages.cpp [OPENMP 4.5] Sema/parsing support for extended format of 'schedule' clause. 2015-12-28 07:25:51 +00:00
parallel_for_simd_aligned_messages.cpp DR583, DR1512: Implement a rewrite to C++'s 'composite pointer type' rules. 2016-10-21 22:00:42 +00:00
parallel_for_simd_ast_print.cpp [OPENMP 4.5] Allow to use non-static data members in non-static member functions in 'private' clause. 2016-01-20 09:07:54 +00:00
parallel_for_simd_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
parallel_for_simd_collapse_messages.cpp Lit C++11 Compatibility Patch #6 2016-04-11 19:30:25 +00:00
parallel_for_simd_copyin_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
parallel_for_simd_default_messages.cpp [OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492) 2015-05-20 04:24:19 +00:00
parallel_for_simd_firstprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
parallel_for_simd_if_messages.cpp [OPENMP] Emit an additional note during analysis of 'if' clause. 2015-09-15 17:23:56 +00:00
parallel_for_simd_lastprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
parallel_for_simd_linear_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
parallel_for_simd_loop_messages.cpp [OPENMP] Remove extra code transformation. 2016-03-29 08:58:54 +00:00
parallel_for_simd_messages.cpp [OPENMP 4.5] Allow 'ordered' clause on 'loop simd' constructs. 2015-12-30 12:06:23 +00:00
parallel_for_simd_misc_messages.c Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
parallel_for_simd_num_threads_messages.cpp [OPENMP 4.5] Parsing/sema analysis for 'priority' clause. 2015-12-01 10:17:31 +00:00
parallel_for_simd_private_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
parallel_for_simd_proc_bind_messages.cpp [OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492) 2015-05-20 04:24:19 +00:00
parallel_for_simd_reduction_messages.cpp [OpenMP] fix segfault when a variable referenced in reduction clause is a reference parameter\nDifferential Revision: http://reviews.llvm.org/D24524 2016-10-04 14:41:36 +00:00
parallel_for_simd_safelen_messages.cpp Lit C++11 Compatibility Patch #6 2016-04-11 19:30:25 +00:00
parallel_for_simd_schedule_messages.cpp [OPENMP 4.5] Sema/parsing support for extended format of 'schedule' clause. 2015-12-28 07:25:51 +00:00
parallel_for_simd_simdlen_messages.cpp Lit C++11 Compatibility Patch #6 2016-04-11 19:30:25 +00:00
parallel_if_codegen.cpp [OPENMP] Outlined function for parallel and other regions with list of captured variables. 2015-09-10 08:12:02 +00:00
parallel_if_messages.cpp [OPENMP] Emit an additional note during analysis of 'if' clause. 2015-09-15 17:23:56 +00:00
parallel_messages.cpp Fix PR26543: add a check for definition in CXXRecordDecl. 2016-02-10 10:50:12 +00:00
parallel_num_threads_codegen.cpp [OPENMP 4.5] Codegen for member decls in 'lastprivate' clause. 2016-02-25 05:25:57 +00:00
parallel_num_threads_messages.cpp [OPENMP 4.5] Parsing/sema analysis for 'priority' clause. 2015-12-01 10:17:31 +00:00
parallel_private_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
parallel_private_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
parallel_proc_bind_codegen.cpp Account for calling convention specifiers in function definitions in IR test cases 2015-06-29 17:29:50 +00:00
parallel_proc_bind_messages.cpp [OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492) 2015-05-20 04:24:19 +00:00
parallel_reduction_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
parallel_reduction_messages.cpp [OpenMP] fix segfault when a variable referenced in reduction clause is a reference parameter\nDifferential Revision: http://reviews.llvm.org/D24524 2016-10-04 14:41:36 +00:00
parallel_sections_ast_print.cpp Warn if function or variable cannot be implicitly instantiated 2016-04-19 06:19:52 +00:00
parallel_sections_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
parallel_sections_copyin_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
parallel_sections_default_messages.cpp [OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492) 2015-05-20 04:24:19 +00:00
parallel_sections_firstprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
parallel_sections_if_messages.cpp [OPENMP] Emit an additional note during analysis of 'if' clause. 2015-09-15 17:23:56 +00:00
parallel_sections_lastprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
parallel_sections_messages.cpp [OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492) 2015-05-20 04:24:19 +00:00
parallel_sections_misc_messages.c Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
parallel_sections_num_threads_messages.cpp [OPENMP 4.5] Parsing/sema analysis for 'priority' clause. 2015-12-01 10:17:31 +00:00
parallel_sections_private_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
parallel_sections_proc_bind_messages.cpp [OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492) 2015-05-20 04:24:19 +00:00
parallel_sections_reduction_messages.cpp [OpenMP] fix segfault when a variable referenced in reduction clause is a reference parameter\nDifferential Revision: http://reviews.llvm.org/D24524 2016-10-04 14:41:36 +00:00
parallel_sections_shared_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
parallel_shared_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
predefined_macro.c [OPENMP] Add option '-fopenmp-version=[31|40|45]' allowing choosing 2016-05-26 11:10:11 +00:00
schedule_codegen.cpp [OPENMP 4.5] Codegen for 'schedule' clause with monotonic/nonmonotonic modifiers. 2015-12-31 06:52:34 +00:00
sections_ast_print.cpp [OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492) 2015-05-20 04:24:19 +00:00
sections_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
sections_firstprivate_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
sections_firstprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
sections_lastprivate_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
sections_lastprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
sections_misc_messages.c Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
sections_private_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
sections_private_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
sections_reduction_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
sections_reduction_messages.cpp [OpenMP] fix segfault when a variable referenced in reduction clause is a reference parameter\nDifferential Revision: http://reviews.llvm.org/D24524 2016-10-04 14:41:36 +00:00
simd_aligned_messages.cpp DR583, DR1512: Implement a rewrite to C++'s 'composite pointer type' rules. 2016-10-21 22:00:42 +00:00
simd_ast_print.cpp [OPENMP 4.5] Allow data members in 'aligned' clause. 2016-03-29 10:59:56 +00:00
simd_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
simd_collapse_messages.cpp Lit C++11 Compatibility Patch #6 2016-04-11 19:30:25 +00:00
simd_lastprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
simd_linear_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
simd_loop_messages.cpp [OPENMP] Do not allow to use threadprivate or thread local variables as loop iteration variables. 2015-12-25 13:38:08 +00:00
simd_metadata.c [X86] Use AVX features instead of ABI to init. SimdDefaultAlign. 2015-08-27 22:24:56 +00:00
simd_misc_messages.c Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
simd_private_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
simd_reduction_messages.cpp [OpenMP] fix segfault when a variable referenced in reduction clause is a reference parameter\nDifferential Revision: http://reviews.llvm.org/D24524 2016-10-04 14:41:36 +00:00
simd_safelen_messages.cpp Lit C++11 Compatibility Patch #6 2016-04-11 19:30:25 +00:00
simd_simdlen_messages.cpp Lit C++11 Compatibility Patch #6 2016-04-11 19:30:25 +00:00
single_ast_print.cpp [OPENMP 4.5] Allow to use private data members in 'copyprivate' clause. 2016-03-17 10:50:17 +00:00
single_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
single_copyprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
single_firstprivate_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
single_firstprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
single_misc_messages.c Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
single_private_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
single_private_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
target_ast_print.cpp [OpenMP] Parsing + sema for defaultmap clause. 2016-01-26 16:37:23 +00:00
target_codegen.cpp [OpenMP] Use fopenmp prefix for all options introduced by the offloading implementation. 2016-06-30 21:22:08 +00:00
target_codegen_global_capture.cpp [OpenMP] Use fopenmp prefix for all options introduced by the offloading implementation. 2016-06-30 21:22:08 +00:00
target_codegen_registration.cpp [OpenMP] Use fopenmp prefix for all options introduced by the offloading implementation. 2016-06-30 21:22:08 +00:00
target_codegen_registration_naming.cpp [OpenMP] Use fopenmp prefix for all options introduced by the offloading implementation. 2016-06-30 21:22:08 +00:00
target_data_ast_print.cpp [OpenMP] Check for at least one map clause on target data directive. 2016-01-21 19:57:55 +00:00
target_data_codegen.cpp [OpenMP] Use fopenmp prefix for all options introduced by the offloading implementation. 2016-06-30 21:22:08 +00:00
target_data_device_messages.cpp [OpenMP] Prevent nesting of target constructs within target code execution regions. 2016-02-02 04:00:47 +00:00
target_data_if_messages.cpp [OpenMP] Check for at least one map clause on target data directive. 2016-01-21 19:57:55 +00:00
target_data_messages.c [OpenMP] Check for at least one map clause on target data directive. 2016-01-21 19:57:55 +00:00
target_data_use_device_ptr_ast_print.cpp [OpenMP] Initial implementation of parse+sema for clause use_device_ptr of 'target data' 2016-07-13 15:37:16 +00:00
target_data_use_device_ptr_codegen.cpp [OpenMP] Codegen for use_device_ptr clause. 2016-07-28 14:23:26 +00:00
target_data_use_device_ptr_messages.cpp [OpenMP] Initial implementation of parse+sema for clause use_device_ptr of 'target data' 2016-07-13 15:37:16 +00:00
target_defaultmap_messages.cpp [OpenMP] Parsing + sema for defaultmap clause. 2016-01-26 16:37:23 +00:00
target_depend_messages.cpp [OpenMP] Allow negative lower bound in array sections based on pointers 2016-07-20 20:45:29 +00:00
target_device_messages.cpp [OpenMP] Prevent nesting of target constructs within target code execution regions. 2016-02-02 04:00:47 +00:00
target_enter_data_ast_print.cpp [OpenMP] Sema for depend clause on target enter data directive. 2016-01-22 01:09:37 +00:00
target_enter_data_codegen.cpp [OpenMP] Use fopenmp prefix for all options introduced by the offloading implementation. 2016-06-30 21:22:08 +00:00
target_enter_data_depend_messages.cpp [OpenMP] Allow negative lower bound in array sections based on pointers 2016-07-20 20:45:29 +00:00
target_enter_data_device_messages.cpp [OpenMP] Parsing + sema for "target enter data" directive. 2016-01-19 19:15:56 +00:00
target_enter_data_if_messages.cpp [OpenMP] Parsing + sema for "target enter data" directive. 2016-01-19 19:15:56 +00:00
target_enter_data_map_messages.c [OpenMP] Fix parsing of delete map clause modifier in C++ mode. 2016-02-27 00:01:58 +00:00
target_enter_data_nowait_messages.cpp [OpenMP] Parsing + Sema for nowait clause on target enter data directive. 2016-01-22 00:03:50 +00:00
target_exit_data_ast_print.cpp [OpenMP] Fix parsing of delete map clause modifier in C++ mode. 2016-02-27 00:01:58 +00:00
target_exit_data_codegen.cpp [OpenMP] Use fopenmp prefix for all options introduced by the offloading implementation. 2016-06-30 21:22:08 +00:00
target_exit_data_depend_messages.cpp [OpenMP] Allow negative lower bound in array sections based on pointers 2016-07-20 20:45:29 +00:00
target_exit_data_device_messages.cpp [OpenMP] Parsing + sema for "target exit data" directive. 2016-01-19 20:04:50 +00:00
target_exit_data_if_messages.cpp [OpenMP] Parsing + sema for "target exit data" directive. 2016-01-19 20:04:50 +00:00
target_exit_data_map_messages.c [OpenMP] Fix parsing of delete map clause modifier in C++ mode. 2016-02-27 00:01:58 +00:00
target_exit_data_nowait_messages.cpp [OpenMP] Parsing + Sema for nowait clause on target exit data directive. 2016-01-22 00:22:05 +00:00
target_firstprivate_codegen.cpp Fix for PR30639: CGDebugInfo Null dereference with OpenMP array 2016-10-13 09:52:46 +00:00
target_firstprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
target_if_messages.cpp [OpenMP] Prevent nesting of target constructs within target code execution regions. 2016-02-02 04:00:47 +00:00
target_is_device_ptr_ast_print.cpp [OpenMP] Initial implementation of parse+sema for OpenMP clause 'is_device_ptr' of target 2016-07-13 17:16:49 +00:00
target_is_device_ptr_codegen.cpp [OpenMP] Code generation for the is_device_ptr clause 2016-07-28 14:25:09 +00:00
target_is_device_ptr_messages.cpp [OpenMP] Code generation for the is_device_ptr clause 2016-07-28 14:25:09 +00:00
target_map_codegen.cpp Fix for PR30632: Name mangling issue. 2016-10-14 12:43:59 +00:00
target_map_messages.cpp [OpenMP] Check if the template specialization is mappable instead of specialized template Differential Revision: https://reviews.llvm.org/D25252 2016-10-06 15:47:36 +00:00
target_messages.cpp [OpenMP] Use fopenmp prefix for all options introduced by the offloading implementation. 2016-06-30 21:22:08 +00:00
target_nowait_messages.cpp [OpenMP] Parsing + Sema for nowait clause on target directive 2016-01-21 22:18:28 +00:00
target_parallel_ast_print.cpp Warn if function or variable cannot be implicitly instantiated 2016-04-19 06:19:52 +00:00
target_parallel_default_messages.cpp [OpenMP] Prevent nesting of target constructs within target code execution regions. 2016-02-02 04:00:47 +00:00
target_parallel_defaultmap_messages.cpp [OpenMP] Parsing + sema for target parallel directive. 2016-01-26 18:48:41 +00:00
target_parallel_depend_messages.cpp [OpenMP] Allow negative lower bound in array sections based on pointers 2016-07-20 20:45:29 +00:00
target_parallel_device_messages.cpp [OpenMP] Prevent nesting of target constructs within target code execution regions. 2016-02-02 04:00:47 +00:00
target_parallel_firstprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
target_parallel_for_ast_print.cpp [OpenMP] Parsing + sema for target parallel for directive. 2016-02-03 15:46:42 +00:00
target_parallel_for_collapse_messages.cpp [OpenMP] Parsing + sema for target parallel for directive. 2016-02-03 15:46:42 +00:00
target_parallel_for_default_messages.cpp [OpenMP] Parsing + sema for target parallel for directive. 2016-02-03 15:46:42 +00:00
target_parallel_for_defaultmap_messages.cpp [OpenMP] Parsing + sema for target parallel for directive. 2016-02-03 15:46:42 +00:00
target_parallel_for_depend_messages.cpp [OpenMP] Allow negative lower bound in array sections based on pointers 2016-07-20 20:45:29 +00:00
target_parallel_for_device_messages.cpp [OpenMP] Parsing + sema for target parallel for directive. 2016-02-03 15:46:42 +00:00
target_parallel_for_firstprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
target_parallel_for_if_messages.cpp [OpenMP] Parsing + sema for target parallel for directive. 2016-02-03 15:46:42 +00:00
target_parallel_for_lastprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
target_parallel_for_linear_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
target_parallel_for_loop_messages.cpp [OPENMP] Remove extra code transformation. 2016-03-29 08:58:54 +00:00
target_parallel_for_map_messages.cpp [OpenMP] Allow negative lower bound in array sections based on pointers 2016-07-20 20:45:29 +00:00
target_parallel_for_messages.cpp [OpenMP] Parsing + sema for target parallel for directive. 2016-02-03 15:46:42 +00:00
target_parallel_for_misc_messages.c Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
target_parallel_for_nowait_messages.cpp [OpenMP] Parsing + sema for target parallel for directive. 2016-02-03 15:46:42 +00:00
target_parallel_for_num_threads_messages.cpp [OpenMP] Parsing + sema for target parallel for directive. 2016-02-03 15:46:42 +00:00
target_parallel_for_ordered_messages.cpp [OpenMP] Parsing + sema for target parallel for directive. 2016-02-03 15:46:42 +00:00
target_parallel_for_private_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
target_parallel_for_proc_bind_messages.cpp [OpenMP] Parsing + sema for target parallel for directive. 2016-02-03 15:46:42 +00:00
target_parallel_for_reduction_messages.cpp [OpenMP] fix segfault when a variable referenced in reduction clause is a reference parameter\nDifferential Revision: http://reviews.llvm.org/D24524 2016-10-04 14:41:36 +00:00
target_parallel_for_schedule_messages.cpp [OpenMP] Parsing + sema for target parallel for directive. 2016-02-03 15:46:42 +00:00
target_parallel_for_simd_aligned_messages.cpp DR583, DR1512: Implement a rewrite to C++'s 'composite pointer type' rules. 2016-10-21 22:00:42 +00:00
target_parallel_for_simd_ast_print.cpp [OpenMP] Sema and parsing for 'target parallel for simd' pragma 2016-07-14 02:54:56 +00:00
target_parallel_for_simd_collapse_messages.cpp [OpenMP] update test cases for -std=c++11 compile 2016-07-18 16:09:53 +00:00
target_parallel_for_simd_default_messages.cpp [OpenMP] Sema and parsing for 'target parallel for simd' pragma 2016-07-14 02:54:56 +00:00
target_parallel_for_simd_defaultmap_messages.cpp [OpenMP] Sema and parsing for 'target parallel for simd' pragma 2016-07-14 02:54:56 +00:00
target_parallel_for_simd_depend_messages.cpp [OpenMP] Allow negative lower bound in array sections based on pointers 2016-07-20 20:45:29 +00:00
target_parallel_for_simd_device_messages.cpp [OpenMP] Sema and parsing for 'target parallel for simd' pragma 2016-07-14 02:54:56 +00:00
target_parallel_for_simd_firstprivate_messages.cpp [OpenMP] Sema and parsing for 'target parallel for simd' pragma 2016-07-14 02:54:56 +00:00
target_parallel_for_simd_if_messages.cpp [OpenMP] Sema and parsing for 'target parallel for simd' pragma 2016-07-14 02:54:56 +00:00
target_parallel_for_simd_lastprivate_messages.cpp [OpenMP] Sema and parsing for 'target parallel for simd' pragma 2016-07-14 02:54:56 +00:00
target_parallel_for_simd_linear_messages.cpp [OpenMP] Sema and parsing for 'target parallel for simd' pragma 2016-07-14 02:54:56 +00:00
target_parallel_for_simd_loop_messages.cpp [OpenMP] Sema and parsing for 'target parallel for simd' pragma 2016-07-14 02:54:56 +00:00
target_parallel_for_simd_map_messages.cpp [OpenMP] Allow negative lower bound in array sections based on pointers 2016-07-20 20:45:29 +00:00
target_parallel_for_simd_messages.cpp [OpenMP] Sema and parsing for 'target parallel for simd' pragma 2016-07-14 02:54:56 +00:00
target_parallel_for_simd_misc_messages.c [OpenMP] add check for both simdlen and safelen clauses specified 2016-07-15 04:39:07 +00:00
target_parallel_for_simd_nowait_messages.cpp [OpenMP] Sema and parsing for 'target parallel for simd' pragma 2016-07-14 02:54:56 +00:00
target_parallel_for_simd_num_threads_messages.cpp [OpenMP] Sema and parsing for 'target parallel for simd' pragma 2016-07-14 02:54:56 +00:00
target_parallel_for_simd_ordered_messages.cpp [OpenMP] update test cases for -std=c++11 compile 2016-07-18 16:09:53 +00:00
target_parallel_for_simd_private_messages.cpp [OpenMP] Sema and parsing for 'target parallel for simd' pragma 2016-07-14 02:54:56 +00:00
target_parallel_for_simd_proc_bind_messages.cpp [OpenMP] Sema and parsing for 'target parallel for simd' pragma 2016-07-14 02:54:56 +00:00
target_parallel_for_simd_reduction_messages.cpp [OpenMP] fix segfault when a variable referenced in reduction clause is a reference parameter\nDifferential Revision: http://reviews.llvm.org/D24524 2016-10-04 14:41:36 +00:00
target_parallel_for_simd_safelen_messages.cpp [OpenMP] Sema and parsing for 'target parallel for simd' pragma 2016-07-14 02:54:56 +00:00
target_parallel_for_simd_schedule_messages.cpp [OpenMP] Sema and parsing for 'target parallel for simd' pragma 2016-07-14 02:54:56 +00:00
target_parallel_for_simd_simdlen_messages.cpp [OpenMP] Sema and parsing for 'target parallel for simd' pragma 2016-07-14 02:54:56 +00:00
target_parallel_if_messages.cpp [OpenMP] Prevent nesting of target constructs within target code execution regions. 2016-02-02 04:00:47 +00:00
target_parallel_map_messages.cpp [OpenMP] Allow negative lower bound in array sections based on pointers 2016-07-20 20:45:29 +00:00
target_parallel_messages.cpp [OpenMP] Use fopenmp prefix for all options introduced by the offloading implementation. 2016-06-30 21:22:08 +00:00
target_parallel_nowait_messages.cpp [OpenMP] Parsing + sema for target parallel directive. 2016-01-26 18:48:41 +00:00
target_parallel_num_threads_messages.cpp [OpenMP] Prevent nesting of target constructs within target code execution regions. 2016-02-02 04:00:47 +00:00
target_parallel_private_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
target_parallel_proc_bind_messages.cpp [OpenMP] Prevent nesting of target constructs within target code execution regions. 2016-02-02 04:00:47 +00:00
target_parallel_reduction_messages.cpp [OpenMP] fix segfault when a variable referenced in reduction clause is a reference parameter\nDifferential Revision: http://reviews.llvm.org/D24524 2016-10-04 14:41:36 +00:00
target_parallel_shared_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
target_private_codegen.cpp [OpenMP] Use fopenmp prefix for all options introduced by the offloading implementation. 2016-06-30 21:22:08 +00:00
target_private_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
target_simd_aligned_messages.cpp DR583, DR1512: Implement a rewrite to C++'s 'composite pointer type' rules. 2016-10-21 22:00:42 +00:00
target_simd_ast_print.cpp [OpenMP] Sema and parsing for 'target simd' pragma 2016-07-20 22:57:10 +00:00
target_simd_collapse_messages.cpp [OpenMP] Sema and parsing for 'target simd' pragma 2016-07-20 22:57:10 +00:00
target_simd_defaultmap_messages.cpp [OpenMP] Sema and parsing for 'target simd' pragma 2016-07-20 22:57:10 +00:00
target_simd_depend_messages.cpp [OpenMP] Sema and parsing for 'target simd' pragma 2016-07-20 22:57:10 +00:00
target_simd_device_messages.cpp [OpenMP] Sema and parsing for 'target simd' pragma 2016-07-20 22:57:10 +00:00
target_simd_firstprivate_messages.cpp [OpenMP] Sema and parsing for 'target simd' pragma 2016-07-20 22:57:10 +00:00
target_simd_if_messages.cpp [OpenMP] Sema and parsing for 'target simd' pragma 2016-07-20 22:57:10 +00:00
target_simd_is_device_ptr_messages.cpp [OpenMP] Sema and parsing for 'target simd' pragma 2016-07-20 22:57:10 +00:00
target_simd_lastprivate_messages.cpp [OpenMP] Sema and parsing for 'target simd' pragma 2016-07-20 22:57:10 +00:00
target_simd_linear_messages.cpp [OpenMP] Sema and parsing for 'target simd' pragma 2016-07-20 22:57:10 +00:00
target_simd_loop_messages.cpp [OpenMP] Sema and parsing for 'target simd' pragma 2016-07-20 22:57:10 +00:00
target_simd_map_messages.cpp [OpenMP] Sema and parsing for 'target simd' pragma 2016-07-20 22:57:10 +00:00
target_simd_messages.cpp [OpenMP] Sema and parsing for 'target simd' pragma 2016-07-20 22:57:10 +00:00
target_simd_misc_messages.c [OpenMP] Sema and parsing for 'target simd' pragma 2016-07-20 22:57:10 +00:00
target_simd_nowait_messages.cpp [OpenMP] Sema and parsing for 'target simd' pragma 2016-07-20 22:57:10 +00:00
target_simd_private_messages.cpp [OpenMP] Sema and parsing for 'target simd' pragma 2016-07-20 22:57:10 +00:00
target_simd_reduction_messages.cpp [OpenMP] fix segfault when a variable referenced in reduction clause is a reference parameter\nDifferential Revision: http://reviews.llvm.org/D24524 2016-10-04 14:41:36 +00:00
target_simd_safelen_messages.cpp [OpenMP] Sema and parsing for 'target simd' pragma 2016-07-20 22:57:10 +00:00
target_simd_simdlen_messages.cpp [OpenMP] Sema and parsing for 'target simd' pragma 2016-07-20 22:57:10 +00:00
target_update_ast_print.cpp [OpenMP] Add the depend clause to target update construct (sema and parsing) 2016-06-22 03:10:32 +00:00
target_update_codegen.cpp [OpenMP] Use fopenmp prefix for all options introduced by the offloading implementation. 2016-06-30 21:22:08 +00:00
target_update_depend_messages.cpp [OpenMP] Allow negative lower bound in array sections based on pointers 2016-07-20 20:45:29 +00:00
target_update_device_messages.cpp [OpenMP] Parsing and sema support for the from clause 2016-05-26 17:49:04 +00:00
target_update_from_messages.cpp [OpenMP] Parsing and sema support for the from clause 2016-05-26 17:49:04 +00:00
target_update_if_messages.cpp [OpenMP] Parsing and sema support for the from clause 2016-05-26 17:49:04 +00:00
target_update_messages.cpp [OpenMP] Parsing and sema support for the from clause 2016-05-26 17:49:04 +00:00
target_update_nowait_messages.cpp [OpenMP] Add the nowait clause to target update construct. 2016-06-20 19:16:34 +00:00
target_update_to_messages.cpp [OpenMP] Parsing and sema support for the from clause 2016-05-26 17:49:04 +00:00
task_ast_print.cpp Warn if function or variable cannot be implicitly instantiated 2016-04-19 06:19:52 +00:00
task_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
task_default_messages.cpp [OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492) 2015-05-20 04:24:19 +00:00
task_depend_messages.cpp [OpenMP] Allow negative lower bound in array sections based on pointers 2016-07-20 20:45:29 +00:00
task_final_messages.cpp [OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492) 2015-05-20 04:24:19 +00:00
task_firstprivate_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
task_firstprivate_messages.cpp [OPENMP] Fix detection of explicit data-sharing attributes in templates. 2016-04-29 09:56:11 +00:00
task_if_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
task_if_messages.cpp [OPENMP] Emit an additional note during analysis of 'if' clause. 2015-09-15 17:23:56 +00:00
task_messages.cpp [OPENMP 4.0] Use 'declare reduction' constructs in 'reduction' clauses. 2016-03-17 10:19:46 +00:00
task_priority_messages.cpp [OPENMP 4.5] Parsing/sema analysis for 'priority' clause. 2015-12-01 10:17:31 +00:00
task_private_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
task_private_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
task_shared_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
taskgroup_ast_print.cpp [OPENMP] Support for '#pragma omp taskgroup' directive. 2015-06-18 12:14:09 +00:00
taskgroup_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
taskgroup_messages.cpp [OPENMP] Support for '#pragma omp taskgroup' directive. 2015-06-18 12:14:09 +00:00
taskloop_ast_print.cpp [OPENMP 4.5] Parsing/sema for 'num_tasks' clause. 2015-12-08 12:06:20 +00:00
taskloop_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
taskloop_collapse_messages.cpp Lit C++11 Compatibility Patch #6 2016-04-11 19:30:25 +00:00
taskloop_final_messages.cpp [OPENMP 4.5] Parsing/sema support for 'omp taskloop simd' directive. 2015-12-03 09:40:15 +00:00
taskloop_firstprivate_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
taskloop_firstprivate_messages.cpp [OPENMP 4.0] Fixed DSA analysis for taskloop directives. 2016-04-13 13:36:48 +00:00
taskloop_grainsize_messages.cpp [OPENMP 4.5] Parsing/sema for 'num_tasks' clause. 2015-12-08 12:06:20 +00:00
taskloop_lastprivate_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
taskloop_lastprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
taskloop_loop_messages.cpp [OPENMP] Remove extra code transformation. 2016-03-29 08:58:54 +00:00
taskloop_misc_messages.c Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
taskloop_num_tasks_messages.cpp [OPENMP 4.5] Parsing/sema for 'num_tasks' clause. 2015-12-08 12:06:20 +00:00
taskloop_priority_messages.cpp [OPENMP 4.5] Parsing/sema analysis for 'priority' clause. 2015-12-01 10:17:31 +00:00
taskloop_private_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
taskloop_private_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
taskloop_simd_aligned_messages.cpp DR583, DR1512: Implement a rewrite to C++'s 'composite pointer type' rules. 2016-10-21 22:00:42 +00:00
taskloop_simd_ast_print.cpp [OPENMP 4.5] Parsing/sema for 'num_tasks' clause. 2015-12-08 12:06:20 +00:00
taskloop_simd_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
taskloop_simd_collapse_messages.cpp Lit C++11 Compatibility Patch #6 2016-04-11 19:30:25 +00:00
taskloop_simd_final_messages.cpp [OPENMP 4.5] Parsing/sema support for 'omp taskloop simd' directive. 2015-12-03 09:40:15 +00:00
taskloop_simd_firstprivate_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
taskloop_simd_firstprivate_messages.cpp [OPENMP 4.0] Fixed DSA analysis for taskloop directives. 2016-04-13 13:36:48 +00:00
taskloop_simd_grainsize_messages.cpp [OPENMP 4.5] Parsing/sema for 'num_tasks' clause. 2015-12-08 12:06:20 +00:00
taskloop_simd_lastprivate_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
taskloop_simd_lastprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
taskloop_simd_linear_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
taskloop_simd_loop_messages.cpp [OPENMP] Remove extra code transformation. 2016-03-29 08:58:54 +00:00
taskloop_simd_misc_messages.c Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
taskloop_simd_num_tasks_messages.cpp [OPENMP 4.5] Parsing/sema for 'num_tasks' clause. 2015-12-08 12:06:20 +00:00
taskloop_simd_priority_messages.cpp [OPENMP 4.5] Parsing/sema support for 'omp taskloop simd' directive. 2015-12-03 09:40:15 +00:00
taskloop_simd_private_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
taskloop_simd_private_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
taskloop_simd_safelen_messages.cpp Lit C++11 Compatibility Patch #6 2016-04-11 19:30:25 +00:00
taskloop_simd_simdlen_messages.cpp Lit C++11 Compatibility Patch #6 2016-04-11 19:30:25 +00:00
taskwait_ast_print.cpp [OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492) 2015-05-20 04:24:19 +00:00
taskwait_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
taskwait_messages.cpp [OPENMP] Fix for declarative/standalone directives use. 2016-01-13 11:18:54 +00:00
taskyield_ast_print.cpp [OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492) 2015-05-20 04:24:19 +00:00
taskyield_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
taskyield_messages.cpp [OPENMP] Fix for declarative/standalone directives use. 2016-01-13 11:18:54 +00:00
teams_ast_print.cpp Warn if function or variable cannot be implicitly instantiated 2016-04-19 06:19:52 +00:00
teams_codegen.cpp [OpenMP] Use fopenmp prefix for all options introduced by the offloading implementation. 2016-06-30 21:22:08 +00:00
teams_default_messages.cpp [OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492) 2015-05-20 04:24:19 +00:00
teams_distribute_ast_print.cpp [OpenMP] Sema and parsing for 'teams distribute' pragma 2016-08-05 14:37:37 +00:00
teams_distribute_collapse_messages.cpp [OpenMP] Sema and parsing for 'teams distribute' pragma 2016-08-05 14:37:37 +00:00
teams_distribute_default_messages.cpp [OpenMP] Sema and parsing for 'teams distribute' pragma 2016-08-05 14:37:37 +00:00
teams_distribute_dist_schedule_messages.cpp [OpenMP] Sema and parsing for 'teams distribute' pragma 2016-08-05 14:37:37 +00:00
teams_distribute_firstprivate_messages.cpp [OpenMP] Sema and parsing for 'teams distribute' pragma 2016-08-05 14:37:37 +00:00
teams_distribute_lastprivate_messages.cpp [OpenMP] Sema and parsing for 'teams distribute' pragma 2016-08-05 14:37:37 +00:00
teams_distribute_loop_messages.cpp [OpenMP] Sema and parsing for 'teams distribute' pragma 2016-08-05 14:37:37 +00:00
teams_distribute_num_teams_messages.cpp [OpenMP] Sema and parsing for 'teams distribute' pragma 2016-08-05 14:37:37 +00:00
teams_distribute_private_messages.cpp [OpenMP] Sema and parsing for 'teams distribute' pragma 2016-08-05 14:37:37 +00:00
teams_distribute_reduction_messages.cpp [OpenMP] fix segfault when a variable referenced in reduction clause is a reference parameter\nDifferential Revision: http://reviews.llvm.org/D24524 2016-10-04 14:41:36 +00:00
teams_distribute_shared_messages.cpp [OpenMP] Sema and parsing for 'teams distribute' pragma 2016-08-05 14:37:37 +00:00
teams_distribute_thread_limit_messages.cpp [OpenMP] Sema and parsing for 'teams distribute' pragma 2016-08-05 14:37:37 +00:00
teams_firstprivate_codegen.cpp [OpenMP] Use fopenmp prefix for all options introduced by the offloading implementation. 2016-06-30 21:22:08 +00:00
teams_firstprivate_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
teams_messages.cpp [OPENMP] -fopenmp enables OpenMP support (fix for http://llvm.org/PR23492) 2015-05-20 04:24:19 +00:00
teams_num_teams_messages.cpp [OPENMP 4.5] Parsing/sema analysis for 'priority' clause. 2015-12-01 10:17:31 +00:00
teams_private_codegen.cpp [OpenMP] Use fopenmp prefix for all options introduced by the offloading implementation. 2016-06-30 21:22:08 +00:00
teams_private_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
teams_reduction_messages.cpp [OpenMP] fix segfault when a variable referenced in reduction clause is a reference parameter\nDifferential Revision: http://reviews.llvm.org/D24524 2016-10-04 14:41:36 +00:00
teams_shared_messages.cpp Revert "[OPENMP] Allow skip expression after comma in clauses with lists." 2016-04-01 08:43:42 +00:00
teams_thread_limit_messages.cpp [OPENMP 4.5] Parsing/sema analysis for 'priority' clause. 2015-12-01 10:17:31 +00:00
threadprivate_ast_print.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
threadprivate_codegen.cpp Remove unnecessary x86 backend requirements from OpenMP tests 2016-10-21 16:09:20 +00:00
threadprivate_messages.cpp [OPENMP] Allow to reference threadprivate variable in same directive. 2016-02-09 09:41:09 +00:00