Searched refs:NumStages (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | ModuloSchedule.h | 97 int NumStages; variable 113 NumStages = 0; in ModuloSchedule() 115 NumStages = std::max(NumStages, KV.second); in ModuloSchedule() 116 ++NumStages; in ModuloSchedule() 124 int getNumStages() const { return NumStages; } in getNumStages()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | ModuloSchedule.cpp | 405 unsigned NumStages = getStagesForReg(Def, CurStageNum); in generateExistingPhis() local 406 if (NumStages == 0) { in generateExistingPhis() 422 unsigned NumPhis = std::min(NumStages, MaxPhis); in generateExistingPhis() 592 while (NumPhis++ < NumStages) { in generateExistingPhis() 599 if (NumStages == 0 && IsLast && VRMap[CurStageNum].count(LoopVal)) in generateExistingPhis()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 5165 bool Unary, unsigned NumStages = 1) { in createPackShuffleMask() argument 5171 unsigned Repetitions = 1u << (NumStages - 1); in createPackShuffleMask() 5172 unsigned Increment = 1u << NumStages; in createPackShuffleMask() 5173 assert((NumEltsPerLane >> NumStages) > 0 && "Illegal packing compaction"); in createPackShuffleMask() 10411 for (unsigned NumStages = 1; NumStages <= MaxStages; ++NumStages) { in matchShuffleWithPACK() local 10412 MVT PackSVT = MVT::getIntegerVT(BitSize << NumStages); in matchShuffleWithPACK() 10413 MVT PackVT = MVT::getVectorVT(PackSVT, NumElts >> NumStages); in matchShuffleWithPACK() 10417 createPackShuffleMask(VT, BinaryMask, false, NumStages); in matchShuffleWithPACK() 10424 createPackShuffleMask(VT, UnaryMask, true, NumStages); in matchShuffleWithPACK() 10446 unsigned NumStages = Log2_32(CurrentEltBits / EltBits); in lowerShuffleWithPACK() local [all …]
|