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

  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCHazardRecognizers.cpp 273 NumStores = 0;
300 for (unsigned i = 0, e = NumStores; i != e; ++i) {
375 if (isLoad && NumStores && !MI->memoperands_empty()) {
402 if (isStore && NumStores < 4 && !MI->memoperands_empty()) {
404 StoreSize[NumStores] = MO->getSize();
405 StoreOffset[NumStores] = MO->getOffset();
406 StoreValue[NumStores] = MO->getValue();
407 ++NumStores;
PPCHazardRecognizers.h 74 unsigned NumStores;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
LoopAccessAnalysis.h 552 unsigned getNumStores() const { return NumStores; }
629 unsigned NumStores;
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/
AnalyzerOptions.h 47 NumStores
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZTargetTransformInfo.cpp 250 InstructionCost NumStores = 0;
259 NumStores++;
266 NumStores += getMemoryOpCost(Instruction::Store, MemAccessTy, None, 0,
274 unsigned const NumStoresVal = *NumStores.getValue();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LowerMatrixIntrinsics.cpp 193 unsigned NumStores = 0;
200 NumStores += RHS.NumStores;
303 OpInfo.NumStores += N;
312 unsigned getNumStores() const { return OpInfo.NumStores; }
2003 Rem << ore::NV("NumStores", Counts.NumStores) << " stores, "
2008 if (SharedCounts.NumStores > 0 || SharedCounts.NumLoads > 0 ||
2011 << ore::NV("NumStores", SharedCounts.NumStores) << " stores,
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
InlineCost.cpp 2451 unsigned NumStores = (TypeSize + PointerSize - 1) / PointerSize;
2459 NumStores = std::min(NumStores, 8U);
2461 Cost += 2 * NumStores * InlineConstants::InstrCost;
LoopAccessAnalysis.cpp 1883 NumStores++;
2198 NumLoads(0), NumStores(0), MaxSafeDepDistBytes(-1), CanVecMem(false),
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
RegAllocFast.cpp 55 STATISTIC(NumStores, "Number of stores added");
413 ++NumStores;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDecl.cpp 876 /// with equal or fewer than NumStores scalar stores.
878 unsigned &NumStores) {
887 return Init->isNullValue() || NumStores--;
893 if (!canEmitInitWithFewStoresAfterBZero(Elt, NumStores))
903 if (!canEmitInitWithFewStoresAfterBZero(Elt, NumStores))
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 694 unsigned NumStores);
701 EVT MemVT, unsigned NumStores,
717 SmallVectorImpl<MemOpLink> &StoreNodes, unsigned NumStores,
7290 unsigned NumStores = Stores.size();
7292 unsigned WideNumBits = NumStores * NarrowNumBits;
7300 SmallVector<int64_t, 8> OffsetMap(NumStores, INT64_MAX);
7361 if (Offset < 0 || Offset >= NumStores || OffsetMap[Offset] != INT64_MAX)
7381 for (unsigned i = 0; i != NumStores; ++i)
7385 for (unsigned i = 0, j = NumStores - 1; i != NumStores; ++i, --j
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp 4082 unsigned NumStores = 0;
4087 NumStores += InstInfo.mayStore;
4105 if (!PatInfo.hasSideEffects && PatInfo.mayStore && !NumStores)
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
CompilerInvocation.cpp 898 .Default(NumStores);
899 if (Value == NumStores) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp 6441 unsigned NumStores = Legal->getNumStores();
6443 unsigned StoresIC = IC / (NumStores ? NumStores : 1);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 11476 unsigned NumStores = getNumInterleavedAccesses(SubVecTy, DL);
11500 if (NumStores > 1) {
11503 LaneLen /= NumStores;
11524 for (unsigned StoreCount = 0; StoreCount < NumStores; ++StoreCount) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMISelLowering.cpp 19807 unsigned NumStores = getNumInterleavedAccesses(SubVecTy, DL);
19830 if (NumStores > 1) {
19833 LaneLen /= NumStores;
19887 for (unsigned StoreCount = 0; StoreCount < NumStores; ++StoreCount) {

Completed in 113 milliseconds