Lines Matching defs:block
33 * If a block contains phi nodes, they must come at the start of the block. If a
34 * block contains control flow, it must come after a p_logical_end marker.
35 * Therefore the form of a valid block is:
54 agx_validate_block_form(agx_block *block)
58 agx_foreach_instr_in_block(block, I) {
99 agx_foreach_block(ctx, block) {
100 if (!agx_validate_block_form(block)) {
101 fprintf(stderr, "Invalid block form after %s\n", after);
102 agx_print_block(block, stdout);