2016-02-10 09:43:03 -08:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2015 Intel Corporation
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
|
* Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-10-11 12:13:35 -07:00
|
|
|
#include "compiler/blob.h"
|
2016-08-25 01:49:49 -07:00
|
|
|
#include "util/hash_table.h"
|
2016-02-10 09:43:03 -08:00
|
|
|
#include "util/debug.h"
|
|
|
|
|
#include "anv_private.h"
|
|
|
|
|
|
2016-08-24 23:48:32 -07:00
|
|
|
struct anv_shader_bin *
|
|
|
|
|
anv_shader_bin_create(struct anv_device *device,
|
|
|
|
|
const void *key_data, uint32_t key_size,
|
|
|
|
|
const void *kernel_data, uint32_t kernel_size,
|
2017-10-11 12:13:35 -07:00
|
|
|
const struct brw_stage_prog_data *prog_data_in,
|
|
|
|
|
uint32_t prog_data_size, const void *prog_data_param_in,
|
2016-08-24 23:48:32 -07:00
|
|
|
const struct anv_pipeline_bind_map *bind_map)
|
|
|
|
|
{
|
2017-10-11 12:13:35 -07:00
|
|
|
struct anv_shader_bin *shader;
|
|
|
|
|
struct anv_shader_bin_key *key;
|
|
|
|
|
struct brw_stage_prog_data *prog_data;
|
|
|
|
|
const union gl_constant_value **prog_data_param;
|
|
|
|
|
struct anv_pipeline_binding *surface_to_descriptor, *sampler_to_descriptor;
|
|
|
|
|
|
|
|
|
|
ANV_MULTIALLOC(ma);
|
|
|
|
|
anv_multialloc_add(&ma, &shader, 1);
|
|
|
|
|
anv_multialloc_add_size(&ma, &key, sizeof(*key) + key_size);
|
|
|
|
|
anv_multialloc_add_size(&ma, &prog_data, prog_data_size);
|
|
|
|
|
anv_multialloc_add(&ma, &prog_data_param, prog_data_in->nr_params);
|
|
|
|
|
anv_multialloc_add(&ma, &surface_to_descriptor,
|
|
|
|
|
bind_map->surface_count);
|
|
|
|
|
anv_multialloc_add(&ma, &sampler_to_descriptor,
|
|
|
|
|
bind_map->sampler_count);
|
|
|
|
|
|
|
|
|
|
if (!anv_multialloc_alloc(&ma, &device->alloc,
|
|
|
|
|
VK_SYSTEM_ALLOCATION_SCOPE_DEVICE))
|
2016-08-24 23:48:32 -07:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
shader->ref_cnt = 1;
|
|
|
|
|
|
2017-10-11 12:13:35 -07:00
|
|
|
key->size = key_size;
|
|
|
|
|
memcpy(key->data, key_data, key_size);
|
|
|
|
|
shader->key = key;
|
|
|
|
|
|
2016-08-24 23:48:32 -07:00
|
|
|
shader->kernel =
|
|
|
|
|
anv_state_pool_alloc(&device->instruction_state_pool, kernel_size, 64);
|
|
|
|
|
memcpy(shader->kernel.map, kernel_data, kernel_size);
|
|
|
|
|
shader->kernel_size = kernel_size;
|
|
|
|
|
|
2017-10-11 12:13:35 -07:00
|
|
|
memcpy(prog_data, prog_data_in, prog_data_size);
|
|
|
|
|
memcpy(prog_data_param, prog_data_param_in,
|
|
|
|
|
prog_data->nr_params * sizeof(*prog_data_param));
|
|
|
|
|
prog_data->param = prog_data_param;
|
|
|
|
|
shader->prog_data = prog_data;
|
|
|
|
|
shader->prog_data_size = prog_data_size;
|
2016-08-24 23:48:32 -07:00
|
|
|
|
2017-10-11 12:13:35 -07:00
|
|
|
shader->bind_map = *bind_map;
|
|
|
|
|
typed_memcpy(surface_to_descriptor, bind_map->surface_to_descriptor,
|
|
|
|
|
bind_map->surface_count);
|
|
|
|
|
shader->bind_map.surface_to_descriptor = surface_to_descriptor;
|
|
|
|
|
typed_memcpy(sampler_to_descriptor, bind_map->sampler_to_descriptor,
|
|
|
|
|
bind_map->sampler_count);
|
|
|
|
|
shader->bind_map.sampler_to_descriptor = sampler_to_descriptor;
|
2016-08-24 23:48:32 -07:00
|
|
|
|
|
|
|
|
return shader;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
anv_shader_bin_destroy(struct anv_device *device,
|
|
|
|
|
struct anv_shader_bin *shader)
|
|
|
|
|
{
|
|
|
|
|
assert(shader->ref_cnt == 0);
|
|
|
|
|
anv_state_pool_free(&device->instruction_state_pool, shader->kernel);
|
2016-10-14 13:31:35 +10:00
|
|
|
vk_free(&device->alloc, shader);
|
2016-08-24 23:48:32 -07:00
|
|
|
}
|
|
|
|
|
|
2017-10-11 12:13:35 -07:00
|
|
|
static bool
|
|
|
|
|
anv_shader_bin_write_to_blob(const struct anv_shader_bin *shader,
|
|
|
|
|
struct blob *blob)
|
2016-08-24 23:48:32 -07:00
|
|
|
{
|
2017-10-11 12:13:35 -07:00
|
|
|
bool ok;
|
|
|
|
|
|
|
|
|
|
ok = blob_write_uint32(blob, shader->key->size);
|
|
|
|
|
ok = blob_write_bytes(blob, shader->key->data, shader->key->size);
|
|
|
|
|
|
|
|
|
|
ok = blob_write_uint32(blob, shader->kernel_size);
|
|
|
|
|
ok = blob_write_bytes(blob, shader->kernel.map, shader->kernel_size);
|
|
|
|
|
|
|
|
|
|
ok = blob_write_uint32(blob, shader->prog_data_size);
|
|
|
|
|
ok = blob_write_bytes(blob, shader->prog_data, shader->prog_data_size);
|
|
|
|
|
ok = blob_write_bytes(blob, shader->prog_data->param,
|
|
|
|
|
shader->prog_data->nr_params *
|
|
|
|
|
sizeof(*shader->prog_data->param));
|
|
|
|
|
|
|
|
|
|
ok = blob_write_uint32(blob, shader->bind_map.surface_count);
|
|
|
|
|
ok = blob_write_uint32(blob, shader->bind_map.sampler_count);
|
|
|
|
|
ok = blob_write_uint32(blob, shader->bind_map.image_count);
|
|
|
|
|
ok = blob_write_bytes(blob, shader->bind_map.surface_to_descriptor,
|
|
|
|
|
shader->bind_map.surface_count *
|
|
|
|
|
sizeof(*shader->bind_map.surface_to_descriptor));
|
|
|
|
|
ok = blob_write_bytes(blob, shader->bind_map.sampler_to_descriptor,
|
|
|
|
|
shader->bind_map.sampler_count *
|
|
|
|
|
sizeof(*shader->bind_map.sampler_to_descriptor));
|
|
|
|
|
|
|
|
|
|
return ok;
|
2016-08-24 23:48:32 -07:00
|
|
|
}
|
|
|
|
|
|
2017-10-11 12:13:35 -07:00
|
|
|
static struct anv_shader_bin *
|
|
|
|
|
anv_shader_bin_create_from_blob(struct anv_device *device,
|
|
|
|
|
struct blob_reader *blob)
|
2016-08-24 23:48:32 -07:00
|
|
|
{
|
2017-10-11 12:13:35 -07:00
|
|
|
uint32_t key_size = blob_read_uint32(blob);
|
|
|
|
|
const void *key_data = blob_read_bytes(blob, key_size);
|
2016-08-24 23:48:32 -07:00
|
|
|
|
2017-10-11 12:13:35 -07:00
|
|
|
uint32_t kernel_size = blob_read_uint32(blob);
|
|
|
|
|
const void *kernel_data = blob_read_bytes(blob, kernel_size);
|
2016-08-24 23:48:32 -07:00
|
|
|
|
2017-10-11 12:13:35 -07:00
|
|
|
uint32_t prog_data_size = blob_read_uint32(blob);
|
|
|
|
|
const struct brw_stage_prog_data *prog_data =
|
|
|
|
|
blob_read_bytes(blob, prog_data_size);
|
|
|
|
|
if (blob->overrun)
|
|
|
|
|
return NULL;
|
|
|
|
|
const void *prog_data_param =
|
|
|
|
|
blob_read_bytes(blob, prog_data->nr_params * sizeof(*prog_data->param));
|
|
|
|
|
|
|
|
|
|
struct anv_pipeline_bind_map bind_map;
|
|
|
|
|
bind_map.surface_count = blob_read_uint32(blob);
|
|
|
|
|
bind_map.sampler_count = blob_read_uint32(blob);
|
|
|
|
|
bind_map.image_count = blob_read_uint32(blob);
|
|
|
|
|
bind_map.surface_to_descriptor = (void *)
|
|
|
|
|
blob_read_bytes(blob, bind_map.surface_count *
|
|
|
|
|
sizeof(*bind_map.surface_to_descriptor));
|
|
|
|
|
bind_map.sampler_to_descriptor = (void *)
|
|
|
|
|
blob_read_bytes(blob, bind_map.sampler_count *
|
|
|
|
|
sizeof(*bind_map.sampler_to_descriptor));
|
|
|
|
|
|
|
|
|
|
if (blob->overrun)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
return anv_shader_bin_create(device,
|
|
|
|
|
key_data, key_size,
|
|
|
|
|
kernel_data, kernel_size,
|
|
|
|
|
prog_data, prog_data_size, prog_data_param,
|
|
|
|
|
&bind_map);
|
2016-08-24 23:48:32 -07:00
|
|
|
}
|
|
|
|
|
|
2016-02-10 09:43:03 -08:00
|
|
|
/* Remaining work:
|
|
|
|
|
*
|
|
|
|
|
* - Compact binding table layout so it's tight and not dependent on
|
|
|
|
|
* descriptor set layout.
|
|
|
|
|
*
|
|
|
|
|
* - Review prog_data struct for size and cacheability: struct
|
|
|
|
|
* brw_stage_prog_data has binding_table which uses a lot of uint32_t for 8
|
|
|
|
|
* bit quantities etc; param, pull_param, and image_params are pointers, we
|
|
|
|
|
* just need the compation map. use bit fields for all bools, eg
|
|
|
|
|
* dual_src_blend.
|
|
|
|
|
*/
|
|
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
static uint32_t
|
|
|
|
|
shader_bin_key_hash_func(const void *void_key)
|
|
|
|
|
{
|
2016-11-01 16:03:12 -07:00
|
|
|
const struct anv_shader_bin_key *key = void_key;
|
2016-08-25 01:49:49 -07:00
|
|
|
return _mesa_hash_data(key->data, key->size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool
|
|
|
|
|
shader_bin_key_compare_func(const void *void_a, const void *void_b)
|
|
|
|
|
{
|
2016-11-01 16:03:12 -07:00
|
|
|
const struct anv_shader_bin_key *a = void_a, *b = void_b;
|
2016-08-25 01:49:49 -07:00
|
|
|
if (a->size != b->size)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return memcmp(a->data, b->data, a->size) == 0;
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-10 09:43:03 -08:00
|
|
|
void
|
|
|
|
|
anv_pipeline_cache_init(struct anv_pipeline_cache *cache,
|
2016-08-25 01:49:49 -07:00
|
|
|
struct anv_device *device,
|
|
|
|
|
bool cache_enabled)
|
2016-02-10 09:43:03 -08:00
|
|
|
{
|
|
|
|
|
cache->device = device;
|
|
|
|
|
pthread_mutex_init(&cache->mutex, NULL);
|
|
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
if (cache_enabled) {
|
|
|
|
|
cache->cache = _mesa_hash_table_create(NULL, shader_bin_key_hash_func,
|
|
|
|
|
shader_bin_key_compare_func);
|
|
|
|
|
} else {
|
|
|
|
|
cache->cache = NULL;
|
|
|
|
|
}
|
2016-02-10 09:43:03 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
anv_pipeline_cache_finish(struct anv_pipeline_cache *cache)
|
|
|
|
|
{
|
|
|
|
|
pthread_mutex_destroy(&cache->mutex);
|
2016-03-03 16:48:31 -08:00
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
if (cache->cache) {
|
|
|
|
|
/* This is a bit unfortunate. In order to keep things from randomly
|
|
|
|
|
* going away, the shader cache has to hold a reference to all shader
|
|
|
|
|
* binaries it contains. We unref them when we destroy the cache.
|
|
|
|
|
*/
|
|
|
|
|
struct hash_entry *entry;
|
|
|
|
|
hash_table_foreach(cache->cache, entry)
|
|
|
|
|
anv_shader_bin_unref(cache->device, entry->data);
|
2016-06-04 15:10:22 -07:00
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
_mesa_hash_table_destroy(cache->cache, NULL);
|
|
|
|
|
}
|
2016-03-03 16:48:31 -08:00
|
|
|
}
|
|
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
static struct anv_shader_bin *
|
|
|
|
|
anv_pipeline_cache_search_locked(struct anv_pipeline_cache *cache,
|
|
|
|
|
const void *key_data, uint32_t key_size)
|
2016-02-10 09:43:03 -08:00
|
|
|
{
|
2016-08-25 01:49:49 -07:00
|
|
|
uint32_t vla[1 + DIV_ROUND_UP(key_size, sizeof(uint32_t))];
|
2016-11-01 16:03:12 -07:00
|
|
|
struct anv_shader_bin_key *key = (void *)vla;
|
2016-08-25 01:49:49 -07:00
|
|
|
key->size = key_size;
|
|
|
|
|
memcpy(key->data, key_data, key_size);
|
2016-02-10 09:43:03 -08:00
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
struct hash_entry *entry = _mesa_hash_table_search(cache->cache, key);
|
|
|
|
|
if (entry)
|
|
|
|
|
return entry->data;
|
|
|
|
|
else
|
|
|
|
|
return NULL;
|
2016-03-05 12:20:16 -08:00
|
|
|
}
|
|
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
struct anv_shader_bin *
|
2016-03-05 12:20:16 -08:00
|
|
|
anv_pipeline_cache_search(struct anv_pipeline_cache *cache,
|
2016-08-25 01:49:49 -07:00
|
|
|
const void *key_data, uint32_t key_size)
|
2016-03-05 12:20:16 -08:00
|
|
|
{
|
2016-08-25 01:49:49 -07:00
|
|
|
if (!cache->cache)
|
|
|
|
|
return NULL;
|
2016-03-05 12:20:16 -08:00
|
|
|
|
|
|
|
|
pthread_mutex_lock(&cache->mutex);
|
|
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
struct anv_shader_bin *shader =
|
|
|
|
|
anv_pipeline_cache_search_locked(cache, key_data, key_size);
|
2016-03-05 12:20:16 -08:00
|
|
|
|
|
|
|
|
pthread_mutex_unlock(&cache->mutex);
|
|
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
/* We increment refcount before handing it to the caller */
|
|
|
|
|
if (shader)
|
|
|
|
|
anv_shader_bin_ref(shader);
|
2016-02-10 09:43:03 -08:00
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
return shader;
|
2016-02-10 09:43:03 -08:00
|
|
|
}
|
|
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
static struct anv_shader_bin *
|
|
|
|
|
anv_pipeline_cache_add_shader(struct anv_pipeline_cache *cache,
|
|
|
|
|
const void *key_data, uint32_t key_size,
|
|
|
|
|
const void *kernel_data, uint32_t kernel_size,
|
2016-11-01 15:10:29 -07:00
|
|
|
const struct brw_stage_prog_data *prog_data,
|
|
|
|
|
uint32_t prog_data_size,
|
|
|
|
|
const void *prog_data_param,
|
2016-08-25 01:49:49 -07:00
|
|
|
const struct anv_pipeline_bind_map *bind_map)
|
2016-02-10 09:43:03 -08:00
|
|
|
{
|
2016-08-25 01:49:49 -07:00
|
|
|
struct anv_shader_bin *shader =
|
|
|
|
|
anv_pipeline_cache_search_locked(cache, key_data, key_size);
|
|
|
|
|
if (shader)
|
|
|
|
|
return shader;
|
|
|
|
|
|
|
|
|
|
struct anv_shader_bin *bin =
|
|
|
|
|
anv_shader_bin_create(cache->device, key_data, key_size,
|
|
|
|
|
kernel_data, kernel_size,
|
2016-11-01 15:10:29 -07:00
|
|
|
prog_data, prog_data_size, prog_data_param,
|
|
|
|
|
bind_map);
|
2016-08-25 01:49:49 -07:00
|
|
|
if (!bin)
|
|
|
|
|
return NULL;
|
2016-02-10 09:43:03 -08:00
|
|
|
|
2016-11-01 16:03:12 -07:00
|
|
|
_mesa_hash_table_insert(cache->cache, bin->key, bin);
|
2016-02-10 09:43:03 -08:00
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
return bin;
|
2016-03-04 12:25:23 -08:00
|
|
|
}
|
|
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
struct anv_shader_bin *
|
2016-02-10 09:43:03 -08:00
|
|
|
anv_pipeline_cache_upload_kernel(struct anv_pipeline_cache *cache,
|
2016-08-25 01:49:49 -07:00
|
|
|
const void *key_data, uint32_t key_size,
|
|
|
|
|
const void *kernel_data, uint32_t kernel_size,
|
2016-11-01 16:03:12 -07:00
|
|
|
const struct brw_stage_prog_data *prog_data,
|
|
|
|
|
uint32_t prog_data_size,
|
2016-08-25 01:49:49 -07:00
|
|
|
const struct anv_pipeline_bind_map *bind_map)
|
2016-02-10 09:43:03 -08:00
|
|
|
{
|
2016-08-25 01:49:49 -07:00
|
|
|
if (cache->cache) {
|
|
|
|
|
pthread_mutex_lock(&cache->mutex);
|
2016-02-10 09:43:03 -08:00
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
struct anv_shader_bin *bin =
|
|
|
|
|
anv_pipeline_cache_add_shader(cache, key_data, key_size,
|
|
|
|
|
kernel_data, kernel_size,
|
2016-11-01 15:10:29 -07:00
|
|
|
prog_data, prog_data_size,
|
|
|
|
|
prog_data->param, bind_map);
|
2016-06-04 15:10:22 -07:00
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
pthread_mutex_unlock(&cache->mutex);
|
2016-06-04 15:10:22 -07:00
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
/* We increment refcount before handing it to the caller */
|
2017-03-03 10:57:17 +01:00
|
|
|
if (bin)
|
|
|
|
|
anv_shader_bin_ref(bin);
|
2016-03-04 12:56:14 -08:00
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
return bin;
|
|
|
|
|
} else {
|
|
|
|
|
/* In this case, we're not caching it so the caller owns it entirely */
|
|
|
|
|
return anv_shader_bin_create(cache->device, key_data, key_size,
|
|
|
|
|
kernel_data, kernel_size,
|
2016-11-01 15:10:29 -07:00
|
|
|
prog_data, prog_data_size,
|
|
|
|
|
prog_data->param, bind_map);
|
2016-02-10 09:43:03 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-03 16:39:59 -08:00
|
|
|
struct cache_header {
|
|
|
|
|
uint32_t header_size;
|
|
|
|
|
uint32_t header_version;
|
|
|
|
|
uint32_t vendor_id;
|
|
|
|
|
uint32_t device_id;
|
|
|
|
|
uint8_t uuid[VK_UUID_SIZE];
|
|
|
|
|
};
|
|
|
|
|
|
2016-02-10 09:43:03 -08:00
|
|
|
static void
|
|
|
|
|
anv_pipeline_cache_load(struct anv_pipeline_cache *cache,
|
|
|
|
|
const void *data, size_t size)
|
2016-03-03 16:18:30 -08:00
|
|
|
{
|
2016-02-10 09:43:03 -08:00
|
|
|
struct anv_device *device = cache->device;
|
2016-11-24 20:30:38 +00:00
|
|
|
struct anv_physical_device *pdevice = &device->instance->physicalDevice;
|
2016-03-03 16:18:30 -08:00
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
if (cache->cache == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
2017-10-11 12:13:35 -07:00
|
|
|
struct blob_reader blob;
|
|
|
|
|
blob_reader_init(&blob, data, size);
|
|
|
|
|
|
|
|
|
|
struct cache_header header;
|
|
|
|
|
blob_copy_bytes(&blob, &header, sizeof(header));
|
|
|
|
|
uint32_t count = blob_read_uint32(&blob);
|
|
|
|
|
if (blob.overrun)
|
2016-02-10 09:43:03 -08:00
|
|
|
return;
|
2017-10-11 12:13:35 -07:00
|
|
|
|
2016-03-03 16:39:59 -08:00
|
|
|
if (header.header_size < sizeof(header))
|
|
|
|
|
return;
|
|
|
|
|
if (header.header_version != VK_PIPELINE_CACHE_HEADER_VERSION_ONE)
|
|
|
|
|
return;
|
|
|
|
|
if (header.vendor_id != 0x8086)
|
|
|
|
|
return;
|
2016-02-10 09:43:03 -08:00
|
|
|
if (header.device_id != device->chipset_id)
|
|
|
|
|
return;
|
2017-02-27 09:36:20 -08:00
|
|
|
if (memcmp(header.uuid, pdevice->pipeline_cache_uuid, VK_UUID_SIZE) != 0)
|
2016-02-10 09:43:03 -08:00
|
|
|
return;
|
|
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
for (uint32_t i = 0; i < count; i++) {
|
2017-10-11 12:13:35 -07:00
|
|
|
struct anv_shader_bin *bin =
|
|
|
|
|
anv_shader_bin_create_from_blob(device, &blob);
|
|
|
|
|
if (!bin)
|
2016-08-25 01:49:49 -07:00
|
|
|
break;
|
2017-10-11 12:13:35 -07:00
|
|
|
_mesa_hash_table_insert(cache->cache, bin->key, bin);
|
2016-02-10 09:43:03 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
static bool
|
|
|
|
|
pipeline_cache_enabled()
|
|
|
|
|
{
|
|
|
|
|
static int enabled = -1;
|
|
|
|
|
if (enabled < 0)
|
|
|
|
|
enabled = env_var_as_boolean("ANV_ENABLE_PIPELINE_CACHE", true);
|
|
|
|
|
return enabled;
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-10 09:43:03 -08:00
|
|
|
VkResult anv_CreatePipelineCache(
|
|
|
|
|
VkDevice _device,
|
|
|
|
|
const VkPipelineCacheCreateInfo* pCreateInfo,
|
|
|
|
|
const VkAllocationCallbacks* pAllocator,
|
|
|
|
|
VkPipelineCache* pPipelineCache)
|
|
|
|
|
{
|
|
|
|
|
ANV_FROM_HANDLE(anv_device, device, _device);
|
|
|
|
|
struct anv_pipeline_cache *cache;
|
|
|
|
|
|
|
|
|
|
assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO);
|
|
|
|
|
assert(pCreateInfo->flags == 0);
|
|
|
|
|
|
2016-10-14 13:31:35 +10:00
|
|
|
cache = vk_alloc2(&device->alloc, pAllocator,
|
2016-02-10 09:43:03 -08:00
|
|
|
sizeof(*cache), 8,
|
|
|
|
|
VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);
|
|
|
|
|
if (cache == NULL)
|
|
|
|
|
return vk_error(VK_ERROR_OUT_OF_HOST_MEMORY);
|
|
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
anv_pipeline_cache_init(cache, device, pipeline_cache_enabled());
|
2016-02-10 09:43:03 -08:00
|
|
|
|
|
|
|
|
if (pCreateInfo->initialDataSize > 0)
|
|
|
|
|
anv_pipeline_cache_load(cache,
|
|
|
|
|
pCreateInfo->pInitialData,
|
|
|
|
|
pCreateInfo->initialDataSize);
|
|
|
|
|
|
|
|
|
|
*pPipelineCache = anv_pipeline_cache_to_handle(cache);
|
|
|
|
|
|
|
|
|
|
return VK_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void anv_DestroyPipelineCache(
|
|
|
|
|
VkDevice _device,
|
|
|
|
|
VkPipelineCache _cache,
|
|
|
|
|
const VkAllocationCallbacks* pAllocator)
|
|
|
|
|
{
|
|
|
|
|
ANV_FROM_HANDLE(anv_device, device, _device);
|
|
|
|
|
ANV_FROM_HANDLE(anv_pipeline_cache, cache, _cache);
|
|
|
|
|
|
2016-11-10 21:32:32 -08:00
|
|
|
if (!cache)
|
|
|
|
|
return;
|
|
|
|
|
|
2016-02-10 09:43:03 -08:00
|
|
|
anv_pipeline_cache_finish(cache);
|
|
|
|
|
|
2016-10-14 13:31:35 +10:00
|
|
|
vk_free2(&device->alloc, pAllocator, cache);
|
2016-02-10 09:43:03 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VkResult anv_GetPipelineCacheData(
|
|
|
|
|
VkDevice _device,
|
|
|
|
|
VkPipelineCache _cache,
|
|
|
|
|
size_t* pDataSize,
|
|
|
|
|
void* pData)
|
|
|
|
|
{
|
|
|
|
|
ANV_FROM_HANDLE(anv_device, device, _device);
|
|
|
|
|
ANV_FROM_HANDLE(anv_pipeline_cache, cache, _cache);
|
2016-11-24 20:30:38 +00:00
|
|
|
struct anv_physical_device *pdevice = &device->instance->physicalDevice;
|
2016-02-10 09:43:03 -08:00
|
|
|
|
2017-10-11 12:13:35 -07:00
|
|
|
struct blob blob;
|
|
|
|
|
if (pData) {
|
|
|
|
|
blob_init_fixed(&blob, pData, *pDataSize);
|
|
|
|
|
} else {
|
|
|
|
|
blob_init_fixed(&blob, NULL, SIZE_MAX);
|
2016-02-10 09:43:03 -08:00
|
|
|
}
|
|
|
|
|
|
2017-10-11 12:13:35 -07:00
|
|
|
struct cache_header header = {
|
|
|
|
|
.header_size = sizeof(struct cache_header),
|
|
|
|
|
.header_version = VK_PIPELINE_CACHE_HEADER_VERSION_ONE,
|
|
|
|
|
.vendor_id = 0x8086,
|
|
|
|
|
.device_id = device->chipset_id,
|
|
|
|
|
};
|
|
|
|
|
memcpy(header.uuid, pdevice->pipeline_cache_uuid, VK_UUID_SIZE);
|
|
|
|
|
blob_write_bytes(&blob, &header, sizeof(header));
|
|
|
|
|
|
|
|
|
|
uint32_t count = 0;
|
|
|
|
|
ssize_t count_offset = blob_reserve_uint32(&blob);
|
|
|
|
|
if (count_offset < 0) {
|
2016-02-10 09:43:03 -08:00
|
|
|
*pDataSize = 0;
|
2017-10-11 12:13:35 -07:00
|
|
|
blob_finish(&blob);
|
2016-02-10 09:43:03 -08:00
|
|
|
return VK_INCOMPLETE;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-07 17:16:55 +01:00
|
|
|
VkResult result = VK_SUCCESS;
|
2016-08-25 01:49:49 -07:00
|
|
|
if (cache->cache) {
|
|
|
|
|
struct hash_entry *entry;
|
|
|
|
|
hash_table_foreach(cache->cache, entry) {
|
|
|
|
|
struct anv_shader_bin *shader = entry->data;
|
2017-10-11 12:13:35 -07:00
|
|
|
|
|
|
|
|
size_t save_size = blob.size;
|
|
|
|
|
if (!anv_shader_bin_write_to_blob(shader, &blob)) {
|
|
|
|
|
/* If it fails reset to the previous size and bail */
|
|
|
|
|
blob.size = save_size;
|
2016-10-07 17:16:55 +01:00
|
|
|
result = VK_INCOMPLETE;
|
2016-08-25 01:49:49 -07:00
|
|
|
break;
|
2016-10-07 17:16:55 +01:00
|
|
|
}
|
2016-02-10 09:43:03 -08:00
|
|
|
|
2017-10-11 12:13:35 -07:00
|
|
|
count++;
|
2016-08-25 01:49:49 -07:00
|
|
|
}
|
2016-02-10 09:43:03 -08:00
|
|
|
}
|
|
|
|
|
|
2017-10-11 12:13:35 -07:00
|
|
|
blob_overwrite_uint32(&blob, count_offset, count);
|
|
|
|
|
|
|
|
|
|
*pDataSize = blob.size;
|
|
|
|
|
|
|
|
|
|
blob_finish(&blob);
|
2016-03-03 16:48:31 -08:00
|
|
|
|
2016-10-07 17:16:55 +01:00
|
|
|
return result;
|
2016-02-10 09:43:03 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VkResult anv_MergePipelineCaches(
|
|
|
|
|
VkDevice _device,
|
|
|
|
|
VkPipelineCache destCache,
|
|
|
|
|
uint32_t srcCacheCount,
|
|
|
|
|
const VkPipelineCache* pSrcCaches)
|
|
|
|
|
{
|
|
|
|
|
ANV_FROM_HANDLE(anv_pipeline_cache, dst, destCache);
|
|
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
if (!dst->cache)
|
|
|
|
|
return VK_SUCCESS;
|
|
|
|
|
|
2016-02-10 09:43:03 -08:00
|
|
|
for (uint32_t i = 0; i < srcCacheCount; i++) {
|
|
|
|
|
ANV_FROM_HANDLE(anv_pipeline_cache, src, pSrcCaches[i]);
|
2016-08-25 01:49:49 -07:00
|
|
|
if (!src->cache)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
struct hash_entry *entry;
|
|
|
|
|
hash_table_foreach(src->cache, entry) {
|
|
|
|
|
struct anv_shader_bin *bin = entry->data;
|
2017-03-03 10:57:17 +01:00
|
|
|
assert(bin);
|
|
|
|
|
|
2016-11-01 16:03:12 -07:00
|
|
|
if (_mesa_hash_table_search(dst->cache, bin->key))
|
2016-08-25 01:49:49 -07:00
|
|
|
continue;
|
2016-02-10 09:43:03 -08:00
|
|
|
|
2016-08-25 01:49:49 -07:00
|
|
|
anv_shader_bin_ref(bin);
|
2016-11-01 16:03:12 -07:00
|
|
|
_mesa_hash_table_insert(dst->cache, bin->key, bin);
|
2016-08-25 01:49:49 -07:00
|
|
|
}
|
2016-02-10 09:43:03 -08:00
|
|
|
}
|
2016-03-03 16:18:30 -08:00
|
|
|
|
2016-02-10 09:43:03 -08:00
|
|
|
return VK_SUCCESS;
|
|
|
|
|
}
|