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

  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMTargetTransformInfo.h 311 unsigned BlockElts = M[0] + 1;
314 BlockElts = BlockSize / EltSz;
316 if (BlockSize <= EltSz || BlockSize != BlockElts * EltSz)
322 if ((unsigned)M[i] != (i - i % BlockElts) + (BlockElts - 1 - i % BlockElts))
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/
AArch64PostLegalizerLowering.cpp 72 unsigned BlockElts = M[0] + 1;
76 BlockElts = BlockSize / EltSize;
78 if (BlockSize <= EltSize || BlockSize != BlockElts * EltSize)
86 (i - i % BlockElts) + (BlockElts - 1 - i % BlockElts))
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 8465 SmallVector<int, 8> BlockElts(NumEltsPerBlock, -1);
8474 if (BlockElts[I] < 0)
8475 BlockElts[I] = Elt;
8476 else if (BlockElts[I] != Elt)
8485 auto FirstRealEltIter = find_if(BlockElts, [](int Elt) { return Elt >= 0; });
8486 assert(FirstRealEltIter != BlockElts.end() &&
8489 if (FirstRealEltIter == BlockElts.end()) {
8494 // Index of FirstRealElt in BlockElts
8495 size_t FirstRealIndex = FirstRealEltIter - BlockElts.begin();
8499 // BlockElts[0] must have the following value if it isn't undef
    [all...]

Completed in 23 milliseconds