added codegen'ed choosers
This commit is contained in:
@@ -712,6 +712,15 @@ do { \
|
|||||||
|
|
||||||
#define DISPATCH_ATTR1F( ATTR, S ) DISPATCH_ATTRFV( ATTR, 1, &(S) )
|
#define DISPATCH_ATTR1F( ATTR, S ) DISPATCH_ATTRFV( ATTR, 1, &(S) )
|
||||||
|
|
||||||
|
#ifdef USE_X86_ASM
|
||||||
|
/* Naughty cheat:
|
||||||
|
*/
|
||||||
|
#define DISPATCH_ATTR2F( ATTR, S,T ) DISPATCH_ATTRFV( ATTR, 2, &(S) )
|
||||||
|
#define DISPATCH_ATTR3F( ATTR, S,T,R ) DISPATCH_ATTRFV( ATTR, 3, &(S) )
|
||||||
|
#define DISPATCH_ATTR4F( ATTR, S,T,R,Q ) DISPATCH_ATTRFV( ATTR, 4, &(S) )
|
||||||
|
#else
|
||||||
|
/* Safe:
|
||||||
|
*/
|
||||||
#define DISPATCH_ATTR2F( ATTR, S,T ) \
|
#define DISPATCH_ATTR2F( ATTR, S,T ) \
|
||||||
do { \
|
do { \
|
||||||
GLfloat v[2]; \
|
GLfloat v[2]; \
|
||||||
@@ -730,6 +739,7 @@ do { \
|
|||||||
v[0] = S; v[1] = T; v[2] = R; v[3] = Q; \
|
v[0] = S; v[1] = T; v[2] = R; v[3] = Q; \
|
||||||
DISPATCH_ATTR4FV( ATTR, v ); \
|
DISPATCH_ATTR4FV( ATTR, v ); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
static void enum_error( void )
|
static void enum_error( void )
|
||||||
|
@@ -883,6 +883,8 @@ void _tnl_vtx_init( GLcontext *ctx )
|
|||||||
choose[ERROR_ATTRIB][2] = error_attrib;
|
choose[ERROR_ATTRIB][2] = error_attrib;
|
||||||
choose[ERROR_ATTRIB][3] = error_attrib;
|
choose[ERROR_ATTRIB][3] = error_attrib;
|
||||||
|
|
||||||
|
_tnl_x86choosers(choose, do_choose); /* x86 INIT_CHOOSERS */
|
||||||
|
|
||||||
_tnl_generic_attr_table_init( generic_attr_func );
|
_tnl_generic_attr_table_init( generic_attr_func );
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -901,7 +903,7 @@ void _tnl_vtx_init( GLcontext *ctx )
|
|||||||
_tnl_current_init( ctx );
|
_tnl_current_init( ctx );
|
||||||
_tnl_exec_vtxfmt_init( ctx );
|
_tnl_exec_vtxfmt_init( ctx );
|
||||||
_tnl_generic_exec_vtxfmt_init( ctx );
|
_tnl_generic_exec_vtxfmt_init( ctx );
|
||||||
_tnl_x86_exec_vtxfmt_init( ctx ); /* [dBorca] x86 DISPATCH_ATTRFV */
|
_tnl_x86_exec_vtxfmt_init( ctx ); /* x86 DISPATCH_ATTRFV */
|
||||||
|
|
||||||
_mesa_install_exec_vtxfmt( ctx, &tnl->exec_vtxfmt );
|
_mesa_install_exec_vtxfmt( ctx, &tnl->exec_vtxfmt );
|
||||||
|
|
||||||
|
@@ -80,6 +80,10 @@ extern void _tnl_InitX86Codegen( struct _tnl_dynfn_generators *gen );
|
|||||||
|
|
||||||
extern void _tnl_x86_exec_vtxfmt_init( GLcontext *ctx );
|
extern void _tnl_x86_exec_vtxfmt_init( GLcontext *ctx );
|
||||||
|
|
||||||
|
extern void _tnl_x86choosers( attrfv_func (*choose)[4],
|
||||||
|
attrfv_func (*do_choose)( GLuint attr,
|
||||||
|
GLuint sz ));
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@@ -151,6 +151,15 @@ do { \
|
|||||||
|
|
||||||
#define DISPATCH_ATTR1F( ATTR, S ) DISPATCH_ATTRFV( ATTR, 1, &(S) )
|
#define DISPATCH_ATTR1F( ATTR, S ) DISPATCH_ATTRFV( ATTR, 1, &(S) )
|
||||||
|
|
||||||
|
#ifdef USE_X86_ASM
|
||||||
|
/* Naughty cheat:
|
||||||
|
*/
|
||||||
|
#define DISPATCH_ATTR2F( ATTR, S,T ) DISPATCH_ATTRFV( ATTR, 2, &(S) )
|
||||||
|
#define DISPATCH_ATTR3F( ATTR, S,T,R ) DISPATCH_ATTRFV( ATTR, 3, &(S) )
|
||||||
|
#define DISPATCH_ATTR4F( ATTR, S,T,R,Q ) DISPATCH_ATTRFV( ATTR, 4, &(S) )
|
||||||
|
#else
|
||||||
|
/* Safe:
|
||||||
|
*/
|
||||||
#define DISPATCH_ATTR2F( ATTR, S,T ) \
|
#define DISPATCH_ATTR2F( ATTR, S,T ) \
|
||||||
do { \
|
do { \
|
||||||
GLfloat v[2]; \
|
GLfloat v[2]; \
|
||||||
@@ -169,6 +178,7 @@ do { \
|
|||||||
v[0] = S; v[1] = T; v[2] = R; v[3] = Q; \
|
v[0] = S; v[1] = T; v[2] = R; v[3] = Q; \
|
||||||
DISPATCH_ATTR4FV( ATTR, v ); \
|
DISPATCH_ATTR4FV( ATTR, v ); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
static void GLAPIENTRY _tnl_Vertex2f( GLfloat x, GLfloat y )
|
static void GLAPIENTRY _tnl_Vertex2f( GLfloat x, GLfloat y )
|
||||||
@@ -408,8 +418,8 @@ static void GLAPIENTRY _tnl_VertexAttrib4fvNV( GLuint index,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Install the generic versions of the 2nd level dispatch functions.
|
/* Install the generic versions of the 2nd level dispatch
|
||||||
* [dBorca] Some of these have a codegen alternative.
|
* functions. Some of these have a codegen alternative.
|
||||||
*/
|
*/
|
||||||
void _tnl_generic_exec_vtxfmt_init( GLcontext *ctx )
|
void _tnl_generic_exec_vtxfmt_init( GLcontext *ctx )
|
||||||
{
|
{
|
||||||
|
@@ -28,6 +28,7 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||||||
/*
|
/*
|
||||||
* Authors:
|
* Authors:
|
||||||
* Keith Whitwell <keith@tungstengraphics.com>
|
* Keith Whitwell <keith@tungstengraphics.com>
|
||||||
|
* Daniel Borca <dborca@yahoo.com>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
@@ -66,6 +67,8 @@ EXTERN( _tnl_x86_dispatch_multitexcoordfv );
|
|||||||
EXTERN( _tnl_x86_dispatch_vertexattribf );
|
EXTERN( _tnl_x86_dispatch_vertexattribf );
|
||||||
EXTERN( _tnl_x86_dispatch_vertexattribfv );
|
EXTERN( _tnl_x86_dispatch_vertexattribfv );
|
||||||
|
|
||||||
|
EXTERN( _tnl_x86_choose_fv );
|
||||||
|
|
||||||
|
|
||||||
static void notify( void )
|
static void notify( void )
|
||||||
{
|
{
|
||||||
@@ -77,7 +80,7 @@ static void notify( void )
|
|||||||
|
|
||||||
|
|
||||||
#define DFN( FUNC, CACHE, KEY ) \
|
#define DFN( FUNC, CACHE, KEY ) \
|
||||||
struct _tnl_dynfn *dfn = MALLOC_STRUCT( _tnl_dynfn ); \
|
struct _tnl_dynfn *dfn = MALLOC_STRUCT( _tnl_dynfn );\
|
||||||
char *start = (char *)&FUNC; \
|
char *start = (char *)&FUNC; \
|
||||||
char *end = (char *)&FUNC##_end; \
|
char *end = (char *)&FUNC##_end; \
|
||||||
int offset = 0; \
|
int offset = 0; \
|
||||||
@@ -254,14 +257,17 @@ void _tnl_InitX86Codegen( struct _tnl_dynfn_generators *gen )
|
|||||||
gen->Attribute[3] = makeX86Attribute4fv;
|
gen->Attribute[3] = makeX86Attribute4fv;
|
||||||
}
|
}
|
||||||
|
|
||||||
void _do_choose( void )
|
|
||||||
|
static attrfv_func
|
||||||
|
_do_choose( GLuint attr, GLuint sz )
|
||||||
{
|
{
|
||||||
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* [dBorca] I purposely avoided one single macro, since they might need to
|
/* I purposely avoided one single macro, since they might need to be
|
||||||
* be handled in different ways. Ohwell, once things get much clearer, they
|
* handled in different ways. Ohwell, once things get much clearer,
|
||||||
* could collapse...
|
* they could collapse...
|
||||||
*/
|
*/
|
||||||
#define MAKE_DISPATCH_ATTR(FUNC, SIZE, TYPE, ATTR) \
|
#define MAKE_DISPATCH_ATTR(FUNC, SIZE, TYPE, ATTR) \
|
||||||
do { \
|
do { \
|
||||||
@@ -301,7 +307,8 @@ do { \
|
|||||||
vfmt->FUNC##SIZE##TYPE##NV = code; \
|
vfmt->FUNC##SIZE##TYPE##NV = code; \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
/* [dBorca] Install the codegen'ed versions of the 2nd level dispatch
|
|
||||||
|
/* Install the codegen'ed versions of the 2nd level dispatch
|
||||||
* functions. We should keep a list and free them in the end...
|
* functions. We should keep a list and free them in the end...
|
||||||
*/
|
*/
|
||||||
void _tnl_x86_exec_vtxfmt_init( GLcontext *ctx )
|
void _tnl_x86_exec_vtxfmt_init( GLcontext *ctx )
|
||||||
@@ -312,21 +319,70 @@ void _tnl_x86_exec_vtxfmt_init( GLcontext *ctx )
|
|||||||
MAKE_DISPATCH_ATTR(Color,3,fv, _TNL_ATTRIB_COLOR0);
|
MAKE_DISPATCH_ATTR(Color,3,fv, _TNL_ATTRIB_COLOR0);
|
||||||
MAKE_DISPATCH_ATTR(Color,4,f, _TNL_ATTRIB_COLOR0);
|
MAKE_DISPATCH_ATTR(Color,4,f, _TNL_ATTRIB_COLOR0);
|
||||||
MAKE_DISPATCH_ATTR(Color,4,fv, _TNL_ATTRIB_COLOR0);
|
MAKE_DISPATCH_ATTR(Color,4,fv, _TNL_ATTRIB_COLOR0);
|
||||||
|
/* vfmt->FogCoordfEXT = _tnl_FogCoordfEXT;
|
||||||
|
vfmt->FogCoordfvEXT = _tnl_FogCoordfvEXT;*/
|
||||||
MAKE_DISPATCH_ATTR(Normal,3,f, _TNL_ATTRIB_NORMAL);
|
MAKE_DISPATCH_ATTR(Normal,3,f, _TNL_ATTRIB_NORMAL);
|
||||||
MAKE_DISPATCH_ATTR(Normal,3,fv, _TNL_ATTRIB_NORMAL);
|
MAKE_DISPATCH_ATTR(Normal,3,fv, _TNL_ATTRIB_NORMAL);
|
||||||
|
/* vfmt->SecondaryColor3fEXT = _tnl_SecondaryColor3fEXT;
|
||||||
|
vfmt->SecondaryColor3fvEXT = _tnl_SecondaryColor3fvEXT; */
|
||||||
|
MAKE_DISPATCH_ATTR(TexCoord,1,f, _TNL_ATTRIB_TEX0);
|
||||||
|
MAKE_DISPATCH_ATTR(TexCoord,1,fv, _TNL_ATTRIB_TEX0);
|
||||||
MAKE_DISPATCH_ATTR(TexCoord,2,f, _TNL_ATTRIB_TEX0);
|
MAKE_DISPATCH_ATTR(TexCoord,2,f, _TNL_ATTRIB_TEX0);
|
||||||
MAKE_DISPATCH_ATTR(TexCoord,2,fv, _TNL_ATTRIB_TEX0);
|
MAKE_DISPATCH_ATTR(TexCoord,2,fv, _TNL_ATTRIB_TEX0);
|
||||||
|
MAKE_DISPATCH_ATTR(TexCoord,3,f, _TNL_ATTRIB_TEX0);
|
||||||
|
MAKE_DISPATCH_ATTR(TexCoord,3,fv, _TNL_ATTRIB_TEX0);
|
||||||
|
MAKE_DISPATCH_ATTR(TexCoord,4,f, _TNL_ATTRIB_TEX0);
|
||||||
|
MAKE_DISPATCH_ATTR(TexCoord,4,fv, _TNL_ATTRIB_TEX0);
|
||||||
|
MAKE_DISPATCH_ATTR(Vertex,2,f, _TNL_ATTRIB_POS);
|
||||||
|
MAKE_DISPATCH_ATTR(Vertex,2,fv, _TNL_ATTRIB_POS);
|
||||||
MAKE_DISPATCH_ATTR(Vertex,3,f, _TNL_ATTRIB_POS);
|
MAKE_DISPATCH_ATTR(Vertex,3,f, _TNL_ATTRIB_POS);
|
||||||
MAKE_DISPATCH_ATTR(Vertex,3,fv, _TNL_ATTRIB_POS);
|
MAKE_DISPATCH_ATTR(Vertex,3,fv, _TNL_ATTRIB_POS);
|
||||||
/* just add more */
|
MAKE_DISPATCH_ATTR(Vertex,4,f, _TNL_ATTRIB_POS);
|
||||||
|
MAKE_DISPATCH_ATTR(Vertex,4,fv, _TNL_ATTRIB_POS);
|
||||||
|
|
||||||
|
MAKE_DISPATCH_MULTITEXCOORD(MultiTexCoord,1,f, 0);
|
||||||
|
MAKE_DISPATCH_MULTITEXCOORD(MultiTexCoord,1,fv, 0);
|
||||||
MAKE_DISPATCH_MULTITEXCOORD(MultiTexCoord,2,f, 0);
|
MAKE_DISPATCH_MULTITEXCOORD(MultiTexCoord,2,f, 0);
|
||||||
MAKE_DISPATCH_MULTITEXCOORD(MultiTexCoord,2,fv, 0);
|
MAKE_DISPATCH_MULTITEXCOORD(MultiTexCoord,2,fv, 0);
|
||||||
/* just add more */
|
MAKE_DISPATCH_MULTITEXCOORD(MultiTexCoord,3,f, 0);
|
||||||
|
MAKE_DISPATCH_MULTITEXCOORD(MultiTexCoord,3,fv, 0);
|
||||||
|
MAKE_DISPATCH_MULTITEXCOORD(MultiTexCoord,4,f, 0);
|
||||||
|
MAKE_DISPATCH_MULTITEXCOORD(MultiTexCoord,4,fv, 0);
|
||||||
|
|
||||||
|
MAKE_DISPATCH_VERTEXATTRIB(VertexAttrib,1,f, 0);
|
||||||
|
MAKE_DISPATCH_VERTEXATTRIB(VertexAttrib,1,fv, 0);
|
||||||
MAKE_DISPATCH_VERTEXATTRIB(VertexAttrib,2,f, 0);
|
MAKE_DISPATCH_VERTEXATTRIB(VertexAttrib,2,f, 0);
|
||||||
MAKE_DISPATCH_VERTEXATTRIB(VertexAttrib,2,fv, 0);
|
MAKE_DISPATCH_VERTEXATTRIB(VertexAttrib,2,fv, 0);
|
||||||
/* just add more */
|
MAKE_DISPATCH_VERTEXATTRIB(VertexAttrib,3,f, 0);
|
||||||
|
MAKE_DISPATCH_VERTEXATTRIB(VertexAttrib,3,fv, 0);
|
||||||
|
MAKE_DISPATCH_VERTEXATTRIB(VertexAttrib,4,f, 0);
|
||||||
|
MAKE_DISPATCH_VERTEXATTRIB(VertexAttrib,4,fv, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Install the codegen'ed choosers.
|
||||||
|
* We should keep a list and free them in the end...
|
||||||
|
*/
|
||||||
|
void _tnl_x86choosers( attrfv_func (*choose)[4],
|
||||||
|
attrfv_func (*do_choose)( GLuint attr,
|
||||||
|
GLuint sz ))
|
||||||
|
{
|
||||||
|
int attr, size;
|
||||||
|
|
||||||
|
for (attr = 0; attr < _TNL_MAX_ATTR_CODEGEN; attr++) {
|
||||||
|
for (size = 0; size < 4; size++) {
|
||||||
|
char *code;
|
||||||
|
char *start = (char *)&_tnl_x86_choose_fv;
|
||||||
|
char *end = (char *)&_tnl_x86_choose_fv_end;
|
||||||
|
int offset = 0;
|
||||||
|
code = ALIGN_MALLOC( end - start, 16 );
|
||||||
|
memcpy (code, start, end - start);
|
||||||
|
FIXUP(code, 0, 0, attr);
|
||||||
|
FIXUP(code, 0, 1, size + 1);
|
||||||
|
FIXUPREL(code, 0, 2, do_choose);
|
||||||
|
choose[attr][size] = code;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
@@ -336,9 +392,19 @@ void _tnl_InitX86Codegen( struct _tnl_dynfn_generators *gen )
|
|||||||
(void) gen;
|
(void) gen;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void _tnl_x86_exec_vtxfmt_init( GLcontext *ctx )
|
void _tnl_x86_exec_vtxfmt_init( GLcontext *ctx )
|
||||||
{
|
{
|
||||||
(void) ctx;
|
(void) ctx;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void _tnl_x86choosers( attrfv_func (*choose)[4],
|
||||||
|
attrfv_func (*do_choose)( GLuint attr,
|
||||||
|
GLuint sz ))
|
||||||
|
{
|
||||||
|
(void) choose;
|
||||||
|
(void) do_choose;
|
||||||
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@@ -36,16 +36,12 @@ USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||||||
.globl x; \
|
.globl x; \
|
||||||
x:
|
x:
|
||||||
|
|
||||||
#define EXTRN( x ) x
|
|
||||||
|
|
||||||
#else /* defined(__DJGPP__) */
|
#else /* defined(__DJGPP__) */
|
||||||
|
|
||||||
#define GLOBL( x ) \
|
#define GLOBL( x ) \
|
||||||
.globl _##x; \
|
.globl _##x; \
|
||||||
_##x:
|
_##x:
|
||||||
|
|
||||||
#define EXTRN( x ) _##x
|
|
||||||
|
|
||||||
#endif /* defined(__DJGPP__) */
|
#endif /* defined(__DJGPP__) */
|
||||||
|
|
||||||
.data
|
.data
|
||||||
@@ -63,6 +59,11 @@ _##x:
|
|||||||
// [dBorca] TODO
|
// [dBorca] TODO
|
||||||
// Unfold functions for each vertex size?
|
// Unfold functions for each vertex size?
|
||||||
// Build super-specialized MMX/SSE versions?
|
// Build super-specialized MMX/SSE versions?
|
||||||
|
// STDCALL woes (HAVE_NONSTANDARD_GLAPIENTRY):
|
||||||
|
// need separate routine for the non "fv" case,
|
||||||
|
// to clean up the stack (I guess we could codegen
|
||||||
|
// 'ret nn' insn)! Also we need to call notify, then
|
||||||
|
// return, instead of jump!
|
||||||
|
|
||||||
GLOBL ( _tnl_x86_Vertex1fv )
|
GLOBL ( _tnl_x86_Vertex1fv )
|
||||||
movl 4(%esp), %ecx
|
movl 4(%esp), %ecx
|
||||||
@@ -226,27 +227,22 @@ GLOBL ( _tnl_x86_Attribute4fv_end )
|
|||||||
// Must generate all of these ahead of first usage. Generate at
|
// Must generate all of these ahead of first usage. Generate at
|
||||||
// compile-time?
|
// compile-time?
|
||||||
|
|
||||||
// NOT CURRENTLY USED
|
|
||||||
|
|
||||||
|
|
||||||
GLOBL( _tnl_x86_choose_fv)
|
GLOBL( _tnl_x86_choose_fv)
|
||||||
subl $12, %esp // gcc does 16 byte alignment of stack frames?
|
subl $12, %esp // gcc does 16 byte alignment of stack frames?
|
||||||
movl $SUBST(0), (%esp) // arg 0 - attrib
|
movl $SUBST(0), (%esp) // arg 0 - attrib
|
||||||
movl $SUBST(1), 4(%esp) // arg 1 - N
|
movl $SUBST(1), 4(%esp) // arg 1 - N
|
||||||
call EXTRN(_do_choose) // new function returned in %eax
|
.byte 0xe8 // call ...
|
||||||
|
.long SUBST(2) // ... do_choose
|
||||||
add $12, %esp // tear down stack frame
|
add $12, %esp // tear down stack frame
|
||||||
jmp *%eax // jump to new func
|
jmp *%eax // jump to new func
|
||||||
GLOBL ( _tnl_x86_choosefv_end )
|
GLOBL ( _tnl_x86_choose_fv_end )
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// FIRST LEVEL FUNCTIONS -- these are plugged directly into GL dispatch.
|
// FIRST LEVEL FUNCTIONS -- these are plugged directly into GL dispatch.
|
||||||
|
|
||||||
|
|
||||||
// NOT CURRENTLY USED
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// In the 1st level dispatch functions, switch to a different
|
// In the 1st level dispatch functions, switch to a different
|
||||||
// calling convention -- (const GLfloat *v) in %ecx.
|
// calling convention -- (const GLfloat *v) in %ecx.
|
||||||
@@ -282,6 +278,13 @@ GLOBL( _tnl_x86_dispatch_attrfv_end )
|
|||||||
// MultiTexcoord: the address of the function pointer must be
|
// MultiTexcoord: the address of the function pointer must be
|
||||||
// calculated, but can use the index argument slot to hold 'v', and
|
// calculated, but can use the index argument slot to hold 'v', and
|
||||||
// avoid setting up a new stack frame.
|
// avoid setting up a new stack frame.
|
||||||
|
//
|
||||||
|
// [dBorca]
|
||||||
|
// right, this would be the preferred approach, but gcc does not
|
||||||
|
// clean up the stack after each function call when optimizing (-fdefer-pop);
|
||||||
|
// can it make assumptions about what's already on the stack? I dunno,
|
||||||
|
// but in this case, we can't mess with the caller's stack frame, and
|
||||||
|
// we must use a model like `_x86_dispatch_attrfv' above. Caveat emptor!
|
||||||
|
|
||||||
// Also, will only need a maximum of four of each of these per context:
|
// Also, will only need a maximum of four of each of these per context:
|
||||||
//
|
//
|
||||||
@@ -307,10 +310,11 @@ GLOBL( _tnl_x86_dispatch_multitexcoordfv_end )
|
|||||||
// calculated.
|
// calculated.
|
||||||
|
|
||||||
GLOBL( _tnl_x86_dispatch_vertexattribf )
|
GLOBL( _tnl_x86_dispatch_vertexattribf )
|
||||||
movl $16, %ecx
|
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
cmpl $16, %eax
|
cmpl $16, %eax
|
||||||
cmovge %ecx, %eax // [dBorca] BADBAD! might not be supported
|
jb .0 // "cmovge" is not supported on all CPUs
|
||||||
|
movl $16, %eax
|
||||||
|
.0:
|
||||||
leal 8(%esp), %ecx // calculate 'v'
|
leal 8(%esp), %ecx // calculate 'v'
|
||||||
movl %ecx, 4(%esp) // save in 1st arg slot
|
movl %ecx, 4(%esp) // save in 1st arg slot
|
||||||
sall $4, %eax
|
sall $4, %eax
|
||||||
@@ -318,13 +322,13 @@ GLOBL( _tnl_x86_dispatch_vertexattribf )
|
|||||||
GLOBL( _tnl_x86_dispatch_vertexattribf_end )
|
GLOBL( _tnl_x86_dispatch_vertexattribf_end )
|
||||||
|
|
||||||
GLOBL( _tnl_x86_dispatch_vertexattribfv )
|
GLOBL( _tnl_x86_dispatch_vertexattribfv )
|
||||||
movl $16, %ecx
|
|
||||||
movl 4(%esp), %eax
|
movl 4(%esp), %eax
|
||||||
cmpl $16, %eax
|
cmpl $16, %eax
|
||||||
cmovge %ecx, %eax // [dBorca] BADBAD! might not be supported
|
jb .1 // "cmovge" is not supported on all CPUs
|
||||||
|
movl $16, %eax
|
||||||
|
.1:
|
||||||
movl 8(%esp), %ecx // load 'v'
|
movl 8(%esp), %ecx // load 'v'
|
||||||
movl %ecx, 4(%esp) // save in 1st arg slot
|
movl %ecx, 4(%esp) // save in 1st arg slot
|
||||||
sall $4, %eax
|
sall $4, %eax
|
||||||
jmp *SUBST(0)(%eax) // 0x0 - tabfv[0][n]
|
jmp *SUBST(0)(%eax) // 0x0 - tabfv[0][n]
|
||||||
GLOBL( _tnl_x86_dispatch_vertexattribfv_end )
|
GLOBL( _tnl_x86_dispatch_vertexattribfv_end )
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user