Home | History | Annotate | Download | only in radeonsi

Lines Matching refs:next_block

50 	LLVMBasicBlockRef next_block;
359 flow->next_block = NULL;
1092 flow->next_block, name);
1116 flow->next_block = append_basic_block(ctx, "ENDLOOP");
1130 LLVMBuildBr(gallivm->builder, flow->next_block);
1158 LLVMPositionBuilderAtEnd(gallivm->builder, current_branch->next_block);
1159 set_basicblock_name(current_branch->next_block, "else", bld_base->pc);
1161 current_branch->next_block = endif_block;
1174 emit_default_branch(gallivm->builder, current_branch->next_block);
1175 LLVMPositionBuilderAtEnd(gallivm->builder, current_branch->next_block);
1176 set_basicblock_name(current_branch->next_block, "endif", bld_base->pc);
1193 LLVMPositionBuilderAtEnd(gallivm->builder, current_loop->next_block);
1194 set_basicblock_name(current_loop->next_block, "endloop", bld_base->pc);
1209 flow->next_block = append_basic_block(ctx, "ELSE");
1211 LLVMBuildCondBr(gallivm->builder, cond, if_block, flow->next_block);