Home
last modified time | relevance | path

Searched refs:getCacheSize (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/
H A Dquarantine.h192 uptr getCacheSize() const { return atomic_load_relaxed(&MaxCacheSize); } in getCacheSize() function
196 if (C->getSize() > getCacheSize()) in put()
222 getMaxSize() >> 10, getCacheSize() >> 10); in getStats()
H A Dcombined.h1085 const bool BypassQuarantine = !Quarantine.getCacheSize() || in quarantineOrDeallocateChunk()
/llvm-project-15.0.7/polly/lib/Transform/
H A DMatmulOptimizer.cpp570 if (TTI->getCacheSize(L1DCache)) in getTargetCacheParameters()
571 FirstCacheLevelSize = TTI->getCacheSize(L1DCache).value(); in getTargetCacheParameters()
576 if (TTI->getCacheSize(L2DCache)) in getTargetCacheParameters()
577 SecondCacheLevelSize = TTI->getCacheSize(L2DCache).value(); in getTargetCacheParameters()
/llvm-project-15.0.7/llvm/include/llvm/MC/
H A DMCSubtargetInfo.h239 virtual Optional<unsigned> getCacheSize(unsigned Level) const;
/llvm-project-15.0.7/llvm/lib/MC/
H A DMCSubtargetInfo.cpp338 Optional<unsigned> MCSubtargetInfo::getCacheSize(unsigned Level) const { in getCacheSize() function in MCSubtargetInfo
/llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/tests/
H A Dquarantine_test.cpp199 EXPECT_EQ(Quarantine.getCacheSize(), MaxCacheSize); in TEST()
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.h116 llvm::Optional<unsigned> getCacheSize(
H A DX86TargetTransformInfo.cpp69 llvm::Optional<unsigned> X86TTIImpl::getCacheSize( in getCacheSize() function in X86TTIImpl
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h1006 Optional<unsigned> getCacheSize(CacheLevel Level) const;
1685 virtual Optional<unsigned> getCacheSize(CacheLevel Level) const = 0;
2203 Optional<unsigned> getCacheSize(CacheLevel Level) const override { in getCacheSize() function
2204 return Impl.getCacheSize(Level); in getCacheSize()
H A DTargetTransformInfoImpl.h448 getCacheSize(TargetTransformInfo::CacheLevel Level) const { in getCacheSize() function
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp679 TargetTransformInfo::getCacheSize(CacheLevel Level) const { in getCacheSize() function in TargetTransformInfo
680 return TTIImpl->getCacheSize(Level); in getCacheSize()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h646 getCacheSize(TargetTransformInfo::CacheLevel Level) const { in getCacheSize() function
648 getST()->getCacheSize(static_cast<unsigned>(Level))); in getCacheSize()