Fix swizzle-of-swizzle lvalues in ByteCodeGenerator

Bug: skia:10785
Change-Id: I01708af63d7e2ffc160022074ea9ff2b3c69eab5
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/320638
Reviewed-by: John Stiles <johnstiles@google.com>
Commit-Queue: Brian Osman <brianosman@google.com>
This commit is contained in:
Brian Osman 2020-09-29 13:20:04 -04:00 committed by Skia Commit-Bot
parent 24c5d2447f
commit 401a366eb1
2 changed files with 26 additions and 3 deletions

View File

@ -1557,15 +1557,24 @@ public:
// because the stack doesn't let us retain that address between stores. Dynamic locations // because the stack doesn't let us retain that address between stores. Dynamic locations
// are rare though, and swizzled writes to those are even rarer, so we just live with this. // are rare though, and swizzled writes to those are even rarer, so we just live with this.
for (int i = count; i-- > 0;) { for (int i = count; i-- > 0;) {
ByteCodeGenerator::Location location = fGenerator.getLocation(*fSwizzle.fBase); // If we have a swizzle-of-swizzle lvalue, we need to flatten that down to the final
// component index. (getLocation can't handle this case).
const Expression* expr = &fSwizzle;
int component = i;
do {
component = expr->as<Swizzle>().fComponents[component];
expr = expr->as<Swizzle>().fBase.get();
} while (expr->is<Swizzle>());
ByteCodeGenerator::Location location = fGenerator.getLocation(*expr);
if (!location.isOnStack()) { if (!location.isOnStack()) {
fGenerator.write(location.selectStore(ByteCodeInstruction::kStore, fGenerator.write(location.selectStore(ByteCodeInstruction::kStore,
ByteCodeInstruction::kStoreGlobal), ByteCodeInstruction::kStoreGlobal),
1); 1);
fGenerator.write8(location.fSlot + fSwizzle.fComponents[i]); fGenerator.write8(location.fSlot + component);
} else { } else {
fGenerator.write(ByteCodeInstruction::kPushImmediate); fGenerator.write(ByteCodeInstruction::kPushImmediate);
fGenerator.write32(fSwizzle.fComponents[i]); fGenerator.write32(component);
fGenerator.write(ByteCodeInstruction::kAddI, 1); fGenerator.write(ByteCodeInstruction::kAddI, 1);
fGenerator.write(location.selectStore(ByteCodeInstruction::kStoreExtended, fGenerator.write(location.selectStore(ByteCodeInstruction::kStoreExtended,
ByteCodeInstruction::kStoreExtendedGlobal), ByteCodeInstruction::kStoreExtendedGlobal),

View File

@ -815,6 +815,20 @@ DEF_TEST(SkSLInterpreterOutParams, r) {
1, 2, 3, 4, 3, 3, 1, 5); 1, 2, 3, 4, 3, 3, 1, 5);
} }
DEF_TEST(SkSLInterpreterSwizzleSingleLvalue, r) {
// Add in your SkSL here.
test(r,
"void main(inout half4 color) { color.xywz = half4(1,2,3,4); }",
0, 0, 0, 0, 1, 2, 4, 3);
}
DEF_TEST(SkSLInterpreterSwizzleDoubleLvalue, r) {
// Add in your SkSL here.
test(r,
"void main(inout half4 color) { color.xywz.yxzw = half4(1,2,3,4); }",
0, 0, 0, 0, 2, 1, 4, 3);
}
DEF_TEST(SkSLInterpreterMathFunctions, r) { DEF_TEST(SkSLInterpreterMathFunctions, r) {
float value[4], expected[4]; float value[4], expected[4];