DEADSOFTWARE

Добавлены указатели
[dsw-obn.git] / generator.c
index 4ffba1173bf23582df014dea6d89d290656afcd3..f65b066d1fab3fe1f26df2430f6869126ee98390 100644 (file)
@@ -79,25 +79,6 @@ oberon_generator_init_type(oberon_context_t * ctx, oberon_type_t * type)
        {
                gcc_type = gcc_jit_context_get_type(gcc_context, GCC_JIT_TYPE_BOOL);
        }
-       else if(type -> class == OBERON_TYPE_PROCEDURE)
-       {
-               int num_params = type -> num_decl;
-               gcc_jit_type * params[num_params];
-               oberon_object_t * o = type -> decl;
-               for(int i = 0; i < num_params; i++)
-               {
-                       gen_type_t * gen_type = o -> type -> gen_type;
-                       params[i] = gen_type -> gcc_type;
-                       o = o -> next;
-               }
-
-               gen_type_t * base = type -> base -> gen_type;
-               gcc_jit_type * result_type = base -> gcc_type;
-
-               gcc_type = gcc_jit_context_new_function_ptr_type(
-                       gcc_context, NULL, result_type, num_params, params, 0
-               );
-       }
        else if(type -> class == OBERON_TYPE_ARRAY)
        {
                if(type -> dim != 1)
@@ -128,11 +109,37 @@ oberon_generator_init_type(oberon_context_t * ctx, oberon_type_t * type)
                gcc_struct = gcc_jit_context_new_struct_type(gcc_context, NULL, "", num_fields, fields);
                gcc_type = gcc_jit_struct_as_type(gcc_struct);
        }
+       else if(type -> class == OBERON_TYPE_POINTER)
+       {
+               gen_type_t * gen_base = type -> base -> gen_type;
+               gcc_jit_type * gcc_base = gen_base -> gcc_type;
+               gcc_type = gcc_jit_type_get_pointer(gcc_base);
+       }
+       else if(type -> class == OBERON_TYPE_PROCEDURE)
+       {
+               int num_params = type -> num_decl;
+               gcc_jit_type * params[num_params];
+               oberon_object_t * o = type -> decl;
+               for(int i = 0; i < num_params; i++)
+               {
+                       gen_type_t * gen_type = o -> type -> gen_type;
+                       params[i] = gen_type -> gcc_type;
+                       o = o -> next;
+               }
+
+               gen_type_t * base = type -> base -> gen_type;
+               gcc_jit_type * result_type = base -> gcc_type;
+
+               gcc_type = gcc_jit_context_new_function_ptr_type(
+                       gcc_context, NULL, result_type, num_params, params, 0
+               );
+       }
        else
        {
                oberon_error(ctx, "oberon_generator_init_type: invalid type class %i", type -> class);
        }
 
+       assert(gcc_type);
        gen_type -> gcc_type = gcc_type;
        gen_type -> gcc_struct = gcc_struct;
 }
@@ -441,6 +448,7 @@ struct {
 
        { 1, .binary_op = GCC_JIT_BINARY_OP_PLUS },
        { 1, .binary_op = GCC_JIT_BINARY_OP_MINUS },
+       { 1, .binary_op = GCC_JIT_BINARY_OP_MULT },
        { 1, .binary_op = GCC_JIT_BINARY_OP_DIVIDE },
        { 1, .binary_op = GCC_JIT_BINARY_OP_MODULO },
        { 1, .binary_op = GCC_JIT_BINARY_OP_LOGICAL_AND },
@@ -538,3 +546,11 @@ oberon_generate_code(oberon_context_t * ctx)
        gen_context -> gcc_result = gcc_result;
        ctx -> mod -> begin = gcc_jit_result_get_code(gcc_result, "BEGIN");
 }
+
+void
+oberon_generator_dump(oberon_context_t * ctx, char * path)
+{
+       gen_context_t * gen_context = ctx -> gen_context;
+       gcc_jit_context * gcc_context = gen_context -> gcc_context;
+       gcc_jit_context_dump_to_file(gcc_context, path, 0);
+}