r600g/compute Improve debugging output

This commit is contained in:
Tom Stellard 2013-09-17 15:47:34 -07:00
parent de1de88dfc
commit 13ac38b4ef
2 changed files with 7 additions and 5 deletions

View file

@ -161,8 +161,9 @@ struct compute_memory_item* compute_memory_postalloc_chunk(
void compute_memory_grow_pool(struct compute_memory_pool* pool,
struct pipe_context * pipe, int new_size_in_dw)
{
COMPUTE_DBG(pool->screen, "* compute_memory_grow_pool() new_size_in_dw = %d\n",
new_size_in_dw);
COMPUTE_DBG(pool->screen, "* compute_memory_grow_pool() "
"new_size_in_dw = %d (%d bytes)\n",
new_size_in_dw, new_size_in_dw * 4);
assert(new_size_in_dw >= pool->size_in_dw);
@ -171,7 +172,8 @@ void compute_memory_grow_pool(struct compute_memory_pool* pool,
} else {
new_size_in_dw += 1024 - (new_size_in_dw % 1024);
COMPUTE_DBG(pool->screen, " Aligned size = %d\n", new_size_in_dw);
COMPUTE_DBG(pool->screen, " Aligned size = %d (%d bytes)\n",
new_size_in_dw, new_size_in_dw * 4);
compute_memory_shadow(pool, pipe, 1);
pool->shadow = realloc(pool->shadow, new_size_in_dw*4);

View file

@ -934,8 +934,8 @@ void *r600_compute_global_transfer_map(
"width = %u, height = %u, depth = %u)\n", level, usage,
box->x, box->y, box->z, box->width, box->height,
box->depth);
COMPUTE_DBG(rctx->screen, "Buffer: %u (buffer offset in global memory) "
"+ %u (box.x)\n", buffer->chunk->start_in_dw, box->x);
COMPUTE_DBG(rctx->screen, "Buffer id = %u offset = "
"%u (box.x)\n", buffer->chunk->id, box->x);
compute_memory_finalize_pending(pool, ctx_);