| /src/external/gpl3/gcc.old/dist/gcc/ |
| internal-fn.h | 145 signed int type0 : 8; member in struct:direct_internal_fn_info 164 return direct_internal_fn_array[fn].type0 >= -1; 196 /* Return true if FN is supported for types TYPE0 and TYPE1 when the 198 the "type0" and "type1" fields of FN's direct_internal_fn_info 202 direct_internal_fn_supported_p (internal_fn fn, tree type0, tree type1, 205 return direct_internal_fn_supported_p (fn, tree_pair (type0, type1),
|
| tree-ssa-scopedtables.cc | 564 tree type0 = expr0->type; local 568 if ((type0 == NULL_TREE) ^ (type1 == NULL_TREE)) 573 if (type0 != type1 574 && (TREE_CODE (type0) == ERROR_MARK 576 || TYPE_UNSIGNED (type0) != TYPE_UNSIGNED (type1) 577 || TYPE_PRECISION (type0) != TYPE_PRECISION (type1) 578 || TYPE_MODE (type0) != TYPE_MODE (type1)))
|
| /src/external/gpl3/gcc/dist/gcc/config/avr/ |
| avr-c.cc | 52 tree type0, type1, fold = NULL_TREE; local 72 type0 = TREE_TYPE (args[0]); 74 if (!FIXED_POINT_TYPE_P (type0)) 82 switch (TYPE_MODE (type0)) 131 type0 = TREE_TYPE (args[0]); 134 if (!FIXED_POINT_TYPE_P (type0)) 150 switch (TYPE_MODE (type0)) 197 type0 = TREE_TYPE (args[0]); 199 if (!FIXED_POINT_TYPE_P (type0)) 207 switch (TYPE_MODE (type0)) [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/config/avr/ |
| avr-c.cc | 52 tree type0, type1, fold = NULL_TREE; local 72 type0 = TREE_TYPE (args[0]); 74 if (!FIXED_POINT_TYPE_P (type0)) 82 switch (TYPE_MODE (type0)) 131 type0 = TREE_TYPE (args[0]); 134 if (!FIXED_POINT_TYPE_P (type0)) 150 switch (TYPE_MODE (type0)) 197 type0 = TREE_TYPE (args[0]); 199 if (!FIXED_POINT_TYPE_P (type0)) 207 switch (TYPE_MODE (type0)) [all...] |
| /src/external/gpl3/gcc/dist/libgcc/config/libbid/ |
| bid_conf.h | 929 #define TYPE0_FUNCTION_ARGTYPE1_ARGTYPE2(type0, fn_name, type1, arg_name1, type2, arg_name2)\ 930 void fn_name (type0 *pres, \ 949 #define TYPE0_FUNCTION_ARG128_ARGTYPE2(type0, fn_name, arg_name1, type2, arg_name2)\ 950 void fn_name (type0 *pres, \ 959 #define TYPE0_FUNCTION_ARGTYPE1_ARG128(type0, fn_name, type1, arg_name1, arg_name2)\ 960 void fn_name (type0 *pres, \ 969 #define TYPE0_FUNCTION_ARG128_ARG128(type0, fn_name, arg_name1, arg_name2)\ 970 void fn_name (type0 * pres, \ 979 #define TYPE0_FUNCTION_ARG1(type0, fn_name, arg_name)\ 980 void fn_name (type0 * pres, [all...] |
| /src/external/gpl3/gcc.old/dist/libgcc/config/libbid/ |
| bid_conf.h | 929 #define TYPE0_FUNCTION_ARGTYPE1_ARGTYPE2(type0, fn_name, type1, arg_name1, type2, arg_name2)\ 930 void fn_name (type0 *pres, \ 949 #define TYPE0_FUNCTION_ARG128_ARGTYPE2(type0, fn_name, arg_name1, type2, arg_name2)\ 950 void fn_name (type0 *pres, \ 959 #define TYPE0_FUNCTION_ARGTYPE1_ARG128(type0, fn_name, type1, arg_name1, arg_name2)\ 960 void fn_name (type0 *pres, \ 969 #define TYPE0_FUNCTION_ARG128_ARG128(type0, fn_name, arg_name1, arg_name2)\ 970 void fn_name (type0 * pres, \ 979 #define TYPE0_FUNCTION_ARG1(type0, fn_name, arg_name)\ 980 void fn_name (type0 * pres, [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| internal-fn.h | 153 signed int type0 : 8; member in struct:direct_internal_fn_info 172 return direct_internal_fn_array[fn].type0 >= -1; 204 /* Return true if FN is supported for types TYPE0 and TYPE1 when the 206 the "type0" and "type1" fields of FN's direct_internal_fn_info 210 direct_internal_fn_supported_p (internal_fn fn, tree type0, tree type1, 213 return direct_internal_fn_supported_p (fn, tree_pair (type0, type1),
|
| match.pd | 8735 (with { tree type0 = TREE_TYPE (@0); 8745 tree type0 = TREE_TYPE (@0); 8747 if (wi::to_widest (@3) == TYPE_PRECISION (type0) - 1) 8750 (if (ok && wi::to_wide (@1) == (TYPE_PRECISION (type0) - 1)) 8751 (op @0 { build_one_cst (type0); })))))) 8776 tree type0 = TREE_TYPE (@0); 8777 int prec = TYPE_PRECISION (type0); 8784 (cmp (bit_and @0 { wide_int_to_tree (type0, 8786 { build_zero_cst (type0); }))))))) 8791 (with { tree type0 = TREE_TYPE (@0) [all...] |
| tree-ssa-scopedtables.cc | 605 tree type0 = expr0->type; local 609 if ((type0 == NULL_TREE) ^ (type1 == NULL_TREE)) 614 if (type0 != type1 615 && (TREE_CODE (type0) == ERROR_MARK 617 || TYPE_UNSIGNED (type0) != TYPE_UNSIGNED (type1) 618 || element_precision (type0) != element_precision (type1) 619 || TYPE_MODE (type0) != TYPE_MODE (type1)))
|
| /src/external/gpl3/gcc/dist/gcc/c-family/ |
| c-ubsan.cc | 167 tree type0 = TREE_TYPE (op0); local 169 if (!INTEGRAL_TYPE_P (type0)) 173 HOST_WIDE_INT op0_prec = TYPE_PRECISION (type0); 184 if (TYPE_OVERFLOW_WRAPS (type0) 185 || maybe_ne (GET_MODE_BITSIZE (TYPE_MODE (type0)), 186 TYPE_PRECISION (type0)) 200 tt = fold_convert_loc (loc, unsigned_type_for (type0), op0); 213 tt = fold_convert_loc (loc, unsigned_type_for (type0), 219 build_int_cst (type0, 0)); 285 tree utd0 = ubsan_type_descriptor (type0, UBSAN_PRINT_FORCE_INT) [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/c-family/ |
| c-ubsan.cc | 150 tree type0 = TREE_TYPE (op0); local 152 if (!INTEGRAL_TYPE_P (type0)) 156 HOST_WIDE_INT op0_prec = TYPE_PRECISION (type0); 167 if (TYPE_OVERFLOW_WRAPS (type0) 168 || maybe_ne (GET_MODE_BITSIZE (TYPE_MODE (type0)), 169 TYPE_PRECISION (type0)) 183 tt = fold_convert_loc (loc, unsigned_type_for (type0), op0); 196 tt = fold_convert_loc (loc, unsigned_type_for (type0), 202 build_int_cst (type0, 0)); 242 ubsan_type_descriptor (type0), [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/ |
| go-lang.c | 76 struct type *type0 = type->field (0).type (); local 79 type0 = check_typedef (type0); 82 if (type0->code () == TYPE_CODE_PTR 87 struct type *target_type = type0->target_type ();
|
| ada-lang.c | 3094 struct type *type0 = ada_check_typedef (type); 3095 struct type *base_index_type = type0->index_type ()->target_type (); 3100 (alloc, type0->target_type (), index_type, 3101 type0->dyn_prop (DYN_PROP_BYTE_STRIDE), 3102 type0->field (0).bitsize ()); 3103 int base_low = ada_discrete_type_low_bound (type0->index_type ()); 3119 stride = type0->target_type ()->length (); 4225 struct type *type0 = 4230 if (type0 == NULL) 4242 return (!(numeric_type_p (type0) && numeric_type_p (type1))) 3089 struct type *type0 = ada_check_typedef (type); local 4219 struct type *type0 = local 4836 struct type *type0 = sym0->type (); local 10233 struct type *type0 = ada_check_typedef (array->type ()); local [all...] |
| ada-typeprint.c | 801 print_record_type (struct type *type0, struct ui_file *stream, int show, 807 type = ada_find_parallel_type (type0, "___XVE"); 809 type = type0; 925 /* Print a description of a type TYPE0. 939 ada_print_type (struct type *type0, const char *varstring, 943 if (type0->code () == TYPE_CODE_INTERNAL_FUNCTION) 945 c_print_type (type0, "", stream, show, level, 950 struct type *type = ada_check_typedef (ada_get_base_type (type0)); 962 const char *type_name = decoded_type_name (type0);
|
| /src/external/gpl3/gdb/dist/gdb/ |
| go-lang.c | 76 struct type *type0 = type->field (0).type (); local 79 type0 = check_typedef (type0); 82 if (type0->code () == TYPE_CODE_PTR 87 struct type *target_type = type0->target_type ();
|
| ada-lang.c | 3092 struct type *type0 = ada_check_typedef (type); 3093 struct type *base_index_type = type0->index_type ()->target_type (); 3098 (alloc, type0->target_type (), index_type, 3099 type0->dyn_prop (DYN_PROP_BYTE_STRIDE), 3100 type0->field (0).bitsize ()); 3101 int base_low = ada_discrete_type_low_bound (type0->index_type ()); 3117 stride = type0->target_type ()->length (); 4226 struct type *type0 = 4231 if (type0 == NULL) 4243 return (!(numeric_type_p (type0) && numeric_type_p (type1))) 3087 struct type *type0 = ada_check_typedef (type); local 4220 struct type *type0 = local 4823 struct type *type0 = sym0->type (); local 10245 struct type *type0 = ada_check_typedef (array->type ()); local [all...] |
| ada-typeprint.c | 801 print_record_type (struct type *type0, struct ui_file *stream, int show, 807 type = ada_find_parallel_type (type0, "___XVE"); 809 type = type0; 925 /* Print a description of a type TYPE0. 939 ada_print_type (struct type *type0, const char *varstring, 943 if (type0->code () == TYPE_CODE_INTERNAL_FUNCTION) 945 c_print_type (type0, "", stream, show, level, 950 struct type *type = ada_check_typedef (ada_get_base_type (type0)); 962 const char *type_name = decoded_type_name (type0);
|
| /src/sys/sys/ |
| sdt.h | 178 #define DTRACE_PROBE1(name, type0, arg0) \ 180 #define DTRACE_PROBE2(name, type0, arg0, type1, arg1) do \ 184 #define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2) do \ 189 #define DTRACE_PROBE4(name, type0, arg0, type1, arg1, type2, arg2, type3, \ 195 #define DTRACE_PROBE5(name, type0, arg0, type1, arg1, type2, arg2, type3, \ 409 #define DTRACE_PROBE1(name, type0, arg0) \ 411 SDT_PROBE_ARGTYPE(sdt, , , name, 0, #type0, NULL); \ 414 #define DTRACE_PROBE2(name, type0, arg0, type1, arg1) \ 416 SDT_PROBE_ARGTYPE(sdt, , , name, 0, #type0, NULL); \ 420 #define DTRACE_PROBE3(name, type0, arg0, type1, arg1, type2, arg2) [all...] |
| /src/external/gpl3/gcc/dist/gcc/cp/ |
| typeck.cc | 5039 code of the binary operation, TYPE0 and TYPE1 are the types of the operands, 5046 do_warn_enum_conversions (location_t loc, enum tree_code code, tree type0, 5049 if (TREE_CODE (type0) == ENUMERAL_TYPE 5051 && TYPE_MAIN_VARIANT (type0) != TYPE_MAIN_VARIANT (type1)) 5088 "enumeration types %qT and %qT", type0, type1); 5092 type0, type1); 5097 "types %qT and %qT", type0, type1); 5100 "types %qT and %qT is deprecated", type0, type1); 5104 else if ((TREE_CODE (type0) == ENUMERAL_TYPE 5106 || (SCALAR_FLOAT_TYPE_P (type0) 5192 tree type0, type1, orig_type0, orig_type1; local 5519 tree type0 = TREE_OPERAND (op0, 0); local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/d/ |
| d-convert.cc | 44 tree type0, type1; local 48 type0 = TREE_TYPE (op0); 56 if (POINTER_TYPE_P (type0) && TREE_CODE (op1) == INTEGER_CST 59 result_type = type0; 68 else if (INTEGRAL_TYPE_P (type0) && INTEGRAL_TYPE_P (type1)) 70 if (TYPE_PRECISION (type0) > TYPE_PRECISION (type1)) 71 result_type = type0; 72 else if (TYPE_PRECISION (type0) < TYPE_PRECISION (type1)) 74 else if (TYPE_UNSIGNED (type0) != TYPE_UNSIGNED (type1)) 75 result_type = TYPE_UNSIGNED (type0) ? type0 : type1 [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/cp/ |
| typeck.cc | 4821 code of the binary operation, TYPE0 and TYPE1 are the types of the operands, 4826 do_warn_enum_conversions (location_t loc, enum tree_code code, tree type0, 4829 if (TREE_CODE (type0) == ENUMERAL_TYPE 4831 && TYPE_MAIN_VARIANT (type0) != TYPE_MAIN_VARIANT (type1)) 4861 type0, type1); 4865 "types %qT and %qT is deprecated", type0, type1); 4869 else if ((TREE_CODE (type0) == ENUMERAL_TYPE 4871 || (TREE_CODE (type0) == REAL_TYPE 4874 const bool enum_first_p = TREE_CODE (type0) == ENUMERAL_TYPE; 4896 type0, type1) 4937 tree type0, type1; local 5187 tree type0 = TREE_OPERAND (op0, 0); local [all...] |
| /src/external/gpl3/gcc/dist/gcc/c/ |
| c-typeck.cc | 12599 tree type0, type1, orig_type0, orig_type1; 12706 orig_type0 = type0 = TREE_TYPE (op0); 12712 code0 = TREE_CODE (type0); 12734 = targetm.invalid_binary_op (code, type0, type1))) 12762 && (ANY_INTEGRAL_TYPE_P (type0) 12773 type0 = TREE_TYPE (op0); 12776 && (eptype = excess_precision_type (type0)) != NULL_TREE) 12778 type0 = eptype; 12793 objc_ok = objc_compare_types (type0, type1, -3, NULL_TREE); 12797 if ((gnu_vector_type_p (type0) && code1 != VECTOR_TYPE 12560 tree type0, type1, orig_type0, orig_type1; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/c/ |
| c-typeck.cc | 11757 tree type0, type1, orig_type0, orig_type1; 11864 orig_type0 = type0 = TREE_TYPE (op0); 11870 code0 = TREE_CODE (type0); 11892 = targetm.invalid_binary_op (code, type0, type1))) 11920 && (ANY_INTEGRAL_TYPE_P (type0) 11931 type0 = TREE_TYPE (op0); 11934 && (eptype = excess_precision_type (type0)) != NULL_TREE) 11936 type0 = eptype; 11951 objc_ok = objc_compare_types (type0, type1, -3, NULL_TREE); 11955 if ((gnu_vector_type_p (type0) && code1 != VECTOR_TYPE 11720 tree type0, type1, orig_type0, orig_type1; local [all...] |
| /src/external/gpl3/gcc/dist/gcc/config/arm/ |
| arm-mve-builtins.cc | 1117 mode suffix given by MODE and the type suffixes given by TYPE0 and TYPE1. 1121 type_suffix_index type0, 1124 type_suffix_pair types = { type0, type1 }; 1132 type suffixes given by TYPE0 and TYPE1. Return its function decl on 1136 type_suffix_index type0, 1139 tree res = lookup_form (mode, type0, type1); 1143 return report_no_such_form (type0); 1144 if (type0 == type_suffix_ids[0])
|
| /src/external/gpl3/gcc/dist/gcc/config/aarch64/ |
| aarch64-sve-builtins-shapes.cc | 3929 type_suffix_index type0, type1; variable 3931 || (type0 = r.infer_vector_type (i)) == NUM_TYPE_SUFFIXES 3937 if ((type_suffixes[type0].element_bits 3939 && type_suffixes[type0].tclass == type_suffixes[type1].tclass) 3940 if (tree res = r.lookup_form (MODE_none, type0)) 3943 return r.resolve_to (r.mode_suffix_id, type0, type1); 4022 type_suffix_index type0, type1; variable 4024 || (type0 = r.infer_vector_type (i)) == NUM_TYPE_SUFFIXES 4034 if ((type_suffixes[type0].element_bits 4036 && type_suffixes[type0].tclass == type_suffixes[type1].tclass [all...] |