2015-07-22 01:38:59 +02:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-04-30 17:34:51 +02:00
|
|
|
#include <cmath>
|
|
|
|
#include <cstring>
|
2016-12-19 02:58:30 +01:00
|
|
|
#include "common/bit_set.h"
|
2016-04-30 17:34:51 +02:00
|
|
|
#include "common/logging/log.h"
|
2015-08-17 23:25:21 +02:00
|
|
|
#include "common/microprofile.h"
|
2016-03-03 04:16:38 +01:00
|
|
|
#include "video_core/pica_state.h"
|
2017-01-29 00:12:09 +01:00
|
|
|
#include "video_core/regs_rasterizer.h"
|
|
|
|
#include "video_core/regs_shader.h"
|
2016-09-21 08:52:38 +02:00
|
|
|
#include "video_core/shader/shader.h"
|
2016-04-30 17:34:51 +02:00
|
|
|
#include "video_core/shader/shader_interpreter.h"
|
2015-08-15 04:29:08 +02:00
|
|
|
#ifdef ARCHITECTURE_x86_64
|
2016-12-17 10:21:16 +01:00
|
|
|
#include "video_core/shader/shader_jit_x64.h"
|
2015-08-15 04:29:08 +02:00
|
|
|
#endif // ARCHITECTURE_x86_64
|
2016-04-30 17:34:51 +02:00
|
|
|
#include "video_core/video_core.h"
|
|
|
|
|
2015-07-22 01:38:59 +02:00
|
|
|
namespace Pica {
|
|
|
|
|
|
|
|
namespace Shader {
|
|
|
|
|
2018-01-03 00:32:33 +01:00
|
|
|
void OutputVertex::ValidateSemantics(const RasterizerRegs& regs) {
|
|
|
|
unsigned int num_attributes = regs.vs_output_total;
|
|
|
|
ASSERT(num_attributes <= 7);
|
|
|
|
for (size_t attrib = 0; attrib < num_attributes; ++attrib) {
|
|
|
|
u32 output_register_map = regs.vs_output_attributes[attrib].raw;
|
|
|
|
for (size_t comp = 0; comp < 4; ++comp) {
|
|
|
|
u32 semantic = (output_register_map >> (8 * comp)) & 0x1F;
|
|
|
|
ASSERT_MSG(semantic < 24 || semantic == RasterizerRegs::VSOutputAttributes::INVALID,
|
2018-03-27 17:28:42 +02:00
|
|
|
"Invalid/unknown semantic id: {}", semantic);
|
2018-01-03 00:32:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-25 23:39:43 +02:00
|
|
|
OutputVertex OutputVertex::FromAttributeBuffer(const RasterizerRegs& regs,
|
|
|
|
const AttributeBuffer& input) {
|
2016-05-13 08:49:20 +02:00
|
|
|
// Setup output data
|
2016-12-19 08:42:29 +01:00
|
|
|
union {
|
|
|
|
OutputVertex ret{};
|
2018-01-03 00:32:33 +01:00
|
|
|
// Allow us to overflow OutputVertex to avoid branches, since
|
|
|
|
// RasterizerRegs::VSOutputAttributes::INVALID would write to slot 31, which
|
|
|
|
// would be out of bounds otherwise.
|
|
|
|
std::array<float24, 32> vertex_slots_overflow;
|
2016-12-19 08:42:29 +01:00
|
|
|
};
|
2016-05-13 08:49:20 +02:00
|
|
|
|
2018-01-03 00:32:33 +01:00
|
|
|
// Assert that OutputVertex has enough space for 24 semantic registers
|
|
|
|
static_assert(sizeof(std::array<float24, 24>) == sizeof(ret),
|
|
|
|
"Struct and array have different sizes.");
|
|
|
|
|
|
|
|
unsigned int num_attributes = regs.vs_output_total & 7;
|
|
|
|
for (size_t attrib = 0; attrib < num_attributes; ++attrib) {
|
|
|
|
const auto output_register_map = regs.vs_output_attributes[attrib];
|
|
|
|
vertex_slots_overflow[output_register_map.map_x] = input.attr[attrib][0];
|
|
|
|
vertex_slots_overflow[output_register_map.map_y] = input.attr[attrib][1];
|
|
|
|
vertex_slots_overflow[output_register_map.map_z] = input.attr[attrib][2];
|
|
|
|
vertex_slots_overflow[output_register_map.map_w] = input.attr[attrib][3];
|
2016-05-13 08:49:20 +02:00
|
|
|
}
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
// The hardware takes the absolute and saturates vertex colors like this, *before* doing
|
|
|
|
// interpolation
|
2016-05-13 08:49:20 +02:00
|
|
|
for (unsigned i = 0; i < 4; ++i) {
|
2017-09-17 16:42:45 +02:00
|
|
|
float c = std::fabs(ret.color[i].ToFloat32());
|
|
|
|
ret.color[i] = float24::FromFloat32(c < 1.0f ? c : 1.0f);
|
2016-05-13 08:49:20 +02:00
|
|
|
}
|
|
|
|
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_TRACE(HW_GPU,
|
2018-06-29 15:56:12 +02:00
|
|
|
"Output vertex: pos({:.2}, {:.2}, {:.2}, {:.2}), quat({:.2}, {:.2}, {:.2}, {:.2}), "
|
|
|
|
"col({:.2}, {:.2}, {:.2}, {:.2}), tc0({:.2}, {:.2}), view({:.2}, {:.2}, {:.2})",
|
|
|
|
ret.pos.x.ToFloat32(), ret.pos.y.ToFloat32(), ret.pos.z.ToFloat32(),
|
|
|
|
ret.pos.w.ToFloat32(), ret.quat.x.ToFloat32(), ret.quat.y.ToFloat32(),
|
|
|
|
ret.quat.z.ToFloat32(), ret.quat.w.ToFloat32(), ret.color.x.ToFloat32(),
|
|
|
|
ret.color.y.ToFloat32(), ret.color.z.ToFloat32(), ret.color.w.ToFloat32(),
|
|
|
|
ret.tc0.u().ToFloat32(), ret.tc0.v().ToFloat32(), ret.view.x.ToFloat32(),
|
|
|
|
ret.view.y.ToFloat32(), ret.view.z.ToFloat32());
|
2016-05-13 08:49:20 +02:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-01-28 22:03:13 +01:00
|
|
|
void UnitState::LoadInput(const ShaderRegs& config, const AttributeBuffer& input) {
|
2016-12-19 02:25:03 +01:00
|
|
|
const unsigned max_attribute = config.max_input_attribute_index;
|
2016-12-17 06:41:38 +01:00
|
|
|
|
2016-12-19 02:25:03 +01:00
|
|
|
for (unsigned attr = 0; attr <= max_attribute; ++attr) {
|
|
|
|
unsigned reg = config.GetRegisterForAttribute(attr);
|
|
|
|
registers.input[reg] = input.attr[attr];
|
|
|
|
}
|
2016-12-17 06:41:38 +01:00
|
|
|
}
|
|
|
|
|
2017-12-10 05:23:27 +01:00
|
|
|
static void CopyRegistersToOutput(const Math::Vec4<float24>* regs, u32 mask,
|
|
|
|
AttributeBuffer& buffer) {
|
|
|
|
int output_i = 0;
|
|
|
|
for (int reg : Common::BitSet<u32>(mask)) {
|
|
|
|
buffer.attr[output_i++] = regs[reg];
|
2016-12-19 02:58:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-10 05:23:27 +01:00
|
|
|
void UnitState::WriteOutput(const ShaderRegs& config, AttributeBuffer& output) {
|
|
|
|
CopyRegistersToOutput(registers.output, config.output_mask, output);
|
|
|
|
}
|
|
|
|
|
2017-07-25 21:30:29 +02:00
|
|
|
UnitState::UnitState(GSEmitter* emitter) : emitter_ptr(emitter) {}
|
|
|
|
|
|
|
|
GSEmitter::GSEmitter() {
|
|
|
|
handlers = new Handlers;
|
|
|
|
}
|
|
|
|
|
|
|
|
GSEmitter::~GSEmitter() {
|
|
|
|
delete handlers;
|
|
|
|
}
|
|
|
|
|
2017-12-10 05:30:14 +01:00
|
|
|
void GSEmitter::Emit(Math::Vec4<float24> (&output_regs)[16]) {
|
2017-07-25 21:30:29 +02:00
|
|
|
ASSERT(vertex_id < 3);
|
2017-12-10 05:30:14 +01:00
|
|
|
// TODO: This should be merged with UnitState::WriteOutput somehow
|
|
|
|
CopyRegistersToOutput(output_regs, output_mask, buffer[vertex_id]);
|
|
|
|
|
2017-07-25 21:30:29 +02:00
|
|
|
if (prim_emit) {
|
|
|
|
if (winding)
|
|
|
|
handlers->winding_setter();
|
|
|
|
for (size_t i = 0; i < buffer.size(); ++i) {
|
2017-12-10 05:30:14 +01:00
|
|
|
handlers->vertex_handler(buffer[i]);
|
2017-07-25 21:30:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GSUnitState::GSUnitState() : UnitState(&emitter) {}
|
|
|
|
|
|
|
|
void GSUnitState::SetVertexHandler(VertexHandler vertex_handler, WindingSetter winding_setter) {
|
|
|
|
emitter.handlers->vertex_handler = std::move(vertex_handler);
|
|
|
|
emitter.handlers->winding_setter = std::move(winding_setter);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GSUnitState::ConfigOutput(const ShaderRegs& config) {
|
|
|
|
emitter.output_mask = config.output_mask;
|
|
|
|
}
|
|
|
|
|
2016-12-17 10:21:16 +01:00
|
|
|
MICROPROFILE_DEFINE(GPU_Shader, "GPU", "Shader", MP_RGB(50, 50, 240));
|
2015-07-23 05:25:30 +02:00
|
|
|
|
2016-03-30 02:45:18 +02:00
|
|
|
#ifdef ARCHITECTURE_x86_64
|
2016-12-17 10:21:16 +01:00
|
|
|
static std::unique_ptr<JitX64Engine> jit_engine;
|
2016-03-30 02:45:18 +02:00
|
|
|
#endif // ARCHITECTURE_x86_64
|
2016-12-17 10:21:16 +01:00
|
|
|
static InterpreterEngine interpreter_engine;
|
2016-12-17 08:21:26 +01:00
|
|
|
|
2016-12-17 10:21:16 +01:00
|
|
|
ShaderEngine* GetEngine() {
|
2015-07-23 05:25:30 +02:00
|
|
|
#ifdef ARCHITECTURE_x86_64
|
2016-12-17 10:21:16 +01:00
|
|
|
// TODO(yuriks): Re-initialize on each change rather than being persistent
|
2015-07-23 05:25:30 +02:00
|
|
|
if (VideoCore::g_shader_jit_enabled) {
|
2016-12-17 10:21:16 +01:00
|
|
|
if (jit_engine == nullptr) {
|
|
|
|
jit_engine = std::make_unique<JitX64Engine>();
|
2015-07-23 05:25:30 +02:00
|
|
|
}
|
2016-12-17 10:21:16 +01:00
|
|
|
return jit_engine.get();
|
2015-08-15 04:29:08 +02:00
|
|
|
}
|
|
|
|
#endif // ARCHITECTURE_x86_64
|
2015-07-22 01:38:59 +02:00
|
|
|
|
2016-12-17 10:21:16 +01:00
|
|
|
return &interpreter_engine;
|
|
|
|
}
|
2015-07-22 01:38:59 +02:00
|
|
|
|
2016-12-17 10:21:16 +01:00
|
|
|
void Shutdown() {
|
2015-07-23 05:25:30 +02:00
|
|
|
#ifdef ARCHITECTURE_x86_64
|
2016-12-17 10:21:16 +01:00
|
|
|
jit_engine = nullptr;
|
2015-08-15 04:29:08 +02:00
|
|
|
#endif // ARCHITECTURE_x86_64
|
2015-07-22 01:38:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Shader
|
|
|
|
|
|
|
|
} // namespace Pica
|