Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-01-07 | tgsi: add assertion to verify legal register file | Brian Paul | |
This assertion fails with piglit glsl-vs-mov-after-deref test because we're double freeing the memory. It seems there's some confusion between what's placed in the hash table and what isn't. | |||
2010-01-07 | tgsi: fix incorrectly placed braces, add more braces to be clear | Brian Paul | |
2010-01-07 | tgsi: move register checking code before check_register_usage() | Brian Paul | |
check_register_usage() frees the scan_register *reg data so we were reading from freed memory. This fixes a valgrind error found with piglit's glsl-vs-mov-after-deref test. | |||
2010-01-05 | tgsi: Use FREE() to release MALLOC-ed() memories in sanity. | Michal Krol | |
2010-01-05 | tgsi: Fix bogus loop condition in sanity. | Michal Krol | |
2010-01-05 | tgsi: Support signed/unsigned integer immediate types. | Michal Krol | |
2009-12-25 | util: put vertices_per_primitive function in its proper location | Zack Rusin | |
2009-12-25 | tgsi: add missing support for two dimensional arrays in various places | Zack Rusin | |
in particular asm text parsing and sanity checking were missing code to handle multi-dimensional arrays/geometry shaders | |||
2009-12-14 | tgsi: add properties and system value register | Zack Rusin | |
adds support for properties to all parts of the tgsi framework, plus introduces a new register which will be used for system generated values. | |||
2009-12-01 | Merge commit 'origin/tgsi-simplify-ext' | Keith Whitwell | |
Conflicts: src/gallium/drivers/r300/r300_vs.c | |||
2009-12-01 | tgsi/sanity: Up MAX_REGISTERS to 1024. | Michal Krol | |
2009-11-24 | tgsi: rename fields of tgsi_full_src_register to reduce verbosity | Keith Whitwell | |
SrcRegister -> Register SrcRegisterInd -> Indirect SrcRegisterDim -> Dimension SrcRegisterDimInd -> DimIndirect | |||
2009-11-24 | tgsi: rename fields of tgsi_full_dst_register to reduce verbosity | Keith Whitwell | |
DstRegister -> Register DstRegisterInd -> Indirect | |||
2009-11-24 | tgsi: rename fields of tgsi_full_declaration to reduce verbosity | Keith Whitwell | |
DeclarationRange -> Range | |||
2009-11-24 | tgsi: rename fields of tgsi_full_instruction to avoid excessive verbosity | Keith Whitwell | |
InstructionPredicate -> Predicate InstructionLabel -> Label InstructionTexture -> Texture FullSrcRegisters -> Src FullDstRegisters -> Dst | |||
2009-11-02 | tgsi: Update for gallium interface changes. | Michal Krol | |
2009-09-12 | tgsi: add const qualifier | Keith Whitwell | |
2009-09-03 | aux/tgsi: pull back ureg work from 0.1 branch | Keith Whitwell | |
Manual merge of ureg changes on the branch. Too much unrelated stuff for a proper merge. | |||
2009-07-31 | Rename TGSI LOOP instruction to better match theri usage. | Michal Krol | |
The LOOP/ENDLOOP pair is renamed to BGNFOR/ENDFOR as its behaviour is similar to a C language for-loop. The BGNLOOP2/ENDLOOP2 pair is renamed to BGNLOOP/ENDLOOP as now there is no name collision. | |||
2009-07-30 | tgsi: Add proper constraints to sanity. | Michal Krol | |
2009-07-30 | tgsi: Declare a LOOP register. | Michal Krol | |
The only valid usage for LOOP/ENDLOOP instructions is LOOP[0] as a destination register. The only valid usage for the remaining instructions is LOOP[0].x as an indirect register. | |||
2009-02-28 | tgsi: More descriptive sanity diagnostic messages. | Michal Krol | |
2009-02-18 | util: Move p_debug.h into util module. | José Fonseca | |
The debug functions depend on several util function for os abstractions, and these depend on debug functions, so a seperate module is not possible. | |||
2008-11-05 | gallium: don't range check tgsi register index for indirect accesses | Brian | |
Fixes progs/vp/arl.txt test. | |||
2008-09-17 | gallium: fix tgsi sanity checker with respect to END. | Brian Paul | |
Subroutine code may be found after the END instruction so it's not always the last instruction. At least check for presence of exactly one END instruction though. | |||
2008-09-16 | tgsi: Make tgsi_sanity.c compile with make | Jakob Bornecrantz | |
2008-09-10 | tgsi: Fix newline pos. | José Fonseca | |
2008-08-13 | tgsi: Validate instruction opcode and operand counts. | Michal Krol | |
2008-07-28 | Merge tgsi/exec and tgsi/util directories. | José Fonseca | |