Home
last modified time | relevance | path

Searched refs:cond (Results 51 – 75 of 327) sorted by relevance

12345678910>>...14

/dragonfly/contrib/gcc-8.0/gcc/
H A Dtree-ssa-loop-niter.c426 gimple *cond; in determine_value_range() local
436 cond = last_stmt (e->src); in determine_value_range()
437 c0 = gimple_cond_lhs (cond); in determine_value_range()
439 c1 = gimple_cond_rhs (cond); in determine_value_range()
713 gimple *cond; in bound_difference() local
772 cond = last_stmt (e->src); in bound_difference()
2150 cond = expand_simple_operations (cond); in tree_simplify_using_condition()
2165 tree cond, expanded, backup; in simplify_using_initial_conditions() local
2193 cond = invert_truthvalue (cond); in simplify_using_initial_conditions()
2708 gimple *cond; in loop_niter_by_eval() local
[all …]
H A Dtree-ssa-dom.c288 tree cond = build2 (EQ_EXPR, boolean_type_node, in derive_equivalences() local
291 tree inverted = invert_truthvalue (cond); in derive_equivalences()
292 record_conditions (&this->cond_equivalences, cond, inverted); in derive_equivalences()
318 tree cond = build2 (code, boolean_type_node, in derive_equivalences() local
321 tree inverted = invert_truthvalue (cond); in derive_equivalences()
323 std::swap (cond, inverted); in derive_equivalences()
324 record_conditions (&this->cond_equivalences, cond, inverted); in derive_equivalences()
366 tree cond = build2 (code, boolean_type_node, in derive_equivalences() local
369 tree inverted = invert_truthvalue (cond); in derive_equivalences()
371 std::swap (cond, inverted); in derive_equivalences()
[all …]
H A Dtree-ssa-uncprop.c173 tree cond = gimple_switch_index (switch_stmt); in associate_equivalences_with_edges() local
175 if (TREE_CODE (cond) == SSA_NAME in associate_equivalences_with_edges()
176 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (cond)) in associate_equivalences_with_edges()
206 tree x = fold_convert (TREE_TYPE (cond), CASE_LOW (node)); in associate_equivalences_with_edges()
213 equivalency->lhs = cond; in associate_equivalences_with_edges()
H A Dcprop.c1333 implicit_set_cond_p (const_rtx cond) in implicit_set_cond_p() argument
1339 if (GET_CODE (cond) != EQ && GET_CODE (cond) != NE) in implicit_set_cond_p()
1343 if (!cprop_reg_p (XEXP (cond, 0))) in implicit_set_cond_p()
1347 mode = GET_MODE (XEXP (cond, 0)); in implicit_set_cond_p()
1348 cst = XEXP (cond, 1); in implicit_set_cond_p()
1385 rtx cond, new_rtx; in find_implicit_sets() local
1398 cond = fis_get_condition (BB_END (bb)); in find_implicit_sets()
1402 if (! cond || ! implicit_set_cond_p (cond)) in find_implicit_sets()
1405 dest = GET_CODE (cond) == EQ in find_implicit_sets()
1431 new_rtx = gen_rtx_SET (XEXP (cond, 0), XEXP (cond, 1)); in find_implicit_sets()
[all …]
H A Dgimple-ssa-evrp.c139 if (gcond *cond = dyn_cast <gcond *> (stmt)) in before_dom_children() local
141 evrp_range_analyzer.vrp_visit_cond_stmt (cond, &taken_edge); in before_dom_children()
145 gimple_cond_make_true (cond); in before_dom_children()
147 gimple_cond_make_false (cond); in before_dom_children()
H A Dgimple-ssa-evrp-analyze.h52 void vrp_visit_cond_stmt (gcond *cond, edge *e) in vrp_visit_cond_stmt() argument
53 { return vr_values->vrp_visit_cond_stmt (cond, e); } in vrp_visit_cond_stmt()
H A Dtree-ssa-loop-manip.c998 tree cond = boolean_true_node, assum; in determine_exit_conditions() local
1041 cond = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, in determine_exit_conditions()
1043 cond); in determine_exit_conditions()
1056 cond = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, assum, cond); in determine_exit_conditions()
1060 cond = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, assum, cond); in determine_exit_conditions()
1062 cond = force_gimple_operand (unshare_expr (cond), &stmts, false, NULL_TREE); in determine_exit_conditions()
1068 if (!is_gimple_condexpr (cond)) in determine_exit_conditions()
1070 cond = force_gimple_operand (cond, &stmts, true, NULL_TREE); in determine_exit_conditions()
1074 *enter_cond = cond; in determine_exit_conditions()
/dragonfly/sys/platform/vkernel64/platform/
H A Dcothread.c92 pthread_cond_init(&cotd->cond, NULL); in cothread_create()
169 pthread_cond_signal(&cotd->cond); in cothread_signal()
179 pthread_cond_wait(&cotd->cond, &cotd->mutex); in cothread_wait()
/dragonfly/contrib/gcc-4.7/gcc/
H A Dcprop.c1304 implicit_set_cond_p (const_rtx cond) in implicit_set_cond_p() argument
1310 if (GET_CODE (cond) != EQ && GET_CODE (cond) != NE) in implicit_set_cond_p()
1314 if (! REG_P (XEXP (cond, 0)) in implicit_set_cond_p()
1315 || HARD_REGISTER_P (XEXP (cond, 0))) in implicit_set_cond_p()
1319 mode = GET_MODE (XEXP (cond, 0)); in implicit_set_cond_p()
1320 cst = XEXP (cond, 1); in implicit_set_cond_p()
1361 rtx cond, new_rtx; in find_implicit_sets() local
1378 if (! cond || ! implicit_set_cond_p (cond)) in find_implicit_sets()
1381 dest = GET_CODE (cond) == EQ in find_implicit_sets()
1408 XEXP (cond, 1)); in find_implicit_sets()
[all …]
H A Dtree-ssa-loop-manip.c706 tree cond = boolean_true_node, assum; in determine_exit_conditions() local
749 cond = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, in determine_exit_conditions()
751 cond); in determine_exit_conditions()
764 cond = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, assum, cond); in determine_exit_conditions()
768 cond = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, assum, cond); in determine_exit_conditions()
770 cond = force_gimple_operand (unshare_expr (cond), &stmts, false, NULL_TREE); in determine_exit_conditions()
776 if (!is_gimple_condexpr (cond)) in determine_exit_conditions()
778 cond = force_gimple_operand (cond, &stmts, true, NULL_TREE); in determine_exit_conditions()
782 *enter_cond = cond; in determine_exit_conditions()
H A Dtree-ssa-uncprop.c170 tree cond = gimple_switch_index (stmt); in associate_equivalences_with_edges() local
172 if (TREE_CODE (cond) == SSA_NAME in associate_equivalences_with_edges()
173 && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (cond)) in associate_equivalences_with_edges()
203 tree x = fold_convert (TREE_TYPE (cond), CASE_LOW (node)); in associate_equivalences_with_edges()
210 equivalency->lhs = cond; in associate_equivalences_with_edges()
/dragonfly/contrib/gcc-4.7/gcc/cp/
H A Dsemantics.c514 expr = cond; in finish_cond()
540 cond = *cond_p; in simplify_loop_decl_cond()
587 if (!cond) in maybe_convert_cond()
592 return cond; in maybe_convert_cond()
598 cond = convert_from_reference (cond); in maybe_convert_cond()
781 cond = maybe_convert_cond (cond); in finish_do_stmt()
1054 cond = perform_integral_promotions (cond); in finish_switch_cond()
1055 cond = maybe_cleanup_point_expr (cond); in finish_switch_cond()
4473 cond = build2 (swap_tree_comparison (TREE_CODE (cond)), in handle_omp_for_class_iterator()
4474 TREE_TYPE (cond), iter, TREE_OPERAND (cond, 0)); in handle_omp_for_class_iterator()
[all …]
H A Dcp-gimplify.c155 tree stmt, cond, then_, else_; in genericize_if_stmt() local
159 cond = IF_COND (stmt); in genericize_if_stmt()
168 if (integer_nonzerop (cond) && !TREE_SIDE_EFFECTS (else_)) in genericize_if_stmt()
170 else if (integer_zerop (cond) && !TREE_SIDE_EFFECTS (then_)) in genericize_if_stmt()
173 stmt = build3 (COND_EXPR, void_type_node, cond, then_, else_); in genericize_if_stmt()
187 gimplify_cp_loop (tree cond, tree body, tree incr, bool cond_is_first) in gimplify_cp_loop() argument
205 if (cond && integer_zerop (cond)) in gimplify_cp_loop()
226 if (cond && !integer_nonzerop (cond)) in gimplify_cp_loop()
228 if (cond != error_mark_node) in gimplify_cp_loop()
231 stmt = gimple_build_cond (NE_EXPR, cond, in gimplify_cp_loop()
[all …]
H A Dexcept.c382 build_must_not_throw_expr (tree body, tree cond) in build_must_not_throw_expr() argument
389 if (cond && !value_dependent_expression_p (cond)) in build_must_not_throw_expr()
391 cond = cxx_constant_value (cond); in build_must_not_throw_expr()
392 if (integer_zerop (cond)) in build_must_not_throw_expr()
394 else if (integer_onep (cond)) in build_must_not_throw_expr()
395 cond = NULL_TREE; in build_must_not_throw_expr()
398 return build2 (MUST_NOT_THROW_EXPR, type, body, cond); in build_must_not_throw_expr()
/dragonfly/contrib/gcc-8.0/gcc/cp/
H A Dexcept.c257 build_must_not_throw_expr (tree body, tree cond) in build_must_not_throw_expr() argument
264 if (!cond) in build_must_not_throw_expr()
269 if (!type_dependent_expression_p (cond)) in build_must_not_throw_expr()
270 conv = perform_implicit_conversion_flags (boolean_type_node, cond, in build_must_not_throw_expr()
274 cond = cxx_constant_value (inst); in build_must_not_throw_expr()
276 require_constant_expression (cond); in build_must_not_throw_expr()
277 if (integer_zerop (cond)) in build_must_not_throw_expr()
279 else if (integer_onep (cond)) in build_must_not_throw_expr()
280 cond = NULL_TREE; in build_must_not_throw_expr()
283 return build2 (MUST_NOT_THROW_EXPR, type, body, cond); in build_must_not_throw_expr()
/dragonfly/sys/vfs/hammer2/zlib/
H A Dhammer2_zlib_zutil.h130 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} argument
137 # define Assert(cond,msg) argument
/dragonfly/usr.sbin/makefs/hammer2/zlib/
H A Dhammer2_zlib_zutil.h130 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} argument
137 # define Assert(cond,msg) argument
/dragonfly/sbin/hammer2/zlib/
H A Dhammer2_zlib_zutil.h130 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} argument
137 # define Assert(cond,msg) argument
/dragonfly/libexec/rtld-elf/
H A Ddebug.h54 #define assert(cond) ((cond) ? (void) 0 : \ argument
/dragonfly/games/trek/
H A Dtorped.c137 if (Ship.cond != DOCKED) in torped()
234 if (Ship.shldup || Ship.cond == DOCKED) { in randcourse()
237 if (Ship.cond == DOCKED) in randcourse()
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/ext/pb_ds/detail/cc_hash_table_map_/
H A Dentry_list_fn_imps.hpp74 cond_dealtor_t cond(p_e); in get_entry() local
78 cond.set_no_action(); in get_entry()
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/ext/pb_ds/detail/cc_hash_table_map_/
H A Dentry_list_fn_imps.hpp74 cond_dealtor_t cond(p_e); in get_entry() local
78 cond.set_no_action(); in get_entry()
/dragonfly/contrib/bmake/
H A Dcond.c194 ToToken(bool cond) in ToToken() argument
196 return cond ? TOK_TRUE : TOK_FALSE; in ToToken()
981 CondEvalExpression(const char *cond, bool plain, in CondEvalExpression() argument
988 cpp_skip_hspace(&cond); in CondEvalExpression()
994 par.p = cond; in CondEvalExpression()
1001 Parse_Error(PARSE_FATAL, "Malformed conditional (%s)", cond); in CondEvalExpression()
1011 Cond_EvalCondition(const char *cond) in Cond_EvalCondition() argument
1013 return CondEvalExpression(cond, true, in Cond_EvalCondition()
/dragonfly/contrib/zlib-1.2/
H A Dzutil.h241 # define Assert(cond,msg) {if(!(cond)) z_error(msg);} argument
248 # define Assert(cond,msg) argument
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/ext/pb_ds/detail/list_update_map_/
H A Dinsert_fn_imps.hpp72 cond_dealtor_t cond(p_l); in allocate_new_entry() local
76 cond.set_no_action(); in allocate_new_entry()

12345678910>>...14