HomeSort by relevance Sort by last modified time
    Searched refs:branch_depth (Results 1 - 4 of 4) sorted by null

  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program_print.c 259 static unsigned update_branch_depth(rc_opcode opcode, unsigned *branch_depth)
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)
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)
469 unsigned branch_depth = 0; local
    [all...]
radeon_dataflow.c 640 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);
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_llvm.h 106 unsigned branch_depth; member in struct:radeon_llvm_context
radeon_setup_tgsi_llvm.c 51 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;
    [all...]

Completed in 440 milliseconds