ac: remove offen parameter from ac_build_buffer_store_dword

Reviewed-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
Marek Olšák 2017-02-24 20:23:23 +01:00
parent 1bc88c02c0
commit 8cfdbba6c7
4 changed files with 20 additions and 23 deletions

View File

@ -547,10 +547,9 @@ ac_build_buffer_store_dword(struct ac_llvm_context *ctx,
LLVMValueRef rsrc, LLVMValueRef rsrc,
LLVMValueRef vdata, LLVMValueRef vdata,
unsigned num_channels, unsigned num_channels,
LLVMValueRef vaddr, LLVMValueRef voffset,
LLVMValueRef soffset, LLVMValueRef soffset,
unsigned inst_offset, unsigned inst_offset,
bool offen,
bool glc, bool glc,
bool slc) bool slc)
{ {
@ -566,12 +565,12 @@ ac_build_buffer_store_dword(struct ac_llvm_context *ctx,
rsrc, rsrc,
vdata, vdata,
LLVMConstInt(ctx->i32, num_channels, 0), LLVMConstInt(ctx->i32, num_channels, 0),
vaddr, voffset ? voffset : LLVMGetUndef(ctx->i32),
soffset, soffset,
LLVMConstInt(ctx->i32, inst_offset, 0), LLVMConstInt(ctx->i32, inst_offset, 0),
LLVMConstInt(ctx->i32, dfmt[num_channels - 1], 0), LLVMConstInt(ctx->i32, dfmt[num_channels - 1], 0),
LLVMConstInt(ctx->i32, V_008F0C_BUF_NUM_FORMAT_UINT, 0), LLVMConstInt(ctx->i32, V_008F0C_BUF_NUM_FORMAT_UINT, 0),
LLVMConstInt(ctx->i32, offen, 0), LLVMConstInt(ctx->i32, voffset != NULL, 0),
LLVMConstInt(ctx->i32, 0, 0), /* idxen */ LLVMConstInt(ctx->i32, 0, 0), /* idxen */
LLVMConstInt(ctx->i32, glc, 0), LLVMConstInt(ctx->i32, glc, 0),
LLVMConstInt(ctx->i32, slc, 0), LLVMConstInt(ctx->i32, slc, 0),
@ -579,7 +578,7 @@ ac_build_buffer_store_dword(struct ac_llvm_context *ctx,
}; };
/* The instruction offset field has 12 bits */ /* The instruction offset field has 12 bits */
assert(offen || inst_offset < (1 << 12)); assert(voffset || inst_offset < (1 << 12));
/* The intrinsic is overloaded, we need to add a type suffix for overloading to work. */ /* The intrinsic is overloaded, we need to add a type suffix for overloading to work. */
unsigned func = CLAMP(num_channels, 1, 3) - 1; unsigned func = CLAMP(num_channels, 1, 3) - 1;

View File

@ -126,10 +126,9 @@ ac_build_buffer_store_dword(struct ac_llvm_context *ctx,
LLVMValueRef rsrc, LLVMValueRef rsrc,
LLVMValueRef vdata, LLVMValueRef vdata,
unsigned num_channels, unsigned num_channels,
LLVMValueRef vaddr, LLVMValueRef voffset,
LLVMValueRef soffset, LLVMValueRef soffset,
unsigned inst_offset, unsigned inst_offset,
bool offen,
bool glc, bool glc,
bool slc); bool slc);
LLVMValueRef LLVMValueRef

View File

@ -3159,7 +3159,7 @@ visit_emit_vertex(struct nir_to_llvm_context *ctx,
ac_build_buffer_store_dword(&ctx->ac, ctx->gsvs_ring, ac_build_buffer_store_dword(&ctx->ac, ctx->gsvs_ring,
out_val, 1, out_val, 1,
voffset, ctx->gs2vs_offset, 0, voffset, ctx->gs2vs_offset, 0,
1, 1, 1); 1, 1);
} }
idx += slot_inc; idx += slot_inc;
} }
@ -4673,9 +4673,9 @@ handle_es_outputs_post(struct nir_to_llvm_context *ctx)
ac_build_buffer_store_dword(&ctx->ac, ac_build_buffer_store_dword(&ctx->ac,
ctx->esgs_ring, ctx->esgs_ring,
out_val, 1, out_val, 1,
LLVMGetUndef(ctx->i32), ctx->es2gs_offset, NULL, ctx->es2gs_offset,
(4 * param_index + j + start) * 4, (4 * param_index + j + start) * 4,
0, 1, 1); 1, 1);
} }
} }
ctx->shader_info->vs.esgs_itemsize = (max_output_written + 1) * 16; ctx->shader_info->vs.esgs_itemsize = (max_output_written + 1) * 16;

View File

