Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPULowerKernelAttributes.cpp170 Value *GroupSize = WorkGroupSizes[I]; in processUse() local
172 if (!GroupSize || !GridSize) in processUse()
175 for (User *U : GroupSize->users()) { in processUse()
221 Value *GroupSize = WorkGroupSizes[I]; in processUse() local
222 if (!GroupSize) in processUse()
226 GroupSize->replaceAllUsesWith( in processUse()
228 GroupSize->getType(), in processUse()
DSIMachineScheduler.cpp674 unsigned GroupSize; in colorHighLatenciesGroups() local
689 GroupSize = 2; in colorHighLatenciesGroups()
691 GroupSize = 3; in colorHighLatenciesGroups()
693 GroupSize = 4; in colorHighLatenciesGroups()
785 } else if (Count == GroupSize) { in colorHighLatenciesGroups()
/external/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPULowerKernelAttributes.cpp170 Value *GroupSize = WorkGroupSizes[I]; in processUse() local
172 if (!GroupSize || !GridSize) in processUse()
175 for (User *U : GroupSize->users()) { in processUse()
221 Value *GroupSize = WorkGroupSizes[I]; in processUse() local
222 if (!GroupSize) in processUse()
226 GroupSize->replaceAllUsesWith( in processUse()
228 GroupSize->getType(), in processUse()
DSIMachineScheduler.cpp676 unsigned GroupSize; in colorHighLatenciesGroups() local
691 GroupSize = 2; in colorHighLatenciesGroups()
693 GroupSize = 3; in colorHighLatenciesGroups()
695 GroupSize = 4; in colorHighLatenciesGroups()
787 } else if (Count == GroupSize) { in colorHighLatenciesGroups()
/external/llvm-project/llvm/lib/Target/X86/
DX86InterleavedAccess.cpp459 int GroupSize = std::ceil((VF - FirstGroupElement) / 3.0); in setGroupSize() local
460 SizeInfo.push_back(GroupSize); in setGroupSize()
461 FirstGroupElement = ((GroupSize)*3 + FirstGroupElement) % VF; in setGroupSize()
560 SmallVector<int, 3> GroupSize; in deinterleave8bitStride3() local
566 setGroupSize(VT, GroupSize); in deinterleave8bitStride3()
569 DecodePALIGNRMask(VT, GroupSize[2 - i], VPAlign[i], false); in deinterleave8bitStride3()
571 DecodePALIGNRMask(VT, GroupSize[2] + GroupSize[1], VPAlign2, true, true); in deinterleave8bitStride3()
572 DecodePALIGNRMask(VT, GroupSize[1], VPAlign3, true, true); in deinterleave8bitStride3()
642 SmallVector<int, 3> GroupSize; in interleave8bitStride3() local
651 setGroupSize(VT, GroupSize); in interleave8bitStride3()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86InterleavedAccess.cpp453 int GroupSize = std::ceil((VF - FirstGroupElement) / 3.0); in setGroupSize() local
454 SizeInfo.push_back(GroupSize); in setGroupSize()
455 FirstGroupElement = ((GroupSize)*3 + FirstGroupElement) % VF; in setGroupSize()
554 SmallVector<uint32_t, 3> GroupSize; in deinterleave8bitStride3() local
560 setGroupSize(VT, GroupSize); in deinterleave8bitStride3()
563 DecodePALIGNRMask(VT, GroupSize[2 - i], VPAlign[i], false); in deinterleave8bitStride3()
565 DecodePALIGNRMask(VT, GroupSize[2] + GroupSize[1], VPAlign2, true, true); in deinterleave8bitStride3()
566 DecodePALIGNRMask(VT, GroupSize[1], VPAlign3, true, true); in deinterleave8bitStride3()
636 SmallVector<uint32_t, 3> GroupSize; in interleave8bitStride3() local
645 setGroupSize(VT, GroupSize); in interleave8bitStride3()
[all …]
/external/llvm-project/llvm/tools/llvm-pdbutil/
DFormatUtil.cpp74 uint32_t IndentLevel, uint32_t GroupSize, in typesetItemList() argument
79 ThisGroup = Opts.take_front(GroupSize); in typesetItemList()
DFormatUtil.h61 uint32_t GroupSize, StringRef Sep);
/external/llvm/lib/CodeGen/
DRegAllocGreedy.cpp1000 const unsigned GroupSize = 8; in addThroughConstraints() local
1001 SpillPlacement::BlockConstraint BCS[GroupSize]; in addThroughConstraints()
1002 unsigned TBS[GroupSize]; in addThroughConstraints()
1010 assert(T < GroupSize && "Array overflow"); in addThroughConstraints()
1012 if (++T == GroupSize) { in addThroughConstraints()
1019 assert(B < GroupSize && "Array overflow"); in addThroughConstraints()
1034 if (++B == GroupSize) { in addThroughConstraints()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/MCTargetDesc/
DAMDGPUInstPrinter.cpp1255 uint16_t GroupSize = BITMASK_MAX - AndMask + 1; in printSwizzle() local
1256 if (GroupSize > 1 && in printSwizzle()
1257 isPowerOf2_64(GroupSize) && in printSwizzle()
1258 OrMask < GroupSize && in printSwizzle()
1263 O << formatDec(GroupSize); in printSwizzle()
/external/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
DAMDGPUInstPrinter.cpp1352 uint16_t GroupSize = BITMASK_MAX - AndMask + 1; in printSwizzle() local
1353 if (GroupSize > 1 && in printSwizzle()
1354 isPowerOf2_64(GroupSize) && in printSwizzle()
1355 OrMask < GroupSize && in printSwizzle()
1360 O << formatDec(GroupSize); in printSwizzle()
/external/llvm/lib/Target/AMDGPU/
DSIMachineScheduler.cpp643 unsigned GroupSize; in colorHighLatenciesGroups() local
658 GroupSize = 2; in colorHighLatenciesGroups()
660 GroupSize = 3; in colorHighLatenciesGroups()
662 GroupSize = 4; in colorHighLatenciesGroups()
681 if (!CompatibleGroup || ++Count == GroupSize) { in colorHighLatenciesGroups()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DRegAllocGreedy.cpp1261 const unsigned GroupSize = 8; in addThroughConstraints() local
1262 SpillPlacement::BlockConstraint BCS[GroupSize]; in addThroughConstraints()
1263 unsigned TBS[GroupSize]; in addThroughConstraints()
1271 assert(T < GroupSize && "Array overflow"); in addThroughConstraints()
1273 if (++T == GroupSize) { in addThroughConstraints()
1280 assert(B < GroupSize && "Array overflow"); in addThroughConstraints()
1301 if (++B == GroupSize) { in addThroughConstraints()
/external/llvm-project/llvm/lib/CodeGen/
DRegAllocGreedy.cpp1269 const unsigned GroupSize = 8; in addThroughConstraints() local
1270 SpillPlacement::BlockConstraint BCS[GroupSize]; in addThroughConstraints()
1271 unsigned TBS[GroupSize]; in addThroughConstraints()
1278 assert(T < GroupSize && "Array overflow"); in addThroughConstraints()
1280 if (++T == GroupSize) { in addThroughConstraints()
1287 assert(B < GroupSize && "Array overflow"); in addThroughConstraints()
1308 if (++B == GroupSize) { in addThroughConstraints()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/AsmParser/
DAMDGPUAsmParser.cpp5512 int64_t GroupSize; in parseSwizzleBroadcast() local
5515 if (!parseSwizzleOperands(1, &GroupSize, in parseSwizzleBroadcast()
5520 if (!isPowerOf2_64(GroupSize)) { in parseSwizzleBroadcast()
5525 0, GroupSize - 1, in parseSwizzleBroadcast()
5527 Imm = encodeBitmaskPerm(BITMASK_MAX - GroupSize + 1, LaneIdx, 0); in parseSwizzleBroadcast()
5538 int64_t GroupSize; in parseSwizzleReverse() local
5540 if (!parseSwizzleOperands(1, &GroupSize, in parseSwizzleReverse()
5544 if (!isPowerOf2_64(GroupSize)) { in parseSwizzleReverse()
5549 Imm = encodeBitmaskPerm(BITMASK_MAX, 0, GroupSize - 1); in parseSwizzleReverse()
5558 int64_t GroupSize; in parseSwizzleSwap() local
[all …]
/external/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
DAMDGPUAsmParser.cpp6299 int64_t GroupSize; in parseSwizzleBroadcast() local
6302 if (!parseSwizzleOperand(GroupSize, in parseSwizzleBroadcast()
6308 if (!isPowerOf2_64(GroupSize)) { in parseSwizzleBroadcast()
6313 0, GroupSize - 1, in parseSwizzleBroadcast()
6316 Imm = encodeBitmaskPerm(BITMASK_MAX - GroupSize + 1, LaneIdx, 0); in parseSwizzleBroadcast()
6327 int64_t GroupSize; in parseSwizzleReverse() local
6329 if (!parseSwizzleOperand(GroupSize, in parseSwizzleReverse()
6335 if (!isPowerOf2_64(GroupSize)) { in parseSwizzleReverse()
6340 Imm = encodeBitmaskPerm(BITMASK_MAX, 0, GroupSize - 1); in parseSwizzleReverse()
6349 int64_t GroupSize; in parseSwizzleSwap() local
[all …]
/external/protobuf/src/google/protobuf/
Dwire_format_lite.h684 static inline size_t GroupSize(const MessageType& value);
1756 inline size_t WireFormatLite::GroupSize(const MessageType& value) { in GroupSize() function