From: Vincent Lejeune Date: Thu, 18 Oct 2012 20:38:16 +0000 (+0200) Subject: r600g: rewrite tgsi-to-llvm load-input to handle fragcoord X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d1eaa9ea70c7c1d77904bedf9cbac2e48bc41de9;p=mesa.git r600g: rewrite tgsi-to-llvm load-input to handle fragcoord Reviewed-by: Tom Stellard --- diff --git a/src/gallium/drivers/r600/r600_llvm.c b/src/gallium/drivers/r600/r600_llvm.c index c6e60afaba3..321966e016b 100644 --- a/src/gallium/drivers/r600/r600_llvm.c +++ b/src/gallium/drivers/r600/r600_llvm.c @@ -66,6 +66,53 @@ static LLVMValueRef llvm_fetch_system_value( return bitcast(bld_base, type, cval); } +static LLVMValueRef +llvm_load_input_helper( + struct radeon_llvm_context * ctx, + const char *intrinsic, unsigned idx) +{ + LLVMValueRef reg = lp_build_const_int32( + ctx->soa.bld_base.base.gallivm, + idx); + return build_intrinsic( + ctx->soa.bld_base.base.gallivm->builder, + intrinsic, + ctx->soa.bld_base.base.elem_type, ®, 1, + LLVMReadNoneAttribute); +} + +static LLVMValueRef +llvm_face_select_helper( + struct radeon_llvm_context * ctx, + const char *intrinsic, unsigned face_register, + unsigned frontcolor_register, unsigned backcolor_regiser) +{ + + LLVMValueRef backcolor = llvm_load_input_helper( + ctx, + "llvm.R600.load.input", + backcolor_regiser); + LLVMValueRef front_color = llvm_load_input_helper( + ctx, + "llvm.R600.load.input", + frontcolor_register); + LLVMValueRef face = llvm_load_input_helper( + ctx, + "llvm.R600.load.input", + face_register); + LLVMValueRef is_face_positive = LLVMBuildFCmp( + ctx->soa.bld_base.base.gallivm->builder, + LLVMRealUGT, face, + lp_build_const_float(ctx->soa.bld_base.base.gallivm, 0.0f), + ""); + return LLVMBuildSelect( + ctx->soa.bld_base.base.gallivm->builder, + is_face_positive, + front_color, + backcolor, + ""); +} + static void llvm_load_input( struct radeon_llvm_context * ctx, unsigned input_index, @@ -77,50 +124,45 @@ static void llvm_load_input( unsigned soa_index = radeon_llvm_reg_index_soa(input_index, chan); - /* The * 4 is assuming that we are in soa mode. */ - LLVMValueRef reg = lp_build_const_int32( - ctx->soa.bld_base.base.gallivm, - soa_index + (ctx->reserved_reg_count * 4)); - ctx->inputs[soa_index] = build_intrinsic( - ctx->soa.bld_base.base.gallivm->builder, + switch (decl->Semantic.Name) { + case TGSI_SEMANTIC_FACE: + ctx->inputs[soa_index] = llvm_load_input_helper(ctx, "llvm.R600.load.input", - ctx->soa.bld_base.base.elem_type, ®, 1, - LLVMReadNoneAttribute); - - if (decl->Semantic.Name == TGSI_SEMANTIC_COLOR && ctx->two_side) { - unsigned back_reg = ctx->r600_inputs[input_index] - .potential_back_facing_reg; - unsigned back_soa_index = radeon_llvm_reg_index_soa( - ctx->r600_inputs[back_reg].gpr - , chan); - LLVMValueRef backcolor_reg = lp_build_const_int32( - ctx->soa.bld_base.base.gallivm, - back_soa_index); - LLVMValueRef backcolor = build_intrinsic( - ctx->soa.bld_base.base.gallivm->builder, + 4 * ctx->face_input); + break; + case TGSI_SEMANTIC_POSITION: + if (ctx->type != TGSI_PROCESSOR_FRAGMENT || chan != 3) { + ctx->inputs[soa_index] = llvm_load_input_helper(ctx, + "llvm.R600.load.input", + soa_index + (ctx->reserved_reg_count * 4)); + } else { + LLVMValueRef w_coord = llvm_load_input_helper(ctx, "llvm.R600.load.input", - ctx->soa.bld_base.base.elem_type, &backcolor_reg, 1, - LLVMReadNoneAttribute); - LLVMValueRef face_reg = lp_build_const_int32( - ctx->soa.bld_base.base.gallivm, - ctx->face_input * 4); - LLVMValueRef face = build_intrinsic( - ctx->soa.bld_base.base.gallivm->builder, + soa_index + (ctx->reserved_reg_count * 4)); + ctx->inputs[soa_index] = LLVMBuildFDiv(ctx->gallivm.builder, + lp_build_const_float(&(ctx->gallivm), 1.0f), w_coord, ""); + } + break; + case TGSI_SEMANTIC_COLOR: + if (ctx->two_side) { + unsigned back_reg = ctx->r600_inputs[input_index] + .potential_back_facing_reg; + unsigned back_soa_index = radeon_llvm_reg_index_soa( + ctx->r600_inputs[back_reg].gpr, + chan); + ctx->inputs[soa_index] = llvm_face_select_helper(ctx, + "llvm.R600.load.input", + 4 * ctx->face_input, + soa_index + 4 * ctx->reserved_reg_count, + back_soa_index); + break; + } + default: + /* The * 4 is assuming that we are in soa mode. */ + ctx->inputs[soa_index] = llvm_load_input_helper(ctx, "llvm.R600.load.input", - ctx->soa.bld_base.base.elem_type, - &face_reg, 1, - LLVMReadNoneAttribute); - LLVMValueRef is_face_positive = LLVMBuildFCmp( - ctx->soa.bld_base.base.gallivm->builder, - LLVMRealUGT, face, - lp_build_const_float(ctx->soa.bld_base.base.gallivm, 0.0f), - ""); - ctx->inputs[soa_index] = LLVMBuildSelect( - ctx->soa.bld_base.base.gallivm->builder, - is_face_positive, - ctx->inputs[soa_index], - backcolor, - ""); + soa_index + (ctx->reserved_reg_count * 4)); + break; } } } diff --git a/src/gallium/drivers/r600/r600_shader.c b/src/gallium/drivers/r600/r600_shader.c index 58b7fb2fb69..c56efda5347 100644 --- a/src/gallium/drivers/r600/r600_shader.c +++ b/src/gallium/drivers/r600/r600_shader.c @@ -1375,7 +1375,7 @@ static int r600_shader_from_tgsi(struct r600_screen *rscreen, if (shader->fs_write_all && rscreen->chip_class >= EVERGREEN) shader->nr_ps_max_color_exports = 8; - if (ctx.fragcoord_input >= 0) { + if (ctx.fragcoord_input >= 0 && !use_llvm) { if (ctx.bc->chip_class == CAYMAN) { for (j = 0 ; j < 4; j++) { struct r600_bytecode_alu alu;