-
Notifications
You must be signed in to change notification settings - Fork 54
Description
Context
A bit of context to what we're doing.
We have a header-only library of HLSL (shading language resembling C++), where we use Boost Preprocess (BOOST_PP) to get around some ecosystem issues (lack of variadic templates, injecting a bit of reflection, etc.) and most fundamentally the DirectX Shader Compiler being based off Clang 3.7 meaning the preprocessor implementation is really old (no VA_OPT etc).
The problem with shading languages is that nobody has really developed a linker, so every shader compilation is what one would call a "Unity Build".
Now Boost.Wave isn't exactly a speed demon, and using BOOST_PP certainly doesn't help.
We also spice it up even more, by exploiting the fact that HLSL is "almost syntax compatible" with C++ and we often write headers containing algorithms (lower bounds, upper bounds, FFTs) that compile both as C++ and HLSL.
This Nabla HLSL STL is about 16000 LoC.
Due to this insane combo, it loves to crash Intellisense because Intellisense's preprocessor isn't exactly C++20 compliant.
What we're trying to get
We're trying to make the equivalent of PCH but for preprocessing.
This is both to make the further HLSL compilation (including residual preprocessing) faster, but also to cut a break to language servers like Intellisense (especially important when code is shared with C++) and get an overall better source-browsing experience. For example see our nasty reflection-struct defining macro:
NBL_HLSL_DEFINE_STRUCT((MyStruct),
((a, float32_t))
((b, int32_t))
((c, int32_t2))
);Wouldn't it be nice to actually see the code that generates?
Question
If it possible to dump all of Boost.Wave's context state in the form of #defines (and #pragmas if the state is more complex than can be represented with defines - but not that at least for headers we use guards) at the end of a file.
And if yes, how?