| /netbsd-src/external/mit/isl/dist/ |
| H A D | isl_ast_build.c | 59 isl_vec *strides; in isl_ast_build_init_derived() local 70 strides = isl_vec_alloc(ctx, dim); in isl_ast_build_init_derived() 71 strides = isl_vec_set_si(strides, 1); in isl_ast_build_init_derived() 73 isl_vec_free(build->strides); in isl_ast_build_init_derived() 74 build->strides = strides; in isl_ast_build_init_derived() 86 !build->strides || !build->offsets || !build->options) in isl_ast_build_init_derived() 208 dup->strides = isl_vec_copy(build->strides); in isl_ast_build_dup() 240 !dup->strides || !dup->offsets || !dup->options || in isl_ast_build_dup() 319 isl_vec_free(build->strides); in isl_ast_build_free() 692 isl_vec_dump(build->strides); in isl_ast_build_dump() [all …]
|
| H A D | isl_ast_build_private.h | 160 isl_vec *strides; member
|
| H A D | isl_map.c | 13700 int strides = 0; in multi_aff_strides() local 13704 strides++; in multi_aff_strides() 13706 return strides; in multi_aff_strides() 13851 int strides; in isl_basic_map_preimage_multi_aff() local 13879 strides = rational ? 0 : multi_aff_strides(ma); in isl_basic_map_preimage_multi_aff() 13880 res = isl_basic_map_alloc_space(space, n_div_ma + n_div_bmap + strides, in isl_basic_map_preimage_multi_aff() 13881 bmap->n_eq + strides, bmap->n_ineq + 2 * n_div_ma); in isl_basic_map_preimage_multi_aff() 13924 if (strides) in isl_basic_map_preimage_multi_aff()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/fortran/ |
| H A D | class.c | 1188 gfc_symbol *strides, gfc_symbol *sizes, in finalization_get_offset() argument 1261 expr->value.op.op2 = gfc_lval_expr_from_sym (strides); in finalization_get_offset() 1268 expr->value.op.op2->ref->u.ar.as = strides->as; in finalization_get_offset() 1333 gfc_symbol *strides, gfc_symbol *sizes, in finalizer_insert_packed_call() argument 1510 block2 = finalization_get_offset (idx, idx2, offset, strides, sizes, in finalizer_insert_packed_call() 1555 block2 = finalization_get_offset (idx, idx2, offset, strides, sizes, in finalizer_insert_packed_call() 1596 gfc_symbol *final, *array, *fini_coarray, *byte_stride, *sizes, *strides; in generate_finalization_wrapper() local 1813 gfc_get_symbol ("strides", sub_ns, &strides); in generate_finalization_wrapper() 1814 strides->ts.type = BT_INTEGER; in generate_finalization_wrapper() 1815 strides->ts.kind = gfc_index_integer_kind; in generate_finalization_wrapper() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/fortran/ |
| H A D | class.cc | 1203 gfc_symbol *strides, gfc_symbol *sizes, in finalization_get_offset() argument 1276 expr->value.op.op2 = gfc_lval_expr_from_sym (strides); in finalization_get_offset() 1283 expr->value.op.op2->ref->u.ar.as = strides->as; in finalization_get_offset() 1348 gfc_symbol *strides, gfc_symbol *sizes, in finalizer_insert_packed_call() argument 1525 block2 = finalization_get_offset (idx, idx2, offset, strides, sizes, in finalizer_insert_packed_call() 1570 block2 = finalization_get_offset (idx, idx2, offset, strides, sizes, in finalizer_insert_packed_call() 1611 gfc_symbol *final, *array, *fini_coarray, *byte_stride, *sizes, *strides; in generate_finalization_wrapper() local 1821 gfc_get_symbol ("strides", sub_ns, &strides); in generate_finalization_wrapper() 1822 strides->ts.type = BT_INTEGER; in generate_finalization_wrapper() 1823 strides->ts.kind = gfc_index_integer_kind; in generate_finalization_wrapper() [all …]
|
| H A D | ChangeLog-2010 | 230 the relationship between the strides and the relationship 233 Forward dependencies for positive strides apply for where 1917 identical strides which takes into account that only one 1918 of the strides may be NULL.
|
| H A D | ChangeLog-2003 | 1552 (g95_conv_array_stride): Use descriptorless strides.
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | tree-ssa-loop-prefetch.c | 1497 HOST_WIDE_INT *strides, unsigned n, class loop *loop) in add_subscript_strides() argument 1518 strides[n - 1 - loop_depth (loop) + loop_depth (aloop)] += astep * stride; in add_subscript_strides() 1533 HOST_WIDE_INT *strides, astride; in self_reuse_distance() local 1550 strides = XCNEWVEC (HOST_WIDE_INT, n); in self_reuse_distance() 1573 add_subscript_strides (access_fn, astride, strides, n, loop); in self_reuse_distance() 1580 s = strides[i] < 0 ? -strides[i] : strides[i]; in self_reuse_distance() 1591 free (strides); in self_reuse_distance()
|
| H A D | gimple-loop-interchange.cc | 1289 vec<tree> *strides = new vec<tree> (); in compute_access_stride() local 1294 strides->safe_push (build_int_cst (sizetype, 0)); in compute_access_stride() 1320 dr->aux = strides; in compute_access_stride() 1336 strides->safe_push (size_int (0)); in compute_access_stride() 1339 strides->safe_push (CHREC_RIGHT (sl)); in compute_access_stride() 1346 strides->safe_push (size_int (0)); in compute_access_stride() 1351 dr->aux = strides; in compute_access_stride()
|
| H A D | params.opt | 199 Compile-time bonus IPA-CP assigns to candidates which make loop bounds or strides known. 743 -param=prefetch-dynamic-strides= 745 Whether software prefetch hints should be issued for non-constant strides.
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | tree-ssa-loop-prefetch.cc | 1496 HOST_WIDE_INT *strides, unsigned n, class loop *loop) in add_subscript_strides() argument 1517 strides[n - 1 - loop_depth (loop) + loop_depth (aloop)] += astep * stride; in add_subscript_strides() 1532 HOST_WIDE_INT *strides, astride; in self_reuse_distance() local 1549 strides = XCNEWVEC (HOST_WIDE_INT, n); in self_reuse_distance() 1572 add_subscript_strides (access_fn, astride, strides, n, loop); in self_reuse_distance() 1579 s = strides[i] < 0 ? -strides[i] : strides[i]; in self_reuse_distance() 1590 free (strides); in self_reuse_distance()
|
| H A D | gimple-loop-interchange.cc | 1289 vec<tree> *strides = new vec<tree> (); in compute_access_stride() local 1290 dr->aux = strides; in compute_access_stride() 1297 strides->safe_push (build_int_cst (sizetype, 0)); in compute_access_stride() 1350 strides->safe_push (size_int (0)); in compute_access_stride() 1353 strides->safe_push (CHREC_RIGHT (sl)); in compute_access_stride() 1360 strides->safe_push (size_int (0)); in compute_access_stride()
|
| H A D | params.opt | 242 Compile-time bonus IPA-CP assigns to candidates which make loop bounds or strides known. 872 -param=prefetch-dynamic-strides= 874 Whether software prefetch hints should be issued for non-constant strides.
|
| H A D | ChangeLog.graphite | 2478 (memory_strides_in_loop): Memoize the memory strides per loop. 2480 strides. 2489 memory_strides_in_loop. Gather memory strides on a whole loop. 3230 access functions to be able to querry the strides in the 3666 the strides by multiplying by PDR_NB_REFS. 5075 allow integer constant strides. 5173 allow non constant strides. 7345 * doc/invoke.texi: Remove strides from examples containing 7346 DO loops when the strides are equal to 1. 7934 (find_transform): Enable cloog option --strides.
|
| /netbsd-src/sys/arch/evbppc/wii/dev/ |
| H A D | wiifb.c | 237 u_int strides, reads; in wiifb_set_mode() 303 strides = (sc->sc_curmode->width * 2) / (interlaced ? 16 : 32); in wiifb_set_fb() 306 __SHIFTIN(strides, VI_PICCONF_STRIDES) | in wiifb_set_fb() 232 u_int strides, reads; wiifb_set_mode() local
|
| /netbsd-src/external/gpl3/gcc/dist/libgfortran/runtime/ |
| H A D | ISO_Fortran_binding.c | 495 const CFI_index_t upper_bounds[], const CFI_index_t strides[]) in CFI_section() argument 566 if (strides[i] == 0) in CFI_section() 615 if (strides == NULL) in CFI_section() 624 stride[i] = strides[i]; in CFI_section()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libgfortran/runtime/ |
| H A D | ISO_Fortran_binding.c | 456 const CFI_index_t upper_bounds[], const CFI_index_t strides[]) in CFI_section() argument 529 if (strides[i] == 0) in CFI_section() 578 if (strides == NULL) in CFI_section() 587 stride[i] = strides[i]; in CFI_section()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libgfortran/m4/ |
| H A D | matmul.m4 | 48 looking at their strides.
|
| /netbsd-src/external/gpl3/gcc/dist/libgfortran/m4/ |
| H A D | matmul.m4 | 48 looking at their strides.
|
| /netbsd-src/external/gpl3/gcc/dist/libgfortran/ |
| H A D | ChangeLog-2021 | 364 strides for rank >2 arrays.
|
| H A D | ChangeLog-2020 | 48 checks on strides for rank-2 times rank-2.
|
| H A D | ChangeLog-2007 | 870 Change mask pointer to GFC_LOGICAL_1. Multiply strides 875 * m4/matmull.m4: Switch to GFC_LOGICAL_1. Multiply strides by
|
| H A D | ChangeLog-2008 | 818 strides bases on character kind. 2520 record in case of negative strides. Return size of 0 for
|
| H A D | ChangeLog-2005 | 2175 that setting correct strides is a front end job. 2179 that setting correct strides is a front end job.
|
| H A D | ChangeLog-2016 | 1069 * m4/matmul.m4: For the case of all strides = 1, implement a
|