Commit graph

98 commits

Author SHA1 Message Date
Bill Currie
6af960cef2 [qfcc] Implement discard
I had no idea how to do it back when I started working on the glsl
parser, but intrinsics made it very easy. It's just OpKill for now (and
might stay that way for glsl).
2025-02-17 20:58:45 +09:00
Bill Currie
6b0b1b24b8 [qfcc] Fix some gcc purity issues
*sigh*. Still, nice to have them correct.
2025-02-17 19:43:15 +09:00
Bill Currie
c0d0c71a7c [qfcc] Support expr dot output for spirv 2025-02-17 15:14:10 +09:00
Bill Currie
5acca56d8d [qfcc] Fix some source location tracking 2025-02-17 15:13:37 +09:00
Bill Currie
151efa5ad7 [qfcc] Rework interface block handling
The types are built with the correct attributes before any expressions
see them, so any necessary duplication is done early and guaranteed to
be only once. Now my compute shaders pass spirv-val.

However, other shaders are broken. But I think I know where to look.
2025-02-17 12:55:57 +09:00
Bill Currie
3337d45aa0 [qfcc] Improve handling of branched types
This makes using structs in interface blocks possible by auto-casting
whenever possible. Now my compute shaders compile, but there's another
duplicate type sneaking in somehow.
2025-02-16 18:51:13 +09:00
Bill Currie
feca36bf59 [qfcc] Record type id for block types
I had initially thought I'd need to duplicate types for block members,
but that was before I did the higher-level type branching, and then I
forgot to record the type for block members. Fixes the duplicate types
on structs in blocks, and thus a type mismatch validation error in
partphysics.comp.
2025-02-16 16:27:24 +09:00
Bill Currie
70bfa64333 [qfcc] Use CopyLogical for structs and arrays
I had vaguely remembered there was something, but forgotten what it was,
then found it while debugging my compute shaders. This greatly
simplifies copying structs to/from blocks.
2025-02-16 14:26:24 +09:00
Bill Currie
a3f4649b27 [qfcc] Use array count, not the const id for array size
Double emission of a constant... that one had me puzzled for a bit: 374?
That's not even a multiple of 32!
2025-02-16 11:23:56 +09:00
Bill Currie
5ac80b1859 [qfcc] Add support for sampled images
It's currently `@sampler(...)`, but I'm not sure about the name (should
it be `@sampled_image`, `@sampled` or similar?). However,
glsl-builtins.c uses `@image` and `@sampler` now, so one step closer to
my shaders compiling again.
2025-02-15 17:15:55 +09:00
Bill Currie
1c20316c9a [qfcc] Make image handles independent of glsl
It has come time to get image handle type creation into Ruamoko. This
commit only gets the functions and types independent of glsl, @image (my
plan for dealing with the handles) isn't implemented yet.
2025-02-11 16:01:59 +09:00
Bill Currie
f10abf4a18 [qfcc] Check for uniform arrays for UniformConstant
Another one bites the dust (still more fragment shader issues, though).
2025-02-05 10:57:28 +09:00
Bill Currie
e1969a9ded [qfcc] Set tess/geom in/out array sizes
Tessellation via `vertices` and geometry via the topology. Includes user
`in` vertex attribute arrays.
2025-02-05 10:23:27 +09:00
Bill Currie
059936d18f [qfcc] Fix spir-v buffer struct copying
I had forgotten the parameters needed to be in reverse order (since
constructor_expr was written as the implementation of a function call),
and I had also forgotten I need to do the assignment. No more broken
lights :)
2025-02-04 01:55:35 +09:00
Bill Currie
c6e98107ba [qfcc] Mark non-out and non-push_constant blocks NonWritable
This is a hack until I rethink the entire glsl implementation, but it
gets my vertex shaders such that Vulkan no longer rejects them. However,
there are a couple struct related bugs (next).
2025-02-04 01:53:40 +09:00
Bill Currie
e2631db4eb [qfcc] Make push_constant blocks push_constant
And now all my vertex shaders seem to pass validation. Time for some
real testing.
2025-02-03 19:31:55 +09:00
Bill Currie
de2d108e41 [qfcc] Process attributes for blocks
And now they get their `set` and `binding` decorations so slice.vert
actually works in nq-x11 :D
2025-02-03 16:51:08 +09:00
Bill Currie
d952bec679 [qfcc] Auto-cast compatible structs in assignment
This allows struct block members to be copied out of a block for spir-v.
The code may not be optimal (the full struct is copied rather than only
used members), but it gets my vertex shaders compiling again and thus
passing that part of validation.
2025-02-03 14:06:27 +09:00
Bill Currie
375a068024 [qfcc] Emit required decorations for buffer blocks
Any matrix, array or struct member in a uniform/buffer block requires
offset and stride annotations. These seem to be calculated correctly
(tricky due to qfcc's internal size system, which I should probably
adjust based on target (I think type_size() and type_align() should help
here). Now I've got fun with incompatible structs that are the same type
in the source (thus pass type checks), but different in the target (due
to concrete vs abstract addressing).
2025-01-27 14:21:21 +09:00
Bill Currie
f85b966f95 [qfcc] Rename type_id to spirv_Type
Seeing just type_id made me think it did something else (and I wrote
it).
2025-01-25 22:05:12 +09:00
Bill Currie
dcd2c565c1 [qfcc] Emit struct member decorations
They're not enough yet as offsets and strides need to be emitted.
2025-01-25 19:32:12 +09:00
Bill Currie
0f3f275ab2 [qfcc] Decorate uniform/storage blocks as such
Yet another step closer to getting a shader working in Vulkan.
2025-01-24 22:05:16 +09:00
Bill Currie
6cac4de0ea [qfcc] Use UniformConstant for opaque uniforms
I missed this when reading the glsl spec (I really don't like that
thing).
2025-01-24 22:03:14 +09:00
Bill Currie
0071c138bd [qfcc] Support generating a C array of the output
I'd far rather use #embed, but gotta wait for gcc-15.
2025-01-24 19:14:56 +09:00
Bill Currie
1e58ca394b [qfcc] Emit the MultiView capability when enabled
Yet another validation error bites the dust.
2025-01-24 14:49:51 +09:00
Bill Currie
6c4fd34229 [qfcc] Decorate spir-v variable declarations
This takes care of most global variable (not yet member or other
variable) attributes.
2025-01-24 14:01:01 +09:00
Bill Currie
f946a515e6 [qfcc] Make spirv kinds easier to use
Having a specific function for each kind gets out of hand fast.
2025-01-24 13:47:57 +09:00
Bill Currie
2f941ff9dd [qfcc] Clear the function queue immediately
The function queue needs to be cleared before figuring out the interface
symbols otherwise the variables referenced only by called functions will
not get into the list of interface symbols.
2025-01-22 20:26:11 +09:00
Bill Currie
53afbc3a9b [qfcc] Handle address of field expressions
In particular, spir-v needs special handling to avoid unwanted loads.
2025-01-21 22:43:51 +09:00
Bill Currie
b9c3f427b7 [qfcc] Emit debug line info for spir-v
Other than a bug in spirv_str_insn, that was a lot easier than I
expected.
2025-01-21 17:26:34 +09:00
Bill Currie
bfed441045 [qfcc] Handle list expressions in spirv codegen
It seems they get there in declarations in inline functions. I decided
it's not worth worrying about for now.
2025-01-21 13:25:02 +09:00
Bill Currie
fb7025dbd3 [qfcc] Handle execution modes for spir-v/glsl
This means that `layout(triangles)` etc now work, though there are
issues with frag shaders missing functions (since getting function calls
working) and compute shaders silently failing.
2025-01-21 10:42:56 +09:00
Bill Currie
105edc5126 [qfcc] Don't allow overloading of main for glsl
It's supposed to always be void(void), so...
2025-01-20 22:10:27 +09:00
Bill Currie
9beb0093e6 [qfcc] Skip res type/id for void intrinsics
But only for non-extension. I'm not sure it's quite right (as I don't
know if all void intrinsics should not have res type/id (all extension
instructions *do*)).
2025-01-20 15:44:47 +09:00
Bill Currie
133156fdc7 [qfcc] Use OpBitcast for alias exprs in spirv
Really, just implementing it properly.
2025-01-20 14:04:19 +09:00
Bill Currie
16b04512cb [qfcc] Support marking expression for the back-end
The spir-v back-end needs to emit literal values in some places and
supporting that in explicit intrinsics required marking the expression
as special. Unary = seems a little odd at first, but at the same time
seems to make sense, especially for marking expressions as "use literal
value" (eg =ImageOperands.Lod will result in a literal 2 instead of an
op id that points to the 2).
2025-01-20 11:26:20 +09:00
Bill Currie
b1389ddb79 [qfcc] Emit all called functions for spir-v
The functions get queued up if they haven't already been assigned an id.
2025-01-20 10:15:42 +09:00
Bill Currie
93991ce30d [qfcc] Use the ruamoko test_expr for spirv
The two back-ends are mostly compatible for bools (just lbool is a minor
problem) so reusing the code makes sense.
2025-01-20 01:34:27 +09:00
Bill Currie
c88820c31e [qfcc] Split test_expr per target
While there's a bit of code duplication, it very much cleans things up
for the various targets, especially v6 progs. However, spirv is not
implemented yet, so that's broken again.
2025-01-20 00:55:01 +09:00
Bill Currie
7dc1ab0ea8 [qfcc] Split up shift ops by target
v6 can't do shifts at all, and rua/spir-v can do only integral shifts.
2025-01-18 20:44:55 +09:00
Bill Currie
92727019b5 [qfcc] Split up vector/quaternion compare by target
The v6 and v6p targets don't have horizontal operations, instead they
have direct vector/quaternion equality to float/int scalar result. Fixes
an ice when building game-source/quake.
2025-01-18 14:06:27 +09:00
Bill Currie
a5272d2e05 [qfcc] Hook spir-v operand kinds into intrinsic scopes
The operand kinds form namespaces for their enumerants (only BitEnum and
ValueEnum operand kinds are supported for this). Now `Lod` and `Bias`
use `ImageOperands.Lod` and `ImageOperands.Bias`, which is probably a
big improvement in the long run.

