Lines Matching refs:qblock
352 struct qblock { struct
358 struct qblock *successors[2]; argument
505 struct qblock *cur_block;
506 struct qblock *loop_cont_block;
507 struct qblock *loop_break_block;
632 struct qblock *vir_new_block(struct v3d_compile *c);
633 void vir_set_emit_block(struct v3d_compile *c, struct qblock *block);
634 void vir_link_blocks(struct qblock *predecessor, struct qblock *successor);
635 struct qblock *vir_entry_block(struct v3d_compile *c);
636 struct qblock *vir_exit_block(struct v3d_compile *c);
951 list_for_each_entry(struct qblock, block, &c->blocks, link)
954 list_for_each_entry_rev(struct qblock, block, &c->blocks, link)
958 for (struct qblock *succ = block->successors[0]; \