2017-10-16 17:50:09 +02:00
|
|
|
#pragma once
|
|
|
|
|
2017-12-18 00:46:44 +01:00
|
|
|
#include <array>
|
|
|
|
#include <vector>
|
|
|
|
|
2017-12-13 15:32:54 +01:00
|
|
|
#include "../spirv/spirv_module.h"
|
|
|
|
|
2018-03-23 01:04:04 +01:00
|
|
|
#include "dxbc_analysis.h"
|
2017-12-13 15:32:54 +01:00
|
|
|
#include "dxbc_chunk_isgn.h"
|
|
|
|
#include "dxbc_decoder.h"
|
|
|
|
#include "dxbc_defs.h"
|
2017-12-18 00:46:44 +01:00
|
|
|
#include "dxbc_names.h"
|
2018-01-07 20:05:27 +01:00
|
|
|
#include "dxbc_options.h"
|
2017-12-18 00:46:44 +01:00
|
|
|
#include "dxbc_util.h"
|
2017-10-16 17:50:09 +02:00
|
|
|
|
|
|
|
namespace dxvk {
|
|
|
|
|
2017-12-14 12:53:53 +01:00
|
|
|
/**
|
2017-12-18 00:46:44 +01:00
|
|
|
* \brief Vector type
|
2017-12-14 12:53:53 +01:00
|
|
|
*
|
2017-12-18 00:46:44 +01:00
|
|
|
* Convenience struct that stores a scalar
|
|
|
|
* type and a component count. The compiler
|
|
|
|
* can use this to generate SPIR-V types.
|
2017-12-14 12:53:53 +01:00
|
|
|
*/
|
2017-12-18 00:46:44 +01:00
|
|
|
struct DxbcVectorType {
|
|
|
|
DxbcScalarType ctype;
|
|
|
|
uint32_t ccount;
|
2017-12-13 15:32:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-12-18 16:41:05 +01:00
|
|
|
/**
|
|
|
|
* \brief Array type
|
|
|
|
*
|
|
|
|
* Convenience struct that stores a scalar type, a
|
|
|
|
* component count and an array size. An array of
|
|
|
|
* length 0 will be evaluated to a vector type. The
|
|
|
|
* compiler can use this to generate SPIR-V types.
|
|
|
|
*/
|
|
|
|
struct DxbcArrayType {
|
|
|
|
DxbcScalarType ctype;
|
|
|
|
uint32_t ccount;
|
|
|
|
uint32_t alength;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-12-13 15:32:54 +01:00
|
|
|
/**
|
2017-12-18 00:46:44 +01:00
|
|
|
* \brief Register info
|
2017-12-13 15:32:54 +01:00
|
|
|
*
|
2017-12-18 16:41:05 +01:00
|
|
|
* Stores the array type of a register and
|
2017-12-18 00:46:44 +01:00
|
|
|
* its storage class. The compiler can use
|
|
|
|
* this to generate SPIR-V pointer types.
|
2017-12-13 15:32:54 +01:00
|
|
|
*/
|
2017-12-18 00:46:44 +01:00
|
|
|
struct DxbcRegisterInfo {
|
2017-12-18 16:41:05 +01:00
|
|
|
DxbcArrayType type;
|
2017-12-18 00:46:44 +01:00
|
|
|
spv::StorageClass sclass;
|
2017-12-13 15:32:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-12-18 00:46:44 +01:00
|
|
|
* \brief Register value
|
2017-12-13 15:32:54 +01:00
|
|
|
*
|
2017-12-18 00:46:44 +01:00
|
|
|
* Stores a vector type and a SPIR-V ID that
|
|
|
|
* represents an intermediate value. This is
|
|
|
|
* used to track the type of such values.
|
2017-12-13 15:32:54 +01:00
|
|
|
*/
|
2017-12-18 00:46:44 +01:00
|
|
|
struct DxbcRegisterValue {
|
|
|
|
DxbcVectorType type;
|
|
|
|
uint32_t id;
|
2017-12-13 15:32:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-12-18 00:46:44 +01:00
|
|
|
* \brief Register pointer
|
2017-12-13 15:32:54 +01:00
|
|
|
*
|
2017-12-18 00:46:44 +01:00
|
|
|
* Stores a vector type and a SPIR-V ID that
|
|
|
|
* represents a pointer to such a vector. This
|
|
|
|
* can be used to load registers conveniently.
|
2017-12-13 15:32:54 +01:00
|
|
|
*/
|
2017-12-18 00:46:44 +01:00
|
|
|
struct DxbcRegisterPointer {
|
|
|
|
DxbcVectorType type;
|
|
|
|
uint32_t id;
|
2017-12-13 15:32:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-12-20 22:50:05 +01:00
|
|
|
struct DxbcXreg {
|
|
|
|
uint32_t ccount = 0;
|
|
|
|
uint32_t varId = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-12-29 00:51:31 +01:00
|
|
|
struct DxbcGreg {
|
|
|
|
DxbcResourceType type = DxbcResourceType::Raw;
|
|
|
|
uint32_t elementStride = 0;
|
|
|
|
uint32_t elementCount = 0;
|
|
|
|
uint32_t varId = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-12-13 15:32:54 +01:00
|
|
|
/**
|
2017-12-18 00:46:44 +01:00
|
|
|
* \brief Vertex shader-specific structure
|
2017-12-13 15:32:54 +01:00
|
|
|
*/
|
2017-12-18 00:46:44 +01:00
|
|
|
struct DxbcCompilerVsPart {
|
2017-12-18 16:41:05 +01:00
|
|
|
uint32_t functionId = 0;
|
2017-12-21 12:37:20 +01:00
|
|
|
|
2017-12-27 12:49:25 +01:00
|
|
|
uint32_t builtinVertexId = 0;
|
|
|
|
uint32_t builtinInstanceId = 0;
|
|
|
|
uint32_t builtinBaseVertex = 0;
|
|
|
|
uint32_t builtinBaseInstance = 0;
|
2017-12-18 16:41:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Geometry shader-specific structure
|
|
|
|
*/
|
|
|
|
struct DxbcCompilerGsPart {
|
|
|
|
DxbcPrimitive inputPrimitive = DxbcPrimitive::Undefined;
|
|
|
|
DxbcPrimitiveTopology outputTopology = DxbcPrimitiveTopology::Undefined;
|
|
|
|
uint32_t outputVertexCount = 0;
|
|
|
|
uint32_t functionId = 0;
|
2018-02-04 23:36:00 +01:00
|
|
|
|
2018-02-15 18:07:40 +01:00
|
|
|
uint32_t builtinLayer = 0;
|
2018-03-26 23:32:07 +02:00
|
|
|
uint32_t builtinViewportId = 0;
|
2017-12-13 15:32:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2017-12-18 00:46:44 +01:00
|
|
|
* \brief Pixel shader-specific structure
|
2017-12-13 15:32:54 +01:00
|
|
|
*/
|
2017-12-18 00:46:44 +01:00
|
|
|
struct DxbcCompilerPsPart {
|
2017-12-18 16:41:05 +01:00
|
|
|
uint32_t functionId = 0;
|
|
|
|
|
2018-01-29 10:54:36 +01:00
|
|
|
uint32_t builtinFragCoord = 0;
|
|
|
|
uint32_t builtinDepth = 0;
|
|
|
|
uint32_t builtinIsFrontFace = 0;
|
|
|
|
uint32_t builtinSampleId = 0;
|
|
|
|
uint32_t builtinSampleMaskIn = 0;
|
|
|
|
uint32_t builtinSampleMaskOut = 0;
|
2018-02-15 18:07:40 +01:00
|
|
|
uint32_t builtinLayer = 0;
|
2017-12-21 12:37:20 +01:00
|
|
|
|
2017-12-18 00:46:44 +01:00
|
|
|
std::array<DxbcVectorType, DxbcMaxInterfaceRegs> oTypes;
|
2017-12-13 15:32:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-12-21 17:27:40 +01:00
|
|
|
/**
|
|
|
|
* \brief Compute shader-specific structure
|
|
|
|
*/
|
|
|
|
struct DxbcCompilerCsPart {
|
|
|
|
uint32_t functionId = 0;
|
2017-12-28 16:03:17 +01:00
|
|
|
|
|
|
|
uint32_t builtinGlobalInvocationId = 0;
|
|
|
|
uint32_t builtinLocalInvocationId = 0;
|
|
|
|
uint32_t builtinLocalInvocationIndex = 0;
|
|
|
|
uint32_t builtinWorkgroupId = 0;
|
2017-12-21 17:27:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-01-29 14:37:06 +01:00
|
|
|
/**
|
|
|
|
* \brief Hull shader fork/join phase
|
|
|
|
*
|
|
|
|
* Defines a function and built-in variables
|
|
|
|
* for a single fork or join phase sub-program.
|
|
|
|
*/
|
|
|
|
struct DxbcCompilerHsForkJoinPhase {
|
|
|
|
uint32_t functionId = 0;
|
2018-03-01 12:08:06 +01:00
|
|
|
uint32_t instanceCount = 1;
|
2018-03-06 18:29:20 +01:00
|
|
|
|
|
|
|
uint32_t instanceId = 0;
|
|
|
|
uint32_t instanceIdPtr = 0;
|
2018-01-29 14:37:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Hull shader control point phase
|
|
|
|
*
|
|
|
|
* Defines the function for the control
|
|
|
|
* point phase program of a hull shader.
|
|
|
|
*/
|
|
|
|
struct DxbcCompilerHsControlPointPhase {
|
2018-03-05 17:23:00 +01:00
|
|
|
uint32_t functionId = 0;
|
2018-01-29 14:37:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Hull shader phase
|
|
|
|
*
|
|
|
|
* Used to identify the current
|
|
|
|
* phase and function ID.
|
|
|
|
*/
|
|
|
|
enum class DxbcCompilerHsPhase : uint32_t {
|
|
|
|
None, ///< No active phase
|
|
|
|
Decl, ///< \c hs_decls
|
|
|
|
ControlPoint, ///< \c hs_control_point_phase
|
|
|
|
Fork, ///< \c hs_fork_phase
|
|
|
|
Join, ///< \c hs_join_phase
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Hull shader-specific structure
|
|
|
|
*/
|
|
|
|
struct DxbcCompilerHsPart {
|
2018-03-01 12:47:24 +01:00
|
|
|
DxbcCompilerHsPhase currPhaseType = DxbcCompilerHsPhase::None;
|
|
|
|
size_t currPhaseId = 0;
|
|
|
|
|
2018-03-10 15:02:27 +01:00
|
|
|
float maxTessFactor = 64.0f;
|
|
|
|
|
2018-03-05 14:07:15 +01:00
|
|
|
uint32_t vertexCountIn = 0;
|
|
|
|
uint32_t vertexCountOut = 0;
|
|
|
|
|
2018-03-05 17:23:00 +01:00
|
|
|
uint32_t builtinInvocationId = 0;
|
2018-03-05 14:07:15 +01:00
|
|
|
uint32_t builtinTessLevelOuter = 0;
|
|
|
|
uint32_t builtinTessLevelInner = 0;
|
2018-01-29 14:37:06 +01:00
|
|
|
|
2018-03-06 14:00:03 +01:00
|
|
|
uint32_t outputPerPatch = 0;
|
|
|
|
uint32_t outputPerVertex = 0;
|
|
|
|
|
2018-03-06 15:05:58 +01:00
|
|
|
uint32_t invocationBlockBegin = 0;
|
|
|
|
uint32_t invocationBlockEnd = 0;
|
|
|
|
|
2018-01-29 14:37:06 +01:00
|
|
|
DxbcCompilerHsControlPointPhase cpPhase;
|
|
|
|
std::vector<DxbcCompilerHsForkJoinPhase> forkPhases;
|
|
|
|
std::vector<DxbcCompilerHsForkJoinPhase> joinPhases;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Domain shader-specific structure
|
|
|
|
*/
|
|
|
|
struct DxbcCompilerDsPart {
|
2018-03-06 16:47:35 +01:00
|
|
|
uint32_t functionId = 0;
|
2018-03-05 14:07:15 +01:00
|
|
|
|
2018-03-06 16:47:35 +01:00
|
|
|
uint32_t builtinTessCoord = 0;
|
2018-03-05 14:07:15 +01:00
|
|
|
uint32_t builtinTessLevelOuter = 0;
|
|
|
|
uint32_t builtinTessLevelInner = 0;
|
2018-03-06 16:47:35 +01:00
|
|
|
|
|
|
|
uint32_t vertexCountIn = 0;
|
|
|
|
|
|
|
|
uint32_t inputPerPatch = 0;
|
|
|
|
uint32_t inputPerVertex = 0;
|
2018-01-29 14:37:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-12-18 11:53:28 +01:00
|
|
|
enum class DxbcCfgBlockType : uint32_t {
|
2017-12-30 17:22:36 +01:00
|
|
|
If, Loop, Switch,
|
2017-12-18 11:53:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct DxbcCfgBlockIf {
|
|
|
|
uint32_t labelIf;
|
|
|
|
uint32_t labelElse;
|
|
|
|
uint32_t labelEnd;
|
|
|
|
bool hadElse;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct DxbcCfgBlockLoop {
|
|
|
|
uint32_t labelHeader;
|
|
|
|
uint32_t labelBegin;
|
|
|
|
uint32_t labelContinue;
|
|
|
|
uint32_t labelBreak;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-12-30 17:22:36 +01:00
|
|
|
struct DxbcSwitchLabel {
|
|
|
|
SpirvSwitchCaseLabel desc;
|
|
|
|
DxbcSwitchLabel* next;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct DxbcCfgBlockSwitch {
|
|
|
|
size_t insertPtr;
|
|
|
|
uint32_t selectorId;
|
|
|
|
uint32_t labelBreak;
|
|
|
|
uint32_t labelCase;
|
|
|
|
uint32_t labelDefault;
|
|
|
|
DxbcSwitchLabel* labelCases;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-12-18 11:53:28 +01:00
|
|
|
struct DxbcCfgBlock {
|
|
|
|
DxbcCfgBlockType type;
|
|
|
|
|
|
|
|
union {
|
2017-12-30 17:22:36 +01:00
|
|
|
DxbcCfgBlockIf b_if;
|
|
|
|
DxbcCfgBlockLoop b_loop;
|
|
|
|
DxbcCfgBlockSwitch b_switch;
|
2017-12-18 11:53:28 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-12-28 16:03:17 +01:00
|
|
|
struct DxbcBufferInfo {
|
2018-01-02 16:57:37 +01:00
|
|
|
DxbcImageInfo image;
|
2018-03-21 12:11:18 +01:00
|
|
|
DxbcScalarType stype;
|
2017-12-28 16:03:17 +01:00
|
|
|
DxbcResourceType type;
|
|
|
|
uint32_t typeId;
|
|
|
|
uint32_t varId;
|
2018-01-10 13:44:04 +01:00
|
|
|
uint32_t specId;
|
2017-12-28 16:03:17 +01:00
|
|
|
uint32_t stride;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-12-13 15:32:54 +01:00
|
|
|
/**
|
|
|
|
* \brief DXBC to SPIR-V shader compiler
|
|
|
|
*
|
|
|
|
* Processes instructions from a DXBC shader and creates
|
|
|
|
* a DXVK shader object, which contains the SPIR-V module
|
|
|
|
* and information about the shader resource bindings.
|
|
|
|
*/
|
2017-12-14 12:53:53 +01:00
|
|
|
class DxbcCompiler {
|
2017-10-16 17:50:09 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2017-12-14 12:53:53 +01:00
|
|
|
DxbcCompiler(
|
2018-01-07 20:05:27 +01:00
|
|
|
const DxbcOptions& options,
|
2017-12-07 16:29:34 +01:00
|
|
|
const DxbcProgramVersion& version,
|
|
|
|
const Rc<DxbcIsgn>& isgn,
|
2018-03-23 01:04:04 +01:00
|
|
|
const Rc<DxbcIsgn>& osgn,
|
|
|
|
const DxbcAnalysisInfo& analysis);
|
2017-12-14 12:53:53 +01:00
|
|
|
~DxbcCompiler();
|
2017-10-16 17:50:09 +02:00
|
|
|
|
2017-12-13 15:32:54 +01:00
|
|
|
/**
|
|
|
|
* \brief Processes a single instruction
|
|
|
|
* \param [in] ins The instruction
|
|
|
|
*/
|
2017-12-18 00:46:44 +01:00
|
|
|
void processInstruction(
|
|
|
|
const DxbcShaderInstruction& ins);
|
2017-11-13 00:22:52 +01:00
|
|
|
|
2017-12-13 15:32:54 +01:00
|
|
|
/**
|
|
|
|
* \brief Finalizes the shader
|
|
|
|
* \returns The final shader object
|
|
|
|
*/
|
2017-12-08 18:14:05 +01:00
|
|
|
Rc<DxvkShader> finalize();
|
2017-10-16 17:50:09 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2018-01-07 20:05:27 +01:00
|
|
|
DxbcOptions m_options;
|
2017-12-13 15:32:54 +01:00
|
|
|
DxbcProgramVersion m_version;
|
|
|
|
SpirvModule m_module;
|
2017-11-13 00:22:52 +01:00
|
|
|
|
2017-12-13 15:32:54 +01:00
|
|
|
Rc<DxbcIsgn> m_isgn;
|
|
|
|
Rc<DxbcIsgn> m_osgn;
|
2017-11-13 00:22:52 +01:00
|
|
|
|
2018-03-23 01:04:04 +01:00
|
|
|
const DxbcAnalysisInfo* m_analysis;
|
|
|
|
|
2017-12-13 15:32:54 +01:00
|
|
|
///////////////////////////////////////////////////////
|
|
|
|
// Resource slot description for the shader. This will
|
|
|
|
// be used to map D3D11 bindings to DXVK bindings.
|
|
|
|
std::vector<DxvkResourceSlot> m_resourceSlots;
|
2017-12-08 17:08:26 +01:00
|
|
|
|
2017-12-20 22:50:05 +01:00
|
|
|
////////////////////////////////////////////////
|
|
|
|
// Temporary r# vector registers with immediate
|
|
|
|
// indexing, and x# vector array registers.
|
2017-12-13 15:32:54 +01:00
|
|
|
std::vector<uint32_t> m_rRegs;
|
2017-12-20 22:50:05 +01:00
|
|
|
std::vector<DxbcXreg> m_xRegs;
|
2017-12-10 10:34:18 +01:00
|
|
|
|
2017-12-29 00:51:31 +01:00
|
|
|
/////////////////////////////////////////////
|
|
|
|
// Thread group shared memory (g#) registers
|
|
|
|
std::vector<DxbcGreg> m_gRegs;
|
|
|
|
|
2017-12-13 15:32:54 +01:00
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
// v# registers as defined by the shader. The type of each
|
|
|
|
// of these inputs is either float4 or an array of float4.
|
|
|
|
std::array<uint32_t, DxbcMaxInterfaceRegs> m_vRegs;
|
2017-12-18 00:46:44 +01:00
|
|
|
std::vector<DxbcSvMapping> m_vMappings;
|
2017-12-10 03:39:35 +01:00
|
|
|
|
2017-12-13 15:32:54 +01:00
|
|
|
//////////////////////////////////////////////////////////
|
|
|
|
// o# registers as defined by the shader. In the fragment
|
|
|
|
// shader stage, these registers are typed by the signature,
|
|
|
|
// in all other stages, they are float4 registers or arrays.
|
|
|
|
std::array<uint32_t, DxbcMaxInterfaceRegs> m_oRegs;
|
2017-12-18 00:46:44 +01:00
|
|
|
std::vector<DxbcSvMapping> m_oMappings;
|
2017-11-13 00:22:52 +01:00
|
|
|
|
2017-12-13 15:32:54 +01:00
|
|
|
//////////////////////////////////////////////////////
|
|
|
|
// Shader resource variables. These provide access to
|
|
|
|
// constant buffers, samplers, textures, and UAVs.
|
2017-12-14 12:53:53 +01:00
|
|
|
std::array<DxbcConstantBuffer, 16> m_constantBuffers;
|
|
|
|
std::array<DxbcSampler, 16> m_samplers;
|
|
|
|
std::array<DxbcShaderResource, 128> m_textures;
|
2017-12-28 16:03:17 +01:00
|
|
|
std::array<DxbcUav, 64> m_uavs;
|
2017-11-16 01:30:17 +01:00
|
|
|
|
2017-12-18 11:53:28 +01:00
|
|
|
///////////////////////////////////////////////
|
|
|
|
// Control flow information. Stores labels for
|
|
|
|
// currently active if-else blocks and loops.
|
|
|
|
std::vector<DxbcCfgBlock> m_controlFlowBlocks;
|
|
|
|
|
2017-12-13 15:32:54 +01:00
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
// Array of input values. Since v# registers are indexable
|
|
|
|
// in DXBC, we need to copy them into an array first.
|
|
|
|
uint32_t m_vArray = 0;
|
2017-12-11 14:36:35 +01:00
|
|
|
|
2017-12-13 15:32:54 +01:00
|
|
|
////////////////////////////////////////////////////
|
|
|
|
// Per-vertex input and output blocks. Depending on
|
|
|
|
// the shader stage, these may be declared as arrays.
|
2018-03-24 16:23:31 +01:00
|
|
|
uint32_t m_perVertexIn = 0;
|
2017-12-13 15:32:54 +01:00
|
|
|
uint32_t m_perVertexOut = 0;
|
2017-12-09 01:49:30 +01:00
|
|
|
|
2018-03-24 11:29:07 +01:00
|
|
|
uint32_t m_clipDistances = 0;
|
|
|
|
uint32_t m_cullDistances = 0;
|
|
|
|
|
2018-04-08 18:25:44 +02:00
|
|
|
uint32_t m_primitiveIdIn = 0;
|
|
|
|
uint32_t m_primitiveIdOut = 0;
|
|
|
|
|
2017-12-19 17:41:23 +01:00
|
|
|
//////////////////////////////////////////////////
|
|
|
|
// Immediate constant buffer. If defined, this is
|
|
|
|
// an array of four-component uint32 vectors.
|
|
|
|
uint32_t m_immConstBuf = 0;
|
|
|
|
|
2018-03-12 12:25:10 +01:00
|
|
|
///////////////////////////////////////////////////
|
|
|
|
// Sample pos array. If defined, this iis an array
|
|
|
|
// of 32 four-component float vectors.
|
|
|
|
uint32_t m_samplePositions = 0;
|
|
|
|
|
2018-01-11 17:11:51 +01:00
|
|
|
////////////////////////////////////////////
|
|
|
|
// Struct type used for UAV counter buffers
|
|
|
|
uint32_t m_uavCtrStructType = 0;
|
|
|
|
uint32_t m_uavCtrPointerType = 0;
|
|
|
|
|
2017-12-13 15:32:54 +01:00
|
|
|
///////////////////////////////////////////////////
|
|
|
|
// Entry point description - we'll need to declare
|
|
|
|
// the function ID and all input/output variables.
|
|
|
|
std::vector<uint32_t> m_entryPointInterfaces;
|
|
|
|
uint32_t m_entryPointId = 0;
|
2017-12-08 17:08:26 +01:00
|
|
|
|
2018-01-12 14:25:26 +01:00
|
|
|
////////////////////////////////////////////
|
|
|
|
// Inter-stage shader interface slots. Also
|
|
|
|
// covers vertex input and fragment output.
|
|
|
|
DxvkInterfaceSlots m_interfaceSlots;
|
|
|
|
|
2017-12-18 00:46:44 +01:00
|
|
|
///////////////////////////////////
|
|
|
|
// Shader-specific data structures
|
|
|
|
DxbcCompilerVsPart m_vs;
|
2018-01-29 14:37:06 +01:00
|
|
|
DxbcCompilerHsPart m_hs;
|
|
|
|
DxbcCompilerDsPart m_ds;
|
2017-12-18 16:41:05 +01:00
|
|
|
DxbcCompilerGsPart m_gs;
|
2017-12-18 00:46:44 +01:00
|
|
|
DxbcCompilerPsPart m_ps;
|
2017-12-21 17:27:40 +01:00
|
|
|
DxbcCompilerCsPart m_cs;
|
2017-12-18 00:46:44 +01:00
|
|
|
|
|
|
|
/////////////////////////////////////////////////////
|
|
|
|
// Shader interface and metadata declaration methods
|
2017-12-18 11:53:28 +01:00
|
|
|
void emitDcl(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-18 00:46:44 +01:00
|
|
|
void emitDclGlobalFlags(
|
2017-12-18 11:53:28 +01:00
|
|
|
const DxbcShaderInstruction& ins);
|
2017-12-18 00:46:44 +01:00
|
|
|
|
|
|
|
void emitDclTemps(
|
2017-12-18 11:53:28 +01:00
|
|
|
const DxbcShaderInstruction& ins);
|
2017-12-18 00:46:44 +01:00
|
|
|
|
2017-12-20 22:50:05 +01:00
|
|
|
void emitDclIndexableTemp(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-18 00:46:44 +01:00
|
|
|
void emitDclInterfaceReg(
|
2017-12-18 11:53:28 +01:00
|
|
|
const DxbcShaderInstruction& ins);
|
2017-12-18 00:46:44 +01:00
|
|
|
|
|
|
|
void emitDclInput(
|
|
|
|
uint32_t regIdx,
|
|
|
|
uint32_t regDim,
|
|
|
|
DxbcRegMask regMask,
|
|
|
|
DxbcSystemValue sv,
|
|
|
|
DxbcInterpolationMode im);
|
|
|
|
|
|
|
|
void emitDclOutput(
|
|
|
|
uint32_t regIdx,
|
|
|
|
uint32_t regDim,
|
|
|
|
DxbcRegMask regMask,
|
|
|
|
DxbcSystemValue sv,
|
|
|
|
DxbcInterpolationMode im);
|
|
|
|
|
|
|
|
void emitDclConstantBuffer(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
|
|
|
void emitDclSampler(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2018-02-04 22:59:15 +01:00
|
|
|
void emitDclStream(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-28 16:03:17 +01:00
|
|
|
void emitDclResourceTyped(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
|
|
|
void emitDclResourceRawStructured(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
|
|
|
void emitDclThreadGroupSharedMemory(
|
2017-12-18 00:46:44 +01:00
|
|
|
const DxbcShaderInstruction& ins);
|
2017-12-10 20:01:38 +01:00
|
|
|
|
2017-12-18 16:41:05 +01:00
|
|
|
void emitDclGsInputPrimitive(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
|
|
|
void emitDclGsOutputTopology(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
|
|
|
void emitDclMaxOutputVertexCount(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2018-03-01 12:47:24 +01:00
|
|
|
void emitDclInputControlPointCount(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
|
|
|
void emitDclOutputControlPointCount(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2018-03-10 15:02:27 +01:00
|
|
|
void emitDclHsMaxTessFactor(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2018-03-01 14:36:17 +01:00
|
|
|
void emitDclTessDomain(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
|
|
|
void emitDclTessPartitioning(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
|
|
|
void emitDclTessOutputPrimitive(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-28 16:03:17 +01:00
|
|
|
void emitDclThreadGroup(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2018-01-11 17:11:51 +01:00
|
|
|
uint32_t emitDclUavCounter(
|
|
|
|
uint32_t regId);
|
|
|
|
|
2017-12-19 17:41:23 +01:00
|
|
|
////////////////////////
|
|
|
|
// Custom data handlers
|
|
|
|
void emitDclImmediateConstantBuffer(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
|
|
|
void emitCustomData(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-13 15:32:54 +01:00
|
|
|
//////////////////////////////
|
|
|
|
// Instruction class handlers
|
2017-12-18 00:46:44 +01:00
|
|
|
void emitVectorAlu(
|
|
|
|
const DxbcShaderInstruction& ins);
|
2017-11-16 01:30:17 +01:00
|
|
|
|
2017-12-18 00:46:44 +01:00
|
|
|
void emitVectorCmov(
|
|
|
|
const DxbcShaderInstruction& ins);
|
2017-12-13 15:32:54 +01:00
|
|
|
|
2017-12-18 00:46:44 +01:00
|
|
|
void emitVectorCmp(
|
|
|
|
const DxbcShaderInstruction& ins);
|
2017-12-13 15:32:54 +01:00
|
|
|
|
2017-12-19 20:26:05 +01:00
|
|
|
void emitVectorDeriv(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-18 00:46:44 +01:00
|
|
|
void emitVectorDot(
|
|
|
|
const DxbcShaderInstruction& ins);
|
2017-12-10 12:08:20 +01:00
|
|
|
|
2017-12-18 16:41:05 +01:00
|
|
|
void emitVectorIdiv(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-18 00:46:44 +01:00
|
|
|
void emitVectorImul(
|
|
|
|
const DxbcShaderInstruction& ins);
|
2017-12-08 17:08:26 +01:00
|
|
|
|
2017-12-20 23:50:39 +01:00
|
|
|
void emitVectorShift(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-18 00:46:44 +01:00
|
|
|
void emitVectorSinCos(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-18 16:41:05 +01:00
|
|
|
void emitGeometryEmit(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-28 16:03:17 +01:00
|
|
|
void emitAtomic(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2018-01-11 17:11:51 +01:00
|
|
|
void emitAtomicCounter(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-29 00:51:31 +01:00
|
|
|
void emitBarrier(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-30 03:44:19 +01:00
|
|
|
void emitBitExtract(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
|
|
|
void emitBitInsert(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-30 01:26:37 +01:00
|
|
|
void emitBufferQuery(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-28 16:03:17 +01:00
|
|
|
void emitBufferLoad(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
|
|
|
void emitBufferStore(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-30 13:18:31 +01:00
|
|
|
void emitConvertFloat16(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2018-03-01 09:26:17 +01:00
|
|
|
void emitHullShaderPhase(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2018-03-01 12:08:06 +01:00
|
|
|
void emitHullShaderInstCnt(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2018-02-26 16:46:34 +01:00
|
|
|
void emitInterpolate(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-27 01:37:15 +01:00
|
|
|
void emitTextureQuery(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2018-02-04 22:41:23 +01:00
|
|
|
void emitTextureQueryLod(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2018-02-04 19:30:39 +01:00
|
|
|
void emitTextureQueryMs(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2018-03-12 12:25:10 +01:00
|
|
|
void emitTextureQueryMsPos(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-27 01:37:15 +01:00
|
|
|
void emitTextureFetch(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2018-01-17 02:12:29 +01:00
|
|
|
void emitTextureGather(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-27 01:37:15 +01:00
|
|
|
void emitTextureSample(
|
2017-12-18 00:46:44 +01:00
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2018-01-01 17:14:06 +01:00
|
|
|
void emitTypedUavLoad(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
|
|
|
void emitTypedUavStore(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-18 11:53:28 +01:00
|
|
|
/////////////////////////////////////
|
|
|
|
// Control flow instruction handlers
|
|
|
|
void emitControlFlowIf(
|
2017-12-18 00:46:44 +01:00
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-18 11:53:28 +01:00
|
|
|
void emitControlFlowElse(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
|
|
|
void emitControlFlowEndIf(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-30 17:22:36 +01:00
|
|
|
void emitControlFlowSwitch(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
|
|
|
void emitControlFlowCase(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
|
|
|
void emitControlFlowDefault(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
|
|
|
void emitControlFlowEndSwitch(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-18 11:53:28 +01:00
|
|
|
void emitControlFlowLoop(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
|
|
|
void emitControlFlowEndLoop(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-29 22:54:25 +01:00
|
|
|
void emitControlFlowBreak(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-18 11:53:28 +01:00
|
|
|
void emitControlFlowBreakc(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
|
|
|
void emitControlFlowRet(
|
|
|
|
const DxbcShaderInstruction& ins);
|
2018-03-10 15:04:58 +01:00
|
|
|
|
|
|
|
void emitControlFlowRetc(
|
|
|
|
const DxbcShaderInstruction& ins);
|
2017-12-18 11:53:28 +01:00
|
|
|
|
2017-12-18 16:41:05 +01:00
|
|
|
void emitControlFlowDiscard(
|
|
|
|
const DxbcShaderInstruction& ins);
|
|
|
|
|
2017-12-18 11:53:28 +01:00
|
|
|
void emitControlFlow(
|
|
|
|
const DxbcShaderInstruction& ins);
|
2017-12-18 00:46:44 +01:00
|
|
|
|
2017-12-30 03:44:19 +01:00
|
|
|
////////////////////////////////////////////////
|
|
|
|
// Constant building methods. These are used to
|
|
|
|
// generate constant vectors that store the same
|
|
|
|
// value in each component.
|
|
|
|
DxbcRegisterValue emitBuildConstVecf32(
|
2018-01-08 22:26:45 +01:00
|
|
|
float x,
|
|
|
|
float y,
|
|
|
|
float z,
|
|
|
|
float w,
|
2017-12-30 03:44:19 +01:00
|
|
|
const DxbcRegMask& writeMask);
|
|
|
|
|
2018-01-10 18:58:17 +01:00
|
|
|
DxbcRegisterValue emitBuildConstVecu32(
|
|
|
|
uint32_t x,
|
|
|
|
uint32_t y,
|
|
|
|
uint32_t z,
|
|
|
|
uint32_t w,
|
|
|
|
const DxbcRegMask& writeMask);
|
|
|
|
|
|
|
|
DxbcRegisterValue emitBuildConstVeci32(
|
|
|
|
int32_t x,
|
|
|
|
int32_t y,
|
|
|
|
int32_t z,
|
|
|
|
int32_t w,
|
|
|
|
const DxbcRegMask& writeMask);
|
|
|
|
|
2017-12-18 00:46:44 +01:00
|
|
|
/////////////////////////////////////////
|
|
|
|
// Generic register manipulation methods
|
|
|
|
DxbcRegisterValue emitRegisterBitcast(
|
|
|
|
DxbcRegisterValue srcValue,
|
|
|
|
DxbcScalarType dstType);
|
|
|
|
|
|
|
|
DxbcRegisterValue emitRegisterSwizzle(
|
|
|
|
DxbcRegisterValue value,
|
|
|
|
DxbcRegSwizzle swizzle,
|
|
|
|
DxbcRegMask writeMask);
|
|
|
|
|
|
|
|
DxbcRegisterValue emitRegisterExtract(
|
|
|
|
DxbcRegisterValue value,
|
|
|
|
DxbcRegMask mask);
|
|
|
|
|
|
|
|
DxbcRegisterValue emitRegisterInsert(
|
|
|
|
DxbcRegisterValue dstValue,
|
|
|
|
DxbcRegisterValue srcValue,
|
|
|
|
DxbcRegMask srcMask);
|
|
|
|
|
2018-03-01 10:11:15 +01:00
|
|
|
DxbcRegisterValue emitRegisterConcat(
|
|
|
|
DxbcRegisterValue value1,
|
|
|
|
DxbcRegisterValue value2);
|
|
|
|
|
2017-12-18 00:46:44 +01:00
|
|
|
DxbcRegisterValue emitRegisterExtend(
|
|
|
|
DxbcRegisterValue value,
|
|
|
|
uint32_t size);
|
|
|
|
|
|
|
|
DxbcRegisterValue emitRegisterAbsolute(
|
|
|
|
DxbcRegisterValue value);
|
|
|
|
|
|
|
|
DxbcRegisterValue emitRegisterNegate(
|
|
|
|
DxbcRegisterValue value);
|
|
|
|
|
2017-12-18 11:53:28 +01:00
|
|
|
DxbcRegisterValue emitRegisterZeroTest(
|
|
|
|
DxbcRegisterValue value,
|
|
|
|
DxbcZeroTest test);
|
|
|
|
|
2017-12-18 00:46:44 +01:00
|
|
|
DxbcRegisterValue emitSrcOperandModifiers(
|
|
|
|
DxbcRegisterValue value,
|
|
|
|
DxbcRegModifiers modifiers);
|
|
|
|
|
|
|
|
DxbcRegisterValue emitDstOperandModifiers(
|
|
|
|
DxbcRegisterValue value,
|
|
|
|
DxbcOpModifiers modifiers);
|
|
|
|
|
2018-02-04 22:41:23 +01:00
|
|
|
///////////////////////////////////////
|
|
|
|
// Image register manipulation methods
|
|
|
|
uint32_t emitLoadSampledImage(
|
|
|
|
const DxbcShaderResource& textureResource,
|
|
|
|
const DxbcSampler& samplerResource,
|
|
|
|
bool isDepthCompare);
|
|
|
|
|
2017-12-18 00:46:44 +01:00
|
|
|
////////////////////////
|
|
|
|
// Address load methods
|
|
|
|
DxbcRegisterPointer emitGetTempPtr(
|
|
|
|
const DxbcRegister& operand);
|
|
|
|
|
2017-12-20 22:50:05 +01:00
|
|
|
DxbcRegisterPointer emitGetIndexableTempPtr(
|
|
|
|
const DxbcRegister& operand);
|
|
|
|
|
2017-12-18 00:46:44 +01:00
|
|
|
DxbcRegisterPointer emitGetInputPtr(
|
|
|
|
const DxbcRegister& operand);
|
|
|
|
|
|
|
|
DxbcRegisterPointer emitGetOutputPtr(
|
|
|
|
const DxbcRegister& operand);
|
|
|
|
|
|
|
|
DxbcRegisterPointer emitGetConstBufPtr(
|
|
|
|
const DxbcRegister& operand);
|
2017-12-19 17:41:23 +01:00
|
|
|
|
|
|
|
DxbcRegisterPointer emitGetImmConstBufPtr(
|
|
|
|
const DxbcRegister& operand);
|
2017-12-18 00:46:44 +01:00
|
|
|
|
|
|
|
DxbcRegisterPointer emitGetOperandPtr(
|
|
|
|
const DxbcRegister& operand);
|
|
|
|
|
2018-01-02 12:07:49 +01:00
|
|
|
DxbcRegisterPointer emitGetAtomicPointer(
|
|
|
|
const DxbcRegister& operand,
|
|
|
|
const DxbcRegister& address);
|
|
|
|
|
2017-12-28 16:03:17 +01:00
|
|
|
///////////////////////////////
|
|
|
|
// Resource load/store methods
|
|
|
|
DxbcRegisterValue emitRawBufferLoad(
|
|
|
|
const DxbcRegister& operand,
|
|
|
|
DxbcRegisterValue elementIndex,
|
|
|
|
DxbcRegMask writeMask);
|
|
|
|
|
|
|
|
void emitRawBufferStore(
|
|
|
|
const DxbcRegister& operand,
|
|
|
|
DxbcRegisterValue elementIndex,
|
|
|
|
DxbcRegisterValue value);
|
|
|
|
|
2018-01-02 16:57:37 +01:00
|
|
|
//////////////////////////
|
|
|
|
// Resource query methods
|
|
|
|
DxbcRegisterValue emitQueryTexelBufferSize(
|
|
|
|
const DxbcRegister& resource);
|
|
|
|
|
|
|
|
DxbcRegisterValue emitQueryTextureLods(
|
|
|
|
const DxbcRegister& resource);
|
|
|
|
|
2018-02-04 19:30:39 +01:00
|
|
|
DxbcRegisterValue emitQueryTextureSamples(
|
|
|
|
const DxbcRegister& resource);
|
|
|
|
|
2018-01-02 16:57:37 +01:00
|
|
|
DxbcRegisterValue emitQueryTextureSize(
|
|
|
|
const DxbcRegister& resource,
|
|
|
|
DxbcRegisterValue lod);
|
|
|
|
|
2017-12-28 16:03:17 +01:00
|
|
|
////////////////////////////////////
|
|
|
|
// Buffer index calculation methods
|
|
|
|
DxbcRegisterValue emitCalcBufferIndexStructured(
|
|
|
|
DxbcRegisterValue structId,
|
|
|
|
DxbcRegisterValue structOffset,
|
|
|
|
uint32_t structStride);
|
|
|
|
|
|
|
|
DxbcRegisterValue emitCalcBufferIndexRaw(
|
|
|
|
DxbcRegisterValue byteOffset);
|
|
|
|
|
2017-12-18 00:46:44 +01:00
|
|
|
//////////////////////////////
|
|
|
|
// Operand load/store methods
|
|
|
|
DxbcRegisterValue emitIndexLoad(
|
|
|
|
DxbcRegIndex index);
|
|
|
|
|
|
|
|
DxbcRegisterValue emitValueLoad(
|
|
|
|
DxbcRegisterPointer ptr);
|
|
|
|
|
|
|
|
void emitValueStore(
|
|
|
|
DxbcRegisterPointer ptr,
|
|
|
|
DxbcRegisterValue value,
|
|
|
|
DxbcRegMask writeMask);
|
|
|
|
|
2018-01-10 18:58:17 +01:00
|
|
|
DxbcRegisterValue emitRegisterLoadRaw(
|
|
|
|
const DxbcRegister& reg);
|
|
|
|
|
2017-12-18 00:46:44 +01:00
|
|
|
DxbcRegisterValue emitRegisterLoad(
|
|
|
|
const DxbcRegister& reg,
|
|
|
|
DxbcRegMask writeMask);
|
|
|
|
|
|
|
|
void emitRegisterStore(
|
|
|
|
const DxbcRegister& reg,
|
|
|
|
DxbcRegisterValue value);
|
2017-11-16 01:30:17 +01:00
|
|
|
|
2017-12-21 12:37:20 +01:00
|
|
|
////////////////////////////
|
|
|
|
// Input/output preparation
|
2017-12-21 16:00:36 +01:00
|
|
|
void emitInputSetup();
|
2017-12-21 12:37:20 +01:00
|
|
|
void emitInputSetup(uint32_t vertexCount);
|
2017-12-21 16:00:36 +01:00
|
|
|
|
|
|
|
void emitOutputSetup();
|
|
|
|
|
|
|
|
//////////////////////////////////////////
|
|
|
|
// System value load methods (per shader)
|
|
|
|
DxbcRegisterValue emitVsSystemValueLoad(
|
|
|
|
DxbcSystemValue sv,
|
|
|
|
DxbcRegMask mask);
|
|
|
|
|
|
|
|
DxbcRegisterValue emitGsSystemValueLoad(
|
|
|
|
DxbcSystemValue sv,
|
|
|
|
DxbcRegMask mask,
|
|
|
|
uint32_t vertexId);
|
|
|
|
|
|
|
|
DxbcRegisterValue emitPsSystemValueLoad(
|
|
|
|
DxbcSystemValue sv,
|
|
|
|
DxbcRegMask mask);
|
|
|
|
|
2017-12-28 16:03:17 +01:00
|
|
|
DxbcRegisterValue emitCsSystemValueLoad(
|
|
|
|
DxbcSystemValue sv,
|
|
|
|
DxbcRegMask mask);
|
|
|
|
|
2017-12-21 16:00:36 +01:00
|
|
|
///////////////////////////////////////////
|
|
|
|
// System value store methods (per shader)
|
|
|
|
void emitVsSystemValueStore(
|
|
|
|
DxbcSystemValue sv,
|
|
|
|
DxbcRegMask mask,
|
|
|
|
const DxbcRegisterValue& value);
|
|
|
|
|
2018-03-06 14:49:11 +01:00
|
|
|
void emitHsSystemValueStore(
|
|
|
|
DxbcSystemValue sv,
|
|
|
|
DxbcRegMask mask,
|
|
|
|
const DxbcRegisterValue& value);
|
|
|
|
|
2018-03-06 16:47:35 +01:00
|
|
|
void emitDsSystemValueStore(
|
|
|
|
DxbcSystemValue sv,
|
|
|
|
DxbcRegMask mask,
|
|
|
|
const DxbcRegisterValue& value);
|
|
|
|
|
2017-12-21 16:00:36 +01:00
|
|
|
void emitGsSystemValueStore(
|
|
|
|
DxbcSystemValue sv,
|
|
|
|
DxbcRegMask mask,
|
|
|
|
const DxbcRegisterValue& value);
|
2017-11-16 01:30:17 +01:00
|
|
|
|
2018-03-24 11:29:07 +01:00
|
|
|
///////////////////////////////
|
|
|
|
// Special system value stores
|
|
|
|
void emitClipCullStore(
|
|
|
|
DxbcSystemValue sv,
|
|
|
|
uint32_t dstArray);
|
|
|
|
|
|
|
|
void emitClipCullLoad(
|
|
|
|
DxbcSystemValue sv,
|
|
|
|
uint32_t srcArray);
|
|
|
|
|
2018-03-06 15:52:29 +01:00
|
|
|
//////////////////////////////////////
|
|
|
|
// Common function definition methods
|
2018-02-01 18:07:24 +01:00
|
|
|
void emitInit();
|
|
|
|
|
2018-03-06 15:52:29 +01:00
|
|
|
void emitMainFunctionBegin();
|
|
|
|
|
|
|
|
void emitMainFunctionEnd();
|
|
|
|
|
|
|
|
/////////////////////////////////
|
|
|
|
// Shader initialization methods
|
2017-12-18 00:46:44 +01:00
|
|
|
void emitVsInit();
|
2018-01-29 14:37:06 +01:00
|
|
|
void emitHsInit();
|
2018-03-01 07:00:54 +01:00
|
|
|
void emitDsInit();
|
2017-12-18 16:41:05 +01:00
|
|
|
void emitGsInit();
|
2017-12-18 00:46:44 +01:00
|
|
|
void emitPsInit();
|
2017-12-21 17:27:40 +01:00
|
|
|
void emitCsInit();
|
2017-11-16 01:30:17 +01:00
|
|
|
|
2017-12-13 15:32:54 +01:00
|
|
|
///////////////////////////////
|
|
|
|
// Shader finalization methods
|
2017-12-18 00:46:44 +01:00
|
|
|
void emitVsFinalize();
|
2018-01-29 14:37:06 +01:00
|
|
|
void emitHsFinalize();
|
2018-03-01 07:00:54 +01:00
|
|
|
void emitDsFinalize();
|
2017-12-18 16:41:05 +01:00
|
|
|
void emitGsFinalize();
|
2017-12-18 00:46:44 +01:00
|
|
|
void emitPsFinalize();
|
2017-12-21 17:27:40 +01:00
|
|
|
void emitCsFinalize();
|
2017-12-18 00:46:44 +01:00
|
|
|
|
2018-03-01 12:08:06 +01:00
|
|
|
///////////////////////////////
|
|
|
|
// Hull shader phase methods
|
|
|
|
void emitHsControlPointPhase(
|
|
|
|
const DxbcCompilerHsControlPointPhase& phase);
|
|
|
|
|
|
|
|
void emitHsForkJoinPhase(
|
|
|
|
const DxbcCompilerHsForkJoinPhase& phase);
|
|
|
|
|
2018-03-05 16:14:46 +01:00
|
|
|
void emitHsPhaseBarrier();
|
|
|
|
|
2018-03-06 15:05:58 +01:00
|
|
|
void emitHsInvocationBlockBegin(
|
|
|
|
uint32_t count);
|
|
|
|
|
|
|
|
void emitHsInvocationBlockEnd();
|
|
|
|
|
2018-03-06 14:00:03 +01:00
|
|
|
uint32_t emitTessInterfacePerPatch(
|
|
|
|
spv::StorageClass storageClass);
|
|
|
|
|
|
|
|
uint32_t emitTessInterfacePerVertex(
|
|
|
|
spv::StorageClass storageClass,
|
|
|
|
uint32_t vertexCount);
|
|
|
|
|
2017-12-21 12:37:20 +01:00
|
|
|
//////////////
|
|
|
|
// Misc stuff
|
|
|
|
void emitDclInputArray(
|
|
|
|
uint32_t vertexCount);
|
|
|
|
|
2018-03-24 16:23:31 +01:00
|
|
|
void emitDclInputPerVertex(
|
|
|
|
uint32_t vertexCount,
|
|
|
|
const char* varName);
|
|
|
|
|
2018-03-24 11:29:07 +01:00
|
|
|
uint32_t emitDclClipCullDistanceArray(
|
|
|
|
uint32_t length,
|
|
|
|
spv::BuiltIn builtIn,
|
|
|
|
spv::StorageClass storageClass);
|
|
|
|
|
2018-03-05 17:23:00 +01:00
|
|
|
DxbcCompilerHsControlPointPhase emitNewHullShaderControlPointPhase();
|
|
|
|
|
2018-03-06 15:52:29 +01:00
|
|
|
DxbcCompilerHsControlPointPhase emitNewHullShaderPassthroughPhase();
|
|
|
|
|
2018-03-01 09:26:17 +01:00
|
|
|
DxbcCompilerHsForkJoinPhase emitNewHullShaderForkJoinPhase();
|
|
|
|
|
2018-03-12 12:25:10 +01:00
|
|
|
uint32_t emitSamplePosArray();
|
|
|
|
|
2017-12-18 00:46:44 +01:00
|
|
|
///////////////////////////////
|
|
|
|
// Variable definition methods
|
|
|
|
uint32_t emitNewVariable(
|
|
|
|
const DxbcRegisterInfo& info);
|
2017-12-08 17:08:26 +01:00
|
|
|
|
2017-12-21 12:37:20 +01:00
|
|
|
uint32_t emitNewBuiltinVariable(
|
|
|
|
const DxbcRegisterInfo& info,
|
|
|
|
spv::BuiltIn builtIn,
|
|
|
|
const char* name);
|
|
|
|
|
2018-03-05 14:07:15 +01:00
|
|
|
uint32_t emitBuiltinTessLevelOuter(
|
|
|
|
spv::StorageClass storageClass);
|
|
|
|
|
|
|
|
uint32_t emitBuiltinTessLevelInner(
|
|
|
|
spv::StorageClass storageClass);
|
|
|
|
|
2017-12-28 16:03:17 +01:00
|
|
|
////////////////
|
|
|
|
// Misc methods
|
2017-12-30 17:22:36 +01:00
|
|
|
DxbcCfgBlock* cfgFindBlock(
|
|
|
|
const std::initializer_list<DxbcCfgBlockType>& types);
|
2017-12-18 11:53:28 +01:00
|
|
|
|
2017-12-28 16:03:17 +01:00
|
|
|
DxbcBufferInfo getBufferInfo(
|
|
|
|
const DxbcRegister& reg);
|
|
|
|
|
2018-01-02 16:57:37 +01:00
|
|
|
uint32_t getTexLayerDim(
|
|
|
|
const DxbcImageInfo& imageType) const;
|
|
|
|
|
|
|
|
uint32_t getTexCoordDim(
|
|
|
|
const DxbcImageInfo& imageType) const;
|
|
|
|
|
2018-01-01 17:14:06 +01:00
|
|
|
DxbcRegMask getTexCoordMask(
|
|
|
|
const DxbcImageInfo& imageType) const;
|
|
|
|
|
2018-01-01 23:31:01 +01:00
|
|
|
DxbcVectorType getInputRegType(
|
|
|
|
uint32_t regIdx) const;
|
|
|
|
|
2018-01-09 20:35:29 +01:00
|
|
|
VkImageViewType getViewType(
|
2018-01-08 13:39:37 +01:00
|
|
|
DxbcResourceDim dim) const;
|
|
|
|
|
2018-03-21 12:11:18 +01:00
|
|
|
spv::ImageFormat getScalarImageFormat(
|
|
|
|
DxbcScalarType type) const;
|
|
|
|
|
2017-12-13 15:32:54 +01:00
|
|
|
///////////////////////////
|
|
|
|
// Type definition methods
|
2017-12-18 00:46:44 +01:00
|
|
|
uint32_t getScalarTypeId(
|
|
|
|
DxbcScalarType type);
|
2017-11-16 01:30:17 +01:00
|
|
|
|
2017-12-18 00:46:44 +01:00
|
|
|
uint32_t getVectorTypeId(
|
|
|
|
const DxbcVectorType& type);
|
2017-11-16 01:30:17 +01:00
|
|
|
|
2017-12-18 16:41:05 +01:00
|
|
|
uint32_t getArrayTypeId(
|
|
|
|
const DxbcArrayType& type);
|
|
|
|
|
2017-12-18 00:46:44 +01:00
|
|
|
uint32_t getPointerTypeId(
|
|
|
|
const DxbcRegisterInfo& type);
|
2017-11-16 01:30:17 +01:00
|
|
|
|
2017-12-18 00:46:44 +01:00
|
|
|
uint32_t getPerVertexBlockId();
|
2017-10-16 19:53:17 +02:00
|
|
|
|
2018-03-01 12:08:06 +01:00
|
|
|
DxbcCompilerHsForkJoinPhase* getCurrentHsForkJoinPhase();
|
2018-02-01 18:07:24 +01:00
|
|
|
|
2017-10-16 17:50:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|