Searched refs:vec_oprnds1 (Results 1 – 4 of 4) sorted by relevance
/dflybsd-src/contrib/gcc-4.7/gcc/ |
H A D | tree-vect-stmts.c | 1454 VEC(tree,heap) **vec_oprnds1) in vect_get_vec_defs_for_stmt_copy() 1461 if (vec_oprnds1 && *vec_oprnds1) in vect_get_vec_defs_for_stmt_copy() 1463 vec_oprnd = VEC_pop (tree, *vec_oprnds1); in vect_get_vec_defs_for_stmt_copy() 1465 VEC_quick_push (tree, *vec_oprnds1, vec_oprnd); in vect_get_vec_defs_for_stmt_copy() 1477 VEC (tree, heap) **vec_oprnds1, in vect_get_vec_defs() 1494 *vec_oprnds1 = (VEC (tree, heap) *) VEC_index (slp_void_p, vec_defs, 1); in vect_get_vec_defs() 1509 *vec_oprnds1 = VEC_alloc (tree, heap, 1); in vect_get_vec_defs() 1511 VEC_quick_push (tree, *vec_oprnds1, vec_oprnd); in vect_get_vec_defs() 2119 VEC (tree, heap) **vec_oprnds1, in vect_create_vectorized_promotion_stmts() 2135 vop1 = VEC_index (tree, *vec_oprnds1, i); in vect_create_vectorized_promotion_stmts() [all …]
|
H A D | tree-vect-loop.c | 4420 VEC (tree, heap) *vec_oprnds0 = NULL, *vec_oprnds1 = NULL, *vect_defs = NULL; in vectorizable_reduction() 4856 vec_oprnds1 = VEC_alloc (tree, heap, 1); in vectorizable_reduction() 4904 vect_get_vec_defs (op0, op1, stmt, &vec_oprnds0, &vec_oprnds1, in vectorizable_reduction() 4915 VEC_quick_push (tree, vec_oprnds1, loop_vec_def1); in vectorizable_reduction() 4938 VEC_replace (tree, vec_oprnds1, 0, loop_vec_def1); in vectorizable_reduction() 4959 ? VEC_index (tree, vec_oprnds1, i) : NULL); in vectorizable_reduction() 5020 if (vec_oprnds1) in vectorizable_reduction() 5021 VEC_free (tree, heap, vec_oprnds1); in vectorizable_reduction()
|
/dflybsd-src/contrib/gcc-8.0/gcc/ |
H A D | tree-vect-stmts.c | 1546 vec<tree> *vec_oprnds1) in vect_get_vec_defs_for_stmt_copy() argument 1553 if (vec_oprnds1 && vec_oprnds1->length ()) in vect_get_vec_defs_for_stmt_copy() 1555 vec_oprnd = vec_oprnds1->pop (); in vect_get_vec_defs_for_stmt_copy() 1557 vec_oprnds1->quick_push (vec_oprnd); in vect_get_vec_defs_for_stmt_copy() 1567 vec<tree> *vec_oprnds1, in vect_get_vec_defs() argument 1584 *vec_oprnds1 = vec_defs[1]; in vect_get_vec_defs() 1596 vec_oprnds1->create (1); in vect_get_vec_defs() 1598 vec_oprnds1->quick_push (vec_oprnd); in vect_get_vec_defs() 4394 vec<tree> *vec_oprnds1, in vect_create_vectorized_promotion_stmts() argument 4410 vop1 = (*vec_oprnds1)[i]; in vect_create_vectorized_promotion_stmts() [all …]
|
H A D | tree-vect-loop.c | 6478 auto_vec<tree> vec_oprnds1; in vectorizable_reduction() local 7435 vec_oprnds1.create (1); in vectorizable_reduction() 7481 vec_oprnds1.safe_splice (vec_defs[1]); in vectorizable_reduction() 7493 vec_oprnds1.quick_push in vectorizable_reduction() 7512 vec_oprnds1[0] = gimple_get_lhs (new_stmt); in vectorizable_reduction() 7514 vec_oprnds1[0] in vectorizable_reduction() 7515 = vect_get_vec_def_for_stmt_copy (dts[1], vec_oprnds1[0]); in vectorizable_reduction() 7529 tree vop[3] = { def0, vec_oprnds1[i], NULL_TREE }; in vectorizable_reduction()
|