Searched refs:GroupSize (Results 1 - 8 of 8) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULowerKernelAttributes.cpp170 Value *GroupSize = WorkGroupSizes[I]; local
172 if (!GroupSize || !GridSize)
175 for (User *U : GroupSize->users()) {
221 Value *GroupSize = WorkGroupSizes[I]; local
222 if (!GroupSize)
226 GroupSize->replaceAllUsesWith(
228 GroupSize->getType(),
H A DSIMachineScheduler.cpp676 unsigned GroupSize; local
691 GroupSize = 2;
693 GroupSize = 3;
695 GroupSize = 4;
787 } else if (Count == GroupSize) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InterleavedAccess.cpp459 int GroupSize = std::ceil((VF - FirstGroupElement) / 3.0); local
460 SizeInfo.push_back(GroupSize);
461 FirstGroupElement = ((GroupSize)*3 + FirstGroupElement) % VF;
560 SmallVector<int, 3> GroupSize; local
566 setGroupSize(VT, GroupSize);
569 DecodePALIGNRMask(VT, GroupSize[2 - i], VPAlign[i], false);
571 DecodePALIGNRMask(VT, GroupSize[2] + GroupSize[1], VPAlign2, true, true);
572 DecodePALIGNRMask(VT, GroupSize[1], VPAlign3, true, true);
642 SmallVector<int, 3> GroupSize; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DFormatUtil.h61 uint32_t GroupSize, StringRef Sep);
H A DFormatUtil.cpp74 uint32_t IndentLevel, uint32_t GroupSize,
79 ThisGroup = Opts.take_front(GroupSize);
73 typesetItemList(ArrayRef<std::string> Opts, uint32_t IndentLevel, uint32_t GroupSize, StringRef Sep) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUInstPrinter.cpp1308 uint16_t GroupSize = BITMASK_MAX - AndMask + 1; local
1309 if (GroupSize > 1 &&
1310 isPowerOf2_64(GroupSize) &&
1311 OrMask < GroupSize &&
1316 O << formatDec(GroupSize);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp1254 const unsigned GroupSize = 8; local
1255 SpillPlacement::BlockConstraint BCS[GroupSize];
1256 unsigned TBS[GroupSize];
1264 assert(T < GroupSize && "Array overflow");
1266 if (++T == GroupSize) {
1273 assert(B < GroupSize && "Array overflow");
1294 if (++B == GroupSize) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp5668 int64_t GroupSize;
5671 if (!parseSwizzleOperands(1, &GroupSize,
5676 if (!isPowerOf2_64(GroupSize)) {
5681 0, GroupSize - 1,
5683 Imm = encodeBitmaskPerm(BITMASK_MAX - GroupSize + 1, LaneIdx, 0);
5694 int64_t GroupSize;
5696 if (!parseSwizzleOperands(1, &GroupSize,
5700 if (!isPowerOf2_64(GroupSize)) {
5705 Imm = encodeBitmaskPerm(BITMASK_MAX, 0, GroupSize - 1);
5714 int64_t GroupSize;
[all...]

Completed in 191 milliseconds