HomeSort by: relevance | last modified time | path
    Searched defs:masktype (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
tree-vect-stmts.cc 2585 /* Build an all-ones vector mask of type MASKTYPE while vectorizing STMT_INFO.
2591 stmt_vec_info stmt_info, tree masktype)
2593 if (TREE_CODE (masktype) == INTEGER_TYPE)
2594 return build_int_cst (masktype, -1);
2595 else if (VECTOR_BOOLEAN_TYPE_P (masktype)
2596 || TREE_CODE (TREE_TYPE (masktype)) == INTEGER_TYPE)
2598 tree mask = build_int_cst (TREE_TYPE (masktype), -1);
2599 mask = build_vector_from_val (masktype, mask);
2600 return vect_init_vector (vinfo, stmt_info, mask, masktype, NULL);
2602 else if (SCALAR_FLOAT_TYPE_P (TREE_TYPE (masktype)))
2659 tree masktype = TREE_VALUE (arglist); arglist = TREE_CHAIN (arglist); local
2755 tree masktype = TREE_VALUE (arglist); arglist = TREE_CHAIN (arglist); local
    [all...]
tree-vect-patterns.cc 5823 tree masktype, tmp; local
5825 masktype = truth_type_for (vectype);
5826 tmp = vect_recog_temp_ssa_var (TREE_TYPE (masktype), NULL);
5829 stmt, masktype, TREE_TYPE (vectype));
  /src/external/gpl3/gcc.old/dist/gcc/
tree-vect-patterns.cc 4556 tree masktype, tmp; local
4558 masktype = truth_type_for (vectype);
4559 tmp = vect_recog_temp_ssa_var (TREE_TYPE (masktype), NULL);
4562 stmt, masktype, TREE_TYPE (vectype));
tree-vect-stmts.cc 2733 /* Build an all-ones vector mask of type MASKTYPE while vectorizing STMT_INFO.
2739 stmt_vec_info stmt_info, tree masktype)
2741 if (TREE_CODE (masktype) == INTEGER_TYPE)
2742 return build_int_cst (masktype, -1);
2743 else if (TREE_CODE (TREE_TYPE (masktype)) == INTEGER_TYPE)
2745 tree mask = build_int_cst (TREE_TYPE (masktype), -1);
2746 mask = build_vector_from_val (masktype, mask);
2747 return vect_init_vector (vinfo, stmt_info, mask, masktype, NULL);
2749 else if (SCALAR_FLOAT_TYPE_P (TREE_TYPE (masktype)))
2755 real_from_target (&r, tmp, TYPE_MODE (TREE_TYPE (masktype)));
2816 tree masktype = TREE_VALUE (arglist); arglist = TREE_CHAIN (arglist); local
6782 tree masktype = truth_type_for (vectype); local
7283 tree zero_vec = NULL_TREE, masktype = NULL_TREE; local
7705 tree rettype, srctype, ptrtype, idxtype, masktype, scaletype; local
    [all...]

Completed in 24 milliseconds