Home | History | Annotate | Download | only in gcc

Lines Matching refs:op1a

6550 and_comparisons_1 (tree type, enum tree_code code1, tree op1a, tree op1b,
6561 or_comparisons_1 (tree, enum tree_code code1, tree op1a, tree op1b,
6772 (OP1A CODE1 OP1B) and (OP2A CODE2 OP2B), respectively.
6779 and_comparisons_1 (tree type, enum tree_code code1, tree op1a, tree op1b,
6783 tree truth_type = truth_type_for (TREE_TYPE (op1a));
6786 if (operand_equal_p (op1a, op2a, 0)
6792 truth_type, op1a, op1b);
6798 if (operand_equal_p (op1a, op2b, 0)
6805 truth_type, op1a, op1b);
6813 if (TREE_CODE (op1a) == SSA_NAME
6819 gimple *stmt = SSA_NAME_DEF_STMT (op1a);
6824 return and_var_with_comparison (type, op1a, invert, code2, op2a,
6832 if (TREE_CODE (TREE_TYPE (op1a)) == BOOLEAN_TYPE)
6927 tree op1a, tree op1b,
6937 gimple_assign_set_rhs1 (stmt1, op1a);
6978 return build2 (code1, type, op1a, op1b);
7000 (OP1A CODE1 OP1B) and (OP2B CODE2 OP2B), respectively.
7008 enum tree_code code1, tree op1a, tree op1b,
7012 if (tree t = and_comparisons_1 (type, code1, op1a, op1b, code2, op2a, op2b,
7016 if (tree t = and_comparisons_1 (type, code2, op2a, op2b, code1, op1a, op1b,
7021 op1a, op1b, code2, op2a,
7226 (OP1A CODE1 OP1B) and (OP2A CODE2 OP2B), respectively.
7233 or_comparisons_1 (tree type, enum tree_code code1, tree op1a, tree op1b,
7237 tree truth_type = truth_type_for (TREE_TYPE (op1a));
7240 if (operand_equal_p (op1a, op2a, 0)
7246 truth_type, op1a, op1b);
7252 if (operand_equal_p (op1a, op2b, 0)
7259 truth_type, op1a, op1b);
7267 if (TREE_CODE (op1a) == SSA_NAME
7273 gimple *stmt = SSA_NAME_DEF_STMT (op1a);
7278 return or_var_with_comparison (type, op1a, invert, code2, op2a,
7286 if (TREE_CODE (TREE_TYPE (op1a)) == BOOLEAN_TYPE)
7352 (OP1A
7360 enum tree_code code1, tree op1a, tree op1b,
7364 if (tree t = or_comparisons_1 (type, code1, op1a, op1b, code2, op2a, op2b,
7368 if (tree t = or_comparisons_1 (type, code2, op2a, op2b, code1, op1a, op1b,
7373 op1a, op1b, code2, op2a,