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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCHazardRecognizers.cpp273 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;
H A DPPCHazardRecognizers.h74 unsigned NumStores; member in class:llvm::PPCHazardRecognizer970
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.cpp248 unsigned NumStores = 0; local
257 NumStores++;
264 NumStores += getMemoryOpCost(Instruction::Store, MemAccessTy, None, 0,
272 unsigned const Max = (NumStores ? (12 / NumStores) : UINT_MAX);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLoopAccessAnalysis.h543 unsigned getNumStores() const { return NumStores; }
620 unsigned NumStores; member in class:llvm::LoopAccessInfo
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/
H A DAnalyzerOptions.h46 NumStores enumerator in enum:clang::AnalysisStores
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp193 unsigned NumStores = 0; member in struct:__anon4683::LowerMatrixIntrinsics::OpInfoTy
200 NumStores += RHS.NumStores;
303 OpInfo.NumStores += N;
312 unsigned getNumStores() const { return OpInfo.NumStores; }
1829 Rem << ore::NV("NumStores", Counts.NumStores) << " stores, "
1834 if (SharedCounts.NumStores > 0 || SharedCounts.NumLoads > 0 ||
1837 << ore::NV("NumStores", SharedCounts.NumStores) << " store
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDecl.cpp865 /// with equal or fewer than NumStores scalar stores.
867 unsigned &NumStores) {
876 return Init->isNullValue() || NumStores--;
882 if (!canEmitInitWithFewStoresAfterBZero(Elt, NumStores))
892 if (!canEmitInitWithFewStoresAfterBZero(Elt, NumStores))
866 canEmitInitWithFewStoresAfterBZero(llvm::Constant *Init, unsigned &NumStores) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineCost.cpp2266 unsigned NumStores = (TypeSize + PointerSize - 1) / PointerSize; local
2274 NumStores = std::min(NumStores, 8U);
2276 Cost += 2 * NumStores * InlineConstants::InstrCost;
H A DLoopAccessAnalysis.cpp1924 NumStores++;
2223 NumLoads(0), NumStores(0), MaxSafeDepDistBytes(-1), CanVecMem(false),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocFast.cpp55 STATISTIC(NumStores, "Number of stores added");
324 ++NumStores;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp684 unsigned NumStores);
691 EVT MemVT, unsigned NumStores,
707 SmallVectorImpl<MemOpLink> &StoreNodes, unsigned NumStores,
15888 unsigned NumStores) {
15893 for (unsigned i = 0; i < NumStores; ++i) {
15898 for (unsigned i = 0; i < NumStores; ++i) {
15908 SmallVectorImpl<MemOpLink> &StoreNodes, EVT MemVT, unsigned NumStores,
15911 if (NumStores < 2)
15918 unsigned SizeInBits = NumStores * ElementSizeBits;
15923 unsigned Elts = NumStores * NumMemElt
15887 getMergeStoreChains(SmallVectorImpl<MemOpLink> &StoreNodes, unsigned NumStores) argument
15907 mergeStoresOfConstantsOrVecElts( SmallVectorImpl<MemOpLink> &StoreNodes, EVT MemVT, unsigned NumStores, bool IsConstantSrc, bool UseVector, bool UseTrunc) argument
16221 checkMergeStoreCandidatesForDependencies( SmallVectorImpl<MemOpLink> &StoreNodes, unsigned NumStores, SDNode *RootNode) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp4036 unsigned NumStores = 0; local
4041 NumStores += InstInfo.mayStore;
4059 if (!PatInfo.hasSideEffects && PatInfo.mayStore && !NumStores)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp5376 unsigned NumStores = Legal->getNumStores();
5378 unsigned StoresIC = IC / (NumStores ? NumStores : 1);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp273 .Default(NumStores);
274 if (Value == NumStores) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp9995 unsigned NumStores = getNumInterleavedAccesses(SubVecTy, DL); local
10019 if (NumStores > 1) {
10022 LaneLen /= NumStores;
10043 for (unsigned StoreCount = 0; StoreCount < NumStores; ++StoreCount) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp18658 unsigned NumStores = getNumInterleavedAccesses(SubVecTy, DL); local
18681 if (NumStores > 1) {
18684 LaneLen /= NumStores;
18740 for (unsigned StoreCount = 0; StoreCount < NumStores; ++StoreCount) {

Completed in 426 milliseconds