/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonTargetTransformInfo.cpp | 177 unsigned NumLoads = alignTo(VecWidth, AlignWidth) / AlignWidth; in getMemoryOpCost() local 178 return 3 * NumLoads; in getMemoryOpCost() 189 unsigned NumLoads = alignTo(VecWidth, AlignWidth) / AlignWidth; in getMemoryOpCost() local 191 return Cost * NumLoads; in getMemoryOpCost() 195 return (3 - LogA) * Cost * NumLoads; in getMemoryOpCost()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
D | NVPTXLowerAggrCopies.cpp | 109 unsigned NumLoads = DL.getTypeStoreSize(LI->getType()); in runOnFunction() local 111 ConstantInt::get(Type::getInt32Ty(Context), NumLoads); in runOnFunction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | ExpandMemCmp.cpp | 325 const unsigned NumLoads = in getCompareLoadPairs() local 339 NumLoads == 1 ? nullptr in getCompareLoadPairs() 341 for (unsigned i = 0; i < NumLoads; ++i, ++LoadIndex) { in getCompareLoadPairs() 365 if (NumLoads != 1) { in getCompareLoadPairs()
|
D | RegAllocFast.cpp | 56 STATISTIC(NumLoads , "Number of loads added"); 350 ++NumLoads; in reload()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | LoopAccessAnalysis.h | 550 unsigned getNumLoads() const { return NumLoads;} in getNumLoads() 643 unsigned NumLoads; variable
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | ScheduleDAGSDNodes.cpp | 267 unsigned NumLoads = 0; in ClusterNeighboringLoads() local 274 if (!TII->shouldScheduleLoadsNear(BaseLoad, Load, BaseOff, Offset,NumLoads)) in ClusterNeighboringLoads() 277 ++NumLoads; in ClusterNeighboringLoads() 280 if (NumLoads == 0) in ClusterNeighboringLoads()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86InterleavedAccess.cpp | 198 unsigned int NumLoads = NumSubVectors; in decompose() local 207 NumLoads = NumSubVectors * (VecLength / 384); in decompose() 214 for (unsigned i = 0; i < NumLoads; i++) { in decompose()
|
D | X86InstrInfo.h | 394 unsigned NumLoads) const override;
|
D | X86InstrInfo.cpp | 5946 unsigned NumLoads) const { in shouldScheduleLoadsNear() 5972 if (NumLoads >= 3) in shouldScheduleLoadsNear() 5974 } else if (NumLoads) { in shouldScheduleLoadsNear() 5984 if (NumLoads) in shouldScheduleLoadsNear()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64InstrInfo.h | 137 unsigned NumLoads) const override;
|
D | AArch64InstrInfo.cpp | 2368 unsigned NumLoads) const { in shouldClusterMemOps() 2382 if (NumLoads > 1) in shouldClusterMemOps()
|
D | AArch64ISelLowering.cpp | 9149 unsigned NumLoads = getNumInterleavedAccesses(VecTy, DL); in lowerInterleavedLoad() local 9163 if (NumLoads > 1) { in lowerInterleavedLoad() 9167 VecTy->getVectorNumElements() / NumLoads); in lowerInterleavedLoad() 9190 for (unsigned LoadCount = 0; LoadCount < NumLoads; ++LoadCount) { in lowerInterleavedLoad()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | TargetInstrInfo.h | 1234 unsigned NumLoads) const { in shouldScheduleLoadsNear() argument 1273 unsigned NumLoads) const { in shouldClusterMemOps() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | SIInstrInfo.h | 191 unsigned NumLoads) const override; 194 int64_t Offset1, unsigned NumLoads) const override;
|
D | SIInstrInfo.cpp | 438 unsigned NumLoads) const { in shouldClusterMemOps() 452 if (NumLoads > MaxGlobalLoadCluster) in shouldClusterMemOps() 491 return (NumLoads * (RI.getRegSizeInBits(*DstRC) / 8)) <= LoadClusterThreshold; in shouldClusterMemOps() 506 unsigned NumLoads) const { in shouldScheduleLoadsNear() 513 return (NumLoads <= 16 && (Offset1 - Offset0) < 64); in shouldScheduleLoadsNear()
|
D | SIISelLowering.cpp | 5700 unsigned NumLoads = 1; in lowerSBuffer() local 5707 NumLoads = NumElts / 4; in lowerSBuffer() 5726 setBufferOffsets(Offset, DAG, &Ops[3], NumLoads > 1 ? 16 * NumLoads : 4); in lowerSBuffer() 5729 for (unsigned i = 0; i < NumLoads; ++i) { in lowerSBuffer()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | ARMBaseInstrInfo.h | 258 unsigned NumLoads) const override;
|
D | ARMBaseInstrInfo.cpp | 1918 unsigned NumLoads) const { in shouldScheduleLoadsNear() 1940 if (NumLoads >= 3) in shouldScheduleLoadsNear()
|
D | ARMISelLowering.cpp | 17057 unsigned NumLoads = getNumInterleavedAccesses(VecTy, DL); in lowerInterleavedLoad() local 17070 if (NumLoads > 1) { in lowerInterleavedLoad() 17074 VecTy->getVectorNumElements() / NumLoads); in lowerInterleavedLoad() 17123 for (unsigned LoadCount = 0; LoadCount < NumLoads; ++LoadCount) { in lowerInterleavedLoad()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | LoopAccessAnalysis.cpp | 1865 NumLoads++; in analyzeLoop() 2351 NumLoads(0), NumStores(0), MaxSafeDepDistBytes(-1), CanVecMem(false), in LoopAccessInfo()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorize.cpp | 5320 unsigned NumLoads = Legal->getNumLoads(); in selectInterleaveCount() local 5322 unsigned LoadsIC = IC / (NumLoads ? NumLoads : 1); in selectInterleaveCount()
|