llvm-project/llvm/lib/Target/Mips/MipsInstrCompiler.td
yingopq e13e95bc44
[Mips] Optimize (shift x (and y, BitWidth - 1)) to (shift x, y) (#73889)
Do optimization to turn x >> (shift & 31/63) into a single srlv instead
of andi + srlv, since the mips variable shift instruction already
implicitly masks the shift, like x86, wasm and AMDGPU. Copy the
X86DAGToDAGISel::isUnneededShiftMask() function to MIPS for checking
whether need combine two instructions to one.
2023-12-29 14:53:55 +05:30

34 lines
1.3 KiB
TableGen

//===- MipsInstrCompiler.td - Compiler Pseudos and Patterns -*- tablegen -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// This file describes the various pseudo instructions used by the compiler,
// as well as Pat patterns used during instruction selection.
//
//===----------------------------------------------------------------------===//
def shiftMask_32 : PatFrag<(ops node:$lhs), (and node:$lhs, imm), [{
return isUnneededShiftMask(N, 5);
}]>;
def shiftMask_64 : PatFrag<(ops node:$src0), (and node:$src0, imm), [{
return isUnneededShiftMask(N, 6);
}]>;
foreach width = [32, 64] in {
defvar shiftMask = !cast<SDPatternOperator>("shiftMask_"#width);
def mshl_#width : PatFrags<(ops node:$src0, node:$src1),
[(shl node:$src0, node:$src1), (shl node:$src0, (shiftMask node:$src1))]>;
def msrl_#width : PatFrags<(ops node:$src0, node:$src1),
[(srl node:$src0, node:$src1), (srl node:$src0, (shiftMask node:$src1))]>;
def msra_#width : PatFrags<(ops node:$src0, node:$src1),
[(sra node:$src0, node:$src1), (sra node:$src0, (shiftMask node:$src1))]>;
}