/freebsd/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() 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 D | PPCHazardRecognizers.h | 74 unsigned NumStores; variable
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
H A D | GlobalStatus.h | 39 unsigned NumStores = 0; member
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | LoopAccessAnalysis.h | 661 unsigned getNumStores() const { return NumStores; } in getNumStores() 754 unsigned NumStores = 0; variable
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
H A D | SystemZTargetTransformInfo.cpp | 292 InstructionCost NumStores = 0; in getUnrollingPreferences() local 301 NumStores++; in getUnrollingPreferences() 308 NumStores += getMemoryOpCost(Instruction::Store, MemAccessTy, in getUnrollingPreferences() 316 unsigned const NumStoresVal = *NumStores.getValue(); in getUnrollingPreferences()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | LoadStoreOpt.cpp | 368 const unsigned NumStores = Stores.size(); in doSingleStoreMerge() local 371 LLT::scalar(NumStores * SmallTy.getSizeInBits().getFixedValue()); in doSingleStoreMerge() 405 assert(ConstantVals.size() == NumStores); in doSingleStoreMerge()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | GlobalStatus.cpp | 107 ++GS.NumStores; in analyzeGlobalAux()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | LowerMatrixIntrinsics.cpp | 334 unsigned NumStores = 0; member 345 NumStores += RHS.NumStores; in operator +=() 447 OpInfo.NumStores += N; in addNumStores() 461 unsigned getNumStores() const { return OpInfo.NumStores; } in getNumStores() 2585 Rem << ore::NV("NumStores", Counts.NumStores) << " stores, " in emitRemarks() 2592 if (SharedCounts.NumStores > 0 || SharedCounts.NumLoads > 0 || in emitRemarks() 2595 << ore::NV("NumStores", SharedCounts.NumStores) << " stores, " in emitRemarks()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86FastPreTileConfig.cpp | 39 STATISTIC(NumStores, "Number of stores added"); 212 ++NumStores; in spill()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | RegAllocFast.cpp | 53 STATISTIC(NumStores, "Number of stores added"); 575 ++NumStores; in spill() 1105 ++NumStores; in defineVirtReg()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | InlineCost.cpp | 2908 unsigned NumStores = (TypeSize + PointerSize - 1) / PointerSize; in getCallsiteCost() local 2916 NumStores = std::min(NumStores, 8U); in getCallsiteCost() 2918 Cost += 2 * NumStores * InstrCost; in getCallsiteCost()
|
H A D | LoopAccessAnalysis.cpp | 2499 NumStores++; in analyzeLoop()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGDecl.cpp | 913 unsigned &NumStores) { in canEmitInitWithFewStoresAfterBZero() argument 922 return Init->isNullValue() || NumStores--; in canEmitInitWithFewStoresAfterBZero() 928 if (!canEmitInitWithFewStoresAfterBZero(Elt, NumStores)) in canEmitInitWithFewStoresAfterBZero() 938 if (!canEmitInitWithFewStoresAfterBZero(Elt, NumStores)) in canEmitInitWithFewStoresAfterBZero()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | DAGCombiner.cpp | 767 unsigned NumStores); 779 EVT MemVT, unsigned NumStores, 794 SmallVectorImpl<MemOpLink> &StoreNodes, unsigned NumStores, 8927 unsigned NumStores = Stores.size(); in mergeTruncStores() local 8928 unsigned WideNumBits = NumStores * NarrowNumBits; in mergeTruncStores() 8936 SmallVector<int64_t, 8> OffsetMap(NumStores, INT64_MAX); in mergeTruncStores() 9003 if (Offset < 0 || Offset >= NumStores || OffsetMap[Offset] != INT64_MAX) in mergeTruncStores() 9023 for (unsigned i = 0; i != NumStores; ++i) in mergeTruncStores() 9027 for (unsigned i = 0, j = NumStores - 1; i != NumStores; ++i, --j) in mergeTruncStores() 9041 else if (NumStores == 2 && checkOffsets(Layout.isBigEndian())) in mergeTruncStores() [all …]
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
H A D | CodeGenDAGPatterns.cpp | 4157 unsigned NumStores = 0; in VerifyInstructionFlags() local 4162 NumStores += InstInfo.mayStore; in VerifyInstructionFlags() 4180 if (!PatInfo.hasSideEffects && PatInfo.mayStore && !NumStores) in VerifyInstructionFlags()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | GlobalOpt.cpp | 1602 if (GS.NumStores == 1) in processInternalGlobal()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | LoopVectorize.cpp | 5032 unsigned NumStores = Legal->getNumStores(); in selectInterleaveCount() local 5034 unsigned StoresIC = IC / (NumStores ? NumStores : 1); in selectInterleaveCount()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64ISelLowering.cpp | 16930 unsigned NumStores = getNumInterleavedAccesses(SubVecTy, DL, UseScalable); in lowerInterleavedStore() local 16953 LaneLen /= NumStores; in lowerInterleavedStore() 17005 for (unsigned StoreCount = 0; StoreCount < NumStores; ++StoreCount) { in lowerInterleavedStore() 17152 unsigned NumStores = getNumInterleavedAccesses(VTy, DL, UseScalable); in lowerInterleaveIntrinsicToStore() local 17156 VTy->getElementCount().divideCoefficientBy(NumStores)); in lowerInterleaveIntrinsicToStore() 17174 for (unsigned I = 0; I < NumStores; ++I) { in lowerInterleaveIntrinsicToStore() 17176 if (NumStores > 1) { in lowerInterleaveIntrinsicToStore()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMISelLowering.cpp | 21843 unsigned NumStores = getNumInterleavedAccesses(SubVecTy, DL); in lowerInterleavedStore() local 21866 if (NumStores > 1) { in lowerInterleavedStore() 21869 LaneLen /= NumStores; in lowerInterleavedStore() 21915 for (unsigned StoreCount = 0; StoreCount < NumStores; ++StoreCount) { in lowerInterleavedStore()
|