Home
last modified time | relevance | path

Searched refs:GroupSize (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InterleavedAccess.cpp451 int GroupSize = std::ceil((VF - FirstGroupElement) / 3.0); in setGroupSize() local
452 SizeInfo.push_back(GroupSize); in setGroupSize()
453 FirstGroupElement = ((GroupSize)*3 + FirstGroupElement) % VF; in setGroupSize()
552 SmallVector<int, 3> GroupSize; in deinterleave8bitStride3() local
558 setGroupSize(VT, GroupSize); in deinterleave8bitStride3()
561 DecodePALIGNRMask(VT, GroupSize[2 - i], VPAlign[i], false); in deinterleave8bitStride3()
563 DecodePALIGNRMask(VT, GroupSize[2] + GroupSize[1], VPAlign2, true, true); in deinterleave8bitStride3()
564 DecodePALIGNRMask(VT, GroupSize[1], VPAlign3, true, true); in deinterleave8bitStride3()
631 SmallVector<int, 3> GroupSize; in interleave8bitStride3() local
640 setGroupSize(VT, GroupSize); in interleave8bitStride3()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULowerKernelAttributes.cpp288 Value *GroupSize = GroupSizes[I]; in processUse() local
290 if (!GroupSize || !GridSize) in processUse()
299 for (User *U : GroupSize->users()) { in processUse()
330 Value *GroupSize = GroupSizes[I]; in processUse() local
331 if (!GroupSize) in processUse()
335 GroupSize->replaceAllUsesWith( in processUse()
336 ConstantFoldIntegerCast(KnownSize, GroupSize->getType(), false, DL)); in processUse()
H A DSIMachineScheduler.cpp650 unsigned GroupSize; in colorHighLatenciesGroups() local
665 GroupSize = 2; in colorHighLatenciesGroups()
667 GroupSize = 3; in colorHighLatenciesGroups()
669 GroupSize = 4; in colorHighLatenciesGroups()
757 } else if (Count == GroupSize) { in colorHighLatenciesGroups()
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dprimary64.h303 const uptr GroupSize = (1UL << GroupSizeLog); in init() local
304 const uptr PagesInGroup = GroupSize / PageSize; in init()
1237 constexpr uptr GroupSize = (1UL << GroupSizeLog); in getMemoryGroupFragmentationInfoInRegion() local
1238 constexpr uptr MaxNumGroups = RegionSize / GroupSize; in getMemoryGroupFragmentationInfoInRegion()
1240 MemoryGroupFragmentationRecorder<GroupSize, MaxNumGroups> Recorder; in getMemoryGroupFragmentationInfoInRegion()
1255 roundUp(Region->MemMapInfo.AllocatedUser, GroupSize) / GroupSize; in getMemoryGroupFragmentationInfoInRegion()
1262 Region->RegionBeg + I * GroupSize, Integral, Fractional); in getMemoryGroupFragmentationInfoInRegion()
1582 const uptr GroupSize = (1UL << GroupSizeLog); in collectGroupsToRelease() local
1591 uptr MinDistToThreshold = GroupSize; in collectGroupsToRelease()
1613 DCHECK_EQ((Region->RegionBeg - BatchGroupBase) % GroupSize, 0U); in collectGroupsToRelease()
[all …]
H A Drelease.h90 template <uptr GroupSize, uptr NumGroups>
93 const uptr NumPagesInOneGroup = GroupSize / getPageSizeCached();
H A Dprimary32.h1188 const uptr GroupSize = (1UL << GroupSizeLog); in markFreeBlocks() local
1205 : roundDownSlow(GroupSize, BlockSize); in markFreeBlocks()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DFormatUtil.cpp23 uint32_t IndentLevel, uint32_t GroupSize, in typesetItemList() argument
28 ThisGroup = Opts.take_front(GroupSize); in typesetItemList()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DFormatUtil.h54 uint32_t IndentLevel, uint32_t GroupSize,
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUInstPrinter.cpp1563 uint16_t GroupSize = BITMASK_MAX - AndMask + 1; in printSwizzle() local
1564 if (GroupSize > 1 && in printSwizzle()
1565 isPowerOf2_64(GroupSize) && in printSwizzle()
1566 OrMask < GroupSize && in printSwizzle()
1571 O << formatDec(GroupSize); in printSwizzle()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp810 const unsigned GroupSize = 8; in addThroughConstraints() local
811 SpillPlacement::BlockConstraint BCS[GroupSize]; in addThroughConstraints()
812 unsigned TBS[GroupSize]; in addThroughConstraints()
819 assert(T < GroupSize && "Array overflow"); in addThroughConstraints()
821 if (++T == GroupSize) { in addThroughConstraints()
828 assert(B < GroupSize && "Array overflow"); in addThroughConstraints()
850 if (++B == GroupSize) { in addThroughConstraints()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp8406 int64_t GroupSize; in parseSwizzleBroadcast() local
8409 if (!parseSwizzleOperand(GroupSize, in parseSwizzleBroadcast()
8415 if (!isPowerOf2_64(GroupSize)) { in parseSwizzleBroadcast()
8420 0, GroupSize - 1, in parseSwizzleBroadcast()
8423 Imm = encodeBitmaskPerm(BITMASK_MAX - GroupSize + 1, LaneIdx, 0); in parseSwizzleBroadcast()
8434 int64_t GroupSize; in parseSwizzleReverse() local
8436 if (!parseSwizzleOperand(GroupSize, in parseSwizzleReverse()
8442 if (!isPowerOf2_64(GroupSize)) { in parseSwizzleReverse()
8447 Imm = encodeBitmaskPerm(BITMASK_MAX, 0, GroupSize - 1); in parseSwizzleReverse()
8456 int64_t GroupSize; in parseSwizzleSwap() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanTransforms.cpp3135 unsigned GroupSize = GroupElementTy->getScalarSizeInBits() * VF; in isConsecutiveInterleaveGroup() local
3138 GroupSize == VectorRegWidth; in isConsecutiveInterleaveGroup()
H A DSLPVectorizer.cpp355 unsigned GroupSize = SVNumElements / ShuffleMaskSize; in getShufflevectorNumGroups() local
356 if (GroupSize == 0 || (VL.size() % GroupSize) != 0) in getShufflevectorNumGroups()
359 for (size_t I = 0, E = VL.size(); I != E; I += GroupSize) { in getShufflevectorNumGroups()
362 ArrayRef<Value *> Group = VL.slice(I, GroupSize); in getShufflevectorNumGroups()
363 SmallBitVector ExpectedIndex(GroupSize); in getShufflevectorNumGroups()
380 assert(NumGroup == (VL.size() / GroupSize) && "Unexpected number of groups"); in getShufflevectorNumGroups()
13862 unsigned GroupSize = SVNumElements / SV->getShuffleMask().size(); in getEntryCost() local
13863 for (size_t I = 0, End = VL.size(); I != End; I += GroupSize) { in getEntryCost()
13864 ArrayRef<Value *> Group = VL.slice(I, GroupSize); in getEntryCost()