Searched refs:branch_depth (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_program_print.c259 static unsigned update_branch_depth(rc_opcode opcode, unsigned *branch_depth) argument
264 return (*branch_depth)++ * 2;
268 assert(*branch_depth > 0);
269 return --(*branch_depth) * 2;
272 assert(*branch_depth > 0);
273 return (*branch_depth - 1) * 2;
276 return *branch_depth * 2;
280 static void rc_print_normal_instruction(FILE * f, struct rc_instruction * inst, unsigned *branch_depth) argument
284 unsigned spaces = update_branch_depth(inst->U.I.Opcode, branch_depth);
341 static void rc_print_pair_instruction(FILE * f, struct rc_instruction * fullinst, unsigned *branch_depth) argument
469 unsigned branch_depth = 0; local
[all...]
H A Dradeon_dataflow.c640 unsigned int * branch_depth)
642 (*branch_depth)++;
643 if (*branch_depth > R500_PFS_MAX_BRANCH_DEPTH_FULL) {
647 d->BranchMasks[*branch_depth].IfWriteMask =
653 unsigned int * branch_depth)
655 struct branch_write_mask * masks = &d->BranchMasks[*branch_depth];
677 (*branch_depth)--;
688 unsigned int branch_depth = 0; local
713 push_branch_mask(d, &branch_depth);
721 pop_branch_mask(d, &branch_depth);
638 push_branch_mask( struct get_readers_callback_data * d, unsigned int * branch_depth) argument
651 pop_branch_mask( struct get_readers_callback_data * d, unsigned int * branch_depth) argument
[all...]
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_program_print.c259 static unsigned update_branch_depth(rc_opcode opcode, unsigned *branch_depth) argument
264 return (*branch_depth)++ * 2;
268 assert(*branch_depth > 0);
269 return --(*branch_depth) * 2;
272 assert(*branch_depth > 0);
273 return (*branch_depth - 1) * 2;
276 return *branch_depth * 2;
280 static void rc_print_normal_instruction(FILE * f, struct rc_instruction * inst, unsigned *branch_depth) argument
284 unsigned spaces = update_branch_depth(inst->U.I.Opcode, branch_depth);
341 static void rc_print_pair_instruction(FILE * f, struct rc_instruction * fullinst, unsigned *branch_depth) argument
469 unsigned branch_depth = 0; local
[all...]
H A Dradeon_dataflow.c640 unsigned int * branch_depth)
642 (*branch_depth)++;
643 if (*branch_depth > R500_PFS_MAX_BRANCH_DEPTH_FULL) {
647 d->BranchMasks[*branch_depth].IfWriteMask =
653 unsigned int * branch_depth)
655 struct branch_write_mask * masks = &d->BranchMasks[*branch_depth];
677 (*branch_depth)--;
688 unsigned int branch_depth = 0; local
713 push_branch_mask(d, &branch_depth);
721 pop_branch_mask(d, &branch_depth);
638 push_branch_mask( struct get_readers_callback_data * d, unsigned int * branch_depth) argument
651 pop_branch_mask( struct get_readers_callback_data * d, unsigned int * branch_depth) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A Dradeon_llvm.h106 unsigned branch_depth; member in struct:radeon_llvm_context
H A Dradeon_setup_tgsi_llvm.c51 return ctx->branch_depth > 0 ?
52 ctx->branch + (ctx->branch_depth - 1) : NULL;
452 ctx->branch_depth--;
495 ctx->branch_depth++;
496 ctx->branch[ctx->branch_depth - 1].endif_block = endif_block;
497 ctx->branch[ctx->branch_depth - 1].if_block = if_block;
498 ctx->branch[ctx->branch_depth - 1].else_block = else_block;
499 ctx->branch[ctx->branch_depth - 1].has_else = 0;
/external/mesa3d/src/gallium/drivers/radeon/
H A Dradeon_llvm.h106 unsigned branch_depth; member in struct:radeon_llvm_context
H A Dradeon_setup_tgsi_llvm.c51 return ctx->branch_depth > 0 ?
52 ctx->branch + (ctx->branch_depth - 1) : NULL;
452 ctx->branch_depth--;
495 ctx->branch_depth++;
496 ctx->branch[ctx->branch_depth - 1].endif_block = endif_block;
497 ctx->branch[ctx->branch_depth - 1].if_block = if_block;
498 ctx->branch[ctx->branch_depth - 1].else_block = else_block;
499 ctx->branch[ctx->branch_depth - 1].has_else = 0;

Completed in 232 milliseconds