// slang-check-type.cpp #include "slang-check-impl.h" // This file implements semantic checking logic related to types // and type expressions (aka `TypeRepr`). namespace Slang { Type* checkProperType( Linkage* linkage, TypeExp typeExp, DiagnosticSink* sink) { SharedSemanticsContext sharedSemanticsContext( linkage, sink); SemanticsVisitor visitor(&sharedSemanticsContext); auto typeOut = visitor.CheckProperType(typeExp); return typeOut.type; } Expr* SemanticsVisitor::TranslateTypeNodeImpl(Expr* node) { if (!node) return nullptr; auto expr = CheckTerm(node); expr = ExpectATypeRepr(expr); return expr; } Type* SemanticsVisitor::ExtractTypeFromTypeRepr(Expr* typeRepr) { if (!typeRepr) return nullptr; if (auto typeType = as(typeRepr->type)) { return typeType->type; } return m_astBuilder->getErrorType(); } Type* SemanticsVisitor::TranslateTypeNode(Expr* node) { if (!node) return nullptr; auto typeRepr = TranslateTypeNodeImpl(node); return ExtractTypeFromTypeRepr(typeRepr); } TypeExp SemanticsVisitor::TranslateTypeNodeForced(TypeExp const& typeExp) { auto typeRepr = TranslateTypeNodeImpl(typeExp.exp); TypeExp result; result.exp = typeRepr; result.type = ExtractTypeFromTypeRepr(typeRepr); return result; } TypeExp SemanticsVisitor::TranslateTypeNode(TypeExp const& typeExp) { // HACK(tfoley): It seems that in some cases we end up re-checking // syntax that we've already checked. We need to root-cause that // issue, but for now a quick fix in this case is to early // exist if we've already got a type associated here: if (typeExp.type) { return typeExp; } return TranslateTypeNodeForced(typeExp); } Expr* SemanticsVisitor::ExpectATypeRepr(Expr* expr) { if (auto overloadedExpr = as(expr)) { expr = resolveOverloadedExpr(overloadedExpr, LookupMask::type); } if (auto typeType = as(expr->type)) { return expr; } else if (auto errorType = as(expr->type)) { return expr; } getSink()->diagnose(expr, Diagnostics::expectedAType, expr->type); return CreateErrorExpr(expr); } Type* SemanticsVisitor::ExpectAType(Expr* expr) { auto typeRepr = ExpectATypeRepr(expr); if (auto typeType = as(typeRepr->type)) { return typeType->type; } return m_astBuilder->getErrorType(); } Type* SemanticsVisitor::ExtractGenericArgType(Expr* exp) { return ExpectAType(exp); } IntVal* SemanticsVisitor::ExtractGenericArgInteger(Expr* exp, DiagnosticSink* sink) { IntVal* val = CheckIntegerConstantExpression(exp, sink); if(val) return val; // If the argument expression could not be coerced to an integer // constant expression in context, then we will instead construct // a dummy "error" value to represent the result. // val = m_astBuilder->create(); return val; } IntVal* SemanticsVisitor::ExtractGenericArgInteger(Expr* exp) { return ExtractGenericArgInteger(exp, getSink()); } Val* SemanticsVisitor::ExtractGenericArgVal(Expr* exp) { if (auto overloadedExpr = as(exp)) { // assume that if it is overloaded, we want a type exp = resolveOverloadedExpr(overloadedExpr, LookupMask::type); } if (auto typeType = as(exp->type)) { return typeType->type; } else if (auto errorType = as(exp->type)) { return exp->type.type; } else { return ExtractGenericArgInteger(exp); } } Type* SemanticsVisitor::InstantiateGenericType( DeclRef genericDeclRef, List const& args) { GenericSubstitution* subst = m_astBuilder->create(); subst->genericDecl = genericDeclRef.getDecl(); subst->outer = genericDeclRef.substitutions.substitutions; for (auto argExpr : args) { subst->args.add(ExtractGenericArgVal(argExpr)); } DeclRef innerDeclRef; innerDeclRef.decl = getInner(genericDeclRef); innerDeclRef.substitutions = SubstitutionSet(subst); return DeclRefType::create(m_astBuilder, innerDeclRef); } bool SemanticsVisitor::CoerceToProperTypeImpl( TypeExp const& typeExp, Type** outProperType, DiagnosticSink* diagSink) { Type* type = typeExp.type; if(!type && typeExp.exp) { auto expr = typeExp.exp; expr = maybeResolveOverloadedExpr(expr, LookupMask::type, diagSink); if(auto typeType = as(expr->type)) { type = typeType->type; } } if (!type) { if (outProperType) { *outProperType = nullptr; } return false; } if (auto genericDeclRefType = as(type)) { // We are using a reference to a generic declaration as a concrete // type. This means we should substitute in any default parameter values // if they are available. // // TODO(tfoley): A more expressive type system would substitute in // "fresh" variables and then solve for their values... // auto genericDeclRef = genericDeclRefType->getDeclRef(); ensureDecl(genericDeclRef, DeclCheckState::CanSpecializeGeneric); List args; for (Decl* member : genericDeclRef.getDecl()->members) { if (auto typeParam = as(member)) { if (!typeParam->initType.exp) { if (diagSink) { diagSink->diagnose(typeExp.exp, Diagnostics::genericTypeNeedsArgs, typeExp); *outProperType = m_astBuilder->getErrorType(); } return false; } // TODO: this is one place where syntax should get cloned! if (outProperType) args.add(typeParam->initType.exp); } else if (auto valParam = as(member)) { if (!valParam->initExpr) { if (diagSink) { diagSink->diagnose(typeExp.exp, Diagnostics::unimplemented, "can't fill in default for generic type parameter"); *outProperType = m_astBuilder->getErrorType(); } return false; } // TODO: this is one place where syntax should get cloned! if (outProperType) args.add(valParam->initExpr); } else { // ignore non-parameter members } } if (outProperType) { *outProperType = InstantiateGenericType(genericDeclRef, args); } return true; } // default case: we expect this to already be a proper type if (outProperType) { *outProperType = type; } return true; } TypeExp SemanticsVisitor::CoerceToProperType(TypeExp const& typeExp) { TypeExp result = typeExp; CoerceToProperTypeImpl(typeExp, &result.type, getSink()); return result; } TypeExp SemanticsVisitor::tryCoerceToProperType(TypeExp const& typeExp) { TypeExp result = typeExp; if(!CoerceToProperTypeImpl(typeExp, &result.type, nullptr)) return TypeExp(); return result; } TypeExp SemanticsVisitor::CheckProperType(TypeExp typeExp) { return CoerceToProperType(TranslateTypeNode(typeExp)); } TypeExp SemanticsVisitor::CoerceToUsableType(TypeExp const& typeExp) { TypeExp result = CoerceToProperType(typeExp); Type* type = result.type; if (auto basicType = as(type)) { // TODO: `void` shouldn't be a basic type, to make this easier to avoid if (basicType->baseType == BaseType::Void) { // TODO(tfoley): pick the right diagnostic message getSink()->diagnose(result.exp, Diagnostics::invalidTypeVoid); result.type = m_astBuilder->getErrorType(); return result; } } return result; } TypeExp SemanticsVisitor::CheckUsableType(TypeExp typeExp) { return CoerceToUsableType(TranslateTypeNode(typeExp)); } bool SemanticsVisitor::ValuesAreEqual( IntVal* left, IntVal* right) { if(left == right) return true; if(auto leftConst = as(left)) { if(auto rightConst = as(right)) { return leftConst->value == rightConst->value; } } if(auto leftVar = as(left)) { if(auto rightVar = as(right)) { return leftVar->declRef.equals(rightVar->declRef); } } return false; } VectorExpressionType* SemanticsVisitor::createVectorType( Type* elementType, IntVal* elementCount) { auto vectorGenericDecl = as(m_astBuilder->getSharedASTBuilder()->findMagicDecl("Vector")); auto vectorTypeDecl = vectorGenericDecl->inner; auto substitutions = m_astBuilder->create(); substitutions->genericDecl = vectorGenericDecl; substitutions->args.add(elementType); substitutions->args.add(elementCount); auto declRef = DeclRef(vectorTypeDecl, substitutions); return as(DeclRefType::create(m_astBuilder, declRef)); } Expr* SemanticsExprVisitor::visitSharedTypeExpr(SharedTypeExpr* expr) { if (!expr->type.Ptr()) { expr->base = CheckProperType(expr->base); expr->type = expr->base.exp->type; } return expr; } Expr* SemanticsExprVisitor::visitTaggedUnionTypeExpr(TaggedUnionTypeExpr* expr) { // We have an expression of the form `__TaggedUnion(A, B, ...)` // which will evaluate to a tagged-union type over `A`, `B`, etc. // TaggedUnionType* type = m_astBuilder->create(); expr->type = QualType(m_astBuilder->getTypeType(type)); for( auto& caseTypeExpr : expr->caseTypes ) { caseTypeExpr = CheckProperType(caseTypeExpr); type->caseTypes.add(caseTypeExpr.type); } return expr; } }