mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-04 03:50:31 +01:00
Add functions.
This commit is contained in:
parent
969c43108e
commit
0b9d7e477a
2 changed files with 7 additions and 0 deletions
|
|
@ -629,6 +629,12 @@ void x87_fistp( struct x86_function *p, struct x86_reg dst )
|
|||
emit_modrm_noreg(p, 3, dst);
|
||||
}
|
||||
|
||||
void x87_fild( struct x86_function *p, struct x86_reg arg )
|
||||
{
|
||||
emit_1ub(p, 0xdf);
|
||||
emit_modrm_noreg(p, 0, arg);
|
||||
}
|
||||
|
||||
void x87_fldz( struct x86_function *p )
|
||||
{
|
||||
emit_2ub(p, 0xd9, 0xee);
|
||||
|
|
|
|||
|
|
@ -197,6 +197,7 @@ void x87_fdiv( struct x86_function *p, struct x86_reg dst, struct x86_reg arg );
|
|||
void x87_fdivp( struct x86_function *p, struct x86_reg dst );
|
||||
void x87_fdivr( struct x86_function *p, struct x86_reg dst, struct x86_reg arg );
|
||||
void x87_fdivrp( struct x86_function *p, struct x86_reg dst );
|
||||
void x87_fild( struct x86_function *p, struct x86_reg arg );
|
||||
void x87_fist( struct x86_function *p, struct x86_reg dst );
|
||||
void x87_fistp( struct x86_function *p, struct x86_reg dst );
|
||||
void x87_fld( struct x86_function *p, struct x86_reg arg );
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue