| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| H A D | HexagonTargetTransformInfo.cpp | 190 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()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXLowerAggrCopies.cpp | 109 unsigned NumLoads = DL.getTypeStoreSize(LI->getType()); in runOnFunction() local 111 ConstantInt::get(Type::getInt32Ty(Context), NumLoads); in runOnFunction()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/ |
| H A D | RISCVTargetTransformInfo.cpp | 153 unsigned NumLoads = VTy->getNumElements(); in getGatherScatterOpCost() local 156 return NumLoads * MemOpCost; in getGatherScatterOpCost()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | ExpandMemCmp.cpp | 375 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 D | RegAllocFast.cpp | 56 STATISTIC(NumLoads , "Number of loads added"); 467 ++NumLoads; in reload()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| H A D | LoopAccessAnalysis.h | 553 unsigned getNumLoads() const { return NumLoads;} in getNumLoads() 628 unsigned NumLoads; variable
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | LowerMatrixIntrinsics.cpp | 195 unsigned NumLoads = 0; member 201 NumLoads += RHS.NumLoads; in operator +=() 296 OpInfo.NumLoads += N; in addNumLoads() 300 void setNumLoads(unsigned N) { OpInfo.NumLoads = N; } in setNumLoads() 313 unsigned getNumLoads() const { return OpInfo.NumLoads; } in getNumLoads() 2004 << ore::NV("NumLoads", Counts.NumLoads) << " loads, " in emitRemarks() 2008 if (SharedCounts.NumStores > 0 || SharedCounts.NumLoads > 0 || in emitRemarks() 2012 << ore::NV("NumLoads", SharedCounts.NumLoads) << " loads, " in emitRemarks()
|
| /netbsd-src/external/apache2/llvm/dist/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 | X86InstrInfo.h | 440 unsigned NumLoads) const override;
|
| H A D | X86InstrInfo.cpp | 6748 unsigned NumLoads) const { in shouldScheduleLoadsNear() 6774 if (NumLoads >= 3) in shouldScheduleLoadsNear() 6776 } else if (NumLoads) { in shouldScheduleLoadsNear() 6786 if (NumLoads) in shouldScheduleLoadsNear()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | ScheduleDAGSDNodes.cpp | 270 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()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| H A D | TargetInstrInfo.h | 1312 unsigned NumLoads) const { in shouldScheduleLoadsNear() argument 1387 unsigned NumLoads, unsigned NumBytes) const { in shouldClusterMemOps() argument
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPURegisterBankInfo.cpp | 1436 int NumLoads = 1; in applyMappingSBufferLoad() local 1438 NumLoads = LoadSize / 128; in applyMappingSBufferLoad() 1439 Ty = Ty.divide(NumLoads); in applyMappingSBufferLoad() 1444 const Align Alignment = NumLoads > 1 ? Align(16 * NumLoads) : Align(1); in applyMappingSBufferLoad() 1475 SmallVector<Register, 4> LoadParts(NumLoads); in applyMappingSBufferLoad() 1480 for (int i = 0; i < NumLoads; ++i) { in applyMappingSBufferLoad() 1481 if (NumLoads == 1) { in applyMappingSBufferLoad() 1520 if (NumLoads != 1) { in applyMappingSBufferLoad()
|
| H A D | SIInstrInfo.h | 196 unsigned NumLoads, unsigned NumBytes) const override; 199 int64_t Offset1, unsigned NumLoads) const override;
|
| H A D | SIInstrInfo.cpp | 429 unsigned NumLoads, in shouldClusterMemOps() argument 455 const unsigned LoadSize = NumBytes / NumLoads; in shouldClusterMemOps() 456 const unsigned NumDWORDs = ((LoadSize + 3) / 4) * NumLoads; in shouldClusterMemOps() 472 unsigned NumLoads) const { in shouldScheduleLoadsNear() 479 return (NumLoads <= 16 && (Offset1 - Offset0) < 64); in shouldScheduleLoadsNear()
|
| H A D | SIISelLowering.cpp | 6348 unsigned NumLoads = 1; in lowerSBuffer() local 6355 NumLoads = NumElts / 4; in lowerSBuffer() 6374 NumLoads > 1 ? Align(16 * NumLoads) : Align(4)); in lowerSBuffer() 6377 for (unsigned i = 0; i < NumLoads; ++i) { in lowerSBuffer()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/ |
| H A D | AArch64InstrInfo.h | 154 unsigned NumLoads, unsigned NumBytes) const override;
|
| H A D | AArch64InstrInfo.cpp | 3089 ArrayRef<const MachineOperand *> BaseOps2, unsigned NumLoads, in shouldClusterMemOps() argument 3107 if (NumLoads > 2) in shouldClusterMemOps()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| H A D | PPCInstrInfo.h | 549 unsigned NumLoads, unsigned NumBytes) const override;
|
| H A D | PPCInstrInfo.cpp | 2789 ArrayRef<const MachineOperand *> BaseOps2, unsigned NumLoads, in shouldClusterMemOps() argument 2800 if (NumLoads > 2) in shouldClusterMemOps()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | LoopAccessAnalysis.cpp | 1859 NumLoads++; in analyzeLoop() 2198 NumLoads(0), NumStores(0), MaxSafeDepDistBytes(-1), CanVecMem(false), in LoopAccessInfo()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| H A D | ARMBaseInstrInfo.h | 260 unsigned NumLoads) const override;
|
| H A D | ARMBaseInstrInfo.cpp | 2007 unsigned NumLoads) const { in shouldScheduleLoadsNear() 2029 if (NumLoads >= 3) in shouldScheduleLoadsNear()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| H A D | CodeGenDAGPatterns.cpp | 4083 unsigned NumLoads = 0; in VerifyInstructionFlags() local 4088 NumLoads += InstInfo.mayLoad; in VerifyInstructionFlags() 4109 if (!PatInfo.mayStore && PatInfo.mayLoad && !NumLoads) in VerifyInstructionFlags()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/ |
| H A D | LoopVectorize.cpp | 6442 unsigned NumLoads = Legal->getNumLoads(); in selectInterleaveCount() local 6444 unsigned LoadsIC = IC / (NumLoads ? NumLoads : 1); in selectInterleaveCount()
|