summaryrefslogtreecommitdiff
path: root/llvm/lib/CAS/OnDiskCAS.cpp
AgeCommit message (Collapse)Author
2025-11-19[llvm] Use llvm::size (NFC) (#168675)Kazu Hirata
Note that llvm::size only works on types that allow std::distance in O(1).
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.