Imlements custom to generic type conversion
parent
79d4715799
commit
eb24206e13
|
@ -43,11 +43,13 @@ add_executable(
|
||||||
src/codegen.h
|
src/codegen.h
|
||||||
src/identcheck.h
|
src/identcheck.h
|
||||||
src/parser.h
|
src/parser.h
|
||||||
|
src/typeutils.h
|
||||||
src/util.h
|
src/util.h
|
||||||
src/ast.c
|
src/ast.c
|
||||||
src/codegen.c
|
src/codegen.c
|
||||||
src/identcheck.c
|
src/identcheck.c
|
||||||
src/parser.c
|
src/parser.c
|
||||||
|
src/typeutils.c
|
||||||
src/util.c
|
src/util.c
|
||||||
src/main.c
|
src/main.c
|
||||||
# Generated code
|
# Generated code
|
||||||
|
|
|
@ -1,6 +1,11 @@
|
||||||
struct Foo {
|
struct Foo {
|
||||||
|
static Func2<U>(u: U) : U {
|
||||||
|
return u;
|
||||||
|
}
|
||||||
|
|
||||||
static Func<T>(t: T): T {
|
static Func<T>(t: T): T {
|
||||||
return t;
|
foo: T = t;
|
||||||
|
return Func2(foo);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
30
src/ast.c
30
src/ast.c
|
@ -43,6 +43,8 @@ const char *SyntaxKindString(SyntaxKind syntaxKind)
|
||||||
return "GenericArgument";
|
return "GenericArgument";
|
||||||
case GenericArguments:
|
case GenericArguments:
|
||||||
return "GenericArguments";
|
return "GenericArguments";
|
||||||
|
case GenericTypeNode:
|
||||||
|
return "GenericTypeNode";
|
||||||
case Identifier:
|
case Identifier:
|
||||||
return "Identifier";
|
return "Identifier";
|
||||||
case IfStatement:
|
case IfStatement:
|
||||||
|
@ -405,6 +407,14 @@ Node *MakeEmptyGenericArgumentsNode()
|
||||||
return node;
|
return node;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Node *MakeGenericTypeNode(char *name)
|
||||||
|
{
|
||||||
|
Node *node = (Node *)malloc(sizeof(Node));
|
||||||
|
node->syntaxKind = GenericTypeNode;
|
||||||
|
node->genericType.name = strdup(name);
|
||||||
|
return node;
|
||||||
|
}
|
||||||
|
|
||||||
Node *MakeFunctionCallExpressionNode(
|
Node *MakeFunctionCallExpressionNode(
|
||||||
Node *identifierNode,
|
Node *identifierNode,
|
||||||
Node *argumentSequenceNode)
|
Node *argumentSequenceNode)
|
||||||
|
@ -633,6 +643,10 @@ void PrintNode(Node *node, uint32_t tabCount)
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
case GenericTypeNode:
|
||||||
|
printf("%s\n", node->genericType.name);
|
||||||
|
return;
|
||||||
|
|
||||||
case Identifier:
|
case Identifier:
|
||||||
if (node->typeTag == NULL)
|
if (node->typeTag == NULL)
|
||||||
{
|
{
|
||||||
|
@ -763,6 +777,10 @@ TypeTag *MakeTypeTag(Node *node)
|
||||||
tag = MakeTypeTag(node->allocExpression.type);
|
tag = MakeTypeTag(node->allocExpression.type);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case GenericTypeNode:
|
||||||
|
tag->type = Generic;
|
||||||
|
tag->value.genericType = strdup(node->genericType.name);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
fprintf(
|
fprintf(
|
||||||
stderr,
|
stderr,
|
||||||
|
@ -799,6 +817,16 @@ char *TypeTagToString(TypeTag *tag)
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
case Custom:
|
case Custom:
|
||||||
return tag->value.customType;
|
{
|
||||||
|
char *result = malloc(sizeof(char) * (strlen(tag->value.customType) + 8));
|
||||||
|
sprintf(result, "Custom<%s>", tag->value.customType);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
case Generic:
|
||||||
|
{
|
||||||
|
char *result = malloc(sizeof(char) * (strlen(tag->value.customType) + 9));
|
||||||
|
sprintf(result, "Generic<%s>", tag->value.customType);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
12
src/ast.h
12
src/ast.h
|
@ -32,6 +32,7 @@ typedef enum
|
||||||
FunctionSignatureArguments,
|
FunctionSignatureArguments,
|
||||||
GenericArgument,
|
GenericArgument,
|
||||||
GenericArguments,
|
GenericArguments,
|
||||||
|
GenericTypeNode,
|
||||||
Identifier,
|
Identifier,
|
||||||
IfStatement,
|
IfStatement,
|
||||||
IfElseStatement,
|
IfElseStatement,
|
||||||
|
@ -89,7 +90,8 @@ typedef struct TypeTag
|
||||||
Unknown,
|
Unknown,
|
||||||
Primitive,
|
Primitive,
|
||||||
Reference,
|
Reference,
|
||||||
Custom
|
Custom,
|
||||||
|
Generic
|
||||||
} type;
|
} type;
|
||||||
union
|
union
|
||||||
{
|
{
|
||||||
|
@ -99,6 +101,8 @@ typedef struct TypeTag
|
||||||
struct TypeTag *referenceType;
|
struct TypeTag *referenceType;
|
||||||
/* Valid when type = Custom. */
|
/* Valid when type = Custom. */
|
||||||
char *customType;
|
char *customType;
|
||||||
|
/* Valid when type = Generic. */
|
||||||
|
char *genericType;
|
||||||
} value;
|
} value;
|
||||||
} TypeTag;
|
} TypeTag;
|
||||||
|
|
||||||
|
@ -215,6 +219,11 @@ struct Node
|
||||||
uint32_t count;
|
uint32_t count;
|
||||||
} genericArguments;
|
} genericArguments;
|
||||||
|
|
||||||
|
struct
|
||||||
|
{
|
||||||
|
char *name;
|
||||||
|
} genericType;
|
||||||
|
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
char *name;
|
char *name;
|
||||||
|
@ -330,6 +339,7 @@ Node *MakeGenericArgumentNode(Node *identifierNode, Node *constraintNode);
|
||||||
Node *MakeEmptyGenericArgumentsNode();
|
Node *MakeEmptyGenericArgumentsNode();
|
||||||
Node *StartGenericArgumentsNode(Node *genericArgumentNode);
|
Node *StartGenericArgumentsNode(Node *genericArgumentNode);
|
||||||
Node *AddGenericArgument(Node *genericArgumentsNode, Node *genericArgumentNode);
|
Node *AddGenericArgument(Node *genericArgumentsNode, Node *genericArgumentNode);
|
||||||
|
Node *MakeGenericTypeNode(char *name);
|
||||||
Node *MakeStructDeclarationNode(
|
Node *MakeStructDeclarationNode(
|
||||||
Node *identifierNode,
|
Node *identifierNode,
|
||||||
Node *declarationSequenceNode);
|
Node *declarationSequenceNode);
|
||||||
|
|
11
src/main.c
11
src/main.c
|
@ -4,6 +4,7 @@
|
||||||
#include "codegen.h"
|
#include "codegen.h"
|
||||||
#include "identcheck.h"
|
#include "identcheck.h"
|
||||||
#include "parser.h"
|
#include "parser.h"
|
||||||
|
#include "typeutils.h"
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
|
@ -87,9 +88,19 @@ int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
IdNode *idTree = MakeIdTree(rootNode, NULL);
|
IdNode *idTree = MakeIdTree(rootNode, NULL);
|
||||||
|
printf("\n");
|
||||||
PrintIdTree(idTree, /*tabCount=*/0);
|
PrintIdTree(idTree, /*tabCount=*/0);
|
||||||
|
|
||||||
|
printf("\nConverting custom types in the ID-tree.\n");
|
||||||
|
ConvertIdCustomsToGenerics(idTree);
|
||||||
|
printf("\n");
|
||||||
|
PrintIdTree(idTree, /*tabCount=*/0);
|
||||||
|
|
||||||
|
printf("\nConverting custom type nodes in the AST.\n");
|
||||||
|
ConvertASTCustomsToGenerics(rootNode);
|
||||||
printf("\n");
|
printf("\n");
|
||||||
PrintNode(rootNode, /*tabCount=*/0);
|
PrintNode(rootNode, /*tabCount=*/0);
|
||||||
|
|
||||||
}
|
}
|
||||||
exitCode = Codegen(rootNode, optimizationLevel);
|
exitCode = Codegen(rootNode, optimizationLevel);
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,202 @@
|
||||||
|
#include "typeutils.h"
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
void ConvertIdCustomsToGenerics(IdNode *node) {
|
||||||
|
uint32_t i;
|
||||||
|
switch(node->type)
|
||||||
|
{
|
||||||
|
case UnorderedScope:
|
||||||
|
case OrderedScope:
|
||||||
|
case Struct:
|
||||||
|
/* FIXME: This case will need to be modified to handle type parameters over structs. */
|
||||||
|
for (i = 0; i < node->childCount; i += 1) {
|
||||||
|
ConvertIdCustomsToGenerics(node->children[i]);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
|
||||||
|
case Variable: {
|
||||||
|
TypeTag *varType = node->typeTag;
|
||||||
|
if (varType->type == Custom) {
|
||||||
|
IdNode *x = LookupId(node->parent, node, varType->value.customType);
|
||||||
|
if (x != NULL && x->type == GenericType) {
|
||||||
|
varType->type = Generic;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
case Function: {
|
||||||
|
TypeTag *funcType = node->typeTag;
|
||||||
|
if (funcType->type == Custom) {
|
||||||
|
/* For functions we have to handle the type lookup manually since the generic type
|
||||||
|
* identifiers are declared as children of the function's IdNode. */
|
||||||
|
for (i = 0; i < node->childCount; i += 1) {
|
||||||
|
IdNode *child = node->children[i];
|
||||||
|
if (child->type == GenericType && strcmp(child->name, funcType->value.customType) == 0) {
|
||||||
|
funcType->type = Generic;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (i = 0; i < node->childCount; i += 1) {
|
||||||
|
ConvertIdCustomsToGenerics(node->children[i]);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void ConvertASTCustomsToGenerics(Node *node) {
|
||||||
|
uint32_t i;
|
||||||
|
switch (node->syntaxKind) {
|
||||||
|
case AccessExpression:
|
||||||
|
ConvertASTCustomsToGenerics(node->accessExpression.accessee);
|
||||||
|
ConvertASTCustomsToGenerics(node->accessExpression.accessor);
|
||||||
|
return;
|
||||||
|
|
||||||
|
case AllocExpression:
|
||||||
|
ConvertASTCustomsToGenerics(node->allocExpression.type);
|
||||||
|
return;
|
||||||
|
|
||||||
|
case Assignment:
|
||||||
|
ConvertASTCustomsToGenerics(node->assignmentStatement.left);
|
||||||
|
ConvertASTCustomsToGenerics(node->assignmentStatement.right);
|
||||||
|
return;
|
||||||
|
|
||||||
|
case BinaryExpression:
|
||||||
|
ConvertASTCustomsToGenerics(node->binaryExpression.left);
|
||||||
|
ConvertASTCustomsToGenerics(node->binaryExpression.right);
|
||||||
|
return;
|
||||||
|
|
||||||
|
case Comment:
|
||||||
|
return;
|
||||||
|
|
||||||
|
case CustomTypeNode:
|
||||||
|
return;
|
||||||
|
|
||||||
|
case Declaration: {
|
||||||
|
Node *type = node->declaration.type->type.typeNode;
|
||||||
|
Node *id = node->declaration.identifier;
|
||||||
|
if (id->typeTag->type == Generic && type->syntaxKind == CustomTypeNode) {
|
||||||
|
free(node->declaration.type);
|
||||||
|
node->declaration.type = MakeGenericTypeNode(id->typeTag->value.genericType);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
case DeclarationSequence:
|
||||||
|
for (i = 0; i < node->declarationSequence.count; i += 1) {
|
||||||
|
ConvertASTCustomsToGenerics(node->declarationSequence.sequence[i]);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
|
||||||
|
case ForLoop:
|
||||||
|
ConvertASTCustomsToGenerics(node->forLoop.declaration);
|
||||||
|
ConvertASTCustomsToGenerics(node->forLoop.startNumber);
|
||||||
|
ConvertASTCustomsToGenerics(node->forLoop.endNumber);
|
||||||
|
ConvertASTCustomsToGenerics(node->forLoop.statementSequence);
|
||||||
|
return;
|
||||||
|
|
||||||
|
case FunctionArgumentSequence:
|
||||||
|
for (i = 0; i < node->functionArgumentSequence.count; i += 1) {
|
||||||
|
ConvertASTCustomsToGenerics(node->functionArgumentSequence.sequence[i]);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
|
||||||
|
case FunctionCallExpression:
|
||||||
|
ConvertASTCustomsToGenerics(node->functionCallExpression.identifier);
|
||||||
|
ConvertASTCustomsToGenerics(node->functionCallExpression.argumentSequence);
|
||||||
|
return;
|
||||||
|
|
||||||
|
case FunctionDeclaration:
|
||||||
|
ConvertASTCustomsToGenerics(node->functionDeclaration.functionSignature);
|
||||||
|
ConvertASTCustomsToGenerics(node->functionDeclaration.functionBody);
|
||||||
|
return;
|
||||||
|
|
||||||
|
case FunctionModifiers:
|
||||||
|
return;
|
||||||
|
|
||||||
|
case FunctionSignature:{
|
||||||
|
Node *id = node->functionSignature.identifier;
|
||||||
|
Node *type = node->functionSignature.type;
|
||||||
|
if (id->typeTag->type == Generic && type->syntaxKind == CustomTypeNode) {
|
||||||
|
free(node->functionSignature.type);
|
||||||
|
node->functionSignature.type = MakeGenericTypeNode(id->typeTag->value.genericType);
|
||||||
|
}
|
||||||
|
ConvertASTCustomsToGenerics(node->functionSignature.arguments);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
case FunctionSignatureArguments:
|
||||||
|
for (i = 0; i < node->functionSignatureArguments.count; i += 1) {
|
||||||
|
ConvertASTCustomsToGenerics(node->functionSignatureArguments.sequence[i]);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
|
||||||
|
case GenericArgument:
|
||||||
|
return;
|
||||||
|
|
||||||
|
case GenericArguments:
|
||||||
|
return;
|
||||||
|
|
||||||
|
case GenericTypeNode:
|
||||||
|
return;
|
||||||
|
|
||||||
|
case Identifier:
|
||||||
|
return;
|
||||||
|
|
||||||
|
case IfStatement:
|
||||||
|
ConvertASTCustomsToGenerics(node->ifStatement.expression);
|
||||||
|
ConvertASTCustomsToGenerics(node->ifStatement.statementSequence);
|
||||||
|
return;
|
||||||
|
|
||||||
|
case IfElseStatement:
|
||||||
|
ConvertASTCustomsToGenerics(node->ifElseStatement.ifStatement);
|
||||||
|
ConvertASTCustomsToGenerics(node->ifElseStatement.elseStatement);
|
||||||
|
return;
|
||||||
|
|
||||||
|
case Number:
|
||||||
|
return;
|
||||||
|
|
||||||
|
case PrimitiveTypeNode:
|
||||||
|
return;
|
||||||
|
|
||||||
|
case ReferenceTypeNode:
|
||||||
|
return;
|
||||||
|
|
||||||
|
case Return:
|
||||||
|
ConvertASTCustomsToGenerics(node->returnStatement.expression);
|
||||||
|
return;
|
||||||
|
|
||||||
|
case ReturnVoid:
|
||||||
|
return;
|
||||||
|
|
||||||
|
case StatementSequence:
|
||||||
|
for (i = 0; i < node->statementSequence.count; i += 1) {
|
||||||
|
ConvertASTCustomsToGenerics(node->statementSequence.sequence[i]);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
|
||||||
|
case StaticModifier:
|
||||||
|
return;
|
||||||
|
|
||||||
|
case StringLiteral:
|
||||||
|
return;
|
||||||
|
|
||||||
|
case StructDeclaration:
|
||||||
|
/* FIXME: This case will need to be modified to handle type parameters over structs. */
|
||||||
|
ConvertASTCustomsToGenerics(node->structDeclaration.identifier);
|
||||||
|
ConvertASTCustomsToGenerics(node->structDeclaration.declarationSequence);
|
||||||
|
return;
|
||||||
|
|
||||||
|
case Type:
|
||||||
|
return;
|
||||||
|
|
||||||
|
case UnaryExpression:
|
||||||
|
ConvertASTCustomsToGenerics(node->unaryExpression.child);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,13 @@
|
||||||
|
/* Helper functions for working with types in the AST and ID-tree. */
|
||||||
|
|
||||||
|
#ifndef WRAITH_TYPEUTILS_H
|
||||||
|
#define WRAITH_TYPEUTILS_H
|
||||||
|
|
||||||
|
#include "ast.h"
|
||||||
|
#include "identcheck.h"
|
||||||
|
|
||||||
|
/* FIXME: These two functions will need to be modified to handle type parameters over structs. */
|
||||||
|
void ConvertIdCustomsToGenerics(IdNode *node);
|
||||||
|
void ConvertASTCustomsToGenerics(Node *node);
|
||||||
|
|
||||||
|
#endif /* WRAITH_TYPEUTILS_H */
|
Loading…
Reference in New Issue