HomeSort by: relevance | last modified time | path
    Searched refs:GroupSize (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPULowerKernelAttributes.cpp 161 Value *GroupSize = WorkGroupSizes[I];
163 if (!GroupSize || !GridSize)
166 for (User *U : GroupSize->users()) {
212 Value *GroupSize = WorkGroupSizes[I];
213 if (!GroupSize)
217 GroupSize->replaceAllUsesWith(
219 GroupSize->getType(),
SIMachineScheduler.cpp 657 unsigned GroupSize;
672 GroupSize = 2;
674 GroupSize = 3;
676 GroupSize = 4;
767 } else if (Count == GroupSize) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86InterleavedAccess.cpp 458 int GroupSize = std::ceil((VF - FirstGroupElement) / 3.0);
459 SizeInfo.push_back(GroupSize);
460 FirstGroupElement = ((GroupSize)*3 + FirstGroupElement) % VF;
559 SmallVector<int, 3> GroupSize;
565 setGroupSize(VT, GroupSize);
568 DecodePALIGNRMask(VT, GroupSize[2 - i], VPAlign[i], false);
570 DecodePALIGNRMask(VT, GroupSize[2] + GroupSize[1], VPAlign2, true, true);
571 DecodePALIGNRMask(VT, GroupSize[1], VPAlign3, true, true);
638 SmallVector<int, 3> GroupSize;
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
FormatUtil.h 61 uint32_t GroupSize, StringRef Sep);
FormatUtil.cpp 74 uint32_t IndentLevel, uint32_t GroupSize,
79 ThisGroup = Opts.take_front(GroupSize);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/MCTargetDesc/
AMDGPUInstPrinter.cpp 1364 uint16_t GroupSize = BITMASK_MAX - AndMask + 1;
1365 if (GroupSize > 1 &&
1366 isPowerOf2_64(GroupSize) &&
1367 OrMask < GroupSize &&
1372 O << formatDec(GroupSize);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
RegAllocGreedy.cpp 1304 const unsigned GroupSize = 8;
1305 SpillPlacement::BlockConstraint BCS[GroupSize];
1306 unsigned TBS[GroupSize];
1313 assert(T < GroupSize && "Array overflow");
1315 if (++T == GroupSize) {
1322 assert(B < GroupSize && "Array overflow");
1344 if (++B == GroupSize) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/AsmParser/
AMDGPUAsmParser.cpp 6642 int64_t GroupSize;
6645 if (!parseSwizzleOperand(GroupSize,
6651 if (!isPowerOf2_64(GroupSize)) {
6656 0, GroupSize - 1,
6659 Imm = encodeBitmaskPerm(BITMASK_MAX - GroupSize + 1, LaneIdx, 0);
6670 int64_t GroupSize;
6672 if (!parseSwizzleOperand(GroupSize,
6678 if (!isPowerOf2_64(GroupSize)) {
6683 Imm = encodeBitmaskPerm(BITMASK_MAX, 0, GroupSize - 1);
6692 int64_t GroupSize;
    [all...]

Completed in 28 milliseconds