diff options
author | José Fonseca <jfonseca@vmware.com> | 2009-08-25 06:40:22 +0100 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2009-08-25 06:40:22 +0100 |
commit | f77b05e5835475d87d959e813204b4dfde97b361 (patch) | |
tree | e994004cfc0c227038ef3c84d5016664ad8c222e | |
parent | 0a2166f9bda9c28eb5d36b0aa633abae2852ddd7 (diff) |
llvmpipe: Better structure dereference naming.
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_bld_struct.c | 9 | ||||
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_jit.h | 8 |
2 files changed, 11 insertions, 6 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_bld_struct.c b/src/gallium/drivers/llvmpipe/lp_bld_struct.c index 4877c4d3f7..14d2b10df9 100644 --- a/src/gallium/drivers/llvmpipe/lp_bld_struct.c +++ b/src/gallium/drivers/llvmpipe/lp_bld_struct.c @@ -37,6 +37,7 @@ #include "util/u_debug.h" #include "util/u_memory.h" +#include "lp_bld_debug.h" #include "lp_bld_struct.h" @@ -47,8 +48,12 @@ lp_build_struct_get(LLVMBuilderRef builder, const char *name) { LLVMValueRef indices[2]; + LLVMValueRef member_ptr; + LLVMValueRef res; indices[0] = LLVMConstInt(LLVMInt32Type(), 0, 0); indices[1] = LLVMConstInt(LLVMInt32Type(), member, 0); - ptr = LLVMBuildGEP(builder, ptr, indices, Elements(indices), ""); - return LLVMBuildLoad(builder, ptr, name); + member_ptr = LLVMBuildGEP(builder, ptr, indices, Elements(indices), ""); + res = LLVMBuildLoad(builder, member_ptr, ""); + lp_build_name(res, "%s.%s", LLVMGetValueName(ptr), name); + return res; } diff --git a/src/gallium/drivers/llvmpipe/lp_jit.h b/src/gallium/drivers/llvmpipe/lp_jit.h index e7e887fb64..33010ad5fb 100644 --- a/src/gallium/drivers/llvmpipe/lp_jit.h +++ b/src/gallium/drivers/llvmpipe/lp_jit.h @@ -69,16 +69,16 @@ struct lp_jit_context #define lp_jit_context_constants(_builder, _ptr) \ - lp_build_struct_get(_builder, _ptr, 0, "context.constants") + lp_build_struct_get(_builder, _ptr, 0, "constants") #define lp_jit_context_samplers(_builder, _ptr) \ - lp_build_struct_get(_builder, _ptr, 1, "context.samplers") + lp_build_struct_get(_builder, _ptr, 1, "samplers") #define lp_jit_context_alpha_ref_value(_builder, _ptr) \ - lp_build_struct_get(_builder, _ptr, 2, "context.alpha") + lp_build_struct_get(_builder, _ptr, 2, "alpha_ref_value") #define lp_jit_context_blend_color(_builder, _ptr) \ - lp_build_struct_get(_builder, _ptr, 3, "context.blend") + lp_build_struct_get(_builder, _ptr, 3, "blend_color") typedef void |