summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/gallivm/lp_bld_type.c
AgeCommit message (Collapse)Author
2010-12-02gallivm/llvmpipe: remove lp_build_context::builderBrian Paul
The field was redundant. Use the gallivm->builder value instead.
2010-11-30gallivm/llvmpipe: squash merge of the llvm-context branchBrian 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-11-04gallivm: added lp_elem_type()Brian Paul
2010-06-02llvmpipe: Store often used LLVM types in the lp_build_context.José Fonseca
2010-05-20gallivm: handle pointer types in lp_dump_llvmtype()Brian Paul
2010-05-14gallivm: added some vector length sanity checksBrian Paul
2010-05-14gallivm: added lp_sizeof_llvm_type()Brian Paul
2010-05-13gallivm: added lp_dump_llvmtype() debug helperBrian Paul
2010-05-12gallivm: comment out LLVMUnionTypeKind caseBrian Paul
2010-05-12gallivm: added lp_typekind_name() util functionBrian Paul
2010-03-11gallivm: Handle scalar types in lp_build_*_type.José Fonseca
2010-03-04gallivm: clarify unsigned vs. signed integer type constructionBrian Paul
The lp_int_type() function was creating an unsigned type. So rename that function to lp_uint_type() and create new lp_int_type() that creates a signed type.
2010-02-08llvmpipe: export the tgsi translation code to a common layerZack 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.