/** ****************************************************************************** * Xenia : Xbox 360 Emulator Research Project * ****************************************************************************** * Copyright 2021 Ben Vanik. All rights reserved. * * Released under the BSD license - see LICENSE in the root for more details. * ****************************************************************************** */ #ifndef XENIA_GPU_DXBC_H_ #define XENIA_GPU_DXBC_H_ #include #include #include #include "xenia/base/assert.h" #include "xenia/base/math.h" namespace xe { namespace gpu { namespace dxbc { // Utilities for generating shader model 5_1 byte code (for Direct3D 12). // // IMPORTANT CONTRIBUTION NOTES: // // While DXBC may look like a flexible and high-level representation with highly // generalized building blocks, actually it has a lot of restrictions on operand // usage! // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! // !!!DO NOT ADD ANYTHING FXC THAT WOULD NOT PRODUCE!!! // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! // Before adding any sequence that you haven't seen in Xenia, try writing // equivalent code in HLSL and running it through FXC, try with /Od, try with // full optimization, but if you see that FXC follows a different pattern than // what you are expecting, do what FXC does!!! // Most important limitations: // - Absolute, negate and saturate are only supported by instructions that // explicitly support them. See MSDN pages of the specific instructions you // want to use with modifiers: // https://docs.microsoft.com/en-us/windows/win32/direct3dhlsl/dx9-graphics-reference-asm // - Component selection in the general case (ALU instructions - things like // resource access and flow control mostly explicitly need a specific // component selection mode defined in the specification of the instruction): // - 0-component - for operand types with no data (samplers, labels). // - 1-component - for scalar destination operand types, and for scalar source // operand types when the destination vector has 1 component masked // (including scalar immediates). // - Mask - for vector destination operand types. // - Swizzle - for both vector and scalar (replicated in this case) source // operand types, when the destination vector has 2 or more components // masked. Immediates in this case have XYZW swizzle. // - Select 1 - for vector source operand types, when the destination has 1 // component masked or is of a scalar type. // - Input operands (v#) can be used only as sources, output operands (o#) can // be used only as destinations. // - Indexable temporaries (x#) can only be used as a destination or a source // operand (but not both at once) of a mov instruction - a load/store pattern // here. Also, movs involving x# are counted as ArrayInstructions rather than // MovInstructions in STAT. The other operand can be anything that most other // instructions accept, but it still must be a mov with x# on one side. // !NOTE!: The D3D11.3 Functional Specification on Microsoft's GitHub profile, // as of March 27th, 2020, is NOT a reliable reference, even though it contains // many DXBC details! There are multiple places where it clearly contradicts // what FXC does, even when targeting old shader models like 4_0: // - The limit of 1 immediate or constant buffer source operand per instruction // is totally ignored by FXC - in simple tests, it can emit an instruction // with two constant buffer sources, or one constant buffer source and one // immediate, or a multiply-add with two immediate operands. // - It says x# can be used wherever r# can be used - in synthetic tests, FXC // always accesses x# in a load/store way via mov. // - It says x# can be used for indexing, including nested indexing of x# (one // level deep), however, FXC moves the inner index operand to r# first in this // case. // // For bytecode structure, see d3d12TokenizedProgramFormat.hpp from the Windows // Driver Kit, and DXILConv from DirectX Shader Compiler. // // Avoid using uninitialized register components - such as registers written to // in "if" and not in "else", but then used outside unconditionally or with a // different condition (or even with the same condition, but in a different "if" // block). This will cause crashes on AMD drivers, and will also limit // optimization possibilities as this may result in false dependencies. Always // mov l(0, 0, 0, 0) to such components before potential branching - // PushSystemTemp accepts a zero mask for this purpose. // // Clamping of non-negative values must be done first to the lower bound (using // max), then to the upper bound (using min), to match the saturate modifier // behavior, which results in 0 for NaN. constexpr uint8_t kAlignmentPadding = 0xAB; // D3D_SHADER_VARIABLE_CLASS enum class RdefVariableClass : uint32_t { kScalar, kVector, kMatrixRows, kMatrixColumns, kObject, kStruct, kInterfaceClass, kInterfacePointer, }; // D3D_SHADER_VARIABLE_TYPE subset enum class RdefVariableType : uint32_t { kInt = 2, kFloat = 3, kUInt = 19, }; // D3D_SHADER_VARIABLE_FLAGS enum RdefVariableFlags : uint32_t { kRdefVariableFlagUserPacked = 1 << 0, kRdefVariableFlagUsed = 1 << 1, kRdefVariableFlagInterfacePointer = 1 << 2, kRdefVariableFlagInterfaceParameter = 1 << 3, }; // D3D_CBUFFER_TYPE enum class RdefCbufferType : uint32_t { kCbuffer, kTbuffer, kInterfacePointers, kResourceBindInfo, }; // D3D_SHADER_INPUT_TYPE enum class RdefInputType : uint32_t { kCbuffer, kTbuffer, kTexture, kSampler, kUAVRWTyped, kStructured, kUAVRWStructured, kByteAddress, kUAVRWByteAddress, kUAVAppendStructured, kUAVConsumeStructured, kUAVRWStructuredWithCounter, }; // D3D_RESOURCE_RETURN_TYPE enum class RdefReturnType : uint32_t { kVoid, kUNorm, kSNorm, kSInt, kUInt, kFloat, kMixed, kDouble, kContinued, }; // D3D12_SRV_DIMENSION/D3D12_UAV_DIMENSION enum class RdefDimension : uint32_t { kUnknown = 0, kSRVBuffer = 1, kSRVTexture1D, kSRVTexture1DArray, kSRVTexture2D, kSRVTexture2DArray, kSRVTexture2DMS, kSRVTexture2DMSArray, kSRVTexture3D, kSRVTextureCube, kSRVTextureCubeArray, kUAVBuffer = 1, kUAVTexture1D, kUAVTexture1DArray, kUAVTexture2D, kUAVTexture2DArray, kUAVTexture3D, }; // D3D_SHADER_INPUT_FLAGS enum RdefInputFlags : uint32_t { // For constant buffers, UserPacked is set if it was declared as `cbuffer` // rather than `ConstantBuffer` (not dynamically indexable; though // non-uniform dynamic indexing of constant buffers also didn't work on AMD // drivers in 2018). kRdefInputFlagUserPacked = 1 << 0, kRdefInputFlagComparisonSampler = 1 << 1, kRdefInputFlagComponent0 = 1 << 2, kRdefInputFlagComponent1 = 1 << 3, kRdefInputFlagsComponents = kRdefInputFlagComponent0 | kRdefInputFlagComponent1, kRdefInputFlagUnused = 1 << 4, }; // D3D_NAME subset enum class Name : uint32_t { kUndefined = 0, kPosition = 1, kClipDistance = 2, kCullDistance = 3, kVertexID = 6, kIsFrontFace = 9, kFinalQuadEdgeTessFactor = 11, kFinalQuadInsideTessFactor = 12, kFinalTriEdgeTessFactor = 13, kFinalTriInsideTessFactor = 14, }; // D3D_REGISTER_COMPONENT_TYPE enum class SignatureRegisterComponentType : uint32_t { kUnknown, kUInt32, kSInt32, kFloat32, }; // D3D10_INTERNALSHADER_PARAMETER struct SignatureParameter { // Offset in bytes from the start of the chunk. uint32_t semantic_name; uint32_t semantic_index; // kUndefined for pixel shader outputs - inferred from the component type and // what is used in the shader. Name system_value; SignatureRegisterComponentType component_type; // o#/v# when there's linkage, SV_Target index or -1 in pixel shader output. uint32_t register_index; uint8_t mask; union { // For an output signature. uint8_t never_writes_mask; // For an input signature. uint8_t always_reads_mask; }; }; static_assert(alignof(SignatureParameter) <= sizeof(uint32_t)); // D3D10_INTERNALSHADER_SIGNATURE struct Signature { uint32_t parameter_count; // Offset in bytes from the start of the chunk. uint32_t parameter_info_offset; }; static_assert(alignof(Signature) <= sizeof(uint32_t)); // D3D11_SB_TESSELLATOR_DOMAIN enum class TessellatorDomain : uint32_t { kUndefined, kIsoline, kTriangle, kQuad, }; // The STAT chunk (based on Wine d3dcompiler_parse_stat). struct Statistics { uint32_t instruction_count; uint32_t temp_register_count; // Unknown in Wine. uint32_t def_count; // Only inputs and outputs. uint32_t dcl_count; uint32_t float_instruction_count; uint32_t int_instruction_count; uint32_t uint_instruction_count; // endif, ret. uint32_t static_flow_control_count; // if (but not else). uint32_t dynamic_flow_control_count; // Unknown in Wine. uint32_t macro_instruction_count; uint32_t temp_array_count; uint32_t array_instruction_count; uint32_t cut_instruction_count; uint32_t emit_instruction_count; uint32_t texture_normal_instructions; uint32_t texture_load_instructions; uint32_t texture_comp_instructions; uint32_t texture_bias_instructions; uint32_t texture_gradient_instructions; // Not including indexable temp load/store. uint32_t mov_instruction_count; // Unknown in Wine. uint32_t movc_instruction_count; uint32_t conversion_instruction_count; // Unknown in Wine. uint32_t unknown_22; uint32_t input_primitive; uint32_t gs_output_topology; uint32_t gs_max_output_vertex_count; uint32_t unknown_26; // Unknown in Wine, but confirmed by testing. uint32_t lod_instructions; uint32_t unknown_28; uint32_t unknown_29; uint32_t c_control_points; uint32_t hs_output_primitive; uint32_t hs_partitioning; TessellatorDomain tessellator_domain; // Unknown in Wine. uint32_t c_barrier_instructions; // Unknown in Wine. uint32_t c_interlocked_instructions; // Unknown in Wine, but confirmed by testing. uint32_t c_texture_store_instructions; }; // D3D10_SB_OPERAND_TYPE subset enum class OperandType : uint32_t { kTemp = 0, kInput = 1, kOutput = 2, // Only usable as destination or source (but not both) in mov (and it // becomes an array instruction this way). kIndexableTemp = 3, kImmediate32 = 4, kSampler = 6, kResource = 7, kConstantBuffer = 8, kLabel = 10, kInputPrimitiveID = 11, kOutputDepth = 12, kNull = 13, kInputControlPoint = 25, kInputDomainPoint = 28, kUnorderedAccessView = 30, kInputCoverageMask = 35, kOutputDepthLessEqual = 39, }; // D3D10_SB_OPERAND_INDEX_DIMENSION constexpr uint32_t GetOperandIndexDimension(OperandType type) { switch (type) { case OperandType::kTemp: case OperandType::kInput: case OperandType::kOutput: case OperandType::kLabel: return 1; case OperandType::kIndexableTemp: case OperandType::kSampler: case OperandType::kResource: case OperandType::kInputControlPoint: case OperandType::kUnorderedAccessView: return 2; case OperandType::kConstantBuffer: return 3; default: return 0; } } // D3D10_SB_OPERAND_NUM_COMPONENTS enum class OperandDimension : uint32_t { kNoData, // D3D10_SB_OPERAND_0_COMPONENT kScalar, // D3D10_SB_OPERAND_1_COMPONENT kVector, // D3D10_SB_OPERAND_4_COMPONENT }; constexpr OperandDimension GetOperandDimension(OperandType type, bool dest_in_dcl = false) { switch (type) { case OperandType::kSampler: case OperandType::kLabel: case OperandType::kNull: return OperandDimension::kNoData; case OperandType::kInputPrimitiveID: case OperandType::kOutputDepth: case OperandType::kOutputDepthLessEqual: return OperandDimension::kScalar; case OperandType::kInputCoverageMask: return dest_in_dcl ? OperandDimension::kScalar : OperandDimension::kVector; default: return OperandDimension::kVector; } } // D3D10_SB_OPERAND_4_COMPONENT_SELECTION_MODE enum class ComponentSelection { kMask, kSwizzle, kSelect1, }; struct Index { // D3D10_SB_OPERAND_INDEX_REPRESENTATION enum class Representation : uint32_t { kImmediate32, kImmediate64, kRelative, kImmediate32PlusRelative, kImmediate64PlusRelative, }; uint32_t index_; // UINT32_MAX if absolute. Lower 2 bits are the component index, upper bits // are the temp register index. Applicable to indexable temps, inputs, // outputs except for pixel shaders, constant buffers and bindings. uint32_t relative_to_temp_; // Implicit constructor. Index(uint32_t index = 0) : index_(index), relative_to_temp_(UINT32_MAX) {} Index(uint32_t temp, uint32_t temp_component, uint32_t offset = 0) : index_(offset), relative_to_temp_((temp << 2) | temp_component) {} Representation GetRepresentation() const { if (relative_to_temp_ != UINT32_MAX) { return index_ != 0 ? Representation::kImmediate32PlusRelative : Representation::kRelative; } return Representation::kImmediate32; } uint32_t GetLength() const { return relative_to_temp_ != UINT32_MAX ? (index_ != 0 ? 3 : 2) : 1; } void Write(std::vector& code) const { if (relative_to_temp_ == UINT32_MAX || index_ != 0) { code.push_back(index_); } if (relative_to_temp_ != UINT32_MAX) { // Encode selecting one component from absolute-indexed r#. code.push_back(uint32_t(OperandDimension::kVector) | (uint32_t(ComponentSelection::kSelect1) << 2) | ((relative_to_temp_ & 3) << 4) | (uint32_t(OperandType::kTemp) << 12) | (1 << 20) | (uint32_t(Representation::kImmediate32) << 22)); code.push_back(relative_to_temp_ >> 2); } } }; struct OperandAddress { OperandType type_; Index index_1d_, index_2d_, index_3d_; explicit OperandAddress(OperandType type, Index index_1d = Index(), Index index_2d = Index(), Index index_3d = Index()) : type_(type), index_1d_(index_1d), index_2d_(index_2d), index_3d_(index_3d) {} OperandDimension GetDimension(bool dest_in_dcl = false) const { return GetOperandDimension(type_, dest_in_dcl); } uint32_t GetIndexDimension() const { return GetOperandIndexDimension(type_); } uint32_t GetOperandTokenTypeAndIndex() const { uint32_t index_dimension = GetIndexDimension(); uint32_t operand_token = (uint32_t(type_) << 12) | (index_dimension << 20); if (index_dimension > 0) { operand_token |= uint32_t(index_1d_.GetRepresentation()) << 22; if (index_dimension > 1) { operand_token |= uint32_t(index_2d_.GetRepresentation()) << 25; if (index_dimension > 2) { operand_token |= uint32_t(index_3d_.GetRepresentation()) << 28; } } } return operand_token; } uint32_t GetLength() const { uint32_t length = 0; uint32_t index_dimension = GetIndexDimension(); if (index_dimension > 0) { length += index_1d_.GetLength(); if (index_dimension > 1) { length += index_2d_.GetLength(); if (index_dimension > 2) { length += index_3d_.GetLength(); } } } return length; } void Write(std::vector& code) const { uint32_t index_dimension = GetIndexDimension(); if (index_dimension > 0) { index_1d_.Write(code); if (index_dimension > 1) { index_2d_.Write(code); if (index_dimension > 2) { index_3d_.Write(code); } } } } }; // D3D10_SB_EXTENDED_OPERAND_TYPE enum class ExtendedOperandType : uint32_t { kEmpty, kModifier, }; // D3D10_SB_OPERAND_MODIFIER enum class OperandModifier : uint32_t { kNone, kNegate, kAbsolute, kAbsoluteNegate, }; struct Dest : OperandAddress { // Ignored for 0-component and 1-component operand types. uint32_t write_mask_; explicit Dest(OperandType type, uint32_t write_mask = 0b1111, Index index_1d = Index(), Index index_2d = Index(), Index index_3d = Index()) : OperandAddress(type, index_1d, index_2d, index_3d), write_mask_(write_mask) {} static Dest R(uint32_t index, uint32_t write_mask = 0b1111) { return Dest(OperandType::kTemp, write_mask, index); } static Dest O(Index index, uint32_t write_mask = 0b1111) { return Dest(OperandType::kOutput, write_mask, index); } static Dest X(uint32_t index_1d, Index index_2d, uint32_t write_mask = 0b1111) { return Dest(OperandType::kIndexableTemp, write_mask, index_1d, index_2d); } static Dest ODepth() { return Dest(OperandType::kOutputDepth, 0b0001); } static Dest Null() { return Dest(OperandType::kNull, 0b0000); } static Dest U(uint32_t index_1d, Index index_2d, uint32_t write_mask = 0b1111) { return Dest(OperandType::kUnorderedAccessView, write_mask, index_1d, index_2d); } static Dest ODepthLE() { return Dest(OperandType::kOutputDepthLessEqual, 0b0001); } uint32_t GetMask() const { switch (GetDimension()) { case OperandDimension::kNoData: return 0b0000; case OperandDimension::kScalar: return 0b0001; case OperandDimension::kVector: return write_mask_; default: assert_unhandled_case(GetDimension()); return 0b0000; } } [[nodiscard]] Dest Mask(uint32_t write_mask) const { return Dest(type_, write_mask, index_1d_, index_2d_, index_3d_); } [[nodiscard]] Dest MaskMasked(uint32_t write_mask) const { return Dest(type_, write_mask_ & write_mask, index_1d_, index_2d_, index_3d_); } static uint32_t GetMaskSingleComponent(uint32_t write_mask) { uint32_t component; if (xe::bit_scan_forward(write_mask, &component)) { if ((write_mask >> component) == 1) { return component; } } return UINT32_MAX; } uint32_t GetMaskSingleComponent() const { return GetMaskSingleComponent(GetMask()); } uint32_t GetLength() const { return 1 + OperandAddress::GetLength(); } void Write(std::vector& code, bool in_dcl = false) const { uint32_t operand_token = GetOperandTokenTypeAndIndex(); OperandDimension dimension = GetDimension(in_dcl); operand_token |= uint32_t(dimension); if (dimension == OperandDimension::kVector) { assert_true(write_mask_ > 0b0000 && write_mask_ <= 0b1111); operand_token |= (uint32_t(ComponentSelection::kMask) << 2) | (write_mask_ << 4); } code.push_back(operand_token); OperandAddress::Write(code); } }; struct Src : OperandAddress { enum : uint32_t { kXYZW = 0b11100100, kXXXX = 0b00000000, kYYYY = 0b01010101, kZZZZ = 0b10101010, kWWWW = 0b11111111, }; // Ignored for 0-component and 1-component operand types. uint32_t swizzle_; bool absolute_; bool negate_; // Only valid for OperandType::kImmediate32. uint32_t immediate_[4]; explicit Src(OperandType type, uint32_t swizzle = kXYZW, Index index_1d = Index(), Index index_2d = Index(), Index index_3d = Index()) : OperandAddress(type, index_1d, index_2d, index_3d), swizzle_(swizzle), absolute_(false), negate_(false) {} static Src R(uint32_t index, uint32_t swizzle = kXYZW) { return Src(OperandType::kTemp, swizzle, index); } static Src V(Index index, uint32_t swizzle = kXYZW) { return Src(OperandType::kInput, swizzle, index); } static Src X(uint32_t index_1d, Index index_2d, uint32_t swizzle = kXYZW) { return Src(OperandType::kIndexableTemp, swizzle, index_1d, index_2d); } static Src LU(uint32_t x, uint32_t y, uint32_t z, uint32_t w) { Src src(OperandType::kImmediate32, kXYZW); src.immediate_[0] = x; src.immediate_[1] = y; src.immediate_[2] = z; src.immediate_[3] = w; return src; } static Src LU(uint32_t x) { return LU(x, x, x, x); } static Src LI(int32_t x, int32_t y, int32_t z, int32_t w) { return LU(uint32_t(x), uint32_t(y), uint32_t(z), uint32_t(w)); } static Src LI(int32_t x) { return LI(x, x, x, x); } static Src LF(float x, float y, float z, float w) { return LU(*reinterpret_cast(&x), *reinterpret_cast(&y), *reinterpret_cast(&z), *reinterpret_cast(&w)); } static Src LF(float x) { return LF(x, x, x, x); } static Src LP(const uint32_t* xyzw) { return LU(xyzw[0], xyzw[1], xyzw[2], xyzw[3]); } static Src LP(const int32_t* xyzw) { return LI(xyzw[0], xyzw[1], xyzw[2], xyzw[3]); } static Src LP(const float* xyzw) { return LF(xyzw[0], xyzw[1], xyzw[2], xyzw[3]); } static Src S(uint32_t index_1d, Index index_2d) { return Src(OperandType::kSampler, kXXXX, index_1d, index_2d); } static Src T(uint32_t index_1d, Index index_2d, uint32_t swizzle = kXYZW) { return Src(OperandType::kResource, swizzle, index_1d, index_2d); } static Src CB(uint32_t index_1d, Index index_2d, Index index_3d, uint32_t swizzle = kXYZW) { return Src(OperandType::kConstantBuffer, swizzle, index_1d, index_2d, index_3d); } static Src Label(uint32_t index) { return Src(OperandType::kLabel, kXXXX, index); } static Src VPrim() { return Src(OperandType::kInputPrimitiveID, kXXXX); } static Src VICP(Index index_1d, Index index_2d, uint32_t swizzle = kXYZW) { return Src(OperandType::kInputControlPoint, swizzle, index_1d, index_2d); } static Src VDomain(uint32_t swizzle = kXYZW) { return Src(OperandType::kInputDomainPoint, swizzle); } static Src U(uint32_t index_1d, Index index_2d, uint32_t swizzle = kXYZW) { return Src(OperandType::kUnorderedAccessView, swizzle, index_1d, index_2d); } static Src VCoverage() { return Src(OperandType::kInputCoverageMask, kXXXX); } [[nodiscard]] Src WithModifiers(bool absolute, bool negate) const { Src new_src(*this); new_src.absolute_ = absolute; new_src.negate_ = negate; return new_src; } [[nodiscard]] Src WithAbs(bool absolute) const { return WithModifiers(absolute, negate_); } [[nodiscard]] Src WithNeg(bool negate) const { return WithModifiers(absolute_, negate); } [[nodiscard]] Src Abs() const { return WithModifiers(true, false); } [[nodiscard]] Src operator-() const { return WithModifiers(absolute_, !negate_); } [[nodiscard]] Src Swizzle(uint32_t swizzle) const { Src new_src(*this); new_src.swizzle_ = swizzle; return new_src; } [[nodiscard]] Src SwizzleSwizzled(uint32_t swizzle) const { Src new_src(*this); new_src.swizzle_ = 0; for (uint32_t i = 0; i < 4; ++i) { new_src.swizzle_ |= ((swizzle_ >> (((swizzle >> (i * 2)) & 3) * 2)) & 3) << (i * 2); } return new_src; } [[nodiscard]] Src Select(uint32_t component) const { Src new_src(*this); new_src.swizzle_ = component * 0b01010101; return new_src; } [[nodiscard]] Src SelectFromSwizzled(uint32_t component) const { Src new_src(*this); new_src.swizzle_ = ((swizzle_ >> (component * 2)) & 3) * 0b01010101; return new_src; } uint32_t GetLength(uint32_t mask, bool force_vector = false) const { bool is_vector = force_vector || (mask != 0b0000 && Dest::GetMaskSingleComponent(mask) == UINT32_MAX); if (type_ == OperandType::kImmediate32) { return is_vector ? 5 : 2; } return ((absolute_ || negate_) ? 2 : 1) + OperandAddress::GetLength(); } static constexpr uint32_t GetModifiedImmediate(uint32_t value, bool is_integer, bool absolute, bool negate) { if (is_integer) { if (absolute) { *reinterpret_cast(&value) = std::abs(*reinterpret_cast(&value)); } if (negate) { *reinterpret_cast(&value) = -*reinterpret_cast(&value); } } else { if (absolute) { value &= uint32_t(INT32_MAX); } if (negate) { value ^= uint32_t(INT32_MAX) + 1; } } return value; } uint32_t GetModifiedImmediate(uint32_t swizzle_index, bool is_integer) const { return GetModifiedImmediate( immediate_[(swizzle_ >> (swizzle_index * 2)) & 3], is_integer, absolute_, negate_); } void Write(std::vector& code, bool is_integer, uint32_t mask, bool force_vector = false) const { uint32_t operand_token = GetOperandTokenTypeAndIndex(); uint32_t mask_single_component = Dest::GetMaskSingleComponent(mask); uint32_t select_component = mask_single_component != UINT32_MAX ? mask_single_component : 0; bool is_vector = force_vector || (mask != 0b0000 && mask_single_component == UINT32_MAX); if (type_ == OperandType::kImmediate32) { if (is_vector) { operand_token |= uint32_t(OperandDimension::kVector) | (uint32_t(ComponentSelection::kSwizzle) << 2) | (Src::kXYZW << 4); } else { operand_token |= uint32_t(OperandDimension::kScalar); } code.push_back(operand_token); if (is_vector) { for (uint32_t i = 0; i < 4; ++i) { code.push_back((mask & (1 << i)) ? GetModifiedImmediate(i, is_integer) : 0); } } else { code.push_back(GetModifiedImmediate(select_component, is_integer)); } } else { switch (GetDimension()) { case OperandDimension::kScalar: if (is_vector) { operand_token |= uint32_t(OperandDimension::kVector) | (uint32_t(ComponentSelection::kSwizzle) << 2) | (Src::kXXXX << 4); } else { operand_token |= uint32_t(OperandDimension::kScalar); } break; case OperandDimension::kVector: operand_token |= uint32_t(OperandDimension::kVector); if (is_vector) { operand_token |= uint32_t(ComponentSelection::kSwizzle) << 2; // Clear swizzle of unused components to a used value to avoid // referencing potentially uninitialized register components. uint32_t used_component; if (!xe::bit_scan_forward(mask, &used_component)) { used_component = 0; } for (uint32_t i = 0; i < 4; ++i) { uint32_t swizzle_index = (mask & (1 << i)) ? i : used_component; operand_token |= (((swizzle_ >> (swizzle_index * 2)) & 3) << (4 + i * 2)); } } else { operand_token |= (uint32_t(ComponentSelection::kSelect1) << 2) | (((swizzle_ >> (select_component * 2)) & 3) << 4); } break; default: break; } OperandModifier modifier = OperandModifier::kNone; if (absolute_ && negate_) { modifier = OperandModifier::kAbsoluteNegate; } else if (absolute_) { modifier = OperandModifier::kAbsolute; } else if (negate_) { modifier = OperandModifier::kNegate; } if (modifier != OperandModifier::kNone) { operand_token |= uint32_t(1) << 31; } code.push_back(operand_token); if (modifier != OperandModifier::kNone) { code.push_back(uint32_t(ExtendedOperandType::kModifier) | (uint32_t(modifier) << 6)); } OperandAddress::Write(code); } } }; // D3D10_SB_OPCODE_TYPE subset enum class Opcode : uint32_t { kAdd = 0, kAnd = 1, kBreak = 2, kCall = 4, kCallC = 5, kCase = 6, kContinue = 7, kDefault = 10, kDiscard = 13, kDiv = 14, kDP2 = 15, kDP3 = 16, kDP4 = 17, kElse = 18, kEndIf = 21, kEndLoop = 22, kEndSwitch = 23, kEq = 24, kExp = 25, kFrc = 26, kFToI = 27, kFToU = 28, kGE = 29, kIAdd = 30, kIf = 31, kIEq = 32, kIGE = 33, kILT = 34, kIMAd = 35, kIMax = 36, kIMin = 37, kIMul = 38, kINE = 39, kIShL = 41, kIToF = 43, kLabel = 44, kLog = 47, kLoop = 48, kLT = 49, kMAd = 50, kMin = 51, kMax = 52, kMov = 54, kMovC = 55, kMul = 56, kNE = 57, kNot = 59, kOr = 60, kRet = 62, kRetC = 63, kRoundNE = 64, kRoundNI = 65, kRoundZ = 67, kRSq = 68, kSampleL = 72, kSampleD = 73, kSqRt = 75, kSwitch = 76, kSinCos = 77, kULT = 79, kUGE = 80, kUMul = 81, kUMAd = 82, kUMax = 83, kUMin = 84, kUShR = 85, kUToF = 86, kXOr = 87, kLOD = 108, kDerivRTXCoarse = 122, kDerivRTXFine = 123, kDerivRTYCoarse = 124, kDerivRTYFine = 125, kRcp = 129, kF32ToF16 = 130, kF16ToF32 = 131, kFirstBitHi = 135, kUBFE = 138, kIBFE = 139, kBFI = 140, kBFRev = 141, kLdUAVTyped = 163, kStoreUAVTyped = 164, kLdRaw = 165, kStoreRaw = 166, kEvalSampleIndex = 204, kEvalCentroid = 205, }; // D3D10_SB_EXTENDED_OPCODE_TYPE enum class ExtendedOpcodeType : uint32_t { kEmpty, kSampleControls, kResourceDim, kResourceReturnType, }; constexpr uint32_t OpcodeToken(Opcode opcode, uint32_t operands_length, bool saturate = false, uint32_t extended_opcode_count = 0) { return uint32_t(opcode) | (saturate ? (uint32_t(1) << 13) : 0) | ((uint32_t(1) + extended_opcode_count + operands_length) << 24) | (extended_opcode_count ? (uint32_t(1) << 31) : 0); } constexpr uint32_t SampleControlsExtendedOpcodeToken(int32_t aoffimmi_u, int32_t aoffimmi_v, int32_t aoffimmi_w, bool extended = false) { return uint32_t(ExtendedOpcodeType::kSampleControls) | ((uint32_t(aoffimmi_u) & uint32_t(0b1111)) << 9) | ((uint32_t(aoffimmi_v) & uint32_t(0b1111)) << 13) | ((uint32_t(aoffimmi_w) & uint32_t(0b1111)) << 17) | (extended ? (uint32_t(1) << 31) : 0); } // Assembler appending to the shader program code vector. class Assembler { public: Assembler(std::vector& code, Statistics& stat) : code_(code), stat_(stat) {} void OpAdd(const Dest& dest, const Src& src0, const Src& src1, bool saturate = false) { EmitAluOp(Opcode::kAdd, 0b00, dest, src0, src1, saturate); ++stat_.float_instruction_count; } void OpAnd(const Dest& dest, const Src& src0, const Src& src1) { EmitAluOp(Opcode::kAnd, 0b11, dest, src0, src1); ++stat_.uint_instruction_count; } void OpBreak() { code_.push_back(OpcodeToken(Opcode::kBreak, 0)); ++stat_.instruction_count; } void OpCall(const Src& label) { EmitFlowOp(Opcode::kCall, label); ++stat_.static_flow_control_count; } void OpCallC(bool test, const Src& src, const Src& label) { EmitFlowOp(Opcode::kCallC, src, label, test); ++stat_.dynamic_flow_control_count; } void OpCase(const Src& src) { EmitFlowOp(Opcode::kCase, src); ++stat_.static_flow_control_count; } void OpContinue() { code_.push_back(OpcodeToken(Opcode::kContinue, 0)); ++stat_.instruction_count; } void OpDefault() { code_.push_back(OpcodeToken(Opcode::kDefault, 0)); ++stat_.instruction_count; ++stat_.static_flow_control_count; } void OpDiscard(bool test, const Src& src) { EmitFlowOp(Opcode::kDiscard, src, test); } void OpDiv(const Dest& dest, const Src& src0, const Src& src1, bool saturate = false) { EmitAluOp(Opcode::kDiv, 0b00, dest, src0, src1, saturate); ++stat_.float_instruction_count; } void OpDP2(const Dest& dest, const Src& src0, const Src& src1, bool saturate = false) { uint32_t operands_length = dest.GetLength() + src0.GetLength(0b0011) + src1.GetLength(0b0011); code_.reserve(code_.size() + 1 + operands_length); code_.push_back(OpcodeToken(Opcode::kDP2, operands_length, saturate)); dest.Write(code_); src0.Write(code_, false, 0b0011); src1.Write(code_, false, 0b0011); ++stat_.instruction_count; ++stat_.float_instruction_count; } void OpDP3(const Dest& dest, const Src& src0, const Src& src1, bool saturate = false) { uint32_t operands_length = dest.GetLength() + src0.GetLength(0b0111) + src1.GetLength(0b0111); code_.reserve(code_.size() + 1 + operands_length); code_.push_back(OpcodeToken(Opcode::kDP3, operands_length, saturate)); dest.Write(code_); src0.Write(code_, false, 0b0111); src1.Write(code_, false, 0b0111); ++stat_.instruction_count; ++stat_.float_instruction_count; } void OpDP4(const Dest& dest, const Src& src0, const Src& src1, bool saturate = false) { uint32_t operands_length = dest.GetLength() + src0.GetLength(0b1111) + src1.GetLength(0b1111); code_.reserve(code_.size() + 1 + operands_length); code_.push_back(OpcodeToken(Opcode::kDP4, operands_length, saturate)); dest.Write(code_); src0.Write(code_, false, 0b1111); src1.Write(code_, false, 0b1111); ++stat_.instruction_count; ++stat_.float_instruction_count; } void OpElse() { code_.push_back(OpcodeToken(Opcode::kElse, 0)); ++stat_.instruction_count; } void OpEndIf() { code_.push_back(OpcodeToken(Opcode::kEndIf, 0)); ++stat_.instruction_count; } void OpEndLoop() { code_.push_back(OpcodeToken(Opcode::kEndLoop, 0)); ++stat_.instruction_count; } void OpEndSwitch() { code_.push_back(OpcodeToken(Opcode::kEndSwitch, 0)); ++stat_.instruction_count; } void OpEq(const Dest& dest, const Src& src0, const Src& src1) { EmitAluOp(Opcode::kEq, 0b00, dest, src0, src1); ++stat_.float_instruction_count; } void OpExp(const Dest& dest, const Src& src, bool saturate = false) { EmitAluOp(Opcode::kExp, 0b0, dest, src, saturate); ++stat_.float_instruction_count; } void OpFrc(const Dest& dest, const Src& src, bool saturate = false) { EmitAluOp(Opcode::kFrc, 0b0, dest, src, saturate); ++stat_.float_instruction_count; } void OpFToI(const Dest& dest, const Src& src) { EmitAluOp(Opcode::kFToI, 0b0, dest, src); ++stat_.conversion_instruction_count; } void OpFToU(const Dest& dest, const Src& src) { EmitAluOp(Opcode::kFToU, 0b0, dest, src); ++stat_.conversion_instruction_count; } void OpGE(const Dest& dest, const Src& src0, const Src& src1) { EmitAluOp(Opcode::kGE, 0b00, dest, src0, src1); ++stat_.float_instruction_count; } void OpIAdd(const Dest& dest, const Src& src0, const Src& src1) { EmitAluOp(Opcode::kIAdd, 0b11, dest, src0, src1); ++stat_.int_instruction_count; } void OpIf(bool test, const Src& src) { EmitFlowOp(Opcode::kIf, src, test); ++stat_.dynamic_flow_control_count; } void OpIEq(const Dest& dest, const Src& src0, const Src& src1) { EmitAluOp(Opcode::kIEq, 0b11, dest, src0, src1); ++stat_.int_instruction_count; } void OpIGE(const Dest& dest, const Src& src0, const Src& src1) { EmitAluOp(Opcode::kIGE, 0b11, dest, src0, src1); ++stat_.int_instruction_count; } void OpILT(const Dest& dest, const Src& src0, const Src& src1) { EmitAluOp(Opcode::kILT, 0b11, dest, src0, src1); ++stat_.int_instruction_count; } void OpIMAd(const Dest& dest, const Src& mul0, const Src& mul1, const Src& add) { EmitAluOp(Opcode::kIMAd, 0b111, dest, mul0, mul1, add); ++stat_.int_instruction_count; } void OpIMax(const Dest& dest, const Src& src0, const Src& src1) { EmitAluOp(Opcode::kIMax, 0b11, dest, src0, src1); ++stat_.int_instruction_count; } void OpIMin(const Dest& dest, const Src& src0, const Src& src1) { EmitAluOp(Opcode::kIMin, 0b11, dest, src0, src1); ++stat_.int_instruction_count; } void OpIMul(const Dest& dest_hi, const Dest& dest_lo, const Src& src0, const Src& src1) { EmitAluOp(Opcode::kIMul, 0b11, dest_hi, dest_lo, src0, src1); ++stat_.int_instruction_count; } void OpINE(const Dest& dest, const Src& src0, const Src& src1) { EmitAluOp(Opcode::kINE, 0b11, dest, src0, src1); ++stat_.int_instruction_count; } void OpIShL(const Dest& dest, const Src& value, const Src& shift) { EmitAluOp(Opcode::kIShL, 0b11, dest, value, shift); ++stat_.int_instruction_count; } void OpIToF(const Dest& dest, const Src& src) { EmitAluOp(Opcode::kIToF, 0b1, dest, src); ++stat_.conversion_instruction_count; } void OpLabel(const Src& label) { // The label is source, not destination, for simplicity, to unify it will // call/callc (in DXBC it's just a zero-component label operand). uint32_t operands_length = label.GetLength(0b0000); code_.reserve(code_.size() + 1 + operands_length); code_.push_back(OpcodeToken(Opcode::kLabel, operands_length)); label.Write(code_, true, 0b0000); // Doesn't count towards stat_.instruction_count. } void OpLog(const Dest& dest, const Src& src, bool saturate = false) { EmitAluOp(Opcode::kLog, 0b0, dest, src, saturate); ++stat_.float_instruction_count; } void OpLoop() { code_.push_back(OpcodeToken(Opcode::kLoop, 0)); ++stat_.instruction_count; ++stat_.dynamic_flow_control_count; } void OpLT(const Dest& dest, const Src& src0, const Src& src1) { EmitAluOp(Opcode::kLT, 0b00, dest, src0, src1); ++stat_.float_instruction_count; } void OpMAd(const Dest& dest, const Src& mul0, const Src& mul1, const Src& add, bool saturate = false) { EmitAluOp(Opcode::kMAd, 0b000, dest, mul0, mul1, add, saturate); ++stat_.float_instruction_count; } void OpMin(const Dest& dest, const Src& src0, const Src& src1, bool saturate = false) { EmitAluOp(Opcode::kMin, 0b00, dest, src0, src1, saturate); ++stat_.float_instruction_count; } void OpMax(const Dest& dest, const Src& src0, const Src& src1, bool saturate = false) { EmitAluOp(Opcode::kMax, 0b00, dest, src0, src1, saturate); ++stat_.float_instruction_count; } void OpMov(const Dest& dest, const Src& src, bool saturate = false) { EmitAluOp(Opcode::kMov, 0b0, dest, src, saturate); if (dest.type_ == OperandType::kIndexableTemp || src.type_ == OperandType::kIndexableTemp) { ++stat_.array_instruction_count; } else { ++stat_.mov_instruction_count; } } void OpMovC(const Dest& dest, const Src& test, const Src& src_nz, const Src& src_z, bool saturate = false) { EmitAluOp(Opcode::kMovC, 0b001, dest, test, src_nz, src_z, saturate); ++stat_.movc_instruction_count; } void OpMul(const Dest& dest, const Src& src0, const Src& src1, bool saturate = false) { EmitAluOp(Opcode::kMul, 0b00, dest, src0, src1, saturate); ++stat_.float_instruction_count; } void OpNE(const Dest& dest, const Src& src0, const Src& src1) { EmitAluOp(Opcode::kNE, 0b00, dest, src0, src1); ++stat_.float_instruction_count; } void OpNot(const Dest& dest, const Src& src) { EmitAluOp(Opcode::kNot, 0b1, dest, src); ++stat_.uint_instruction_count; } void OpOr(const Dest& dest, const Src& src0, const Src& src1) { EmitAluOp(Opcode::kOr, 0b11, dest, src0, src1); ++stat_.uint_instruction_count; } void OpRet() { code_.push_back(OpcodeToken(Opcode::kRet, 0)); ++stat_.instruction_count; ++stat_.static_flow_control_count; } void OpRetC(bool test, const Src& src) { EmitFlowOp(Opcode::kRetC, src, test); ++stat_.dynamic_flow_control_count; } void OpRoundNE(const Dest& dest, const Src& src, bool saturate = false) { EmitAluOp(Opcode::kRoundNE, 0b0, dest, src, saturate); ++stat_.float_instruction_count; } void OpRoundNI(const Dest& dest, const Src& src, bool saturate = false) { EmitAluOp(Opcode::kRoundNI, 0b0, dest, src, saturate); ++stat_.float_instruction_count; } void OpRoundZ(const Dest& dest, const Src& src, bool saturate = false) { EmitAluOp(Opcode::kRoundZ, 0b0, dest, src, saturate); ++stat_.float_instruction_count; } void OpRSq(const Dest& dest, const Src& src, bool saturate = false) { EmitAluOp(Opcode::kRSq, 0b0, dest, src, saturate); ++stat_.float_instruction_count; } void OpSampleL(const Dest& dest, const Src& address, uint32_t address_components, const Src& resource, const Src& sampler, const Src& lod, int32_t aoffimmi_u = 0, int32_t aoffimmi_v = 0, int32_t aoffimmi_w = 0) { uint32_t dest_write_mask = dest.GetMask(); uint32_t sample_controls = 0; if (aoffimmi_u || aoffimmi_v || aoffimmi_w) { sample_controls = SampleControlsExtendedOpcodeToken(aoffimmi_u, aoffimmi_v, aoffimmi_w); } uint32_t address_mask = (1 << address_components) - 1; uint32_t operands_length = dest.GetLength() + address.GetLength(address_mask) + resource.GetLength(dest_write_mask, true) + sampler.GetLength(0b0000) + lod.GetLength(0b0000); code_.reserve(code_.size() + 1 + (sample_controls ? 1 : 0) + operands_length); code_.push_back(OpcodeToken(Opcode::kSampleL, operands_length, false, sample_controls ? 1 : 0)); if (sample_controls) { code_.push_back(sample_controls); } dest.Write(code_); address.Write(code_, false, address_mask); resource.Write(code_, false, dest_write_mask, true); sampler.Write(code_, false, 0b0000); lod.Write(code_, false, 0b0000); ++stat_.instruction_count; ++stat_.texture_normal_instructions; } void OpSampleD(const Dest& dest, const Src& address, uint32_t address_components, const Src& resource, const Src& sampler, const Src& x_derivatives, const Src& y_derivatives, uint32_t derivatives_components, int32_t aoffimmi_u = 0, int32_t aoffimmi_v = 0, int32_t aoffimmi_w = 0) { // If the address is 1-component, the derivatives are 1-component, if the // address is 4-component, the derivatives are 4-component. assert_true(derivatives_components <= address_components); uint32_t dest_write_mask = dest.GetMask(); uint32_t sample_controls = 0; if (aoffimmi_u || aoffimmi_v || aoffimmi_w) { sample_controls = SampleControlsExtendedOpcodeToken(aoffimmi_u, aoffimmi_v, aoffimmi_w); } uint32_t address_mask = (1 << address_components) - 1; uint32_t derivatives_mask = (1 << derivatives_components) - 1; uint32_t operands_length = dest.GetLength() + address.GetLength(address_mask) + resource.GetLength(dest_write_mask, true) + sampler.GetLength(0b0000) + x_derivatives.GetLength(derivatives_mask, address_components > 1) + y_derivatives.GetLength(derivatives_mask, address_components > 1); code_.reserve(code_.size() + 1 + (sample_controls ? 1 : 0) + operands_length); code_.push_back(OpcodeToken(Opcode::kSampleD, operands_length, false, sample_controls ? 1 : 0)); if (sample_controls) { code_.push_back(sample_controls); } dest.Write(code_); address.Write(code_, false, address_mask); resource.Write(code_, false, dest_write_mask, true); sampler.Write(code_, false, 0b0000); x_derivatives.Write(code_, false, derivatives_mask, address_components > 1); y_derivatives.Write(code_, false, derivatives_mask, address_components > 1); ++stat_.instruction_count; ++stat_.texture_gradient_instructions; } void OpSqRt(const Dest& dest, const Src& src, bool saturate = false) { EmitAluOp(Opcode::kSqRt, 0b0, dest, src, saturate); ++stat_.float_instruction_count; } void OpSwitch(const Src& src) { EmitFlowOp(Opcode::kSwitch, src); ++stat_.dynamic_flow_control_count; } void OpSinCos(const Dest& dest_sin, const Dest& dest_cos, const Src& src, bool saturate = false) { EmitAluOp(Opcode::kSinCos, 0b0, dest_sin, dest_cos, src, saturate); ++stat_.float_instruction_count; } void OpULT(const Dest& dest, const Src& src0, const Src& src1) { EmitAluOp(Opcode::kULT, 0b11, dest, src0, src1); ++stat_.uint_instruction_count; } void OpUGE(const Dest& dest, const Src& src0, const Src& src1) { EmitAluOp(Opcode::kUGE, 0b11, dest, src0, src1); ++stat_.uint_instruction_count; } void OpUMul(const Dest& dest_hi, const Dest& dest_lo, const Src& src0, const Src& src1) { EmitAluOp(Opcode::kUMul, 0b11, dest_hi, dest_lo, src0, src1); ++stat_.uint_instruction_count; } void OpUMAd(const Dest& dest, const Src& mul0, const Src& mul1, const Src& add) { EmitAluOp(Opcode::kUMAd, 0b111, dest, mul0, mul1, add); ++stat_.uint_instruction_count; } void OpUMax(const Dest& dest, const Src& src0, const Src& src1) { EmitAluOp(Opcode::kUMax, 0b11, dest, src0, src1); ++stat_.uint_instruction_count; } void OpUMin(const Dest& dest, const Src& src0, const Src& src1) { EmitAluOp(Opcode::kUMin, 0b11, dest, src0, src1); ++stat_.uint_instruction_count; } void OpUShR(const Dest& dest, const Src& value, const Src& shift) { EmitAluOp(Opcode::kUShR, 0b11, dest, value, shift); ++stat_.uint_instruction_count; } void OpUToF(const Dest& dest, const Src& src) { EmitAluOp(Opcode::kUToF, 0b1, dest, src); ++stat_.conversion_instruction_count; } void OpXOr(const Dest& dest, const Src& src0, const Src& src1) { EmitAluOp(Opcode::kXOr, 0b11, dest, src0, src1); ++stat_.uint_instruction_count; } void OpLOD(const Dest& dest, const Src& address, uint32_t address_components, const Src& resource, const Src& sampler) { uint32_t dest_write_mask = dest.GetMask(); uint32_t address_mask = (1 << address_components) - 1; uint32_t operands_length = dest.GetLength() + address.GetLength(address_mask) + resource.GetLength(dest_write_mask) + sampler.GetLength(0b0000); code_.reserve(code_.size() + 1 + operands_length); code_.push_back(OpcodeToken(Opcode::kLOD, operands_length)); dest.Write(code_); address.Write(code_, false, address_mask); resource.Write(code_, false, dest_write_mask); sampler.Write(code_, false, 0b0000); ++stat_.instruction_count; ++stat_.lod_instructions; } void OpDerivRTXCoarse(const Dest& dest, const Src& src, bool saturate = false) { EmitAluOp(Opcode::kDerivRTXCoarse, 0b0, dest, src, saturate); ++stat_.float_instruction_count; } void OpDerivRTXFine(const Dest& dest, const Src& src, bool saturate = false) { EmitAluOp(Opcode::kDerivRTXFine, 0b0, dest, src, saturate); ++stat_.float_instruction_count; } void OpDerivRTYCoarse(const Dest& dest, const Src& src, bool saturate = false) { EmitAluOp(Opcode::kDerivRTYCoarse, 0b0, dest, src, saturate); ++stat_.float_instruction_count; } void OpDerivRTYFine(const Dest& dest, const Src& src, bool saturate = false) { EmitAluOp(Opcode::kDerivRTYFine, 0b0, dest, src, saturate); ++stat_.float_instruction_count; } void OpRcp(const Dest& dest, const Src& src, bool saturate = false) { EmitAluOp(Opcode::kRcp, 0b0, dest, src, saturate); ++stat_.float_instruction_count; } void OpF32ToF16(const Dest& dest, const Src& src) { EmitAluOp(Opcode::kF32ToF16, 0b0, dest, src); ++stat_.conversion_instruction_count; } void OpF16ToF32(const Dest& dest, const Src& src) { EmitAluOp(Opcode::kF16ToF32, 0b1, dest, src); ++stat_.conversion_instruction_count; } void OpFirstBitHi(const Dest& dest, const Src& src) { EmitAluOp(Opcode::kFirstBitHi, 0b1, dest, src); ++stat_.uint_instruction_count; } void OpUBFE(const Dest& dest, const Src& width, const Src& offset, const Src& src) { EmitAluOp(Opcode::kUBFE, 0b111, dest, width, offset, src); ++stat_.uint_instruction_count; } void OpIBFE(const Dest& dest, const Src& width, const Src& offset, const Src& src) { EmitAluOp(Opcode::kIBFE, 0b111, dest, width, offset, src); ++stat_.int_instruction_count; } void OpBFI(const Dest& dest, const Src& width, const Src& offset, const Src& from, const Src& to) { EmitAluOp(Opcode::kBFI, 0b1111, dest, width, offset, from, to); ++stat_.uint_instruction_count; } void OpBFRev(const Dest& dest, const Src& src) { EmitAluOp(Opcode::kBFRev, 0b1, dest, src); ++stat_.uint_instruction_count; } void OpLdUAVTyped(const Dest& dest, const Src& address, uint32_t address_components, const Src& uav) { uint32_t dest_write_mask = dest.GetMask(); uint32_t address_mask = (1 << address_components) - 1; uint32_t operands_length = dest.GetLength() + address.GetLength(address_mask, true) + uav.GetLength(dest_write_mask, true); code_.reserve(code_.size() + 1 + operands_length); code_.push_back(OpcodeToken(Opcode::kLdUAVTyped, operands_length)); dest.Write(code_); address.Write(code_, true, address_mask, true); uav.Write(code_, false, dest_write_mask, true); ++stat_.instruction_count; ++stat_.texture_load_instructions; } void OpStoreUAVTyped(const Dest& dest, const Src& address, uint32_t address_components, const Src& value) { uint32_t dest_write_mask = dest.GetMask(); // Typed UAV writes don't support write masking. assert_true(dest_write_mask == 0b1111); uint32_t address_mask = (1 << address_components) - 1; uint32_t operands_length = dest.GetLength() + address.GetLength(address_mask, true) + value.GetLength(dest_write_mask); code_.reserve(code_.size() + 1 + operands_length); code_.push_back(OpcodeToken(Opcode::kStoreUAVTyped, operands_length)); dest.Write(code_); address.Write(code_, true, address_mask, true); value.Write(code_, false, dest_write_mask); ++stat_.instruction_count; ++stat_.c_texture_store_instructions; } void OpLdRaw(const Dest& dest, const Src& byte_offset, const Src& src) { // For Load, FXC emits code for writing to any component of the destination, // with xxxx swizzle of the source SRV/UAV. // For Load2/Load3/Load4, it's xy/xyz/xyzw write mask and xyxx/xyzx/xyzw // swizzle. uint32_t dest_write_mask = dest.GetMask(); assert_true(dest_write_mask == 0b0001 || dest_write_mask == 0b0010 || dest_write_mask == 0b0100 || dest_write_mask == 0b1000 || dest_write_mask == 0b0011 || dest_write_mask == 0b0111 || dest_write_mask == 0b1111); uint32_t component_count = xe::bit_count(dest_write_mask); assert_true((src.swizzle_ & ((1 << (component_count * 2)) - 1)) == (Src::kXYZW & ((1 << (component_count * 2)) - 1))); uint32_t src_mask = (1 << component_count) - 1; uint32_t operands_length = dest.GetLength() + byte_offset.GetLength(0b0000) + src.GetLength(src_mask, true); code_.reserve(code_.size() + 1 + operands_length); code_.push_back(OpcodeToken(Opcode::kLdRaw, operands_length)); dest.Write(code_); byte_offset.Write(code_, true, 0b0000); src.Write(code_, true, src_mask, true); ++stat_.instruction_count; ++stat_.texture_load_instructions; } void OpStoreRaw(const Dest& dest, const Src& byte_offset, const Src& value) { uint32_t dest_write_mask = dest.GetMask(); assert_true(dest_write_mask == 0b0001 || dest_write_mask == 0b0011 || dest_write_mask == 0b0111 || dest_write_mask == 0b1111); uint32_t operands_length = dest.GetLength() + byte_offset.GetLength(0b0000) + value.GetLength(dest_write_mask); code_.reserve(code_.size() + 1 + operands_length); code_.push_back(OpcodeToken(Opcode::kStoreRaw, operands_length)); dest.Write(code_); byte_offset.Write(code_, true, 0b0000); value.Write(code_, true, dest_write_mask); ++stat_.instruction_count; ++stat_.c_texture_store_instructions; } void OpEvalSampleIndex(const Dest& dest, const Src& value, const Src& sample_index) { uint32_t dest_write_mask = dest.GetMask(); uint32_t operands_length = dest.GetLength() + value.GetLength(dest_write_mask) + sample_index.GetLength(0b0000); code_.reserve(code_.size() + 1 + operands_length); code_.push_back(OpcodeToken(Opcode::kEvalSampleIndex, operands_length)); dest.Write(code_); value.Write(code_, false, dest_write_mask); sample_index.Write(code_, true, 0b0000); ++stat_.instruction_count; } void OpEvalCentroid(const Dest& dest, const Src& value) { uint32_t dest_write_mask = dest.GetMask(); uint32_t operands_length = dest.GetLength() + value.GetLength(dest_write_mask); code_.reserve(code_.size() + 1 + operands_length); code_.push_back(OpcodeToken(Opcode::kEvalCentroid, operands_length)); dest.Write(code_); value.Write(code_, false, dest_write_mask); ++stat_.instruction_count; } private: void EmitAluOp(Opcode opcode, uint32_t src_are_integer, const Dest& dest, const Src& src, bool saturate = false) { uint32_t dest_write_mask = dest.GetMask(); uint32_t operands_length = dest.GetLength() + src.GetLength(dest_write_mask); code_.reserve(code_.size() + 1 + operands_length); code_.push_back(OpcodeToken(opcode, operands_length, saturate)); dest.Write(code_); src.Write(code_, (src_are_integer & 0b1) != 0, dest_write_mask); ++stat_.instruction_count; } void EmitAluOp(Opcode opcode, uint32_t src_are_integer, const Dest& dest, const Src& src0, const Src& src1, bool saturate = false) { uint32_t dest_write_mask = dest.GetMask(); uint32_t operands_length = dest.GetLength() + src0.GetLength(dest_write_mask) + src1.GetLength(dest_write_mask); code_.reserve(code_.size() + 1 + operands_length); code_.push_back(OpcodeToken(opcode, operands_length, saturate)); dest.Write(code_); src0.Write(code_, (src_are_integer & 0b1) != 0, dest_write_mask); src1.Write(code_, (src_are_integer & 0b10) != 0, dest_write_mask); ++stat_.instruction_count; } void EmitAluOp(Opcode opcode, uint32_t src_are_integer, const Dest& dest, const Src& src0, const Src& src1, const Src& src2, bool saturate = false) { uint32_t dest_write_mask = dest.GetMask(); uint32_t operands_length = dest.GetLength() + src0.GetLength(dest_write_mask) + src1.GetLength(dest_write_mask) + src2.GetLength(dest_write_mask); code_.reserve(code_.size() + 1 + operands_length); code_.push_back(OpcodeToken(opcode, operands_length, saturate)); dest.Write(code_); src0.Write(code_, (src_are_integer & 0b1) != 0, dest_write_mask); src1.Write(code_, (src_are_integer & 0b10) != 0, dest_write_mask); src2.Write(code_, (src_are_integer & 0b100) != 0, dest_write_mask); ++stat_.instruction_count; } void EmitAluOp(Opcode opcode, uint32_t src_are_integer, const Dest& dest, const Src& src0, const Src& src1, const Src& src2, const Src& src3, bool saturate = false) { uint32_t dest_write_mask = dest.GetMask(); uint32_t operands_length = dest.GetLength() + src0.GetLength(dest_write_mask) + src1.GetLength(dest_write_mask) + src2.GetLength(dest_write_mask) + src3.GetLength(dest_write_mask); code_.reserve(code_.size() + 1 + operands_length); code_.push_back(OpcodeToken(opcode, operands_length, saturate)); dest.Write(code_); src0.Write(code_, (src_are_integer & 0b1) != 0, dest_write_mask); src1.Write(code_, (src_are_integer & 0b10) != 0, dest_write_mask); src2.Write(code_, (src_are_integer & 0b100) != 0, dest_write_mask); src3.Write(code_, (src_are_integer & 0b1000) != 0, dest_write_mask); ++stat_.instruction_count; } void EmitAluOp(Opcode opcode, uint32_t src_are_integer, const Dest& dest0, const Dest& dest1, const Src& src, bool saturate = false) { uint32_t dest_write_mask = dest0.GetMask() | dest1.GetMask(); uint32_t operands_length = dest0.GetLength() + dest1.GetLength() + src.GetLength(dest_write_mask); code_.reserve(code_.size() + 1 + operands_length); code_.push_back(OpcodeToken(opcode, operands_length, saturate)); dest0.Write(code_); dest1.Write(code_); src.Write(code_, (src_are_integer & 0b1) != 0, dest_write_mask); ++stat_.instruction_count; } void EmitAluOp(Opcode opcode, uint32_t src_are_integer, const Dest& dest0, const Dest& dest1, const Src& src0, const Src& src1, bool saturate = false) { uint32_t dest_write_mask = dest0.GetMask() | dest1.GetMask(); uint32_t operands_length = dest0.GetLength() + dest1.GetLength() + src0.GetLength(dest_write_mask) + src1.GetLength(dest_write_mask); code_.reserve(code_.size() + 1 + operands_length); code_.push_back(OpcodeToken(opcode, operands_length, saturate)); dest0.Write(code_); dest1.Write(code_); src0.Write(code_, (src_are_integer & 0b1) != 0, dest_write_mask); src1.Write(code_, (src_are_integer & 0b10) != 0, dest_write_mask); ++stat_.instruction_count; } void EmitFlowOp(Opcode opcode, const Src& src, bool test = false) { uint32_t operands_length = src.GetLength(0b0000); code_.reserve(code_.size() + 1 + operands_length); code_.push_back(OpcodeToken(opcode, operands_length) | (test ? (1 << 18) : 0)); src.Write(code_, true, 0b0000); ++stat_.instruction_count; } void EmitFlowOp(Opcode opcode, const Src& src0, const Src& src1, bool test = false) { uint32_t operands_length = src0.GetLength(0b0000) + src1.GetLength(0b0000); code_.reserve(code_.size() + 1 + operands_length); code_.push_back(OpcodeToken(opcode, operands_length) | (test ? (1 << 18) : 0)); src0.Write(code_, true, 0b0000); src1.Write(code_, true, 0b0000); ++stat_.instruction_count; } std::vector& code_; Statistics& stat_; }; } // namespace dxbc } // namespace gpu } // namespace xe #endif // XENIA_GPU_DXBC_H_