Get called functions from the environment
[fur] / templates / program.c
index c9c7394..0d6d947 100644 (file)
@@ -8,24 +8,20 @@
 #include <{{standard_library}}>
 {% endfor %}
 
-struct String;
-typedef struct String String;
 enum Type;
 typedef enum Type Type;
 union Instance;
 typedef union Instance Instance;
 struct Object;
 typedef struct Object Object;
-struct Runtime;
-typedef struct Runtime Runtime;
 
-struct String
-{
-  size_t length;
-  char* characters;
+const char* const STRING_LITERAL_LIST[] = {
+{% for string_literal in string_literal_list %}
+  "{{ string_literal }}",
+{% endfor %}
 };
 
-const char * const SYMBOL_LIST[] = {
+const char* const SYMBOL_LIST[] = {
 {% for symbol in symbol_list %}
   "{{ symbol }}",
 {% endfor %}
@@ -34,6 +30,7 @@ const char * const SYMBOL_LIST[] = {
 enum Type
 {
   BOOLEAN,
+  CLOSURE,
   INTEGER,
   STRING
 };
@@ -41,8 +38,9 @@ enum Type
 union Instance
 {
   bool boolean;
+  Object (*closure)(size_t, Object*);
   int32_t integer;
-  String* string;
+  const char* string;
 };
 
 struct Object
@@ -90,8 +88,7 @@ void Environment_destruct(Environment* self)
   EnvironmentNode* next;
   for(EnvironmentNode* node = self->root; node != NULL; node = next)
   {
-    // We don't need to destruct the permanent strings, because those will be destructed at the end when the Runtime is destructed
-    // The above comment represents all heap-allocated objects currently, so we don't need to destruct Objects (yet)
+    // No objects are allocated on the heap (yet!) so we don't need to free anything else
     next = node->next;
     free(node);
   }
@@ -111,7 +108,7 @@ Object Environment_get(Environment* self, const char* const symbol)
 {
   for(EnvironmentNode* node = self->root; node != NULL; node = node->next)
   {
-    // We can compare pointers because pointers are unique in the SYMBOLS_LIST
+    // We can compare pointers because pointers are unique in the SYMBOL_LIST
     if(node->key == symbol)
     {
       return node->value;
@@ -122,60 +119,6 @@ Object Environment_get(Environment* self, const char* const symbol)
   assert(false);
 }
 
-
-struct Runtime
-{
-  size_t permanentStringsLength;
-  size_t permanentStringsAllocated;
-  String** permanentStrings;
-};
-
-Runtime* Runtime_construct()
-{
-  Runtime* result = malloc(sizeof(Runtime));
-  result->permanentStringsLength = 0;
-  result->permanentStringsAllocated = 0;
-  result->permanentStrings = NULL;
-  return result;
-}
-
-void Runtime_destruct(Runtime* self)
-{
-  for(size_t i = 0; i < self->permanentStringsLength; i++)
-  {
-    free(self->permanentStrings[i]);
-  }
-
-  free(self->permanentStrings);
-  free(self);
-}
-
-void Runtime_addPermanentString(Runtime* self, String* string)
-{
-  // TODO Make this function thread-safe
-  if(self->permanentStringsLength == self->permanentStringsAllocated)
-  {
-    if(self->permanentStringsAllocated == 0)
-    {
-      self->permanentStringsAllocated = 8;
-    }
-    else
-    {
-      self->permanentStringsAllocated = self->permanentStringsAllocated * 2;
-    }
-
-    self->permanentStrings = realloc(
-      self->permanentStrings,
-      sizeof(String*) * self->permanentStringsAllocated
-    );
-
-    // TODO Handle realloc returning NULL
-  }
-
-  self->permanentStrings[self->permanentStringsLength] = string;
-  self->permanentStringsLength++;
-}
-
 Object integerLiteral(int32_t literal)
 {
   Object result;
@@ -184,22 +127,16 @@ Object integerLiteral(int32_t literal)
   return result;
 }
 
-Object stringLiteral(Runtime* runtime, const char* literal)
+Object stringLiteral(const char* literal)
 {
-  String* resultString = malloc(sizeof(String));
-  resultString->length = strlen(literal);
-  resultString->characters = malloc(resultString->length);
-  memcpy(resultString->characters, literal, resultString->length);
-  Runtime_addPermanentString(runtime, resultString);
-
   Object result;
   result.type = STRING;
-  result.instance.string = resultString;
+  result.instance.string = literal;
   return result;
 }
 
 // TODO Make this conditionally added
-Object builtin$negate(Object input)
+Object operator$negate(Object input)
 {
   assert(input.type == INTEGER);
 
@@ -209,7 +146,7 @@ Object builtin$negate(Object input)
   return result;
 }
 
-Object builtin$add(Object left, Object right)
+Object operator$add(Object left, Object right)
 {
   assert(left.type == INTEGER);
   assert(right.type == INTEGER);
@@ -220,7 +157,7 @@ Object builtin$add(Object left, Object right)
   return result;
 }
 
-Object builtin$subtract(Object left, Object right)
+Object operator$subtract(Object left, Object right)
 {
   assert(left.type == INTEGER);
   assert(right.type == INTEGER);
@@ -231,7 +168,7 @@ Object builtin$subtract(Object left, Object right)
   return result;
 }
 
-Object builtin$multiply(Object left, Object right)
+Object operator$multiply(Object left, Object right)
 {
   assert(left.type == INTEGER);
   assert(right.type == INTEGER);
@@ -242,7 +179,7 @@ Object builtin$multiply(Object left, Object right)
   return result;
 }
 
-Object builtin$integerDivide(Object left, Object right)
+Object operator$integerDivide(Object left, Object right)
 {
   assert(left.type == INTEGER);
   assert(right.type == INTEGER);
@@ -253,7 +190,7 @@ Object builtin$integerDivide(Object left, Object right)
   return result;
 }
 
-Object builtin$modularDivide(Object left, Object right)
+Object operator$modularDivide(Object left, Object right)
 {
   assert(left.type == INTEGER);
   assert(right.type == INTEGER);
@@ -264,9 +201,86 @@ Object builtin$modularDivide(Object left, Object right)
   return result;
 }
 
+Object operator$equals(Object left, Object right)
+{
+  assert(left.type == INTEGER);
+  assert(right.type == INTEGER);
+
+  Object result = { BOOLEAN, left.instance.integer == right.instance.integer };
+  return result;
+}
+
+Object operator$notEquals(Object left, Object right)
+{
+  assert(left.type == INTEGER);
+  assert(right.type == INTEGER);
+
+  Object result = { BOOLEAN, left.instance.integer != right.instance.integer };
+  return result;
+}
+
+Object operator$greaterThan(Object left, Object right)
+{
+  assert(left.type == INTEGER);
+  assert(right.type == INTEGER);
+
+  Object result = { BOOLEAN, left.instance.integer > right.instance.integer };
+  return result;
+}
+
+Object operator$lessThan(Object left, Object right)
+{
+  assert(left.type == INTEGER);
+  assert(right.type == INTEGER);
+
+  Object result = { BOOLEAN, left.instance.integer < right.instance.integer };
+  return result;
+}
+
+Object operator$greaterThanOrEqual(Object left, Object right)
+{
+  assert(left.type == INTEGER);
+  assert(right.type == INTEGER);
+
+  Object result = { BOOLEAN, left.instance.integer >= right.instance.integer };
+  return result;
+}
+
+Object operator$lessThanOrEqual(Object left, Object right)
+{
+  assert(left.type == INTEGER);
+  assert(right.type == INTEGER);
+
+  Object result = { BOOLEAN, left.instance.integer <= right.instance.integer };
+  return result;
+}
+
+Object operator$and(Object left, Object right)
+{
+  assert(left.type == BOOLEAN);
+  assert(right.type == BOOLEAN);
+
+  Object result = { BOOLEAN, left.instance.boolean && right.instance.boolean };
+  return result;
+}
+
+Object operator$or(Object left, Object right)
+{
+  assert(left.type == BOOLEAN);
+  assert(right.type == BOOLEAN);
+
+  Object result = { BOOLEAN, left.instance.boolean || right.instance.boolean };
+  return result;
+}
+
 {% if 'pow' in builtins %}
-Object builtin$pow(Object base, Object exponent)
+Object builtin$pow$implementation(size_t argc, Object* args)
 {
+  assert(argc == 2);
+
+  Object base = args[0];
+  Object exponent = args[1];
+
   assert(base.type == INTEGER);
   assert(exponent.type == INTEGER);
 
@@ -275,43 +289,57 @@ Object builtin$pow(Object base, Object exponent)
   result.instance.integer = pow(base.instance.integer, exponent.instance.integer);
   return result;
 }
+
+Object builtin$pow = { CLOSURE, (Instance)builtin$pow$implementation };
 {% endif %}
 
 {% if 'print' in builtins %}
-void builtin$print(Object output)
+Object builtin$print$implementation(size_t argc, Object* args)
 {
-  switch(output.type)
+  for(size_t i = 0; i < argc; i++)
   {
-    case BOOLEAN:
-      fputs(output.instance.boolean ? "true" : "false", stdout);
-      break;
+    Object output = args[i];
+    switch(output.type)
+    {
+      case BOOLEAN:
+        fputs(output.instance.boolean ? "true" : "false", stdout);
+        break;
 
-    case INTEGER:
-      printf("%" PRId32, output.instance.integer);
-      break;
+      case INTEGER:
+        printf("%" PRId32, output.instance.integer);
+        break;
 
-    case STRING:
-      // Using fwrite instead of printf to handle size_t length
-      fwrite(output.instance.string->characters, 1, output.instance.string->length, stdout);
-      break;
+      case STRING:
+        // Using fwrite instead of printf to handle size_t length
+        printf("%s", output.instance.string);
+        break;
 
-    default:
-      assert(false);
+      default:
+        assert(false);
+    }
   }
+
+  // TODO Return something better
+  return FALSE;
 }
+
+Object builtin$print = { CLOSURE, (Instance)builtin$print$implementation };
 {% endif %}
 
 int main(int argc, char** argv)
 {
-  Runtime* runtime = Runtime_construct();
   Environment* environment = Environment_construct();
 
+  // TODO Use the symbol from SYMBOL_LIST
+  {% for builtin in builtins %}
+  Environment_set(environment, "{{ builtin }}", builtin${{ builtin }});
+  {% endfor %}
+
   {% for statement in statements %}
   {{ statement }}
   {% endfor %}
 
   Environment_destruct(environment);
-  Runtime_destruct(runtime);
 
   return 0;
 }