HomeSort by relevance Sort by last modified time
    Searched refs:ARITH_ADD (Results 1 - 10 of 10) sorted by null

  /system/core/sh/
arith.h 18 #define ARITH_ADD 275
arith.y 71 %left ARITH_ADD ARITH_SUB
96 | expr ARITH_ADD expr { $$ = $1 + $3; }
112 | ARITH_ADD expr %prec ARITH_UNARYPLUS { $$ = $2; }
arith_lex.l 91 "+" { return(ARITH_ADD); }
init.c 67 #undef ARITH_ADD
68 #define ARITH_ADD 275
359 #undef ARITH_ADD
360 #define ARITH_ADD 275
651 #undef ARITH_ADD
652 #define ARITH_ADD 275
arith.c 73 ARITH_ADD = 275,
100 #define ARITH_ADD 275
401 "ARITH_LT", "ARITH_RSHIFT", "ARITH_LSHIFT", "ARITH_SUB", "ARITH_ADD",
    [all...]
arith_lex.c 887 { return(ARITH_ADD); }
    [all...]
  /external/qemu/tcg/arm/
tcg-target.c 285 ARITH_ADD = 0x4,
866 tcg_out_dat_reg(s, cond, ARITH_ADD,
894 tcg_out_dat_imm(s, cond, ARITH_ADD, TCG_REG_R14, TCG_REG_PC, 4);
997 tcg_out_dat_reg(s, COND_AL, ARITH_ADD, TCG_REG_R0, TCG_AREG0,
1007 tcg_out_dat_imm(s, COND_AL, ARITH_ADD, TCG_REG_R0, TCG_REG_R0,
    [all...]
  /external/qemu/tcg/i386/
tcg-target.c 247 #define OPC_ADD_GvEv (OPC_ARITH_GvEv | (ARITH_ADD << 3))
288 #define ARITH_ADD 0
658 if (!cf && (c == ARITH_ADD || c == ARITH_SUB) && (val == 1 || val == -1)) {
659 int is_inc = (c == ARITH_ADD) ^ (val < 0);
709 tgen_arithi(s, ARITH_ADD + P_REXW, reg, val, 0);
931 tgen_arithi(s, ARITH_ADD, args[0], 1, 0);
    [all...]
  /external/qemu/tcg/x86_64/
tcg-target.c 187 #define ARITH_ADD 0
414 if ((c == ARITH_ADD && val == 1) || (c == ARITH_SUB && val == -1)) {
417 } else if ((c == ARITH_ADD && val == -1) || (c == ARITH_SUB && val == 1)) {
437 if ((c == ARITH_ADD && val == 1) || (c == ARITH_SUB && val == -1)) {
440 } else if ((c == ARITH_ADD && val == -1) || (c == ARITH_SUB && val == 1)) {
463 tgen_arithi64(s, ARITH_ADD, reg, val);
1028 c = ARITH_ADD;
1050 c = ARITH_ADD;
    [all...]
  /external/qemu/tcg/sparc/
tcg-target.c 224 #define ARITH_ADD (INSN_OP(2) | INSN_OP3(0x00))
431 tcg_out_arithi(s, reg, reg, val, ARITH_ADD);
434 tcg_out_arith(s, reg, reg, TCG_REG_I5, ARITH_ADD);
781 tcg_out_arith(s, arg1, TCG_AREG0, arg1, ARITH_ADD);
882 tcg_out_arith(s, arg0, arg0, arg1, ARITH_ADD);
885 tcg_out_arith(s, arg0, addr_reg, arg1, ARITH_ADD);
993 tcg_out_arith(s, arg1, TCG_AREG0, arg1, ARITH_ADD);
    [all...]

Completed in 2425 milliseconds