Searched refs:to_type (Results 1 - 25 of 30) sorted by relevance

12

/haiku-buildtools/gcc/libstdc++-v3/testsuite/20_util/time_point_cast/
H A Dconstexpr.cc27 typedef time_point<system_clock, hours> to_type; typedef
33 constexpr to_type tpm(h); // time_point object with minutes
/haiku-buildtools/gcc/gcc/
H A Dgimple-builder.c126 build_type_cast (tree to_type, tree op, tree lhs) argument
129 lhs = make_ssa_name (to_type);
134 build_type_cast (tree to_type, gimple op, tree lhs) argument
136 return build_type_cast (to_type, gimple_assign_lhs (op), lhs);
H A Dtree.c7685 build_pointer_type_for_mode (tree to_type, machine_mode mode,
7690 if (to_type == error_mark_node)
7695 if (lookup_attribute ("may_alias", TYPE_ATTRIBUTES (to_type)))
7706 if (TYPE_POINTER_TO (to_type) != 0
7707 && TREE_CODE (TYPE_POINTER_TO (to_type)) != POINTER_TYPE)
7708 return TYPE_POINTER_TO (to_type);
7712 for (t = TYPE_POINTER_TO (to_type); t; t = TYPE_NEXT_PTR_TO (t))
7718 TREE_TYPE (t) = to_type; argument
7721 TYPE_NEXT_PTR_TO (t) = TYPE_POINTER_TO (to_type);
7722 TYPE_POINTER_TO (to_type)
7662 build_pointer_type_for_mode(tree to_type, machine_mode mode, bool can_alias_all) argument
7729 build_reference_type_for_mode(tree to_type, machine_mode mode, bool can_alias_all) argument
7785 build_reference_type(tree to_type) argument
[all...]
H A Dtree-ssa-math-opts.c2992 tree to_type = TREE_TYPE (gimple_assign_lhs (conv_stmt)); local
2996 if (TYPE_PRECISION (from_type) > TYPE_PRECISION (to_type))
2999 if (TYPE_PRECISION (to_type) < data_size)
3002 else if (TYPE_PRECISION (from_type) < TYPE_PRECISION (to_type))
H A Dtarghooks.c1279 tree to_type ATTRIBUTE_UNUSED)
H A Dgimple-ssa-strength-reduction.c3284 introduce_cast_before_cand (slsr_cand_t c, tree to_type, tree from_expr)
3290 cast_lhs = make_temp_ssa_name (to_type, NULL, "slsr");
3275 introduce_cast_before_cand(slsr_cand_t c, tree to_type, tree from_expr) argument
/haiku-buildtools/legacy/gcc/gcc/cp/
H A Dsig.c59 build_signature_pointer_or_reference_name (to_type, type_quals, refp)
60 tree to_type;
64 const char * sig_name = TYPE_NAME_STRING (to_type);
65 int name_len = TYPE_NAME_LENGTH (to_type) + 3 /* Enough room for
117 build_signature_pointer_or_reference_type (to_type, type_quals, refp)
118 tree to_type;
126 m = refp ? SIGNATURE_REFERENCE_TO (to_type) : SIGNATURE_POINTER_TO (to_type);
130 m = build_signature_pointer_or_reference_type (to_type,
152 if (TREE_PERMANENT (to_type))
[all...]
H A Dsearch.c2064 convert_pointer_to_single_level (to_type, expr)
2065 tree to_type, expr;
2080 if (same_type_p (BINFO_TYPE (binfo), to_type))
2082 build_pointer_type (to_type),
/haiku-buildtools/legacy/gcc/gcc/ch/
H A Dtypeck.c2429 make_chill_pointer_type (to_type, code)
2430 tree to_type;
2441 if (TREE_PERMANENT (to_type))
2448 TREE_TYPE (t) = to_type;
2457 build_chill_pointer_type (to_type)
2458 tree to_type;
2460 int is_type_node = TREE_CODE_CLASS (TREE_CODE (to_type)) == 't';
2461 register tree t = is_type_node ? TYPE_POINTER_TO (to_type) : NULL_TREE;
2469 t = make_chill_pointer_type (to_type, POINTER_TYPE);
2474 if ((is_type_node && (TYPE_SIZE (to_type) !
[all...]
/haiku-buildtools/gcc/gcc/ada/
H A Dgnathtml.pl338 sub to_type subroutine
590 $symbols {$currentref} = &to_type ($2);
/haiku-buildtools/gcc/gcc/go/gofrontend/
H A Dbackend.h100 pointer_type(Btype* to_type) = 0;
147 set_placeholder_pointer_type(Btype* placeholder, Btype* to_type) = 0;
H A Dtypes.h1977 Pointer_type(Type* to_type) argument
1979 to_type_(to_type)
/haiku-buildtools/legacy/gcc/gcc/
H A Dtree.c4170 build_pointer_type (to_type)
4171 tree to_type;
4173 register tree t = TYPE_POINTER_TO (to_type);
4181 push_obstacks (TYPE_OBSTACK (to_type), TYPE_OBSTACK (to_type));
4185 TREE_TYPE (t) = to_type;
4188 TYPE_POINTER_TO (to_type) = t;
4412 build_reference_type (to_type)
4413 tree to_type;
4415 register tree t = TYPE_REFERENCE_TO (to_type);
[all...]
/haiku-buildtools/binutils/bfd/
H A Delf32-i386.c1470 unsigned int to_type = from_type;
1490 to_type = R_386_TLS_LE_32;
1493 to_type = R_386_TLS_IE_32;
1500 unsigned int new_to_type = to_type;
1508 if (to_type == R_386_TLS_GD
1509 || to_type == R_386_TLS_GOTDESC
1510 || to_type == R_386_TLS_DESC_CALL)
1521 check = new_to_type != to_type && from_type == to_type;
1522 to_type
1467 unsigned int to_type = from_type; local
[all...]
H A Delf64-x86-64.c1607 unsigned int to_type = from_type;
1625 to_type = R_X86_64_TPOFF32;
1627 to_type = R_X86_64_GOTTPOFF;
1634 unsigned int new_to_type = to_type;
1642 if (to_type == R_X86_64_TLSGD
1643 || to_type == R_X86_64_GOTPC32_TLSDESC
1644 || to_type == R_X86_64_TLSDESC_CALL)
1653 check = new_to_type != to_type && from_type == to_type;
1654 to_type
1605 unsigned int to_type = from_type; local
[all...]
/haiku-buildtools/gcc/gcc/cp/
H A Dcall.c481 tree to_type; member in struct:conversion_info
665 r->u.conversion.to_type = to;
676 r->u.bad_conversion.to_type = to;
686 r->u.conversion.to_type = to;
696 r->u.conversion.to_type = to;
2042 tree argtype, to_type; local
2127 to_type = parmtype;
2133 to_type = argtype;
2143 reason = arg_conversion_rejection (first_arg, i, argtype, to_type);
2150 reason = bad_arg_conversion_rejection (first_arg, i, arg, to_type);
[all...]
H A Dsearch.c2253 tree to_type, tree parent_convs, tree other_convs)
2260 if (same_type_p (to_type, TREE_TYPE (probe)))
2292 if (same_type_p (to_type, TREE_TYPE (other)))
2247 check_hidden_convs(tree binfo, int virtual_depth, int virtualness, tree to_type, tree parent_convs, tree other_convs) argument
H A Dtree.c957 cp_build_reference_type (tree to_type, bool rval)
960 lvalue_ref = build_reference_type (to_type);
982 if (TYPE_STRUCTURAL_EQUALITY_P (to_type))
984 else if (TYPE_CANONICAL (to_type) != to_type)
986 = cp_build_reference_type (TYPE_CANONICAL (to_type), rval);
956 cp_build_reference_type(tree to_type, bool rval) argument
H A Dtypeck.c7879 tree to_type;
7885 to_type = build_ptrmemfunc_type (type);
7895 && !can_convert_arg (to_type, TREE_TYPE (pfn), pfn,
7900 to_type, pfn_type);
7906 TYPE_PTRMEMFUNC_OBJECT_TYPE (to_type),
7918 if (same_type_p (to_type, pfn_type))
7921 return build_reinterpret_cast (to_type, pfn,
7946 return build_ptrmemfunc1 (to_type, delta, npfn);
7953 return build_ptrmemfunc1 (to_type,
7966 return make_ptrmem_cst (to_type, f
7865 tree to_type; local
[all...]
/haiku-buildtools/gcc/gcc/config/msp430/
H A Dmsp430.c463 msp430_addr_space_convert (rtx op, tree from_type, tree to_type)
466 addr_space_t to_as = TYPE_ADDR_SPACE (TREE_TYPE (to_type));
458 msp430_addr_space_convert(rtx op, tree from_type, tree to_type) argument
/haiku-buildtools/gcc/gcc/config/rs6000/
H A Drs6000.c17052 rs6000_secondary_reload_simple_move (enum rs6000_reg_type to_type,
17067 && ((to_type == GPR_REG_TYPE && from_type == VSX_REG_TYPE)
17068 || (to_type == VSX_REG_TYPE && from_type == GPR_REG_TYPE)))
17072 && ((to_type == GPR_REG_TYPE && from_type == FPR_REG_TYPE)
17073 || (to_type == FPR_REG_TYPE && from_type == GPR_REG_TYPE)))
17077 && ((to_type == GPR_REG_TYPE && from_type == SPR_REG_TYPE)
17078 || (to_type == SPR_REG_TYPE && from_type == GPR_REG_TYPE)))
17090 rs6000_secondary_reload_direct_move (enum rs6000_reg_type to_type,
17108 if (to_type == VSX_REG_TYPE && from_type == GPR_REG_TYPE)
17117 else if (to_type
17025 rs6000_secondary_reload_simple_move(enum rs6000_reg_type to_type, enum rs6000_reg_type from_type, machine_mode mode) argument
17063 rs6000_secondary_reload_direct_move(enum rs6000_reg_type to_type, enum rs6000_reg_type from_type, machine_mode mode, secondary_reload_info *sri, bool altivec_p) argument
17168 rs6000_secondary_reload_move(enum rs6000_reg_type to_type, enum rs6000_reg_type from_type, machine_mode mode, secondary_reload_info *sri, bool altivec_p) argument
17242 enum rs6000_reg_type to_type = reg_class_to_reg_type[(int)rclass]; local
17897 enum rs6000_reg_type from_type, to_type; local
[all...]
/haiku-buildtools/gcc/gcc/go/
H A Dgo-gcc.cc774 Gcc_backend::pointer_type(Btype* to_type) argument
776 tree to_type_tree = to_type->get_tree();
942 Btype* to_type)
948 tree tt = to_type->get_tree();
941 set_placeholder_pointer_type(Btype* placeholder, Btype* to_type) argument
/haiku-buildtools/gcc/gcc/ada/gcc-interface/
H A Dtrans.c5374 Entity_Id from_type, to_type;
5390 to_type = Etype (gnat_node);
5393 if (to_type == from_type)
5398 && to_type == Packed_Array_Impl_Type (from_type))
5403 && to_type == Etype (from_type))
5356 Entity_Id from_type, to_type; local
/haiku-buildtools/gcc/gcc/c/
H A Dc-decl.c666 c_build_pointer_type (tree to_type)
668 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
669 : TYPE_ADDR_SPACE (to_type);
676 return build_pointer_type_for_mode (to_type, pointer_mode, false);
662 c_build_pointer_type(tree to_type) argument
/haiku-buildtools/gcc/gcc/config/m32c/
H A Dm32c.c2135 m32c_addr_space_convert (rtx op, tree from_type, tree to_type) argument
2138 addr_space_t to_as = TYPE_ADDR_SPACE (TREE_TYPE (to_type));

Completed in 434 milliseconds

12