Home
last modified time | relevance | path

Searched refs:NumStores (Results 1 – 16 of 16) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCHazardRecognizers.cpp273 NumStores = 0; in EndDispatchGroup()
300 for (unsigned i = 0, e = NumStores; i != e; ++i) { in isLoadOfStoredAddress()
375 if (isLoad && NumStores && !MI->memoperands_empty()) { in getHazardType()
402 if (isStore && NumStores < 4 && !MI->memoperands_empty()) { in EmitInstruction()
404 StoreSize[NumStores] = MO->getSize(); in EmitInstruction()
405 StoreOffset[NumStores] = MO->getOffset(); in EmitInstruction()
406 StoreValue[NumStores] = MO->getValue(); in EmitInstruction()
407 ++NumStores; in EmitInstruction()
H A DPPCHazardRecognizers.h74 unsigned NumStores; variable
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DLoopAccessAnalysis.h552 unsigned getNumStores() const { return NumStores; } in getNumStores()
629 unsigned NumStores; variable
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp193 unsigned NumStores = 0; member
200 NumStores += RHS.NumStores; in operator +=()
303 OpInfo.NumStores += N; in addNumStores()
312 unsigned getNumStores() const { return OpInfo.NumStores; } in getNumStores()
2003 Rem << ore::NV("NumStores", Counts.NumStores) << " stores, " in emitRemarks()
2008 if (SharedCounts.NumStores > 0 || SharedCounts.NumLoads > 0 || in emitRemarks()
2011 << ore::NV("NumStores", SharedCounts.NumStores) << " stores, " in emitRemarks()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.cpp250 InstructionCost NumStores = 0; in getUnrollingPreferences() local
259 NumStores++; in getUnrollingPreferences()
266 NumStores += getMemoryOpCost(Instruction::Store, MemAccessTy, None, 0, in getUnrollingPreferences()
274 unsigned const NumStoresVal = *NumStores.getValue(); in getUnrollingPreferences()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/
H A DAnalyzerOptions.h47 NumStores enumerator
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DInlineCost.cpp2451 unsigned NumStores = (TypeSize + PointerSize - 1) / PointerSize; in getCallsiteCost() local
2459 NumStores = std::min(NumStores, 8U); in getCallsiteCost()
2461 Cost += 2 * NumStores * InlineConstants::InstrCost; in getCallsiteCost()
H A DLoopAccessAnalysis.cpp1883 NumStores++; in analyzeLoop()
2198 NumLoads(0), NumStores(0), MaxSafeDepDistBytes(-1), CanVecMem(false), in LoopAccessInfo()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGDecl.cpp878 unsigned &NumStores) { in canEmitInitWithFewStoresAfterBZero() argument
887 return Init->isNullValue() || NumStores--; in canEmitInitWithFewStoresAfterBZero()
893 if (!canEmitInitWithFewStoresAfterBZero(Elt, NumStores)) in canEmitInitWithFewStoresAfterBZero()
903 if (!canEmitInitWithFewStoresAfterBZero(Elt, NumStores)) in canEmitInitWithFewStoresAfterBZero()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DRegAllocFast.cpp55 STATISTIC(NumStores, "Number of stores added");
413 ++NumStores; in spill()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp694 unsigned NumStores);
701 EVT MemVT, unsigned NumStores,
717 SmallVectorImpl<MemOpLink> &StoreNodes, unsigned NumStores,
7290 unsigned NumStores = Stores.size(); in mergeTruncStores() local
7292 unsigned WideNumBits = NumStores * NarrowNumBits; in mergeTruncStores()
7300 SmallVector<int64_t, 8> OffsetMap(NumStores, INT64_MAX); in mergeTruncStores()
7361 if (Offset < 0 || Offset >= NumStores || OffsetMap[Offset] != INT64_MAX) in mergeTruncStores()
7381 for (unsigned i = 0; i != NumStores; ++i) in mergeTruncStores()
7385 for (unsigned i = 0, j = NumStores - 1; i != NumStores; ++i, --j) in mergeTruncStores()
7399 else if (NumStores == 2 && checkOffsets(Layout.isBigEndian())) in mergeTruncStores()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp4082 unsigned NumStores = 0; in VerifyInstructionFlags() local
4087 NumStores += InstInfo.mayStore; in VerifyInstructionFlags()
4105 if (!PatInfo.hasSideEffects && PatInfo.mayStore && !NumStores) in VerifyInstructionFlags()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DCompilerInvocation.cpp898 .Default(NumStores); in ParseAnalyzerArgs()
899 if (Value == NumStores) { in ParseAnalyzerArgs()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp6441 unsigned NumStores = Legal->getNumStores(); in selectInterleaveCount() local
6443 unsigned StoresIC = IC / (NumStores ? NumStores : 1); in selectInterleaveCount()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp11476 unsigned NumStores = getNumInterleavedAccesses(SubVecTy, DL); in lowerInterleavedStore() local
11500 if (NumStores > 1) { in lowerInterleavedStore()
11503 LaneLen /= NumStores; in lowerInterleavedStore()
11524 for (unsigned StoreCount = 0; StoreCount < NumStores; ++StoreCount) { in lowerInterleavedStore()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp19807 unsigned NumStores = getNumInterleavedAccesses(SubVecTy, DL); in lowerInterleavedStore() local
19830 if (NumStores > 1) { in lowerInterleavedStore()
19833 LaneLen /= NumStores; in lowerInterleavedStore()
19887 for (unsigned StoreCount = 0; StoreCount < NumStores; ++StoreCount) { in lowerInterleavedStore()