Home
last modified time | relevance | path

Searched refs:cache_size (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_quarantine.h84 void Init(uptr size, uptr cache_size) { in Init() argument
87 CHECK((size == 0 && cache_size == 0) || cache_size != 0); in Init()
91 atomic_store_relaxed(&max_cache_size_, cache_size); in Init()
103 uptr cache_size = GetCacheSize(); in Put() local
104 if (cache_size) { in Put()
111 if (c->Size() > cache_size) in Put()
162 uptr cache_size = cache_.Size(); in Recycle() local
164 CHECK_GE(cache_size, overhead_size); in Recycle()
169 if (cache_size > overhead_size && in Recycle()
171 cache_size * kOverheadThresholdPercents) { in Recycle()
/llvm-project-15.0.7/lld/test/ELF/lto/
H A Dcache.ll33 ; RUN: ld.lld --thinlto-cache-dir=%t.cache --thinlto-cache-policy prune_after=0s:cache_size=0%:cach…
37 ; RUN: ld.lld --thinlto-cache-dir=%t.cache --thinlto-cache-policy prune_after=0s:cache_size=0%:cach…
47 ; RUN: ld.lld --thinlto-cache-dir=%t.cache --thinlto-cache-policy prune_after=0s:cache_size=0%:cach…
/llvm-project-15.0.7/lld/test/wasm/lto/
H A Dcache.ll32 ; RUN: wasm-ld --thinlto-cache-dir=%t.cache --thinlto-cache-policy prune_after=0s:cache_size=0%:cac…
36 ; RUN: wasm-ld --thinlto-cache-dir=%t.cache --thinlto-cache-policy prune_after=0s:cache_size=0%:cac…
/llvm-project-15.0.7/lld/test/MachO/
H A Dlto-cache.ll48 ; RUN: --thinlto-cache-policy=prune_after=0s:cache_size=0%:cache_size_files=1:prune_interval=0s \
60 ; RUN: --thinlto-cache-policy=prune_after=0s:cache_size=0%:cache_size_files=3:prune_interval=0s \
/llvm-project-15.0.7/clang/docs/
H A DThinLTO.rst169 - ``cache_size=X%``: The maximum size for the cache directory is ``X`` percent
185 policies to be applied unless the default ``cache_size`` is overridden.
/llvm-project-15.0.7/llvm/tools/llvm-symbolizer/
H A DOpts.td25 defm cache_size : Eq<"cache-size", "Max size in bytes of the in-memory binary cache.">;