| /netbsd-src/external/gpl2/texinfo/dist/makeinfo/ |
| H A D | node.c | 1411 char *tem1, *tem2; in validate_file() local 1439 tem1 = expand_node_name (prev); in validate_file() 1442 if (tem1 && tem2 && STREQ (tem1, tem2)) in validate_file() 1444 free (tem1); in validate_file() 1476 tem1 = expand_node_name (tags->prev); in validate_file() 1478 prev_equals_up = STREQ (tem1, tem2); in validate_file() 1479 free (tem1); in validate_file() 1497 tem1 = expand_node_name (temp_tag->next); in validate_file() 1499 if (STREQ (tem1, tem2)) in validate_file() 1501 free (tem1); in validate_file()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | gimple-isel.cc | 156 tree tem1 = gimple_build (&stmts, loc, BIT_NOT_EXPR, type, op0); in gimple_expand_vec_cond_expr() local 157 tree tem2 = gimple_build (&stmts, loc, BIT_AND_EXPR, type, op2, tem1); in gimple_expand_vec_cond_expr()
|
| H A D | tree-ssa-reassoc.cc | 3105 tree tem1, tem2, mask; in optimize_range_tests_diff() local 3107 tem1 = fold_binary (MINUS_EXPR, type, highi, lowi); in optimize_range_tests_diff() 3108 if (tem1 == NULL_TREE || TREE_CODE (tem1) != INTEGER_CST) in optimize_range_tests_diff() 3111 if (!tree_int_cst_equal (tem1, tem2)) in optimize_range_tests_diff() 3114 tem1 = fold_binary (MINUS_EXPR, type, lowj, lowi); in optimize_range_tests_diff() 3115 if (tem1 == NULL_TREE || TREE_CODE (tem1) != INTEGER_CST) in optimize_range_tests_diff() 3117 if (!integer_pow2p (tem1)) in optimize_range_tests_diff() 3130 tem1 = fold_convert (type, tem1); in optimize_range_tests_diff() 3133 mask = fold_build1 (BIT_NOT_EXPR, type, tem1); in optimize_range_tests_diff() 3134 tem1 = fold_build2 (MINUS_EXPR, type, in optimize_range_tests_diff() [all …]
|
| H A D | tree-ssa-sccvn.cc | 809 vn_reference_op_s tem1, tem2; in vn_reference_eq() local 840 memset (&tem1, 0, sizeof (tem1)); in vn_reference_eq() 841 tem1.op0 = TREE_OPERAND (vro1->op0, 0); in vn_reference_eq() 842 tem1.type = TREE_TYPE (tem1.op0); in vn_reference_eq() 843 tem1.opcode = TREE_CODE (tem1.op0); in vn_reference_eq() 844 vro1 = &tem1; in vn_reference_eq()
|
| H A D | vr-values.cc | 1006 value_range_equiv tem1; in extract_range_from_cond_expr() local 1007 const value_range_equiv *vr1 = &tem1; in extract_range_from_cond_expr() 1011 tem1.set (op1); in extract_range_from_cond_expr() 1013 tem1.set_varying (TREE_TYPE (op1)); in extract_range_from_cond_expr()
|
| H A D | reload1.cc | 8417 rtx tem1, tem2; in gen_reload() local 8554 else if ((tem1 = replaced_subreg (in), tem2 = replaced_subreg (out), in gen_reload() 8555 (REG_P (tem1) && REG_P (tem2))) in gen_reload() 8556 && REGNO (tem1) < FIRST_PSEUDO_REGISTER in gen_reload() 8559 REGNO_REG_CLASS (REGNO (tem1)), in gen_reload()
|
| H A D | tree-ssa-strlen.cc | 3990 tree tem1 = fold_const_aggregate_ref (arg1); in handle_builtin_memcmp() local 3991 if (tem1) in handle_builtin_memcmp() 3992 arg1 = tem1; in handle_builtin_memcmp()
|
| H A D | combine.cc | 11986 rtx tem, tem1; in simplify_comparison() local 12188 tem = XEXP (XEXP (op0, 0), 0), tem1 = XEXP (XEXP (op0, 0), 1); in simplify_comparison() 12190 tem = XEXP (op0, 0), tem1 = XEXP (op0, 1); in simplify_comparison() 12208 op1 = tem1; in simplify_comparison()
|
| H A D | match.pd | 2209 tem1 = (long) ptr1; 2211 tem3 = tem2 - tem1;
|
| H A D | ChangeLog-2008 | 22636 * config/cris/cris.c (cris_address_cost): For a PLUS, swap tem1 22637 and tem2 if tem1 is not a REG or MULT.
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/cris/ |
| H A D | cris.cc | 2048 rtx tem1 = XEXP (x, 0); in cris_address_cost() local 2053 if (!REG_P (tem1) && GET_CODE (tem1) != MULT) in cris_address_cost() 2054 tem1 = tem2, tem2 = XEXP (x, 0); in cris_address_cost() 2057 gcc_assert (REG_P (tem1) || GET_CODE (tem1) == MULT); in cris_address_cost() 2062 if ((GET_CODE (tem1) == MULT && cris_biap_index_p (tem1, false)) in cris_address_cost()
|
| /netbsd-src/external/gpl2/groff/dist/src/roff/troff/ |
| H A D | env.cpp | 1900 breakpoint *tem1 = tem; in choose_breakpoint() local 1902 delete tem1; in choose_breakpoint() 1941 breakpoint *tem1 = tem; in choose_breakpoint() local 1943 delete tem1; in choose_breakpoint() 2007 node *tem1 = tem; in hyphenate_line() local 2009 tem1->next = forward; in hyphenate_line() 2010 forward = tem1; in hyphenate_line() 2031 node *tem1 = forward; in hyphenate_line() local 2033 tem1->next = 0; in hyphenate_line() 2034 tem = tem1->add_self(tem, &sl); in hyphenate_line()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | tree-ssa-reassoc.c | 2940 tree tem1, tem2, mask; in optimize_range_tests_diff() local 2942 tem1 = fold_binary (MINUS_EXPR, type, highi, lowi); in optimize_range_tests_diff() 2943 if (tem1 == NULL_TREE || TREE_CODE (tem1) != INTEGER_CST) in optimize_range_tests_diff() 2946 if (!tree_int_cst_equal (tem1, tem2)) in optimize_range_tests_diff() 2949 tem1 = fold_binary (MINUS_EXPR, type, lowj, lowi); in optimize_range_tests_diff() 2950 if (tem1 == NULL_TREE || TREE_CODE (tem1) != INTEGER_CST) in optimize_range_tests_diff() 2952 if (!integer_pow2p (tem1)) in optimize_range_tests_diff() 2965 tem1 = fold_convert (type, tem1); in optimize_range_tests_diff() 2968 mask = fold_build1 (BIT_NOT_EXPR, type, tem1); in optimize_range_tests_diff() 2969 tem1 = fold_build2 (MINUS_EXPR, type, in optimize_range_tests_diff() [all …]
|
| H A D | tree-ssa-sccvn.c | 739 vn_reference_op_s tem1, tem2; in vn_reference_eq() local 770 memset (&tem1, 0, sizeof (tem1)); in vn_reference_eq() 771 tem1.op0 = TREE_OPERAND (vro1->op0, 0); in vn_reference_eq() 772 tem1.type = TREE_TYPE (tem1.op0); in vn_reference_eq() 773 tem1.opcode = TREE_CODE (tem1.op0); in vn_reference_eq() 774 vro1 = &tem1; in vn_reference_eq()
|
| H A D | vr-values.c | 955 value_range_equiv tem1; in extract_range_from_cond_expr() local 956 const value_range_equiv *vr1 = &tem1; in extract_range_from_cond_expr() 960 tem1.set (op1); in extract_range_from_cond_expr() 962 tem1.set_varying (TREE_TYPE (op1)); in extract_range_from_cond_expr()
|
| H A D | reload1.c | 8459 rtx tem1, tem2; in gen_reload() local 8596 else if ((tem1 = replaced_subreg (in), tem2 = replaced_subreg (out), in gen_reload() 8597 (REG_P (tem1) && REG_P (tem2))) in gen_reload() 8598 && REGNO (tem1) < FIRST_PSEUDO_REGISTER in gen_reload() 8601 REGNO_REG_CLASS (REGNO (tem1)), in gen_reload()
|
| H A D | tree-ssa-strlen.c | 4078 tree tem1 = fold_const_aggregate_ref (arg1); in handle_builtin_memcmp() local 4079 if (tem1) in handle_builtin_memcmp() 4080 arg1 = tem1; in handle_builtin_memcmp()
|
| H A D | combine.c | 12091 rtx tem, tem1; in simplify_comparison() local 12294 tem = XEXP (XEXP (op0, 0), 0), tem1 = XEXP (XEXP (op0, 0), 1); in simplify_comparison() 12296 tem = XEXP (op0, 0), tem1 = XEXP (op0, 1); in simplify_comparison() 12314 op1 = tem1; in simplify_comparison()
|
| H A D | match.pd | 1808 tem1 = (long) ptr1; 1810 tem3 = tem2 - tem1;
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/cris/ |
| H A D | cris.c | 2247 rtx tem1 = XEXP (x, 0); in cris_address_cost() local 2252 if (!REG_P (tem1) && GET_CODE (tem1) != MULT) in cris_address_cost() 2253 tem1 = tem2, tem2 = XEXP (x, 0); in cris_address_cost() 2256 gcc_assert (REG_P (tem1) || GET_CODE (tem1) == MULT); in cris_address_cost() 2261 if ((GET_CODE (tem1) == MULT && cris_biap_index_p (tem1, false)) in cris_address_cost()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/i386/ |
| H A D | sse.md | 13318 rtx mask, tem1, tem2; 13323 tem1 = gen_reg_rtx (QImode); 13324 emit_insn (gen_kandqi (tem1, operands[1], mask)); 13339 emit_insn (gen_kiorqi (operands[0], tem1, tem2));
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/i386/ |
| H A D | sse.md | 17294 rtx mask, tem1, tem2; 17299 tem1 = gen_reg_rtx (QImode); 17300 emit_insn (gen_kandqi (tem1, operands[1], mask)); 17315 emit_insn (gen_kiorqi (operands[0], tem1, tem2));
|
| /netbsd-src/external/gpl2/texinfo/dist/ |
| H A D | ChangeLog | 4346 * makeinfo/node.c (validate_file): ensure tem1 && tem2 before
|