diff options
| author | Yong He <yonghe@outlook.com> | 2020-09-14 12:26:54 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-14 12:26:54 -0700 |
| commit | 03050997b90b6c07bfdc5ca9c0c08cd278b1b1dd (patch) | |
| tree | 9cbfece387e960bedc3df3236eaaf0236c7bff0b /source/slang | |
| parent | 2e3688af574738650c2753680ce9f417fb22e5e7 (diff) | |
Support shader parameters that are an array of existential type. (#1542)
* Support shader parameters that are an array of existential type.
* Rename to getFirstNonExistentialValueCategory
Co-authored-by: Yong He <yhe@nvidia.com>
Diffstat (limited to 'source/slang')
| -rw-r--r-- | source/slang/slang-ir-insts.h | 14 | ||||
| -rw-r--r-- | source/slang/slang-ir-specialize.cpp | 94 | ||||
| -rw-r--r-- | source/slang/slang-type-layout.cpp | 15 |
3 files changed, 119 insertions, 4 deletions
diff --git a/source/slang/slang-ir-insts.h b/source/slang/slang-ir-insts.h index 18641d8b7..3b390015b 100644 --- a/source/slang/slang-ir-insts.h +++ b/source/slang/slang-ir-insts.h @@ -1244,6 +1244,20 @@ struct IRFieldAddress : IRInst }; +struct IRGetElement : IRInst +{ + IR_LEAF_ISA(getElement); + IRInst* getBase() { return getOperand(0); } + IRInst* getIndex() { return getOperand(1); } +}; + +struct IRGetElementPtr : IRInst +{ + IR_LEAF_ISA(getElementPtr); + IRInst* getBase() { return getOperand(0); } + IRInst* getIndex() { return getOperand(1); } +}; + struct IRGetAddress : IRInst { IR_LEAF_ISA(getAddr); diff --git a/source/slang/slang-ir-specialize.cpp b/source/slang/slang-ir-specialize.cpp index 7cbba9737..d364de3fb 100644 --- a/source/slang/slang-ir-specialize.cpp +++ b/source/slang/slang-ir-specialize.cpp @@ -530,6 +530,13 @@ struct SpecializationContext maybeSpecializeFieldAddress(as<IRFieldAddress>(inst)); break; + case kIROp_getElement: + maybeSpecializeGetElement(as<IRGetElement>(inst)); + break; + case kIROp_getElementPtr: + maybeSpecializeGetElementAddress(as<IRGetElementPtr>(inst)); + break; + case kIROp_BindExistentialsType: maybeSpecializeBindExistentialsType(as<IRBindExistentialsType>(inst)); break; @@ -1506,6 +1513,11 @@ struct SpecializationContext type = ptrLikeType->getElementType(); goto top; } + else if (auto arrayType = as<IRArrayTypeBase>(type)) + { + type = arrayType->getElementType(); + goto top; + } else if( auto structType = as<IRStructType>(type) ) { UInt count = 0; @@ -1695,6 +1707,82 @@ struct SpecializationContext } } + void maybeSpecializeGetElement(IRGetElement* inst) + { + auto baseArg = inst->getBase(); + if (auto wrapInst = as<IRWrapExistential>(baseArg)) + { + // We have `getElement(wrapExistential(val, ...), index)` + // We need to replace this instruction with + // `wrapExistential(getElement(val, index), ...)` + auto index = inst->getIndex(); + + auto val = wrapInst->getWrappedValue(); + auto resultType = inst->getFullType(); + + IRBuilder builder; + builder.sharedBuilder = &sharedBuilderStorage; + builder.setInsertBefore(inst); + + auto elementType = cast<IRArrayTypeBase>(val->getDataType())->getElementType(); + + List<IRInst*> slotOperands; + UInt slotOperandCount = wrapInst->getSlotOperandCount(); + + for (UInt ii = 0; ii < slotOperandCount; ++ii) + { + slotOperands.add(wrapInst->getSlotOperand(ii)); + } + + auto newGetElement = builder.emitElementExtract(elementType, val, index); + + auto newWrapExistentialInst = builder.emitWrapExistential( + resultType, newGetElement, slotOperandCount, slotOperands.getBuffer()); + + addUsersToWorkList(inst); + inst->replaceUsesWith(newWrapExistentialInst); + inst->removeAndDeallocate(); + } + } + + void maybeSpecializeGetElementAddress(IRGetElementPtr* inst) + { + auto baseArg = inst->getBase(); + if (auto wrapInst = as<IRWrapExistential>(baseArg)) + { + // We have `getElementPtr(wrapExistential(val, ...), index)` + // We need to replace this instruction with + // `wrapExistential(getElementPtr(val, index), ...)` + auto index = inst->getIndex(); + + auto val = wrapInst->getWrappedValue(); + auto resultType = inst->getFullType(); + + IRBuilder builder; + builder.sharedBuilder = &sharedBuilderStorage; + builder.setInsertBefore(inst); + + auto elementType = cast<IRArrayTypeBase>(val->getDataType())->getElementType(); + + List<IRInst*> slotOperands; + UInt slotOperandCount = wrapInst->getSlotOperandCount(); + + for (UInt ii = 0; ii < slotOperandCount; ++ii) + { + slotOperands.add(wrapInst->getSlotOperand(ii)); + } + + auto newElementAddr = builder.emitElementAddress(elementType, val, index); + + auto newWrapExistentialInst = builder.emitWrapExistential( + resultType, newElementAddr, slotOperandCount, slotOperands.getBuffer()); + + addUsersToWorkList(inst); + inst->replaceUsesWith(newWrapExistentialInst); + inst->removeAndDeallocate(); + } + } + UInt calcExistentialTypeParamSlotCount(IRType* type) { top: @@ -1764,7 +1852,9 @@ struct SpecializationContext type->removeAndDeallocate(); return; } - else if( as<IRPointerLikeType>(baseType) || as<IRHLSLStructuredBufferTypeBase>(baseType) ) + else if( as<IRPointerLikeType>(baseType) || + as<IRHLSLStructuredBufferTypeBase>(baseType) || + as<IRArrayTypeBase>(baseType)) { // A `BindExistentials<P<T>, ...>` can be simplified to // `P<BindExistentials<T, ...>>` when `P` is a pointer-like @@ -1773,6 +1863,8 @@ struct SpecializationContext IRType* baseElementType = nullptr; if (auto basePtrLikeType = as<IRPointerLikeType>(baseType)) baseElementType = basePtrLikeType->getElementType(); + else if (auto arrayType = as<IRArrayTypeBase>(baseType)) + baseElementType = arrayType->getElementType(); else if (auto baseSBType = as<IRHLSLStructuredBufferTypeBase>(baseType)) baseElementType = baseSBType->getElementType(); diff --git a/source/slang/slang-type-layout.cpp b/source/slang/slang-type-layout.cpp index 46a521f79..88ec5f4f7 100644 --- a/source/slang/slang-type-layout.cpp +++ b/source/slang/slang-type-layout.cpp @@ -3489,6 +3489,13 @@ static TypeLayoutResult _createTypeLayout( { arrayResourceCount = elementResourceInfo.count; } + // The second exception to this is arrays of an existential type + // where the entire array should be specialized to a single concrete type. + // + else if (elementResourceInfo.kind == LayoutResourceKind::ExistentialTypeParam) + { + arrayResourceCount = elementResourceInfo.count; + } // // The next big exception is when we are forming an unbounded-size // array and the element type got "adjusted," because that means @@ -3677,6 +3684,7 @@ static TypeLayoutResult _createTypeLayout( typeLayout->rules = rules; LayoutSize fixedExistentialValueSize = 0; + LayoutSize uniformSlotSize = 0; bool targetSupportsPointer = isCPUTarget(context.targetReq) || isCUDATarget(context.targetReq); @@ -3689,7 +3697,7 @@ static TypeLayoutResult _createTypeLayout( fixedExistentialValueSize = anyValueAttr->size; } // Append 16 bytes to accommodate RTTI pointer and witness table pointer. - auto uniformSlotSize = fixedExistentialValueSize + 16; + uniformSlotSize = fixedExistentialValueSize + 16; typeLayout->addResourceUsage(LayoutResourceKind::Uniform, uniformSlotSize); } typeLayout->addResourceUsage(LayoutResourceKind::ExistentialTypeParam, 1); @@ -3736,8 +3744,9 @@ static TypeLayoutResult _createTypeLayout( typeLayout->pendingDataTypeLayout = concreteTypeLayout; } } - - return TypeLayoutResult(typeLayout, SimpleLayoutInfo()); + // Interface type occupies a uniform slot for the fixed size storage, with alignment of 4 bytes. + return TypeLayoutResult( + typeLayout, SimpleLayoutInfo(LayoutResourceKind::Uniform, uniformSlotSize, 4)); } else if( auto enumDeclRef = declRef.as<EnumDecl>() ) { |
