summaryrefslogtreecommitdiff
path: root/source/slang/slang-lower-to-ir.cpp
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2023-08-09 20:11:09 -0700
committerGitHub <noreply@github.com>2023-08-09 20:11:09 -0700
commitf875d3f5ba9c1ddc6aa9a0960efd5ab27ae4e4c9 (patch)
tree42dae9fd6c260dfdafe7ce4a1ffc392e799c855d /source/slang/slang-lower-to-ir.cpp
parent03a5bb4bc0391e2de3c2dfb9ff3213bc0ccd9664 (diff)
Support implciit casted swizzled lvalue. (#3077)
* Support implciit casted swizzled lvalue. * Fix warnings. * Fix. * fix comment. * Prefer mangled linkage name for global params. * Update tests. --------- Co-authored-by: Yong He <yhe@nvidia.com>
Diffstat (limited to 'source/slang/slang-lower-to-ir.cpp')
-rw-r--r--source/slang/slang-lower-to-ir.cpp95
1 files changed, 73 insertions, 22 deletions
diff --git a/source/slang/slang-lower-to-ir.cpp b/source/slang/slang-lower-to-ir.cpp
index f642409a1..b1a38febd 100644
--- a/source/slang/slang-lower-to-ir.cpp
+++ b/source/slang/slang-lower-to-ir.cpp
@@ -98,6 +98,7 @@ struct SwizzledLValueInfo;
struct SwizzledMatrixLValueInfo;
struct CopiedValInfo;
struct ExtractedExistentialValInfo;
+struct ImplicitCastLValueInfo;
// This type is our core representation of lowered values.
// In the simple case, it just wraps an `IRInst*`.
@@ -138,6 +139,9 @@ struct LoweredValInfo
// The value extracted from an opened existential
ExtractedExistential,
+
+ // The L-Value that is an implicit cast.
+ ImplicitCastedLValue,
};
union
@@ -217,6 +221,9 @@ struct LoweredValInfo
static LoweredValInfo swizzledMatrixLValue(
SwizzledMatrixLValueInfo* extInfo);
+ static LoweredValInfo implicitCastedLValue(
+ ImplicitCastLValueInfo* extInfo);
+
SwizzledLValueInfo* getSwizzledLValueInfo()
{
SLANG_ASSERT(flavor == Flavor::SwizzledLValue);
@@ -237,6 +244,12 @@ struct LoweredValInfo
SLANG_ASSERT(flavor == Flavor::ExtractedExistential);
return (ExtractedExistentialValInfo*)ext;
}
+
+ ImplicitCastLValueInfo* getImplicitCastedLValue()
+ {
+ SLANG_ASSERT(flavor == Flavor::ImplicitCastedLValue);
+ return (ImplicitCastLValueInfo*)ext;
+ }
};
// This case is used to indicate a reference to an AST-level
@@ -362,6 +375,18 @@ struct ExtractedExistentialValInfo : ExtendedValueInfo
IRInst* witnessTable;
};
+struct ImplicitCastLValueInfo : ExtendedValueInfo
+{
+ // The type of the expression.
+ IRType* type;
+
+ // The base expression (this should be an l-value)
+ LoweredValInfo base;
+
+ // The type of the lvalue (inout, out, ref, etc.)
+ ParameterDirection lValueType;
+};
+
LoweredValInfo LoweredValInfo::boundMember(
BoundMemberInfo* boundMemberInfo)
{
@@ -407,6 +432,15 @@ LoweredValInfo LoweredValInfo::swizzledMatrixLValue(
return info;
}
+LoweredValInfo LoweredValInfo::implicitCastedLValue(
+ ImplicitCastLValueInfo* extInfo)
+{
+ LoweredValInfo info;
+ info.flavor = Flavor::ImplicitCastedLValue;
+ info.ext = extInfo;
+ return info;
+}
+
LoweredValInfo LoweredValInfo::extractedExistential(
ExtractedExistentialValInfo* extInfo)
{
@@ -1124,7 +1158,13 @@ top:
return LoweredValInfo::simple(info->extractedVal);
}
-
+ case LoweredValInfo::Flavor::ImplicitCastedLValue:
+ {
+ auto info = lowered.getImplicitCastedLValue();
+ auto baseVal = materialize(context, info->base);
+ auto result = builder->emitCast(info->type, getSimpleVal(context, baseVal));
+ return LoweredValInfo::simple(result);
+ }
default:
SLANG_UNEXPECTED("unhandled value flavor");
UNREACHABLE_RETURN(LoweredValInfo());
@@ -4461,30 +4501,17 @@ struct LValueExprLoweringVisitor : ExprLoweringVisitorBase<LValueExprLoweringVis
LoweredValInfo visitLValueImplicitCastExpr(LValueImplicitCastExpr* expr)
{
- auto builder = getBuilder();
-
auto irType = lowerType(context, expr->type);
- auto irPtrType = builder->getPtrType(irType);
-
auto loweredArg = lowerLValueExpr(context, expr->arguments[0]);
- // It should be a ptr, because it is a LValue
- SLANG_ASSERT(loweredArg.flavor == LoweredValInfo::Flavor::Ptr);
-
- // We have the irValue (which should be a Ptr because it's an LValue)
- auto irLValue = loweredArg.val;
-
- IRInst* irCast = nullptr;
+ RefPtr<ImplicitCastLValueInfo> lValueInfo = new ImplicitCastLValueInfo();
+ lValueInfo->type = irType;
+ lValueInfo->base = loweredArg;
+ lValueInfo->lValueType = kParameterDirection_InOut;
if (as<OutImplicitCastExpr>(expr))
- {
- irCast = builder->emitOutImplicitCast(irPtrType, irLValue);
- }
- else
- {
- irCast = builder->emitInOutImplicitCast(irPtrType, irLValue);
- }
-
- return LoweredValInfo::ptr(irCast);
+ lValueInfo->lValueType = kParameterDirection_Out;
+ context->shared->extValues.add(lValueInfo);
+ return LoweredValInfo::implicitCastedLValue(lValueInfo);
}
// When visiting a swizzle expression in an l-value context,
@@ -5850,7 +5877,21 @@ LoweredValInfo tryGetAddress(
return LoweredValInfo::swizzledMatrixLValue(newSwizzleInfo);
}
break;
-
+ case LoweredValInfo::Flavor::ImplicitCastedLValue:
+ {
+ auto info = val.getImplicitCastedLValue();
+ auto baseAddr = tryGetAddress(context, info->base, TryGetAddressMode::Aggressive);
+ if (baseAddr.flavor == LoweredValInfo::Flavor::Ptr)
+ {
+ IRInst* result = nullptr;
+ if (info->lValueType == kParameterDirection_InOut)
+ result = context->irBuilder->emitInOutImplicitCast(context->irBuilder->getPtrType(info->type), baseAddr.val);
+ else
+ result = context->irBuilder->emitOutImplicitCast(context->irBuilder->getPtrType(info->type), baseAddr.val);
+ return LoweredValInfo::ptr(result);
+ }
+ }
+ break;
// TODO: are there other cases we need to handled here?
default:
@@ -6242,6 +6283,16 @@ top:
}
break;
+ case LoweredValInfo::Flavor::ImplicitCastedLValue:
+ {
+ auto leftInfo = left.getImplicitCastedLValue();
+ left = leftInfo->base;
+ auto rightVal = getSimpleVal(context, right);
+ right = LoweredValInfo::simple(builder->emitCast(leftInfo->type, rightVal));
+ goto top;
+ }
+ break;
+
default:
SLANG_UNIMPLEMENTED_X("assignment");
break;