Bug 4980 - [PATCH] Fix unaligned pointer accesses in render command buffer
Status: RESOLVED DUPLICATE of bug 4981
Alias: None
Product: ioquake3
Classification: Unclassified
Component: Video
Version: GIT MASTER
Hardware: All All
: P3 normal
Assignee: Zachary J. Slater
QA Contact: ioquake3 bugzilla mailing list
URL:
Depends on:
Blocks:
 
Reported: 2011-05-08 19:03 EDT by Matt Turner
Modified: 2011-05-08 19:07:06 EDT
0 users

See Also:


Attachments
Patch to eliminate unaligned accesses (2.14 KB, patch)
2011-05-08 19:03 EDT, Matt Turner

Description Matt Turner 2011-05-08 19:03:17 EDT
Created attachment 2698 [details]
Patch to eliminate unaligned accesses

Render commands are stored in a 256kB byte array, which is often dereferenced as a void or some other type of pointer. On strict architectures, unaligned accesses such as these are either trapped and handled slowly in the kernel or disallowed completely.

The attached patch aligns commands to sizeof(void *) boundaries in the command buffer. Performance should be improved on all platforms and especially so on platforms where unaligned accesses very slow.

In the time it took to load quake3, and using the keyboard move down to select Exit from the main screen, it incurred 100904 unaligned traps on my Alpha system. With the patch, I have not seen a single unaligned trap.

Tested on Alpha/Linux and AMD64/Linux. Please commit.
Comment 1 Matt Turner 2011-05-08 19:07:06 EDT
Stupid bugzilla committed this twice.

*** This bug has been marked as a duplicate of bug 4981 ***