mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-29 08:00:12 +01:00
freedreno/ir3: move ir3_pointer_size()
Move to ir3_compiler so it doesn't depend on the compile context. Prep work for moving constant state from variant (where we have compile context) to shader (where we do not). Signed-off-by: Rob Clark <robdclark@chromium.org>
This commit is contained in:
parent
2d2927938f
commit
ef3eecd66b
4 changed files with 9 additions and 9 deletions
|
|
@ -74,6 +74,13 @@ struct ir3_compiler * ir3_compiler_create(struct fd_device *dev, uint32_t gpu_id
|
|||
int ir3_compile_shader_nir(struct ir3_compiler *compiler,
|
||||
struct ir3_shader_variant *so);
|
||||
|
||||
/* gpu pointer size in units of 32bit registers/slots */
|
||||
static inline
|
||||
unsigned ir3_pointer_size(struct ir3_compiler *compiler)
|
||||
{
|
||||
return (compiler->gpu_id >= 500) ? 2 : 1;
|
||||
}
|
||||
|
||||
enum ir3_shader_debug {
|
||||
IR3_DBG_SHADER_VS = 0x01,
|
||||
IR3_DBG_SHADER_FS = 0x02,
|
||||
|
|
|
|||
|
|
@ -684,7 +684,7 @@ emit_intrinsic_load_ubo(struct ir3_context *ctx, nir_intrinsic_instr *intr,
|
|||
* account for nir_lower_uniforms_to_ubo rebasing the UBOs such that UBO 0
|
||||
* is the uniforms: */
|
||||
unsigned ubo = regid(ctx->so->constbase.ubo, 0) - 2;
|
||||
const unsigned ptrsz = ir3_pointer_size(ctx);
|
||||
const unsigned ptrsz = ir3_pointer_size(ctx->compiler);
|
||||
|
||||
int off = 0;
|
||||
|
||||
|
|
|
|||
|
|
@ -128,7 +128,7 @@ ir3_context_init(struct ir3_compiler *compiler,
|
|||
*/
|
||||
debug_assert((ctx->so->shader->ubo_state.size % 16) == 0);
|
||||
unsigned constoff = align(ctx->so->shader->ubo_state.size / 16, 4);
|
||||
unsigned ptrsz = ir3_pointer_size(ctx);
|
||||
unsigned ptrsz = ir3_pointer_size(ctx->compiler);
|
||||
|
||||
memset(&so->constbase, ~0, sizeof(so->constbase));
|
||||
|
||||
|
|
|
|||
|
|
@ -140,13 +140,6 @@ struct ir3_context * ir3_context_init(struct ir3_compiler *compiler,
|
|||
struct ir3_shader_variant *so);
|
||||
void ir3_context_free(struct ir3_context *ctx);
|
||||
|
||||
/* gpu pointer size in units of 32bit registers/slots */
|
||||
static inline
|
||||
unsigned ir3_pointer_size(struct ir3_context *ctx)
|
||||
{
|
||||
return (ctx->compiler->gpu_id >= 500) ? 2 : 1;
|
||||
}
|
||||
|
||||
struct ir3_instruction ** ir3_get_dst_ssa(struct ir3_context *ctx, nir_ssa_def *dst, unsigned n);
|
||||
struct ir3_instruction ** ir3_get_dst(struct ir3_context *ctx, nir_dest *dst, unsigned n);
|
||||
struct ir3_instruction * const * ir3_get_src(struct ir3_context *ctx, nir_src *src);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue