2021-07-18 12:49:39 +02:00
|
|
|
|
using CommandLine;
|
|
|
|
|
using Ryujinx.Graphics.Shader;
|
2019-12-01 03:53:09 +01:00
|
|
|
|
using Ryujinx.Graphics.Shader.Translation;
|
2018-05-17 20:25:42 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
2020-05-06 03:02:28 +02:00
|
|
|
|
using System.Runtime.InteropServices;
|
2018-05-17 20:25:42 +02:00
|
|
|
|
|
2018-06-11 02:46:42 +02:00
|
|
|
|
namespace Ryujinx.ShaderTools
|
2018-05-17 20:25:42 +02:00
|
|
|
|
{
|
|
|
|
|
class Program
|
|
|
|
|
{
|
2020-05-06 03:02:28 +02:00
|
|
|
|
private class GpuAccessor : IGpuAccessor
|
|
|
|
|
{
|
|
|
|
|
private readonly byte[] _data;
|
|
|
|
|
|
|
|
|
|
public GpuAccessor(byte[] data)
|
|
|
|
|
{
|
|
|
|
|
_data = data;
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-12 22:35:31 +02:00
|
|
|
|
public ReadOnlySpan<ulong> GetCode(ulong address, int minimumSize)
|
2020-05-06 03:02:28 +02:00
|
|
|
|
{
|
2021-10-12 22:35:31 +02:00
|
|
|
|
return MemoryMarshal.Cast<byte, ulong>(new ReadOnlySpan<byte>(_data).Slice((int)address));
|
2020-05-06 03:02:28 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-18 12:49:39 +02:00
|
|
|
|
private class Options
|
2018-05-17 20:25:42 +02:00
|
|
|
|
{
|
2021-07-18 12:49:39 +02:00
|
|
|
|
[Option("compute", Required = false, Default = false, HelpText = "Indicate that the shader is a compute shader.")]
|
|
|
|
|
public bool Compute { get; set; }
|
|
|
|
|
|
|
|
|
|
[Option("target-language", Required = false, Default = TargetLanguage.Glsl, HelpText = "Indicate the target shader language to use.")]
|
|
|
|
|
public TargetLanguage TargetLanguage { get; set; }
|
|
|
|
|
|
|
|
|
|
[Option("target-api", Required = false, Default = TargetApi.OpenGL, HelpText = "Indicate the target graphics api to use.")]
|
|
|
|
|
public TargetApi TargetApi { get; set; }
|
|
|
|
|
|
|
|
|
|
[Value(0, MetaName = "input", HelpText = "Binary Maxwell shader input path.", Required = true)]
|
|
|
|
|
public string InputPath { get; set; }
|
|
|
|
|
|
|
|
|
|
[Value(1, MetaName = "output", HelpText = "Decompiled shader output path.", Required = false)]
|
|
|
|
|
public string OutputPath { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void HandleArguments(Options options)
|
|
|
|
|
{
|
|
|
|
|
TranslationFlags flags = TranslationFlags.DebugMode;
|
|
|
|
|
|
|
|
|
|
if (options.Compute)
|
2018-05-17 20:25:42 +02:00
|
|
|
|
{
|
2021-07-18 12:49:39 +02:00
|
|
|
|
flags |= TranslationFlags.Compute;
|
|
|
|
|
}
|
2018-05-17 20:25:42 +02:00
|
|
|
|
|
2021-07-18 12:49:39 +02:00
|
|
|
|
byte[] data = File.ReadAllBytes(options.InputPath);
|
|
|
|
|
|
|
|
|
|
TranslationOptions translationOptions = new TranslationOptions(options.TargetLanguage, options.TargetApi, flags);
|
2018-05-17 20:25:42 +02:00
|
|
|
|
|
2021-07-18 12:49:39 +02:00
|
|
|
|
ShaderProgram program = Translator.CreateContext(0, new GpuAccessor(data), translationOptions).Translate(out _);
|
New shader translator implementation (#654)
* Start implementing a new shader translator
* Fix shift instructions and a typo
* Small refactoring on StructuredProgram, move RemovePhis method to a separate class
* Initial geometry shader support
* Implement TLD4
* Fix -- There's no negation on FMUL32I
* Add constant folding and algebraic simplification optimizations, nits
* Some leftovers from constant folding
* Avoid cast for constant assignments
* Add a branch elimination pass, and misc small fixes
* Remove redundant branches, add expression propagation and other improvements on the code
* Small leftovers -- add missing break and continue, remove unused properties, other improvements
* Add null check to handle empty block cases on block visitor
* Add HADD2 and HMUL2 half float shader instructions
* Optimize pack/unpack sequences, some fixes related to half float instructions
* Add TXQ, TLD, TLDS and TLD4S shader texture instructions, and some support for bindless textures, some refactoring on codegen
* Fix copy paste mistake that caused RZ to be ignored on the AST instruction
* Add workaround for conditional exit, and fix half float instruction with constant buffer
* Add missing 0.0 source for TLDS.LZ variants
* Simplify the switch for TLDS.LZ
* Texture instructions related fixes
* Implement the HFMA instruction, and some misc. fixes
* Enable constant folding on UnpackHalf2x16 instructions
* Refactor HFMA to use OpCode* for opcode decoding rather than on the helper methods
* Remove the old shader translator
* Remove ShaderDeclInfo and other unused things
* Add dual vertex shader support
* Add ShaderConfig, used to pass shader type and maximum cbuffer size
* Move and rename some instruction enums
* Move texture instructions into a separate file
* Move operand GetExpression and locals management to OperandManager
* Optimize opcode decoding using a simple list and binary search
* Add missing condition for do-while on goto elimination
* Misc. fixes on texture instructions
* Simplify TLDS switch
* Address PR feedback, and a nit
2019-04-18 01:57:08 +02:00
|
|
|
|
|
2021-07-18 12:49:39 +02:00
|
|
|
|
if (options.OutputPath == null)
|
|
|
|
|
{
|
|
|
|
|
if (program.BinaryCode != null)
|
|
|
|
|
{
|
|
|
|
|
using Stream outputStream = Console.OpenStandardOutput();
|
2018-05-17 20:25:42 +02:00
|
|
|
|
|
2021-07-18 12:49:39 +02:00
|
|
|
|
outputStream.Write(program.BinaryCode);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Console.WriteLine(program.Code);
|
|
|
|
|
}
|
2018-05-17 20:25:42 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2021-07-18 12:49:39 +02:00
|
|
|
|
if (program.BinaryCode != null)
|
|
|
|
|
{
|
|
|
|
|
File.WriteAllBytes(options.OutputPath, program.BinaryCode);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
File.WriteAllText(options.OutputPath, program.Code);
|
|
|
|
|
}
|
2018-05-17 20:25:42 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-07-18 12:49:39 +02:00
|
|
|
|
|
|
|
|
|
static void Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
Parser.Default.ParseArguments<Options>(args)
|
|
|
|
|
.WithParsed(options => HandleArguments(options))
|
|
|
|
|
.WithNotParsed(errors => errors.Output());
|
|
|
|
|
}
|
2018-05-17 20:25:42 +02:00
|
|
|
|
}
|
New shader translator implementation (#654)
* Start implementing a new shader translator
* Fix shift instructions and a typo
* Small refactoring on StructuredProgram, move RemovePhis method to a separate class
* Initial geometry shader support
* Implement TLD4
* Fix -- There's no negation on FMUL32I
* Add constant folding and algebraic simplification optimizations, nits
* Some leftovers from constant folding
* Avoid cast for constant assignments
* Add a branch elimination pass, and misc small fixes
* Remove redundant branches, add expression propagation and other improvements on the code
* Small leftovers -- add missing break and continue, remove unused properties, other improvements
* Add null check to handle empty block cases on block visitor
* Add HADD2 and HMUL2 half float shader instructions
* Optimize pack/unpack sequences, some fixes related to half float instructions
* Add TXQ, TLD, TLDS and TLD4S shader texture instructions, and some support for bindless textures, some refactoring on codegen
* Fix copy paste mistake that caused RZ to be ignored on the AST instruction
* Add workaround for conditional exit, and fix half float instruction with constant buffer
* Add missing 0.0 source for TLDS.LZ variants
* Simplify the switch for TLDS.LZ
* Texture instructions related fixes
* Implement the HFMA instruction, and some misc. fixes
* Enable constant folding on UnpackHalf2x16 instructions
* Refactor HFMA to use OpCode* for opcode decoding rather than on the helper methods
* Remove the old shader translator
* Remove ShaderDeclInfo and other unused things
* Add dual vertex shader support
* Add ShaderConfig, used to pass shader type and maximum cbuffer size
* Move and rename some instruction enums
* Move texture instructions into a separate file
* Move operand GetExpression and locals management to OperandManager
* Optimize opcode decoding using a simple list and binary search
* Add missing condition for do-while on goto elimination
* Misc. fixes on texture instructions
* Simplify TLDS switch
* Address PR feedback, and a nit
2019-04-18 01:57:08 +02:00
|
|
|
|
}
|