wraith-lang/src/compiler.c

992 lines
29 KiB
C
Raw Normal View History

2021-04-18 22:29:54 +00:00
#include <stdio.h>
2021-04-20 01:18:45 +00:00
#include <stdlib.h>
#include <string.h>
2021-04-18 22:29:54 +00:00
#include <llvm-c/Core.h>
2021-04-20 01:18:45 +00:00
#include <llvm-c/Analysis.h>
#include <llvm-c/BitWriter.h>
2021-04-22 07:35:42 +00:00
#include <llvm-c/Object.h>
2021-04-22 05:48:55 +00:00
#include <llvm-c/Transforms/PassManagerBuilder.h>
#include <llvm-c/Transforms/InstCombine.h>
#include <llvm-c/Transforms/Scalar.h>
#include <llvm-c/Transforms/Utils.h>
2021-04-22 07:35:42 +00:00
#include <llvm-c/TargetMachine.h>
2021-04-22 17:27:39 +00:00
#include <llvm-c/Target.h>
2021-04-18 22:45:06 +00:00
2021-04-18 22:29:54 +00:00
#include "y.tab.h"
2021-04-18 22:45:06 +00:00
#include "ast.h"
2021-04-18 22:29:54 +00:00
#include "stack.h"
2021-04-28 22:21:51 +00:00
#include "../lib/dropt/dropt.h"
2021-04-18 22:29:54 +00:00
extern FILE *yyin;
Stack *stack;
2021-04-18 22:45:06 +00:00
Node *rootNode;
2021-04-22 04:29:38 +00:00
typedef struct LocalVariable
{
char *name;
LLVMValueRef pointer;
} LocalVariable;
typedef struct FunctionArgument
2021-04-21 02:00:18 +00:00
{
char *name;
LLVMValueRef value;
2021-04-22 04:29:38 +00:00
} FunctionArgument;
typedef struct ScopeFrame
{
LocalVariable *localVariables;
uint32_t localVariableCount;
} ScopeFrame;
typedef struct Scope
{
ScopeFrame *scopeStack;
uint32_t scopeStackCount;
} Scope;
Scope *scope;
typedef struct StructTypeField
{
char *name;
2021-04-21 02:40:39 +00:00
uint32_t index;
2021-04-22 04:29:38 +00:00
} StructTypeField;
2021-04-21 02:00:18 +00:00
2021-04-23 00:19:35 +00:00
typedef struct StructTypeFunction
{
char *name;
LLVMValueRef function;
LLVMTypeRef returnType;
uint8_t isStatic;
} StructTypeFunction;
2021-04-23 05:37:23 +00:00
typedef struct StructTypeDeclaration
2021-04-21 02:00:18 +00:00
{
2021-04-23 05:37:23 +00:00
char *name;
2021-04-22 04:29:38 +00:00
LLVMTypeRef structType;
2021-04-23 05:37:23 +00:00
LLVMTypeRef structPointerType;
2021-04-22 04:29:38 +00:00
StructTypeField *fields;
2021-04-21 02:00:18 +00:00
uint32_t fieldCount;
2021-04-23 00:19:35 +00:00
StructTypeFunction *functions;
uint32_t functionCount;
2021-04-23 05:37:23 +00:00
} StructTypeDeclaration;
2021-04-21 02:00:18 +00:00
2021-04-23 05:37:23 +00:00
StructTypeDeclaration *structTypeDeclarations;
uint32_t structTypeDeclarationCount;
2021-04-22 04:29:38 +00:00
static Scope* CreateScope()
2021-04-21 02:00:18 +00:00
{
2021-04-22 04:29:38 +00:00
Scope *scope = malloc(sizeof(Scope));
scope->scopeStack = malloc(sizeof(ScopeFrame));
scope->scopeStack[0].localVariableCount = 0;
scope->scopeStack[0].localVariables = NULL;
scope->scopeStackCount = 1;
return scope;
2021-04-21 02:00:18 +00:00
}
2021-04-22 04:29:38 +00:00
static void PushScopeFrame(Scope *scope)
2021-04-21 02:00:18 +00:00
{
2021-04-22 04:29:38 +00:00
uint32_t index = scope->scopeStackCount;
scope->scopeStack = realloc(scope->scopeStack, sizeof(ScopeFrame) * (scope->scopeStackCount + 1));
scope->scopeStack[index].localVariableCount = 0;
scope->scopeStack[index].localVariables = NULL;
scope->scopeStackCount += 1;
}
2021-04-21 02:00:18 +00:00
2021-04-22 04:29:38 +00:00
static void PopScopeFrame(Scope *scope)
{
uint32_t i;
uint32_t index = scope->scopeStackCount - 1;
if (scope->scopeStack[index].localVariables != NULL)
{
for (i = 0; i < scope->scopeStack[index].localVariableCount; i += 1)
{
free(scope->scopeStack[index].localVariables[i].name);
2021-04-21 02:00:18 +00:00
}
2021-04-22 04:29:38 +00:00
free(scope->scopeStack[index].localVariables);
2021-04-21 02:00:18 +00:00
}
2021-04-22 04:29:38 +00:00
scope->scopeStackCount -= 1;
scope->scopeStack = realloc(scope->scopeStack, sizeof(ScopeFrame) * scope->scopeStackCount);
2021-04-21 02:00:18 +00:00
}
2021-04-22 04:29:38 +00:00
static void AddLocalVariable(Scope *scope, LLVMValueRef pointer, char *name)
2021-04-21 02:40:39 +00:00
{
2021-04-22 04:29:38 +00:00
ScopeFrame *scopeFrame = &scope->scopeStack[scope->scopeStackCount - 1];
uint32_t index = scopeFrame->localVariableCount;
scopeFrame->localVariables = realloc(scopeFrame->localVariables, sizeof(LocalVariable) * (scopeFrame->localVariableCount + 1));
scopeFrame->localVariables[index].name = strdup(name);
scopeFrame->localVariables[index].pointer = pointer;
scopeFrame->localVariableCount += 1;
}
2021-04-21 02:40:39 +00:00
2021-04-24 20:53:21 +00:00
static LLVMTypeRef WraithTypeToLLVMType(PrimitiveType type)
{
switch (type)
{
case Int:
return LLVMInt64Type();
case UInt:
return LLVMInt64Type();
case Bool:
return LLVMInt1Type();
case Void:
return LLVMVoidType();
}
fprintf(stderr, "Unrecognized type!");
return NULL;
}
2021-04-23 05:37:23 +00:00
static LLVMTypeRef FindStructType(char *name)
{
uint32_t i;
for (i = 0; i < structTypeDeclarationCount; i += 1)
{
if (strcmp(structTypeDeclarations[i].name, name) == 0)
{
return structTypeDeclarations[i].structType;
}
}
return NULL;
}
2021-04-22 04:29:38 +00:00
static LLVMValueRef FindStructFieldPointer(LLVMBuilderRef builder, LLVMValueRef structPointer, char *name)
{
int32_t i, j;
2021-04-23 05:37:23 +00:00
LLVMTypeRef structPointerType = LLVMTypeOf(structPointer);
2021-04-22 04:29:38 +00:00
2021-04-23 05:37:23 +00:00
for (i = 0; i < structTypeDeclarationCount; i += 1)
2021-04-21 02:40:39 +00:00
{
2021-04-23 05:37:23 +00:00
if (structTypeDeclarations[i].structPointerType == structPointerType)
2021-04-21 02:40:39 +00:00
{
2021-04-23 05:37:23 +00:00
for (j = 0; j < structTypeDeclarations[i].fieldCount; j += 1)
2021-04-21 02:40:39 +00:00
{
2021-04-23 05:37:23 +00:00
if (strcmp(structTypeDeclarations[i].fields[j].name, name) == 0)
2021-04-21 02:40:39 +00:00
{
2021-04-22 04:29:38 +00:00
char *ptrName = strdup(name);
strcat(ptrName, "_ptr");
return LLVMBuildStructGEP(
builder,
structPointer,
2021-04-23 05:37:23 +00:00
structTypeDeclarations[i].fields[j].index,
2021-04-22 04:29:38 +00:00
ptrName
);
free(ptrName);
2021-04-21 02:40:39 +00:00
}
}
}
}
2021-04-22 04:29:38 +00:00
printf("Failed to find struct field pointer!");
2021-04-21 02:40:39 +00:00
return NULL;
}
2021-04-22 04:29:38 +00:00
static LLVMValueRef FindVariablePointer(char *name)
2021-04-21 02:07:11 +00:00
{
2021-04-22 04:29:38 +00:00
int32_t i, j;
2021-04-21 02:07:11 +00:00
2021-04-22 04:29:38 +00:00
for (i = scope->scopeStackCount - 1; i >= 0; i -= 1)
2021-04-21 02:07:11 +00:00
{
2021-04-22 04:29:38 +00:00
for (j = 0; j < scope->scopeStack[i].localVariableCount; j += 1)
2021-04-21 02:07:11 +00:00
{
2021-04-22 04:29:38 +00:00
if (strcmp(scope->scopeStack[i].localVariables[j].name, name) == 0)
2021-04-21 02:07:11 +00:00
{
2021-04-22 04:29:38 +00:00
return scope->scopeStack[i].localVariables[j].pointer;
2021-04-21 02:07:11 +00:00
}
}
}
2021-04-22 04:29:38 +00:00
printf("Failed to find variable pointer!");
return NULL;
2021-04-21 02:07:11 +00:00
}
2021-04-22 04:29:38 +00:00
static LLVMValueRef FindVariableValue(LLVMBuilderRef builder, char *name)
2021-04-21 02:00:18 +00:00
{
2021-04-22 04:29:38 +00:00
int32_t i, j;
2021-04-21 02:00:18 +00:00
2021-04-22 04:29:38 +00:00
for (i = scope->scopeStackCount - 1; i >= 0; i -= 1)
2021-04-21 02:00:18 +00:00
{
2021-04-22 04:29:38 +00:00
for (j = 0; j < scope->scopeStack[i].localVariableCount; j += 1)
{
if (strcmp(scope->scopeStack[i].localVariables[j].name, name) == 0)
{
return LLVMBuildLoad(builder, scope->scopeStack[i].localVariables[j].pointer, name);
2021-04-21 02:00:18 +00:00
}
}
}
2021-04-22 04:29:38 +00:00
printf("Failed to find variable value!");
2021-04-21 02:00:18 +00:00
return NULL;
}
2021-04-22 04:29:38 +00:00
static void AddStructDeclaration(
LLVMTypeRef wStructType,
2021-04-23 05:37:23 +00:00
LLVMTypeRef wStructPointerType,
char *name,
2021-04-22 04:29:38 +00:00
Node **fieldDeclarations,
uint32_t fieldDeclarationCount
) {
uint32_t i;
2021-04-23 05:37:23 +00:00
uint32_t index = structTypeDeclarationCount;
structTypeDeclarations = realloc(structTypeDeclarations, sizeof(StructTypeDeclaration) * (structTypeDeclarationCount + 1));
structTypeDeclarations[index].structType = wStructType;
structTypeDeclarations[index].structPointerType = wStructPointerType;
structTypeDeclarations[index].name = strdup(name);
structTypeDeclarations[index].fields = NULL;
structTypeDeclarations[index].fieldCount = 0;
structTypeDeclarations[index].functions = NULL;
structTypeDeclarations[index].functionCount = 0;
2021-04-22 04:29:38 +00:00
for (i = 0; i < fieldDeclarationCount; i += 1)
{
2021-04-23 05:37:23 +00:00
structTypeDeclarations[index].fields = realloc(structTypeDeclarations[index].fields, sizeof(StructTypeField) * (structTypeDeclarations[index].fieldCount + 1));
structTypeDeclarations[index].fields[i].name = strdup(fieldDeclarations[i]->children[1]->value.string);
structTypeDeclarations[index].fields[i].index = i;
structTypeDeclarations[index].fieldCount += 1;
2021-04-22 04:29:38 +00:00
}
2021-04-23 05:37:23 +00:00
structTypeDeclarationCount += 1;
2021-04-22 04:29:38 +00:00
}
2021-04-23 00:19:35 +00:00
static void DeclareStructFunction(
2021-04-23 05:37:23 +00:00
LLVMTypeRef wStructPointerType,
2021-04-23 00:19:35 +00:00
LLVMValueRef function,
LLVMTypeRef returnType,
uint8_t isStatic,
char *name
) {
uint32_t i, index;
2021-04-23 05:37:23 +00:00
for (i = 0; i < structTypeDeclarationCount; i += 1)
2021-04-23 00:19:35 +00:00
{
2021-04-23 05:37:23 +00:00
if (structTypeDeclarations[i].structPointerType == wStructPointerType)
2021-04-23 00:19:35 +00:00
{
2021-04-23 05:37:23 +00:00
index = structTypeDeclarations[i].functionCount;
structTypeDeclarations[i].functions = realloc(structTypeDeclarations[i].functions, sizeof(StructTypeFunction) * (structTypeDeclarations[i].functionCount + 1));
structTypeDeclarations[i].functions[index].name = strdup(name);
structTypeDeclarations[i].functions[index].function = function;
structTypeDeclarations[i].functions[index].returnType = returnType;
structTypeDeclarations[i].functions[index].isStatic = isStatic;
structTypeDeclarations[i].functionCount += 1;
2021-04-23 00:19:35 +00:00
return;
}
}
2021-04-23 05:37:23 +00:00
fprintf(stderr, "Could not find struct type for function!\n");
2021-04-23 00:19:35 +00:00
}
2021-04-23 05:37:23 +00:00
static LLVMTypeRef LookupCustomType(char *name)
{
uint32_t i;
for (i = 0; i < structTypeDeclarationCount; i += 1)
{
if (strcmp(structTypeDeclarations[i].name, name) == 0)
{
return structTypeDeclarations[i].structType;
}
}
fprintf(stderr, "Could not find struct type!\n");
return NULL;
}
2021-04-24 20:53:21 +00:00
static LLVMTypeRef ResolveType(Node* typeNode)
{
if (IsPrimitiveType(typeNode))
{
return WraithTypeToLLVMType(typeNode->children[0]->primitiveType);
}
else if (typeNode->children[0]->syntaxKind == CustomTypeNode)
{
char *typeName = typeNode->children[0]->value.string;
return LookupCustomType(typeName);
}
else if (typeNode->children[0]->syntaxKind == ReferenceTypeNode)
{
return LLVMPointerType(ResolveType(typeNode->children[0]->children[0]), 0);
}
else
{
fprintf(stderr, "Unknown type node!\n");
return NULL;
}
}
2021-04-23 05:37:23 +00:00
static LLVMValueRef LookupFunctionByType(
LLVMTypeRef structType,
char *name,
LLVMTypeRef *pReturnType,
uint8_t *pStatic
) {
uint32_t i, j;
for (i = 0; i < structTypeDeclarationCount; i += 1)
{
if (structTypeDeclarations[i].structType == structType)
{
for (j = 0; j < structTypeDeclarations[i].functionCount; j += 1)
{
if (strcmp(structTypeDeclarations[i].functions[j].name, name) == 0)
{
*pReturnType = structTypeDeclarations[i].functions[j].returnType;
*pStatic = structTypeDeclarations[i].functions[j].isStatic;
return structTypeDeclarations[i].functions[j].function;
}
}
}
}
fprintf(stderr, "Could not find struct function!\n");
return NULL;
}
static LLVMValueRef LookupFunctionByPointerType(
LLVMTypeRef structPointerType,
2021-04-23 00:19:35 +00:00
char *name,
LLVMTypeRef *pReturnType,
uint8_t *pStatic
) {
uint32_t i, j;
2021-04-23 05:37:23 +00:00
for (i = 0; i < structTypeDeclarationCount; i += 1)
2021-04-23 00:19:35 +00:00
{
2021-04-23 05:37:23 +00:00
if (structTypeDeclarations[i].structPointerType == structPointerType)
2021-04-23 00:19:35 +00:00
{
2021-04-23 05:37:23 +00:00
for (j = 0; j < structTypeDeclarations[i].functionCount; j += 1)
2021-04-23 00:19:35 +00:00
{
2021-04-23 05:37:23 +00:00
if (strcmp(structTypeDeclarations[i].functions[j].name, name) == 0)
2021-04-23 00:19:35 +00:00
{
2021-04-23 05:37:23 +00:00
*pReturnType = structTypeDeclarations[i].functions[j].returnType;
*pStatic = structTypeDeclarations[i].functions[j].isStatic;
return structTypeDeclarations[i].functions[j].function;
2021-04-23 00:19:35 +00:00
}
}
}
}
2021-04-23 05:37:23 +00:00
fprintf(stderr, "Could not find struct function!\n");
2021-04-23 00:19:35 +00:00
return NULL;
}
2021-04-23 05:37:23 +00:00
static LLVMValueRef LookupFunctionByInstance(
LLVMValueRef structPointer,
char *name,
LLVMTypeRef *pReturnType,
uint8_t *pStatic
) {
return LookupFunctionByPointerType(LLVMTypeOf(structPointer), name, pReturnType, pStatic);
}
2021-04-23 00:19:35 +00:00
static void AddStructVariablesToScope(
2021-04-22 04:29:38 +00:00
LLVMBuilderRef builder,
LLVMValueRef structPointer
) {
2021-04-21 02:07:11 +00:00
uint32_t i, j;
2021-04-21 02:00:18 +00:00
2021-04-23 05:37:23 +00:00
for (i = 0; i < structTypeDeclarationCount; i += 1)
2021-04-21 02:00:18 +00:00
{
2021-04-23 05:37:23 +00:00
if (structTypeDeclarations[i].structPointerType == LLVMTypeOf(structPointer))
2021-04-21 02:00:18 +00:00
{
2021-04-23 05:37:23 +00:00
for (j = 0; j < structTypeDeclarations[i].fieldCount; j += 1)
2021-04-21 02:07:11 +00:00
{
2021-04-23 05:37:23 +00:00
char *ptrName = strdup(structTypeDeclarations[i].fields[j].name);
strcat(ptrName, "_ptr");
2021-04-22 04:29:38 +00:00
LLVMValueRef elementPointer = LLVMBuildStructGEP(
builder,
structPointer,
2021-04-23 05:37:23 +00:00
structTypeDeclarations[i].fields[j].index,
ptrName
2021-04-22 04:29:38 +00:00
);
free(ptrName);
2021-04-22 04:29:38 +00:00
AddLocalVariable(
scope,
elementPointer,
2021-04-23 05:37:23 +00:00
structTypeDeclarations[i].fields[j].name
2021-04-22 04:29:38 +00:00
);
2021-04-21 02:07:11 +00:00
}
2021-04-21 02:00:18 +00:00
}
}
}
2021-04-20 01:18:45 +00:00
static LLVMValueRef CompileExpression(
LLVMBuilderRef builder,
Node *binaryExpression
);
static LLVMValueRef CompileNumber(
Node *numberExpression
2021-04-20 17:47:40 +00:00
) {
2021-04-20 01:18:45 +00:00
return LLVMConstInt(LLVMInt64Type(), numberExpression->value.number, 0);
}
static LLVMValueRef CompileBinaryExpression(
LLVMBuilderRef builder,
Node *binaryExpression
) {
2021-04-23 00:19:35 +00:00
LLVMValueRef left = CompileExpression(builder, binaryExpression->children[0]);
LLVMValueRef right = CompileExpression(builder, binaryExpression->children[1]);
2021-04-20 01:18:45 +00:00
switch (binaryExpression->operator.binaryOperator)
{
case Add:
return LLVMBuildAdd(builder, left, right, "tmp");
2021-04-20 17:47:40 +00:00
case Subtract:
return LLVMBuildSub(builder, left, right, "tmp");
case Multiply:
return LLVMBuildMul(builder, left, right, "tmp");
2021-04-20 01:18:45 +00:00
}
return NULL;
}
2021-04-22 04:29:38 +00:00
/* FIXME THIS IS ALL BROKEN */
2021-04-20 17:47:40 +00:00
static LLVMValueRef CompileFunctionCallExpression(
LLVMBuilderRef builder,
Node *expression
) {
uint32_t i;
2021-04-23 00:19:35 +00:00
uint32_t argumentCount = 0;
2021-04-23 05:37:23 +00:00
LLVMValueRef args[expression->children[1]->childCount + 1];
2021-04-23 00:19:35 +00:00
LLVMValueRef function;
uint8_t isStatic;
LLVMValueRef structInstance;
LLVMTypeRef functionReturnType;
char *returnName = "";
/* FIXME: this needs to be recursive on access chains */
if (expression->children[0]->syntaxKind == AccessExpression)
{
2021-04-23 05:37:23 +00:00
LLVMTypeRef typeReference = FindStructType(
expression->children[0]->children[0]->value.string
);
if (typeReference != NULL)
{
function = LookupFunctionByType(
typeReference,
expression->children[0]->children[1]->value.string,
&functionReturnType,
&isStatic
);
}
else
{
structInstance = FindVariablePointer(expression->children[0]->children[0]->value.string);
function = LookupFunctionByInstance(structInstance, expression->children[0]->children[1]->value.string, &functionReturnType, &isStatic);
}
2021-04-23 00:19:35 +00:00
}
else
{
fprintf(stderr, "Failed to find function!\n");
return NULL;
}
2021-04-20 17:47:40 +00:00
2021-04-23 00:19:35 +00:00
if (!isStatic)
2021-04-20 17:47:40 +00:00
{
2021-04-23 00:19:35 +00:00
args[argumentCount] = structInstance;
argumentCount += 1;
2021-04-20 17:47:40 +00:00
}
2021-04-23 00:19:35 +00:00
for (i = 0; i < expression->children[1]->childCount; i += 1)
{
args[argumentCount] = CompileExpression(builder, expression->children[1]->children[i]);
argumentCount += 1;
}
if (LLVMGetTypeKind(functionReturnType) != LLVMVoidTypeKind)
{
returnName = "callReturn";
}
return LLVMBuildCall(builder, function, args, argumentCount, returnName);
2021-04-22 04:29:38 +00:00
}
static LLVMValueRef CompileAccessExpressionForStore(
LLVMBuilderRef builder,
Node *expression
) {
Node *accessee = expression->children[0];
Node *accessor = expression->children[1];
LLVMValueRef accesseeValue = FindVariablePointer(accessee->value.string);
return FindStructFieldPointer(builder, accesseeValue, accessor->value.string);
}
static LLVMValueRef CompileAccessExpression(
LLVMBuilderRef builder,
Node *expression
) {
Node *accessee = expression->children[0];
Node *accessor = expression->children[1];
LLVMValueRef accesseeValue = FindVariablePointer(accessee->value.string);
LLVMValueRef access = FindStructFieldPointer(builder, accesseeValue, accessor->value.string);
return LLVMBuildLoad(builder, access, accessor->value.string);
2021-04-20 17:47:40 +00:00
}
2021-04-28 19:49:45 +00:00
static LLVMValueRef CompileAllocExpression(
LLVMBuilderRef builder,
Node *expression
) {
LLVMTypeRef type = ResolveType(expression->children[0]);
return LLVMBuildMalloc(builder, type, "allocation");
}
2021-04-20 01:18:45 +00:00
static LLVMValueRef CompileExpression(
LLVMBuilderRef builder,
Node *expression
) {
switch (expression->syntaxKind)
{
2021-04-22 04:29:38 +00:00
case AccessExpression:
2021-04-23 00:19:35 +00:00
return CompileAccessExpression(builder, expression);
2021-04-22 04:29:38 +00:00
2021-04-28 19:49:45 +00:00
case AllocExpression:
return CompileAllocExpression(builder, expression);
2021-04-20 01:18:45 +00:00
case BinaryExpression:
2021-04-23 00:19:35 +00:00
return CompileBinaryExpression(builder, expression);
2021-04-20 01:18:45 +00:00
2021-04-20 17:47:40 +00:00
case FunctionCallExpression:
2021-04-23 00:19:35 +00:00
return CompileFunctionCallExpression(builder, expression);
2021-04-20 17:47:40 +00:00
2021-04-20 01:18:45 +00:00
case Identifier:
2021-04-22 04:29:38 +00:00
return FindVariableValue(builder, expression->value.string);
2021-04-20 01:18:45 +00:00
case Number:
2021-04-21 02:00:18 +00:00
return CompileNumber(expression);
2021-04-20 01:18:45 +00:00
}
2021-04-21 02:00:18 +00:00
fprintf(stderr, "Unknown expression kind!\n");
2021-04-20 01:18:45 +00:00
return NULL;
}
2021-04-23 00:19:35 +00:00
static void CompileReturn(LLVMBuilderRef builder, Node *returnStatemement)
2021-04-20 01:18:45 +00:00
{
2021-04-23 00:19:35 +00:00
LLVMValueRef expression = CompileExpression(builder, returnStatemement->children[0]);
2021-04-22 04:29:38 +00:00
LLVMBuildRet(builder, expression);
2021-04-21 02:00:18 +00:00
}
static void CompileReturnVoid(LLVMBuilderRef builder)
{
LLVMBuildRetVoid(builder);
}
2021-04-23 00:19:35 +00:00
static void CompileAssignment(LLVMBuilderRef builder, Node *assignmentStatement)
2021-04-21 02:00:18 +00:00
{
2021-04-23 00:19:35 +00:00
LLVMValueRef result = CompileExpression(builder, assignmentStatement->children[1]);
2021-04-22 04:29:38 +00:00
LLVMValueRef identifier;
if (assignmentStatement->children[0]->syntaxKind == AccessExpression)
{
2021-04-23 00:19:35 +00:00
identifier = CompileAccessExpressionForStore(builder, assignmentStatement->children[0]);
2021-04-22 04:29:38 +00:00
}
else if (assignmentStatement->children[0]->syntaxKind == Identifier)
{
identifier = FindVariablePointer(assignmentStatement->children[0]->value.string);
}
2021-04-22 05:26:34 +00:00
else
{
printf("Identifier not found!");
return;
}
2021-04-21 02:00:18 +00:00
2021-04-22 04:29:38 +00:00
LLVMBuildStore(builder, result, identifier);
2021-04-20 01:18:45 +00:00
}
2021-04-24 19:59:30 +00:00
/* FIXME: path for reference types */
2021-04-21 06:51:26 +00:00
static void CompileFunctionVariableDeclaration(LLVMBuilderRef builder, Node *variableDeclaration)
{
LLVMValueRef variable;
char *variableName = variableDeclaration->children[1]->value.string;
char *ptrName = strdup(variableName);
strcat(ptrName, "_ptr");
2021-04-24 20:53:21 +00:00
variable = LLVMBuildAlloca(builder, ResolveType(variableDeclaration->children[0]), ptrName);
2021-04-21 06:51:26 +00:00
free(ptrName);
2021-04-22 04:29:38 +00:00
AddLocalVariable(scope, variable, variableName);
2021-04-21 06:51:26 +00:00
}
2021-04-22 07:35:42 +00:00
static uint8_t CompileStatement(LLVMBuilderRef builder, LLVMValueRef function, Node *statement)
2021-04-20 01:18:45 +00:00
{
switch (statement->syntaxKind)
{
2021-04-21 02:00:18 +00:00
case Assignment:
2021-04-23 00:19:35 +00:00
CompileAssignment(builder, statement);
return 0;
case FunctionCallExpression:
CompileFunctionCallExpression(builder, statement);
2021-04-21 02:00:18 +00:00
return 0;
2021-04-21 06:51:26 +00:00
case Declaration:
CompileFunctionVariableDeclaration(builder, statement);
return 0;
2021-04-20 01:18:45 +00:00
case Return:
2021-04-23 00:19:35 +00:00
CompileReturn(builder, statement);
2021-04-21 02:00:18 +00:00
return 1;
case ReturnVoid:
CompileReturnVoid(builder);
return 1;
2021-04-20 01:18:45 +00:00
}
2021-04-21 02:00:18 +00:00
fprintf(stderr, "Unknown statement kind!\n");
return 0;
2021-04-20 01:18:45 +00:00
}
2021-04-21 02:00:18 +00:00
static void CompileFunction(
LLVMModuleRef module,
2021-04-22 17:27:39 +00:00
char *parentStructName,
2021-04-21 02:00:18 +00:00
LLVMTypeRef wStructPointerType,
Node **fieldDeclarations,
uint32_t fieldDeclarationCount,
Node *functionDeclaration
) {
2021-04-18 22:45:06 +00:00
uint32_t i;
2021-04-21 02:00:18 +00:00
uint8_t hasReturn = 0;
2021-04-22 07:35:42 +00:00
uint8_t isStatic = 0;
2021-04-18 22:45:06 +00:00
Node *functionSignature = functionDeclaration->children[0];
2021-04-20 01:18:45 +00:00
Node *functionBody = functionDeclaration->children[1];
2021-04-22 07:35:42 +00:00
uint32_t argumentCount = functionSignature->children[2]->childCount;
LLVMTypeRef paramTypes[argumentCount + 1];
uint32_t paramIndex = 0;
2021-04-21 02:00:18 +00:00
2021-04-22 07:35:42 +00:00
if (functionSignature->children[3]->childCount > 0)
{
for (i = 0; i < functionSignature->children[3]->childCount; i += 1)
{
if (functionSignature->children[3]->children[i]->syntaxKind == StaticModifier)
{
isStatic = 1;
break;
}
}
}
2021-04-22 04:29:38 +00:00
2021-04-22 07:35:42 +00:00
if (!isStatic)
{
paramTypes[paramIndex] = wStructPointerType;
paramIndex += 1;
}
PushScopeFrame(scope);
2021-04-18 22:45:06 +00:00
2021-04-24 19:59:30 +00:00
/* FIXME: should work for non-primitive types */
2021-04-18 22:45:06 +00:00
for (i = 0; i < functionSignature->children[2]->childCount; i += 1)
{
2021-04-24 19:59:30 +00:00
paramTypes[paramIndex] = WraithTypeToLLVMType(functionSignature->children[2]->children[i]->children[0]->children[0]->primitiveType);
2021-04-22 07:35:42 +00:00
paramIndex += 1;
2021-04-20 01:18:45 +00:00
}
2021-04-24 19:59:30 +00:00
LLVMTypeRef returnType = WraithTypeToLLVMType(functionSignature->children[1]->children[0]->primitiveType);
2021-04-22 07:35:42 +00:00
LLVMTypeRef functionType = LLVMFunctionType(returnType, paramTypes, paramIndex, 0);
2021-04-22 17:27:39 +00:00
char *functionName = strdup(parentStructName);
strcat(functionName, "_");
strcat(functionName, functionSignature->children[0]->value.string);
LLVMValueRef function = LLVMAddFunction(module, functionName, functionType);
free(functionName);
2021-04-20 01:18:45 +00:00
2021-04-23 00:19:35 +00:00
DeclareStructFunction(wStructPointerType, function, returnType, isStatic, functionSignature->children[0]->value.string);
2021-04-20 01:18:45 +00:00
LLVMBasicBlockRef entry = LLVMAppendBasicBlock(function, "entry");
LLVMBuilderRef builder = LLVMCreateBuilder();
LLVMPositionBuilderAtEnd(builder, entry);
2021-04-22 07:35:42 +00:00
if (!isStatic)
{
LLVMValueRef wStructPointer = LLVMGetParam(function, 0);
2021-04-23 00:19:35 +00:00
AddStructVariablesToScope(builder, wStructPointer);
2021-04-22 07:35:42 +00:00
}
2021-04-22 04:29:38 +00:00
for (i = 0; i < functionSignature->children[2]->childCount; i += 1)
2021-04-21 02:00:18 +00:00
{
char *ptrName = strdup(functionSignature->children[2]->children[i]->children[1]->value.string);
strcat(ptrName, "_ptr");
2021-04-23 05:37:23 +00:00
LLVMValueRef argument = LLVMGetParam(function, i + !isStatic);
LLVMValueRef argumentCopy = LLVMBuildAlloca(builder, LLVMTypeOf(argument), ptrName);
LLVMBuildStore(builder, argument, argumentCopy);
free(ptrName);
2021-04-22 04:29:38 +00:00
AddLocalVariable(scope, argumentCopy, functionSignature->children[2]->children[i]->children[1]->value.string);
2021-04-21 02:00:18 +00:00
}
2021-04-20 01:18:45 +00:00
for (i = 0; i < functionBody->childCount; i += 1)
{
2021-04-22 07:35:42 +00:00
hasReturn |= CompileStatement(builder, function, functionBody->children[i]);
2021-04-20 01:18:45 +00:00
}
2021-04-20 17:47:40 +00:00
2021-04-21 02:00:18 +00:00
if (LLVMGetTypeKind(returnType) == LLVMVoidTypeKind && !hasReturn)
{
LLVMBuildRetVoid(builder);
}
else if (LLVMGetTypeKind(returnType) != LLVMVoidTypeKind && !hasReturn)
{
fprintf(stderr, "Return statement not provided!");
}
2021-04-22 04:29:38 +00:00
PopScopeFrame(scope);
2021-04-22 17:27:39 +00:00
LLVMDisposeBuilder(builder);
2021-04-21 02:00:18 +00:00
}
static void CompileStruct(LLVMModuleRef module, LLVMContextRef context, Node *node)
{
uint32_t i;
uint32_t fieldCount = 0;
uint32_t declarationCount = node->children[1]->childCount;
uint8_t packed = 1;
LLVMTypeRef types[declarationCount];
Node *currentDeclarationNode;
Node *fieldDeclarations[declarationCount];
2021-04-22 17:27:39 +00:00
char *structName = node->children[0]->value.string;
2021-04-21 02:00:18 +00:00
2021-04-22 04:29:38 +00:00
PushScopeFrame(scope);
2021-04-23 05:37:23 +00:00
LLVMTypeRef wStructType = LLVMStructCreateNamed(context, structName);
LLVMTypeRef wStructPointerType = LLVMPointerType(wStructType, 0); /* FIXME: is this address space correct? */
2021-04-21 02:00:18 +00:00
/* first, build the structure definition */
for (i = 0; i < declarationCount; i += 1)
{
currentDeclarationNode = node->children[1]->children[i];
switch (currentDeclarationNode->syntaxKind)
{
case Declaration: /* this is badly named */
2021-04-24 20:53:21 +00:00
types[fieldCount] = ResolveType(currentDeclarationNode->children[0]);
2021-04-21 02:00:18 +00:00
fieldDeclarations[fieldCount] = currentDeclarationNode;
fieldCount += 1;
break;
}
}
2021-04-23 05:37:23 +00:00
LLVMStructSetBody(wStructType, types, fieldCount, packed);
AddStructDeclaration(wStructType, wStructPointerType, node->children[0]->value.string, fieldDeclarations, fieldCount);
2021-04-21 02:00:18 +00:00
/* now we can wire up the functions */
for (i = 0; i < declarationCount; i += 1)
{
currentDeclarationNode = node->children[1]->children[i];
switch (currentDeclarationNode->syntaxKind)
{
case FunctionDeclaration:
2021-04-22 17:27:39 +00:00
CompileFunction(module, structName, wStructPointerType, fieldDeclarations, fieldCount, currentDeclarationNode);
2021-04-21 02:00:18 +00:00
break;
}
}
2021-04-21 06:51:26 +00:00
2021-04-22 04:29:38 +00:00
PopScopeFrame(scope);
2021-04-18 22:45:06 +00:00
}
2021-04-21 02:00:18 +00:00
static void Compile(LLVMModuleRef module, LLVMContextRef context, Node *node)
2021-04-18 22:45:06 +00:00
{
uint32_t i;
for (i = 0; i < node->childCount; i += 1)
{
2021-04-23 00:19:35 +00:00
if (node->children[i]->syntaxKind == StructDeclaration)
{
CompileStruct(module, context, node->children[i]);
}
else
{
fprintf(stderr, "top level declarations that are not structs are forbidden!\n");
}
2021-04-18 22:45:06 +00:00
}
}
2021-04-18 22:29:54 +00:00
2021-04-28 22:21:51 +00:00
static int Build(char *inputFilename, uint32_t optimizationLevel)
2021-04-18 22:29:54 +00:00
{
2021-04-22 04:29:38 +00:00
scope = CreateScope();
2021-04-20 01:18:45 +00:00
2021-04-23 05:37:23 +00:00
structTypeDeclarations = NULL;
structTypeDeclarationCount = 0;
2021-04-21 06:51:26 +00:00
2021-04-18 22:29:54 +00:00
stack = CreateStack();
2021-04-28 22:21:51 +00:00
FILE *fp = fopen(inputFilename, "r");
2021-04-18 22:29:54 +00:00
yyin = fp;
yyparse(fp, stack);
fclose(fp);
2021-04-18 22:45:06 +00:00
PrintTree(rootNode, 0);
LLVMModuleRef module = LLVMModuleCreateWithName("my_module");
2021-04-21 02:00:18 +00:00
LLVMContextRef context = LLVMGetGlobalContext();
2021-04-18 22:45:06 +00:00
2021-04-21 02:00:18 +00:00
Compile(module, context, rootNode);
2021-04-18 22:29:54 +00:00
2021-04-22 17:27:39 +00:00
/* add main call */
LLVMBuilderRef builder = LLVMCreateBuilder();
LLVMTypeRef mainFunctionType = LLVMFunctionType(LLVMInt64Type(), NULL, 0, 0);
LLVMValueRef mainFunction = LLVMAddFunction(module, "main", mainFunctionType);
LLVMBasicBlockRef entry = LLVMAppendBasicBlock(mainFunction, "entry");
LLVMPositionBuilderAtEnd(builder, entry);
LLVMValueRef wraithMainFunction = LLVMGetNamedFunction(module, "Program_Main");
LLVMValueRef mainResult = LLVMBuildCall(builder, wraithMainFunction, NULL, 0, "result");
LLVMBuildRet(builder, mainResult);
LLVMDisposeBuilder(builder);
/* verify */
2021-04-20 01:18:45 +00:00
char *error = NULL;
2021-04-28 22:21:51 +00:00
if (LLVMVerifyModule(module, LLVMAbortProcessAction, &error) != 0)
{
fprintf(stderr, "%s\n", error);
LLVMDisposeMessage(error);
return EXIT_FAILURE;
}
2021-04-22 07:35:42 +00:00
2021-04-22 17:27:39 +00:00
/* prepare to emit assembly */
LLVMInitializeNativeTarget();
LLVMInitializeAllTargetInfos();
LLVMInitializeAllTargets();
LLVMInitializeAllTargetMCs();
LLVMInitializeAllAsmParsers();
LLVMInitializeAllAsmPrinters();
2021-04-22 07:35:42 +00:00
LLVMSetTarget(module, LLVM_DEFAULT_TARGET_TRIPLE);
2021-04-22 17:27:39 +00:00
LLVMTargetRef target;
if (LLVMGetTargetFromTriple(LLVM_DEFAULT_TARGET_TRIPLE, &target, &error) != 0)
{
fprintf(stderr, "Failed to get target!\n");
fprintf(stderr, "%s\n", error);
LLVMDisposeMessage(error);
2021-04-28 22:21:51 +00:00
return EXIT_FAILURE;
2021-04-22 17:27:39 +00:00
}
2021-04-20 01:18:45 +00:00
2021-04-22 05:48:55 +00:00
LLVMPassManagerRef passManager = LLVMCreatePassManager();
2021-04-22 17:27:39 +00:00
2021-04-28 22:21:51 +00:00
// LLVMAddInstructionCombiningPass(passManager);
// LLVMAddCFGSimplificationPass(passManager);
// LLVMAddReassociatePass(passManager);
// LLVMAddPromoteMemoryToRegisterPass(passManager);
2021-04-22 05:48:55 +00:00
LLVMPassManagerBuilderRef passManagerBuilder = LLVMPassManagerBuilderCreate();
2021-04-28 22:21:51 +00:00
LLVMPassManagerBuilderSetOptLevel(passManagerBuilder, optimizationLevel);
2021-04-22 05:48:55 +00:00
LLVMPassManagerBuilderPopulateModulePassManager(passManagerBuilder, passManager);
LLVMRunPassManager(passManager, module);
2021-04-20 01:18:45 +00:00
if (LLVMWriteBitcodeToFile(module, "test.bc") != 0) {
fprintf(stderr, "error writing bitcode to file\n");
2021-04-28 22:21:51 +00:00
return EXIT_FAILURE;
2021-04-20 01:18:45 +00:00
}
2021-04-22 17:27:39 +00:00
char *cpu = "generic";
char *features = "";
LLVMTargetMachineRef targetMachine = LLVMCreateTargetMachine(
target,
LLVM_DEFAULT_TARGET_TRIPLE,
cpu,
features,
LLVMCodeGenLevelDefault,
LLVMRelocDefault,
LLVMCodeModelDefault
);
2021-04-22 07:35:42 +00:00
2021-04-22 17:27:39 +00:00
if (LLVMTargetMachineEmitToFile(targetMachine, module, "test.o", LLVMObjectFile, &error) != 0)
{
fprintf(stderr, "Failed to emit machine code!\n");
fprintf(stderr, "%s\n", error);
LLVMDisposeMessage(error);
2021-04-28 22:21:51 +00:00
return EXIT_FAILURE;
2021-04-22 17:27:39 +00:00
}
LLVMDisposeMessage(error);
LLVMDisposeTargetMachine(targetMachine);
2021-04-22 05:48:55 +00:00
LLVMPassManagerBuilderDispose(passManagerBuilder);
LLVMDisposePassManager(passManager);
LLVMDisposeModule(module);
2021-04-28 22:21:51 +00:00
return EXIT_SUCCESS;
}
int main(int argc, char *argv[])
{
dropt_bool showHelp;
uint32_t optimizationLevel = 0;
char *inputFilename;
extern int yydebug;
int exitCode = EXIT_SUCCESS;
dropt_option options[] = {
{ 'h', "help", "Shows help.", NULL, dropt_handle_bool, &showHelp, dropt_attr_halt },
{ 'O', "optimize", "Sets optimization level of the output IR. Must be a value between 0 and 3.", "number", dropt_handle_uint, &optimizationLevel },
{ 0 } /* Required sentinel value. */
};
dropt_context *droptContext = dropt_new_context(options);
if (droptContext == NULL)
{
exitCode = EXIT_FAILURE;
}
else if (argc == 0)
{
printf("Must supply an input file.");
exitCode = EXIT_FAILURE;
}
else
{
char** rest = dropt_parse(droptContext, -1, &argv[1]);
if (dropt_get_error(droptContext) != dropt_error_none)
{
fprintf(stderr, "wraith: %s\n", dropt_get_error_message(droptContext));
exitCode = EXIT_FAILURE;
}
else if (showHelp)
{
printf("Usage: wraith [options] [--] [input_file]\n\n"
"Options:\n");
dropt_print_help(stdout, droptContext, NULL);
}
else
{
yydebug = 1; /* FIXME: make this an option */
inputFilename = *rest;
if (inputFilename == NULL)
{
fprintf(stderr, "ERROR: Must provide an input file.\n");
exitCode = EXIT_FAILURE;
}
else
{
exitCode = Build(inputFilename, optimizationLevel);
}
}
}
return exitCode;
2021-04-18 22:29:54 +00:00
}