aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/x86/common_x86_asm.S
Commit message (Collapse)AuthorAgeFilesLines
* mesa: remove outdated version lines in commentsRico Schüller2013-06-051-1/+0
| | | | Signed-off-by: Brian Paul <[email protected]>
* mesa: Restore 78-column wrapping of license text in C-style comments.Kenneth Graunke2013-04-231-3/+4
| | | | | | | | | | | | | | The previous commit introduced extra words, breaking the formatting. This text transformation was done automatically via the following shell command: $ git grep 'THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY' | sed 's/:.*$//' | xargs -I {} sh -c 'vim -e -s {} < vimscript where 'vimscript' is a file containing: /THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY/;/\*\// !fmt -w 78 -p ' * ' :wq Reviewed-by: Brian Paul <[email protected]>
* mesa: Add "OR COPYRIGHT HOLDERS" to license text disclaiming liability.Kenneth Graunke2013-04-231-1/+1
| | | | | | | | | | | | | | | This brings the license text in line with the MIT License as published on the Open Source Initiative website: http://opensource.org/licenses/mit-license.php Generated automatically be the following shell command: $ git grep 'THE AUTHORS BE LIABLE' | sed 's/:.*$//g' | xargs -I '{}' \ sed -i 's/THE AUTHORS/THE AUTHORS OR COPYRIGHT HOLDERS/' {} This introduces some wrapping issues, to be fixed in the next commit. Reviewed-by: Brian Paul <[email protected]>
* mesa: Change "BRIAN PAUL" to "THE AUTHORS" in license text.Kenneth Graunke2013-04-231-1/+1
| | | | | | | | | | | | | | | | Generated automatically be the following shell command: $ git grep 'BRIAN PAUL BE LIABLE' | sed 's/:.*$//g' | xargs -I '{}' \ sed -i 's/BRIAN PAUL/THE AUTHORS/' {} The intention here is to protect all authors, not just Brian Paul. I believe that was already the sensible interpretation, but spelling it out is probably better. More practically, it also prevents people from accidentally copy & pasting the license into a new file which says Brian is not liable when he isn't even one of the authors. Reviewed-by: Brian Paul <[email protected]>
* Fix X86 compilation.Chris Rankin2008-09-211-0/+1
|
* Add .note.GNU-stack section to assembler files to avoid the default behaviorKristian Høgsberg2006-04-171-0/+4
| | | | of requesting executable stacks.
* use HIDDEN macro to export fewer symbols (bug 2210)Brian Paul2005-01-041-0/+8
|
* added an attention-getting comment for developers who get stopped in ↵Brian Paul2004-10-261-4/+8
| | | | _mesa_test_os_sse_support() while debugging
* new X86 CPU detection code (Petr Sebor)Brian Paul2003-01-211-108/+74
|
* remove ADD_L altogetherBrian Paul2003-01-091-3/+1
|
* s/16/32/ (Josh Vanderhoof)Brian Paul2003-01-091-2/+2
|
* moved ADD_L instruction (Linus Torvalds)Brian Paul2003-01-091-5/+5
|
* fix 3dnow misdetection on new p4'sKeith Whitwell2002-11-091-1/+6
|
* push and pop ESI (Daniel Borca)Brian Paul2002-09-191-1/+3
|
* applied Eric Anholt's patch for Athlon SSEBrian Paul2002-07-111-1/+14
|
* Fix NASM problems, remove static var in SSE detection code. (Josh Vanderhoof)Brian Paul2002-06-111-7/+10
|
* use CONTENT() macro on line 205 (Josh Vanderhoof)Brian Paul2002-06-041-4/+4
|
* syntax fixes for Solaris (David Dawes)Brian Paul2002-03-071-15/+21
|
* Consolidation of asm code in 3.5Gareth Hughes2001-03-291-9/+9
|
* New type system for assembly code. Asm files should now includeGareth Hughes2001-03-281-5/+4
| | | | | matypes.h, which includes assyntax.h and is generated from the core Mesa header files.
* more clean-upsBrian Paul2001-03-031-7/+7
|
* minor changes from XFree86 (dawes)Brian Paul2001-02-091-2/+8
|
* Merge Mesa 3.4 test for operating system support for SSE.Gareth Hughes2000-12-061-3/+56
|
* Major audit of all Mesa's x86 assembly code. This round is basicallyGareth Hughes2000-10-231-0/+152
general cleanups - more to come. Added P6 architecture timing to debug_xform routines. Still need to add test_all_vertex_functions test for the v16 asm. Dynamic reconfiguration of counter overhead for more accurate benchmarking.