view runtime/builtin.c @ 30:914ad38f9b59

Compiler now works for some simple programs
author Mike Pavone <pavone@retrodev.com>
date Mon, 28 Sep 2009 19:42:33 -0400
parents 31f8182f3433
children 495dddadd058
line wrap: on
line source

#include "builtin.h"
#include "object.h"
#include "integer.h"
#include "bool.h"
#include <stddef.h>
#include <stdio.h>

void register_builtin_type(uint32_t type)
{
	blueprint * bp;
	switch(type)
	{
	case TYPE_INT32:
		bp = register_type_byid(TYPE_INT32, sizeof(int32_t), NULL, NULL, NULL);
		add_method(bp, METHOD_ADD, MethodName(_PL_,Int32));
		add_method(bp, METHOD_SUB, MethodName(_MN_,Int32));
		add_method(bp, METHOD_LESS, MethodName(_LT_,Int32));
		add_method(bp, METHOD_GREATER, MethodName(_GT_,Int32));
		break;
	case TYPE_BOOLEAN:
		bp = register_type_byid(TYPE_BOOLEAN, sizeof(int32_t), NULL, NULL, NULL);
		add_method(bp, METHOD_IF, MethodName(If,Boolean));
		val_yes = (t_Boolean *)new_object(TYPE_BOOLEAN);
		val_yes->val = 1;
		val_no = (t_Boolean *)new_object(TYPE_BOOLEAN);
		val_no->val = 0;
		break;
	}
}

void register_builtin_types()
{
	uint32_t i;
	for(i = 0; i < TYPE_FIRST_USER; ++i)
		register_builtin_type(i);
}

//TODO: Remove this when it's possible to write Print in Rhope
FuncNoLocals(Print,
	NumParams 1,
	CallSpace 0)
	
	if(get_blueprint(cdata->params[0]) == get_blueprint_byid(TYPE_INT32))
	{
		printf("%d\n", ((t_Int32 *)(cdata->params[0]))->num);
	} else {
		puts("Don't know how to print this type");
	}
	release_ref(cdata->params[0]);
	Ret(0, make_Int32(0))
EndFunc