Home
last modified time | relevance | path

Searched refs:srcreg (Results 1 – 7 of 7) sorted by relevance

/freebsd-12-stable/sys/contrib/x86emu/
Dx86emu.c1970 uint8_t *srcreg, destval, tmp; in x86emuOp_xchg_byte_RM_R() local
1974 srcreg = decode_rh_byte_register(emu); in x86emuOp_xchg_byte_RM_R()
1976 destval = *srcreg; in x86emuOp_xchg_byte_RM_R()
1977 *srcreg = tmp; in x86emuOp_xchg_byte_RM_R()
1988 uint32_t *srcreg, destval, tmp; in x86emuOp32_xchg_word_RM_R() local
1992 srcreg = decode_rh_long_register(emu); in x86emuOp32_xchg_word_RM_R()
1994 destval = *srcreg; in x86emuOp32_xchg_word_RM_R()
1995 *srcreg = tmp; in x86emuOp32_xchg_word_RM_R()
2002 uint16_t *srcreg, destval, tmp; in x86emuOp16_xchg_word_RM_R() local
2006 srcreg = decode_rh_word_register(emu); in x86emuOp16_xchg_word_RM_R()
[all …]
/freebsd-12-stable/contrib/gcc/config/i386/
Di386.c12908 rtx srcreg, destreg, countreg, srcexp, destexp; in ix86_expand_movmem() local
12946 srcreg = copy_to_mode_reg (Pmode, XEXP (src, 0)); in ix86_expand_movmem()
12947 if (srcreg != XEXP (src, 0)) in ix86_expand_movmem()
12948 src = replace_equiv_address_nv (src, srcreg); in ix86_expand_movmem()
12969 srcexp = gen_rtx_PLUS (Pmode, srcreg, countreg); in ix86_expand_movmem()
12970 emit_insn (gen_rep_mov (destreg, dst, srcreg, src, countreg, in ix86_expand_movmem()
12997 srcreg, offset); in ix86_expand_movmem()
13000 emit_insn (gen_strmov (destreg, dstmem, srcreg, srcmem)); in ix86_expand_movmem()
13013 srcexp = gen_rtx_PLUS (Pmode, destexp, srcreg); in ix86_expand_movmem()
13016 emit_insn (gen_rep_mov (destreg, dst, srcreg, src, in ix86_expand_movmem()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
DRISCVInstrInfoD.td75 // Operands for stores are in the order srcreg, base, offset rather than
DRISCVInstrInfoZfh.td76 // Operands for stores are in the order srcreg, base, offset rather than
DRISCVInstrInfoF.td116 // Operands for stores are in the order srcreg, base, offset rather than
DRISCVInstrInfo.td394 // Operands for stores are in the order srcreg, base, offset rather than
/freebsd-12-stable/contrib/gcc/
Dexpr.c2061 copy_blkmode_from_reg (rtx tgtblk, rtx srcreg, tree type) in copy_blkmode_from_reg() argument
2080 if (GET_MODE (srcreg) != BLKmode in copy_blkmode_from_reg()
2081 && GET_MODE_SIZE (GET_MODE (srcreg)) < UNITS_PER_WORD) in copy_blkmode_from_reg()
2082 srcreg = convert_to_mode (word_mode, srcreg, TYPE_UNSIGNED (type)); in copy_blkmode_from_reg()
2114 src = operand_subword_force (srcreg, xbitpos / BITS_PER_WORD, in copy_blkmode_from_reg()
2115 GET_MODE (srcreg)); in copy_blkmode_from_reg()