summaryrefslogtreecommitdiff
path: root/llvm/lib/CAS/UnifiedOnDiskCache.cpp
AgeCommit message (Collapse)Author
2025-11-08[llvm] Remove unused local variables (NFC) (#167106)Kazu Hirata
Identified with bugprone-unused-local-non-trivial-variable.
2025-11-07[CAS] Fix wrong usage of `llvm::sort()` in UnifiedOnDiskCache (#166963)Steven Wu
Fix compare function in getAllDBDirs(). The compare function in sort should be strictly less than operator.
2025-11-03[CAS] Add UnifiedOnDiskCache and OnDiskCAS (#114103)Steven Wu
Add a new abstraction layer UnifiedOnDiskCache that adds new functions of disk space management and data validation that builds on top of OnDiskGraphDB and OnDiskKeyValueDB. Build upon UnifiedOnDiskCache, it is OnDiskCAS that implements ObjectStore and ActionCache interface for LLVM tools to interact with CAS storage.