/external/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()
|
/external/llvm/lib/Target/AMDGPU/ |
D | AMDGPUInstrInfo.cpp | 52 unsigned NumLoads) const { in shouldScheduleLoadsNear() 59 return (NumLoads <= 16 && (Offset1 - Offset0) < 64); in shouldScheduleLoadsNear()
|
D | AMDGPUInstrInfo.h | 51 unsigned NumLoads) const override;
|
/external/llvm/include/llvm/Analysis/ |
D | LoopAccessAnalysis.h | 524 NumLoads(LAI.NumLoads), NumStores(LAI.NumStores), in LoopAccessInfo() 538 NumLoads = LAI.NumLoads; 573 unsigned getNumLoads() const { return NumLoads;} in getNumLoads() 661 unsigned NumLoads; variable
|
/external/llvm-project/llvm/lib/Target/Hexagon/ |
D | HexagonTargetTransformInfo.cpp | 171 unsigned NumLoads = alignTo(VecWidth, AlignWidth) / AlignWidth; in getMemoryOpCost() local 172 return 3 * NumLoads; in getMemoryOpCost() 183 unsigned NumLoads = alignTo(VecWidth, AlignWidth) / AlignWidth; in getMemoryOpCost() local 185 return Cost * NumLoads; in getMemoryOpCost() 189 return (3 - LogA) * Cost * NumLoads; in getMemoryOpCost()
|
/external/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()
|
/external/llvm-project/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()
|
/external/llvm-project/llvm/test/Transforms/LowerMatrixIntrinsics/ |
D | remarks-shared-subtrees.ll | 17 ; YAML-NEXT: - NumLoads: '0' 24 ; YAML-NEXT: - NumLoads: '4' 45 ; YAML-NEXT: - NumLoads: '45' 52 ; YAML-NEXT: - NumLoads: '4'
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXLowerAggrCopies.cpp | 289 unsigned NumLoads = DL.getTypeStoreSize(LI->getType()); in runOnFunction() local 290 Value *CopyLen = ConstantInt::get(Type::getInt32Ty(Context), NumLoads); in runOnFunction()
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | ExpandMemCmp.cpp | 361 const unsigned NumLoads = in getCompareLoadPairs() local 375 NumLoads == 1 ? nullptr in getCompareLoadPairs() 377 for (unsigned i = 0; i < NumLoads; ++i, ++LoadIndex) { in getCompareLoadPairs() 383 if (NumLoads != 1) { in getCompareLoadPairs()
|
/external/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()
|
/external/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
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | LoopAccessAnalysis.h | 547 unsigned getNumLoads() const { return NumLoads;} in getNumLoads() 622 unsigned NumLoads; variable
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | ScheduleDAGSDNodes.cpp | 250 unsigned NumLoads = 0; in ClusterNeighboringLoads() local 257 if (!TII->shouldScheduleLoadsNear(BaseLoad, Load, BaseOff, Offset,NumLoads)) in ClusterNeighboringLoads() 260 ++NumLoads; in ClusterNeighboringLoads() 263 if (NumLoads == 0) in ClusterNeighboringLoads()
|
/external/llvm-project/llvm/lib/Transforms/Scalar/ |
D | LowerMatrixIntrinsics.cpp | 200 unsigned NumLoads = 0; member 206 NumLoads += RHS.NumLoads; in operator +=() 301 OpInfo.NumLoads += N; in addNumLoads() 305 void setNumLoads(unsigned N) { OpInfo.NumLoads = N; } in setNumLoads() 318 unsigned getNumLoads() const { return OpInfo.NumLoads; } in getNumLoads() 1906 << ore::NV("NumLoads", Counts.NumLoads) << " loads, " in emitRemarks() 1910 if (SharedCounts.NumStores > 0 || SharedCounts.NumLoads > 0 || in emitRemarks() 1914 << ore::NV("NumLoads", SharedCounts.NumLoads) << " loads, " in emitRemarks()
|
/external/llvm-project/llvm/lib/Target/X86/ |
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()
|
/external/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()
|
/external/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()
|
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
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()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64InstrInfo.h | 109 unsigned NumLoads) const override;
|
/external/llvm/include/llvm/Target/ |
D | TargetInstrInfo.h | 1015 unsigned NumLoads) const { in shouldScheduleLoadsNear() argument 1047 unsigned NumLoads) const { in shouldClusterMemOps() argument
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64InstrInfo.h | 137 unsigned NumLoads) const override;
|
/external/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
|
/external/llvm-project/llvm/lib/Target/AArch64/ |
D | AArch64InstrInfo.h | 146 unsigned NumLoads, unsigned NumBytes) const override;
|
/external/llvm/lib/Target/X86/ |
D | X86InstrInfo.h | 419 unsigned NumLoads) const override;
|