summaryrefslogtreecommitdiff
path: root/src/mesa/tnl
diff options
context:
space:
mode:
authorDaniel Borca <dborca@users.sourceforge.net>2004-04-02 09:34:39 +0000
committerDaniel Borca <dborca@users.sourceforge.net>2004-04-02 09:34:39 +0000
commitf17980cdb7ff544a366a16775688e3bb237acc57 (patch)
tree2adfe65268c566374938ebbc149a333ffdc948de /src/mesa/tnl
parent94922b9d2d801b780b00b030d4ec60381c2eef26 (diff)
got rid of the notify routine as intermediate step
Diffstat (limited to 'src/mesa/tnl')
-rw-r--r--src/mesa/tnl/t_vtx_x86.c12
-rw-r--r--src/mesa/tnl/t_vtx_x86_gcc.S42
2 files changed, 37 insertions, 17 deletions
diff --git a/src/mesa/tnl/t_vtx_x86.c b/src/mesa/tnl/t_vtx_x86.c
index 66950e70e1..5aafedebbe 100644
--- a/src/mesa/tnl/t_vtx_x86.c
+++ b/src/mesa/tnl/t_vtx_x86.c
@@ -145,7 +145,8 @@ static struct _tnl_dynfn *makeX86Vertex1fv( GLcontext *ctx, int vertex_size )
FIXUP(dfn->code, 0, 0, (int)&tnl->vtx.vbptr);
FIXUP(dfn->code, 0, 3, (int)&tnl->vtx.counter);
FIXUP(dfn->code, 0, 3, (int)&tnl->vtx.counter);
- FIXUPREL(dfn->code, 0, 4, (int)&notify);
+ FIXUP(dfn->code, 0, 4, (int)ctx);
+ FIXUPREL(dfn->code, 0, 5, (int)&_tnl_wrap_filled_vertex);
return dfn;
}
@@ -161,7 +162,8 @@ static struct _tnl_dynfn *makeX86Vertex2fv( GLcontext *ctx, int vertex_size )
FIXUP(dfn->code, 0, 0, (int)&tnl->vtx.vbptr);
FIXUP(dfn->code, 0, 3, (int)&tnl->vtx.counter);
FIXUP(dfn->code, 0, 3, (int)&tnl->vtx.counter);
- FIXUPREL(dfn->code, 0, 4, (int)&notify);
+ FIXUP(dfn->code, 0, 4, (int)ctx);
+ FIXUPREL(dfn->code, 0, 5, (int)&_tnl_wrap_filled_vertex);
return dfn;
}
@@ -177,7 +179,8 @@ static struct _tnl_dynfn *makeX86Vertex3fv( GLcontext *ctx, int vertex_size )
FIXUP(dfn->code, 0, 0, (int)&tnl->vtx.vbptr);
FIXUP(dfn->code, 0, 3, (int)&tnl->vtx.counter);
FIXUP(dfn->code, 0, 3, (int)&tnl->vtx.counter);
- FIXUPREL(dfn->code, 0, 4, (int)&notify);
+ FIXUP(dfn->code, 0, 4, (int)ctx);
+ FIXUPREL(dfn->code, 0, 5, (int)&_tnl_wrap_filled_vertex);
return dfn;
}
@@ -192,7 +195,8 @@ static struct _tnl_dynfn *makeX86Vertex4fv( GLcontext *ctx, int vertex_size )
FIXUP(dfn->code, 0, 0, (int)&tnl->vtx.vbptr);
FIXUP(dfn->code, 0, 3, (int)&tnl->vtx.counter);
FIXUP(dfn->code, 0, 3, (int)&tnl->vtx.counter);
- FIXUPREL(dfn->code, 0, 4, (int)&notify);
+ FIXUP(dfn->code, 0, 4, (int)ctx);
+ FIXUPREL(dfn->code, 0, 5, (int)&_tnl_wrap_filled_vertex);
return dfn;
}
diff --git a/src/mesa/tnl/t_vtx_x86_gcc.S b/src/mesa/tnl/t_vtx_x86_gcc.S
index 5a1adc0f33..0bccd17302 100644
--- a/src/mesa/tnl/t_vtx_x86_gcc.S
+++ b/src/mesa/tnl/t_vtx_x86_gcc.S
@@ -82,9 +82,13 @@ GLOBL ( _tnl_x86_Vertex1fv )
pop %esi
pop %edi
dec %edx // counter--
- movl %edx, SUBST(3) // 0x3 --> counter
- .short 0x840f // if (counter == 0)
- .long SUBST(4) // notify()
+ movl %edx, SUBST(3) // 0x3 --> counter
+ jne .0 // if (counter != 0) return
+ pushl $SUBST(4) // 0x4 --> ctx
+ .byte 0xe8 // call ...
+ .long SUBST(5) // ... _tnl_wrap_filled_vertex(ctx)
+ pop %eax
+.0:
ret // return
GLOBL ( _tnl_x86_Vertex1fv_end )
@@ -110,8 +114,12 @@ GLOBL ( _tnl_x86_Vertex2fv )
pop %edi
dec %edx // counter--
movl %edx, SUBST(3) // save counter
- .short 0x840f // if (counter == 0)
- .long SUBST(4) // notify()
+ jne .1 // if (counter != 0) return
+ pushl $SUBST(4) // load ctx
+ .byte 0xe8 // call ...
+ .long SUBST(5) // ... _tnl_wrap_filled_vertex(ctx)
+ pop %eax
+.1:
ret // return
GLOBL ( _tnl_x86_Vertex2fv_end )
@@ -138,8 +146,12 @@ GLOBL ( _tnl_x86_Vertex3fv )
pop %edi
dec %edx // counter--
movl %edx, SUBST(3) // save counter
- .short 0x840f // if (counter == 0)
- .long SUBST(4) // notify()
+ jne .2 // if (counter != 0) return
+ pushl $SUBST(4) // load ctx
+ .byte 0xe8 // call ...
+ .long SUBST(5) // ... _tnl_wrap_filled_vertex(ctx)
+ pop %eax
+.2:
ret // return
GLOBL ( _tnl_x86_Vertex3fv_end )
@@ -169,8 +181,12 @@ GLOBL ( _tnl_x86_Vertex4fv )
pop %edi
dec %edx // counter--
movl %edx, SUBST(3) // save counter
- .short 0x840f // if (counter == 0)
- .long SUBST(4) // notify()
+ jne .3 // if (counter != 0) return
+ pushl $SUBST(4) // load ctx
+ .byte 0xe8 // call ...
+ .long SUBST(5) // ... _tnl_wrap_filled_vertex(ctx)
+ pop %eax
+.3:
ret // return
GLOBL ( _tnl_x86_Vertex4fv_end )
@@ -312,9 +328,9 @@ GLOBL( _tnl_x86_dispatch_multitexcoordfv_end )
GLOBL( _tnl_x86_dispatch_vertexattribf )
movl 4(%esp), %eax
cmpl $16, %eax
- jb .0 // "cmovge" is not supported on all CPUs
+ jb .8 // "cmovge" is not supported on all CPUs
movl $16, %eax
-.0:
+.8:
leal 8(%esp), %ecx // calculate 'v'
movl %ecx, 4(%esp) // save in 1st arg slot
sall $4, %eax
@@ -324,9 +340,9 @@ GLOBL( _tnl_x86_dispatch_vertexattribf_end )
GLOBL( _tnl_x86_dispatch_vertexattribfv )
movl 4(%esp), %eax
cmpl $16, %eax
- jb .1 // "cmovge" is not supported on all CPUs
+ jb .9 // "cmovge" is not supported on all CPUs
movl $16, %eax
-.1:
+.9:
movl 8(%esp), %ecx // load 'v'
movl %ecx, 4(%esp) // save in 1st arg slot
sall $4, %eax