nvc0/ir: add f32 long immediate cannot saturate
authorChristoph Bumiller <christoph.bumiller@speed.at>
Sun, 30 Jun 2013 13:23:15 +0000 (15:23 +0200)
committerChristoph Bumiller <e0425955@student.tuwien.ac.at>
Sun, 1 Sep 2013 18:51:56 +0000 (20:51 +0200)
Cc: "9.2" <mesa-stable@lists.freedesktop.org>
src/gallium/drivers/nvc0/codegen/nv50_ir_target_nvc0.cpp

index 2dd7fd22aa4712bc877b777d29a73f520e16433d..4ee1a679c09105a57b3c184fc8ae5d6eb6814938 100644 (file)
@@ -337,6 +337,11 @@ TargetNVC0::insnCanLoad(const Instruction *i, int s,
          // (except if we implement more constraints)
          if (ld->getSrc(0)->asImm()->reg.data.u32 & 0xfff)
             return false;
+      } else
+      if (i->op == OP_ADD && i->sType == TYPE_F32) {
+         // add f32 LIMM cannot saturate
+         if (i->saturate && (reg.data.u32 & 0xfff))
+            return false;
       }
    }
 
@@ -431,6 +436,13 @@ TargetNVC0::isSatSupported(const Instruction *insn) const
    if (insn->dType == TYPE_U32)
       return (insn->op == OP_ADD) || (insn->op == OP_MAD);
 
+   // add f32 LIMM cannot saturate
+   if (insn->op == OP_ADD && insn->sType == TYPE_F32) {
+      if (insn->getSrc(1)->asImm() &&
+          insn->getSrc(1)->reg.data.u32 & 0xfff)
+         return false;
+   }
+
    return insn->dType == TYPE_F32;
 }