Home
last modified time | relevance | path

Searched refs:tcg_out16 (Results 1 – 3 of 3) sorted by relevance

/openbmc/qemu/tcg/s390x/
H A Dtcg-target.c.inc639 tcg_out16(s, (op << 8) | (r1 << 4) | r2);
676 tcg_out16(s, (op & 0xff00) | (r1 << 4) | m3);
682 tcg_out16(s, op | (r1 << 4));
696 tcg_out16(s, (op & 0xff00) | (r1 << 4) | r3);
721 tcg_out16(s, (op & 0xff00) | ((v1 & 0xf) << 4));
722 tcg_out16(s, i2);
723 tcg_out16(s, (op & 0x00ff) | RXB(v1, 0, 0, 0) | (m3 << 12));
730 tcg_out16(s, (op & 0xff00) | ((v1 & 0xf) << 4));
731 tcg_out16(s, (i2 << 8) | (i3 & 0xff));
732 tcg_out16(s, (op & 0x00ff) | RXB(v1, 0, 0, 0) | (m4 << 12));
[all …]
/openbmc/qemu/tcg/i386/
H A Dtcg-target.c.inc2661 tcg_out16(s, a0);
2995 tcg_out16(s, a2);
/openbmc/qemu/tcg/
H A Dtcg.c269 static __attribute__((unused)) inline void tcg_out16(TCGContext *s, uint16_t v) in tcg_out16() function