aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/rtasm
Commit message (Collapse)AuthorAgeFilesLines
* rtasm: Play nicely with Windows's Data Execution Prevention.José Fonseca2010-01-031-2/+30
|
* rtasm: export sse_movmskpsKeith Whitwell2009-07-162-0/+10
|
* rtasm: Use 32bit constant.José Fonseca2009-06-151-3/+3
| | | | As we're only using 32bit bitmasks.
* rtasm: Silence `static function not used' warning.Michal Krol2009-04-101-0/+2
|
* Add #ifdefs needed to compile Gallium on Solaris with gcc or Sun ccAlan Coopersmith2009-03-251-3/+3
| | | | Signed-off-by: Alan Coopersmith <[email protected]>
* gallium: Add support for BSD operating systems, tested with FreeBSDBenjamin Close2009-02-251-3/+7
| | | | | | | | | | BSD supports pipe in the same way as linux hence options which are safe for linux are also safe for BSD. Define PIPE_OS_BSD in include/pipe/p_config.h and adjust the defines to make use of it. Also define MAP_ANONYMOUS for BSD systems which use MAP_ANON Signed-off-by: Benjamin Close <[email protected]>
* gallium: Improve makefiles for librariesJakob Bornecrantz2009-02-201-3/+0
| | | | | | | | The template makefile that most libraries in gallium included was based on dri and had a bunch unrelevant junk in it. Update it and improve the depending makefiles.
* util: Move p_debug.h into util module.José Fonseca2009-02-184-4/+4
| | | | | The debug functions depend on several util function for os abstractions, and these depend on debug functions, so a seperate module is not possible.
* cell: datatype clean-ups in SPE rtasmBrian Paul2009-01-112-105/+99
|
* gallium: added comment/annotation support to PPC rtasmBrian Paul2009-01-102-62/+187
|
* gallium: s/false/FALSE/Brian Paul2009-01-101-1/+1
|
* rtasm: Remove spurious semi-colons after function bodies.José Fonseca2008-12-301-5/+5
|
* CELL: use variant-length fragment ops programsRobert Ellison2008-11-212-4/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a set of changes that optimizes the memory use of fragment operation programs (by using and transmitting only as much memory as is needed for the fragment ops programs, instead of maximal sizes), as well as eliminate the dependency on hard-coded maximal program sizes. State that is not dependent on fragment facing (i.e. that isn't using two-sided stenciling) will only save and transmit a single fragment operation program, instead of two identical programs. - Added the ability to emit a LNOP (No Operation (Load)) instruction. This is used to pad the generated fragment operations programs to a multiple of 8 bytes, which is necessary for proper operation of the dual instruction pipeline, and also required for proper SPU-side decoding. - Added the ability to allocate and manage a variant-length struct cell_command_fragment_ops. This structure now puts the generated function field at the end, where it can be as large as necessary. - On the PPU side, we now combine the generated front-facing and back-facing code into a single variant-length buffer (and only use one if the two sets of code are identical) for transmission to the SPU. - On the SPU side, we pull the correct sizes out of the buffer, allocate a new code buffer if the one we have isn't large enough, and save the code to that buffer. The buffer is deallocated when the SPU exits. - Commented out the emit_fetch() static function, which was not being used.
* CELL: fix stencil twiddling, stencil invertRobert Ellison2008-11-131-3/+3
| | | | | | | | | | | | | Many stencil tests were failing because of a failure to read the stencil buffer, due to "twiddling" (or "untwiddling") "an unsupported texture format". This is fixed for the case of a stencil/Z S824Z format (which twiddles just like the 32-bit color formats). tests/stencilwrap.c was failing on the GL_INVERT test, because the emitted code for "spe_xori" turned out not to be an actual "xori" instruction, but rather a "stqd" instruction, because of a typo in the rtasm code. This is now fixed, and tests/stencil_wrap now works.
* gallium: add missing prototypesBrian Paul2008-11-121-0/+6
|
* cell: move semicolons to silence warnings w/ other compilersBrian Paul2008-11-121-189/+189
|
* cell: fix typo in EMIT_ macroBrian Paul2008-11-121-1/+1
|
* rtasm: Use INLINE keyword. Compile for all platforms, not only GALLIUM_CELL.Michal Krol2008-11-121-9/+5
|
* rtasm: Compile only for GALLIUM_CELL.Michal Krol2008-11-121-0/+4
|
* CELL: two-sided stencil fixesRobert Ellison2008-11-111-2/+5
| | | | | | | | | | | | | | | | | | | With these changes, the tests/stencil_twoside test now works. - Eliminate blending from the stencil_twoside test, as it produces an unneeded dependency on having blending working - The spe_splat() function will now work if the register being splatted and the destination register are the same - Separate fragment code generated for front-facing and back-facing fragments. Often these are the same; if two-sided stenciling is on, they can be different. This is easier and faster than generating code that does both tests and merges the results. - Fixed a cut/paste bug where if the back Z-pass stencil operation were different from all the other operations, the back Z-fail results were incorrect.
* gallium: grow SPE instruction buffer as neededBrian Paul2008-10-291-16/+41
|
* gallium: no longer pass max_inst to ppc_init_func()Brian Paul2008-10-292-2/+2
|
* gallium: use execmem for PPC code, grow instruction buffer as neededBrian Paul2008-10-292-21/+50
|
* gallium: fix alignment parameter passed to u_mmAllocMem()Brian Paul2008-10-291-2/+2
| | | | | | Was 32, now 5. The param is expressed as a power of two exponent. The net effect is that the alignment was a no-op on X86 but on PPC we always got the same memory address everytime rtasm_exec_malloc() was called.
* gallium: prefix memory manager functions with u_ to differentiate from ↵Brian Paul2008-10-291-4/+4
| | | | functions in mesa/main/mm.c
* gallium: test for PIPE_OS_LINUX instead of __linux__Brian Paul2008-10-291-4/+5
|
* gallium: added ppc_vnmsubfp()Brian Paul2008-10-292-1/+12
|
* scons: ppc support.Michel Dänzer2008-10-231-0/+1
|
* gallium: remove ppc_vload_float(), rename ppc_vecmove() -> ppc_vmove().Brian Paul2008-10-222-23/+2
|
* gallium: added ppc_vzero()Brian Paul2008-10-222-0/+13
|
* gallium: added ppc_vload_float(), for limited casesBrian Paul2008-10-222-0/+22
|
* gallium: fix-up confusing register allocation masks in rtasm_ppc.cBrian Paul2008-10-222-21/+36
| | | | Plus, add ppc_reserve_register() func.
* gallium: added ppc_lvewx()Brian Paul2008-10-222-0/+11
|
* cell: implement many more PPC instructions for code genBrian Paul2008-10-223-41/+704
|
* cell: add emit_RI10s() which does range checking on the 10-bit signed ↵Brian Paul2008-10-102-10/+30
| | | | | | immediate field This type of checking should be expanded to cover more instructions...
* cell: additional 'offset' checking in spe_lqd(), spe_stqd()Brian Paul2008-10-101-4/+14
|
* cell: fix assertions in spe_lqd(), spe_stqd()Brian Paul2008-10-101-2/+2
|
* CELL: fixing stencil bugsRobert Ellison2008-10-101-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | These are the defects found and fixed so far. Several more have been observed; I'm working on them. - Fixed an error in spe_load_uint() that caused incorrect values to be loaded if the given unsigned value had the low 18 bits as 0, and that caused inefficient code to be emitted if the given value had the high 14 bits as 0. - Fixed a problem in stencil code generation where optional registers weren't tracked correctly. - Fixed a problem that the stencil function NEVER was acting as ALWAYS. - Fixed several problems that could occur if stenciling were enabled but depth was disabled. - Fixed a problem with two-sided stencil writemask handling that could cause a stencil writemask to not be applied. - Fixed several state permutations that were incorrectly flagged as not requiring stencil values to be calculated.
* Merge commit 'origin/gallium-0.1' into gallium-0.2Keith Whitwell2008-10-102-1/+19
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * gallium: replace assertion with conditional/recovery codeBrian2008-10-061-1/+5
| | | | | | | | | | The assertion failed when we ran out of exec memory. Found with conform texcombine test.
| * rtasm: fix debug buildKeith Whitwell2008-10-061-1/+1
| |
| * rtasm: add sse_movntpsKeith Whitwell2008-10-032-0/+14
| |
| * rtasm: add prefetch instructionsKeith Whitwell2008-10-022-0/+31
| |
* | cell: fix incorrect bitmask in spe_load_uint()Brian Paul2008-10-091-1/+1
| |
* | cell: implement function calls from shader code. fslight demo runs now.Brian Paul2008-10-082-14/+73
| | | | | | | | | | | | | | | | | | | | | | | | Used for SIN, COS, EXP2, LOG2, POW instructions. TEX next. Fixed some bugs in MIN, MAX, DP3, DP4, DPH instructions. In rtasm code: Special-case spe_lqd(), spe_stqd() functions so they take byte offsets but low-order 4 bits are shifted out. This makes things consistant with SPU assembly language conventions. Added spe_get_registers_used() function.
* | gallium: asst. clean-upsBrian Paul2008-10-081-11/+17
| | | | | | | | Don't use register qualifier. Doxygen-ize comments. Remove 'extern'.
* | gallium: better instruction printing for SPE codeBrian Paul2008-10-081-10/+36
| |
* | CELL: changes to generate SPU code for stencilingRobert Ellison2008-10-032-30/+257
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This set of code changes are for stencil code generation support. Both one-sided and two-sided stenciling are supported. In addition to the raw code generation changes, these changes had to be made elsewhere in the system: - Added new "register set" feature to the SPE assembly generation. A "register set" is a way to allocate multiple registers and free them all at the same time, delegating register allocation management to the spe_function unit. It's quite useful in complex register allocation schemes (like stenciling). - Added and improved SPE macro calculations. These are operations between registers and unsigned integer immediates. In many cases, the calculation can be performed with a single instruction; the macros will generate the single instruction if possible, or generate a register load and register-to-register operation if not. These macro functions are: spe_load_uint() (which has new ways to load a value in a single instruction), spe_and_uint(), spe_xor_uint(), spe_compare_equal_uint(), and spe_compare_greater_uint(). - Added facing to fragment generation. While rendering, the rasterizer needs to be able to determine front- and back-facing fragments, in order to correctly apply two-sided stencil. That requires these changes: - Added front_winding field to the cell_command_render block, so that the state tracker could communicate to the rasterizer what it considered to be the front-facing direction. - Added fragment facing as an input to the fragment function. - Calculated facing is passed during emit_quad().
* | rtasm: add prefetch instructionsKeith Whitwell2008-10-022-0/+31
| |
* | rtasm: Implement immediate group 1 instructions. Fix SIB emition.José Fonseca2008-09-292-15/+62
| |