Skip to content

Commit ec55ac4

Browse files
Reorder existential tuple elements. (shader-slang#1516)
Co-authored-by: Tim Foley <tim.foley.is@gmail.com>
1 parent 2dc1f89 commit ec55ac4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

source/slang/slang-ir-generics-lowering-context.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ namespace Slang
164164
auto anyValueType = builder->getAnyValueType(anyValueSize);
165165
auto witnessTableType = builder->getWitnessTableType((IRType*)paramType);
166166
auto rttiType = builder->getPtrType(builder->getRTTIType());
167-
auto tupleType = builder->getTupleType(anyValueType, witnessTableType, rttiType);
167+
auto tupleType = builder->getTupleType(rttiType, witnessTableType, anyValueType);
168168
return tupleType;
169169
}
170170
case kIROp_lookup_interface_method:

source/slang/slang-ir-lower-existential.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace Slang
2525
auto anyValueSize = sharedContext->getInterfaceAnyValueSize(interfaceType, inst->sourceLoc);
2626
auto anyValueType = builder->getAnyValueType(anyValueSize);
2727
auto rttiType = builder->getPtrType(builder->getRTTIType());
28-
auto tupleType = builder->getTupleType(anyValueType, witnessTableType, rttiType);
28+
auto tupleType = builder->getTupleType(rttiType, witnessTableType, anyValueType);
2929

3030
IRInst* rttiObject = inst->getRTTI();
3131
if (auto type = as<IRType>(rttiObject))
@@ -36,7 +36,7 @@ namespace Slang
3636
IRInst* packedValue = value;
3737
if (valueType->op != kIROp_AnyValueType)
3838
packedValue = builder->emitPackAnyValue(anyValueType, value);
39-
IRInst* tupleArgs[] = { packedValue, inst->getWitnessTable(), rttiObject };
39+
IRInst* tupleArgs[] = {rttiObject, inst->getWitnessTable(), packedValue};
4040
auto tuple = builder->emitMakeTuple(tupleType, 3, tupleArgs);
4141
inst->replaceUsesWith(tuple);
4242
inst->removeAndDeallocate();
@@ -66,7 +66,7 @@ namespace Slang
6666

6767
void processExtractExistentialValue(IRExtractExistentialValue* inst)
6868
{
69-
processExtractExistentialElement(inst, 0);
69+
processExtractExistentialElement(inst, 2);
7070
}
7171

7272
void processExtractExistentialWitnessTable(IRExtractExistentialWitnessTable* inst)
@@ -76,7 +76,7 @@ namespace Slang
7676

7777
void processExtractExistentialType(IRExtractExistentialType* inst)
7878
{
79-
processExtractExistentialElement(inst, 2);
79+
processExtractExistentialElement(inst, 0);
8080
}
8181

8282
void processInst(IRInst* inst)

0 commit comments

Comments
 (0)