Home
last modified time | relevance | path

Searched refs:getCacheLineSize (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSubtargetInfo.h287 virtual std::optional<unsigned> getCacheLineSize(unsigned Level) const;
295 virtual unsigned getCacheLineSize() const { in getCacheLineSize() function
296 std::optional<unsigned> Size = getCacheLineSize(0); in getCacheLineSize()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopDataPrefetch.cpp217 if (getPrefetchDistance() == 0 || TTI->getCacheLineSize() == 0) { in run()
362 if (PD < (int64_t) TTI->getCacheLineSize()) { in runOnLoop()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetTransformInfo.h77 unsigned getCacheLineSize() const override;
H A DHexagonTargetTransformInfo.cpp361 unsigned HexagonTTIImpl::getCacheLineSize() const { in getCacheLineSize() function in HexagonTTIImpl
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.h74 unsigned getCacheLineSize() const override { return 256; } in getCacheLineSize() function
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVSubtarget.h285 unsigned getCacheLineSize() const override { in getCacheLineSize() function
H A DRISCVInstrInfo.cpp2706 BaseOps1.front()->getParent()->getMF()->getSubtarget().getCacheLineSize(); in shouldClusterMemOps()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.h100 unsigned getCacheLineSize() const override;
H A DPPCTargetTransformInfo.cpp501 unsigned PPCTTIImpl::getCacheLineSize() const { in getCacheLineSize() function in PPCTTIImpl
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopCacheAnalysis.cpp622 unsigned CLS = TTI.getCacheLineSize(); in populateReferenceGroups()
729 return Representative->computeRefCost(L, TTI.getCacheLineSize()); in computeRefGroupCacheCost()
H A DTargetTransformInfo.cpp789 unsigned TargetTransformInfo::getCacheLineSize() const { in getCacheLineSize() function in TargetTransformInfo
791 : TTIImpl->getCacheLineSize(); in getCacheLineSize()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64Subtarget.h227 unsigned getCacheLineSize() const override { return CacheLineSize; } in getCacheLineSize() function
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.h260 unsigned getCacheLineSize() const override { return 128; } in getCacheLineSize() function
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCSubtargetInfo.cpp359 MCSubtargetInfo::getCacheLineSize(unsigned Level) const { in getCacheLineSize() function in MCSubtargetInfo
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h1199 unsigned getCacheLineSize() const;
2001 virtual unsigned getCacheLineSize() const = 0;
2622 unsigned getCacheLineSize() const override { return Impl.getCacheLineSize(); } in getCacheLineSize() function
H A DTargetTransformInfoImpl.h510 unsigned getCacheLineSize() const { return 0; } in getCacheLineSize() function
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h724 virtual unsigned getCacheLineSize() const { in getCacheLineSize() function
725 return getST()->getCacheLineSize(); in getCacheLineSize()