Commit graph

1151 commits

Author SHA1 Message Date
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
f8099c9977 [qfcc] Rename obj_types_assignable
This makes it consistent with the other type_assignable functions.
2025-02-16 18:11:26 +09:00
Bill Currie
651a1611b1 [qfcc] Apply general qualifiers
They're not fully implemented, and many checks are bogus, but at least
highp and flat do the right thing.
2025-02-16 10:48:45 +09:00
Bill Currie
03285c43ca [qfcc] Handle image type promotions etc
I have no idea what should be promotion and what should be demotion, but
I think a specified format should at least be assignable to unspecified
format. It certainly helps get things compiling again.
2025-02-15 23:42:36 +09:00
Bill Currie
bc00bd0a0c [qfcc] Clean up image type creation
While images are handles, they're not user-handles thus don't exist in
that name-space. slice.vert now compiles, but it looks like I have some
problems with sampled images/textures (sampler2D etc).
2025-02-15 19:41:02 +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
6af42e979e [qfcc] Parse @image() in Ruamoko
I'll probably tweak the syntax a little (make placement of the type more
flexible and not generate an error if either type or other arguments are
missing), but I think I like it result:

    typedef @image(int, 2D, Array, R8) bimage;
    typedef @image(float, 3D, Rgba8) fimage;
    typedef @image(float, Cube, Rgba8) cube;
    typedef @image(float, Array, Cube) cube_array;
2025-02-11 18:08:13 +09:00
Bill Currie
28604add29 [qfcc] Add a silent spirv enum lookup function
Or mostly silent, since the core and enumeration symbols are expected to
be value, but the enumerant itself does not cause a diagnostic if not
found (needed for checking image dimension and format).
2025-02-11 17:59:03 +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
ad51881a60 [qfcc] Implement the image format layout qualifier
It doesn't really work yet for multiple reasons (eg, not an exact match
with the spir-v names, and the type system itself being a little
inadequate), but gotta start somewhere.
2025-02-11 14:56:32 +09:00
Bill Currie
e8e2bf7efe [qfcc] Fix some forwarded enum issues
Forwarded enums need the backing type specified (which makes sense).
2025-02-11 12:49:52 +09:00
Bill Currie
8ca018f062 [qfcc] Ensure geometry shader invocations is set
It must always be at least 1, but specifying it in glsl is optional.