@ -1049,7 +1049,7 @@ static void store_output_tcs(struct lp_build_tgsi_context *bld_base,
if (inst->Dst[0].Register.WriteMask != 0xF && !is_tess_factor) { if (inst->Dst[0].Register.WriteMask != 0xF && !is_tess_factor) {
ac_build_buffer_store_dword(&ctx->ac, buffer, value, 1, ac_build_buffer_store_dword(&ctx->ac, buffer, value, 1,
buf_addr, base, buf_addr, base,
4 * chan_index, 1, 1, 0); 4 * chan_index, 1, 0);
} }
} }
@ -1057,7 +1057,7 @@ static void store_output_tcs(struct lp_build_tgsi_context *bld_base,
LLVMValueRef value = lp_build_gather_values(bld_base->base.gallivm, LLVMValueRef value = lp_build_gather_values(bld_base->base.gallivm,
values, 4); values, 4);
ac_build_buffer_store_dword(&ctx->ac, buffer, value, 4, buf_addr, ac_build_buffer_store_dword(&ctx->ac, buffer, value, 4, buf_addr,
base, 0, 1, 1, 0); base, 0, 1, 0);
} }
} }
@ -2087,7 +2087,7 @@ static void emit_streamout_output(struct si_shader_context *ctx,
vdata, num_comps, vdata, num_comps,
so_write_offsets[buf_idx], so_write_offsets[buf_idx],
LLVMConstInt(ctx->i32, 0, 0), LLVMConstInt(ctx->i32, 0, 0),
stream_out->dst_offset * 4, 1, 1, 1); stream_out->dst_offset * 4, 1, 1);
} }
/** /**
@ -2412,7 +2412,7 @@ static void si_copy_tcs_inputs(struct lp_build_tgsi_context *bld_base)
lds_ptr); lds_ptr);
ac_build_buffer_store_dword(&ctx->ac, buffer, value, 4, buffer_addr, ac_build_buffer_store_dword(&ctx->ac, buffer, value, 4, buffer_addr,
buffer_offset, 0, 1, 1, 0); buffer_offset, 0, 1, 0);
} }
} }
@ -2527,18 +2527,18 @@ static void si_write_tess_factors(struct lp_build_tgsi_context *bld_base,
ac_build_buffer_store_dword(&ctx->ac, buffer, ac_build_buffer_store_dword(&ctx->ac, buffer,
lp_build_const_int32(gallivm, 0x80000000), lp_build_const_int32(gallivm, 0x80000000),
1, lp_build_const_int32(gallivm, 0), tf_base, 1, lp_build_const_int32(gallivm, 0), tf_base,
0, 1, 1, 0); 0, 1, 0);
lp_build_endif(&inner_if_ctx); lp_build_endif(&inner_if_ctx);
/* Store the tessellation factors. */ /* Store the tessellation factors. */
ac_build_buffer_store_dword(&ctx->ac, buffer, vec0, ac_build_buffer_store_dword(&ctx->ac, buffer, vec0,
MIN2(stride, 4), byteoffset, tf_base, MIN2(stride, 4), byteoffset, tf_base,
4, 1, 1, 0); 4, 1, 0);
if (vec1) if (vec1)
ac_build_buffer_store_dword(&ctx->ac, buffer, vec1, ac_build_buffer_store_dword(&ctx->ac, buffer, vec1,
stride - 4, byteoffset, tf_base, stride - 4, byteoffset, tf_base,
20, 1, 1, 0); 20, 1, 0);
/* Store the tess factors into the offchip buffer if TES reads them. */ /* Store the tess factors into the offchip buffer if TES reads them. */
if (shader->key.part.tcs.epilog.tes_reads_tess_factors) { if (shader->key.part.tcs.epilog.tes_reads_tess_factors) {
@ -2560,7 +2560,7 @@ static void si_write_tess_factors(struct lp_build_tgsi_context *bld_base,
ac_build_buffer_store_dword(&ctx->ac, buf, outer_vec, ac_build_buffer_store_dword(&ctx->ac, buf, outer_vec,
outer_comps, tf_outer_offset, outer_comps, tf_outer_offset,
base, 0, 1, 1, 0); base, 0, 1, 0);
if (inner_comps) { if (inner_comps) {
param_inner = si_shader_io_get_unique_index( param_inner = si_shader_io_get_unique_index(
TGSI_SEMANTIC_TESSINNER, 0); TGSI_SEMANTIC_TESSINNER, 0);
@ -2571,7 +2571,7 @@ static void si_write_tess_factors(struct lp_build_tgsi_context *bld_base,
lp_build_gather_values(gallivm, inner, inner_comps); lp_build_gather_values(gallivm, inner, inner_comps);
ac_build_buffer_store_dword(&ctx->ac, buf, inner_vec, ac_build_buffer_store_dword(&ctx->ac, buf, inner_vec,
inner_comps, tf_inner_offset, inner_comps, tf_inner_offset,
base, 0, 1, 1, 0); base, 0, 1, 0);
} }
} }
@ -2693,10 +2693,9 @@ static void si_llvm_emit_es_epilogue(struct lp_build_tgsi_context *bld_base)
ac_build_buffer_store_dword(&ctx->ac, ac_build_buffer_store_dword(&ctx->ac,
ctx->esgs_ring, ctx->esgs_ring,
out_val, 1, out_val, 1, NULL, soffset,
LLVMGetUndef(ctx->i32), soffset,
(4 * param_index + chan) * 4, (4 * param_index + chan) * 4,
0, 1, 1); 1, 1);
} }
} }
} }
@ -5061,7 +5060,7 @@ static void si_llvm_emit_vertex(
ctx->gsvs_ring[stream], ctx->gsvs_ring[stream],
out_val, 1, out_val, 1,
voffset, soffset, 0, voffset, soffset, 0,
1, 1, 1); 1, 1);
} }
} }