Commit Graph

42 Commits (f8cc5668f80d0c63f5ce850286760807462e1d72)

Author SHA1 Message Date
ReinUsesLisp 104641db07 shader/decode: Implement S2R Tic 6 years ago
Lioncash bebbdc2067 shader_ir: std::move Node instance where applicable
These are std::shared_ptr instances underneath the hood, which means
copying them isn't as cheap as a regular pointer. Particularly so on
weakly-ordered systems.

This avoids atomic reference count increments and decrements where they
aren't necessary for the core set of operations.
6 years ago
Lioncash 60926ac16b shader_ir: Rename Get/SetTemporal to Get/SetTemporary
This is more accurate in terms of describing what the functions are
actually doing. Temporal relates to time, not the setting of a temporary
itself.
6 years ago
Fernando Sahmkow b56e7f870a
Merge pull request #2565 from ReinUsesLisp/track-indirect
shader/track: Track indirect buffers
6 years ago
Fernando Sahmkow 1bdb59fc6e
Merge pull request #2695 from ReinUsesLisp/layer-viewport
gl_shader_decompiler: Implement gl_ViewportIndex and gl_Layer in vertex shaders
6 years ago
ReinUsesLisp afa8096df5 shader: Allow tracking of indirect buffers without variable offset
While changing this code, simplify tracking code to allow returning
the base address node, this way callers don't have to manually rebuild
it on each invocation.
6 years ago
Fernando Sahmkow 459fce3a8f shader_ir: propagate shader size to the IR 6 years ago
ReinUsesLisp c9d886c84e gl_shader_decompiler: Implement gl_ViewportIndex and gl_Layer in vertex shaders
This commit implements gl_ViewportIndex and gl_Layer in vertex and
geometry shaders. In the case it's used in a vertex shader, it requires
ARB_shader_viewport_layer_array. This extension is available on AMD and
Nvidia devices (mesa and proprietary drivers), but not available on
Intel on any platform. At the moment of writing this description I don't
know if this is a hardware limitation or a driver limitation.

In the case that ARB_shader_viewport_layer_array is not available,
writes to these registers on a vertex shader are ignored, with the
appropriate logging.
6 years ago
ReinUsesLisp bf4dfb3ad4 shader: Use shared_ptr to store nodes and move initialization to file
Instead of having a vector of unique_ptr stored in a vector and
returning star pointers to this, use shared_ptr. While changing
initialization code, move it to a separate file when possible.

This is a first step to allow code analysis and node generation beyond
the ShaderIR class.
6 years ago
Lioncash b6dcb1ae4d shader/shader_ir: Make Comment() take a std::string by value
This allows for forming comment nodes without making unnecessary copies
of the std::string instance.

e.g. previously:

Comment(fmt::format("Base address is c[0x{:x}][0x{:x}]",
        cbuf->GetIndex(), cbuf_offset));

Would result in a copy of the string being created, as CommentNode()
takes a std::string by value (a const ref passed to a value parameter
results in a copy).

Now, only one instance of the string is ever moved around. (fmt::format
returns a std::string, and since it's returned from a function by value,
this is a prvalue (which can be treated like an rvalue), so it's moved
into Comment's string parameter), we then move it into the CommentNode
constructor, which then moves the string into its member variable).
6 years ago
bunnei d49efbfb4a
Merge pull request #2441 from ReinUsesLisp/al2p
shader: Implement AL2P and ALD.PHYS
6 years ago
Lioncash ce04ab38bb shader/shader_ir: Place implementations of constructor and destructor in cpp file
Given the class contains quite a lot of non-trivial types, place the
constructor and destructor within the cpp file to avoid inlining
construction and destruction code everywhere the class is used.
6 years ago
ReinUsesLisp fe700e1856 shader: Add physical attributes commentaries 6 years ago
ReinUsesLisp 71aa9d0877 shader_ir/memory: Implement physical input attributes 6 years ago
ReinUsesLisp 06b363c9b5 shader: Remove unused AbufNode Ipa mode 6 years ago
bunnei c52233ec8b
Merge pull request #2322 from ReinUsesLisp/wswitch
video_core: Silent -Wswitch warnings
6 years ago
ReinUsesLisp fbe8d1ceaa video_core: Silent -Wswitch warnings 6 years ago
ReinUsesLisp f43995ec53 shader_ir/decode: Fix half float pre-operations and remove MetaHalfArithmetic
Operations done before the main half float operation (like HAdd) were
managing a packed value instead of the unpacked one. Adding an unpacked
operation allows us to drop the per-operand MetaHalfArithmetic entry,
simplifying the code overall.
6 years ago
ReinUsesLisp 64613db605 shader_ir/decode: Implement half float saturation 6 years ago
ReinUsesLisp acf618afbc renderer_opengl: Implement half float NaN comparisons 6 years ago
ReinUsesLisp ae46ad48ed shader_ir: Avoid using static on heap-allocated objects
Using static here might be faster at runtime, but it adds a heap
allocation called before main.
6 years ago
ReinUsesLisp 42b75e8be8 shader_ir: Rename BasicBlock to NodeBlock
It's not always used as a basic block. Rename it for consistency.
6 years ago
ReinUsesLisp 2d6c064e66 shader_decode: Improve zero flag implementation 6 years ago
ReinUsesLisp d911740e5d shader_ir: Remove composite primitives and use temporals instead 6 years ago
ReinUsesLisp 2faad9bf23 shader_decode: Use BitfieldExtract instead of shift + and 6 years ago
ReinUsesLisp 2df55985b6 shader_decode: Rework HSETP2 6 years ago
ReinUsesLisp 027f443e69 shader_decode: Implement POPC 6 years ago
ReinUsesLisp fc46ecddb3 video_core: Return safe values after an assert hits 6 years ago
ReinUsesLisp fbc67a0563 shader_ir: Add condition code helper 6 years ago
ReinUsesLisp a58abbcfc4 shader_ir: Add predicate combiner helper 6 years ago
ReinUsesLisp bf07272695 shader_ir: Add comparison helpers 6 years ago
ReinUsesLisp 60f044df56 shader_ir: Add half float helpers 6 years ago
ReinUsesLisp e3c55e31d7 shader_ir: Add integer helpers 6 years ago
ReinUsesLisp 833d0806f9 shader_ir: Add float helpers 6 years ago
ReinUsesLisp 6b9eea3fe5 shader_ir: Add setters 6 years ago
ReinUsesLisp 12a95ff453 shader_ir: Add local memory getters 6 years ago
ReinUsesLisp 2f87fd060d shader_ir: Add internal flag getters 6 years ago
ReinUsesLisp 15f431f0cb shader_ir: Add attribute getters 6 years ago
ReinUsesLisp 864e8f55cf shader_ir: Add constant buffer getters 6 years ago
ReinUsesLisp 5e639bfcf6 shader_ir: Add register getter 6 years ago
ReinUsesLisp 4aaa2192b9 shader_ir: Add immediate node constructors 6 years ago
ReinUsesLisp 15a0e1481d shader_ir: Initial implementation 6 years ago