Bug 193550
| Summary: | [WHLSL] Fix the combination of setters and post-{increment/decrement} | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Robin Morisset <rmorisset> |
| Component: | WebGPU | Assignee: | Nobody <webkit-unassigned> |
| Status: | RESOLVED MOVED | ||
| Severity: | Normal | CC: | mmaxfield |
| Priority: | P2 | ||
| Version: | WebKit Nightly Build | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
Robin Morisset
The reference implementation currently behaves really weirdly on post-incrementing a field of a struct with an overriden setter (and getter).
It correctly uses the getter for having the current value, increment it, uses the setter for updating it.. but somehow returns the new value instead of the old one.
I believe this is a bug in the reference implementation.
Example:
```
struct Foo {
int z;
}
int operator.w(Foo foo) {
return 8;
}
Foo operator.w=(Foo foo, int value) {
foo.z = value;
return foo;
}
int bar() {
Foo foo;
foo.z = 3;
int value = foo.w++;
return value*100 + foo.z*10 + foo.w;
}
```
Calling bar() return 998 instead of 898 as I would expect.
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Myles C. Maxfield
Migrated to https://github.com/gpuweb/WHLSL/issues/319