Lines Matching defs:qblock
126 /** Entry in qblock->instructions */
377 struct qblock {
383 struct qblock *successors[2];
445 vir_before_block(struct qblock *block)
451 vir_after_block(struct qblock *block)
599 struct qblock *cur_block;
600 struct qblock *loop_cont_block;
601 struct qblock *loop_break_block;
733 struct qblock *vir_new_block(struct v3d_compile *c);
734 void vir_set_emit_block(struct v3d_compile *c, struct qblock *block);
735 void vir_link_blocks(struct qblock *predecessor, struct qblock *successor);
736 struct qblock *vir_entry_block(struct v3d_compile *c);
737 struct qblock *vir_exit_block(struct v3d_compile *c);
1109 list_for_each_entry(struct qblock, block, &c->blocks, link)
1112 list_for_each_entry_rev(struct qblock, block, &c->blocks, link)
1116 for (struct qblock *succ = block->successors[0]; \