Lines Matching defs:binary

101     struct { enum tree_code op;  tree opnd0, opnd1; } binary;
314 expr->ops.binary.op = subcode;
315 expr->ops.binary.opnd0 = gimple_assign_rhs1 (stmt);
316 expr->ops.binary.opnd1 = gimple_assign_rhs2 (stmt);
334 expr->ops.binary.op = gimple_cond_code (stmt);
335 expr->ops.binary.opnd0 = gimple_cond_lhs (stmt);
336 expr->ops.binary.opnd1 = gimple_cond_rhs (stmt);
406 expr->ops.binary.op = TREE_CODE (cond);
407 expr->ops.binary.opnd0 = TREE_OPERAND (cond, 0);
408 expr->ops.binary.opnd1 = TREE_OPERAND (cond, 1);
483 if (expr0->ops.binary.op != expr1->ops.binary.op)
486 if (operand_equal_p (expr0->ops.binary.opnd0,
487 expr1->ops.binary.opnd0, 0)
488 && operand_equal_p (expr0->ops.binary.opnd1,
489 expr1->ops.binary.opnd1, 0))
493 return (commutative_tree_code (expr0->ops.binary.op)
494 && operand_equal_p (expr0->ops.binary.opnd0,
495 expr1->ops.binary.opnd1, 0)
496 && operand_equal_p (expr0->ops.binary.opnd1,
497 expr1->ops.binary.opnd0, 0));
620 hstate.add_object (expr->ops.binary.op);
621 if (commutative_tree_code (expr->ops.binary.op))
622 inchash::add_expr_commutative (expr->ops.binary.opnd0,
623 expr->ops.binary.opnd1, hstate);
626 inchash::add_expr (expr->ops.binary.opnd0, hstate);
627 inchash::add_expr (expr->ops.binary.opnd1, hstate);
702 print_generic_expr (stream, element->expr.ops.binary.opnd0, 0);
703 fprintf (stream, " %s ", get_tree_code_name (element->expr.ops.binary.op));
704 print_generic_expr (stream, element->expr.ops.binary.opnd1, 0);
1459 cond->ops.binary.op = code;
1460 cond->ops.binary.opnd0 = op0;
1461 cond->ops.binary.opnd1 = op1;