aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2017-04-06 11:12:11 +0100
committerGinger Bill <bill@gingerbill.org>2017-04-06 11:12:11 +0100
commitc067a1f0ec3f8e089d2800e18da7f3db4f3c2a33 (patch)
tree3b10cf9db6b738ef63199120eda0ca3e9bfada3b /src
parent3e80411d374d3dd7fc90e22d4f900144cfb6ef3a (diff)
Fix ir bugs: global variable names, untyped to any assignment
Diffstat (limited to 'src')
-rw-r--r--src/check_decl.c3
-rw-r--r--src/gb/gb.h4
-rw-r--r--src/ir.c37
-rw-r--r--src/ir_print.c10
4 files changed, 36 insertions, 18 deletions
diff --git a/src/check_decl.c b/src/check_decl.c
index 12ce52142..0a6c0e5b6 100644
--- a/src/check_decl.c
+++ b/src/check_decl.c
@@ -248,8 +248,7 @@ void check_proc_lit(Checker *c, Entity *e, DeclInfo *d) {
bool is_inline = (pd->tags & ProcTag_inline) != 0;
bool is_no_inline = (pd->tags & ProcTag_no_inline) != 0;
- if ((d->scope->is_file || d->scope->is_global) &&
- str_eq(e->token.string, str_lit("main"))) {
+ if (d->scope->is_file && str_eq(e->token.string, str_lit("main"))) {
if (proc_type != NULL) {
TypeProc *pt = &proc_type->Proc;
if (pt->param_count != 0 ||
diff --git a/src/gb/gb.h b/src/gb/gb.h
index aa85e5c1d..ed20df1a4 100644
--- a/src/gb/gb.h
+++ b/src/gb/gb.h
@@ -275,8 +275,8 @@ extern "C" {
// TODO(bill): How many of these headers do I really need?
-#include <stdarg.h>
-#include <stddef.h>
+// #include <stdarg.h>
+// #include <stddef.h>
diff --git a/src/ir.c b/src/ir.c
index 5a2c766b9..2ba5e254d 100644
--- a/src/ir.c
+++ b/src/ir.c
@@ -33,7 +33,7 @@ typedef struct irModule {
MapEntity min_dep_map; // Key: Entity *
MapIrValue values; // Key: Entity *
MapIrValue members; // Key: String
- MapString type_names; // Key: Type *
+ MapString entity_names; // Key: Entity * of the typename
MapIrDebugInfo debug_info; // Key: Unique pointer
i32 global_string_index;
i32 global_array_index; // For ConstantSlice
@@ -339,6 +339,7 @@ typedef struct irValueTypeName {
} irValueTypeName;
typedef struct irValueGlobal {
+ String name;
Entity * entity;
Type * type;
irValue * value;
@@ -766,6 +767,20 @@ irValue *ir_value_nil(gbAllocator a, Type *type) {
return v;
}
+String ir_get_global_name(irModule *m, irValue *v) {
+ if (v->kind != irValue_Global) {
+ return str_lit("");
+ }
+ irValueGlobal *g = &v->Global;
+ Entity *e = g->entity;
+ String name = e->token.string;
+ String *found = map_string_get(&m->entity_names, hash_pointer(e));
+ if (found != NULL) {
+ name = *found;
+ }
+ return name;
+}
+
irValue *ir_instr_local(irProcedure *p, Entity *e, bool zero_initialized) {
@@ -2771,6 +2786,8 @@ irValue *ir_emit_conv(irProcedure *proc, irValue *value, Type *t) {
return ir_emit_load(proc, result);
}
+ Type *st = default_type(src_type);
+
irValue *data = NULL;
if (value->kind == irValue_Instr &&
value->Instr.kind == irInstr_Load) {
@@ -2778,15 +2795,15 @@ irValue *ir_emit_conv(irProcedure *proc, irValue *value, Type *t) {
data = value->Instr.Load.address;
} else {
// NOTE(bill): Non-addreirble value
- data = ir_add_local_generated(proc, src_type);
+ data = ir_add_local_generated(proc, st);
ir_emit_store(proc, data, value);
}
GB_ASSERT(is_type_pointer(ir_type(data)));
- GB_ASSERT(is_type_typed(src_type));
+ GB_ASSERT_MSG(is_type_typed(st), "%s", type_to_string(st));
data = ir_emit_conv(proc, data, t_rawptr);
- irValue *ti = ir_type_info(proc, src_type);
+ irValue *ti = ir_type_info(proc, st);
irValue *gep0 = ir_emit_struct_ep(proc, result, 0);
irValue *gep1 = ir_emit_struct_ep(proc, result, 1);
@@ -3195,7 +3212,7 @@ void ir_mangle_add_sub_type_name(irModule *m, Entity *field, String parent) {
"%.*s.%.*s", LIT(parent), LIT(cn));
String child = {text, new_name_len-1};
- map_string_set(&m->type_names, hash_pointer(field->type), child);
+ map_string_set(&m->entity_names, hash_pointer(field), child);
ir_gen_global_type_name(m, field, child);
}
@@ -5582,7 +5599,7 @@ void ir_build_stmt_internal(irProcedure *proc, AstNode *node) {
irValue *value = ir_value_type_name(proc->module->allocator,
name, e->type);
- map_string_set(&proc->module->type_names, hash_pointer(e->type), name);
+ map_string_set(&proc->module->entity_names, hash_pointer(e->type), name);
ir_gen_global_type_name(proc->module, e, name);
} break;
case Entity_Procedure: {
@@ -6500,7 +6517,7 @@ void ir_init_module(irModule *m, Checker *c) {
map_ir_value_init(&m->values, heap_allocator());
map_ir_value_init(&m->members, heap_allocator());
map_ir_debug_info_init(&m->debug_info, heap_allocator());
- map_string_init(&m->type_names, heap_allocator());
+ map_string_init(&m->entity_names, heap_allocator());
array_init(&m->procs, heap_allocator());
array_init(&m->procs_to_generate, heap_allocator());
array_init(&m->foreign_library_paths, heap_allocator());
@@ -6603,7 +6620,7 @@ void ir_init_module(irModule *m, Checker *c) {
void ir_destroy_module(irModule *m) {
map_ir_value_destroy(&m->values);
map_ir_value_destroy(&m->members);
- map_string_destroy(&m->type_names);
+ map_string_destroy(&m->entity_names);
map_ir_debug_info_destroy(&m->debug_info);
array_free(&m->procs);
array_free(&m->procs_to_generate);
@@ -6779,17 +6796,17 @@ void ir_gen_tree(irGen *s) {
name = ir_mangle_name(s, e->token.pos.file, e);
}
}
-
+ map_string_set(&m->entity_names, hash_pointer(e), name);
switch (e->kind) {
case Entity_TypeName:
GB_ASSERT(e->type->kind == Type_Named);
- map_string_set(&m->type_names, hash_pointer(e->type), name);
ir_gen_global_type_name(m, e, name);
break;
case Entity_Variable: {
irValue *g = ir_value_global(a, e, NULL);
+ g->Global.name = name;
g->Global.is_thread_local = e->Variable.is_thread_local;
irGlobalVariable var = {0};
diff --git a/src/ir_print.c b/src/ir_print.c
index ab5926bd0..a17c7d109 100644
--- a/src/ir_print.c
+++ b/src/ir_print.c
@@ -251,7 +251,7 @@ void ir_print_type(irFileBuffer *f, irModule *m, Type *t) {
case Type_Named:
if (is_type_struct(t) || is_type_union(t)) {
- String *name = map_string_get(&m->type_names, hash_pointer(t));
+ String *name = map_string_get(&m->entity_names, hash_pointer(t->Named.type_name));
GB_ASSERT_MSG(name != NULL, "%.*s", LIT(t->Named.name));
ir_print_encoded_local(f, *name);
} else {
@@ -338,7 +338,6 @@ void ir_print_exact_value(irFileBuffer *f, irModule *m, ExactValue value, Type *
// HACK NOTE(bill): This is a hack but it works because strings are created at the very end
// of the .ll file
irValue *str_array = ir_add_global_string_array(m, str);
-
ir_fprintf(f, "{i8* getelementptr inbounds (");
ir_print_type(f, m, str_array->Global.entity->type);
ir_fprintf(f, ", ");
@@ -659,9 +658,10 @@ void ir_print_value(irFileBuffer *f, irModule *m, irValue *value, Type *type_hin
Scope *scope = value->Global.entity->scope;
bool in_global_scope = false;
if (scope != NULL) {
+ // TODO(bill): Fix this rule. What should it be?
in_global_scope = scope->is_global || scope->is_init;
}
- ir_print_encoded_global(f, value->Global.entity->token.string, in_global_scope);
+ ir_print_encoded_global(f, ir_get_global_name(m, value), in_global_scope);
} break;
case irValue_Param:
ir_print_encoded_local(f, value->Param.entity->token.string);
@@ -1576,9 +1576,11 @@ void print_llvm_ir(irGen *ir) {
Scope *scope = g->entity->scope;
bool in_global_scope = false;
if (scope != NULL) {
+ // TODO(bill): Fix this rule. What should it be?
in_global_scope = scope->is_global || scope->is_init;
}
- ir_print_encoded_global(f, g->entity->token.string, in_global_scope);
+
+ ir_print_encoded_global(f, ir_get_global_name(m, v), in_global_scope);
ir_fprintf(f, " = ");
if (g->is_foreign) {
ir_fprintf(f, "external ");