Brian Paul [Wed, 20 Oct 2010 20:54:38 +0000 (14:54 -0600)]
draw: use float version of LLVM Mul/Add instructions
LLVM 2.8 is pickier about int vs float instructions and operands.
Brian Paul [Wed, 20 Oct 2010 20:47:32 +0000 (14:47 -0600)]
llvmpipe/draw: always enable LLVMAddInstructionCombiningPass()
We were working around an LLVM 2.5 bug but we're using LLVM 2.6 or later now.
This basically reverts commit
baddcbc5225e12052b3bc8c07a8b65243d76574d.
This fixes the piglit bug/tri-tex-crash.c failure.
Orion Poplawski [Wed, 20 Oct 2010 19:54:57 +0000 (15:54 -0400)]
osmesa: link against libtalloc
Otherwise consumers have to, and that's lame.
Signed-off-by: Adam Jackson <ajax@redhat.com>
Vinson Lee [Wed, 20 Oct 2010 19:44:08 +0000 (12:44 -0700)]
r600g: Ensure r600_src is initialized in tgsi_exp function.
Silences these GCC warnings.
r600_shader.c: In function 'tgsi_exp':
r600_shader.c:2339: warning: 'r600_src[0].rel' is used uninitialized in this function
r600_shader.c:2339: warning: 'r600_src[0].abs' is used uninitialized in this function
r600_shader.c:2339: warning: 'r600_src[0].neg' is used uninitialized in this function
r600_shader.c:2339: warning: 'r600_src[0].chan' is used uninitialized in this function
r600_shader.c:2339: warning: 'r600_src[0].sel' is used uninitialized in this function
Vinson Lee [Wed, 20 Oct 2010 06:48:59 +0000 (23:48 -0700)]
draw: Move loop variable declaration outside for loop.
Fixes MSVC build.
Keith Whitwell [Wed, 20 Oct 2010 05:11:49 +0000 (22:11 -0700)]
draw: make sure viewport gets updated in draw llvm shader
The viewport state was being baked in at compile time (oops...)
Keith Whitwell [Wed, 20 Oct 2010 04:41:28 +0000 (21:41 -0700)]
Merge branch 'llvm-cliptest-viewport'
Hui Qi Tay [Mon, 18 Oct 2010 17:48:18 +0000 (18:48 +0100)]
draw: corrections to allow for different cliptest cases
Eric Anholt [Tue, 19 Oct 2010 19:32:55 +0000 (12:32 -0700)]
i965: Use the new style of IF statement with embedded comparison on gen6.
"Everyone else" does it this way, so follow suit. It's fewer
instructions, anyway.
Eric Anholt [Tue, 19 Oct 2010 21:50:42 +0000 (14:50 -0700)]
i965: Set the source operand types for gen6 if/else/endif to integer.
I don't think this should matter, but I'm not sure, and it's
recommended by a kernel checker in fulsim.
Eric Anholt [Tue, 19 Oct 2010 19:55:04 +0000 (12:55 -0700)]
i965: Add EU emit support for gen6's new IF instruction with comparison.
Ian Romanick [Wed, 20 Oct 2010 00:59:10 +0000 (17:59 -0700)]
linker: Improve handling of unread/unwritten shader inputs/outputs
Previously some shader input or outputs that hadn't received location
assignments could slip through. This could happen when a shader
contained user-defined varyings and was used with either
fixed-function or assembly shaders.
See the piglit tests glsl-[fv]s-user-varying-ff and
sso-user-varying-0[12].
NOTE: this is a candidate for the 7.9 branch.
Chad Versace [Fri, 15 Oct 2010 21:46:00 +0000 (14:46 -0700)]
glsl: Commit generated file glsl_lexer.cpp
Changes are due to commit "glsl: Fix lexer rule for ^=".
Chad Versace [Fri, 15 Oct 2010 21:44:28 +0000 (14:44 -0700)]
glsl: Fix lexer rule for ^=
The caret is a special character, and needs to be quoted or escaped.
Chad Versace [Fri, 15 Oct 2010 19:08:28 +0000 (12:08 -0700)]
glsl: Implement ast-to-hir for bit-logic ops
Implement by adding to ast_expression::hir() the following cases:
- ast_and_assign
- ast_or_assign
- ast_xor_assign
Chad Versace [Fri, 15 Oct 2010 18:28:05 +0000 (11:28 -0700)]
glsl: Define bit_logic_result_type() in ast_to_hir.cpp
This function type checks the operands of and returns the result type of
bit-logic operations. It replaces the type checking performed in the
following cases of ast_expression::hir() :
- ast_bit_and
- ast_bit_or
- ast_bit_xor
Chad Versace [Fri, 15 Oct 2010 17:05:50 +0000 (10:05 -0700)]
glsl: Implement ast-to-hir for bit-shift-assignment
Implement by adding to ast_expression::hir() these cases:
- ast_ls_assign
- ast_rs_assign
Chad Versace [Fri, 15 Oct 2010 16:49:46 +0000 (09:49 -0700)]
glsl: Define shift_result_type() in ast_to_hir.cpp
This function type checks the operands of and returns the result type of
bit-shift operations. It replaces the type checking performed in the following
cases of ast_expression::hir() :
- ast_lshift
- ast_rshift
Eric Anholt [Mon, 18 Oct 2010 22:43:20 +0000 (15:43 -0700)]
i965: Disable thread dispatch when the FS doesn't do any work.
This should reduce the cost of generating shadow maps, for example.
No performance difference measured in nexuiz, though it does trigger
this path.
Eric Anholt [Tue, 19 Oct 2010 16:50:44 +0000 (09:50 -0700)]
i965: Remove the gen6 emit_mi_flushes I sprinkled around the driver.
These were for debugging in bringup. Now that relatively complicated
apps are working, they haven't helped debug anything in quite a while.
Eric Anholt [Tue, 19 Oct 2010 16:44:20 +0000 (09:44 -0700)]
i965: Tell the shader compiler when we expect depth writes for gen6.
This fixes hangs in some Z-writes-in-shaders tests, though other
pieces don't come out correctly.
Bug #30392: hang in fbo-fblit-d24s8. (still fails with bad color drawn
to some targets)
Vinson Lee [Tue, 19 Oct 2010 17:14:11 +0000 (10:14 -0700)]
llvmpipe: Initialize variable.
Vinson Lee [Tue, 19 Oct 2010 17:02:28 +0000 (10:02 -0700)]
llvmpipe: Initialize state variable in debug_bin function.
Vinson Lee [Tue, 19 Oct 2010 16:49:15 +0000 (09:49 -0700)]
st/xorg: Fix memory leak on error path.
Brian Paul [Tue, 19 Oct 2010 15:14:17 +0000 (09:14 -0600)]
gallivm: fix incorrect type for zero vector in emit_kilp()
http://bugs.freedesktop.org/show_bug.cgi?id=30974
Brian Paul [Mon, 18 Oct 2010 15:07:54 +0000 (09:07 -0600)]
mesa: fix mesa version string construction
Now that MESA_MINOR=10, we no longer need the extra '0' in the
version string.
Thomas Hellstrom [Thu, 14 Oct 2010 20:08:03 +0000 (22:08 +0200)]
mesa: Make sure we have the talloc cflags when using the talloc headers
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Thomas Hellstrom [Tue, 19 Oct 2010 09:44:08 +0000 (11:44 +0200)]
st/xorg: Fix compilation for Xservers >= 1.10
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Thomas Hellstrom [Tue, 19 Oct 2010 09:25:15 +0000 (11:25 +0200)]
xorg/vmwgfx: Don't use deprecated x*alloc / xfree functions
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Thomas Hellstrom [Tue, 19 Oct 2010 08:39:24 +0000 (10:39 +0200)]
st/xorg: Don't use deprecated x*alloc / xfree functions
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Thomas Hellstrom [Tue, 19 Oct 2010 07:35:16 +0000 (09:35 +0200)]
st/xorg: Fix compilation errors for Xservers compiled without Composite
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Thomas Hellstrom [Thu, 14 Oct 2010 20:18:38 +0000 (22:18 +0200)]
st/xorg, xorg/vmwgfx: Be a bit more frendly towards cross-compiling environments
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Vinson Lee [Tue, 19 Oct 2010 07:07:22 +0000 (00:07 -0700)]
r300/compiler: Remove unused variable.
Tom Stellard [Mon, 18 Oct 2010 06:17:01 +0000 (23:17 -0700)]
r300g: Add new debug option for logging vertex/fragment program stats
Tom Stellard [Sun, 10 Oct 2010 19:39:00 +0000 (12:39 -0700)]
r300/compiler: Add a new function for more efficient dataflow analysis
rc_get_readers_normal() supplies a list of readers for a given
instruction. This function is now being used by the copy propagate
optimization and will eventually be used by most other optimization
passes as well.
Tom Stellard [Thu, 14 Oct 2010 06:45:12 +0000 (23:45 -0700)]
r300/compiler: Clear empty registers after constant folding
Tom Stellard [Wed, 6 Oct 2010 05:53:40 +0000 (22:53 -0700)]
r300/compiler: Fix incorrect assumption
It is possible for a single pair instruction arg to select from both an
RGB and an Alpha source.
Tom Stellard [Fri, 1 Oct 2010 06:36:57 +0000 (23:36 -0700)]
r300/compiler: Create a helper function for merging presubtract sources
Kenneth Graunke [Tue, 19 Oct 2010 01:14:33 +0000 (18:14 -0700)]
i965: Remove unused variable.
Kenneth Graunke [Tue, 19 Oct 2010 00:30:16 +0000 (17:30 -0700)]
glsl: Regenerate parser files.
Kenneth Graunke [Tue, 19 Oct 2010 00:25:52 +0000 (17:25 -0700)]
glsl: Fix copy and paste error in ast_bit_and node creation.
All & operations were incorrectly being generated as ast_bit_or.
Eric Anholt [Mon, 18 Oct 2010 21:12:12 +0000 (14:12 -0700)]
i965: Avoid blits in BufferCopySubdata on gen6.
Fixes glean/bufferObject.
Eric Anholt [Mon, 18 Oct 2010 20:11:29 +0000 (13:11 -0700)]
i965: Fix scissor-offscreen on gen6 like we did pre-gen6.
Eric Anholt [Mon, 18 Oct 2010 19:41:10 +0000 (12:41 -0700)]
i965: Assert out on gen6 VS constant buffer reads that hang the GPU for now.
Eric Anholt [Mon, 18 Oct 2010 18:32:19 +0000 (11:32 -0700)]
i965: Fix assertion failure on gen6 BufferSubData to busy BO.
Fixes fbo-blit and probably several other tests.
Eric Anholt [Mon, 18 Oct 2010 18:13:26 +0000 (11:13 -0700)]
i965: Fix a weirdness in NOT handling.
XOR makes much more sense. Note that the previous code would have
failed for not(not(x)), but that gets optimized out.
Eric Anholt [Mon, 18 Oct 2010 17:59:46 +0000 (10:59 -0700)]
i965: Disable the debug printf I added for FS disasm.
Kenneth Graunke [Mon, 18 Oct 2010 19:21:20 +0000 (12:21 -0700)]
i965: Add missing "break" statement.
Otherwise, it would try to handle arrays as structures, use
uninitialized memory, and crash.
José Fonseca [Mon, 18 Oct 2010 16:35:21 +0000 (09:35 -0700)]
llvmpipe: Don't test rounding of x.5 numbers.
SSE4.1 has different rules, and so far this doesn't seem to cause any
problems with conformance test suites.
José Fonseca [Mon, 18 Oct 2010 16:32:35 +0000 (09:32 -0700)]
gallivm: Add a note about SSE4.1's nearest mode rounding.
Brian Rogers [Sun, 17 Oct 2010 21:21:06 +0000 (14:21 -0700)]
mesa: Add missing else in do_row_3D
This fixes erroneous "bad format in do_row()" messages
Signed-off-by: Brian Paul <brianp@vmware.com>
Brian Paul [Mon, 18 Oct 2010 13:59:02 +0000 (07:59 -0600)]
llvmpipe: remove lp_setup_coef*.c files from Makefile
Victor Tseng [Mon, 18 Oct 2010 13:55:37 +0000 (07:55 -0600)]
egl/i965: include inline_wrapper_sw_helper.h
Signed-off-by: Brian Paul <brianp@vmware.com>
Kenneth Graunke [Mon, 18 Oct 2010 07:24:46 +0000 (00:24 -0700)]
glsl: Don't return NULL IR for erroneous bit-shift operators.
Existing code relies on IR being generated (possibly with error type)
rather than returning NULL. So, don't break - go ahead and generate the
operation. As long as an error is flagged, things will work out.
Fixes fd.o bug #30914.
Dave Airlie [Sun, 17 Oct 2010 23:45:58 +0000 (09:45 +1000)]
r600g: retrieve tiling info from kernel for shared buffers.
we need to know if the back is tiled so we can blit from it properly.
Dave Airlie [Wed, 13 Oct 2010 00:44:46 +0000 (10:44 +1000)]
r600g: fix transfer function for tiling.
this makes readback with tiled back work better.
Dave Airlie [Mon, 18 Oct 2010 02:05:27 +0000 (12:05 +1000)]
r600g: attempt to cleanup depth blit
cleanup what I'm nearly sure is unnecessary work in the depth blit code.
Dave Airlie [Mon, 18 Oct 2010 03:23:34 +0000 (13:23 +1000)]
r600g: depth needs to bound to ds
Dave Airlie [Mon, 18 Oct 2010 02:05:38 +0000 (12:05 +1000)]
r600g: fix typo in tiling setup cb code.
Dave Airlie [Mon, 18 Oct 2010 02:04:57 +0000 (12:04 +1000)]
r600g: do proper tracking of views/samplers.
we need to do pretty much what r300g does in for this, this fixes some
issues seen while working on tiling.
Keith Whitwell [Mon, 18 Oct 2010 02:23:40 +0000 (19:23 -0700)]
llvmpipe: remove unused arg from jit_setup_tri function
Keith Whitwell [Mon, 18 Oct 2010 02:11:47 +0000 (19:11 -0700)]
llvmpipe: remove unused file
Keith Whitwell [Mon, 18 Oct 2010 02:03:42 +0000 (19:03 -0700)]
Merge remote branch 'origin/master' into lp-setup-llvm
Conflicts:
src/gallium/drivers/llvmpipe/lp_setup_coef.c
src/gallium/drivers/llvmpipe/lp_setup_coef.h
src/gallium/drivers/llvmpipe/lp_setup_coef_intrin.c
src/gallium/drivers/llvmpipe/lp_setup_point.c
src/gallium/drivers/llvmpipe/lp_setup_tri.c
src/gallium/drivers/llvmpipe/lp_state_derived.c
src/gallium/drivers/llvmpipe/lp_state_fs.h
Keith Whitwell [Mon, 18 Oct 2010 01:48:11 +0000 (18:48 -0700)]
llvmpipe: fail cleanly on malloc failure in lp_setup_alloc_triangle
Keith Whitwell [Mon, 18 Oct 2010 01:29:28 +0000 (18:29 -0700)]
llvmpipe: remove setup fallback path
José Fonseca [Sun, 17 Oct 2010 20:41:45 +0000 (13:41 -0700)]
gallivm: Comment lp_build_insert_new_block().
Keith Whitwell [Mon, 18 Oct 2010 00:53:29 +0000 (17:53 -0700)]
llvmpipe: clean up fields in draw_llvm_variant_key
Dave Airlie [Fri, 8 Oct 2010 01:57:04 +0000 (11:57 +1000)]
r600g: set tiling bits in hw state
Dave Airlie [Fri, 8 Oct 2010 01:56:43 +0000 (11:56 +1000)]
r600g: get tiling info from kernel
Dave Airlie [Fri, 8 Oct 2010 01:56:12 +0000 (11:56 +1000)]
r600g: add defines for tiling
Dave Airlie [Wed, 6 Oct 2010 02:49:26 +0000 (12:49 +1000)]
r600g: switch to a common formats.h file since they are in different regs
Vinson Lee [Sun, 17 Oct 2010 21:09:53 +0000 (14:09 -0700)]
llvmpipe: Return non-zero exit code for lp_test_round failures.
Hui Qi Tay [Sat, 16 Oct 2010 10:02:11 +0000 (11:02 +0100)]
draw: corrections for w coordinate
José Fonseca [Sun, 17 Oct 2010 17:15:15 +0000 (10:15 -0700)]
llvmpipe: Initialize bld ctx via lp_build_context_init instead of ad-hoc and broken code.
José Fonseca [Sun, 17 Oct 2010 16:58:04 +0000 (09:58 -0700)]
llvmpipe: Fix bad refactoring.
'i' and 'chan' have random values here, which could cause a buffer
overflow in debug builds, if chan > 4.
José Fonseca [Sun, 17 Oct 2010 16:32:41 +0000 (09:32 -0700)]
gallivm: Fix SoA cubemap derivative computation.
Derivatives are now scalar.
Broken since
17dbd41cf23e7e7de2f27e5e9252d7f792d932f3.
José Fonseca [Sun, 17 Oct 2010 14:45:08 +0000 (07:45 -0700)]
llvmpipe: Ensure z_shift and z_width is initialized.
José Fonseca [Sun, 17 Oct 2010 14:15:58 +0000 (07:15 -0700)]
llvmpipe: Fix depth-stencil regression.
If stencil is enabled then we need to load the z_dst, even if depth
testing is disabled.
This fixes reflect mesa demo.
Dave Airlie [Sun, 17 Oct 2010 06:45:15 +0000 (16:45 +1000)]
r600g: add evergreen ARL support.
Thanks to Alex Deucher for pointing out the FLT to int conversion is necessary
and writing an initial patch, this brings about 20 piglits, and I think this
is the last piece to make evergreen and r600 equal in terms of features.
Brian Paul [Fri, 15 Oct 2010 23:32:23 +0000 (17:32 -0600)]
gallivm: use util_snprintf()
Brian Paul [Fri, 15 Oct 2010 23:24:43 +0000 (17:24 -0600)]
st/mesa: update function name, comments
Brian Paul [Fri, 15 Oct 2010 23:18:39 +0000 (17:18 -0600)]
st/mesa: use GLuint to avoid problem w/ uint not defined on mingw32
Brian Paul [Fri, 15 Oct 2010 23:01:56 +0000 (17:01 -0600)]
st/mesa: reformatting in st_cb_drawpixels.c
Brian Paul [Fri, 15 Oct 2010 22:54:03 +0000 (16:54 -0600)]
st/mesa: fix regressions in glDrawPixels(GL_STENCIL_INDEX)
We need to keep track of three different fragment shaders: Z-only, stencil-
only, and Z+stencil. Before, we were only keeping track of the first one
we encountered.
Brian Paul [Fri, 15 Oct 2010 21:44:01 +0000 (15:44 -0600)]
glsl: add ir_unop_round_even case to silence unhandled enum warning
Brian Paul [Fri, 15 Oct 2010 17:55:21 +0000 (11:55 -0600)]
gallivm: added lp_build_load_volatile()
There's no LLVM C LLVMBuildLoadVolatile() function so roll our own.
Not used anywhere at this time but can come in handy during debugging.
Brian Paul [Fri, 15 Oct 2010 14:41:31 +0000 (08:41 -0600)]
gallivm: added lp_build_print_vec4()
Eric Anholt [Fri, 15 Oct 2010 19:04:52 +0000 (12:04 -0700)]
i965: Set the type of the null register to fix gen6 FS comparisons.
We often use reg_null as the destination when setting up the flag
regs. However, on gen6 there aren't general implicit conversions to
destination types from src types, so the comparison to produce the
flag regs would be done on the integer result interpreted as a float.
Hilarity ensued.
Fixes 20 piglit cases.
Ian Romanick [Fri, 15 Oct 2010 17:32:02 +0000 (10:32 -0700)]
i965: Fix indentation after commit
3322fbaf
Ian Romanick [Fri, 15 Oct 2010 00:55:17 +0000 (17:55 -0700)]
linker: Trivial indention fix
Jakob Bornecrantz [Fri, 15 Oct 2010 14:46:10 +0000 (15:46 +0100)]
target-helpers: Remove per target software wrapper check
Instead of having a NAME_SOFTWARE check just use the GALLIUM_DRIVER
instead but set the default to native which is the same as not wrapped.
Jakob Bornecrantz [Fri, 15 Oct 2010 14:58:54 +0000 (15:58 +0100)]
egl: Remove unnecessary headers
Jakob Bornecrantz [Fri, 15 Oct 2010 14:57:55 +0000 (15:57 +0100)]
wrapper: Add a way to dewrap a pipe screen without destroying it
Jakob Bornecrantz [Fri, 15 Oct 2010 14:38:29 +0000 (15:38 +0100)]
wrapper: Fix spelling
Jakob Bornecrantz [Tue, 12 Oct 2010 17:41:24 +0000 (18:41 +0100)]
llvmpipe: Move makefile include to before targets
Or plain make inside of the directory wont build libllvmpipe.a
Xavier Chantry [Fri, 15 Oct 2010 13:53:13 +0000 (15:53 +0200)]
nv50: apply layout_mask to tile_flags
The tile_flags now store more than just nv50 page table entry bits.
Keith Whitwell [Fri, 15 Oct 2010 12:23:30 +0000 (13:23 +0100)]
llvmpipe: validate color outputs against key->nr_cbufs
Keith Whitwell [Fri, 15 Oct 2010 12:23:05 +0000 (13:23 +0100)]
llvmpipe: check shader outputs are non-null before using
Vinson Lee [Fri, 15 Oct 2010 13:12:26 +0000 (06:12 -0700)]
mesa: Add missing header to shaderobj.h.
Include compiler.h for ASSERT symbol.
Keith Whitwell [Fri, 15 Oct 2010 13:11:22 +0000 (14:11 +0100)]
llvmpipe: fix non-sse build after recent changes