Finally, all of QF's shaders *compile*, though the spir-v is generally
incorrect (capabilities etc), and the code gen may still be full of
bugs.
2025-01-18 13:15:05 +09:00
Bill Currie
351136a636 [qfcc] Fix a few segfaults compiling glsl 2025-01-15 18:23:25 +09:00
Bill Currie
88253a847b [qfcc] Support type inference for spir-v
I guess I hadn't thought of it because GLSL doesn't have `auto`, but
since the builtin functions are implemented in Ruamoko, `auto` is
available and I use it for the atomic image functions.
2025-01-14 01:27:11 +09:00
Bill Currie
041216182e [qfcc] Implement spirv instruction lookup
Yay, no more magic numbers for intrinsics :)
2025-01-13 21:38:35 +09:00
Bill Currie
e9eae1c75f [qfcc] Implement incop for SPIR-V
I think I got it right, but it's hard to tell because my shaders use ++
only for the iterator of loops so the result is thrown away.
2025-01-12 23:29:57 +09:00
Bill Currie
270c57e46e [qfcc] Support assignment into array elements in SPIR-V
Just a missed detection of needing to use access chains.
2025-01-12 23:29:57 +09:00
Bill Currie
7baf93c8df [qfcc] Make short-circuit boolean logic language dependent
And disable it for GLSL. I might need to make it target-dependent
instead as I don't know if I'll be able to implement it in SPIR-V, and
when I get to the C back-end, it will be superfluous.
2025-01-12 23:29:56 +09:00
Bill Currie
09bd49814e [qfcc] Correct spirv right shift types
Spir-v is pretty slack with the exact types of the operants to the
right-shift instructions so no need to care about the type for shift so
long as it has the correct number of components.
2025-01-10 00:58:26 +09:00
Bill Currie
76fcc2f1a9 [qfcc] Support nil expressions in spir-v 2025-01-09 17:49:20 +09:00