gm107/ir: add a legalize SSA pass for PFETCH
authorSamuel Pitoiset <samuel.pitoiset@gmail.com>
Wed, 20 Jul 2016 23:18:45 +0000 (01:18 +0200)
committerSamuel Pitoiset <samuel.pitoiset@gmail.com>
Wed, 27 Jul 2016 21:18:58 +0000 (23:18 +0200)
PFETCH, actually ISBERD on GM107+ ISA only accepts a GPR for src0.

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_gm107.cpp
src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_gm107.h
src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.h
src/gallium/drivers/nouveau/codegen/nv50_ir_target_gm107.cpp

index a5deaef14e036beb26c0d96cececdd93b81a05b9..84ef4e0fb7d38f5e73884863b80bb1ee787b9b8c 100644 (file)
@@ -41,6 +41,39 @@ namespace nv50_ir {
    ((QOP_##q << 6) | (QOP_##r << 4) |           \
     (QOP_##s << 2) | (QOP_##t << 0))
 
+void
+GM107LegalizeSSA::handlePFETCH(Instruction *i)
+{
+   Value *src0;
+
+   if (i->src(0).getFile() == FILE_GPR && !i->srcExists(1))
+      return;
+
+   bld.setPosition(i, false);
+   src0 = bld.getSSA();
+
+   if (i->srcExists(1))
+      bld.mkOp2(OP_ADD , TYPE_U32, src0, i->getSrc(0), i->getSrc(1));
+   else
+      bld.mkOp1(OP_MOV , TYPE_U32, src0, i->getSrc(0));
+
+   i->setSrc(0, src0);
+   i->setSrc(1, NULL);
+}
+
+bool
+GM107LegalizeSSA::visit(Instruction *i)
+{
+   switch (i->op) {
+   case OP_PFETCH:
+      handlePFETCH(i);
+      break;
+   default:
+      break;
+   }
+   return true;
+}
+
 bool
 GM107LoweringPass::handleManualTXD(TexInstruction *i)
 {
index 036abf055ed47943c2ceb9125904b67e97bd5985..81749bf57edf9ddeae7e819870770945ca36d41c 100644 (file)
@@ -15,4 +15,12 @@ private:
    bool handlePOPCNT(Instruction *);
 };
 
+class GM107LegalizeSSA : public NVC0LegalizeSSA
+{
+private:
+   virtual bool visit(Instruction *);
+
+   void handlePFETCH(Instruction *);
+};
+
 } // namespace nv50_ir
index 104bc0361fe2bf7599ecc96b18ae603053117c20..6f4da8ca99cb7dfbceda8240a7ab7bb11e3442f3 100644 (file)
@@ -36,7 +36,7 @@ private:
    void handleRCPRSQ(Instruction *); // double precision float recip/rsqrt
    void handleFTZ(Instruction *);
 
-private:
+protected:
    BuildUtil bld;
 };
 
index 92caeb22c12992870912ae3a7035e657b865d87c..6b8f767a3c00f4f75abf6b615ea45f3d2b35cc75 100644 (file)
@@ -80,7 +80,7 @@ TargetGM107::runLegalizePass(Program *prog, CGStage stage) const
       return pass.run(prog, false, true);
    } else
    if (stage == CG_STAGE_SSA) {
-      NVC0LegalizeSSA pass;
+      GM107LegalizeSSA pass;
       return pass.run(prog, false, true);
    }
    return false;