diff options
author | Brian Paul <[email protected]> | 2009-08-20 10:34:45 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-08-20 10:52:12 -0600 |
commit | 1645adc55155747708f1f5b1c629ac03cc5126df (patch) | |
tree | ca54e8626c2969ddf86732c7f038d252a8b0d731 /src/gallium/auxiliary/tgsi/tgsi_ppc.c | |
parent | 013bd4da1a4c112334c0b658f2506446df3666a6 (diff) |
tgsi: check for SOA dependencies in SSE and PPC code generators
Fall back to interpreter for now. This doesn't happen very often.
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_ppc.c')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_ppc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_ppc.c b/src/gallium/auxiliary/tgsi/tgsi_ppc.c index 3c4dd6e7017..4b1c7d4e01b 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_ppc.c +++ b/src/gallium/auxiliary/tgsi/tgsi_ppc.c @@ -1113,6 +1113,10 @@ emit_instruction(struct gen_context *gen, if (inst->Instruction.Saturate != TGSI_SAT_NONE) return 0; + /* need to use extra temps to fix SOA dependencies : */ + if (tgsi_check_soa_dependencies(inst)) + return FALSE; + switch (inst->Instruction.Opcode) { case TGSI_OPCODE_MOV: case TGSI_OPCODE_SWZ: |