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

/freebsd-11-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-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.cpp245 unsigned NumStores = 0; local
255 NumStores++;
262 NumStores += getMemoryOpCost(Instruction::Store, MemAccessTy, None, 0);
269 unsigned const Max = (NumStores ? (12 / NumStores) : UINT_MAX);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLoopAccessAnalysis.h549 unsigned getNumStores() const { return NumStores; }
644 unsigned NumStores; member in class:llvm::LoopAccessInfo
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/
H A DAnalyzerOptions.h46 NumStores enumerator in enum:clang::AnalysisStores
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineCost.cpp2083 unsigned NumStores = (TypeSize + PointerSize - 1) / PointerSize; local
2091 NumStores = std::min(NumStores, 8U);
2093 Cost += 2 * NumStores * InlineConstants::InstrCost;
H A DLoopAccessAnalysis.cpp1889 NumStores++;
2351 NumLoads(0), NumStores(0), MaxSafeDepDistBytes(-1), CanVecMem(false),
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDecl.cpp862 /// with equal or fewer than NumStores scalar stores.
864 unsigned &NumStores) {
873 return Init->isNullValue() || NumStores--;
879 if (!canEmitInitWithFewStoresAfterBZero(Elt, NumStores))
889 if (!canEmitInitWithFewStoresAfterBZero(Elt, NumStores))
863 canEmitInitWithFewStoresAfterBZero(llvm::Constant *Init, unsigned &NumStores) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocFast.cpp55 STATISTIC(NumStores, "Number of stores added");
324 ++NumStores;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp639 unsigned NumStores);
647 EVT MemVT, unsigned NumStores,
665 SmallVectorImpl<MemOpLink> &StoreNodes, unsigned NumStores,
15345 unsigned NumStores) {
15350 for (unsigned i = 0; i < NumStores; ++i) {
15355 for (unsigned i = 0; i < NumStores; ++i) {
15365 SmallVectorImpl<MemOpLink> &StoreNodes, EVT MemVT, unsigned NumStores,
15368 if (NumStores < 2)
15375 unsigned SizeInBits = NumStores * ElementSizeBits;
15380 unsigned Elts = NumStores * NumMemElt
15344 getMergeStoreChains(SmallVectorImpl<MemOpLink> &StoreNodes, unsigned NumStores) argument
15364 MergeStoresOfConstantsOrVecElts( SmallVectorImpl<MemOpLink> &StoreNodes, EVT MemVT, unsigned NumStores, bool IsConstantSrc, bool UseVector, bool UseTrunc) argument
15680 checkMergeStoreCandidatesForDependencies( SmallVectorImpl<MemOpLink> &StoreNodes, unsigned NumStores, SDNode *RootNode) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp4021 unsigned NumStores = 0; local
4026 NumStores += InstInfo.mayStore;
4044 if (!PatInfo.hasSideEffects && PatInfo.mayStore && !NumStores)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp5319 unsigned NumStores = Legal->getNumStores();
5321 unsigned StoresIC = IC / (NumStores ? NumStores : 1);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp213 .Default(NumStores);
214 if (Value == NumStores) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp9280 unsigned NumStores = getNumInterleavedAccesses(SubVecTy, DL); local
9303 if (NumStores > 1) {
9306 LaneLen /= NumStores;
9327 for (unsigned StoreCount = 0; StoreCount < NumStores; ++StoreCount) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp17216 unsigned NumStores = getNumInterleavedAccesses(SubVecTy, DL); local
17239 if (NumStores > 1) {
17242 LaneLen /= NumStores;
17298 for (unsigned StoreCount = 0; StoreCount < NumStores; ++StoreCount) {

Completed in 455 milliseconds