Skip to content

Commit 3e78e46

Browse files
author
Tim Foley
authored
Support shifts and a few other ops in front-end constant folding (shader-slang#1027)
The set of supported operations in front-end constant folding was very limited: `+`, `-`, `*`, `/`, and `%`. This meant that enum declarations like: ``` enum MyBits { A = 1 << 0, B = 1 << 1, C = A | C, } ``` would fail to compile, with a claim that the expressions like `1 << 0` aren't compile-time constants. This change adds `<<`, `>>`, `&`, `|`, and `^` to the list of integer operations we will cosntant-fold in the front-end. It also changes one of the declarations in the existing test case for `enum`s to use the added functionality. Note that this change does *not* address the more deep-seated problems with our approach to constant-folding in the front-end. It does not change the constant folding to rely on IR machinery, or to allow for more general `constexpr` functions, and it does not address the fact that constant-folding is currently applied without paying attention to the type (and thus precision) of the original expression.
1 parent 3284144 commit 3e78e46

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

source/slang/slang-check.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -5359,6 +5359,11 @@ namespace Slang
53595359

53605360
CASE(+); // TODO: this can also be unary...
53615361
CASE(*);
5362+
CASE(<<);
5363+
CASE(>>);
5364+
CASE(&);
5365+
CASE(|);
5366+
CASE(^);
53625367
#undef CASE
53635368

53645369
// binary operators with chance of divide-by-zero

tests/compute/enum.slang

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
enum Color
88
{
99
Red,
10-
Green = 2,
10+
Green = (1 << 1),
1111
Blue,
1212
}
1313

0 commit comments

Comments
 (0)