diff options
author | Keith Whitwell <[email protected]> | 2008-04-18 18:30:41 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-04-18 18:32:37 +0100 |
commit | 363f7abf2000c1cf5993ae8f83ba81b2054bf6e0 (patch) | |
tree | c436b939fbf790ebfa465dba34a3dfa267bcd115 /src/gallium/auxiliary/rtasm/rtasm_x86sse.c | |
parent | c5f0158a9179463593d63b33cf3b5490167faac9 (diff) |
rtasm: add x86_imul
Diffstat (limited to 'src/gallium/auxiliary/rtasm/rtasm_x86sse.c')
-rw-r--r-- | src/gallium/auxiliary/rtasm/rtasm_x86sse.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/rtasm/rtasm_x86sse.c b/src/gallium/auxiliary/rtasm/rtasm_x86sse.c index 5c25fa155da..7f8cc23d15e 100644 --- a/src/gallium/auxiliary/rtasm/rtasm_x86sse.c +++ b/src/gallium/auxiliary/rtasm/rtasm_x86sse.c @@ -422,11 +422,20 @@ void x86_add( struct x86_function *p, void x86_mul( struct x86_function *p, struct x86_reg src ) { -// assert (src.file == file_REG32 && src.mod == mod_REG); emit_1ub(p, 0xf7); emit_modrm_noreg(p, 4, src ); } + +void x86_imul( struct x86_function *p, + struct x86_reg dst, + struct x86_reg src ) +{ + emit_2ub(p, X86_TWOB, 0xAF); + emit_modrm(p, dst, src); +} + + void x86_sub( struct x86_function *p, struct x86_reg dst, struct x86_reg src ) |