Searched refs:GOMP_DIM_MASK (Results 1 - 15 of 15) sorted by relevance

/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Domp-offload.c279 if (GOMP_DIM_MASK (ix) & mask)
350 striding = !(outer_mask & GOMP_DIM_MASK (GOMP_DIM_GANG));
407 && outer_mask == GOMP_DIM_MASK (GOMP_DIM_VECTOR)
543 & ~(GOMP_DIM_MASK (GOMP_DIM_VECTOR)
544 | GOMP_DIM_MASK (GOMP_DIM_WORKER))));
564 if (e_mask & GOMP_DIM_MASK (GOMP_DIM_VECTOR))
566 if (e_mask & GOMP_DIM_MASK (GOMP_DIM_WORKER))
730 dims[ix] = (used & GOMP_DIM_MASK (ix)
810 loop->mask = ((GOMP_DIM_MASK (GOMP_DIM_MAX) - 1)
811 ^ (GOMP_DIM_MASK (leve
[all...]
H A Domp-general.c1762 non_const |= GOMP_DIM_MASK (ix);
1775 if (non_const & GOMP_DIM_MASK (ix))
H A Domp-low.c2365 this_mask |= GOMP_DIM_MASK (GOMP_DIM_GANG);
2368 this_mask |= GOMP_DIM_MASK (GOMP_DIM_WORKER);
2371 this_mask |= GOMP_DIM_MASK (GOMP_DIM_VECTOR);
7656 bool maybe_auto = !(tag & (((GOMP_DIM_MASK (GOMP_DIM_MAX) - 1)
H A Domp-expand.c6125 gwv = build_int_cst (integer_type_node, GOMP_DIM_MASK (GOMP_DIM_GANG));
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Domp-offload.cc505 if (GOMP_DIM_MASK (ix) & mask)
576 striding = !(outer_mask & GOMP_DIM_MASK (GOMP_DIM_GANG));
633 && outer_mask == GOMP_DIM_MASK (GOMP_DIM_VECTOR)
769 & ~(GOMP_DIM_MASK (GOMP_DIM_VECTOR)
770 | GOMP_DIM_MASK (GOMP_DIM_WORKER))));
790 if (e_mask & GOMP_DIM_MASK (GOMP_DIM_VECTOR))
792 if (e_mask & GOMP_DIM_MASK (GOMP_DIM_WORKER))
947 else if ((used & GOMP_DIM_MASK (ix)) && dims[ix] == 1)
953 else if (!(used & GOMP_DIM_MASK (ix)) && dims[ix] != 1)
985 dims[ix] = (used & GOMP_DIM_MASK (i
[all...]
H A Domp-oacc-neuter-broadcast.cc396 par = new parallel_g (par, GOMP_DIM_MASK (GOMP_DIM_GANG)
397 | GOMP_DIM_MASK (GOMP_DIM_WORKER)
398 | GOMP_DIM_MASK (GOMP_DIM_VECTOR));
422 unsigned mask = (dim >= 0) ? GOMP_DIM_MASK (dim) : 0;
443 unsigned mask = (dim >= 0) ? GOMP_DIM_MASK (dim) : 0;
518 if ((mask & GOMP_DIM_MASK (GOMP_DIM_WORKER)) == 0)
521 if ((mask & GOMP_DIM_MASK (GOMP_DIM_VECTOR)) == 0)
611 if (mask & GOMP_DIM_MASK (GOMP_DIM_WORKER))
710 if (mask & GOMP_DIM_MASK (GOMP_DIM_WORKER))
786 if (!(mask & GOMP_DIM_MASK (GOMP_DIM_WORKE
[all...]
H A Domp-general.cc2714 non_const |= GOMP_DIM_MASK (ix);
2727 if (non_const & GOMP_DIM_MASK (ix))
H A Domp-low.cc2682 this_mask |= GOMP_DIM_MASK (GOMP_DIM_GANG);
2685 this_mask |= GOMP_DIM_MASK (GOMP_DIM_WORKER);
2688 this_mask |= GOMP_DIM_MASK (GOMP_DIM_VECTOR);
8379 bool maybe_auto = !(tag & (((GOMP_DIM_MASK (GOMP_DIM_MAX) - 1)
H A Domp-expand.cc7644 gwv = build_int_cst (integer_type_node, GOMP_DIM_MASK (GOMP_DIM_GANG));
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/nvptx/
H A Dnvptx.c430 mask &= (GOMP_DIM_MASK (GOMP_DIM_WORKER)
431 | GOMP_DIM_MASK (GOMP_DIM_VECTOR));
450 mask &= (GOMP_DIM_MASK (GOMP_DIM_WORKER)
451 | GOMP_DIM_MASK (GOMP_DIM_VECTOR));
1648 parallel = GOMP_DIM_MASK (GOMP_DIM_MAX) - 1;
1655 parallel ^= GOMP_DIM_MASK (ix);
1719 nvptx_emit_forking (GOMP_DIM_MASK (mode), false);
1725 nvptx_emit_joining (GOMP_DIM_MASK (mode), false);
3165 bool worker = mask & GOMP_DIM_MASK (GOMP_DIM_WORKER);
3166 bool large_vector = (mask & GOMP_DIM_MASK (GOMP_DIM_VECTO
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/config/nvptx/
H A Dnvptx.cc588 mask &= (GOMP_DIM_MASK (GOMP_DIM_WORKER)
589 | GOMP_DIM_MASK (GOMP_DIM_VECTOR));
608 mask &= (GOMP_DIM_MASK (GOMP_DIM_WORKER)
609 | GOMP_DIM_MASK (GOMP_DIM_VECTOR));
1852 parallel = GOMP_DIM_MASK (GOMP_DIM_MAX) - 1;
1859 parallel ^= GOMP_DIM_MASK (ix);
1923 nvptx_emit_forking (GOMP_DIM_MASK (mode), false);
1929 nvptx_emit_joining (GOMP_DIM_MASK (mode), false);
3634 bool worker = mask & GOMP_DIM_MASK (GOMP_DIM_WORKER);
3635 bool large_vector = (mask & GOMP_DIM_MASK (GOMP_DIM_VECTO
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/include/
H A Dgomp-constants.h257 #define GOMP_DIM_MASK(X) (1u << (X)) macro
/netbsd-current/external/gpl3/gcc/dist/include/
H A Dgomp-constants.h287 #define GOMP_DIM_MASK(X) (1u << (X)) macro
/netbsd-current/external/gpl3/gcc.old/dist/libgomp/
H A Doacc-parallel.c223 if (mask & GOMP_DIM_MASK (i))
/netbsd-current/external/gpl3/gcc/dist/libgomp/
H A Doacc-parallel.c223 if (mask & GOMP_DIM_MASK (i))

Completed in 469 milliseconds