Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InterleavedAccess.cpp454 int GroupSize = std::ceil((VF - FirstGroupElement) / 3.0); in setGroupSize() local
455 SizeInfo.push_back(GroupSize); in setGroupSize()
456 FirstGroupElement = ((GroupSize)*3 + FirstGroupElement) % VF; in setGroupSize()
555 SmallVector<int, 3> GroupSize; in deinterleave8bitStride3() local
561 setGroupSize(VT, GroupSize); in deinterleave8bitStride3()
564 DecodePALIGNRMask(VT, GroupSize[2 - i], VPAlign[i], false); in deinterleave8bitStride3()
566 DecodePALIGNRMask(VT, GroupSize[2] + GroupSize[1], VPAlign2, true, true); in deinterleave8bitStride3()
567 DecodePALIGNRMask(VT, GroupSize[1], VPAlign3, true, true); in deinterleave8bitStride3()
634 SmallVector<int, 3> GroupSize; in interleave8bitStride3() local
643 setGroupSize(VT, GroupSize); in interleave8bitStride3()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULowerKernelAttributes.cpp266 Value *GroupSize = GroupSizes[I]; in processUse() local
268 if (!GroupSize || !GridSize) in processUse()
277 for (User *U : GroupSize->users()) { in processUse()
308 Value *GroupSize = GroupSizes[I]; in processUse() local
309 if (!GroupSize) in processUse()
313 GroupSize->replaceAllUsesWith( in processUse()
314 ConstantFoldIntegerCast(KnownSize, GroupSize->getType(), false, DL)); in processUse()
H A DSIMachineScheduler.cpp654 unsigned GroupSize; in colorHighLatenciesGroups() local
669 GroupSize = 2; in colorHighLatenciesGroups()
671 GroupSize = 3; in colorHighLatenciesGroups()
673 GroupSize = 4; in colorHighLatenciesGroups()
761 } else if (Count == GroupSize) { in colorHighLatenciesGroups()
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dprimary64.h83 const uptr GroupSize = (1UL << GroupSizeLog); in init() local
84 const uptr PagesInGroup = GroupSize / PageSize; in init()
1350 const uptr GroupSize = (1UL << GroupSizeLog); in collectGroupsToRelease() local
1359 uptr MinDistToThreshold = GroupSize; in collectGroupsToRelease()
1381 DCHECK_EQ((Region->RegionBeg - BatchGroupBase) % GroupSize, 0U); in collectGroupsToRelease()
1402 const uptr BatchGroupEnd = BatchGroupBase + GroupSize; in collectGroupsToRelease()
1404 ? GroupSize in collectGroupsToRelease()
1409 const bool MayHaveReleasedAll = NumBlocks >= (GroupSize / BlockSize); in collectGroupsToRelease()
1504 if (MinDistToThreshold == GroupSize) in collectGroupsToRelease()
1517 const uptr GroupSize = (1UL << GroupSizeLog); in markFreeBlocks() local
[all …]
H A Dprimary32.h1080 const uptr GroupSize = (1UL << GroupSizeLog); in markFreeBlocks() local
1097 : roundDownSlow(GroupSize, BlockSize); in markFreeBlocks()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DFormatUtil.cpp24 uint32_t IndentLevel, uint32_t GroupSize, in typesetItemList()
29 ThisGroup = Opts.take_front(GroupSize); in typesetItemList()
23 typesetItemList(ArrayRef<std::string> Opts,uint32_t IndentLevel,uint32_t GroupSize,StringRef Sep) typesetItemList() argument
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DFormatUtil.h53 uint32_t GroupSize, StringRef Sep);
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp676 const unsigned GroupSize = 8; in addThroughConstraints() local
677 SpillPlacement::BlockConstraint BCS[GroupSize]; in addThroughConstraints()
678 unsigned TBS[GroupSize]; in addThroughConstraints()
685 assert(T < GroupSize && "Array overflow"); in addThroughConstraints()
687 if (++T == GroupSize) { in addThroughConstraints()
694 assert(B < GroupSize && "Array overflow"); in addThroughConstraints()
716 if (++B == GroupSize) { in addThroughConstraints()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUInstPrinter.cpp1656 uint16_t GroupSize = BITMASK_MAX - AndMask + 1; in printSwizzle() local
1657 if (GroupSize > 1 && in printSwizzle()
1658 isPowerOf2_64(GroupSize) && in printSwizzle()
1659 OrMask < GroupSize && in printSwizzle()
1664 O << formatDec(GroupSize); in printSwizzle()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp7985 int64_t GroupSize; in parseSwizzleBroadcast() local
7988 if (!parseSwizzleOperand(GroupSize, in parseSwizzleBroadcast()
7994 if (!isPowerOf2_64(GroupSize)) { in parseSwizzleBroadcast()
7999 0, GroupSize - 1, in parseSwizzleBroadcast()
8002 Imm = encodeBitmaskPerm(BITMASK_MAX - GroupSize + 1, LaneIdx, 0); in parseSwizzleBroadcast()
8013 int64_t GroupSize; in parseSwizzleReverse() local
8015 if (!parseSwizzleOperand(GroupSize, in parseSwizzleReverse()
8021 if (!isPowerOf2_64(GroupSize)) { in parseSwizzleReverse()
8026 Imm = encodeBitmaskPerm(BITMASK_MAX, 0, GroupSize - 1); in parseSwizzleReverse()
8035 int64_t GroupSize; in parseSwizzleSwap() local
[all …]