| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCHazardRecognizers.cpp | 273 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 D | PPCHazardRecognizers.h | 74 unsigned NumStores; variable
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
| H A D | GlobalStatus.h | 39 unsigned NumStores = 0; member
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | LoopAccessAnalysis.h | 608 unsigned getNumStores() const { return NumStores; } in getNumStores() 694 unsigned NumStores = 0; variable
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | GlobalStatus.cpp | 107 ++GS.NumStores; in analyzeGlobalAux()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | LoadStoreOpt.cpp | 354 const unsigned NumStores = Stores.size(); in doSingleStoreMerge() local 357 LLT::scalar(NumStores * SmallTy.getSizeInBits().getFixedValue()); in doSingleStoreMerge() 391 assert(ConstantVals.size() == NumStores); in doSingleStoreMerge()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZTargetTransformInfo.cpp | 288 InstructionCost NumStores = 0; in getUnrollingPreferences() local 297 NumStores++; in getUnrollingPreferences() 304 NumStores += getMemoryOpCost(Instruction::Store, MemAccessTy, in getUnrollingPreferences() 312 unsigned const NumStoresVal = *NumStores.getValue(); in getUnrollingPreferences()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | LowerMatrixIntrinsics.cpp | 230 unsigned NumStores = 0; member 241 NumStores += RHS.NumStores; in operator +=() 343 OpInfo.NumStores += N; in addNumStores() 357 unsigned getNumStores() const { return OpInfo.NumStores; } in getNumStores() 2487 Rem << ore::NV("NumStores", Counts.NumStores) << " stores, " in emitRemarks() 2494 if (SharedCounts.NumStores > 0 || SharedCounts.NumLoads > 0 || in emitRemarks() 2497 << ore::NV("NumStores", SharedCounts.NumStores) << " stores, " in emitRemarks()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86FastPreTileConfig.cpp | 39 STATISTIC(NumStores, "Number of stores added"); 212 ++NumStores; in spill()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | RegAllocFast.cpp | 52 STATISTIC(NumStores, "Number of stores added"); 549 ++NumStores; in spill() 1077 ++NumStores; in defineVirtReg()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | InlineCost.cpp | 2903 unsigned NumStores = (TypeSize + PointerSize - 1) / PointerSize; in getCallsiteCost() local 2911 NumStores = std::min(NumStores, 8U); in getCallsiteCost() 2913 Cost += 2 * NumStores * InstrCost; in getCallsiteCost()
|
| H A D | LoopAccessAnalysis.cpp | 2422 NumStores++; in analyzeLoop()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGDecl.cpp | 911 unsigned &NumStores) { in canEmitInitWithFewStoresAfterBZero() argument 920 return Init->isNullValue() || NumStores--; in canEmitInitWithFewStoresAfterBZero() 926 if (!canEmitInitWithFewStoresAfterBZero(Elt, NumStores)) in canEmitInitWithFewStoresAfterBZero() 936 if (!canEmitInitWithFewStoresAfterBZero(Elt, NumStores)) in canEmitInitWithFewStoresAfterBZero()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | DAGCombiner.cpp | 8920 unsigned NumStores = Stores.size(); in mergeTruncStores() local 9014 for (unsigned i = 0, j = NumStores - 1; i != NumStores; ++i, --j) in mergeTruncStores() 19810 for (unsigned i = 0; i < NumStores; ++i) { in getMergeStoreChains() 19815 for (unsigned i = 0; i < NumStores; ++i) { in getMergeStoreChains() 19852 if (NumStores < 2) in mergeStoresOfConstantsOrVecElts() 19867 for (unsigned I = 0; I != NumStores; ++I) { in mergeStoresOfConstantsOrVecElts() 19883 unsigned Elts = NumStores * NumMemElts; in mergeStoresOfConstantsOrVecElts() 19970 for (unsigned i = 0; i < NumStores; ++i) { in mergeStoresOfConstantsOrVecElts() 20037 for (unsigned i = 0; i < NumStores; ++i) in mergeStoresOfConstantsOrVecElts() 20238 for (unsigned i = 0; i < NumStores; ++i) { in checkMergeStoreCandidatesForDependencies() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | CodeGenDAGPatterns.cpp | 4153 unsigned NumStores = 0; in VerifyInstructionFlags() local 4158 NumStores += InstInfo.mayStore; in VerifyInstructionFlags() 4176 if (!PatInfo.hasSideEffects && PatInfo.mayStore && !NumStores) in VerifyInstructionFlags()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | GlobalOpt.cpp | 1590 if (GS.NumStores == 1) in processInternalGlobal()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | LoopVectorize.cpp | 5527 unsigned NumStores = Legal->getNumStores(); in selectInterleaveCount() local 5529 unsigned StoresIC = IC / (NumStores ? NumStores : 1); in selectInterleaveCount()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelLowering.cpp | 15849 unsigned NumStores = getNumInterleavedAccesses(SubVecTy, DL, UseScalable); in lowerInterleavedStore() local 15872 LaneLen /= NumStores; in lowerInterleavedStore() 15924 for (unsigned StoreCount = 0; StoreCount < NumStores; ++StoreCount) { in lowerInterleavedStore() 16071 unsigned NumStores = getNumInterleavedAccesses(VTy, DL, UseScalable); in lowerInterleaveIntrinsicToStore() local 16075 VTy->getElementCount().divideCoefficientBy(NumStores)); in lowerInterleaveIntrinsicToStore() 16093 for (unsigned I = 0; I < NumStores; ++I) { in lowerInterleaveIntrinsicToStore() 16095 if (NumStores > 1) { in lowerInterleaveIntrinsicToStore()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMISelLowering.cpp | 21820 unsigned NumStores = getNumInterleavedAccesses(SubVecTy, DL); in lowerInterleavedStore() local 21843 if (NumStores > 1) { in lowerInterleavedStore() 21846 LaneLen /= NumStores; in lowerInterleavedStore() 21892 for (unsigned StoreCount = 0; StoreCount < NumStores; ++StoreCount) { in lowerInterleavedStore()
|