mesa/src/amd/vulkan/radv_pipeline_cache.h
Rhys Perry 41ffb087d2 radv: add radv_shader_debug_info parameter to radv_shader_create
Signed-off-by: Rhys Perry <pendingchaos02@gmail.com>
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40627>
2026-03-30 09:42:46 +00:00

85 lines
4.1 KiB
C

/*
* Copyright © 2016 Red Hat.
* Copyright © 2016 Bas Nieuwenhuizen
*
* based in part on anv driver which is:
* Copyright © 2015 Intel Corporation
*
* SPDX-License-Identifier: MIT
*/
#ifndef RADV_PIPELINE_CACHE_H
#define RADV_PIPELINE_CACHE_H
#include "util/mesa-blake3.h"
#include "vk_pipeline_cache.h"
struct radv_device;
struct radv_graphics_state_key;
struct radv_pipeline;
struct radv_ray_tracing_group;
struct radv_ray_tracing_pipeline;
struct radv_graphics_pipeline;
struct radv_compute_pipeline;
struct radv_ray_tracing_stage;
struct radv_shader_binary;
struct radv_shader_debug_info;
struct radv_shader_stage;
struct radv_spirv_to_nir_options;
struct util_dynarray;
struct nir_shader;
typedef struct nir_shader nir_shader;
void radv_hash_graphics_spirv_to_nir(blake3_hash hash, const struct radv_shader_stage *stage,
const struct radv_spirv_to_nir_options *options);
struct radv_shader *radv_shader_create(struct radv_device *device, struct vk_pipeline_cache *cache,
const struct radv_shader_binary *binary, bool skip_cache,
struct radv_shader_debug_info *dbg);
bool radv_graphics_pipeline_cache_search(struct radv_device *device, struct vk_pipeline_cache *cache,
struct radv_graphics_pipeline *pipeline, bool *found_in_application_cache);
bool radv_compute_pipeline_cache_search(struct radv_device *device, struct vk_pipeline_cache *cache,
struct radv_compute_pipeline *pipeline, bool *found_in_application_cache);
void radv_pipeline_cache_insert(struct radv_device *device, struct vk_pipeline_cache *cache,
struct radv_pipeline *pipeline);
bool radv_ray_tracing_pipeline_cache_search(struct radv_device *device, struct vk_pipeline_cache *cache,
struct radv_ray_tracing_pipeline *pipeline,
bool *found_in_application_cache);
void radv_ray_tracing_pipeline_cache_insert(struct radv_device *device, struct vk_pipeline_cache *cache,
struct radv_ray_tracing_pipeline *pipeline, unsigned num_stages,
unsigned num_groups);
nir_shader *radv_pipeline_cache_lookup_nir(struct radv_device *device, struct vk_pipeline_cache *cache,
mesa_shader_stage stage, const blake3_hash key);
void radv_pipeline_cache_insert_nir(struct radv_device *device, struct vk_pipeline_cache *cache, const blake3_hash key,
const nir_shader *nir);
struct vk_pipeline_cache_object *radv_pipeline_cache_lookup_nir_handle(struct radv_device *device,
struct vk_pipeline_cache *cache,
const unsigned char *blake3);
struct nir_shader *radv_pipeline_cache_handle_to_nir(struct radv_device *device,
struct vk_pipeline_cache_object *object);
struct vk_pipeline_cache_object *radv_pipeline_cache_nir_to_handle(struct radv_device *device,
struct vk_pipeline_cache *cache,
struct nir_shader *nir, const unsigned char *blake3,
bool cached);
void radv_shader_serialize(struct radv_shader *shader, struct blob *blob);
struct radv_shader *radv_shader_deserialize(struct radv_device *device, const void *key_data, size_t key_size,
struct blob_reader *blob);
VkResult radv_pipeline_cache_get_binaries(struct radv_device *device, const VkAllocationCallbacks *pAllocator,
const unsigned char *blake3, struct util_dynarray *pipeline_binaries,
uint32_t *num_binaries, bool *found_in_internal_cache);
#endif /* RADV_PIPELINE_CACHE_H */