Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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()
403 if (isStore && NumStores < 4 && !MI->memoperands_empty() && in EmitInstruction()
406 StoreSize[NumStores] = MO->getSize().getValue(); in EmitInstruction()
407 StoreOffset[NumStores] = MO->getOffset(); in EmitInstruction()
408 StoreValue[NumStores] = MO->getValue(); in EmitInstruction()
409 ++NumStores; in EmitInstruction()
H A DPPCHazardRecognizers.h74 unsigned NumStores; variable
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.cpp57 static void countNumMemAccesses(const Value *Ptr, unsigned &NumStores, in countNumMemAccesses() argument
66 NumStores++; in countNumMemAccesses()
72 countNumMemAccesses(GEP, NumStores, NumLoads, F); in countNumMemAccesses()
114 unsigned NumStores = 0, NumLoads = 0; in adjustInliningThreshold() local
115 countNumMemAccesses(GEP, NumStores, NumLoads, Callee); in adjustInliningThreshold()
116 Ptr2NumUses[GV] += NumLoads + NumStores; in adjustInliningThreshold()
132 unsigned NumStores = 0; in adjustInliningThreshold() local
138 countNumMemAccesses(CalleeArg, NumStores, NumLoads, Callee); in adjustInliningThreshold()
142 if (NumStores > 10) in adjustInliningThreshold()
143 Bonus += NumStores * 50; in adjustInliningThreshold()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DGlobalStatus.h39 unsigned NumStores = 0; member
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLoopAccessAnalysis.h712 unsigned getNumStores() const { return NumStores; } in getNumStores()
814 unsigned NumStores = 0; variable
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DGlobalStatus.cpp107 ++GS.NumStores; in analyzeGlobalAux()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLoadStoreOpt.cpp364 const unsigned NumStores = Stores.size(); in doSingleStoreMerge() local
367 LLT::scalar(NumStores * SmallTy.getSizeInBits().getFixedValue()); in doSingleStoreMerge()
401 assert(ConstantVals.size() == NumStores); in doSingleStoreMerge()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp377 unsigned NumStores = 0; member
388 NumStores += RHS.NumStores; in operator +=()
490 OpInfo.NumStores += N; in addNumStores()
504 unsigned getNumStores() const { return OpInfo.NumStores; } in getNumStores()
2790 Rem << ore::NV("NumStores", Counts.NumStores) << " stores, " in emitRemarks()
2797 if (SharedCounts.NumStores > 0 || SharedCounts.NumLoads > 0 || in emitRemarks()
2800 << ore::NV("NumStores", SharedCounts.NumStores) << " stores, " in emitRemarks()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FastPreTileConfig.cpp38 STATISTIC(NumStores, "Number of stores added");
211 ++NumStores; in spill()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocFast.cpp53 STATISTIC(NumStores, "Number of stores added");
592 ++NumStores; in spill()
1120 ++NumStores; in defineVirtReg()
H A DMachinePipeliner.cpp555 unsigned NumStores = 0; in canPipelineLoop() local
558 ++NumStores; in canPipelineLoop()
559 if (NumStores > SwpMaxNumStores) { in canPipelineLoop()
566 << ore::NV("NumStores", NumStores) << " > " in canPipelineLoop()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineCost.cpp3106 unsigned NumStores = (TypeSize + PointerSize - 1) / PointerSize; in getCallsiteCost() local
3114 NumStores = std::min(NumStores, 8U); in getCallsiteCost()
3116 Cost += 2 * NumStores * InstrCost; in getCallsiteCost()
H A DLoopAccessAnalysis.cpp2568 NumStores++; in analyzeLoop()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDecl.cpp905 unsigned &NumStores) { in canEmitInitWithFewStoresAfterBZero() argument
914 return Init->isNullValue() || NumStores--; in canEmitInitWithFewStoresAfterBZero()
920 if (!canEmitInitWithFewStoresAfterBZero(Elt, NumStores)) in canEmitInitWithFewStoresAfterBZero()
930 if (!canEmitInitWithFewStoresAfterBZero(Elt, NumStores)) in canEmitInitWithFewStoresAfterBZero()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp776 unsigned NumStores);
788 EVT MemVT, unsigned NumStores,
803 SmallVectorImpl<MemOpLink> &StoreNodes, unsigned NumStores,
9381 unsigned NumStores = Stores.size(); in mergeTruncStores() local
9382 unsigned WideNumBits = NumStores * NarrowNumBits; in mergeTruncStores()
9390 SmallVector<int64_t, 8> OffsetMap(NumStores, INT64_MAX); in mergeTruncStores()
9457 if (Offset < 0 || Offset >= NumStores || OffsetMap[Offset] != INT64_MAX) in mergeTruncStores()
9477 for (unsigned i = 0; i != NumStores; ++i) in mergeTruncStores()
9481 for (unsigned i = 0, j = NumStores - 1; i != NumStores; ++i, --j) in mergeTruncStores()
9495 else if (NumStores == 2 && checkOffsets(Layout.isBigEndian())) in mergeTruncStores()
[all …]
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenDAGPatterns.cpp4195 unsigned NumStores = 0; in VerifyInstructionFlags() local
4200 NumStores += InstInfo.mayStore; in VerifyInstructionFlags()
4218 if (!PatInfo.hasSideEffects && PatInfo.mayStore && !NumStores) in VerifyInstructionFlags()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1622 if (GS.NumStores == 1) in processInternalGlobal()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp4802 unsigned NumStores = Legal->getNumStores(); in selectInterleaveCount() local
4804 unsigned StoresIC = IC / (NumStores ? NumStores : 1); in selectInterleaveCount()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp17352 unsigned NumStores = getNumInterleavedAccesses(SubVecTy, DL, UseScalable); in lowerInterleavedStore() local
17375 LaneLen /= NumStores; in lowerInterleavedStore()
17427 for (unsigned StoreCount = 0; StoreCount < NumStores; ++StoreCount) { in lowerInterleavedStore()
17578 unsigned NumStores = getNumInterleavedAccesses(VTy, DL, UseScalable); in lowerInterleaveIntrinsicToStore() local
17582 VTy->getElementCount().divideCoefficientBy(NumStores)); in lowerInterleaveIntrinsicToStore()
17602 for (unsigned I = 0; I < NumStores; ++I) { in lowerInterleaveIntrinsicToStore()
17604 if (NumStores > 1) { in lowerInterleaveIntrinsicToStore()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp21768 unsigned NumStores = getNumInterleavedAccesses(SubVecTy, DL); in lowerInterleavedStore() local
21791 if (NumStores > 1) { in lowerInterleavedStore()
21794 LaneLen /= NumStores; in lowerInterleavedStore()
21835 for (unsigned StoreCount = 0; StoreCount < NumStores; ++StoreCount) { in lowerInterleavedStore()
/freebsd/contrib/llvm-project/llvm/include/llvm/Testing/Demangle/
H A DDemangleTestCases.inc29020 {"_ZL9NumStores", "NumStores"},
29056 {"_ZL9NumStores", "NumStores"},