Home
last modified time | relevance | path

Searched refs:NumLoads (Results 1 – 25 of 27) sorted by relevance

12

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetTransformInfo.cpp190 unsigned NumLoads = alignTo(VecWidth, AlignWidth) / AlignWidth; in getMemoryOpCost() local
191 return 3 * NumLoads; in getMemoryOpCost()
202 unsigned NumLoads = alignTo(VecWidth, AlignWidth) / AlignWidth; in getMemoryOpCost() local
204 return Cost * NumLoads; in getMemoryOpCost()
208 return (3 - LogA) * Cost * NumLoads; in getMemoryOpCost()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXLowerAggrCopies.cpp109 unsigned NumLoads = DL.getTypeStoreSize(LI->getType()); in runOnFunction() local
111 ConstantInt::get(Type::getInt32Ty(Context), NumLoads); in runOnFunction()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVTargetTransformInfo.cpp153 unsigned NumLoads = VTy->getNumElements(); in getGatherScatterOpCost() local
156 return NumLoads * MemOpCost; in getGatherScatterOpCost()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DExpandMemCmp.cpp375 const unsigned NumLoads = in getCompareLoadPairs() local
389 NumLoads == 1 ? nullptr in getCompareLoadPairs()
391 for (unsigned i = 0; i < NumLoads; ++i, ++LoadIndex) { in getCompareLoadPairs()
397 if (NumLoads != 1) { in getCompareLoadPairs()
H A DRegAllocFast.cpp57 STATISTIC(NumLoads , "Number of loads added");
481 ++NumLoads; in reload()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLoopAccessAnalysis.h559 unsigned getNumLoads() const { return NumLoads;} in getNumLoads()
634 unsigned NumLoads; variable
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InterleavedAccess.cpp198 unsigned int NumLoads = NumSubVectors; in decompose() local
207 NumLoads = NumSubVectors * (VecLength / 384); in decompose()
220 for (unsigned i = 0; i < NumLoads; i++) { in decompose()
H A DX86InstrInfo.h444 unsigned NumLoads) const override;
H A DX86InstrInfo.cpp6802 unsigned NumLoads) const { in shouldScheduleLoadsNear()
6828 if (NumLoads >= 3) in shouldScheduleLoadsNear()
6830 } else if (NumLoads) { in shouldScheduleLoadsNear()
6840 if (NumLoads) in shouldScheduleLoadsNear()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp196 unsigned NumLoads = 0; member
206 NumLoads += RHS.NumLoads; in operator +=()
302 OpInfo.NumLoads += N; in addNumLoads()
306 void setNumLoads(unsigned N) { OpInfo.NumLoads = N; } in setNumLoads()
324 unsigned getNumLoads() const { return OpInfo.NumLoads; } in getNumLoads()
2202 << ore::NV("NumLoads", Counts.NumLoads) << " loads, " in emitRemarks()
2208 if (SharedCounts.NumStores > 0 || SharedCounts.NumLoads > 0 || in emitRemarks()
2212 << ore::NV("NumLoads", SharedCounts.NumLoads) << " loads, " in emitRemarks()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.cpp270 unsigned NumLoads = 0; in ClusterNeighboringLoads() local
277 if (!TII->shouldScheduleLoadsNear(BaseLoad, Load, BaseOff, Offset,NumLoads)) in ClusterNeighboringLoads()
280 ++NumLoads; in ClusterNeighboringLoads()
283 if (NumLoads == 0) in ClusterNeighboringLoads()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetInstrInfo.h1325 unsigned NumLoads) const { in shouldScheduleLoadsNear() argument
1400 unsigned NumLoads, unsigned NumBytes) const { in shouldClusterMemOps() argument
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.h154 unsigned NumLoads, unsigned NumBytes) const override;
H A DAArch64InstrInfo.cpp3145 ArrayRef<const MachineOperand *> BaseOps2, unsigned NumLoads, in shouldClusterMemOps() argument
3163 if (NumLoads > 2) in shouldClusterMemOps()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPURegisterBankInfo.cpp1437 int NumLoads = 1; in applyMappingSBufferLoad() local
1439 NumLoads = LoadSize / 128; in applyMappingSBufferLoad()
1440 Ty = Ty.divide(NumLoads); in applyMappingSBufferLoad()
1445 const Align Alignment = NumLoads > 1 ? Align(16 * NumLoads) : Align(1); in applyMappingSBufferLoad()
1476 SmallVector<Register, 4> LoadParts(NumLoads); in applyMappingSBufferLoad()
1481 for (int i = 0; i < NumLoads; ++i) { in applyMappingSBufferLoad()
1482 if (NumLoads == 1) { in applyMappingSBufferLoad()
1521 if (NumLoads != 1) { in applyMappingSBufferLoad()
H A DSIInstrInfo.h197 unsigned NumLoads, unsigned NumBytes) const override;
200 int64_t Offset1, unsigned NumLoads) const override;
H A DSIInstrInfo.cpp433 unsigned NumLoads, in shouldClusterMemOps() argument
459 const unsigned LoadSize = NumBytes / NumLoads; in shouldClusterMemOps()
460 const unsigned NumDWORDs = ((LoadSize + 3) / 4) * NumLoads; in shouldClusterMemOps()
476 unsigned NumLoads) const { in shouldScheduleLoadsNear()
483 return (NumLoads <= 16 && (Offset1 - Offset0) < 64); in shouldScheduleLoadsNear()
H A DSIISelLowering.cpp6403 unsigned NumLoads = 1; in lowerSBuffer() local
6410 NumLoads = NumElts / 4; in lowerSBuffer()
6429 NumLoads > 1 ? Align(16 * NumLoads) : Align(4)); in lowerSBuffer()
6432 for (unsigned i = 0; i < NumLoads; ++i) { in lowerSBuffer()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.h554 unsigned NumLoads, unsigned NumBytes) const override;
H A DPPCInstrInfo.cpp2807 ArrayRef<const MachineOperand *> BaseOps2, unsigned NumLoads, in shouldClusterMemOps() argument
2818 if (NumLoads > 2) in shouldClusterMemOps()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp1879 NumLoads++; in analyzeLoop()
2197 NumLoads(0), NumStores(0), MaxSafeDepDistBytes(-1), CanVecMem(false), in LoopAccessInfo()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.h260 unsigned NumLoads) const override;
H A DARMBaseInstrInfo.cpp1997 unsigned NumLoads) const { in shouldScheduleLoadsNear()
2019 if (NumLoads >= 3) in shouldScheduleLoadsNear()
/freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.cpp4084 unsigned NumLoads = 0; in VerifyInstructionFlags() local
4089 NumLoads += InstInfo.mayLoad; in VerifyInstructionFlags()
4110 if (!PatInfo.mayStore && PatInfo.mayLoad && !NumLoads) in VerifyInstructionFlags()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp6485 unsigned NumLoads = Legal->getNumLoads(); in selectInterleaveCount() local
6487 unsigned LoadsIC = IC / (NumLoads ? NumLoads : 1); in selectInterleaveCount()

12