panfrost/midgard: Handle non-zero component in store

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
This commit is contained in:
Alyssa Rosenzweig 2019-06-17 12:35:57 -07:00
parent 2c9e124f81
commit a3ae3cb8e9
2 changed files with 9 additions and 8 deletions

View file

@ -300,11 +300,8 @@ dEQP-GLES2.functional.shaders.preprocessor.predefined_macros.line_2_fragment
dEQP-GLES2.functional.shaders.preprocessor.predefined_macros.line_2_vertex dEQP-GLES2.functional.shaders.preprocessor.predefined_macros.line_2_vertex
dEQP-GLES2.functional.shaders.random.all_features.fragment.0 dEQP-GLES2.functional.shaders.random.all_features.fragment.0
dEQP-GLES2.functional.shaders.random.all_features.fragment.16 dEQP-GLES2.functional.shaders.random.all_features.fragment.16
dEQP-GLES2.functional.shaders.random.all_features.fragment.45
dEQP-GLES2.functional.shaders.random.all_features.fragment.5 dEQP-GLES2.functional.shaders.random.all_features.fragment.5
dEQP-GLES2.functional.shaders.random.all_features.fragment.6 dEQP-GLES2.functional.shaders.random.all_features.fragment.6
dEQP-GLES2.functional.shaders.random.all_features.fragment.72
dEQP-GLES2.functional.shaders.random.all_features.fragment.77
dEQP-GLES2.functional.shaders.random.all_features.vertex.0 dEQP-GLES2.functional.shaders.random.all_features.vertex.0
dEQP-GLES2.functional.shaders.random.all_features.vertex.17 dEQP-GLES2.functional.shaders.random.all_features.vertex.17
dEQP-GLES2.functional.shaders.random.texture.vertex.10 dEQP-GLES2.functional.shaders.random.texture.vertex.10

View file

@ -1286,14 +1286,18 @@ emit_intrinsic(compiler_context *ctx, nir_intrinsic_instr *instr)
midgard_instruction ins = v_mov(reg, blank_alu_src, SSA_FIXED_REGISTER(26)); midgard_instruction ins = v_mov(reg, blank_alu_src, SSA_FIXED_REGISTER(26));
emit_mir_instruction(ctx, ins); emit_mir_instruction(ctx, ins);
/* We should have been vectorized. That also lets us /* We should have been vectorized, though we don't
* ignore the mask. because the mask component on * currently check that st_vary is emitted only once
* st_vary is (as far as I can tell) ignored [the blob * per slot (this is relevant, since there's not a mask
* sets it to zero] */ * parameter available on the store [set to 0 by the
assert(nir_intrinsic_component(instr) == 0); * blob]). We do respect the component by adjusting the
* swizzle. */
unsigned component = nir_intrinsic_component(instr);
midgard_instruction st = m_st_vary_32(SSA_FIXED_REGISTER(0), offset); midgard_instruction st = m_st_vary_32(SSA_FIXED_REGISTER(0), offset);
st.load_store.unknown = 0x1E9E; /* XXX: What is this? */ st.load_store.unknown = 0x1E9E; /* XXX: What is this? */
st.load_store.swizzle = SWIZZLE_XYZW << (2*component);
emit_mir_instruction(ctx, st); emit_mir_instruction(ctx, st);
} else { } else {
DBG("Unknown store\n"); DBG("Unknown store\n");