HomeSort by: relevance | last modified time | path
    Searched defs:lhs_type (Results 1 - 25 of 34) sorted by relevancy

1 2

  /src/external/gpl3/gcc/dist/gcc/analyzer/
varargs.cc 964 /* Return true if it's OK to copy ARG_SVAL from ARG_TYPE to LHS_TYPE via
968 va_arg_compatible_types_p (tree lhs_type, tree arg_type, const svalue &arg_sval)
970 if (compat_types_p (arg_type, lhs_type))
976 if (INTEGRAL_TYPE_P (lhs_type)
978 && TYPE_UNSIGNED (lhs_type) != TYPE_UNSIGNED (arg_type)
979 && TYPE_PRECISION (lhs_type) == TYPE_PRECISION (arg_type)
980 && representable_in_integral_type_p (arg_sval, lhs_type)
1053 tree lhs_type = cd.get_lhs_type (); local
1055 if (va_arg_compatible_types_p (lhs_type, arg_type, *arg_sval))
1063 lhs_type,
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
value-prof.cc 957 tree lhs_type, result, value; local
965 lhs_type = TREE_TYPE (gimple_assign_lhs (stmt));
966 if (!INTEGRAL_TYPE_P (lhs_type))
971 if (code != TRUNC_MOD_EXPR || !TYPE_UNSIGNED (lhs_type))
1122 tree lhs_type, result; local
1131 lhs_type = TREE_TYPE (gimple_assign_lhs (stmt));
1132 if (!INTEGRAL_TYPE_P (lhs_type))
1137 if (code != TRUNC_MOD_EXPR || !TYPE_UNSIGNED (lhs_type))
tree-vect-generic.cc 1540 tree lhs_type = TREE_TYPE (gimple_assign_lhs (stmt));
1541 machine_mode lhs_mode = TYPE_MODE (lhs_type);
1539 tree lhs_type = TREE_TYPE (gimple_assign_lhs (stmt)); local
gimple-ssa-strength-reduction.cc 1533 legal_cast_p_1 (tree lhs_type, tree rhs_type)
1538 lhs_size = TYPE_PRECISION (lhs_type);
1540 lhs_wraps = ANY_INTEGRAL_TYPE_P (lhs_type) && TYPE_OVERFLOW_WRAPS (lhs_type);
3798 tree lhs_type = TREE_TYPE (lhs);
3801 if (types_compatible_p (lhs_type, basis_type))
3789 tree lhs_type = TREE_TYPE (lhs); local
tree-if-conv.cc 1007 tree lhs_type = TREE_TYPE (gimple_assign_lhs (stmt)); local
1009 if (!types_compatible_p (lhs_type, rhs_type))
1013 && vectorized_internal_fn_supported_p (cond_fn, lhs_type));
gimple-ssa-store-merging.cc 314 tree lhs_type; local
316 lhs_type = TREE_TYPE (gimple_get_lhs (stmt));
318 if (TREE_CODE (lhs_type) != INTEGER_TYPE
319 && TREE_CODE (lhs_type) != ENUMERAL_TYPE)
322 if (TYPE_PRECISION (lhs_type) != TYPE_PRECISION (n->type))
tree-vect-patterns.cc 759 tree lhs_type = TREE_TYPE (gimple_get_lhs (stmt2_info->stmt)); local
760 tree lhs_vectype = get_vectype_for_scalar_type (vinfo, lhs_type);
774 tree new_lhs = vect_recog_temp_ssa_var (lhs_type, NULL);
895 tree lhs_type = TREE_TYPE (lhs); local
899 if (TYPE_PRECISION (lhs_type) == TYPE_PRECISION (type))
904 else if (TYPE_PRECISION (lhs_type) > TYPE_PRECISION (type)
1806 tree rhs_oprnd, rhs_type, lhs_oprnd, lhs_type, vec_type, vec_rhs_type; local
1827 lhs_type = TREE_TYPE (lhs_oprnd);
1828 if (!INTEGRAL_TYPE_P (lhs_type)
1854 vec_type = get_vectype_for_scalar_type (vinfo, lhs_type);
2084 tree rhs_oprnd, rhs_origin, lhs_oprnd, lhs_type, vec_type, new_var; local
    [all...]
internal-fn.cc 3877 tree lhs_type = TREE_TYPE (lhs); local
3879 create_output_operand (&ops[0], lhs_rtx, TYPE_MODE (lhs_type));
3890 if (!VECTOR_MODE_P (TYPE_MODE (lhs_type)))
3904 TYPE_MODE (lhs_type));
tree-cfg.cc 3687 tree lhs_type = TREE_TYPE (lhs); local
3712 if (VECTOR_TYPE_P (lhs_type)
3714 && known_eq (TYPE_VECTOR_SUBPARTS (lhs_type),
3717 lhs_type = TREE_TYPE (lhs_type);
3720 else if (VECTOR_TYPE_P (lhs_type) || VECTOR_TYPE_P (rhs1_type))
3723 debug_generic_expr (lhs_type);
3733 if ((POINTER_TYPE_P (lhs_type)
3736 && INTEGRAL_TYPE_P (lhs_type)
3737 && (TYPE_PRECISION (rhs1_type) >= TYPE_PRECISION (lhs_type)
3931 tree lhs_type = TREE_TYPE (lhs); local
4328 tree lhs_type = TREE_TYPE (lhs); local
4602 tree lhs_type = TREE_TYPE (lhs); local
    [all...]
tree-vectorizer.h 2678 tree lhs_type = TREE_TYPE (gimple_assign_lhs (assign)); local
2680 if (!INTEGRAL_TYPE_P (lhs_type)
2682 || TYPE_PRECISION (lhs_type) <= TYPE_PRECISION (rhs_type))
2699 tree lhs_type = TREE_TYPE (gimple_assign_lhs (assign));
2701 return (INTEGRAL_TYPE_P (lhs_type)
2703 && TYPE_PRECISION (lhs_type) < TYPE_PRECISION (rhs_type));
  /src/external/gpl3/gcc.old/dist/gcc/
value-prof.cc 969 tree lhs_type, result, value; local
977 lhs_type = TREE_TYPE (gimple_assign_lhs (stmt));
978 if (!INTEGRAL_TYPE_P (lhs_type))
983 if (code != TRUNC_MOD_EXPR || !TYPE_UNSIGNED (lhs_type))
1134 tree lhs_type, result; local
1143 lhs_type = TREE_TYPE (gimple_assign_lhs (stmt));
1144 if (!INTEGRAL_TYPE_P (lhs_type))
1149 if (code != TRUNC_MOD_EXPR || !TYPE_UNSIGNED (lhs_type))
gimple-ssa-strength-reduction.cc 1533 legal_cast_p_1 (tree lhs_type, tree rhs_type)
1538 lhs_size = TYPE_PRECISION (lhs_type);
1540 lhs_wraps = ANY_INTEGRAL_TYPE_P (lhs_type) && TYPE_OVERFLOW_WRAPS (lhs_type);
3798 tree lhs_type = TREE_TYPE (lhs);
3801 if (types_compatible_p (lhs_type, basis_type))
3789 tree lhs_type = TREE_TYPE (lhs); local
range-op.cc 2377 tree lhs_type = lhs.type (); local
2414 range_cast (converted_lhs, unsigned_type_for (lhs_type));
2417 wide_int lim = wi::set_bit_in_zero (TYPE_PRECISION (lhs_type),
2425 lim = wi::mask (TYPE_PRECISION (lhs_type), true,
2460 if (TYPE_PRECISION (lhs_type) == TYPE_PRECISION (type))
2468 fold_range (tmp, lhs_type, int_range<1> (type), int_range<1> (lhs_type));
tree-if-conv.cc 989 tree lhs_type = TREE_TYPE (gimple_assign_lhs (stmt)); local
991 if (!types_compatible_p (lhs_type, rhs_type))
995 && vectorized_internal_fn_supported_p (cond_fn, lhs_type));
gimple-ssa-store-merging.cc 314 tree lhs_type; local
316 lhs_type = TREE_TYPE (gimple_get_lhs (stmt));
318 if (TREE_CODE (lhs_type) != INTEGER_TYPE
319 && TREE_CODE (lhs_type) != ENUMERAL_TYPE)
322 if (TYPE_PRECISION (lhs_type) != TYPE_PRECISION (n->type))
internal-fn.cc 3661 tree lhs_type = TREE_TYPE (lhs); local
3663 create_output_operand (&ops[0], lhs_rtx, TYPE_MODE (lhs_type));
3674 TYPE_MODE (lhs_type));
tree-vect-patterns.cc 734 tree lhs_type = TREE_TYPE (gimple_get_lhs (stmt2_info->stmt)); local
735 tree lhs_vectype = get_vectype_for_scalar_type (vinfo, lhs_type);
749 tree new_lhs = vect_recog_temp_ssa_var (lhs_type, NULL);
794 tree lhs_type = TREE_TYPE (lhs); local
798 if (TYPE_PRECISION (lhs_type) == TYPE_PRECISION (type))
803 else if (TYPE_PRECISION (lhs_type) > TYPE_PRECISION (type)
1510 tree rhs_oprnd, rhs_origin, lhs_oprnd, lhs_type, vec_type, new_var; local
1521 lhs_type = TREE_TYPE (lhs_oprnd);
1522 if (!INTEGRAL_TYPE_P (lhs_type))
1556 if (TYPE_PRECISION (unprom_diff.type) != TYPE_PRECISION (lhs_type)
    [all...]
tree-cfg.cc 3598 tree lhs_type = TREE_TYPE (lhs); local
3623 if (VECTOR_TYPE_P (lhs_type)
3625 && known_eq (TYPE_VECTOR_SUBPARTS (lhs_type),
3628 lhs_type = TREE_TYPE (lhs_type);
3631 else if (VECTOR_TYPE_P (lhs_type) || VECTOR_TYPE_P (rhs1_type))
3634 debug_generic_expr (lhs_type);
3644 if ((POINTER_TYPE_P (lhs_type)
3647 && INTEGRAL_TYPE_P (lhs_type)
3648 && (TYPE_PRECISION (rhs1_type) >= TYPE_PRECISION (lhs_type)
3842 tree lhs_type = TREE_TYPE (lhs); local
4229 tree lhs_type = TREE_TYPE (lhs); local
4499 tree lhs_type = TREE_TYPE (lhs); local
    [all...]
tree-vect-stmts.cc 4865 tree lhs_type, rhs_type; local
4911 lhs_type = TREE_TYPE (scalar_dest);
4927 && !((INTEGRAL_TYPE_P (lhs_type)
4929 || (SCALAR_FLOAT_TYPE_P (lhs_type)
4934 && ((INTEGRAL_TYPE_P (lhs_type)
4935 && !type_has_mode_precision_p (lhs_type))
5023 scalar_mode lhs_mode = SCALAR_TYPE_MODE (lhs_type);
  /src/external/gpl3/gcc/dist/gcc/config/aarch64/
aarch64-sve-builtins-base.cc 626 tree lhs_type = TREE_TYPE (f.lhs); variable
635 gassign *clobber = gimple_build_assign (f.lhs, build_clobber (lhs_type));
896 tree lhs_type = TREE_TYPE (lhs); local
897 tree elt_type = TREE_TYPE (lhs_type);
914 poly_uint64 lhs_len = TYPE_VECTOR_SUBPARTS (lhs_type);
1568 tree lhs_type = TREE_TYPE (lhs); variable
1569 poly_uint64 lhs_len = TYPE_VECTOR_SUBPARTS (lhs_type);
1570 tree eltype = TREE_TYPE (lhs_type);
1572 scalar_mode elmode = GET_MODE_INNER (TYPE_MODE (lhs_type));
1598 gcc_checking_assert (can_vec_perm_const_p (TYPE_MODE (lhs_type),
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
rs6000-builtin.cc 964 tree lhs_type = TREE_TYPE (lhs); local
965 int n_elts = TYPE_VECTOR_SUBPARTS (lhs_type);
976 permute_type = map_to_integral_tree_type (lhs_type);
1001 tree lhs_type = TREE_TYPE (lhs); local
1002 int n_elts = TYPE_VECTOR_SUBPARTS (lhs_type);
1008 permute_type = map_to_integral_tree_type (lhs_type);
1803 tree lhs_type = TREE_TYPE (lhs); local
1827 = gimple_build_assign (lhs, build2 (MEM_REF, lhs_type, aligned_addr,
1900 tree lhs_type = TREE_TYPE (lhs); local
1903 tree align_ltype = build_aligned_type (lhs_type, 32)
2085 tree lhs_type = TREE_TYPE (lhs); local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/aarch64/
aarch64-sve-builtins-base.cc 604 tree lhs_type = TREE_TYPE (f.lhs); variable
613 gassign *clobber = gimple_build_assign (f.lhs, build_clobber (lhs_type));
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
rs6000-builtin.cc 988 tree lhs_type = TREE_TYPE (lhs); local
989 int n_elts = TYPE_VECTOR_SUBPARTS (lhs_type);
1000 permute_type = map_to_integral_tree_type (lhs_type);
1025 tree lhs_type = TREE_TYPE (lhs); local
1026 int n_elts = TYPE_VECTOR_SUBPARTS (lhs_type);
1032 permute_type = map_to_integral_tree_type (lhs_type);
1823 tree lhs_type = TREE_TYPE (lhs); local
1847 = gimple_build_assign (lhs, build2 (MEM_REF, lhs_type, aligned_addr,
1920 tree lhs_type = TREE_TYPE (lhs); local
1923 tree align_ltype = build_aligned_type (lhs_type, 32)
2110 tree lhs_type = TREE_TYPE (lhs); local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/riscv/
riscv-vector-builtins-bases.cc 1881 tree lhs_type = TREE_TYPE (f.lhs); variable
1884 if (!riscv_v_ext_tuple_mode_p (TYPE_MODE (lhs_type)))
1894 gassign *clobber = gimple_build_assign (f.lhs, build_clobber (lhs_type));
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
trans-intrinsic.cc 1937 tree lhs_type = NULL_TREE; local
1968 lhs_type = TREE_TYPE (lhs_se.expr);
1981 lhs_type = gfc_typenode_for_spec (&lhs_expr->ts);
1988 lhs_type));
2013 lhs_type = gfc_typenode_for_spec (&lhs_expr->ts);
2018 lhs_type));
2058 lhs_type = gfc_typenode_for_spec (&lhs_expr->ts);
2060 lss_for_tmparray, lhs_type, NULL_TREE,

Completed in 79 milliseconds

1 2