summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary
diff options
context:
space:
mode:
authorZack Rusin <[email protected]>2013-03-26 12:35:45 -0700
committerZack Rusin <[email protected]>2013-03-27 03:53:02 -0700
commit186a6bffdd5792c78dab0be8f986c8c1b0a83db3 (patch)
treebdf2d9866992e1495a9314411b5698d905badd9f /src/gallium/auxiliary
parent10964fc73d8cead8a798c642e6e8fe15e64df95f (diff)
draw/llvm: Cleanup the store debugging code
Signed-off-by: Zack Rusin <[email protected]> Reviewed-by: Brian Paul <[email protected]> Reviewed-by: José Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r--src/gallium/auxiliary/draw/draw_llvm.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/gallium/auxiliary/draw/draw_llvm.c b/src/gallium/auxiliary/draw/draw_llvm.c
index e46195b634e..9ab3a9f8748 100644
--- a/src/gallium/auxiliary/draw/draw_llvm.c
+++ b/src/gallium/auxiliary/draw/draw_llvm.c
@@ -716,13 +716,13 @@ store_aos(struct gallivm_state *gallivm,
indices[1] = index;
indices[2] = lp_build_const_int32(gallivm, 0);
+ data_ptr = LLVMBuildGEP(builder, data_ptr, indices, 3, "");
+ data_ptr = LLVMBuildPointerCast(builder, data_ptr, data_ptr_type, "");
+
#if DEBUG_STORE
lp_build_printf(gallivm, " ---- %p storing attribute %d (io = %p)\n", data_ptr, index, io_ptr);
#endif
- data_ptr = LLVMBuildGEP(builder, data_ptr, indices, 3, "");
- data_ptr = LLVMBuildPointerCast(builder, data_ptr, data_ptr_type, "");
-
/* Unaligned store due to the vertex header */
lp_set_store_alignment(LLVMBuildStore(builder, value, data_ptr), sizeof(float));
}
@@ -826,7 +826,7 @@ store_aos_array(struct gallivm_state *gallivm,
val = adjust_mask(gallivm, val);
LLVMBuildStore(builder, val, id_ptr);
#if DEBUG_STORE
- lp_build_printf(gallivm, "io = %p, index %d\n, clipmask = %x\n",
+ lp_build_printf(gallivm, "io = %p, index %d, clipmask = %x\n",
io_ptrs[i], inds[i], val);
#endif
}
@@ -1290,9 +1290,6 @@ draw_gs_llvm_end_primitive(struct lp_build_tgsi_context * bld_base,
LLVMValueRef num_vertices =
LLVMBuildExtractElement(builder, verts_per_prim_vec, ind, "");
- /*lp_build_printf(gallivm, "XXXX emitting vertices, %d\n\n",
- num_vertices);*/
-
store_ptr = LLVMBuildGEP(builder, prim_lengts_ptr, &prims_emitted, 1, "");
store_ptr = LLVMBuildLoad(builder, store_ptr, "");
store_ptr = LLVMBuildGEP(builder, store_ptr, &ind, 1, "");
@@ -1318,7 +1315,7 @@ draw_gs_llvm_epilogue(struct lp_build_tgsi_context * bld_base,
emitted_verts_ptr = LLVMBuildGEP(builder, emitted_verts_ptr, &zero, 0, "");
emitted_prims_ptr = LLVMBuildGEP(builder, emitted_prims_ptr, &zero, 0, "");
-
+
LLVMBuildStore(builder, total_emitted_vertices_vec, emitted_verts_ptr);
LLVMBuildStore(builder, emitted_prims_vec, emitted_prims_ptr);
}