Searched refs:MaskEnd (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/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 | 44545 for (unsigned j = 0, MaskEnd = 1 << (i - 1); j < MaskEnd; ++j) in combineVPDPBUSDPattern() local 44546 Mask[j] = MaskEnd + j; in combineVPDPBUSDPattern() 44619 for(unsigned j = 0, MaskEnd = 1 << (i - 1); j < MaskEnd; ++j) in combineBasicSADPattern() local 44620 Mask[j] = MaskEnd + j; in combineBasicSADPattern()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCISelDAGToDAG.cpp | 2344 unsigned MaskStart, unsigned MaskEnd, in SelectRotMask64Count() argument 2348 unsigned InstMaskStart = 64 - MaskEnd - 1, in SelectRotMask64Count() 2364 bool Repl32, unsigned MaskStart, unsigned MaskEnd, in SelectRotMask64() argument 2368 unsigned InstMaskStart = 64 - MaskEnd - 1, in SelectRotMask64() 2422 return SelectRotMask64(V, dl, RLAmt2, false, MaskStart, MaskEnd); in SelectRotMask64() 2429 unsigned MaskEnd, unsigned *InstCnt = nullptr) { in SelectRotMaskIns64() argument 2432 unsigned InstMaskStart = 64 - MaskEnd - 1, in SelectRotMaskIns64() 2472 return SelectRotMaskIns64(Base, V, dl, RLAmt2, false, MaskStart, MaskEnd); in SelectRotMaskIns64()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAG.cpp | 12325 unsigned MaskEnd = (1 << i); in matchBinOpReduction() local 12328 return PartialReduction(PrevOp, MaskEnd); in matchBinOpReduction() 12344 return PartialReduction(PrevOp, MaskEnd); in matchBinOpReduction() 12347 for (int Index = 0; Index < (int)MaskEnd; ++Index) in matchBinOpReduction() 12348 if (Shuffle->getMaskElt(Index) != (int)(MaskEnd + Index)) in matchBinOpReduction() 12349 return PartialReduction(PrevOp, MaskEnd); in matchBinOpReduction()
|