Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-09-15 | gallivm: Remove unnecessary headers. | Vinson Lee | |
2010-09-15 | gallivm: expand AoS sampling to cover all filtering modes | Brian Paul | |
...and all texture targets (1D/2D/3D/CUBE). | |||
2010-09-14 | gallivm: Remove unnecessary header. | Vinson Lee | |
2010-09-11 | gallivm: nr_channels is only valid for formats with plain layout. | José Fonseca | |
This is erroneously throwing non plain formats out of the faster AoS sampling path. Doing 8bit interpolation for single channels such as L8 should be no worse than with floating point. But this may need more investigation. | |||
2010-09-11 | gallivm: Use const keyword on swizzles. | José Fonseca | |
2010-09-11 | gallivm: Allow to TGSI AoS translation to happen in BGRA ordering. | José Fonseca | |
Or any ordering. | |||
2010-09-11 | gallivm: Add a new debug flag to warn about performance issues. | José Fonseca | |
2010-09-11 | gallivm: Helper functions for pointer indirection. | José Fonseca | |
2010-09-11 | gallivm: Cleanup the TGSI <-> sampler interface. | José Fonseca | |
2010-09-11 | gallivm: Add some utility functions to set/get array elements too. | José Fonseca | |
2010-09-11 | gallivm: Basic AoS TGSI -> LLVM IR. | José Fonseca | |
Essentially a variation of the SoA version. | |||
2010-09-11 | gallivm: Move the texture modifiers to the header. | José Fonseca | |
Useful to pass these around. | |||
2010-09-11 | gallivm: s/lp_build_broadcast_aos/lp_build_swizzle_scalar_aos/ | José Fonseca | |
More accurate description of this function purpose. | |||
2010-09-05 | gallivm: Pass condition masks as an unsigned bitmask. | José Fonseca | |
Much more convenient than boolean arrays. | |||
2010-09-05 | gallivm: Cope with tgsi instruction reallocation failure. | José Fonseca | |
2010-08-31 | gallivm: fix bug in nested conditionals | Brian Paul | |
This, plus the previous commit fix fd.o bug 29806. | |||
2010-08-30 | gallivm: Compute the 4 texel offsets for linear filtering en ensemble. | José Fonseca | |
2010-08-30 | gallivm: Disable LLVM's pretty stack trace dumper. | José Fonseca | |
By default LLVM adds a signal handler to output a pretty stack trace. This signal handler is never removed, causing problems when unloading the shared object where the gallium driver resides. Thanks to Chris Li for finding this. | |||
2010-08-30 | gallivm: Correct copy'n'pasted comments. | José Fonseca | |
2010-08-30 | gallivm: Fix lp_build_sum_vector. | José Fonseca | |
The result is scalar, so when argument is zero/undef we can pass vector zero/undef. Also, support the scalar case. | |||
2010-08-29 | util: remove util_is_pot in favor of util_is_power_of_two | Marek Olšák | |
The function was duplicated. | |||
2010-08-24 | gallivm: Include missing header in lp_bld_sample.h. | Vinson Lee | |
Include p_format.h for enum pipe_format symbol. | |||
2010-08-24 | gallivm: Include missing header in lp_bld_pack.h. | Vinson Lee | |
Include p_compiler.h for boolean symbol. | |||
2010-08-21 | gallivm: Emit DIVPS instead of RCPPS. | José Fonseca | |
See comments for detailed rationale. Thanks to Michal Krol and Zack Rusin for detecting and investigating this in detail. | |||
2010-08-20 | gallium: make all checks for PIPE_TEXTURE_2D check for PIPE_TEXTURE_RECT too | Luca Barbieri | |
Searched for them with: git grep -E '[!=]=.*PIPE_TEXTURE_2D|PIPE_TEXTURE_2D.*[!=]=|case.*PIPE_TEXTURE_2D' Behavior hasn't been changed. | |||
2010-08-18 | gallivm: Use proper index to lookup predicate register array. | michal | |
Doesn't fix anything, as those indices were both always 0. | |||
2010-08-17 | gallivm: Fix and re-enable MMX-disabling code | nobled | |
Signed-off-by: José Fonseca <jfonseca@vmware.com> | |||
2010-08-14 | gallivm: Remove unnecessary header. | Vinson Lee | |
2010-08-14 | u_cpu_detect: remove arch and little_endian | Luca Barbieri | |
This logic duplicates the one in p_config.h, so remove it and adjust the only two places that were using it. | |||
2010-08-14 | gallivm: Refactor the Newton-Rapshon steps, and disable once again. | José Fonseca | |
It causes a very ugly corruption on the Earth's halo on Google Earth. | |||
2010-08-11 | gallivm: Fix and enable the extra Newton/Raphson step in lp_build_rcp(). | José Fonseca | |
Thanks to Michal for spotting this. | |||
2010-08-11 | gallivm: Use lp_build_div instead of lp_build_mul + lp_build_rcp. | José Fonseca | |
Single divide, so let lp_build_div decide how to implement this. This will save a multiplication in architectures which don't have a RCP intrinsic. | |||
2010-08-11 | gallivm: Use unsigned shift in lp_build_minify. | José Fonseca | |
Texture dimensions are unsigned. | |||
2010-08-10 | gallivm: fix non-SSE4.1 case in lp_build_pack2() | Brian Paul | |
Since there's no SSE instruction for this case, fall through to the generic shuffle code. Fixes bug fd.o 29468. | |||
2010-08-10 | gallivm: Fix bitwise operations for floats, division for integers | nobled | |
http://bugs.freedesktop.org/29407 Signed-off-by: José Fonseca <jfonseca@vmware.com> | |||
2010-08-10 | gallivm: Even more type checking | nobled | |
http://bugs.freedesktop.org/29407 Signed-off-by: José Fonseca <jfonseca@vmware.com> | |||
2010-08-09 | gallivm: More type checks. | José Fonseca | |
2010-08-09 | gallivm: Don't call LLVMBuildFNeg on llvm-2.6. | José Fonseca | |
It didn't exist yet. | |||
2010-08-09 | gallivm: Always use floating-point operators for floating-point types | nobled | |
This fixes the assert added in LLVM 2.8: assert(getType()->isIntOrIntVectorTy() && "Tried to create an integer operation on a non-integer type!") But it also fixes some subtle bugs, since we should've been doing this since LLVM 2.6 anyway. Includes a modified patch from steckdenis@yahoo.fr for the FNeg instructions in emit_fetch(); thanks for pointing those out. http://bugs.freedesktop.org/29404 http://bugs.freedesktop.org/29407 Signed-off-by: José Fonseca <jfonseca@vmware.com> | |||
2010-08-08 | gallivm: Fix more integer operations. | José Fonseca | |
2010-08-08 | gallivm: Use the correct context for integers | nobled | |
See: http://bugs.freedesktop.org/29407 | |||
2010-08-08 | gallivm: Add type checks for the basic operations. | José Fonseca | |
2010-08-06 | gallium: remove stray semicolons | Brian Paul | |
2010-08-05 | gallivm: Only get debug option once | Jakob Bornecrantz | |
2010-07-30 | llvmpipe: delete function bodies after generating machine code | Zack Rusin | |
2010-07-29 | gallivm: added lp_build_assert() function to make assertions in LLVM code | Brian Paul | |
2010-07-29 | Revert "gallivm: fix lp_build_sample_offset() crash when indexing a 1-D texture" | José Fonseca | |
This reverts commit 5f90e76c54bbf4456c977b3cbca450d7a570179e. Bad cherry-pick. | |||
2010-07-29 | gallivm: fix lp_build_sample_offset() crash when indexing a 1-D texture | Brian Paul | |
If y==NULL and y_stride==NULL it means the texture is 1D. Return zero for out_i and the offset instead of garbage. | |||
2010-07-29 | llvmpipe: Avoid corrupting the FPU stack with MMX instructions on 32bit OSes. | José Fonseca | |
Unfortunately LLVM doesn't emit EMMS itself, and there is no easy/effective way to disable MMX. http://llvm.org/bugs/show_bug.cgi?id=3287 | |||
2010-07-27 | gallivm: Add lp_build_select_bitwise() alternative to lp_build_select_bitwise | José Fonseca | |
When (mask & a) | (~mask & b) is meant instead of mask ? a : b |