diff options
author | Keith Whitwell <[email protected]> | 2008-10-03 13:50:34 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-10-03 13:50:34 +0100 |
commit | 6965532e14717f71a6f4353fb683c5070c6b7d7a (patch) | |
tree | 71391a467797a8d01c65898adb46924064569265 /src/gallium/auxiliary/rtasm/rtasm_x86sse.h | |
parent | 918a444913435bdee33214e25811875100f873b0 (diff) |
rtasm: add sse_movntps
Diffstat (limited to 'src/gallium/auxiliary/rtasm/rtasm_x86sse.h')
-rw-r--r-- | src/gallium/auxiliary/rtasm/rtasm_x86sse.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/rtasm/rtasm_x86sse.h b/src/gallium/auxiliary/rtasm/rtasm_x86sse.h index 2d7715f9654..af79f07dd39 100644 --- a/src/gallium/auxiliary/rtasm/rtasm_x86sse.h +++ b/src/gallium/auxiliary/rtasm/rtasm_x86sse.h @@ -189,6 +189,8 @@ void sse_prefetchnta( struct x86_function *p, struct x86_reg ptr); void sse_prefetch0( struct x86_function *p, struct x86_reg ptr); void sse_prefetch1( struct x86_function *p, struct x86_reg ptr); +void sse_movntps( struct x86_function *p, struct x86_reg dst, struct x86_reg src); + void sse_addps( struct x86_function *p, struct x86_reg dst, struct x86_reg src ); void sse_addss( struct x86_function *p, struct x86_reg dst, struct x86_reg src ); void sse_cvtps2pi( struct x86_function *p, struct x86_reg dst, struct x86_reg src ); |