| /netbsd/src/tests/usr.bin/xlint/lint1/ |
| D | expr_precedence.c | 57 conditional_associativity(_Bool cond1, _Bool cond2, int a, int b, int c) in conditional_associativity() argument 60 var = cond1 ? cond2 ? a : b : c; in conditional_associativity() 61 var = cond1 ? (cond2 ? a : b) : c; in conditional_associativity() 64 var = cond1 ? cond2 ? a, b : (b, a) : c; in conditional_associativity() 66 var = cond1 ? a : cond2 ? b : c; in conditional_associativity() 71 var = cond1 ? a : (cond2 ? b : c); in conditional_associativity() 76 var = (cond1 ? a : cond2) ? b : c; in conditional_associativity()
|
| /netbsd/src/tests/libexec/ld.elf_so/ |
| D | h_thread_local_dtor.c | 37 static pthread_cond_t cond2 = PTHREAD_COND_INITIALIZER; variable 50 pthread_cond_wait(&cond2, &mutex); in thread_helper() 87 pthread_cond_signal(&cond2); in main()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/ |
| D | read-md.cc | 144 md_reader::join_c_conditions (const char *cond1, const char *cond2) in join_c_conditions() argument 150 return cond2; in join_c_conditions() 152 if (cond2 == 0 || cond2[0] == 0) in join_c_conditions() 155 if (strcmp (cond1, cond2) == 0) in join_c_conditions() 158 result = concat ("(", cond1, ") && (", cond2, ")", NULL); in join_c_conditions() 161 obstack_ptr_grow (&m_joined_conditions_obstack, cond2); in join_c_conditions()
|
| D | cfgcleanup.cc | 252 rtx set1, set2, cond1, cond2; in thread_jump() local 294 cond2 = XEXP (SET_SRC (set2), 0); in thread_jump() 300 code2 = GET_CODE (cond2); in thread_jump() 301 reversed_code2 = reversed_comparison_code (cond2, BB_END (b)); in thread_jump() 311 if (!rtx_equal_p (XEXP (cond1, 0), XEXP (cond2, 0)) in thread_jump() 312 || !rtx_equal_p (XEXP (cond1, 1), XEXP (cond2, 1))) in thread_jump() 354 && mentions_nonequal_regs (cond2, nonequal)) in thread_jump() 1622 rtx set1, set2, cond1, cond2; in outgoing_edges_match() local 1666 cond2 = XEXP (SET_SRC (set2), 0); in outgoing_edges_match() 1669 code2 = reversed_comparison_code (cond2, BB_END (bb2)); in outgoing_edges_match() [all …]
|
| D | sched-deps.cc | 622 conditions_mutex_p (const_rtx cond1, const_rtx cond2, bool rev1, bool rev2) in conditions_mutex_p() argument 625 && COMPARISON_P (cond2) in conditions_mutex_p() 628 ? reversed_comparison_code (cond2, NULL) in conditions_mutex_p() 629 : GET_CODE (cond2)) in conditions_mutex_p() 630 && rtx_equal_p (XEXP (cond1, 0), XEXP (cond2, 0)) in conditions_mutex_p() 631 && XEXP (cond1, 1) == XEXP (cond2, 1)) in conditions_mutex_p() 641 rtx cond1, cond2; in sched_insns_conditions_mutex_p() local 649 cond2 = sched_get_condition_with_rev (insn2, &rev2); in sched_insns_conditions_mutex_p() 650 if (cond1 && cond2 in sched_insns_conditions_mutex_p() 651 && conditions_mutex_p (cond1, cond2, rev1, rev2) in sched_insns_conditions_mutex_p() [all …]
|
| D | read-md.h | 206 const char *join_c_conditions (const char *cond1, const char *cond2);
|
| D | tree-ssa-phiopt.cc | 2400 gimple *cond2 = last_stmt (cond2_bb); in spaceship_replacement() local 2401 if (cond2 == NULL || gimple_code (cond2) != GIMPLE_COND) in spaceship_replacement() 2403 enum tree_code cmp2 = gimple_cond_code (cond2); in spaceship_replacement() 2404 tree lhs2 = gimple_cond_lhs (cond2); in spaceship_replacement() 2405 tree rhs2 = gimple_cond_rhs (cond2); in spaceship_replacement() 2457 gimple *cond3 = cond2; in spaceship_replacement()
|
| D | fold-const.cc | 2835 inverse_conditions_p (const_tree cond1, const_tree cond2) in inverse_conditions_p() argument 2838 && COMPARISON_CLASS_P (cond2) in inverse_conditions_p() 2841 HONOR_NANS (TREE_OPERAND (cond1, 0))) == TREE_CODE (cond2)) in inverse_conditions_p() 2843 TREE_OPERAND (cond2, 0), 0) in inverse_conditions_p() 2845 TREE_OPERAND (cond2, 1), 0)); in inverse_conditions_p()
|
| D | tree-ssa-sccvn.cc | 4420 gcond *cond2, tree lhs2, tree rhs2, bool *inverted_p) in cond_stmts_equal_p() argument 4423 enum tree_code code2 = gimple_cond_code (cond2); in cond_stmts_equal_p()
|
| D | gimplify.cc | 8210 tree cond2 = fold_build2_loc (loc, LE_EXPR, boolean_type_node, in gimplify_omp_affinity() local 8215 cond1, cond2, cond3); in gimplify_omp_affinity()
|
| D | ChangeLog-2019 | 29892 where cond2 is NE_EXPR. 34985 * cfgcleanup.c (thread_jump): Verify cond2 doesn't mention
|
| D | ChangeLog-2001 | 9554 check that insn doesn't modify cond2.
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/avr/ |
| D | avr.cc | 755 enum rtx_code cond2, rtx xval2, in avr_redundant_compare() argument 779 && (cond2 == GT || cond2 == GTU)) in avr_redundant_compare() 780 return avr_normalize_condition (cond2); in avr_redundant_compare() 786 && (cond2 == GE || cond2 == GEU)) in avr_redundant_compare() 787 return cond2; in avr_redundant_compare() 792 if ((cond2 == GE && ival2 == 1 + ival1) in avr_redundant_compare() 793 || (cond2 == GEU && uval2 == 1 + uval1)) in avr_redundant_compare() 794 return cond2; in avr_redundant_compare() 799 if ((cond2 == GT && ival2 == ival1 - 1) in avr_redundant_compare() 800 || (cond2 == GTU && uval2 == uval1 - 1)) in avr_redundant_compare() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/arm/ |
| D | arm.cc | 15816 enum rtx_code cond1, cond2; in arm_select_dominance_cc_mode() local 15824 || (arm_select_cc_mode (cond2 = GET_CODE (y), XEXP (y, 0), XEXP (y, 1)) in arm_select_dominance_cc_mode() 15836 if (cond1 != cond2 in arm_select_dominance_cc_mode() 15837 && !comparison_dominates_p (cond1, cond2) in arm_select_dominance_cc_mode() 15838 && (swapped = 1, !comparison_dominates_p (cond2, cond1))) in arm_select_dominance_cc_mode() 15842 std::swap (cond1, cond2); in arm_select_dominance_cc_mode() 15850 switch (cond2) in arm_select_dominance_cc_mode() 15864 switch (cond2) in arm_select_dominance_cc_mode() 15880 switch (cond2) in arm_select_dominance_cc_mode() 15896 switch (cond2) in arm_select_dominance_cc_mode() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/frv/ |
| D | frv.cc | 7001 frv_regstate_conflict_p (regstate_t cond1, regstate_t cond2) in frv_regstate_conflict_p() argument 7005 || (cond2 & REGSTATE_IF_EITHER) == 0) in frv_regstate_conflict_p() 7010 if ((cond1 & REGSTATE_CC_MASK) != (cond2 & REGSTATE_CC_MASK)) in frv_regstate_conflict_p() 7015 if ((cond1 & cond2 & REGSTATE_IF_EITHER) != 0) in frv_regstate_conflict_p()
|
| /netbsd/src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
| D | arc.c | 888 #define ARCSTAT_CONDSTAT(cond1, stat1, notstat1, cond2, stat2, notstat2, stat) \ argument 890 if (cond2) { \ 896 if (cond2) { \
|
| /netbsd/src/distrib/sets/lists/tests/ |
| D | mi | 5724 ./usr/tests/usr.bin/make/unit-tests/cond2.exp obsolete-… 5725 ./usr/tests/usr.bin/make/unit-tests/cond2.mk obsolete-…
|
| /netbsd/src/external/gpl3/gcc/dist/ |
| D | MD5SUMS | 12008 e588675f14c4bd6919f2de257b165dee gcc/testsuite/g++.dg/conversion/cond2.C 12631 82b611352fd26c7db573eb5226ef4366 gcc/testsuite/g++.dg/cpp0x/cond2.C 14643 682309935142019cb21a9df2c35d9a5c gcc/testsuite/g++.dg/cpp0x/rv-cond2.C 17925 9218246502a1a48c13f74d67b4b19c2d gcc/testsuite/g++.dg/eh/cond2.C 18082 8b10df5612f3344d4a62c8ca3d47436f gcc/testsuite/g++.dg/expr/cond2.C 18480 b619a632f099ce3dab4b1867824fb8ba gcc/testsuite/g++.dg/ext/cond2.C 22749 5067a4c6731aae0336243d6867599e99 gcc/testsuite/g++.dg/overload/cond2.C 22886 5b95db4d3d95193611271dcf7d869fe5 gcc/testsuite/g++.dg/parse/cond2.C 23993 cee015aea6aaf262f8a4bd6e5cba2962 gcc/testsuite/g++.dg/template/cond2.C 26599 aee46bcb7031162dcee9c8ebe1228c6f gcc/testsuite/g++.dg/warn/Wduplicated-cond2.C [all …]
|