Commit graph

3549 commits

Author SHA1 Message Date
Bill Currie
809cffa3a8 [qfcc] Quieten ubsan
0-length arrays certainly would be UB if I tried using them, but I guess
ubsan isn't smart enough for that.
2025-01-21 11:09:00 +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
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
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
5248e5a4ed [qfcc] Emit base vulkan capabilities
I probably missed some, and I should make the emission more selective,
but my vertex shaders all pass spirv-val (probably don't work, though).
2025-01-20 15:03:27 +09:00
Bill Currie
1f0d7f249c [qfcc] Move countof macro to qtypes
It makes it more accessible and easy to remove when it (or equivalent)
becomes standard in C.
2025-01-20 15:02:21 +09:00
Bill Currie
97a0763766 [qfcc] Do initializer type checking in declare_symbol
This is a nice common place (all languages and targets use it) for the
warning and any conversions, though those are still spread in various
places (and need to be cleaned up), so it doesn't do all that much yet.
2025-01-20 14:08:36 +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
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
a922088c1c [qfcc] Correct explicit lod's 0
It needs to be a float, not an int.
2025-01-20 11:42:25 +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
3a521ebe16 [qfcc] Support uint and enum in expr_int
Signed or unsigned isn't that important for internal errors.
2025-01-20 11:25:22 +09:00
Bill Currie
332c991064 [qfcc] Do type promotions for conditional expressions
Where possible of course, but the two results need to have the same
type. When not possible, an error is generated.
2025-01-20 10:17:01 +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
d10da51a1f [qfcc] Put unary expressions into the dag
Missed optimization opportunities.
2025-01-20 09:56:44 +09:00
Bill Currie
495a1c7994 [qfcc] Dereference explicit intrinsic arg references
The dereferencing was done for implicit intrinsic args, but I had
forgotten about it for explicit intrinsics. Now the scalar `a` version
of `mix` works.
2025-01-20 09:06:38 +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
1e88fec72c [qfcc] Promote enums so they can be used in math 2025-01-20 01:33:18 +09:00
Bill Currie
f92ab4f64b [qfcc] Make pointer-function casts two-way
This fixes the cast for the think function in game-source/fbxa.
2025-01-20 00:57:54 +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
21868d4a38 [qfcc] Don't try to vectorize vector/quaternion unary results
matrix_type doesn't like it and it's wrong anyway.
2025-01-18 23:15:29 +09:00
Bill Currie
1ec97632e6 [qfcc] Handle general types in boolean expressions
Probably need language-specific checks (eg, glsl doesn't accept anything
but bool for && etc).
2025-01-18 23:13:55 +09:00
Bill Currie
d3bcd0c3a3 [qfcc] Dump message expression dots 2025-01-18 23:12:47 +09:00
Bill Currie
f713d53fb6 [qfcc] Allow local/param function variables
I thought that was needed, but wasn't sure. It is :P.
2025-01-18 20:51:47 +09:00
Bill Currie
d05fcecae4 [qfcc] Handle storage blocks for parameters
Klik is the only code base that uses them, so the param storage class
check got confused by them.
2025-01-18 20:48:40 +09:00
Bill Currie
df04a37a8c [qfcc] Count terms correctly
Parentheses confused the term counting because they weren't taken into
account for the "neither expression can be split" check, resulting in a
later segfault due to walking off the end of the array.
2025-01-18 20:47:06 +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
77158130ca [qfcc] Flush dags aggressively for if statements
I'm sure there are more places that need flushing, but this gets
game-code/quakeworld building.
2025-01-18 20:36:23 +09:00
Bill Currie
fd52c055e0 [qfcc] Default math.vector_mult correctly
The check was bogus in that it had `!val == 0` for non-traditional, and
was checking the wrong spot for traditional.
2025-01-18 20:36:23 +09:00
Bill Currie
2c204d40b2 [qfcc] Check const_initializers option for constexpr
This is probably not right for spir-v, but it fixes initialized defs in
switch case labels (qc legacy with the defs).
2025-01-18 20:36:23 +09:00
Bill Currie
2cf14e13ec [qfcc] Process state frame and step expressions
Just a victim of the deferred processing. `think` can't be processed
because it can act as a forward declaration (qc legacy).
2025-01-18 15:24:46 +09:00
Bill Currie
3881147210 [qfcc] Check return value for null in has_function_call
Avoids a segfault when dagging. I'm not sure how a switch statement got
into the dags, but still don't want a segfault there.
2025-01-18 15:23:37 +09:00
Bill Currie
8d69dd85eb [qfcc] Allow some mixing of vector/quaternion types
That is, vector ops with 3-component general vectors and quaternion ops
with 3 and 4 component general vectors "promote" the general vectors to
vector or quaternion as appropriate. Needed for operations with
vector and quaternion literals.
2025-01-18 15:20:59 +09:00
Bill Currie
1950c03195 [qfcc] Promote types for bitops
Bitops are allowed for float operands in quakec and ruamoko (not glsl,
but meh for now). Fixes another ice in game-source/quake.
2025-01-18 14:13:40 +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
42f1f39329 [qfcc] Support subpassInput for image_coord
Easiest to special case it since tex_coord uses the same dim_widths
array.
2025-01-17 22:18:49 +09:00
Bill Currie
1a019ad818 [qfcc] Use the param scope for explicit intrinsics
Explicit intrinsics are very similar to inline functions, so the
function data for generic explicit intrinsics functions also need a full
scope. Fixes the undefined symbols for generic type names.
2025-01-17 22:12:38 +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
393ef8f455 [qfcc] Define the geometry functions
Now all my glsl shaders build, though most likely none of them
correctly. However, I'm finally out of that tunnel... only to find
myself in a moonlit forest fill with the sounds of wolves (at least, I
hope they're wolves).
2025-01-17 11:56:54 +09:00
Bill Currie
7bbe0d991b [qfcc] Declare block instance arrays correctly
I think this was broken by the deferred type processing, but now my
geometry shaders try to emit code (fail due to missing function
definitions).
2025-01-17 11:52:45 +09:00
Bill Currie
3e32ce4caf [qfcc] Improve error checking for arrays
The checks had been lost with the move to deferred semantics. Fixes an
internal error when trying to index a non-array-compatible object.
2025-01-17 11:29:06 +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
6ff1704246 [qfcc] Implement min and the pack/unpack functions
Well... at least as far as marking the intrinsics. Still need to
implement parameterized intrinsics.
2025-01-16 17:18:17 +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
456594a4fe [qfcc] Implement many glsl functions
All was fine... until the texture handling. Ugh, what a mess: 16
variants of "texture", times all the sampler variants. And I haven't
done even half of them.
2025-01-15 18:48:25 +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
351136a636 [qfcc] Fix a few segfaults compiling glsl 2025-01-15 18:23:25 +09:00
Bill Currie
376f8f2c09 [qfcc] Check rows/columns for type promotion
There's no automatic type promotion between scalars, vectors or matrices
of different component counts.
2025-01-14 13:20:12 +09:00
Bill Currie
2f3097aed7 [qfcc] Fix the subpassLoad functions
I had forgotten that subpassInput can't be used but the normal imageLoad
functions since they don't (and mustn't, by the spec) have subpassInput
as a possible type. While creating a specialized version works, I think
I need to come up with a better way of specifying intrinsics.
2025-01-14 01:27:11 +09:00
Bill Currie
341504261a [qfcc] Get the abs functions working
Well... probably (again, build issues).
2025-01-14 01:27:11 +09:00
Bill Currie
64bbdbda44 [qfcc] Fix up the atomic functions
It seems the base atomic functions should use const for the data
parameters and just a reference for the mem parameter (not entirely sure
yet as I need to check with spirv-val, but there are still build
issues). Using __imageTexel correctly took a little thinking since it
returns a pointer but the atomic functions take a reference.
2025-01-14 01:27:11 +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
9ba335f91e [qfcc] Use maximum cost for non-matching param counts
I had missed this so such cases wound up with a cost of 0 resulting in
bogusly ambiguous function calls (or possibly worse).
2025-01-14 01:11:19 +09:00
Bill Currie
17ae2b592c [qfcc] Support attributes on image types
And rename base_type to sample_type: I decided it was a better name as
it's "sampled type" in the spir-v spec.
2025-01-14 01:07:00 +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
Bill Currie
9dca83d40a [qfcc] Fix some errors in subpassLoad
Used the wrong generic type name for gvec4*, and missed @construct. Now
gridplane.frag tries to generate spir-v again (fails due to the
instruction names).
2025-01-13 19:55:27 +09:00
Bill Currie
cb20153da5 [qfcc] Handle field expressions in compute_type
I'm not entirely sure how that got in there (I didn't check the
backtrace, but probably in @construct (before I realized I needed to add
@construct)).
2025-01-13 19:50:23 +09:00
Bill Currie
9dca372643 [qfcc] Compare parameter type compute programs
This allows generic parameters to be computed as well as the return
type (without segfaulting :P).
2025-01-13 19:48:22 +09:00
Bill Currie
c830bb55c3 [qfcc] Use default_type on generic spec
Needed for implied int return types (unsigned etc).
2025-01-13 19:46:35 +09:00
Bill Currie
388a1c6c28 [qfcc] Use names for spir-v intrinsic opcodes
Everything is smashed because the names aren't looked up yet, but
removing magic numbers is almost always a good thing.
2025-01-13 17:54:44 +09:00
Bill Currie
e0e3998efc [qfcc] Semi-implement some glsl layout attributes
They're still just stubs, but the error noise is down.
2025-01-13 17:52:15 +09:00
Bill Currie
b28cd673ae [qfcc] Prefer fixed types over generic
This allows the various vector,vector and vector,scalar to disambiguate.
2025-01-13 17:47:52 +09:00
Bill Currie
027ad12c72 [qfcc] Support add/sub for matrix/vector and scalar operands
GLSL needs it, and it's not entirely unreasonable (though I'll probably
add some flags to control it since it doesn't always make sense).
2025-01-13 12:52:12 +09:00
Bill Currie
320f9e2fe7 [qfcc] Support type.attribute on any type
The goal is to make it easy to get size/coord/base types from image
types without creating a zillion type functions.

