aboutsummaryrefslogtreecommitdiff
path: root/src/ir.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2018-05-20 17:31:46 +0100
committergingerBill <bill@gingerbill.org>2018-05-20 17:31:46 +0100
commit4d052d5119653c80f4c7b7c6695256e0540a55a5 (patch)
tree0093201366301e0178863a44e149f04bc673d22d /src/ir.cpp
parent7e4c6434012fbe4e8d76f9fb852a0f136c7bc795 (diff)
Remove code relating to default struct values
Diffstat (limited to 'src/ir.cpp')
-rw-r--r--src/ir.cpp94
1 files changed, 0 insertions, 94 deletions
diff --git a/src/ir.cpp b/src/ir.cpp
index 81f88e8c9..ab5c38838 100644
--- a/src/ir.cpp
+++ b/src/ir.cpp
@@ -683,37 +683,6 @@ Type *ir_type(irValue *value) {
}
-bool ir_type_has_default_values(Type *t) {
-#if !defined(NO_DEFAULT_STRUCT_VALUES)
- switch (t->kind) {
- case Type_Named:
- return ir_type_has_default_values(t->Named.base);
-
- case Type_Array:
- return ir_type_has_default_values(t->Array.elem);
-
- case Type_Struct:
- if (t->Struct.is_raw_union) return false;
- for_array(i, t->Struct.fields) {
- Entity *f = t->Struct.fields[i];
- if (f->kind != Entity_Variable) continue;
- if (f->Variable.default_is_nil) {
- // NOTE(bill): This is technically zero
- continue;
- } else if (f->Variable.default_value.kind != ExactValue_Invalid) {
- return true;
- } else if (f->Variable.default_is_undef) {
- return true;
- }
- bool sub = ir_type_has_default_values(f->type);
- if (sub) return true;
- }
- break;
- }
-#endif
- return false;
-}
-
irInstr *ir_get_last_instr(irBlock *block) {
if (block != nullptr) {
@@ -3942,39 +3911,6 @@ irValue *ir_gen_anonymous_proc_lit(irModule *m, String prefix_name, AstNode *exp
return value;
}
-void ir_check_type_and_gen_for_proc_lit(irProcedure *proc, Type *t) {
- if (t == nullptr) return;
- if (t->kind == Type_Struct && t->Struct.has_proc_default_values) {
- for_array(i, t->Struct.fields) {
- Entity *f = t->Struct.fields[i];
- if (f->kind == Entity_Variable && f->Variable.default_value.kind == ExactValue_Procedure) {
- AstNode *expr = f->Variable.default_value.value_procedure;
- GB_ASSERT(expr != nullptr);
- if (expr->kind == AstNode_ProcLit) {
- ir_gen_anonymous_proc_lit(proc->module, proc->name, expr, proc);
- }
- }
- }
- }
-}
-
-void ir_check_type_and_gen_for_proc_lit(irModule *m, String prefix_name, Type *t) {
- if (t == nullptr) return;
- if (t->kind == Type_Struct && t->Struct.has_proc_default_values) {
- for_array(i, t->Struct.fields) {
- Entity *f = t->Struct.fields[i];
- if (f->kind == Entity_Variable && f->Variable.default_value.kind == ExactValue_Procedure) {
- AstNode *expr = f->Variable.default_value.value_procedure;
- GB_ASSERT(expr != nullptr);
- if (expr->kind == AstNode_ProcLit) {
- ir_gen_anonymous_proc_lit(m, prefix_name, expr);
- }
- }
- }
- }
-}
-
-
void ir_gen_global_type_name(irModule *m, Entity *e, String name) {
if (e->type == nullptr) return;
@@ -4037,8 +3973,6 @@ void ir_gen_global_type_name(irModule *m, Entity *e, String name) {
// }
// }
// }
-
- ir_check_type_and_gen_for_proc_lit(m, e->token.string, bt);
}
@@ -4376,11 +4310,6 @@ irValue *ir_build_builtin_proc(irProcedure *proc, AstNode *expr, TypeAndValue tv
irValue *call = ir_emit_global_call(proc, "alloc", args);
irValue *ptr = ir_emit_conv(proc, call, elem_ptr_type);
-
- if (ir_type_has_default_values(elem_type)) {
- ir_init_data_with_defaults(proc, ptr, len, expr);
- }
-
irValue *slice = ir_add_local_generated(proc, type);
ir_fill_slice(proc, slice, ptr, len);
return ir_emit_load(proc, slice);
@@ -4427,11 +4356,6 @@ irValue *ir_build_builtin_proc(irProcedure *proc, AstNode *expr, TypeAndValue tv
args[4] = cap;
args[5] = ir_emit_source_code_location(proc, ce->args[0]);
ir_emit_global_call(proc, "__dynamic_array_make", args);
-
- if (ir_type_has_default_values(elem_type)) {
- ir_init_data_with_defaults(proc, ir_dynamic_array_elem(proc, ir_emit_load(proc, array)), len, expr);
- }
-
return ir_emit_load(proc, array);
}
break;
@@ -6660,8 +6584,6 @@ void ir_build_stmt_internal(irProcedure *proc, AstNode *node) {
lval = ir_build_addr(proc, name);
}
array_add(&lvals, lval);
-
- ir_check_type_and_gen_for_proc_lit(proc, ir_addr_type(lval));
}
for_array(i, vd->values) {
@@ -7627,8 +7549,6 @@ void ir_build_proc(irValue *value, irProcedure *parent) {
if (expr->kind == AstNode_ProcLit) {
ir_gen_anonymous_proc_lit(proc->module, proc->name, expr, proc);
}
- } else {
- ir_check_type_and_gen_for_proc_lit(proc, f->type);
}
}
}
@@ -8406,20 +8326,6 @@ void ir_gen_tree(irGen *s) {
var.var = g;
var.decl = decl;
-
- if (e->type->kind == Type_Struct && e->type->Struct.has_proc_default_values) {
- for_array(i, e->type->Struct.fields) {
- Entity *f = e->type->Struct.fields[i];
- if (f->kind == Entity_Variable && f->Variable.default_value.kind == ExactValue_Procedure) {
- AstNode *expr = f->Variable.default_value.value_procedure;
- GB_ASSERT(expr != nullptr);
- if (expr->kind == AstNode_ProcLit) {
- ir_gen_anonymous_proc_lit(m, e->token.string, expr);
- }
- }
- }
- }
-
if (decl->init_expr != nullptr && !is_type_any(e->type)) {
TypeAndValue tav = type_and_value_of_expr(info, decl->init_expr);
if (tav.mode != Addressing_Invalid) {