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

  /src/external/gpl3/gcc/dist/gcc/
tree-vectorizer.h 218 poly_uint64 max_nunits; member in struct:_slp_tree
2091 /* Update maximum unit count *MAX_NUNITS so that it accounts for
2092 NUNITS. *MAX_NUNITS can be 1 if we haven't yet recorded anything. */
2095 vect_update_max_nunits (poly_uint64 *max_nunits, poly_uint64 nunits)
2100 *max_nunits = force_common_multiple (*max_nunits, nunits);
2103 /* Update maximum unit count *MAX_NUNITS so that it accounts for
2104 the number of units in vector type VECTYPE. *MAX_NUNITS can be 1
2108 vect_update_max_nunits (poly_uint64 *max_nunits, tree vectype)
2110 vect_update_max_nunits (max_nunits, TYPE_VECTOR_SUBPARTS (vectype))
    [all...]
tree-vect-slp.cc 127 this->max_nunits = 1;
1006 for STMT_INFO. When returning true, update MAX_NUNITS to reflect the
1007 number of units in VECTYPE. GROUP_SIZE and MAX_NUNITS are as for
1013 tree vectype, poly_uint64 *max_nunits)
1026 before adjusting *max_nunits for basic-block vectorization. */
1039 vect_update_max_nunits (max_nunits, vectype);
1060 poly_uint64 *max_nunits, bool *matches,
1143 nunits_vectype, max_nunits))
1693 poly_uint64 *max_nunits,
1700 poly_uint64 *max_nunits,
3115 poly_uint64 max_nunits = 1; local
3322 poly_uint64 max_nunits = 1; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
tree-vect-slp.cc 113 this->max_nunits = 1;
856 for STMT_INFO. When returning true, update MAX_NUNITS to reflect the
857 number of units in VECTYPE. GROUP_SIZE and MAX_NUNITS are as for
863 tree vectype, poly_uint64 *max_nunits)
876 before adjusting *max_nunits for basic-block vectorization. */
889 vect_update_max_nunits (max_nunits, vectype);
910 poly_uint64 *max_nunits, bool *matches,
989 nunits_vectype, max_nunits))
1494 poly_uint64 *max_nunits,
1501 poly_uint64 *max_nunits,
2867 poly_uint64 max_nunits = 1; local
3065 poly_uint64 max_nunits = 1; local
    [all...]
tree-vectorizer.h 198 poly_uint64 max_nunits; member in struct:_slp_tree
1969 /* Update maximum unit count *MAX_NUNITS so that it accounts for
1970 NUNITS. *MAX_NUNITS can be 1 if we haven't yet recorded anything. */
1973 vect_update_max_nunits (poly_uint64 *max_nunits, poly_uint64 nunits)
1978 *max_nunits = force_common_multiple (*max_nunits, nunits);
1981 /* Update maximum unit count *MAX_NUNITS so that it accounts for
1982 the number of units in vector type VECTYPE. *MAX_NUNITS can be 1
1986 vect_update_max_nunits (poly_uint64 *max_nunits, tree vectype)
1988 vect_update_max_nunits (max_nunits, TYPE_VECTOR_SUBPARTS (vectype))
    [all...]

Completed in 51 milliseconds