And now geometry shaders work :)
2025-02-05 10:26:21 +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
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
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
d1a13318a3 [qfcc] Tidy up type.h a little
Forward declare type_t and some int -> bool
2025-02-02 11:34:23 +09:00
Bill Currie
2ad496ebc2 [qfcc] Add more type convenience functions
Due to aliases, even after checking the type of the type, it's not safe
to directly access the type's data without first unaliasing the type.
2025-01-26 19:29:38 +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
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
e7d3259829 [qfcc] Force symbol lookup when processing expressions
This fixes the constant type reference ICE for subpassLoad. The problem
was stale symbols recorded in the expressions thus gsubpassInput
referred to the allowed types for the generic function rather than the
type specific to the call.
2025-01-22 18:43:19 +09:00
Bill Currie
5b9d241177 [qfcc] Add reference_expr() to create references
`address_expr()` wasn't enough because it returns pointers instead of
references (quite correct) which messes with checks for references
elsewhere (also quite correct). It seems I've finally got reference
parameters working.
2025-01-22 14:59:03 +09:00
Bill Currie
9c3dc555a3 [qfcc] More work towards proper reference handling
Generic function parameters can now use references (currently via
`@reference()`) for generic types. And seem to work. There's still a
problem with chains: `atomicExchange(__imageTexel(...))` is
dereferencing __imageTexel's return value.
2025-01-22 11:11:38 +09:00
Bill Currie
da6c5129eb [qfcc] Support @reference() in the same vein as @pointer
This allows computed reference types, especially tagged references.
2025-01-21 22:38:23 +09:00
Bill Currie
cdfc6bc704 [qfcc] Process and check for errors in compute_type
It turned out error checking on type functions was broken by generic
functions because type_function wasn't being called. The rest of the
changes were for error recovery.
2025-01-21 19:47:23 +09:00
Bill Currie
2d5f59777d [qfcc] Use string offset/id slots in strpool
This makes it a little easier to deal with unique strings, particularly
for spir-v.
2025-01-21 17:25:32 +09:00
Bill Currie
f4cbe3f220 [qfcc] Ensure compute shaders set all local_size elements
The default value is 1, and the assumption in target_spirv is that if
the first one is set, all are set, but the source code doesn't need to
set any explicitly.
2025-01-21 12:14:06 +09:00
Bill Currie
74f973cddc [qfcc] Mark is_auto as const
All it checks is the addres, so yeah. (I guess it's lto vs no lto)
2025-01-21 11:08:35 +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
21cf636875 [qtypes] Remove field_offset macro
And use offsetof instead: it has been standard (enough) in C for a
while.
2025-01-20 20:57:54 +09:00
Bill Currie
54231b21ed [qfcc] Add an is_auto helper function
It's cleaner than type == &type_auto and will allow me to check that
`auto` hasn't been aliased or something like that.
2025-01-20 12:26:57 +09:00
Bill Currie
498288b630 [build] Fix some distcheck issues
Let's do the distcheck again...
2025-01-20 08:33:57 +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
0143a2410c [qfcc] Use const type_t * for new_horizontal_expr
It was missed in the type_t const-correctness pass.
2025-01-20 00:51:38 +09:00
Bill Currie
f511bb31c5 [qfcc] Fix a typo in a comment 2025-01-20 00:50:09 +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
a4acfc30d7 [qfcc] Implement shadow coord/comp extraction
This took sorting out a few issues with type property evaluation, but it
seems to work nicely now. Just one known error to sort out and then it's
time to get the spir-v correct.
2025-01-18 11:59:05 +09:00
Bill Currie
c48fe5e7f5 [qfcc] Handle explicit arguments to intrinsics
There are problems with symbol lookup (eg, generic type names, image
operand names) but the system seems to be working: texelFetch ->
OpImageFetch (which uses explicit arguments even though it doesn't need
to) seems to set the arguments to OpImageFetch correctly.
2025-01-17 18:14:21 +09:00
Bill Currie
8e5fd85c0f [qfcc] Default fp constants to float for glsl
And support `lf` for double constants (always: I don't see the harm
other than minor confusion with C, but Ruamoko isn't C).
2025-01-16 18:02:44 +09:00
Bill Currie
e0e168620f [qfcc] Rename type attributes to properties
I had a feeling that attribute was wrong at the time, then I got
reminded of properties.
2025-01-16 17:31:04 +09:00
Bill Currie
1a1bbfd03a [qfcc] Detect interface blocks
This gets the `offset` layout working for block members.
2025-01-16 17:17:13 +09:00
Bill Currie
2aadb23a35 [qfcc] Move image attribute stuff out of glsl-parse
I won't say it belongs in glsl-builtins, though the glsl-specific stuff
probably does (glsl texture handling is a mess). Also adds sampler
attribute handling (which falls back to image when necessary).
2025-01-15 18:48:25 +09:00
Bill Currie
2c29dcd7d9 [qfcc] Allow more control of intrinsic functions
If `@intrinsic()` is followed by `[expr_list]` then those expresses will
be used to create the intrinsic rather than the function's parameters,
allowing for reordering, adding extra parameters or even complex
expressions.

However, only the parsing is implemented.
2025-01-15 18:47:56 +09:00
Bill Currie
92b476bf04 [qfcc] Make type attribute functions usable in expressions
Unfortunately, this require using different syntax for the two cases:
type.attr works in cases where types are expected, but not in
expressions (lots of shift/reduce and reduce/reduce conflicts). However,
treating type like an Objective-C class works nicely, though
`[type attrib(params)]` looks a little odd. However, this allows using
generic types to provide function calls (eg, converting texture
coordinates).
2025-01-15 18:31:37 +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
ed88152f85 [qfcc] Get type attribute working for computed types
It even handles errors :)
2025-01-14 01:02:31 +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