Searched refs:tcg_out8 (Results 1 – 4 of 4) sorted by relevance
/external/qemu/tcg/i386/ |
D | tcg-target.c | 203 tcg_out8(s, 0x0f); in tcg_out_opc() 204 tcg_out8(s, opc); in tcg_out_opc() 210 tcg_out8(s, 0xc0 | (r << 3) | rm); in tcg_out_modrm() 219 tcg_out8(s, 0x05 | (r << 3)); in tcg_out_modrm_offset() 223 tcg_out8(s, 0x04 | (r << 3)); in tcg_out_modrm_offset() 224 tcg_out8(s, 0x24); in tcg_out_modrm_offset() 226 tcg_out8(s, 0x00 | (r << 3) | rm); in tcg_out_modrm_offset() 230 tcg_out8(s, 0x44 | (r << 3)); in tcg_out_modrm_offset() 231 tcg_out8(s, 0x24); in tcg_out_modrm_offset() 233 tcg_out8(s, 0x40 | (r << 3) | rm); in tcg_out_modrm_offset() [all …]
|
/external/qemu/tcg/x86_64/ |
D | tcg-target.c | 243 tcg_out8(s, rex | 0x40); in tcg_out_opc() 246 tcg_out8(s, 0x0f); in tcg_out_opc() 247 tcg_out8(s, opc & 0xff); in tcg_out_opc() 253 tcg_out8(s, 0xc0 | ((r & 7) << 3) | (rm & 7)); in tcg_out_modrm() 266 tcg_out8(s, 0x05 | ((r & 7) << 3)); in tcg_out_modrm_offset() 269 tcg_out8(s, 0x04 | ((r & 7) << 3)); in tcg_out_modrm_offset() 270 tcg_out8(s, 0x25); /* sib */ in tcg_out_modrm_offset() 278 tcg_out8(s, 0x04 | ((r & 7) << 3)); in tcg_out_modrm_offset() 279 tcg_out8(s, 0x24); in tcg_out_modrm_offset() 281 tcg_out8(s, 0x00 | ((r & 7) << 3) | (rm & 7)); in tcg_out_modrm_offset() [all …]
|
/external/qemu/tcg/arm/ |
D | tcg-target.c | 273 tcg_out8(s, (cond << 4) | 0x0a); in tcg_out_b_noaddr() 277 tcg_out8(s, (cond << 4) | 0x0a); in tcg_out_b_noaddr()
|
/external/qemu/tcg/ |
D | tcg.c | 78 static inline void tcg_out8(TCGContext *s, uint8_t v) in tcg_out8() function
|