OSDN Git Service

llvmpipe: export the tgsi translation code to a common layer
authorZack Rusin <zackr@vmware.com>
Mon, 8 Feb 2010 23:05:22 +0000 (18:05 -0500)
committerZack Rusin <zackr@vmware.com>
Mon, 8 Feb 2010 23:22:11 +0000 (18:22 -0500)
commitc61bf363937f40624a5632745630d4f2b9907082
treebb2388269117d6783400e17957ff8b0a68dfb5b5
parent74d23546c79fe8c8d87588fa423040e3b19a8fc6
llvmpipe: export the tgsi translation code to a common layer

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.
80 files changed:
SConstruct
configs/linux-llvm
src/gallium/auxiliary/Makefile
src/gallium/auxiliary/SConscript
src/gallium/auxiliary/draw/draw_private.h
src/gallium/auxiliary/draw/draw_vs_llvm.c
src/gallium/auxiliary/gallivm/gallivm.cpp [deleted file]
src/gallium/auxiliary/gallivm/gallivm.h [deleted file]
src/gallium/auxiliary/gallivm/gallivm_builtins.cpp [deleted file]
src/gallium/auxiliary/gallivm/gallivm_cpu.cpp [deleted file]
src/gallium/auxiliary/gallivm/gallivm_p.h [deleted file]
src/gallium/auxiliary/gallivm/instructions.cpp [deleted file]
src/gallium/auxiliary/gallivm/instructions.h [deleted file]
src/gallium/auxiliary/gallivm/instructionssoa.cpp [deleted file]
src/gallium/auxiliary/gallivm/instructionssoa.h [deleted file]
src/gallium/auxiliary/gallivm/llvm_builtins.c [deleted file]
src/gallium/auxiliary/gallivm/loweringpass.cpp [deleted file]
src/gallium/auxiliary/gallivm/loweringpass.h [deleted file]
src/gallium/auxiliary/gallivm/lp_bld_alpha.c [moved from src/gallium/drivers/llvmpipe/lp_bld_alpha.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_alpha.h [moved from src/gallium/drivers/llvmpipe/lp_bld_alpha.h with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_arit.c [moved from src/gallium/drivers/llvmpipe/lp_bld_arit.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_arit.h [moved from src/gallium/drivers/llvmpipe/lp_bld_arit.h with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_blend.h [moved from src/gallium/drivers/llvmpipe/lp_bld_blend.h with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_blend_aos.c [moved from src/gallium/drivers/llvmpipe/lp_bld_blend_aos.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_blend_logicop.c [moved from src/gallium/drivers/llvmpipe/lp_bld_blend_logicop.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_blend_soa.c [moved from src/gallium/drivers/llvmpipe/lp_bld_blend_soa.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_const.c [moved from src/gallium/drivers/llvmpipe/lp_bld_const.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_const.h [moved from src/gallium/drivers/llvmpipe/lp_bld_const.h with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_conv.c [moved from src/gallium/drivers/llvmpipe/lp_bld_conv.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_conv.h [moved from src/gallium/drivers/llvmpipe/lp_bld_conv.h with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_debug.c [moved from src/gallium/drivers/llvmpipe/lp_bld_debug.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_debug.h [moved from src/gallium/drivers/llvmpipe/lp_bld_debug.h with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_depth.c [moved from src/gallium/drivers/llvmpipe/lp_bld_depth.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_depth.h [moved from src/gallium/drivers/llvmpipe/lp_bld_depth.h with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_flow.c [moved from src/gallium/drivers/llvmpipe/lp_bld_flow.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_flow.h [moved from src/gallium/drivers/llvmpipe/lp_bld_flow.h with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_format.h [moved from src/gallium/drivers/llvmpipe/lp_bld_format.h with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_format_aos.c [moved from src/gallium/drivers/llvmpipe/lp_bld_format_aos.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_format_query.c [moved from src/gallium/drivers/llvmpipe/lp_bld_format_query.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_format_soa.c [moved from src/gallium/drivers/llvmpipe/lp_bld_format_soa.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_interp.c [moved from src/gallium/drivers/llvmpipe/lp_bld_interp.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_interp.h [moved from src/gallium/drivers/llvmpipe/lp_bld_interp.h with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_intr.c [moved from src/gallium/drivers/llvmpipe/lp_bld_intr.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_intr.h [moved from src/gallium/drivers/llvmpipe/lp_bld_intr.h with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_logic.c [moved from src/gallium/drivers/llvmpipe/lp_bld_logic.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_logic.h [moved from src/gallium/drivers/llvmpipe/lp_bld_logic.h with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_misc.cpp [moved from src/gallium/drivers/llvmpipe/lp_bld_misc.cpp with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_misc.h [moved from src/gallium/drivers/llvmpipe/lp_bld_misc.h with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_pack.c [moved from src/gallium/drivers/llvmpipe/lp_bld_pack.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_pack.h [moved from src/gallium/drivers/llvmpipe/lp_bld_pack.h with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_sample.c [moved from src/gallium/drivers/llvmpipe/lp_bld_sample.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_sample.h [moved from src/gallium/drivers/llvmpipe/lp_bld_sample.h with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c [moved from src/gallium/drivers/llvmpipe/lp_bld_sample_soa.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_struct.c [moved from src/gallium/drivers/llvmpipe/lp_bld_struct.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_struct.h [moved from src/gallium/drivers/llvmpipe/lp_bld_struct.h with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_swizzle.c [moved from src/gallium/drivers/llvmpipe/lp_bld_swizzle.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_swizzle.h [moved from src/gallium/drivers/llvmpipe/lp_bld_swizzle.h with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_tgsi.h [moved from src/gallium/drivers/llvmpipe/lp_bld_tgsi.h with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c [moved from src/gallium/drivers/llvmpipe/lp_bld_tgsi_soa.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_type.c [moved from src/gallium/drivers/llvmpipe/lp_bld_type.c with 100% similarity]
src/gallium/auxiliary/gallivm/lp_bld_type.h [moved from src/gallium/drivers/llvmpipe/lp_bld_type.h with 100% similarity]
src/gallium/auxiliary/gallivm/soabuiltins.c [deleted file]
src/gallium/auxiliary/gallivm/storage.cpp [deleted file]
src/gallium/auxiliary/gallivm/storage.h [deleted file]
src/gallium/auxiliary/gallivm/storagesoa.cpp [deleted file]
src/gallium/auxiliary/gallivm/storagesoa.h [deleted file]
src/gallium/auxiliary/gallivm/tgsitollvm.cpp [deleted file]
src/gallium/auxiliary/gallivm/tgsitollvm.h [deleted file]
src/gallium/drivers/llvmpipe/SConscript
src/gallium/drivers/llvmpipe/lp_jit.c
src/gallium/drivers/llvmpipe/lp_jit.h
src/gallium/drivers/llvmpipe/lp_rast.c
src/gallium/drivers/llvmpipe/lp_state.h
src/gallium/drivers/llvmpipe/lp_state_fs.c
src/gallium/drivers/llvmpipe/lp_test.h
src/gallium/drivers/llvmpipe/lp_test_blend.c
src/gallium/drivers/llvmpipe/lp_test_conv.c
src/gallium/drivers/llvmpipe/lp_test_format.c
src/gallium/drivers/llvmpipe/lp_test_main.c
src/gallium/drivers/llvmpipe/lp_tex_sample_llvm.c