summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/rtasm/rtasm_x86sse.h
AgeCommit message (Collapse)AuthorFilesLines
2013-10-18rtasm: Cygwin uses the msabi calling convention on x86_64Jon TURNEY1-1/+1
Cygwin also uses the msabi calling convention on x86_64, not the sysvabi calling convention Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Reviewed-by: Brian Paul <brianp@vmware.com> ignored, and an empty message aborts the commit.
2013-04-23mesa: Restore 78-column wrapping of license text in C-style comments.Kenneth Graunke1-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 <brianp@vmware.com>
2013-04-23mesa: Add "OR COPYRIGHT HOLDERS" to license text disclaiming liability.Kenneth Graunke1-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 <brianp@vmware.com>
2013-04-23mesa: Change "BRIAN PAUL" to "THE AUTHORS" in license text.Kenneth Graunke1-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 <brianp@vmware.com>
2011-04-01translate: Respect translate_buffer::max_index.José Fonseca1-0/+1
2010-08-26rtasm: Include missing header in rtasm_x86sse.h.Vinson Lee1-0/+1
Include p_compiler.h for stdint.h uint*_t symbols.
2010-08-16rtasm: add minimal x86-64 support and new instructions (v5)Luca Barbieri1-8/+93
Changes in v5: - Add sse2_movdqa Changes in v4: - Use _WIN64 instead of WIN64 Changes in v3: - Add target and target caps functions, so that they could be different in principle from the current CPU and they don't need #ifs to check Changes in v2: - Win64 support (untested) - Use u_cpu_detect.h constants instead of #ifs This commit adds minimal x86-64 support: only movs between registers are supported for r8-r15, and x64_rexw() must be used to ask for 64-bit operations. It also adds several new instructions for the new translate_sse code. movdqa
2010-08-16translate: add support for 8/16-bit indicesLuca Barbieri1-0/+2
Currently, only 32-bit indices are supported, but some use cases translate needs support for all types.
2010-05-13rtasm: fix void * / func * casting warningsBrian Paul1-1/+6
2010-03-25rtasm: Fix typos in comments.Vinson Lee1-3/+3
2009-12-30rtasm: Add x86_div().Michal Krol1-0/+1
2009-07-16rtasm: export sse_movmskpsKeith Whitwell1-0/+1
2008-10-10Merge commit 'origin/gallium-0.1' into gallium-0.2Keith Whitwell1-0/+2
Conflicts: src/gallium/auxiliary/gallivm/instructionssoa.cpp src/gallium/auxiliary/gallivm/soabuiltins.c src/gallium/auxiliary/rtasm/rtasm_x86sse.c src/gallium/auxiliary/rtasm/rtasm_x86sse.h src/mesa/main/texenvprogram.c src/mesa/shader/arbprogparse.c src/mesa/shader/prog_statevars.c src/mesa/state_tracker/st_draw.c src/mesa/vbo/vbo_exec_draw.c
2008-10-03rtasm: add sse_movntpsKeith Whitwell1-0/+2
2008-10-02rtasm: add prefetch instructionsKeith Whitwell1-0/+5
2008-10-02rtasm: add prefetch instructionsKeith Whitwell1-0/+5
2008-09-29rtasm: Implement immediate group 1 instructions. Fix SIB emition.José Fonseca1-5/+6
2008-06-02rtasm: Use enum sse_cc in sse_cmpps.José Fonseca1-1/+1
2008-05-28Merge branch 'gallium-vertex-linear' into gallium-0.1Jakob Bornecrantz1-3/+27
Conflicts: src/gallium/auxiliary/draw/draw_pt_varray.c
2008-05-28gallium: Windows CE portability fixes.José Fonseca1-1/+3
2008-05-24rtasm: add some helpers for calling out from generated codeKeith Whitwell1-0/+6
2008-05-23rtasm: add x87 instructions and debug-check for x87 stack usageKeith Whitwell1-2/+18
2008-05-23rtasm: export debug reg print functionKeith Whitwell1-0/+3
2008-05-23rtasm: remove unused struct memberKeith Whitwell1-1/+0
2008-05-01rtasm: fix labels after (not so) recent change to allow dynamic fn growthKeith Whitwell1-7/+7
Using char * for labels doesn't work if you realloc the function during assembly and free the old storage...
2008-04-28gallium: Generate SSE code to swizzle and unswizzle vs inputs and outputs.Michal Krol1-0/+2
Change SSE_SWIZZLES #define to 0 to disable it.
2008-04-27rtasm: Implement x86_retw.José Fonseca1-0/+1
2008-04-21rtasm: propogate errors in x86 emitKeith Whitwell1-0/+1
2008-04-18rtasm: add x86_imulKeith Whitwell1-0/+1
2008-04-18rtasm: add a couple more insns, clean up x86_mulKeith Whitwell1-0/+2
2008-02-19Fix windows build.José Fonseca1-1/+1
2008-02-19Add copyright headers to all rtasm source files.José Fonseca1-3/+25
2008-02-19Rename rtasm files.José Fonseca1-0/+256