mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 17:48:10 +02:00
rtasm: export sse_movmskps
This commit is contained in:
parent
3858f47994
commit
e1ad38ad8e
2 changed files with 10 additions and 0 deletions
|
|
@ -993,6 +993,15 @@ void sse_pmovmskb( struct x86_function *p,
|
|||
emit_modrm(p, dst, src);
|
||||
}
|
||||
|
||||
void sse_movmskps( struct x86_function *p,
|
||||
struct x86_reg dst,
|
||||
struct x86_reg src)
|
||||
{
|
||||
DUMP_RR( dst, src );
|
||||
emit_2ub(p, X86_TWOB, 0x50);
|
||||
emit_modrm(p, dst, src);
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SSE2 instructions
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -223,6 +223,7 @@ void sse_unpckhps( struct x86_function *p, struct x86_reg dst, struct x86_reg sr
|
|||
void sse_unpcklps( struct x86_function *p, struct x86_reg dst, struct x86_reg src );
|
||||
void sse_pmovmskb( struct x86_function *p, struct x86_reg dest, struct x86_reg src );
|
||||
void sse2_punpcklbw( struct x86_function *p, struct x86_reg dst, struct x86_reg src );
|
||||
void sse_movmskps( struct x86_function *p, struct x86_reg dst, struct x86_reg src);
|
||||
|
||||
void x86_add( struct x86_function *p, struct x86_reg dst, struct x86_reg src );
|
||||
void x86_and( struct x86_function *p, struct x86_reg dst, struct x86_reg src );
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue