gcc/libgomp/testsuite/libgomp.c
Jakub Jelinek e460634820 omp-low.c (lower_omp_ordered): Add argument to GOMP_SMD_ORDERED_* internal calls - 0 if...
gcc/
2015-11-14  Jakub Jelinek  <jakub@redhat.com>

	* omp-low.c (lower_omp_ordered): Add argument to GOMP_SMD_ORDERED_*
	internal calls - 0 if ordered simd and 1 for ordered threads simd.
	* tree-vectorizer.c (adjust_simduid_builtins): If GOMP_SIMD_ORDERED_*
	argument is 1, replace it with GOMP_ordered_* call instead of removing
	it.
gcc/c/
2015-11-14  Jakub Jelinek  <jakub@redhat.com>

	* c-typeck.c (c_finish_omp_clauses): Don't mark
	GOMP_MAP_FIRSTPRIVATE_POINTER decls addressable.
gcc/cp/
2015-11-14  Jakub Jelinek  <jakub@redhat.com>

	* semantics.c (finish_omp_clauses): Don't mark
	GOMP_MAP_FIRSTPRIVATE_POINTER decls addressable.
libgomp/
2015-11-14  Jakub Jelinek  <jakub@redhat.com>
	    Aldy Hernandez  <aldyh@redhat.com>
	    Ilya Verbin  <ilya.verbin@intel.com>

	* ordered.c (gomp_doacross_init, GOMP_doacross_post,
	GOMP_doacross_wait, gomp_doacross_ull_init, GOMP_doacross_ull_post,
	GOMP_doacross_ull_wait): For GFS_GUIDED don't divide number of
	iterators or IV by chunk size.
	* parallel.c (gomp_resolve_num_threads): Don't assume that
	if thr->ts.team is non-NULL, then pool must be non-NULL.
	* libgomp-plugin.h (GOMP_PLUGIN_target_task_completion): Declare.
	* libgomp.map (GOMP_PLUGIN_1.1): New symbol version, export
	GOMP_PLUGIN_target_task_completion.
	* Makefile.am (libgomp_la_SOURCES): Add priority_queue.c.
	* Makefile.in: Regenerate.
	* libgomp.h: Shuffle prototypes and forward definitions around so
	priority queues can be defined.
	(enum gomp_task_kind): Add GOMP_TASK_ASYNC_RUNNING.
	(enum gomp_target_task_state): New enum.
	(struct gomp_target_task): Add state, tgt, task and team fields.
	(gomp_create_target_task): Change return type to bool, add
	state argument.
	(gomp_target_task_fn): Change return type to bool.
	(struct gomp_device_descr): Add async_run_func.
	(struct gomp_task): Remove children, next_child, prev_child,
	next_queue, prev_queue, next_taskgroup, prev_taskgroup.
	Add pnode field.
	(struct gomp_taskgroup): Remove children.
	Add taskgroup_queue.
	(struct gomp_team): Change task_queue type to a priority queue.
	(splay_compare): Define inline.
	(priority_queue_offset): New.
	(priority_node_to_task): New.
	(task_to_priority_node): New.
	* oacc-mem.c: Do not include splay-tree.h.
	* priority_queue.c: New file.
	* priority_queue.h: New file.
	* splay-tree.c: Do not include splay-tree.h.
	(splay_tree_foreach_internal): New.
	(splay_tree_foreach): New.
	* splay-tree.h: Become re-entrant if splay_tree_prefix is defined.
	(splay_tree_callback): Define typedef.
	* target.c (splay_compare): Move to libgomp.h.
	(GOMP_target): Don't adjust *thr in any way around running offloaded
	task.
	(GOMP_target_ext): Likewise.  Handle target nowait.
	(GOMP_target_update_ext, GOMP_target_enter_exit_data): Check
	return value from gomp_create_target_task, if false, fallthrough
	as if no dependencies exist.
	(gomp_target_task_fn): Change return type to bool, return true
	if the task should have another part scheduled later.  Handle
	target nowait.
	(gomp_load_plugin_for_device): Initialize async_run.
	* task.c (gomp_init_task): Initialize children_queue.
	(gomp_clear_parent_in_list): New.
	(gomp_clear_parent_in_tree): New.
	(gomp_clear_parent): Handle priorities.
	(GOMP_task): Likewise.
	(priority_queue_move_task_first,
	gomp_target_task_completion, GOMP_PLUGIN_target_task_completion):
	New functions.
	(gomp_create_target_task): Use priority queues.  Change return type
	to bool, add state argument, return false if for async
	{{enter,exit} data,update} constructs no dependencies need to be
	waited for, handle target nowait.  Set task->fn to NULL instead of
	gomp_target_task_fn.
	(verify_children_queue): Remove.
	(priority_list_upgrade_task): New.
	(priority_queue_upgrade_task): New.
	(verify_task_queue): Remove.
	(priority_list_downgrade_task): New.
	(priority_queue_downgrade_task): New.
	(gomp_task_run_pre): Use priority queues.
	Abstract code out to priority_queue_downgrade_task.
	(gomp_task_run_post_handle_dependers): Use priority queues.
	(gomp_task_run_post_remove_parent): Likewise.
	(gomp_task_run_post_remove_taskgroup): Likewise.
	(gomp_barrier_handle_tasks): Likewise.  Handle target nowait target
	tasks specially.
	(GOMP_taskwait): Likewise.
	(gomp_task_maybe_wait_for_dependencies): Likewise.  Abstract code to
	priority-queue_upgrade_task.
	(GOMP_taskgroup_start): Use priority queues.
	(GOMP_taskgroup_end): Likewise.  Handle target nowait target tasks
	specially.  If taskgroup is NULL, and thr->ts.level is 0, act as a
	barrier.
	* taskloop.c (GOMP_taskloop): Handle priorities.
	* team.c (gomp_new_team): Call priority_queue_init.
	(free_team): Call priority_queue_free.
	(gomp_free_thread): Call gomp_team_end if thr->ts.team is artificial
	team created for target nowait in implicit parallel region.
	(gomp_team_start): For nested check, test thr->ts.level instead of
	thr->ts.team != NULL.
	* testsuite/libgomp.c/doacross-3.c: New test.
	* testsuite/libgomp.c/ordered-5.c: New test.
	* testsuite/libgomp.c/priority.c: New test.
	* testsuite/libgomp.c/target-31.c: New test.
	* testsuite/libgomp.c/target-32.c: New test.
	* testsuite/libgomp.c/target-33.c: New test.
	* testsuite/libgomp.c/target-34.c: New test.
