gv100/ir: fix shift lowering
authorKarol Herbst <kherbst@redhat.com>
Sat, 20 Jun 2020 14:52:44 +0000 (16:52 +0200)
committerKarol Herbst <kherbst@redhat.com>
Sun, 21 Jun 2020 22:55:57 +0000 (00:55 +0200)
Wrap was ignored. Also merge functions to share code.

Signed-off-by: Karol Herbst <kherbst@redhat.com>
Reviewed-by: Ben Skeggs <bskeggs@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5576>

src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_gv100.cpp
src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_gv100.h

index 4b6df0db588fc0372eaa49e475d283fb6b7eb286..953f082a06af6e74685b28f1a6f332181ea8d005 100644 (file)
@@ -206,24 +206,25 @@ GV100LegalizeSSA::handleSHFL(Instruction *i)
 }
 
 bool
-GV100LegalizeSSA::handleSHL(Instruction *i)
+GV100LegalizeSSA::handleShift(Instruction *i)
 {
-   if (i->src(0).getFile() != FILE_GPR) {
-      bld.mkOp3(OP_SHF, i->dType, i->getDef(0), bld.mkImm(0), i->getSrc(1),
-                i->getSrc(0))->subOp = NV50_IR_SUBOP_SHF_L |
-                                       NV50_IR_SUBOP_SHF_HI;
+   Value *zero = bld.mkImm(0);
+   Value *src1 = i->getSrc(1);
+   Value *src0, *src2;
+   uint8_t subOp = i->op == OP_SHL ? NV50_IR_SUBOP_SHF_L : NV50_IR_SUBOP_SHF_R;
+
+   if (i->op == OP_SHL && i->src(0).getFile() == FILE_GPR) {
+      src0 = i->getSrc(0);
+      src2 = zero;
    } else {
-      bld.mkOp3(OP_SHF, i->dType, i->getDef(0), i->getSrc(0), i->getSrc(1),
-                bld.mkImm(0))->subOp = NV50_IR_SUBOP_SHF_L;
+      src0 = zero;
+      src2 = i->getSrc(0);
+      subOp |= NV50_IR_SUBOP_SHF_HI;
    }
-   return true;
-}
+   if (i->subOp & NV50_IR_SUBOP_SHIFT_WRAP)
+      subOp |= NV50_IR_SUBOP_SHF_W;
 
-bool
-GV100LegalizeSSA::handleSHR(Instruction *i)
-{
-   bld.mkOp3(OP_SHF, i->dType, i->getDef(0), bld.mkImm(0), i->getSrc(1),
-             i->getSrc(0))->subOp = NV50_IR_SUBOP_SHF_R | NV50_IR_SUBOP_SHF_HI;
+   bld.mkOp3(OP_SHF, i->dType, i->getDef(0), src0, src1, src2)->subOp = subOp;
    return true;
 }
 
@@ -255,10 +256,8 @@ GV100LegalizeSSA::visit(Instruction *i)
       lowered = handleNOT(i);
       break;
    case OP_SHL:
-      lowered = handleSHL(i);
-      break;
    case OP_SHR:
-      lowered = handleSHR(i);
+      lowered = handleShift(i);
       break;
    case OP_SET:
    case OP_SET_AND:
index 92fdb938244ac3faefe7b93acda01c843cf59e91..d918c6e83eb6a9e59cb5e6c25d83829370ec2f8e 100644 (file)
@@ -71,8 +71,7 @@ private:
    bool handleQUADPOP(Instruction *);
    bool handleSET(Instruction *);
    bool handleSHFL(Instruction *);
-   bool handleSHL(Instruction *);
-   bool handleSHR(Instruction *);
+   bool handleShift(Instruction *);
    bool handleSUB(Instruction *);
 };
 }