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

  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPULegalizerInfo.cpp 4141 int DMaskLanes = 0;
4145 DMaskLanes = 4;
4147 DMaskLanes = countPopulation(DMask);
4169 DMaskLanes = 1;
4324 if (NumElts < DMaskLanes)
4327 if (NumElts > 4 || DMaskLanes > 4)
4330 const unsigned AdjustedNumElts = DMaskLanes == 0 ? 1 : DMaskLanes;
SIISelLowering.cpp 987 static EVT memVTFromImageData(Type *Ty, unsigned DMaskLanes) {
988 assert(DMaskLanes != 0);
991 unsigned NumElts = std::min(DMaskLanes, VT->getNumElements());
1001 static EVT memVTFromImageReturn(Type *Ty, unsigned DMaskLanes) {
1004 return memVTFromImageData(Ty, DMaskLanes);
1013 return memVTFromImageData(ST->getContainedType(0), DMaskLanes);
1040 unsigned DMaskLanes = 4;
1053 DMaskLanes = DMask == 0 ? 1 : countPopulation(DMask);
1056 Info.memVT = memVTFromImageReturn(CI.getType(), DMaskLanes);
1069 unsigned DMaskLanes = DMask == 0 ? 1 : countPopulation(DMask)
    [all...]
AMDGPUInstructionSelector.cpp 1509 unsigned DMaskLanes = 0;
1532 DMaskLanes = BaseOpcode->Gather4 ? 4 : countPopulation(DMask);
1541 IsD16 = ((8 * MMO->getSize()) / DMaskLanes) < 32;
1551 NumVDataDwords = DMaskLanes;
1554 NumVDataDwords = (DMaskLanes + 1) / 2;
1587 assert((!IsTexFail || DMaskLanes >= 1) && "should have legalized this");

Completed in 24 milliseconds