Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-01-05 | Remove TGSI_OPCODE_SHR, map existing usage to TGSI_OPCODE_ISHR. | Michal Krol | |
This is to differentiate it from its unsigned version, TGSI_OPCODE_USHR. | |||
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-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-23 | gallivm: updates for TGSI changes | Keith Whitwell | |
make linux-llvm succeeds, but doesn't seem to be working, at least with llvm 2.5 | |||
2009-07-23 | gallium: remove deprecated TGSI opcodes | Keith Whitwell | |
Various opcodes which can be implemented trivially with other TGSI opcodes, such as matrix multiplication and negation. These were not used by any state tracker or implemented by any of the drivers. | |||
2009-07-22 | gallium: simplify tgsi_full_immediate struct | Keith Whitwell | |
Remove the need to have a pointer in this struct by just including the immediate data inline. Having a pointer in the struct introduces complications like needing to alloc/free the data pointed to, uncertainty about who owns the data, etc. There doesn't seem to be a need for it, and it is unlikely to make much difference plus or minus to performance. Added some asserts as we now will trip up on immediates with more than four elements. There were actually already quite a few such asserts, but the >4 case could be used in the future to specify indexable immediate ranges, such as lookup tables. | |||
2009-02-10 | gallivm: Fix build -- rename Size to NrTokens. | Michal Krol | |
2009-01-12 | gallivm: Adapt to header file move in LLVM 2.4. | Michel Dänzer | |
2008-10-30 | gallivm: replace the temp parameters of the JIT function with alloca'ed ↵ | Stephane Marchesin | |
temps. This avoids useless writes of temporary results. | |||
2008-10-07 | Gallivm: fix the constant layout, this gets a bunch of progs/ working. ↵ | Stephane Marchesin | |
Notably, gears doesn't. | |||
2008-10-02 | Gallivm: add slt. glxgears should be running, except it isn't. | Stephane Marchesin | |
2008-10-02 | Gallivm: more instructions. | Stephane Marchesin | |
2008-10-02 | Gallivm: make it compile again, add some opcodes. | Stephane Marchesin | |
2008-08-13 | gallivm: Translate KIL instead of KILP. | Michal Krol | |
2008-07-28 | Merge tgsi/exec and tgsi/util directories. | José Fonseca | |
2008-05-31 | gallivm: Fix build after TGSI declaration interface changes. | Michal Krol | |
2008-05-17 | fix abs and start on rsq | Zack Rusin | |
2008-05-17 | do the lit (some artifacts present) | Zack Rusin | |
2008-05-17 | implement min/max and abstract ops on vectors | Zack Rusin | |
2008-05-17 | llvm: implement sub and abs | Zack Rusin | |
2008-04-21 | Use llvm 2.3 (2.2 won't work because of a lot of problems, e.g. | Zack Rusin | |
lack of constant vectors handling in execution engine) | |||
2008-03-13 | tgsi: Drop pre-ps_2_0 opcodes. | Michal Krol | |
2008-03-12 | add code handling dependencies between generated code | Zack Rusin | |
2008-03-01 | refactor code calling builtins and implement dp4 | Zack Rusin | |
2008-03-01 | start implementing start of bultins | Zack Rusin | |
2008-02-18 | Rename llvm -> gallivm. | José Fonseca | |
Following the directory == library name policy simplifies the build system. |