aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/tgsi
Commit message (Expand)AuthorAgeFilesLines
* Merge commit 'origin/gallium-0.1' into gallium-0.2Brian Paul2008-11-062-5/+32
|\
| * gallium: check execution mask in indirect register loadsBrian2008-11-051-0/+23
| * gallium: don't range check tgsi register index for indirect accessesBrian2008-11-051-5/+9
* | Merge commit 'origin/gallium-0.1' into gallium-0.2Brian Paul2008-11-053-3/+61
|\|
| * gallium: call tgsi_set_exec_mask() and use exec mask in SSE ARL codeBrian Paul2008-11-051-3/+32
| * gallium: added tgsi_set_exec_mask()Brian Paul2008-11-051-0/+25
| * gallium: added some sanity check assertions for constant buffer indexingBrian Paul2008-11-051-0/+4
| * tgsi: Implement OPCODE_TRUNC.michal2008-11-051-1/+17
* | tgsi: Implement OPCODE_TRUNC.michal2008-11-051-1/+17
* | gallium: use execmem for PPC code, grow instruction buffer as neededBrian Paul2008-10-291-0/+8
* | gallium: added PPC support for SWZ, XPD, POWBrian Paul2008-10-291-0/+86
* | gallium: ppc: implement TGSI_OPCODE_LOG/EXPBrian Paul2008-10-281-1/+110
* | gallium: ppc: don't replicate/smear immediate values, use vspltw instruction ...Brian Paul2008-10-281-9/+13
* | gallium: use some PPC vec registers to store TGSI tempsBrian Paul2008-10-281-62/+122
* | gallium: ppc: emit fewer 'li' instructions prior to vector loads/storesBrian Paul2008-10-271-31/+75
* | gallium: ppc: use a src register cache to avoid redundant loadsBrian Paul2008-10-271-96/+204
* | scons: ppc support.Michel Dänzer2008-10-231-0/+1
* | gallium: PPC: clamp y to [-128,128] for LITBrian Paul2008-10-221-4/+5
* | gallium: remove ppc_vload_float(), rename ppc_vecmove() -> ppc_vmove().Brian Paul2008-10-221-1/+1
* | gallium: new PPC built-in constants arrayBrian Paul2008-10-222-7/+57
* | gallium: GALLIUM_NOPPC debug var to disable PPC codegenBrian Paul2008-10-221-2/+10
* | gallium: PPC LIT instruction (not quite complete yet)Brian Paul2008-10-221-4/+85
* | gallium: var renaming in tgsi_ppc.cBrian Paul2008-10-221-18/+18
* | gallium: remove SSE remnants from tgsi_ppc.cBrian Paul2008-10-221-2153/+0
* | cell: TGSI->PPC for RSQ, RCP and src register sign modesBrian Paul2008-10-221-46/+116
* | gallium: TGSI->PPC inequality operatorsBrian Paul2008-10-221-0/+70
* | gallium: fix broken TGSI_FILE_CONSTANT case, use ppc_reserver_register()Brian Paul2008-10-221-8/+13
* | gallium: TGSI to PPC code generationBrian Paul2008-10-223-0/+2830
* | gallium: Introduce PIPE_ARCH_SSE define for SSE support.José Fonseca2008-10-071-1/+1
* | tgsi: Include p_config.h.José Fonseca2008-10-011-0/+2
* | cell: Moved X86 checks to wrap #include section so that Cell targets will co...Jonathan White2008-09-301-2/+2
* | tgsi: SSE2 optimized exp2, log2 and pow implementations.José Fonseca2008-09-301-76/+211
* | Merge commit 'origin/gallium-0.1' into gallium-0.2Keith Whitwell2008-09-184-13/+20
|\|
| * tgsi: Build tgsi_text with makeJakob Bornecrantz2008-09-181-0/+1
| * tgsi: Make tgsi dumps look more like mesa shader dumps.Jakob Bornecrantz2008-09-181-2/+3
| * gallium: fix tgsi sanity checker with respect to END.Brian Paul2008-09-171-9/+7
| * gallium: fix info entries for KIL, KILPBrian Paul2008-09-161-2/+2
| * tgsi: Make tgsi_sanity.c compile with makeJakob Bornecrantz2008-09-162-0/+7
* | gallium: use copy_token() function to avoid type punning/aliasing problemsBrian Paul2008-09-121-21/+33
* | gallium: use new compare32() function to fix warnings about type punning and ...Brian Paul2008-09-121-10/+14
* | gallium: silence warningBrian Paul2008-09-121-0/+1
|/
* tgsi: Fix newline pos.José Fonseca2008-09-101-1/+1
* tgsi: Verify constants are set before attempting to read them.José Fonseca2008-09-101-0/+1
* tgsi: Cleanup code.Michal Krol2008-09-081-50/+37
* tgsi: Refactor tgsi_dump to avoid using string buffers when dumping.José Fonseca2008-09-051-77/+83
* gallium: increase string buffer size to 16000 to avoid truncated output of lo...Brian Paul2008-09-021-1/+1
* gallium: refactor/replace p_util.h with util/u_memory.h and util/u_math.hBrian Paul2008-08-2410-10/+11
* gallium: replace LOG2() macro with util_fast_log2() inline funcBrian Paul2008-08-221-4/+4
* gallium: use new util_fast_exp2(), _log2(), pow() functionsBrian Paul2008-08-222-0/+49
* tgsi: Implement LOG opcode for SSE2 codegen.Michal Krol2008-08-192-5/+36