2019-09-23 18:02:02 +00:00
|
|
|
// Copyright 2019 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-11-27 10:51:13 +00:00
|
|
|
#include <optional>
|
2019-09-23 18:02:02 +00:00
|
|
|
#include <unordered_map>
|
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "common/hash.h"
|
|
|
|
#include "video_core/engines/const_buffer_engine_interface.h"
|
2019-11-18 21:35:21 +00:00
|
|
|
#include "video_core/engines/shader_type.h"
|
2020-01-03 20:16:29 +00:00
|
|
|
#include "video_core/guest_driver.h"
|
2019-09-23 18:02:02 +00:00
|
|
|
|
|
|
|
namespace VideoCommon::Shader {
|
|
|
|
|
2019-09-25 13:53:18 +00:00
|
|
|
using KeyMap = std::unordered_map<std::pair<u32, u32>, u32, Common::PairHash>;
|
|
|
|
using BoundSamplerMap = std::unordered_map<u32, Tegra::Engines::SamplerDescriptor>;
|
|
|
|
using BindlessSamplerMap =
|
|
|
|
std::unordered_map<std::pair<u32, u32>, Tegra::Engines::SamplerDescriptor, Common::PairHash>;
|
|
|
|
|
2019-10-17 14:35:16 +00:00
|
|
|
/**
|
2020-02-28 23:53:10 +00:00
|
|
|
* The Registry is a class use to interface the 3D and compute engines with the shader compiler.
|
|
|
|
* With it, the shader can obtain required data from GPU state and store it for disk shader
|
|
|
|
* compilation.
|
2019-11-18 21:35:21 +00:00
|
|
|
*/
|
2020-02-28 23:53:10 +00:00
|
|
|
class Registry {
|
2019-09-23 18:02:02 +00:00
|
|
|
public:
|
2020-02-28 23:53:10 +00:00
|
|
|
explicit Registry(Tegra::Engines::ShaderType shader_stage,
|
|
|
|
VideoCore::GuestDriverProfile stored_guest_driver_profile);
|
2019-09-23 18:02:02 +00:00
|
|
|
|
2020-02-28 23:53:10 +00:00
|
|
|
explicit Registry(Tegra::Engines::ShaderType shader_stage,
|
|
|
|
Tegra::Engines::ConstBufferEngineInterface& engine);
|
2019-09-23 18:02:02 +00:00
|
|
|
|
2020-02-28 23:53:10 +00:00
|
|
|
~Registry();
|
2019-10-17 14:35:16 +00:00
|
|
|
|
2020-02-28 23:53:10 +00:00
|
|
|
/// Retrieves a key from the registry, if it's registered, it will give the registered value, if
|
2019-09-25 22:19:41 +00:00
|
|
|
/// not it will obtain it from maxwell3d and register it.
|
2019-09-23 18:02:02 +00:00
|
|
|
std::optional<u32> ObtainKey(u32 buffer, u32 offset);
|
|
|
|
|
2019-09-25 13:53:18 +00:00
|
|
|
std::optional<Tegra::Engines::SamplerDescriptor> ObtainBoundSampler(u32 offset);
|
|
|
|
|
|
|
|
std::optional<Tegra::Engines::SamplerDescriptor> ObtainBindlessSampler(u32 buffer, u32 offset);
|
|
|
|
|
2020-01-03 22:15:24 +00:00
|
|
|
std::optional<u32> ObtainBoundBuffer();
|
|
|
|
|
2019-09-25 22:19:41 +00:00
|
|
|
/// Inserts a key.
|
2019-09-23 18:02:02 +00:00
|
|
|
void InsertKey(u32 buffer, u32 offset, u32 value);
|
|
|
|
|
2019-09-25 22:19:41 +00:00
|
|
|
/// Inserts a bound sampler key.
|
2019-09-25 13:53:18 +00:00
|
|
|
void InsertBoundSampler(u32 offset, Tegra::Engines::SamplerDescriptor sampler);
|
|
|
|
|
2019-09-25 22:19:41 +00:00
|
|
|
/// Inserts a bindless sampler key.
|
2019-09-25 13:53:18 +00:00
|
|
|
void InsertBindlessSampler(u32 buffer, u32 offset, Tegra::Engines::SamplerDescriptor sampler);
|
|
|
|
|
2020-02-28 23:53:10 +00:00
|
|
|
/// Set the bound buffer for this registry.
|
2020-01-03 22:15:24 +00:00
|
|
|
void SetBoundBuffer(u32 buffer);
|
|
|
|
|
2020-02-28 23:53:10 +00:00
|
|
|
/// Checks keys and samplers against engine's current const buffers.
|
|
|
|
/// Returns true if they are the same value, false otherwise.
|
2019-09-25 22:19:41 +00:00
|
|
|
bool IsConsistent() const;
|
2019-09-23 18:02:02 +00:00
|
|
|
|
2020-02-28 23:53:10 +00:00
|
|
|
/// Returns true if the keys are equal to the other ones in the registry.
|
|
|
|
bool HasEqualKeys(const Registry& rhs) const;
|
2019-09-26 03:23:08 +00:00
|
|
|
|
2019-09-25 22:19:41 +00:00
|
|
|
/// Gives an getter to the const buffer keys in the database.
|
|
|
|
const KeyMap& GetKeys() const {
|
|
|
|
return keys;
|
2019-09-25 13:53:18 +00:00
|
|
|
}
|
|
|
|
|
2019-09-25 22:19:41 +00:00
|
|
|
/// Gets samplers database.
|
|
|
|
const BoundSamplerMap& GetBoundSamplers() const {
|
|
|
|
return bound_samplers;
|
2019-09-25 13:53:18 +00:00
|
|
|
}
|
|
|
|
|
2019-09-25 22:19:41 +00:00
|
|
|
/// Gets bindless samplers database.
|
|
|
|
const BindlessSamplerMap& GetBindlessSamplers() const {
|
|
|
|
return bindless_samplers;
|
2019-09-25 13:53:18 +00:00
|
|
|
}
|
2019-09-23 18:02:02 +00:00
|
|
|
|
2020-01-24 14:44:34 +00:00
|
|
|
/// Gets bound buffer used on this shader
|
2020-01-03 22:15:24 +00:00
|
|
|
u32 GetBoundBuffer() const {
|
|
|
|
return bound_buffer;
|
|
|
|
}
|
|
|
|
|
2020-01-24 14:44:34 +00:00
|
|
|
/// Obtains access to the guest driver's profile.
|
2020-02-26 19:13:47 +00:00
|
|
|
VideoCore::GuestDriverProfile& AccessGuestDriverProfile() {
|
|
|
|
return engine ? engine->AccessGuestDriverProfile() : stored_guest_driver_profile;
|
2020-01-03 20:16:29 +00:00
|
|
|
}
|
|
|
|
|
2019-09-23 18:02:02 +00:00
|
|
|
private:
|
2019-09-25 22:19:41 +00:00
|
|
|
const Tegra::Engines::ShaderType stage;
|
2020-02-26 19:13:47 +00:00
|
|
|
VideoCore::GuestDriverProfile stored_guest_driver_profile;
|
2019-09-25 22:19:41 +00:00
|
|
|
Tegra::Engines::ConstBufferEngineInterface* engine = nullptr;
|
|
|
|
KeyMap keys;
|
|
|
|
BoundSamplerMap bound_samplers;
|
|
|
|
BindlessSamplerMap bindless_samplers;
|
2020-01-03 22:15:24 +00:00
|
|
|
bool bound_buffer_saved{};
|
|
|
|
u32 bound_buffer{};
|
2019-09-23 18:02:02 +00:00
|
|
|
};
|
2019-09-25 22:19:41 +00:00
|
|
|
|
2019-09-23 18:02:02 +00:00
|
|
|
} // namespace VideoCommon::Shader
|