liboffloadmic/
2015-11-14  Ilya Verbin  <ilya.verbin@intel.com>

	* runtime/offload_host.cpp (task_completion_callback): New
	variable.
	(offload_proxy_task_completed_ooo): Call task_completion_callback.
	(__offload_register_task_callback): New function.
	* runtime/offload_host.h (__offload_register_task_callback): New
	declaration.
	* plugin/libgomp-plugin-intelmic.cpp (offload): Add async_data
	argument, handle async offloading.
	(register_main_image): Call register_main_image.
	(GOMP_OFFLOAD_init_device, get_target_table, GOMP_OFFLOAD_alloc,
	GOMP_OFFLOAD_free, GOMP_OFFLOAD_host2dev, GOMP_OFFLOAD_dev2host,
	GOMP_OFFLOAD_dev2dev) Adjust offload callers.
	(GOMP_OFFLOAD_async_run): New function.
	(GOMP_OFFLOAD_run): Implement using GOMP_OFFLOAD_async_run.

From-SVN: r230381
2015-11-14 19:42:13 +01:00
..
appendix-a
examples-4 builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
affinity-1.c Update copyright years. 2015-01-05 13:33:28 +01:00
affinity-2.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
atomic-1.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
atomic-2.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
atomic-3.c Remove -fopenmp in dg-options in libgomp.c 2015-06-15 13:26:12 +00:00
atomic-4.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
atomic-5.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
atomic-6.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
atomic-10.c
atomic-11.c
atomic-12.c
atomic-13.c
atomic-14.c
atomic-15.c
atomic-16.c
atomic-17.c
atomic-18.c Remove -fopenmp in dg-options in libgomp.c 2015-06-15 13:26:12 +00:00
autopar-1.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
autopar-2.c Fix inner loop phi in expand_omp_for_static_chunk 2015-09-03 11:01:14 +00:00
autopar-3.c Add param parloops-schedule 2015-10-13 10:08:59 +00:00
autopar-4.c Add param parloops-schedule 2015-10-13 10:08:59 +00:00
autopar-5.c Add param parloops-schedule 2015-10-13 10:08:59 +00:00
autopar-6.c Add param parloops-schedule 2015-10-13 10:08:59 +00:00
autopar-7.c Add param parloops-schedule 2015-10-13 10:08:59 +00:00
autopar-8.c Add param parloops-schedule 2015-10-13 10:08:59 +00:00
barrier-1.c
c.exp
cancel-for-1.c
cancel-for-2.c
cancel-parallel-1.c
cancel-parallel-2.c
cancel-parallel-3.c
cancel-sections-1.c
cancel-taskgroup-1.c
cancel-taskgroup-2.c
collapse-1.c
collapse-2.c
collapse-3.c Use dg-additional-options for -std={gnu99,c99} 2015-06-15 13:26:03 +00:00
copyin-1.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
copyin-2.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
copyin-3.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
critical-1.c
critical-2.c
debug-1.c Remove -fopenmp in dg-options in libgomp.c 2015-06-15 13:26:12 +00:00
depend-1.c
depend-2.c
depend-3.c
depend-4.c
depend-5.c
depend-6.c
depend-7.c
depend-8.c
depend-9.c
depend-10.c
doacross-1.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
doacross-2.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
doacross-3.c omp-low.c (lower_omp_ordered): Add argument to GOMP_SMD_ORDERED_* internal calls - 0 if... 2015-11-14 19:42:13 +01:00
for-1.c Use dg-additional-options for -std={gnu99,c99} 2015-06-15 13:26:03 +00:00
for-1.h
for-2.c Use dg-additional-options for -std={gnu99,c99} 2015-06-15 13:26:03 +00:00
for-2.h builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
for-3.c Use dg-additional-options for -std={gnu99,c99} 2015-06-15 13:26:03 +00:00
for-4.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
for-5.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
for-6.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
icv-1.c
icv-2.c
lib-1.c
lib-2.c
linear-1.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
lock-1.c
lock-2.c
lock-3.c
loop-1.c
loop-2.c
loop-3.c
loop-4.c
loop-5.c
loop-6.c
loop-7.c
loop-8.c
loop-9.c
loop-10.c
loop-11.c
loop-12.c
loop-13.c
loop-14.c
loop-15.c
loop-16.c
monotonic-1.c gcc/ 2015-11-05 16:08:08 +01:00
monotonic-2.c gcc/ 2015-11-05 16:08:08 +01:00
nested-1.c
nested-2.c
nested-3.c
nestedfn-1.c
nestedfn-2.c
nestedfn-3.c
nestedfn-4.c
nestedfn-5.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
nestedfn-6.c
nonmonotonic-1.c gcc/ 2015-11-05 16:08:08 +01:00
nonmonotonic-2.c gcc/ 2015-11-05 16:08:08 +01:00
nqueens-1.c Remove -fopenmp in dg-options in libgomp.c 2015-06-15 13:26:12 +00:00
omp_hello.c
omp_matvec.c
omp_orphan.c
omp_reduction.c
omp_workshare1.c
omp_workshare2.c
omp_workshare3.c
omp_workshare4.c
omp-loop01.c
omp-loop02.c
omp-loop03.c
omp-nested-1.c
omp-parallel-for.c
omp-parallel-if.c
omp-single-1.c
omp-single-2.c
omp-single-3.c
ordered-1.c
ordered-2.c
ordered-3.c
ordered-4.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
ordered-5.c omp-low.c (lower_omp_ordered): Add argument to GOMP_SMD_ORDERED_* internal calls - 0 if... 2015-11-14 19:42:13 +01:00
parallel-1.c
parloops-exit-first-loop-alt-2.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
parloops-exit-first-loop-alt-3.c Fix libgomp.c/parloops-exit-first-loop-alt{,-3}.c testcases 2015-07-08 12:31:00 +00:00
parloops-exit-first-loop-alt-4.c Use abort in parloops-exit-first-loop-alt-{3,4}.c 2015-06-23 15:02:25 +00:00
parloops-exit-first-loop-alt-5.c Add parloops-exit-first-loop-alt-{5,6,7}.c 2015-06-30 11:00:32 +00:00
parloops-exit-first-loop-alt-6.c Add parloops-exit-first-loop-alt-{5,6,7}.c 2015-06-30 11:00:32 +00:00
parloops-exit-first-loop-alt-7.c Add parloops-exit-first-loop-alt-{5,6,7}.c 2015-06-30 11:00:32 +00:00
parloops-exit-first-loop-alt.c Fix libgomp.c/parloops-exit-first-loop-alt{,-3}.c testcases 2015-07-08 12:31:00 +00:00
pr24455-1.c
pr24455.c
pr26171.c Remove -fopenmp in dg-options in libgomp.c 2015-06-15 13:26:12 +00:00
pr26943-1.c
pr26943-2.c
pr26943-3.c
pr26943-4.c
pr29947-1.c
pr29947-2.c
pr30494.c
pr32362-1.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
pr32362-2.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
pr32362-3.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
pr32468.c
pr33880.c
pr34513.c
pr35130.c
pr35196.c
pr35549.c
pr35625.c Fix typo in libgomp/testsuite/libgomp.c/pr35625.c 2015-06-15 13:57:04 +00:00
pr36802-1.c
pr36802-2.c
pr36802-3.c
pr38650.c
pr39154.c Use dg-additional-options for -std={gnu99,c99} 2015-06-15 13:26:03 +00:00
pr39591-1.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
pr39591-2.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
pr39591-3.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
pr42029.c
pr42942.c
pr43893.c
pr46193.c Handle mix/max pointer reductions in parloops 2015-08-29 07:07:51 +00:00
pr46886.c
pr48591.c Remove -fopenmp in dg-options in libgomp.c 2015-06-15 13:26:12 +00:00
pr49897-1.c
pr49897-2.c
pr49898-1.c
pr49898-2.c
pr52547.c
pr58392.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
pr58756.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
pr61200.c
pr64734.c re PR middle-end/64734 (ICE at omp lowering) 2015-01-23 19:19:50 +01:00
pr64824.c Remove -fopenmp in dg-options in libgomp.c 2015-06-15 13:26:12 +00:00
pr64868.c Remove -fopenmp in dg-options in libgomp.c 2015-06-15 13:26:12 +00:00
pr66133.c Remove -fopenmp in dg-options in libgomp.c 2015-06-15 13:26:12 +00:00
pr66199-1.c Remove -fopenmp in dg-options in libgomp.c 2015-06-15 13:26:12 +00:00
pr66199-2.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
pr66199-3.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
pr66199-4.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
pr66199-5.c gcc/ 2015-11-05 16:08:08 +01:00
pr66199-6.c gcc/ 2015-11-05 16:08:08 +01:00
pr66199-7.c gcc/ 2015-11-05 16:08:08 +01:00
pr66199-8.c gcc/ 2015-11-05 16:08:08 +01:00
pr66199-9.c gcc/ 2015-11-05 16:08:08 +01:00
pr66714.c re PR libgomp/66714 (ICE in loc_list_from_tree with -g) 2015-07-24 07:38:43 -07:00
priority.c omp-low.c (lower_omp_ordered): Add argument to GOMP_SMD_ORDERED_* internal calls - 0 if... 2015-11-14 19:42:13 +01:00
private-1.c
reduction-1.c
reduction-2.c
reduction-3.c
reduction-4.c
reduction-5.c
reduction-6.c
reduction-7.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
reduction-8.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
reduction-9.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
reduction-10.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
reduction-11.c gcc/ 2015-11-05 16:08:08 +01:00
reduction-12.c gcc/ 2015-11-05 16:08:08 +01:00
reduction-13.c gcc/ 2015-11-05 16:08:08 +01:00
reduction-14.c gcc/ 2015-11-05 16:08:08 +01:00
reduction-15.c gcc/ 2015-11-05 16:08:08 +01:00
sections-1.c
sections-2.c
shared-1.c
shared-2.c
shared-3.c
simd-1.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
simd-2.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
simd-3.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
simd-4.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
simd-5.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
simd-6.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
simd-7.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
simd-8.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
simd-9.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
simd-10.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
simd-11.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
simd-12.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
simd-13.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
simd-14.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
simd-15.c Remove dg-options -O2 in libgomp.c 2015-06-15 18:10:51 +00:00
simd-16.c Use dg-additional-options for -std={gnu99,c99} 2015-06-15 13:26:03 +00:00
simd-17.c Use dg-additional-options for -std={gnu99,c99} 2015-06-15 13:26:03 +00:00
single-1.c
single-2.c
sort-1.c Update copyright years. 2015-01-05 13:33:28 +01:00
static-chunk-size-one.c Optimize expand_omp_for_static_chunk for chunk_size one 2015-08-24 13:14:17 +00:00
target-1.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
target-2.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
target-3.c
target-4.c
target-5.c
target-6.c
target-7.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
target-8.c Remove -fopenmp in dg-options in libgomp.c 2015-06-15 13:26:12 +00:00
target-9.c Make fopenmp an LTO option 2015-01-23 12:53:55 +00:00
target-10.c c-decl.c (c_decl_attributes): Also add "omp declare target" attribute for DECL_EXTERNAL VAR_DECLs. 2015-03-19 20:12:43 +01:00
target-11.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
target-12.c gcc/ 2015-11-05 16:08:08 +01:00
target-13.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
target-14.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
target-15.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
target-16.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
target-17.c gcc/ 2015-11-05 16:08:08 +01:00
target-18.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
target-19.c gcc/ 2015-11-05 16:08:08 +01:00
target-20.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
target-21.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
target-22.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
target-23.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
target-24.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
target-25.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
target-26.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
target-27.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
target-28.c gcc/ 2015-11-05 16:08:08 +01:00
target-29.c gcc/ 2015-11-05 16:08:08 +01:00
target-30.c gcc/ 2015-11-05 16:08:08 +01:00
target-31.c omp-low.c (lower_omp_ordered): Add argument to GOMP_SMD_ORDERED_* internal calls - 0 if... 2015-11-14 19:42:13 +01:00
target-32.c omp-low.c (lower_omp_ordered): Add argument to GOMP_SMD_ORDERED_* internal calls - 0 if... 2015-11-14 19:42:13 +01:00
target-33.c omp-low.c (lower_omp_ordered): Add argument to GOMP_SMD_ORDERED_* internal calls - 0 if... 2015-11-14 19:42:13 +01:00
target-34.c omp-low.c (lower_omp_ordered): Add argument to GOMP_SMD_ORDERED_* internal calls - 0 if... 2015-11-14 19:42:13 +01:00
target-critical-1.c omp-low.c (lower_omp_critical): Mark critical sections inside target functions as offloadable. 2014-11-28 13:59:49 +00:00
target-teams-1.c gcc/ 2015-11-05 16:08:08 +01:00
task-1.c
task-2.c
task-3.c
task-4.c
task-5.c
taskgroup-1.c
taskloop-1.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
taskloop-2.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
taskloop-3.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
taskloop-4.c builtin-types.def (BT_FN_BOOL_UINT_LONGPTR_LONGPTR_LONGPTR, [...]): New. 2015-10-13 21:06:23 +02:00
thread-limit-1.c
thread-limit-2.c
thread-limit-3.c
udr-1.c
udr-2.c
udr-3.c
uns-outer-4.c Handle double reduction in parloops 2015-07-28 07:54:04 +00:00
vla-1.c