It was necessary to make it possible for any type to have an attribute
function (returns an expression so it can be more useful: types are
returned via type expressions). Algebra types were the first victim
(which was nice for testing).
2025-01-13 00:10:27 +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
42fc1323e1 [qfcc] Clean up glsl for loops
The changes for deferred semantics in Ruamoko broke for loops for GLSL,
but matching GLSL's structure to Ruamoko's cleaned things up nicely.
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
03bbfde5f1 [qfcc] Get some more texture functions implemented
GLSL's texture functions are a bit of a nightmare. The return types are
wrong, but I need to decide how I want to pull the sample type from a
texture or sampler.
2025-01-10 01:00:00 +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
6e004e9baa [qfcc] Implement generic type computation
I had already implemented the code generation side (though using type
ids instead of encodings is a nice change), but I hadn't implemented the
actual evaluation or even called it. Now return types can be computed
from generic parameters (eg, ivecN from vecN).
2025-01-10 00:56:02 +09:00
Bill Currie
76fcc2f1a9 [qfcc] Support nil expressions in spir-v 2025-01-09 17:49:20 +09:00
Bill Currie
1d0135be52 [qfcc] Support nil in matrix construction
While not used by glsl, ruamoko will and qfcc does internally.
2025-01-09 17:48:39 +09:00
Bill Currie
a93c109988 [qfcc] Improve spir-v entry point handling
It's still not great (mostly on the language side, I think), but
different glsl shader types get the correct model and fragment shaders
even get the correct mode.
2025-01-09 17:29:27 +09:00
Bill Currie
4998968169 [qfcc] Emit spirv image type encodings
Access qualifiers aren't supported yet, and some of the image handling
is a bit messy (currently tied to glsl when it should be general), but
the basics are there. However, now I've got to sort out the execution
model (need Fragment or GLCompute for ImplicitLod).
2025-01-09 01:29:38 +09:00
Bill Currie
99b1859aac [qfcc] Parse the spirv grammar json files
I really don't like the way they're included (I'm really looking forward
to #embed, but gotta wait for gcc 15), and I'm a tad grumpy that the
documentation for them
(https://registry.khronos.org/SPIR-V/specs/unified1/MachineReadableGrammar.html)
is wrong (missing fields), but I think I like the result.

The grammars (core and glsl.std.450) are parsed into structs that should
be fairly easy to interpret: the instructions, kinds, and enumerant
values are sorted by name for search with bsearch. Having the data
parsed in means source code can refer to the items by name rather than
magic numbers, which will be very nice for intrinsics and image types
(and probably a few other things).
2025-01-07 03:26:12 +09:00
Bill Currie
400486931f [qfcc] Allow languages to hook number parsing
The idea is to allow certain contexts to interpret something like `2D`
as an identifier instead of 2.0 (double), or (not sure I'll go there,
5e12 as a bivector instead of a double or float.
2025-01-04 12:51:30 +09:00
Bill Currie
9aea4d4b61 [qfcc] Update glsl function declaration handling
Finally back to where I was before discovering that arrays with computed
counts didn't work.
2025-01-03 21:58:33 +09:00
Bill Currie
ea3198e8fe [qfcc] Update generic handling for the new type scheme
And clean up some redundant (premature!) spec processing.
2025-01-03 21:27:28 +09:00
Bill Currie
ae4c107384 [qfcc] Add type_process for type functions
I'm not quite sure it's what I need, but it does help with resolving
types with complex expressions (eg, `@vector(bool,@width(vec))`).
2025-01-03 17:55:08 +09:00
Bill Currie
bec8b290d2 [qfcc] Resurrect is_function
In the end, it does simplify things a lot, though it helped get function
pointers working at least a bit (they're not quite the same as C yet,
but I think that's mostly that functions can be struct fields).
2025-01-03 17:52:19 +09:00
Bill Currie
99632ddb03 [qfcc] Rework function/pointer/array declarations
They should now work in generic contexts, but the pressing need to work
on arrays was due to constant expressions for element counts breaking.
As a side effect, function pointers are now a thing (and seem to work
like they do in C)
2025-01-03 13:22:29 +09:00
Bill Currie
fd836e74e1 [qfcc] Check implicit is the same for dagged values
Not doing so results in subtle bugs such as implicit constants becoming
explicit behind the programmer's back.
2025-01-03 13:22:29 +09:00
Bill Currie
6af7ff2867 [qfcc] Ensure processed expressions are dagged
GA expressions need to be optimized so things that should cancel out do,
and this requires everything to be dagged. Doing so in expr_process gets
most of the expressions, and then a few stragglers in proc_field. There
might still be some more, but my test scene compiles again.
2025-01-03 02:34:15 +09:00
Bill Currie
34fe4efc9d Revert "[qfcc] Don't fold constants for algebra"
This reverts commit e87e01e4f2.

In the end, this wasn't necessary, and it causes problems in itself.
2025-01-03 01:03:28 +09:00
Bill Currie
6b38fdca35 [qfcc] Remove unwanted spec symbol assignments
I suspect they were once for dealing with class and typedef names in
selectors, but they're confusing things now that I'm trying to rework
type declarations, and I doubt they were ever actually needed.
2025-01-02 14:24:55 +09:00
Bill Currie
0ea47193f2 [qfcc] Support sizeof expressions in dot output 2025-01-02 11:18:38 +09:00
Bill Currie
625c53180f [qfcc] Propagate rua_ctx_t to more functions
It will eventually get to most places, but this set is necessary for
using expr_process in expr_type.c
2024-12-23 22:03:47 +09:00
Bill Currie
4bdc27b0cd [qfcc] Support struct/enum/handle in type_ref
Forward declarations in generic type refs might have surprising effects
(though they seem to work anyway), but at least they won't cause parse
errors.
2024-12-23 21:44:07 +09:00
Bill Currie
85e6df9374 [qfcc] Clean up some use of default_type
And use typename for handles (still only int/long but better than a
parse error).
2024-12-23 14:59:02 +09:00
Bill Currie
79411aabc4 [qfcc] Rework token pasting
Now it seems to actually work. I don't know if it's compliant with the
spec, but I do at least get expected results, even for some error
conditions.
2024-12-23 14:59:02 +09:00
Bill Currie
15ddd8fea9 [qfcc] Do a better check for recursive macro invocations
Simply checking if the macro's next pointer was set wasn't enough for
when the macro was at the end of the chain (or the only macro in the
chain).
2024-12-23 14:59:02 +09:00
Bill Currie
a57ea628ca [qfcc] Handle swizzle expressions when processing
I suspect this is actually a bug in parameter setup for inline function
calls, but it would certainly be a bug to get an unprocessed swizzle
expression as they're generated from field expressions.
2024-12-13 15:10:00 +09:00
Bill Currie
0337a7cd80 [qfcc] Handle integral aliases in spir-v
Needed for array indexing using unsigned indices.
2024-12-13 15:02:22 +09:00
Bill Currie
74637fffbc [qfcc] Implement the actual return from inline
It's just a jump to a label at the end of the block, but it's enough for
now as it takes care of the assumption that the return is the last
expression in the inlined function.
2024-12-12 11:19:24 +09:00
Bill Currie
626680f22f [qfcc] Handle return in inline functions
The code is pretty lousy in that it assumes there's only one `return`
and it's the end of the function, and the generated code is even worse
(too many load/store ops in the spir-v), but it looks like it at least
works. It does pass validation.
2024-12-12 11:08:30 +09:00
Bill Currie
21eed88da5 [qfcc] Allow initializers in param symtabs for spir-v
This gets the incoming parameters initialized, though currently rather
suboptimally (but that's due to the setup of the call). Next, just need
to handle `return` in inline functions.
2024-12-12 00:39:09 +09:00
Bill Currie
ae0cfe47cc [qfcc] Dereference constructor parameters
Sometimes, premature optimization can help, but whatever. Finally,
alias.vert compiles, but the output is fairly broken (incorrect handling
of `return` and the parameters aren't initialized).
2024-12-11 23:22:28 +09:00
Bill Currie
3eef231d70 [qfcc] Give anonymous block instances a name
They need a valid name for the stricter checks. The name is taken from
the interface name, and since that needs to be unique, prepending a `.`
should be enough.
2024-12-11 23:22:05 +09:00
Bill Currie
14ac685330 [qfcc] Initialize parameters with their arguments
However, once past a couple of errors, they're not getting initialized
in the spir-v, so I've probably missed something there. For now I've
kept things simple and made them regular variables regardless of
qualifiers (and no support for out/inout yet).
2024-12-11 23:16:57 +09:00
Bill Currie
5380c2b04c [qfcc] Process block result even when independent
If the block's result is just a variable reference, it won't match any
expression in the block's list so it needs to be processed independently
in such cases. The `mix(genFType x, genFType y, float a)` inline now
gets as far as spir-v code gen although there are still many issues to
fix (parameter symbols, `return` handling, etc).
2024-12-11 18:24:23 +09:00
Bill Currie
5b13bcf11c [qfcc] Report undefined symbols in proc_symbol
This required always recording the unmangled function symbol, but helps
with error checks in the long run.
2024-12-11 16:31:24 +09:00
Bill Currie
fc519054f2 [qfcc] Check for errors in call processing
Wasn't nice getting segfaults in the constructor code due to simple
errors.
2024-12-11 16:07:43 +09:00
Bill Currie
a0f09b13cf [qfcc] Set current function for inlined functions
It improves error reporting and is even a solution for what to do with
return statements in inline functions.
2024-12-11 16:05:50 +09:00
Bill Currie
36c0b45bab [qfcc] Add an @construct type function
I decided to not mess with actual casts. In retrospect, this is probably
for the best as it avoids any bit-cast conflicts, but should allow for
block initializers with a few tweaks. `@construct (type, args...)` in
Ruamoko follows the same path as `type(args...)` in glsl.
2024-12-11 13:54:11 +09:00
Bill Currie
6840a208b9 [qfcc] Implement inline function calls
They're buggy in that the defspaces for parameters and locals are
incorrect (they need to point to the calling scope's space). Also,
parameters are not yet hooked up correctly. However, errors (because I
need to allow casts from scalars to vectors) do get handled.
2024-12-11 03:16:15 +09:00
Bill Currie
36cf1f948e [qfcc] Add bypass scopes
Because the symbol tables for generic functions are ephemeral (as such),
they need to be easily removed from the scope chain, it's easiest if
definitions are never added to them (instead, they get added to the
parent symbol table). This keeps handling of function declarations or
definitions and their parameter scopes simple as the function gets put
in the global scope still, and the parameter scope simply gets
reconnected to the global scope (really, the generic scope's parent)
when the parameter scope is popped within a generic scope.
2024-12-11 03:06:50 +09:00
Bill Currie
c8158f9ebe [qfcc] Support type expressions in default_type
Needed for using type expressions in casts (eg in generic functions).
2024-12-11 02:46:47 +09:00
Bill Currie
b2049f496b [qfcc] Save caller to new_symbol* in symbol_t
I should go through and do this for all the structs (not looking forward
to expr_t) as it's sometimes quite handy to know who created something.
2024-12-11 02:41:13 +09:00
Bill Currie
306306fc5a [qfcc] Move semantic processing into build_code_function
In the end, I could have done the null context check for pascal, but I
think the xvalue support will come in handy for implementing inline
functions.
2024-12-08 20:01:06 +09:00
Bill Currie
7379b1226d [qfcc] Check for procedures properly in return value
I guess either I goofed and thought void functions had no return type at
all, or at one stage that was the case, but either way, I had never
tested procedures.
2024-12-08 19:17:24 +09:00
Bill Currie
35c0b84ccc [qfcc] Ensure pascal functions always have a block
I had never tested empty functions, so I hadn't noticed they cause a
segfault.
2024-12-08 19:16:29 +09:00
Bill Currie
4a8c53aa6f [qfcc] Add partial support for renamed builtins
The back-end support for renamed builtins (fte's = #0:name) was needed
for pascal functions because the internal name is now prefixed with an @
to allow the lvalue/rvalue selection of behavior for function symbols
2024-12-08 19:13:49 +09:00
Bill Currie
27c3ee4c39 [qfcc] Use deferred semantics for quake pascal
This catches qp up with qc and glsl, which means I can modify all three
languages to support inline functions at the same time. There is the
minor(?) problem of attempting to pass parameters to a
function/procedure that takes none producing the wrong error, but that's
documented in the parser.
2024-12-08 19:12:04 +09:00
Bill Currie
38c64c61b9 [qfcc] Make new_call_expr non-const
I really don't remember why I made it const. Although there are still
others, new_* exression calls are meant to be mutable.
2024-12-08 19:03:41 +09:00
Bill Currie
1e19335b44 [qfcc] Add xvalue expressions and symbols
xvalue symbols refer to two expressions: an lvalue and an rvalue. They
are meant to be used with xvalue expressions.

xvalue expressions are useful when a distinction must be made between
the behavior of something (eg, a pascal function symbol) must change
depending on whether it's an lvalue (assignment of the function's return
value) or an rvalue (a call to the function, especially when the
function takes no parameters).
2024-12-08 18:59:40 +09:00
Bill Currie
ed984e6eae [qfcc] Use raw symbols for field names
Rather than new_name_expr (which messes with the symbol table): field
names just don't need lookup in general, especially for known
structs/vectors.
2024-12-08 00:03:12 +09:00
Bill Currie
213ac2a328 [qfcc] Use a context object to hold current language
Because the glsl front-end uses Ruamoko to compile its builtins, it
needs to switch languages, and the cleanest way to do so is to use a
context object that gets passed around. This removes not only the
current_language global, but also (as a bonus) any real references to
flex's scanner object (there's still a pointer in rua_ctx_t, but it's no
longer a parameter (which caused some pain in the change)).
2024-12-07 23:55:48 +09:00
Bill Currie
e87e01e4f2 [qfcc] Don't fold constants for algebra
While it is a pessimism, I really want to get rid of fold_constants (in
favor of something smarter), and it's currently in the way of more
important things.
2024-12-07 19:09:10 +09:00
Bill Currie
bbc7fcd207 [qfcc] Remove convert_name
It's no longer necessary with the shift to deferred semantics.  The
remaining relevant functionality has been moved to proc_symbol.
2024-12-07 18:35:01 +09:00
Bill Currie
9c037ce79d [qfcc] Clean up some cruft in the glsl parser 2024-12-07 02:53:56 +09:00
Bill Currie
c5d77141eb [qfcc] Defer Ruamoko semantics processing
The main goal was to make it possible to give generic functions
definitions (since the code would be very dependent on the actual
parameter types), but will also allow for inline functions. It also
helped move a lot of the back-end dependent code out of semantics
processing and almost completely (if not completely) out of the parser.
Possibly more importantly, it gets the dags flushing out of the parser,
which means such is now shared by all front-ends.

There's probably a lot of dead code in expr.c now, but that can be taken
care of another time.
2024-12-07 02:38:00 +09:00
Bill Currie
d08816cb6b [qfcc] Update offset for aliased defs
When getting an offset alias of an already aliased def, the offset needs
to be updated so it points to the correct part of the def. This is
actually a rather old bug but it got uncovered somehow with my rework of
the ruamoko semantic processing (probably an altered cast).
2024-12-07 00:22:53 +09:00
Bill Currie
4e3bacd827 [qfcc] Fix handling of a single id in ... macros
If the id isn't a parameter or other macro, then it can't be empty and
thus the va_args aren't empty.
2024-12-06 22:38:58 +09:00
Bill Currie
bc1b9893a7 [qfcc] Fix vector constructions from scalars
Yet another bit of is_vector/is_nonscalar confusion.
2024-12-05 16:11:59 +09:00
Bill Currie
ec436ee65e [qfcc] Put definition for generic functions in genfunc
It is then copied to the metafunc when finding the actual function to
call. Fixes the last definition defining all instances.
2024-12-05 16:08:39 +09:00
Bill Currie
a5366bf7f9 [qfcc] Fix matrix indexing for ruamoko
The change to exclude matrices from is_nonscalar broke indexing of the
columns.
2024-12-05 14:24:14 +09:00
Bill Currie
639818cca5 [qfcc] Handle unsigned int correctly
I'd missed the one case, so such declarations wound up just `int`
2024-12-05 13:12:27 +09:00
Bill Currie
b4387cd881 [qfcc] Finish type decl for type_ref
I guess I'd wanted to avoid supporting automatic types in type
functions, but that broke long and unsigned int: either no type, or just
int, depending on the decl style.
2024-12-05 13:10:11 +09:00
Bill Currie
a938f1c507 [qfcc] Define the glsl mix builtins
Unfortunately, it turns out that generic functions are over-grouped so
all functions with the same name get the last definition, so `mix` with
a float (which should get GLSLstd450FMix) gets the bool version instead
(SpvOpSelect).
2024-12-05 12:19:04 +09:00
Bill Currie
9f9aecfeec [qfcc] Fix function disambiguation
I was checking for duplicate best matches too early. Local minimum (or
inflection point, really) problem.
2024-12-05 12:08:08 +09:00
Bill Currie
277c5a2318 [qfcc] Optimize matrix construction from a matrix
If the source matrix has at least as many rows as the new matrix, then
the columns are taken from the columns (possibly shortened via swizzle).
2024-12-05 11:45:01 +09:00
Bill Currie
ad45715359 [qfcc] Clean up duplicated vector list construction
I wound up with a few too many copies for my liking.
2024-12-05 11:13:08 +09:00
Bill Currie
81aa77b142 [qfcc] Optimize matrix construction from vectors
When the number of supplied vectors matches the number of columns in the
matrix and all vectors have the same width as the number of rows in the
matrix, there's no need to expand the vectors into components only to be
gathered again.
2024-12-05 10:31:32 +09:00
Bill Currie
14e39627cc [qfcc] Construct matrices by vectors
SPIR-V requires that matrices are constructed from vectors rather than
individual components. While not optimal, iqm.vert's output now passes
spirv-val. Also probably still lots wrong with fine details.
2024-12-05 10:03:01 +09:00
Bill Currie
f014d3f580 [qfcc] Clean up logical not and bool expressions
Got to get rid of a FIXME :)
2024-12-05 02:02:14 +09:00
Bill Currie
4b7025fa0b [qfcc] Implement matrix ops in spirv
And they pass spirv-val.
2024-12-05 02:00:35 +09:00
Bill Currie
a9bff23a6a [qfcc] Define the glsl normalize functions
I think I need to come up with a better way of defining glsl builtins
and the strings are rather ugly (and I don't want to use qfcc system
header files).

iqm.vert now compiles, but doesn't pass validation yet (matrix bugs).
2024-12-05 00:30:17 +09:00
Bill Currie
2a5c9ae45b [qfcc] Emit spirv array types correctly
Array count is an id, not a literal. Oops.
2024-12-05 00:27:27 +09:00
Bill Currie
c185d2463b [qfcc] Support matrices in spirv output
With a few more fixes, iqm.vert builds nicely.
2024-12-05 00:26:07 +09:00
Bill Currie
5e053fe270 [qfcc] Fix an overflow for matrix values
ex_value_t keeps getting bigger :P
2024-12-05 00:22:38 +09:00