Searched refs:MaskEnd (Results 1 – 4 of 4) sorted by relevance
| /llvm-project-15.0.7/llvm/lib/Target/X86/ |
| H A D | X86PartialReduction.cpp | 404 unsigned MaskEnd = 1 << i; in matchAddReduction() local 405 for (unsigned Index = 0; Index < MaskEnd; ++Index) in matchAddReduction() 406 if (Shuffle->getMaskValue(Index) != (int)(MaskEnd + Index)) in matchAddReduction()
|
| H A D | X86ISelLowering.cpp | 43301 for (unsigned j = 0, MaskEnd = 1 << (i - 1); j < MaskEnd; ++j) in combineVPDPBUSDPattern() local 43302 Mask[j] = MaskEnd + j; in combineVPDPBUSDPattern() 43375 for(unsigned j = 0, MaskEnd = 1 << (i - 1); j < MaskEnd; ++j) in combineBasicSADPattern() local 43376 Mask[j] = MaskEnd + j; in combineBasicSADPattern()
|
| /llvm-project-15.0.7/llvm/lib/Target/PowerPC/ |
| H A D | PPCISelDAGToDAG.cpp | 2180 unsigned MaskStart, unsigned MaskEnd, in SelectRotMask64Count() argument 2184 unsigned InstMaskStart = 64 - MaskEnd - 1, in SelectRotMask64Count() 2200 bool Repl32, unsigned MaskStart, unsigned MaskEnd, in SelectRotMask64() argument 2204 unsigned InstMaskStart = 64 - MaskEnd - 1, in SelectRotMask64() 2258 return SelectRotMask64(V, dl, RLAmt2, false, MaskStart, MaskEnd); in SelectRotMask64() 2265 unsigned MaskEnd, unsigned *InstCnt = nullptr) { in SelectRotMaskIns64() argument 2268 unsigned InstMaskStart = 64 - MaskEnd - 1, in SelectRotMaskIns64() 2308 return SelectRotMaskIns64(Base, V, dl, RLAmt2, false, MaskStart, MaskEnd); in SelectRotMaskIns64()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAG.cpp | 11038 unsigned MaskEnd = (1 << i); in matchBinOpReduction() local 11041 return PartialReduction(PrevOp, MaskEnd); in matchBinOpReduction() 11057 return PartialReduction(PrevOp, MaskEnd); in matchBinOpReduction() 11060 for (int Index = 0; Index < (int)MaskEnd; ++Index) in matchBinOpReduction() 11061 if (Shuffle->getMaskElt(Index) != (int)(MaskEnd + Index)) in matchBinOpReduction() 11062 return PartialReduction(PrevOp, MaskEnd); in matchBinOpReduction()
|