Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-11-30 | gallivm/llvmpipe: squash merge of the llvm-context branch | Brian Paul | |
This branch defines a gallivm_state structure which contains the LLVMBuilderRef, LLVMContextRef, etc. All data structures built with this object can be periodically freed during a "garbage collection" operation. The gallivm_state object has to be passed to most of the builder functions where LLVMBuilderRef used to be used. Conflicts: src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c src/gallium/drivers/llvmpipe/lp_state_setup.c | |||
2010-09-22 | llvmpipe: Special case complementary and identify blend factors in SoA. | José Fonseca | |
One multiplication instead of two. Also fix floating point random number generation and verification. TODO: Do the same for AoS blending. | |||
2010-07-29 | llvmpipe: don't call LLVMCreateJITCompiler() twice | Brian Paul | |
Fixes a failed assertion with LLVM 2.6: <unnamed>::JITResolver::JITResolver(llvm::JIT&): Assertion `TheJITResolver == 0&& "Multiple JIT resolvers?"' failed. Though, not everyone seems to experience this problem. | |||
2010-06-04 | llvmpipe: new -s option to run single test | Brian Paul | |
Put specific test code in the test_single() function and pass -s to execute that code. | |||
2010-05-27 | llvmpipe: s/bool/boolean | Brian Paul | |
2010-05-13 | llvmpipe: silence cast warnings in test programs | Brian Paul | |
2010-05-10 | llvmpipe: fix up indexing of blend/colormask state for render targets | Brian Paul | |
2010-04-23 | llvmpipe: Remove unused variable. | Vinson Lee | |
2010-04-16 | llvmpipe: fix compilation, linking of lp_test_blend | Brian Paul | |
2010-02-14 | llvmpipe: s/debug_dump_/util_dump_/ | José Fonseca | |
2010-02-08 | llvmpipe: export the tgsi translation code to a common layer | Zack Rusin | |
the llvmpipe tgsi translation is a lot more complete than what was in gallivm so replacing the latter with the former. this is needed since the draw llvm paths will use the same code. effectively the proven llvmpipe code becomes gallivm. | |||
2010-01-28 | Merge commit 'origin/perrtblend' | Roland Scheidegger | |
Conflicts: src/gallium/drivers/softpipe/sp_screen.c src/gallium/include/pipe/p_defines.h | |||
2010-01-25 | llvmpipe: adapt to blend changes | Roland Scheidegger | |
2010-01-22 | Merge branch 'mesa_7_7_branch' | Brian Paul | |
Conflicts: src/gallium/auxiliary/draw/draw_context.c src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c src/gallium/auxiliary/pipebuffer/Makefile src/gallium/auxiliary/pipebuffer/SConscript src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c src/gallium/auxiliary/tgsi/tgsi_scan.c src/gallium/drivers/i915/i915_surface.c src/gallium/drivers/i915/i915_texture.c src/gallium/drivers/llvmpipe/lp_setup.c src/gallium/drivers/llvmpipe/lp_tex_sample_c.c src/gallium/drivers/llvmpipe/lp_texture.c src/gallium/drivers/softpipe/sp_prim_vbuf.c src/gallium/state_trackers/xorg/xorg_dri2.c src/gallium/winsys/drm/intel/gem/intel_drm_api.c src/gallium/winsys/drm/nouveau/drm/nouveau_drm_api.c src/gallium/winsys/drm/radeon/core/radeon_drm.c src/gallium/winsys/drm/vmware/core/vmw_screen_dri.c src/mesa/state_tracker/st_cb_clear.c | |||
2010-01-21 | llvmpipe: Remove unnecessary headers. | Vinson Lee | |
2010-01-12 | gallium: Rename ALIGN_STACK -> PIPE_ALIGN_STACK for consistency. | José Fonseca | |
2010-01-12 | gallium: Simplify PIPE_ALIGN_VAR. | José Fonseca | |
gcc allows pre-fix variable attributes. Suggested by Ian Romanick. | |||
2010-01-12 | gallium: Generalize the alignment macros to other compilers and any alignment. | José Fonseca | |
2009-11-09 | llvmpipe: Ensure stack variables in unit tests are properly aligned. | José Fonseca | |
2009-10-25 | llvmpipe: Add inlines to quickly generate types matching the native SIMD ↵ | José Fonseca | |
register bitwidth. | |||
2009-10-22 | llvmpipe: Avoid variable size arrays. | José Fonseca | |
Not really variable size, but MSVC still doesn't like them. | |||
2009-09-16 | llvmpipe: Make the code portable for MinGW. | José Fonseca | |
2009-09-14 | llvmpipe: Make lp_type a regular union. | José Fonseca | |
Union not worth the hassle of violating C99 or adding a name to the structure. | |||
2009-08-29 | llvmpipe: Debug helper function to name llvm intermediate values. | José Fonseca | |
2009-08-29 | llvmpipe: Disassemble generated x86 code. | José Fonseca | |
2009-08-29 | llvmpipe: Code generate color masking. | José Fonseca | |
2009-08-29 | llvmpipe: Handle disabled blending too. | José Fonseca | |
2009-08-29 | llvmpipe: SoA blending. | José Fonseca | |
Throughput seems to be 4x higher. | |||
2009-08-29 | llvmpipe: Update blending test. | José Fonseca | |
2009-08-29 | llvmpipe: Normalize the cycles with the number of channel. | José Fonseca | |
So that we have a comparable number for different formats. | |||
2009-08-29 | llvmpipe: Use same type for reference vectors. | José Fonseca | |
2009-08-29 | llvmpipe: Factor out shared test code into a separate module. | José Fonseca | |
2009-08-29 | llvmpipe: Collect richer blend data. | José Fonseca | |
2009-08-29 | llvmpipe: Write data to a tsv file for posterior analysis. | José Fonseca | |
2009-08-29 | llvmpipe: Don't use llvm.readcyclecounter. | José Fonseca | |
LLVM during optimization reorders the rdtsc instructions next to each other, which makes it pretty useless. | |||
2009-08-29 | llvmpipe: Move type support functions into a separate file. | José Fonseca | |
2009-08-29 | llvmpipe: Measure the number of cycles taken for blending. | José Fonseca | |
2009-08-29 | llvmpipe: Get blending of normalized 8bit unsigned integers working. | José Fonseca | |
2009-08-29 | llvmpipe: Specialize arithmetic operations. | José Fonseca | |
2009-08-29 | llvmpipe: Introduce a custom typing system. | José Fonseca | |
Straightforward representation of floating-point/fixed-point/integer, normalized/scaled, signed/unsigned SIMD vector types. | |||
2009-08-29 | llvmpipe: Cleanup test programs. | José Fonseca | |
2009-08-29 | llvmpipe: Blending. | José Fonseca | |
The code |