Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DAMDGPULowerKernelAttributes.cpp171 Value *GroupSize = WorkGroupSizes[I]; in processUse() local
173 if (!GroupSize || !GridSize) in processUse()
176 for (User *U : GroupSize->users()) { in processUse()
222 Value *GroupSize = WorkGroupSizes[I]; in processUse() local
223 if (!GroupSize) in processUse()
227 GroupSize->replaceAllUsesWith( in processUse()
229 GroupSize->getType(), in processUse()
DSIMachineScheduler.cpp685 unsigned GroupSize; in colorHighLatenciesGroups() local
700 GroupSize = 2; in colorHighLatenciesGroups()
702 GroupSize = 3; in colorHighLatenciesGroups()
704 GroupSize = 4; in colorHighLatenciesGroups()
796 } else if (Count == GroupSize) { in colorHighLatenciesGroups()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86InterleavedAccess.cpp450 int GroupSize = std::ceil((VF - FirstGroupElement) / 3.0); in setGroupSize() local
451 SizeInfo.push_back(GroupSize); in setGroupSize()
452 FirstGroupElement = ((GroupSize)*3 + FirstGroupElement) % VF; in setGroupSize()
551 SmallVector<uint32_t, 3> GroupSize; in deinterleave8bitStride3() local
557 setGroupSize(VT, GroupSize); in deinterleave8bitStride3()
560 DecodePALIGNRMask(VT, GroupSize[2 - i], VPAlign[i], false); in deinterleave8bitStride3()
562 DecodePALIGNRMask(VT, GroupSize[2] + GroupSize[1], VPAlign2, true, true); in deinterleave8bitStride3()
563 DecodePALIGNRMask(VT, GroupSize[1], VPAlign3, true, true); in deinterleave8bitStride3()
633 SmallVector<uint32_t, 3> GroupSize; in interleave8bitStride3() local
642 setGroupSize(VT, GroupSize); in interleave8bitStride3()
[all …]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DRegAllocGreedy.cpp732 const unsigned GroupSize = 8; in addThroughConstraints() local
733 SpillPlacement::BlockConstraint BCS[GroupSize]; in addThroughConstraints()
734 unsigned TBS[GroupSize]; in addThroughConstraints()
742 assert(T < GroupSize && "Array overflow"); in addThroughConstraints()
744 if (++T == GroupSize) { in addThroughConstraints()
751 assert(B < GroupSize && "Array overflow"); in addThroughConstraints()
766 if (++B == GroupSize) { in addThroughConstraints()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
DFormatUtil.cpp75 uint32_t IndentLevel, uint32_t GroupSize, in typesetItemList() argument
80 ThisGroup = Opts.take_front(GroupSize); in typesetItemList()
DFormatUtil.h63 uint32_t GroupSize, StringRef Sep);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/InstPrinter/
DAMDGPUInstPrinter.cpp1136 uint16_t GroupSize = BITMASK_MAX - AndMask + 1; in printSwizzle() local
1137 if (GroupSize > 1 && in printSwizzle()
1138 isPowerOf2_64(GroupSize) && in printSwizzle()
1139 OrMask < GroupSize && in printSwizzle()
1144 O << formatDec(GroupSize); in printSwizzle()
/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/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-7.0/llvm/lib/CodeGen/
DRegAllocGreedy.cpp1237 const unsigned GroupSize = 8; in addThroughConstraints() local
1238 SpillPlacement::BlockConstraint BCS[GroupSize]; in addThroughConstraints()
1239 unsigned TBS[GroupSize]; in addThroughConstraints()
1247 assert(T < GroupSize && "Array overflow"); in addThroughConstraints()
1249 if (++T == GroupSize) { in addThroughConstraints()
1256 assert(B < GroupSize && "Array overflow"); in addThroughConstraints()
1271 if (++B == GroupSize) { in addThroughConstraints()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/AsmParser/
DAMDGPUAsmParser.cpp4297 int64_t GroupSize; in parseSwizzleBroadcast() local
4300 if (!parseSwizzleOperands(1, &GroupSize, in parseSwizzleBroadcast()
4305 if (!isPowerOf2_64(GroupSize)) { in parseSwizzleBroadcast()
4310 0, GroupSize - 1, in parseSwizzleBroadcast()
4312 Imm = encodeBitmaskPerm(BITMASK_MAX - GroupSize + 1, LaneIdx, 0); in parseSwizzleBroadcast()
4323 int64_t GroupSize; in parseSwizzleReverse() local
4325 if (!parseSwizzleOperands(1, &GroupSize, in parseSwizzleReverse()
4329 if (!isPowerOf2_64(GroupSize)) { in parseSwizzleReverse()
4334 Imm = encodeBitmaskPerm(BITMASK_MAX, 0, GroupSize - 1); in parseSwizzleReverse()
4343 int64_t GroupSize; in parseSwizzleSwap() local
[all …]
/external/protobuf/src/google/protobuf/
Dwire_format_lite.h505 static inline int GroupSize (const MessageLite& value);
Dwire_format_lite_inl.h849 inline int WireFormatLite::GroupSize(const MessageLite& value) { in GroupSize() function