X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Futil%2Fdisk_cache.h;h=488b297ead2762f38575b0023047f746576b2502;hb=46b21b8f9060faafdb838aa94f2aef35de03901a;hp=7e9cb809b597738b7a5d07e25768589371e9c59c;hpb=9f8dc3bf03ec825bae7041858dda6ca2e9a34363;p=mesa.git diff --git a/src/util/disk_cache.h b/src/util/disk_cache.h index 7e9cb809b59..488b297ead2 100644 --- a/src/util/disk_cache.h +++ b/src/util/disk_cache.h @@ -24,8 +24,13 @@ #ifndef DISK_CACHE_H #define DISK_CACHE_H +#ifdef ENABLE_SHADER_CACHE +#include +#endif +#include #include #include +#include #ifdef __cplusplus extern "C" { @@ -34,10 +39,66 @@ extern "C" { /* Size of cache keys in bytes. */ #define CACHE_KEY_SIZE 20 +#define CACHE_DIR_NAME "mesa_shader_cache" + typedef uint8_t cache_key[CACHE_KEY_SIZE]; +/* WARNING: 3rd party applications might be reading the cache item metadata. + * Do not change these values without making the change widely known. + * Please contact Valve developers and make them aware of this change. + */ +#define CACHE_ITEM_TYPE_UNKNOWN 0x0 +#define CACHE_ITEM_TYPE_GLSL 0x1 + +struct cache_item_metadata { + /** + * The cache item type. This could be used to identify a GLSL cache item, + * a certain type of IR (tgsi, nir, etc), or signal that it is the final + * binary form of the shader. + */ + uint32_t type; + + /** GLSL cache item metadata */ + cache_key *keys; /* sha1 list of shaders that make up the cache item */ + uint32_t num_keys; +}; + struct disk_cache; +static inline char * +disk_cache_format_hex_id(char *buf, const uint8_t *hex_id, unsigned size) +{ + static const char hex_digits[] = "0123456789abcdef"; + unsigned i; + + for (i = 0; i < size; i += 2) { + buf[i] = hex_digits[hex_id[i >> 1] >> 4]; + buf[i + 1] = hex_digits[hex_id[i >> 1] & 0x0f]; + } + buf[i] = '\0'; + + return buf; +} + +static inline bool +disk_cache_get_function_timestamp(void *ptr, uint32_t* timestamp) +{ +#ifdef ENABLE_SHADER_CACHE + Dl_info info; + struct stat st; + if (!dladdr(ptr, &info) || !info.dli_fname) { + return false; + } + if (stat(info.dli_fname, &st)) { + return false; + } + *timestamp = st.st_mtime; + return true; +#else + return false; +#endif +} + /* Provide inlined stub functions if the shader cache is disabled. */ #ifdef ENABLE_SHADER_CACHE @@ -69,7 +130,8 @@ struct disk_cache; * assistance in computing SHA-1 signatures. */ struct disk_cache * -disk_cache_create(void); +disk_cache_create(const char *gpu_name, const char *timestamp, + uint64_t driver_flags); /** * Destroy a cache object, (freeing all associated resources). @@ -77,6 +139,12 @@ disk_cache_create(void); void disk_cache_destroy(struct disk_cache *cache); +/** + * Remove the item in the cache under the name \key. + */ +void +disk_cache_remove(struct disk_cache *cache, const cache_key key); + /** * Store an item in the cache under the name \key. * @@ -87,8 +155,9 @@ disk_cache_destroy(struct disk_cache *cache); * evicted from the cache. */ void -disk_cache_put(struct disk_cache *cache, cache_key key, - const void *data, size_t size); +disk_cache_put(struct disk_cache *cache, const cache_key key, + const void *data, size_t size, + struct cache_item_metadata *cache_item_metadata); /** * Retrieve an item previously stored in the cache with the name . @@ -104,7 +173,7 @@ disk_cache_put(struct disk_cache *cache, cache_key key, * caller should call free() it when finished. */ void * -disk_cache_get(struct disk_cache *cache, cache_key key, size_t *size); +disk_cache_get(struct disk_cache *cache, const cache_key key, size_t *size); /** * Store the name \key within the cache, (without any associated data). @@ -112,11 +181,11 @@ disk_cache_get(struct disk_cache *cache, cache_key key, size_t *size); * Later this key can be checked with disk_cache_has_key(), (unless the key * has been evicted in the interim). * - * Any call to cache_record() may cause an existing, random key to be + * Any call to disk_cache_put_key() may cause an existing, random key to be * evicted from the cache. */ void -disk_cache_put_key(struct disk_cache *cache, cache_key key); +disk_cache_put_key(struct disk_cache *cache, const cache_key key); /** * Test whether the name \key was previously recorded in the cache. @@ -129,12 +198,20 @@ disk_cache_put_key(struct disk_cache *cache, cache_key key); * disk_cache_has_key() to return true for the same key. */ bool -disk_cache_has_key(struct disk_cache *cache, cache_key key); +disk_cache_has_key(struct disk_cache *cache, const cache_key key); + +/** + * Compute the name \key from \data of given \size. + */ +void +disk_cache_compute_key(struct disk_cache *cache, const void *data, size_t size, + cache_key key); #else static inline struct disk_cache * -disk_cache_create(void) +disk_cache_create(const char *gpu_name, const char *timestamp, + uint64_t driver_flags) { return NULL; } @@ -145,30 +222,44 @@ disk_cache_destroy(struct disk_cache *cache) { } static inline void -disk_cache_put(struct disk_cache *cache, cache_key key, - const void *data, size_t size) +disk_cache_put(struct disk_cache *cache, const cache_key key, + const void *data, size_t size, + struct cache_item_metadata *cache_item_metadata) +{ + return; +} + +static inline void +disk_cache_remove(struct disk_cache *cache, const cache_key key) { return; } static inline uint8_t * -disk_cache_get(struct disk_cache *cache, cache_key key, size_t *size) +disk_cache_get(struct disk_cache *cache, const cache_key key, size_t *size) { return NULL; } static inline void -disk_cache_put_key(struct disk_cache *cache, cache_key key) +disk_cache_put_key(struct disk_cache *cache, const cache_key key) { return; } static inline bool -disk_cache_has_key(struct disk_cache *cache, cache_key key) +disk_cache_has_key(struct disk_cache *cache, const cache_key key) { return false; } +static inline void +disk_cache_compute_key(struct disk_cache *cache, const void *data, size_t size, + const cache_key key) +{ + return; +} + #endif /* ENABLE_SHADER_CACHE */ #ifdef __cplusplus