Home
last modified time | relevance | path

Searched refs:exp1 (Results 1 – 4 of 4) sorted by relevance

/toolchain/binutils/binutils-2.25/gas/config/
Dtc-s390.c858 s390_exp_compare (expressionS *exp1, expressionS *exp2) in s390_exp_compare() argument
860 if (exp1->X_op != exp2->X_op) in s390_exp_compare()
863 switch (exp1->X_op) in s390_exp_compare()
867 return exp1->X_add_number == exp2->X_add_number; in s390_exp_compare()
877 return (exp1->X_add_symbol == exp2->X_add_symbol) in s390_exp_compare()
878 && (exp1->X_add_number == exp2->X_add_number); in s390_exp_compare()
899 return (exp1->X_add_symbol == exp2->X_add_symbol) in s390_exp_compare()
900 && (exp1->X_op_symbol == exp2->X_op_symbol) in s390_exp_compare()
901 && (exp1->X_add_number == exp2->X_add_number); in s390_exp_compare()
Dtc-msp430.c496 expressionS exp1; in msp430_profiler() local
598 exp1.X_op = O_constant; in msp430_profiler()
599 exp1.X_add_number = abs_section_offset; in msp430_profiler()
604 exp1.X_op = O_symbol; in msp430_profiler()
605 exp1.X_add_symbol = symbol_temp_new_now (); in msp430_profiler()
606 exp1.X_add_number = 0; in msp430_profiler()
624 emit_expr (& exp1, 2); in msp430_profiler()
Dtc-xtensa.c2853 expressionS *exp1; in xg_instruction_matches_rule() local
2862 exp1 = &insn->tok[cond->op_num]; in xg_instruction_matches_rule()
2863 if (expr_is_const (exp1)) in xg_instruction_matches_rule()
2868 if (get_expr_const (exp1) != cond->op_data) in xg_instruction_matches_rule()
2872 if (get_expr_const (exp1) == cond->op_data) in xg_instruction_matches_rule()
2879 else if (expr_is_register (exp1)) in xg_instruction_matches_rule()
2884 if (get_expr_register (exp1) != cond->op_data) in xg_instruction_matches_rule()
2888 if (get_expr_register (exp1) == cond->op_data) in xg_instruction_matches_rule()
2902 exp1 = &insn->tok[cond->op_num]; in xg_instruction_matches_rule()
2908 if (!expr_is_equal (exp1, exp2)) in xg_instruction_matches_rule()
[all …]
/toolchain/binutils/binutils-2.25/ld/
Dld.texinfo6052 @item MAX(@var{exp1}, @var{exp2})
6053 Returns the maximum of @var{exp1} and @var{exp2}.
6056 @item MIN(@var{exp1}, @var{exp2})
6057 Returns the minimum of @var{exp1} and @var{exp2}.