Searched refs:Imm (Results 1 – 1 of 1) sorted by relevance
/openbmc/qemu/target/avr/ |
H A D | translate.c | 351 int Imm = (a->imm); in trans_ADIW() local 356 tcg_gen_addi_tl(R, Rd, Imm); /* R = Rd + Imm */ in trans_ADIW() 498 int Imm = (a->imm); in trans_SBIW() local 503 tcg_gen_subi_tl(R, Rd, Imm); /* R = Rd - Imm */ in trans_SBIW() 550 int Imm = (a->imm); in trans_ANDI() local 552 tcg_gen_andi_tl(Rd, Rd, Imm); /* Rd = Rd & Imm */ in trans_ANDI() 589 int Imm = (a->imm); in trans_ORI() local 591 tcg_gen_ori_tl(Rd, Rd, Imm); /* Rd = Rd | Imm */ in trans_ORI() 1135 int Imm = a->imm; in trans_CALL() local 1139 gen_goto_tb(ctx, 0, Imm); in trans_CALL() [all …]
|