2022-04-23 10:59:50 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2020-06-04 17:42:19 +02:00
|
|
|
|
2020-06-05 05:09:52 +02:00
|
|
|
#include <array>
|
2020-06-04 17:42:19 +02:00
|
|
|
#include <vector>
|
2022-03-05 08:01:13 +01:00
|
|
|
#include "common/assert.h"
|
2021-07-10 19:32:34 +02:00
|
|
|
#include "common/scope_exit.h"
|
|
|
|
#include "video_core/dirty_flags.h"
|
2022-12-06 06:45:26 +01:00
|
|
|
#include "video_core/engines/draw_manager.h"
|
2020-06-04 17:42:19 +02:00
|
|
|
#include "video_core/engines/maxwell_3d.h"
|
2022-01-25 19:15:45 +01:00
|
|
|
#include "video_core/macro/macro.h"
|
2020-06-04 17:42:19 +02:00
|
|
|
#include "video_core/macro/macro_hle.h"
|
2022-02-09 15:39:40 +01:00
|
|
|
#include "video_core/memory_manager.h"
|
2020-06-04 17:42:19 +02:00
|
|
|
#include "video_core/rasterizer_interface.h"
|
|
|
|
|
|
|
|
namespace Tegra {
|
2022-11-09 17:58:10 +01:00
|
|
|
|
|
|
|
using Maxwell = Engines::Maxwell3D;
|
|
|
|
|
2020-06-24 04:18:33 +02:00
|
|
|
namespace {
|
2022-01-25 19:15:45 +01:00
|
|
|
|
2022-11-09 17:58:10 +01:00
|
|
|
bool IsTopologySafe(Maxwell::Regs::PrimitiveTopology topology) {
|
2022-03-05 08:01:13 +01:00
|
|
|
switch (topology) {
|
2022-11-09 17:58:10 +01:00
|
|
|
case Maxwell::Regs::PrimitiveTopology::Points:
|
|
|
|
case Maxwell::Regs::PrimitiveTopology::Lines:
|
|
|
|
case Maxwell::Regs::PrimitiveTopology::LineLoop:
|
|
|
|
case Maxwell::Regs::PrimitiveTopology::LineStrip:
|
|
|
|
case Maxwell::Regs::PrimitiveTopology::Triangles:
|
|
|
|
case Maxwell::Regs::PrimitiveTopology::TriangleStrip:
|
|
|
|
case Maxwell::Regs::PrimitiveTopology::TriangleFan:
|
|
|
|
case Maxwell::Regs::PrimitiveTopology::LinesAdjacency:
|
|
|
|
case Maxwell::Regs::PrimitiveTopology::LineStripAdjacency:
|
|
|
|
case Maxwell::Regs::PrimitiveTopology::TrianglesAdjacency:
|
|
|
|
case Maxwell::Regs::PrimitiveTopology::TriangleStripAdjacency:
|
|
|
|
case Maxwell::Regs::PrimitiveTopology::Patches:
|
2022-03-05 08:01:13 +01:00
|
|
|
return true;
|
2022-11-09 17:58:10 +01:00
|
|
|
case Maxwell::Regs::PrimitiveTopology::Quads:
|
|
|
|
case Maxwell::Regs::PrimitiveTopology::QuadStrip:
|
|
|
|
case Maxwell::Regs::PrimitiveTopology::Polygon:
|
2022-03-05 08:01:13 +01:00
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
2020-06-04 17:42:19 +02:00
|
|
|
}
|
|
|
|
|
2022-03-05 08:01:13 +01:00
|
|
|
class HLEMacroImpl : public CachedMacro {
|
|
|
|
public:
|
|
|
|
explicit HLEMacroImpl(Engines::Maxwell3D& maxwell3d_) : maxwell3d{maxwell3d_} {}
|
2020-06-04 17:42:19 +02:00
|
|
|
|
2022-03-05 08:01:13 +01:00
|
|
|
protected:
|
|
|
|
Engines::Maxwell3D& maxwell3d;
|
|
|
|
};
|
|
|
|
|
|
|
|
class HLE_771BB18C62444DA0 final : public HLEMacroImpl {
|
|
|
|
public:
|
|
|
|
explicit HLE_771BB18C62444DA0(Engines::Maxwell3D& maxwell3d_) : HLEMacroImpl(maxwell3d_) {}
|
2020-06-04 17:42:19 +02:00
|
|
|
|
2022-03-05 08:01:13 +01:00
|
|
|
void Execute(const std::vector<u32>& parameters, [[maybe_unused]] u32 method) override {
|
|
|
|
maxwell3d.RefreshParameters();
|
|
|
|
const u32 instance_count = parameters[2] & maxwell3d.GetRegisterValue(0xD1B);
|
|
|
|
maxwell3d.dirty.flags[VideoCommon::Dirty::IndexBuffer] = true;
|
|
|
|
maxwell3d.draw_manager->DrawIndex(
|
|
|
|
static_cast<Tegra::Engines::Maxwell3D::Regs::PrimitiveTopology>(parameters[0] &
|
|
|
|
0x3ffffff),
|
|
|
|
parameters[4], parameters[1], parameters[3], parameters[5], instance_count);
|
2021-07-10 19:32:34 +02:00
|
|
|
}
|
2022-03-05 08:01:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class HLE_DrawArraysIndirect final : public HLEMacroImpl {
|
|
|
|
public:
|
|
|
|
explicit HLE_DrawArraysIndirect(Engines::Maxwell3D& maxwell3d_, bool extended_ = false)
|
|
|
|
: HLEMacroImpl(maxwell3d_), extended(extended_) {}
|
|
|
|
|
|
|
|
void Execute(const std::vector<u32>& parameters, [[maybe_unused]] u32 method) override {
|
2022-11-09 17:58:10 +01:00
|
|
|
auto topology = static_cast<Maxwell::Regs::PrimitiveTopology>(parameters[0]);
|
2022-11-18 00:21:13 +01:00
|
|
|
if (!maxwell3d.AnyParametersDirty() || !IsTopologySafe(topology)) {
|
2022-03-05 08:01:13 +01:00
|
|
|
Fallback(parameters);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto& params = maxwell3d.draw_manager->GetIndirectParams();
|
|
|
|
params.is_indexed = false;
|
|
|
|
params.include_count = false;
|
|
|
|
params.count_start_address = 0;
|
|
|
|
params.indirect_start_address = maxwell3d.getMacroAddress(1);
|
|
|
|
params.buffer_size = 4 * sizeof(u32);
|
|
|
|
params.max_draw_counts = 1;
|
|
|
|
params.stride = 0;
|
|
|
|
|
|
|
|
if (extended) {
|
2022-11-09 17:58:10 +01:00
|
|
|
maxwell3d.engine_state = Maxwell::EngineHint::OnHLEMacro;
|
|
|
|
maxwell3d.setHLEReplacementName(0, 0x640, Maxwell::HLEReplaceName::BaseInstance);
|
2022-03-05 08:01:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
maxwell3d.draw_manager->DrawArrayIndirect(topology);
|
|
|
|
|
|
|
|
if (extended) {
|
2022-11-09 17:58:10 +01:00
|
|
|
maxwell3d.engine_state = Maxwell::EngineHint::None;
|
|
|
|
maxwell3d.replace_table.clear();
|
2022-03-05 08:01:13 +01:00
|
|
|
}
|
2021-07-10 19:32:34 +02:00
|
|
|
}
|
2022-02-09 15:00:05 +01:00
|
|
|
|
2022-03-05 08:01:13 +01:00
|
|
|
private:
|
|
|
|
void Fallback(const std::vector<u32>& parameters) {
|
|
|
|
SCOPE_EXIT({
|
|
|
|
if (extended) {
|
2022-11-18 00:21:13 +01:00
|
|
|
maxwell3d.engine_state = Maxwell::EngineHint::None;
|
|
|
|
maxwell3d.replace_table.clear();
|
2022-03-05 08:01:13 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
maxwell3d.RefreshParameters();
|
|
|
|
const u32 instance_count = (maxwell3d.GetRegisterValue(0xD1B) & parameters[2]);
|
2021-07-10 19:32:34 +02:00
|
|
|
|
2022-12-25 01:19:41 +01:00
|
|
|
auto topology = static_cast<Maxwell::Regs::PrimitiveTopology>(parameters[0]);
|
2022-03-05 08:01:13 +01:00
|
|
|
const u32 vertex_first = parameters[3];
|
|
|
|
const u32 vertex_count = parameters[1];
|
2022-11-17 04:28:58 +01:00
|
|
|
|
2022-12-25 01:19:41 +01:00
|
|
|
if (!IsTopologySafe(topology) &&
|
|
|
|
static_cast<size_t>(maxwell3d.GetMaxCurrentVertices()) <
|
|
|
|
static_cast<size_t>(vertex_first) + static_cast<size_t>(vertex_count)) {
|
2022-03-05 08:01:13 +01:00
|
|
|
ASSERT_MSG(false, "Faulty draw!");
|
|
|
|
return;
|
|
|
|
}
|
2022-11-17 04:28:58 +01:00
|
|
|
|
2022-03-05 08:01:13 +01:00
|
|
|
const u32 base_instance = parameters[4];
|
|
|
|
if (extended) {
|
2022-11-27 00:58:06 +01:00
|
|
|
maxwell3d.regs.global_base_instance_index = base_instance;
|
2022-11-09 17:58:10 +01:00
|
|
|
maxwell3d.engine_state = Maxwell::EngineHint::OnHLEMacro;
|
|
|
|
maxwell3d.setHLEReplacementName(0, 0x640, Maxwell::HLEReplaceName::BaseInstance);
|
2022-03-05 08:01:13 +01:00
|
|
|
}
|
|
|
|
|
2022-12-25 01:19:41 +01:00
|
|
|
maxwell3d.draw_manager->DrawArray(topology, vertex_first, vertex_count, base_instance,
|
|
|
|
instance_count);
|
2022-11-09 17:58:10 +01:00
|
|
|
|
|
|
|
if (extended) {
|
2022-11-27 00:58:06 +01:00
|
|
|
maxwell3d.regs.global_base_instance_index = 0;
|
2022-11-09 17:58:10 +01:00
|
|
|
maxwell3d.engine_state = Maxwell::EngineHint::None;
|
|
|
|
maxwell3d.replace_table.clear();
|
|
|
|
}
|
2022-03-05 08:01:13 +01:00
|
|
|
}
|
2022-11-17 04:28:58 +01:00
|
|
|
|
2022-03-05 08:01:13 +01:00
|
|
|
bool extended;
|
|
|
|
};
|
2020-06-04 17:42:19 +02:00
|
|
|
|
2022-03-05 08:01:13 +01:00
|
|
|
class HLE_DrawIndexedIndirect final : public HLEMacroImpl {
|
2022-01-25 19:15:45 +01:00
|
|
|
public:
|
2022-03-05 08:01:13 +01:00
|
|
|
explicit HLE_DrawIndexedIndirect(Engines::Maxwell3D& maxwell3d_) : HLEMacroImpl(maxwell3d_) {}
|
2022-01-25 19:15:45 +01:00
|
|
|
|
2022-03-05 08:01:13 +01:00
|
|
|
void Execute(const std::vector<u32>& parameters, [[maybe_unused]] u32 method) override {
|
2022-11-09 17:58:10 +01:00
|
|
|
auto topology = static_cast<Maxwell::Regs::PrimitiveTopology>(parameters[0]);
|
2022-11-18 00:21:13 +01:00
|
|
|
if (!maxwell3d.AnyParametersDirty() || !IsTopologySafe(topology)) {
|
2022-03-05 08:01:13 +01:00
|
|
|
Fallback(parameters);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-10-21 01:46:51 +02:00
|
|
|
const u32 estimate = static_cast<u32>(maxwell3d.EstimateIndexBufferSize());
|
2022-11-18 00:21:13 +01:00
|
|
|
const u32 element_base = parameters[4];
|
|
|
|
const u32 base_instance = parameters[5];
|
|
|
|
maxwell3d.regs.vertex_id_base = element_base;
|
|
|
|
maxwell3d.regs.global_base_vertex_index = element_base;
|
|
|
|
maxwell3d.regs.global_base_instance_index = base_instance;
|
2022-10-21 01:46:51 +02:00
|
|
|
maxwell3d.dirty.flags[VideoCommon::Dirty::IndexBuffer] = true;
|
2022-11-09 17:58:10 +01:00
|
|
|
maxwell3d.engine_state = Maxwell::EngineHint::OnHLEMacro;
|
|
|
|
maxwell3d.setHLEReplacementName(0, 0x640, Maxwell::HLEReplaceName::BaseVertex);
|
|
|
|
maxwell3d.setHLEReplacementName(0, 0x644, Maxwell::HLEReplaceName::BaseInstance);
|
2022-03-05 08:01:13 +01:00
|
|
|
auto& params = maxwell3d.draw_manager->GetIndirectParams();
|
|
|
|
params.is_indexed = true;
|
|
|
|
params.include_count = false;
|
|
|
|
params.count_start_address = 0;
|
|
|
|
params.indirect_start_address = maxwell3d.getMacroAddress(1);
|
|
|
|
params.buffer_size = 5 * sizeof(u32);
|
|
|
|
params.max_draw_counts = 1;
|
|
|
|
params.stride = 0;
|
|
|
|
maxwell3d.dirty.flags[VideoCommon::Dirty::IndexBuffer] = true;
|
2022-12-25 01:19:41 +01:00
|
|
|
maxwell3d.draw_manager->DrawIndexedIndirect(topology, 0, estimate);
|
2022-11-09 17:58:10 +01:00
|
|
|
maxwell3d.engine_state = Maxwell::EngineHint::None;
|
|
|
|
maxwell3d.replace_table.clear();
|
2022-11-18 00:21:13 +01:00
|
|
|
maxwell3d.regs.vertex_id_base = 0x0;
|
|
|
|
maxwell3d.regs.global_base_vertex_index = 0x0;
|
|
|
|
maxwell3d.regs.global_base_instance_index = 0x0;
|
2022-01-25 19:15:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2022-03-05 08:01:13 +01:00
|
|
|
void Fallback(const std::vector<u32>& parameters) {
|
|
|
|
maxwell3d.RefreshParameters();
|
|
|
|
const u32 instance_count = (maxwell3d.GetRegisterValue(0xD1B) & parameters[2]);
|
|
|
|
const u32 element_base = parameters[4];
|
|
|
|
const u32 base_instance = parameters[5];
|
|
|
|
maxwell3d.regs.vertex_id_base = element_base;
|
2022-11-18 00:21:13 +01:00
|
|
|
maxwell3d.regs.global_base_vertex_index = element_base;
|
|
|
|
maxwell3d.regs.global_base_instance_index = base_instance;
|
2022-03-05 08:01:13 +01:00
|
|
|
maxwell3d.dirty.flags[VideoCommon::Dirty::IndexBuffer] = true;
|
2022-11-09 17:58:10 +01:00
|
|
|
maxwell3d.engine_state = Maxwell::EngineHint::OnHLEMacro;
|
|
|
|
maxwell3d.setHLEReplacementName(0, 0x640, Maxwell::HLEReplaceName::BaseVertex);
|
|
|
|
maxwell3d.setHLEReplacementName(0, 0x644, Maxwell::HLEReplaceName::BaseInstance);
|
2022-03-05 08:01:13 +01:00
|
|
|
|
|
|
|
maxwell3d.draw_manager->DrawIndex(
|
|
|
|
static_cast<Tegra::Engines::Maxwell3D::Regs::PrimitiveTopology>(parameters[0]),
|
|
|
|
parameters[3], parameters[1], element_base, base_instance, instance_count);
|
|
|
|
|
|
|
|
maxwell3d.regs.vertex_id_base = 0x0;
|
2022-11-18 00:21:13 +01:00
|
|
|
maxwell3d.regs.global_base_vertex_index = 0x0;
|
|
|
|
maxwell3d.regs.global_base_instance_index = 0x0;
|
2022-11-09 17:58:10 +01:00
|
|
|
maxwell3d.engine_state = Maxwell::EngineHint::None;
|
|
|
|
maxwell3d.replace_table.clear();
|
2022-03-05 08:01:13 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class HLE_MultiLayerClear final : public HLEMacroImpl {
|
|
|
|
public:
|
|
|
|
explicit HLE_MultiLayerClear(Engines::Maxwell3D& maxwell3d_) : HLEMacroImpl(maxwell3d_) {}
|
|
|
|
|
|
|
|
void Execute(const std::vector<u32>& parameters, [[maybe_unused]] u32 method) override {
|
|
|
|
maxwell3d.RefreshParameters();
|
|
|
|
ASSERT(parameters.size() == 1);
|
|
|
|
|
|
|
|
const Engines::Maxwell3D::Regs::ClearSurface clear_params{parameters[0]};
|
|
|
|
const u32 rt_index = clear_params.RT;
|
|
|
|
const u32 num_layers = maxwell3d.regs.rt[rt_index].depth;
|
|
|
|
ASSERT(clear_params.layer == 0);
|
|
|
|
|
|
|
|
maxwell3d.regs.clear_surface.raw = clear_params.raw;
|
|
|
|
maxwell3d.draw_manager->Clear(num_layers);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class HLE_MultiDrawIndexedIndirectCount final : public HLEMacroImpl {
|
|
|
|
public:
|
|
|
|
explicit HLE_MultiDrawIndexedIndirectCount(Engines::Maxwell3D& maxwell3d_)
|
|
|
|
: HLEMacroImpl(maxwell3d_) {}
|
|
|
|
|
|
|
|
void Execute(const std::vector<u32>& parameters, [[maybe_unused]] u32 method) override {
|
2022-11-09 17:58:10 +01:00
|
|
|
const auto topology = static_cast<Maxwell::Regs::PrimitiveTopology>(parameters[2]);
|
2022-03-05 08:01:13 +01:00
|
|
|
if (!IsTopologySafe(topology)) {
|
|
|
|
Fallback(parameters);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const u32 start_indirect = parameters[0];
|
|
|
|
const u32 end_indirect = parameters[1];
|
|
|
|
if (start_indirect >= end_indirect) {
|
|
|
|
// Nothing to do.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const u32 padding = parameters[3]; // padding is in words
|
|
|
|
|
|
|
|
// size of each indirect segment
|
|
|
|
const u32 indirect_words = 5 + padding;
|
|
|
|
const u32 stride = indirect_words * sizeof(u32);
|
|
|
|
const std::size_t draw_count = end_indirect - start_indirect;
|
2022-10-21 01:46:51 +02:00
|
|
|
const u32 estimate = static_cast<u32>(maxwell3d.EstimateIndexBufferSize());
|
2022-03-05 08:01:13 +01:00
|
|
|
maxwell3d.dirty.flags[VideoCommon::Dirty::IndexBuffer] = true;
|
|
|
|
auto& params = maxwell3d.draw_manager->GetIndirectParams();
|
|
|
|
params.is_indexed = true;
|
|
|
|
params.include_count = true;
|
|
|
|
params.count_start_address = maxwell3d.getMacroAddress(4);
|
|
|
|
params.indirect_start_address = maxwell3d.getMacroAddress(5);
|
|
|
|
params.buffer_size = stride * draw_count;
|
|
|
|
params.max_draw_counts = draw_count;
|
|
|
|
params.stride = stride;
|
|
|
|
maxwell3d.dirty.flags[VideoCommon::Dirty::IndexBuffer] = true;
|
2022-11-09 17:58:10 +01:00
|
|
|
maxwell3d.engine_state = Maxwell::EngineHint::OnHLEMacro;
|
|
|
|
maxwell3d.setHLEReplacementName(0, 0x640, Maxwell::HLEReplaceName::BaseVertex);
|
|
|
|
maxwell3d.setHLEReplacementName(0, 0x644, Maxwell::HLEReplaceName::BaseInstance);
|
2022-12-25 01:19:41 +01:00
|
|
|
maxwell3d.draw_manager->DrawIndexedIndirect(topology, 0, estimate);
|
2022-11-09 17:58:10 +01:00
|
|
|
maxwell3d.engine_state = Maxwell::EngineHint::None;
|
|
|
|
maxwell3d.replace_table.clear();
|
2022-03-05 08:01:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void Fallback(const std::vector<u32>& parameters) {
|
|
|
|
SCOPE_EXIT({
|
|
|
|
// Clean everything.
|
|
|
|
// Clean everything.
|
|
|
|
maxwell3d.regs.vertex_id_base = 0x0;
|
2022-11-09 17:58:10 +01:00
|
|
|
maxwell3d.engine_state = Maxwell::EngineHint::None;
|
|
|
|
maxwell3d.replace_table.clear();
|
2022-03-05 08:01:13 +01:00
|
|
|
});
|
|
|
|
maxwell3d.RefreshParameters();
|
|
|
|
const u32 start_indirect = parameters[0];
|
|
|
|
const u32 end_indirect = parameters[1];
|
|
|
|
if (start_indirect >= end_indirect) {
|
|
|
|
// Nothing to do.
|
|
|
|
return;
|
|
|
|
}
|
2022-11-09 17:58:10 +01:00
|
|
|
const auto topology = static_cast<Maxwell::Regs::PrimitiveTopology>(parameters[2]);
|
2022-03-05 08:01:13 +01:00
|
|
|
const u32 padding = parameters[3];
|
|
|
|
const std::size_t max_draws = parameters[4];
|
|
|
|
|
|
|
|
const u32 indirect_words = 5 + padding;
|
|
|
|
const std::size_t first_draw = start_indirect;
|
|
|
|
const std::size_t effective_draws = end_indirect - start_indirect;
|
|
|
|
const std::size_t last_draw = start_indirect + std::min(effective_draws, max_draws);
|
|
|
|
|
|
|
|
for (std::size_t index = first_draw; index < last_draw; index++) {
|
|
|
|
const std::size_t base = index * indirect_words + 5;
|
|
|
|
const u32 base_vertex = parameters[base + 3];
|
|
|
|
const u32 base_instance = parameters[base + 4];
|
|
|
|
maxwell3d.regs.vertex_id_base = base_vertex;
|
2022-11-09 17:58:10 +01:00
|
|
|
maxwell3d.engine_state = Maxwell::EngineHint::OnHLEMacro;
|
|
|
|
maxwell3d.setHLEReplacementName(0, 0x640, Maxwell::HLEReplaceName::BaseVertex);
|
|
|
|
maxwell3d.setHLEReplacementName(0, 0x644, Maxwell::HLEReplaceName::BaseInstance);
|
2022-03-05 08:01:13 +01:00
|
|
|
maxwell3d.dirty.flags[VideoCommon::Dirty::IndexBuffer] = true;
|
|
|
|
maxwell3d.draw_manager->DrawIndex(topology, parameters[base + 2], parameters[base],
|
|
|
|
base_vertex, base_instance, parameters[base + 1]);
|
|
|
|
}
|
|
|
|
}
|
2022-01-25 19:15:45 +01:00
|
|
|
};
|
2021-07-10 19:32:34 +02:00
|
|
|
|
2022-11-18 00:21:13 +01:00
|
|
|
class HLE_C713C83D8F63CCF3 final : public HLEMacroImpl {
|
|
|
|
public:
|
|
|
|
explicit HLE_C713C83D8F63CCF3(Engines::Maxwell3D& maxwell3d_) : HLEMacroImpl(maxwell3d_) {}
|
|
|
|
|
|
|
|
void Execute(const std::vector<u32>& parameters, [[maybe_unused]] u32 method) override {
|
|
|
|
maxwell3d.RefreshParameters();
|
|
|
|
const u32 offset = (parameters[0] & 0x3FFFFFFF) << 2;
|
|
|
|
const u32 address = maxwell3d.regs.shadow_scratch[24];
|
|
|
|
auto& const_buffer = maxwell3d.regs.const_buffer;
|
|
|
|
const_buffer.size = 0x7000;
|
|
|
|
const_buffer.address_high = (address >> 24) & 0xFF;
|
|
|
|
const_buffer.address_low = address << 8;
|
|
|
|
const_buffer.offset = offset;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class HLE_D7333D26E0A93EDE final : public HLEMacroImpl {
|
|
|
|
public:
|
|
|
|
explicit HLE_D7333D26E0A93EDE(Engines::Maxwell3D& maxwell3d_) : HLEMacroImpl(maxwell3d_) {}
|
|
|
|
|
|
|
|
void Execute(const std::vector<u32>& parameters, [[maybe_unused]] u32 method) override {
|
|
|
|
maxwell3d.RefreshParameters();
|
|
|
|
const size_t index = parameters[0];
|
|
|
|
const u32 address = maxwell3d.regs.shadow_scratch[42 + index];
|
|
|
|
const u32 size = maxwell3d.regs.shadow_scratch[47 + index];
|
|
|
|
auto& const_buffer = maxwell3d.regs.const_buffer;
|
|
|
|
const_buffer.size = size;
|
|
|
|
const_buffer.address_high = (address >> 24) & 0xFF;
|
|
|
|
const_buffer.address_low = address << 8;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class HLE_BindShader final : public HLEMacroImpl {
|
|
|
|
public:
|
|
|
|
explicit HLE_BindShader(Engines::Maxwell3D& maxwell3d_) : HLEMacroImpl(maxwell3d_) {}
|
|
|
|
|
|
|
|
void Execute(const std::vector<u32>& parameters, [[maybe_unused]] u32 method) override {
|
|
|
|
maxwell3d.RefreshParameters();
|
|
|
|
auto& regs = maxwell3d.regs;
|
|
|
|
const u32 index = parameters[0];
|
|
|
|
if ((parameters[1] - regs.shadow_scratch[28 + index]) == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
regs.pipelines[index & 0xF].offset = parameters[2];
|
|
|
|
maxwell3d.dirty.flags[VideoCommon::Dirty::Shaders] = true;
|
|
|
|
regs.shadow_scratch[28 + index] = parameters[1];
|
|
|
|
regs.shadow_scratch[34 + index] = parameters[2];
|
|
|
|
|
|
|
|
const u32 address = parameters[4];
|
|
|
|
auto& const_buffer = regs.const_buffer;
|
|
|
|
const_buffer.size = 0x10000;
|
|
|
|
const_buffer.address_high = (address >> 24) & 0xFF;
|
|
|
|
const_buffer.address_low = address << 8;
|
|
|
|
|
|
|
|
const size_t bind_group_id = parameters[3] & 0x7F;
|
|
|
|
auto& bind_group = regs.bind_groups[bind_group_id];
|
|
|
|
bind_group.raw_config = 0x11;
|
|
|
|
maxwell3d.ProcessCBBind(bind_group_id);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class HLE_SetRasterBoundingBox final : public HLEMacroImpl {
|
|
|
|
public:
|
|
|
|
explicit HLE_SetRasterBoundingBox(Engines::Maxwell3D& maxwell3d_) : HLEMacroImpl(maxwell3d_) {}
|
|
|
|
|
|
|
|
void Execute(const std::vector<u32>& parameters, [[maybe_unused]] u32 method) override {
|
|
|
|
maxwell3d.RefreshParameters();
|
|
|
|
const u32 raster_mode = parameters[0];
|
|
|
|
auto& regs = maxwell3d.regs;
|
|
|
|
const u32 raster_enabled = maxwell3d.regs.conservative_raster_enable;
|
|
|
|
const u32 scratch_data = maxwell3d.regs.shadow_scratch[52];
|
|
|
|
regs.raster_bounding_box.raw = raster_mode & 0xFFFFF00F;
|
|
|
|
regs.raster_bounding_box.pad.Assign(scratch_data & raster_enabled);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-01-25 19:15:45 +01:00
|
|
|
} // Anonymous namespace
|
|
|
|
|
2022-03-05 08:01:13 +01:00
|
|
|
HLEMacro::HLEMacro(Engines::Maxwell3D& maxwell3d_) : maxwell3d{maxwell3d_} {
|
|
|
|
builders.emplace(0x771BB18C62444DA0ULL,
|
|
|
|
std::function<std::unique_ptr<CachedMacro>(Engines::Maxwell3D&)>(
|
2022-12-25 01:19:41 +01:00
|
|
|
[](Engines::Maxwell3D& maxwell3d__) -> std::unique_ptr<CachedMacro> {
|
|
|
|
return std::make_unique<HLE_771BB18C62444DA0>(maxwell3d__);
|
2022-03-05 08:01:13 +01:00
|
|
|
}));
|
|
|
|
builders.emplace(0x0D61FC9FAAC9FCADULL,
|
|
|
|
std::function<std::unique_ptr<CachedMacro>(Engines::Maxwell3D&)>(
|
2022-12-25 01:19:41 +01:00
|
|
|
[](Engines::Maxwell3D& maxwell3d__) -> std::unique_ptr<CachedMacro> {
|
|
|
|
return std::make_unique<HLE_DrawArraysIndirect>(maxwell3d__);
|
2022-03-05 08:01:13 +01:00
|
|
|
}));
|
|
|
|
builders.emplace(0x8A4D173EB99A8603ULL,
|
|
|
|
std::function<std::unique_ptr<CachedMacro>(Engines::Maxwell3D&)>(
|
2022-12-25 01:19:41 +01:00
|
|
|
[](Engines::Maxwell3D& maxwell3d__) -> std::unique_ptr<CachedMacro> {
|
|
|
|
return std::make_unique<HLE_DrawArraysIndirect>(maxwell3d__, true);
|
2022-03-05 08:01:13 +01:00
|
|
|
}));
|
|
|
|
builders.emplace(0x0217920100488FF7ULL,
|
|
|
|
std::function<std::unique_ptr<CachedMacro>(Engines::Maxwell3D&)>(
|
2022-12-25 01:19:41 +01:00
|
|
|
[](Engines::Maxwell3D& maxwell3d__) -> std::unique_ptr<CachedMacro> {
|
|
|
|
return std::make_unique<HLE_DrawIndexedIndirect>(maxwell3d__);
|
2022-03-05 08:01:13 +01:00
|
|
|
}));
|
|
|
|
builders.emplace(0x3F5E74B9C9A50164ULL,
|
|
|
|
std::function<std::unique_ptr<CachedMacro>(Engines::Maxwell3D&)>(
|
2022-12-25 01:19:41 +01:00
|
|
|
[](Engines::Maxwell3D& maxwell3d__) -> std::unique_ptr<CachedMacro> {
|
2022-12-25 04:24:56 +01:00
|
|
|
return std::make_unique<HLE_MultiDrawIndexedIndirectCount>(
|
|
|
|
maxwell3d__);
|
2022-03-05 08:01:13 +01:00
|
|
|
}));
|
|
|
|
builders.emplace(0xEAD26C3E2109B06BULL,
|
|
|
|
std::function<std::unique_ptr<CachedMacro>(Engines::Maxwell3D&)>(
|
2022-12-25 01:19:41 +01:00
|
|
|
[](Engines::Maxwell3D& maxwell3d__) -> std::unique_ptr<CachedMacro> {
|
|
|
|
return std::make_unique<HLE_MultiLayerClear>(maxwell3d__);
|
2022-03-05 08:01:13 +01:00
|
|
|
}));
|
2022-11-18 00:21:13 +01:00
|
|
|
builders.emplace(0xC713C83D8F63CCF3ULL,
|
|
|
|
std::function<std::unique_ptr<CachedMacro>(Engines::Maxwell3D&)>(
|
2022-12-25 01:19:41 +01:00
|
|
|
[](Engines::Maxwell3D& maxwell3d__) -> std::unique_ptr<CachedMacro> {
|
|
|
|
return std::make_unique<HLE_C713C83D8F63CCF3>(maxwell3d__);
|
2022-11-18 00:21:13 +01:00
|
|
|
}));
|
|
|
|
builders.emplace(0xD7333D26E0A93EDEULL,
|
|
|
|
std::function<std::unique_ptr<CachedMacro>(Engines::Maxwell3D&)>(
|
2022-12-25 01:19:41 +01:00
|
|
|
[](Engines::Maxwell3D& maxwell3d__) -> std::unique_ptr<CachedMacro> {
|
|
|
|
return std::make_unique<HLE_D7333D26E0A93EDE>(maxwell3d__);
|
2022-11-18 00:21:13 +01:00
|
|
|
}));
|
|
|
|
builders.emplace(0xEB29B2A09AA06D38ULL,
|
|
|
|
std::function<std::unique_ptr<CachedMacro>(Engines::Maxwell3D&)>(
|
2022-12-25 01:19:41 +01:00
|
|
|
[](Engines::Maxwell3D& maxwell3d__) -> std::unique_ptr<CachedMacro> {
|
|
|
|
return std::make_unique<HLE_BindShader>(maxwell3d__);
|
2022-11-18 00:21:13 +01:00
|
|
|
}));
|
|
|
|
builders.emplace(0xDB1341DBEB4C8AF7ULL,
|
|
|
|
std::function<std::unique_ptr<CachedMacro>(Engines::Maxwell3D&)>(
|
2022-12-25 01:19:41 +01:00
|
|
|
[](Engines::Maxwell3D& maxwell3d__) -> std::unique_ptr<CachedMacro> {
|
|
|
|
return std::make_unique<HLE_SetRasterBoundingBox>(maxwell3d__);
|
2022-11-18 00:21:13 +01:00
|
|
|
}));
|
2022-03-05 08:01:13 +01:00
|
|
|
}
|
|
|
|
|
2020-06-04 17:42:19 +02:00
|
|
|
HLEMacro::~HLEMacro() = default;
|
|
|
|
|
2022-01-25 19:50:10 +01:00
|
|
|
std::unique_ptr<CachedMacro> HLEMacro::GetHLEProgram(u64 hash) const {
|
2022-03-05 08:01:13 +01:00
|
|
|
const auto it = builders.find(hash);
|
|
|
|
if (it == builders.end()) {
|
2022-01-25 19:50:10 +01:00
|
|
|
return nullptr;
|
2020-06-04 17:42:19 +02:00
|
|
|
}
|
2022-03-05 08:01:13 +01:00
|
|
|
return it->second(maxwell3d);
|
2020-06-04 17:42:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Tegra
|