radv/tess: don't need to look in constant for vertices_per_patch
authorDave Airlie <airlied@redhat.com>
Mon, 19 Feb 2018 04:55:52 +0000 (04:55 +0000)
committerDave Airlie <airlied@redhat.com>
Wed, 21 Feb 2018 00:01:28 +0000 (00:01 +0000)
This just avoids passing this value via user sgprs.

Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
src/amd/common/ac_nir_to_llvm.c
src/amd/vulkan/radv_pipeline.c

index ec4dd098ed135b8153f8acd778a28a532d39fd61..351e6fa9efc54ca6d024a363378de1d3955c67a4 100644 (file)
@@ -127,6 +127,7 @@ struct radv_shader_context {
 
        uint32_t tcs_patch_outputs_read;
        uint64_t tcs_outputs_read;
+       uint32_t tcs_vertices_per_patch;
 };
 
 static inline struct radv_shader_context *
@@ -2781,7 +2782,7 @@ static LLVMValueRef get_tcs_tes_buffer_address(struct radv_shader_context *ctx,
        LLVMValueRef param_stride, constant16;
        LLVMValueRef rel_patch_id = get_rel_patch_id(ctx);
 
-       vertices_per_patch = unpack_param(&ctx->ac, ctx->tcs_offchip_layout, 9, 6);
+       vertices_per_patch = LLVMConstInt(ctx->ac.i32, ctx->tcs_vertices_per_patch, false);
        num_patches = unpack_param(&ctx->ac, ctx->tcs_offchip_layout, 0, 9);
 
        constant16 = LLVMConstInt(ctx->ac.i32, 16, false);
@@ -6905,11 +6906,13 @@ LLVMModuleRef ac_translate_nir_to_llvm(LLVMTargetMachineRef tm,
                        ctx.abi.load_tess_varyings = load_tcs_varyings;
                        ctx.abi.load_patch_vertices_in = load_patch_vertices_in;
                        ctx.abi.store_tcs_outputs = store_tcs_output;
+                       ctx.tcs_vertices_per_patch = shaders[i]->info.tess.tcs_vertices_out;
                } else if (shaders[i]->info.stage == MESA_SHADER_TESS_EVAL) {
                        ctx.tes_primitive_mode = shaders[i]->info.tess.primitive_mode;
                        ctx.abi.load_tess_varyings = load_tes_input;
                        ctx.abi.load_tess_coord = load_tess_coord;
                        ctx.abi.load_patch_vertices_in = load_patch_vertices_in;
+                       ctx.tcs_vertices_per_patch = shaders[i]->info.tess.tcs_vertices_out;
                } else if (shaders[i]->info.stage == MESA_SHADER_VERTEX) {
                        if (shader_info->info.vs.needs_instance_id) {
                                if (ctx.options->key.vs.as_ls) {
index 88646fda2fa8b3ca8ecb95ef26371881e1b41f01..a2dec0e3bdda91dbcc02ae9f1e9428abfe797ba0 100644 (file)
@@ -1391,7 +1391,7 @@ calculate_tess_state(struct radv_pipeline *pipeline,
        tess.tcs_out_offsets = (output_patch0_offset / 16) |
                ((perpatch_output_offset / 16) << 16);
        tess.offchip_layout = (pervertex_output_patch_size * num_patches << 16) |
-               (num_tcs_output_cp << 9) | num_patches;
+               num_patches;
 
        tess.ls_hs_config = S_028B58_NUM_PATCHES(num_patches) |
                S_028B58_HS_NUM_INPUT_CP(num_tcs_input_cp) |