Home
last modified time | relevance | path

Searched refs:from_type (Results 1 – 25 of 36) sorted by relevance

12

/netbsd-src/external/gpl3/binutils/dist/bfd/
H A Delf32-i386.c1069 unsigned int from_type = *r_type; in elf_i386_tls_transition() local
1070 unsigned int to_type = from_type; in elf_i386_tls_transition()
1092 switch (from_type) in elf_i386_tls_transition()
1104 else if (from_type != R_386_TLS_IE in elf_i386_tls_transition()
1105 && from_type != R_386_TLS_GOTIE) in elf_i386_tls_transition()
1131 check = new_to_type != to_type && from_type == to_type; in elf_i386_tls_transition()
1147 if (from_type == to_type) in elf_i386_tls_transition()
1154 from_type, rel, relend)) in elf_i386_tls_transition()
1159 from = elf_i386_rtype_to_howto (from_type); in elf_i386_tls_transition()
H A Delf64-x86-64.c1402 unsigned int from_type = *r_type; in elf_x86_64_tls_transition() local
1403 unsigned int to_type = from_type; in elf_x86_64_tls_transition()
1412 switch (from_type) in elf_x86_64_tls_transition()
1449 check = new_to_type != to_type && from_type == to_type; in elf_x86_64_tls_transition()
1465 if (from_type == to_type in elf_x86_64_tls_transition()
1466 || (from_type == R_X86_64_CODE_4_GOTTPOFF in elf_x86_64_tls_transition()
1474 from_type, rel, relend)) in elf_x86_64_tls_transition()
1479 from = elf_x86_64_rtype_to_howto (abfd, from_type); in elf_x86_64_tls_transition()
/netbsd-src/external/gpl3/binutils.old/dist/bfd/
H A Delf32-i386.c1068 unsigned int from_type = *r_type; in elf_i386_tls_transition() local
1069 unsigned int to_type = from_type; in elf_i386_tls_transition()
1078 switch (from_type) in elf_i386_tls_transition()
1090 else if (from_type != R_386_TLS_IE in elf_i386_tls_transition()
1091 && from_type != R_386_TLS_GOTIE) in elf_i386_tls_transition()
1117 check = new_to_type != to_type && from_type == to_type; in elf_i386_tls_transition()
1133 if (from_type == to_type) in elf_i386_tls_transition()
1140 from_type, rel, relend)) in elf_i386_tls_transition()
1145 from = elf_i386_rtype_to_howto (from_type); in elf_i386_tls_transition()
H A Delf64-x86-64.c1270 unsigned int from_type = *r_type; in elf_x86_64_tls_transition() local
1271 unsigned int to_type = from_type; in elf_x86_64_tls_transition()
1280 switch (from_type) in elf_x86_64_tls_transition()
1314 check = new_to_type != to_type && from_type == to_type; in elf_x86_64_tls_transition()
1330 if (from_type == to_type) in elf_x86_64_tls_transition()
1337 from_type, rel, relend)) in elf_x86_64_tls_transition()
1342 from = elf_x86_64_rtype_to_howto (abfd, from_type); in elf_x86_64_tls_transition()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/c-family/
H A Dc-common.c1291 int_safely_convertible_to_real_p (const_tree from_type, const_tree to_type) in int_safely_convertible_to_real_p() argument
1293 tree type_low_bound = TYPE_MIN_VALUE (from_type); in int_safely_convertible_to_real_p()
1294 tree type_high_bound = TYPE_MAX_VALUE (from_type); in int_safely_convertible_to_real_p()
1534 tree from_type = TREE_TYPE (expr_type); in unsafe_conversion_p() local
1538 if (TREE_CODE (from_type) == REAL_TYPE in unsafe_conversion_p()
1543 else if (TREE_CODE (from_type) == REAL_TYPE in unsafe_conversion_p()
1545 && TYPE_PRECISION (to_type) < TYPE_PRECISION (from_type)) in unsafe_conversion_p()
1551 else if (TREE_CODE (from_type) == INTEGER_TYPE in unsafe_conversion_p()
1555 if (TYPE_PRECISION (to_type) < TYPE_PRECISION (from_type)) in unsafe_conversion_p()
1560 else if (((TYPE_PRECISION (to_type) == TYPE_PRECISION (from_type) in unsafe_conversion_p()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dmatch.pd3363 tree from_type = TREE_TYPE (@1);
3367 if (INTEGRAL_TYPE_P (from_type)
3368 && int_fits_type_p (@2, from_type)
3369 && (types_match (c1_type, from_type)
3370 || (TYPE_PRECISION (c1_type) > TYPE_PRECISION (from_type)
3371 && (TYPE_UNSIGNED (from_type)
3372 || TYPE_SIGN (c1_type) == TYPE_SIGN (from_type))))
3373 && (types_match (c2_type, from_type)
3374 || (TYPE_PRECISION (c2_type) > TYPE_PRECISION (from_type)
3375 && (TYPE_UNSIGNED (from_type)
[all …]
H A Dtree-ssa-math-opts.c2782 tree from_type = TREE_TYPE (gimple_assign_rhs1 (conv_stmt)); in convert_plusminus_to_widen() local
2787 if (TYPE_PRECISION (from_type) > TYPE_PRECISION (to_type)) in convert_plusminus_to_widen()
2793 else if (TYPE_PRECISION (from_type) < TYPE_PRECISION (to_type)) in convert_plusminus_to_widen()
2796 if (TYPE_UNSIGNED (from_type) != is_unsigned in convert_plusminus_to_widen()
2797 && !(is_unsigned && TYPE_PRECISION (from_type) > data_size)) in convert_plusminus_to_widen()
H A Dtarghooks.c1552 tree from_type ATTRIBUTE_UNUSED, in default_addr_space_convert()
H A Dtree.h6206 desired_pro_or_demotion_p (const_tree to_type, const_tree from_type)
6215 return to_type_precision <= TYPE_PRECISION (from_type);
/netbsd-src/external/gpl3/gcc/dist/gcc/c-family/
H A Dc-common.cc1457 int_safely_convertible_to_real_p (const_tree from_type, const_tree to_type) in int_safely_convertible_to_real_p() argument
1459 tree type_low_bound = TYPE_MIN_VALUE (from_type); in int_safely_convertible_to_real_p()
1460 tree type_high_bound = TYPE_MAX_VALUE (from_type); in int_safely_convertible_to_real_p()
1700 tree from_type = TREE_TYPE (expr_type); in unsafe_conversion_p() local
1704 if (TREE_CODE (from_type) == REAL_TYPE in unsafe_conversion_p()
1709 else if (TREE_CODE (from_type) == REAL_TYPE in unsafe_conversion_p()
1711 && TYPE_PRECISION (to_type) < TYPE_PRECISION (from_type)) in unsafe_conversion_p()
1717 else if (TREE_CODE (from_type) == INTEGER_TYPE in unsafe_conversion_p()
1721 if (TYPE_PRECISION (to_type) < TYPE_PRECISION (from_type)) in unsafe_conversion_p()
1726 else if (((TYPE_PRECISION (to_type) == TYPE_PRECISION (from_type) in unsafe_conversion_p()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dmatch.pd4324 tree from_type = TREE_TYPE (@1);
4328 if (INTEGRAL_TYPE_P (from_type)
4329 && int_fits_type_p (@2, from_type)
4330 && (types_match (c1_type, from_type)
4331 || (TYPE_PRECISION (c1_type) > TYPE_PRECISION (from_type)
4332 && (TYPE_UNSIGNED (from_type)
4333 || TYPE_SIGN (c1_type) == TYPE_SIGN (from_type))))
4334 && (types_match (c2_type, from_type)
4335 || (TYPE_PRECISION (c2_type) > TYPE_PRECISION (from_type)
4336 && (TYPE_UNSIGNED (from_type)
[all …]
H A Dtree-ssa-math-opts.cc2938 tree from_type = TREE_TYPE (gimple_assign_rhs1 (conv_stmt)); in convert_plusminus_to_widen() local
2943 if (TYPE_PRECISION (from_type) > TYPE_PRECISION (to_type)) in convert_plusminus_to_widen()
2949 else if (TYPE_PRECISION (from_type) < TYPE_PRECISION (to_type)) in convert_plusminus_to_widen()
2952 if (TYPE_UNSIGNED (from_type) != is_unsigned in convert_plusminus_to_widen()
2953 && !(is_unsigned && TYPE_PRECISION (from_type) > data_size)) in convert_plusminus_to_widen()
H A Dtree-data-ref.cc681 nop_conversion_for_offset_p (tree to_type, tree from_type, value_range &range) in nop_conversion_for_offset_p() argument
684 && INTEGRAL_TYPE_P (from_type) in nop_conversion_for_offset_p()
686 && !TYPE_OVERFLOW_TRAPS (from_type)); in nop_conversion_for_offset_p()
694 if (TYPE_PRECISION (from_type) < TYPE_PRECISION (to_type) in nop_conversion_for_offset_p()
695 && (TYPE_UNSIGNED (from_type) || !TYPE_UNSIGNED (to_type))) in nop_conversion_for_offset_p()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/rs6000/
H A Drs6000.cc12199 enum rs6000_reg_type from_type, in rs6000_secondary_reload_simple_move() argument
12212 && ((to_type == GPR_REG_TYPE && from_type == VSX_REG_TYPE) in rs6000_secondary_reload_simple_move()
12213 || (to_type == VSX_REG_TYPE && from_type == GPR_REG_TYPE))) in rs6000_secondary_reload_simple_move()
12243 && ((to_type == GPR_REG_TYPE && from_type == SPR_REG_TYPE) in rs6000_secondary_reload_simple_move()
12244 || (to_type == SPR_REG_TYPE && from_type == GPR_REG_TYPE))) in rs6000_secondary_reload_simple_move()
12257 enum rs6000_reg_type from_type, in rs6000_secondary_reload_direct_move() argument
12272 if (to_type == VSX_REG_TYPE && from_type == GPR_REG_TYPE) in rs6000_secondary_reload_direct_move()
12281 else if (to_type == GPR_REG_TYPE && from_type == VSX_REG_TYPE) in rs6000_secondary_reload_direct_move()
12290 if (to_type == GPR_REG_TYPE && from_type == VSX_REG_TYPE) in rs6000_secondary_reload_direct_move()
12296 else if (to_type == VSX_REG_TYPE && from_type == GPR_REG_TYPE) in rs6000_secondary_reload_direct_move()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
H A Drs6000.c11496 enum rs6000_reg_type from_type, in rs6000_secondary_reload_simple_move() argument
11509 && ((to_type == GPR_REG_TYPE && from_type == VSX_REG_TYPE) in rs6000_secondary_reload_simple_move()
11510 || (to_type == VSX_REG_TYPE && from_type == GPR_REG_TYPE))) in rs6000_secondary_reload_simple_move()
11540 && ((to_type == GPR_REG_TYPE && from_type == SPR_REG_TYPE) in rs6000_secondary_reload_simple_move()
11541 || (to_type == SPR_REG_TYPE && from_type == GPR_REG_TYPE))) in rs6000_secondary_reload_simple_move()
11554 enum rs6000_reg_type from_type, in rs6000_secondary_reload_direct_move() argument
11569 if (to_type == VSX_REG_TYPE && from_type == GPR_REG_TYPE) in rs6000_secondary_reload_direct_move()
11578 else if (to_type == GPR_REG_TYPE && from_type == VSX_REG_TYPE) in rs6000_secondary_reload_direct_move()
11587 if (to_type == GPR_REG_TYPE && from_type == VSX_REG_TYPE) in rs6000_secondary_reload_direct_move()
11593 else if (to_type == VSX_REG_TYPE && from_type == GPR_REG_TYPE) in rs6000_secondary_reload_direct_move()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/rl78/
H A Drl78.c1216 rl78_addr_space_convert (rtx op, tree from_type, tree to_type) in rl78_addr_space_convert() argument
1218 addr_space_t from_as = TYPE_ADDR_SPACE (TREE_TYPE (from_type)); in rl78_addr_space_convert()
1249 if (TREE_CODE (from_type) == POINTER_TYPE in rl78_addr_space_convert()
1250 && TREE_CODE (TREE_TYPE (from_type)) == FUNCTION_TYPE) in rl78_addr_space_convert()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/rl78/
H A Drl78.cc1216 rl78_addr_space_convert (rtx op, tree from_type, tree to_type) in rl78_addr_space_convert() argument
1218 addr_space_t from_as = TYPE_ADDR_SPACE (TREE_TYPE (from_type)); in rl78_addr_space_convert()
1249 if (TREE_CODE (from_type) == POINTER_TYPE in rl78_addr_space_convert()
1250 && TREE_CODE (TREE_TYPE (from_type)) == FUNCTION_TYPE) in rl78_addr_space_convert()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/msp430/
H A Dmsp430.c495 msp430_addr_space_convert (rtx op, tree from_type, tree to_type) in msp430_addr_space_convert() argument
497 addr_space_t from_as = TYPE_ADDR_SPACE (TREE_TYPE (from_type)); in msp430_addr_space_convert()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/msp430/
H A Dmsp430.cc488 msp430_addr_space_convert (rtx op, tree from_type, tree to_type) in msp430_addr_space_convert() argument
490 addr_space_t from_as = TYPE_ADDR_SPACE (TREE_TYPE (from_type)); in msp430_addr_space_convert()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/gcn/
H A Dgcn.c1463 gcn_addr_space_convert (rtx op, tree from_type, tree to_type) in gcn_addr_space_convert() argument
1465 gcc_assert (POINTER_TYPE_P (from_type)); in gcn_addr_space_convert()
1468 addr_space_t as_from = TYPE_ADDR_SPACE (TREE_TYPE (from_type)); in gcn_addr_space_convert()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/m32c/
H A Dm32c.c2095 m32c_addr_space_convert (rtx op, tree from_type, tree to_type) in m32c_addr_space_convert() argument
2097 addr_space_t from_as = TYPE_ADDR_SPACE (TREE_TYPE (from_type)); in m32c_addr_space_convert()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/m32c/
H A Dm32c.cc2099 m32c_addr_space_convert (rtx op, tree from_type, tree to_type) in m32c_addr_space_convert() argument
2101 addr_space_t from_as = TYPE_ADDR_SPACE (TREE_TYPE (from_type)); in m32c_addr_space_convert()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/
H A Dcall.c10037 tree from_type, tree to_type, in complain_about_bad_argument() argument
10041 range_label_for_type_mismatch rhs_label (from_type, to_type); in complain_about_bad_argument()
10051 from_type, to_type); in complain_about_bad_argument()
10083 tree from_type = conv->from; in complain_about_no_candidates_for_method_call() local
10085 from_type = lvalue_type (conv->from); in complain_about_no_candidates_for_method_call()
10087 from_type, conv->to_type, in complain_about_no_candidates_for_method_call()
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/
H A Dcall.cc10770 tree from_type, tree to_type, in complain_about_bad_argument() argument
10774 range_label_for_type_mismatch rhs_label (from_type, to_type); in complain_about_bad_argument()
10784 from_type, to_type); in complain_about_bad_argument()
10816 tree from_type = conv->from; in complain_about_no_candidates_for_method_call() local
10818 from_type = lvalue_type (conv->from); in complain_about_no_candidates_for_method_call()
10820 from_type, conv->to_type, in complain_about_no_candidates_for_method_call()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/gcn/
H A Dgcn.cc1495 gcn_addr_space_convert (rtx op, tree from_type, tree to_type) in gcn_addr_space_convert() argument
1497 gcc_assert (POINTER_TYPE_P (from_type)); in gcn_addr_space_convert()
1500 addr_space_t as_from = TYPE_ADDR_SPACE (TREE_TYPE (from_type)); in gcn_addr_space_convert()

12