| /llvm-project-15.0.7/llvm/lib/Target/Hexagon/ |
| H A D | HexagonTargetTransformInfo.cpp | 191 unsigned NumLoads = alignTo(VecWidth, AlignWidth) / AlignWidth; in getMemoryOpCost() local 192 return 3 * NumLoads; in getMemoryOpCost() 203 unsigned NumLoads = alignTo(VecWidth, AlignWidth) / AlignWidth; in getMemoryOpCost() local 205 return Cost * NumLoads; in getMemoryOpCost() 209 return (3 - LogA) * Cost * NumLoads; in getMemoryOpCost()
|
| /llvm-project-15.0.7/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXLowerAggrCopies.cpp | 108 unsigned NumLoads = DL.getTypeStoreSize(LI->getType()); in runOnFunction() local 110 ConstantInt::get(Type::getInt32Ty(Context), NumLoads); in runOnFunction()
|
| /llvm-project-15.0.7/llvm/test/Transforms/LowerMatrixIntrinsics/ |
| H A D | remarks-shared-subtrees.ll | 17 ; YAML-NEXT: - NumLoads: '0' 26 ; YAML-NEXT: - NumLoads: '4' 47 ; YAML-NEXT: - NumLoads: '45' 56 ; YAML-NEXT: - NumLoads: '4'
|
| H A D | transpose-opts.ll | 20 ; REMARK-NEXT: - NumLoads: '6' 68 ; REMARK-NEXT: - NumLoads: '10' 308 ; REMARK-NEXT: - NumLoads: '12' 484 ; REMARK-NEXT: - NumLoads: '9' 630 ; REMARK-NEXT: - NumLoads: '18'
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | ExpandMemCmp.cpp | 377 const unsigned NumLoads = in getCompareLoadPairs() local 391 NumLoads == 1 ? nullptr in getCompareLoadPairs() 393 for (unsigned i = 0; i < NumLoads; ++i, ++LoadIndex) { in getCompareLoadPairs() 399 if (NumLoads != 1) { in getCompareLoadPairs()
|
| H A D | RegAllocFast.cpp | 53 STATISTIC(NumLoads , "Number of loads added"); 489 ++NumLoads; in reload()
|
| /llvm-project-15.0.7/llvm/include/llvm/Analysis/ |
| H A D | LoopAccessAnalysis.h | 595 unsigned getNumLoads() const { return NumLoads;} in getNumLoads() 680 unsigned NumLoads = 0; variable
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | ScheduleDAGSDNodes.cpp | 269 unsigned NumLoads = 0; in ClusterNeighboringLoads() local 276 if (!TII->shouldScheduleLoadsNear(BaseLoad, Load, BaseOff, Offset,NumLoads)) in ClusterNeighboringLoads() 279 ++NumLoads; in ClusterNeighboringLoads() 282 if (NumLoads == 0) in ClusterNeighboringLoads()
|
| /llvm-project-15.0.7/llvm/lib/Target/X86/ |
| H A D | X86InterleavedAccess.cpp | 198 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 D | X86FastPreTileConfig.cpp | 41 STATISTIC(NumLoads, "Number of loads added"); 266 ++NumLoads; in reload()
|
| H A D | X86InstrInfo.h | 450 unsigned NumLoads) const override;
|
| H A D | X86InstrInfo.cpp | 7339 unsigned NumLoads) const { in shouldScheduleLoadsNear() 7365 if (NumLoads >= 3) in shouldScheduleLoadsNear() 7367 } else if (NumLoads) { in shouldScheduleLoadsNear() 7377 if (NumLoads) in shouldScheduleLoadsNear()
|
| /llvm-project-15.0.7/llvm/lib/Target/RISCV/ |
| H A D | RISCVTargetTransformInfo.cpp | 242 unsigned NumLoads = getMaxVLFor(&VTy); in getGatherScatterOpCost() local 243 return NumLoads * MemOpCost; in getGatherScatterOpCost()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Scalar/ |
| H A D | LowerMatrixIntrinsics.cpp | 196 unsigned NumLoads = 0; member 206 NumLoads += RHS.NumLoads; in operator +=() 300 OpInfo.NumLoads += N; in addNumLoads() 304 void setNumLoads(unsigned N) { OpInfo.NumLoads = N; } in setNumLoads() 322 unsigned getNumLoads() const { return OpInfo.NumLoads; } in getNumLoads() 2210 << ore::NV("NumLoads", Counts.NumLoads) << " loads, " in emitRemarks() 2216 if (SharedCounts.NumStores > 0 || SharedCounts.NumLoads > 0 || in emitRemarks() 2220 << ore::NV("NumLoads", SharedCounts.NumLoads) << " loads, " in emitRemarks()
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | TargetInstrInfo.h | 1329 unsigned NumLoads) const { in shouldScheduleLoadsNear() argument 1404 unsigned NumLoads, unsigned NumBytes) const { in shouldClusterMemOps() argument
|
| /llvm-project-15.0.7/llvm/lib/Target/AArch64/ |
| H A D | AArch64InstrInfo.h | 168 unsigned NumLoads, unsigned NumBytes) const override;
|
| /llvm-project-15.0.7/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPURegisterBankInfo.cpp | 1353 int NumLoads = 1; in applyMappingSBufferLoad() local 1355 NumLoads = LoadSize / 128; in applyMappingSBufferLoad() 1356 Ty = Ty.divide(NumLoads); in applyMappingSBufferLoad() 1361 const Align Alignment = NumLoads > 1 ? Align(16 * NumLoads) : Align(1); in applyMappingSBufferLoad() 1392 SmallVector<Register, 4> LoadParts(NumLoads); in applyMappingSBufferLoad() 1397 for (int i = 0; i < NumLoads; ++i) { in applyMappingSBufferLoad() 1398 if (NumLoads == 1) { in applyMappingSBufferLoad() 1437 if (NumLoads != 1) { in applyMappingSBufferLoad()
|
| H A D | SIInstrInfo.h | 203 unsigned NumLoads, unsigned NumBytes) const override; 206 int64_t Offset1, unsigned NumLoads) const override;
|
| H A D | SIInstrInfo.cpp | 486 unsigned NumLoads, in shouldClusterMemOps() argument 512 const unsigned LoadSize = NumBytes / NumLoads; in shouldClusterMemOps() 513 const unsigned NumDWORDs = ((LoadSize + 3) / 4) * NumLoads; in shouldClusterMemOps() 529 unsigned NumLoads) const { in shouldScheduleLoadsNear() 536 return (NumLoads <= 16 && (Offset1 - Offset0) < 64); in shouldScheduleLoadsNear()
|
| H A D | SIISelLowering.cpp | 6710 unsigned NumLoads = 1; in lowerSBuffer() local 6717 NumLoads = NumElts / 4; in lowerSBuffer() 6736 NumLoads > 1 ? Align(16 * NumLoads) : Align(4)); in lowerSBuffer() 6739 for (unsigned i = 0; i < NumLoads; ++i) { in lowerSBuffer()
|
| /llvm-project-15.0.7/llvm/lib/Target/PowerPC/ |
| H A D | PPCInstrInfo.h | 649 unsigned NumLoads, unsigned NumBytes) const override;
|
| H A D | PPCInstrInfo.cpp | 2817 ArrayRef<const MachineOperand *> BaseOps2, unsigned NumLoads, in shouldClusterMemOps() argument 2828 if (NumLoads > 2) in shouldClusterMemOps()
|
| /llvm-project-15.0.7/llvm/lib/Target/ARM/ |
| H A D | ARMBaseInstrInfo.h | 259 unsigned NumLoads) const override;
|
| /llvm-project-15.0.7/llvm/utils/TableGen/ |
| H A D | CodeGenDAGPatterns.cpp | 4161 unsigned NumLoads = 0; in VerifyInstructionFlags() local 4166 NumLoads += InstInfo.mayLoad; in VerifyInstructionFlags() 4187 if (!PatInfo.mayStore && PatInfo.mayLoad && !NumLoads) in VerifyInstructionFlags()
|
| /llvm-project-15.0.7/llvm/lib/Analysis/ |
| H A D | LoopAccessAnalysis.cpp | 2183 NumLoads++; in analyzeLoop()
|