aboutsummaryrefslogtreecommitdiff
path: root/src/ir.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ir.cpp')
-rw-r--r--src/ir.cpp176
1 files changed, 88 insertions, 88 deletions
diff --git a/src/ir.cpp b/src/ir.cpp
index ba6f256b40..c4c3808545 100644
--- a/src/ir.cpp
+++ b/src/ir.cpp
@@ -18380,37 +18380,37 @@ static ZigType *ir_type_info_get_type(IrAnalyze *ira, const char *type_name, Zig
return var->const_value->data.x_type;
}
-static Error ir_make_type_info_defs(IrAnalyze *ira, IrInstruction *source_instr, ConstExprValue *out_val,
+static Error ir_make_type_info_decls(IrAnalyze *ira, IrInstruction *source_instr, ConstExprValue *out_val,
ScopeDecls *decls_scope)
{
Error err;
- ZigType *type_info_definition_type = ir_type_info_get_type(ira, "Definition", nullptr);
- if ((err = type_resolve(ira->codegen, type_info_definition_type, ResolveStatusSizeKnown)))
+ ZigType *type_info_declaration_type = ir_type_info_get_type(ira, "Declaration", nullptr);
+ if ((err = type_resolve(ira->codegen, type_info_declaration_type, ResolveStatusSizeKnown)))
return err;
- ensure_field_index(type_info_definition_type, "name", 0);
- ensure_field_index(type_info_definition_type, "is_pub", 1);
- ensure_field_index(type_info_definition_type, "data", 2);
+ ensure_field_index(type_info_declaration_type, "name", 0);
+ ensure_field_index(type_info_declaration_type, "is_pub", 1);
+ ensure_field_index(type_info_declaration_type, "data", 2);
- ZigType *type_info_definition_data_type = ir_type_info_get_type(ira, "Data", type_info_definition_type);
- if ((err = ensure_complete_type(ira->codegen, type_info_definition_data_type)))
+ ZigType *type_info_declaration_data_type = ir_type_info_get_type(ira, "Data", type_info_declaration_type);
+ if ((err = ensure_complete_type(ira->codegen, type_info_declaration_data_type)))
return err;
- ZigType *type_info_fn_def_type = ir_type_info_get_type(ira, "FnDef", type_info_definition_data_type);
- if ((err = ensure_complete_type(ira->codegen, type_info_fn_def_type)))
+ ZigType *type_info_fn_decl_type = ir_type_info_get_type(ira, "FnDecl", type_info_declaration_data_type);
+ if ((err = ensure_complete_type(ira->codegen, type_info_fn_decl_type)))
return err;
- ZigType *type_info_fn_def_inline_type = ir_type_info_get_type(ira, "Inline", type_info_fn_def_type);
- if ((err = ensure_complete_type(ira->codegen, type_info_fn_def_inline_type)))
+ ZigType *type_info_fn_decl_inline_type = ir_type_info_get_type(ira, "Inline", type_info_fn_decl_type);
+ if ((err = ensure_complete_type(ira->codegen, type_info_fn_decl_inline_type)))
return err;
- // Loop through our definitions once to figure out how many definitions we will generate info for.
+ // Loop through our declarations once to figure out how many declarations we will generate info for.
auto decl_it = decls_scope->decl_table.entry_iterator();
decltype(decls_scope->decl_table)::Entry *curr_entry = nullptr;
- int definition_count = 0;
+ int declaration_count = 0;
while ((curr_entry = decl_it.next()) != nullptr) {
- // If the definition is unresolved, force it to be resolved again.
+ // If the declaration is unresolved, force it to be resolved again.
if (curr_entry->value->resolution == TldResolutionUnresolved) {
resolve_top_level_decl(ira->codegen, curr_entry->value, curr_entry->value->source_node);
if (curr_entry->value->resolution != TldResolutionOk) {
@@ -18426,21 +18426,21 @@ static Error ir_make_type_info_defs(IrAnalyze *ira, IrInstruction *source_instr,
continue;
}
- definition_count += 1;
+ declaration_count += 1;
}
}
- ConstExprValue *definition_array = create_const_vals(1);
- definition_array->special = ConstValSpecialStatic;
- definition_array->type = get_array_type(ira->codegen, type_info_definition_type, definition_count);
- definition_array->data.x_array.special = ConstArraySpecialNone;
- definition_array->data.x_array.data.s_none.elements = create_const_vals(definition_count);
- init_const_slice(ira->codegen, out_val, definition_array, 0, definition_count, false);
+ ConstExprValue *declaration_array = create_const_vals(1);
+ declaration_array->special = ConstValSpecialStatic;
+ declaration_array->type = get_array_type(ira->codegen, type_info_declaration_type, declaration_count);
+ declaration_array->data.x_array.special = ConstArraySpecialNone;
+ declaration_array->data.x_array.data.s_none.elements = create_const_vals(declaration_count);
+ init_const_slice(ira->codegen, out_val, declaration_array, 0, declaration_count, false);
- // Loop through the definitions and generate info.
+ // Loop through the declarations and generate info.
decl_it = decls_scope->decl_table.entry_iterator();
curr_entry = nullptr;
- int definition_index = 0;
+ int declaration_index = 0;
while ((curr_entry = decl_it.next()) != nullptr) {
// Skip comptime blocks and test functions.
if (curr_entry->value->id == TldIdCompTime) {
@@ -18451,10 +18451,10 @@ static Error ir_make_type_info_defs(IrAnalyze *ira, IrInstruction *source_instr,
continue;
}
- ConstExprValue *definition_val = &definition_array->data.x_array.data.s_none.elements[definition_index];
+ ConstExprValue *declaration_val = &declaration_array->data.x_array.data.s_none.elements[declaration_index];
- definition_val->special = ConstValSpecialStatic;
- definition_val->type = type_info_definition_type;
+ declaration_val->special = ConstValSpecialStatic;
+ declaration_val->type = type_info_declaration_type;
ConstExprValue *inner_fields = create_const_vals(3);
ConstExprValue *name = create_const_str_lit(ira->codegen, curr_entry->key);
@@ -18463,9 +18463,9 @@ static Error ir_make_type_info_defs(IrAnalyze *ira, IrInstruction *source_instr,
inner_fields[1].type = ira->codegen->builtin_types.entry_bool;
inner_fields[1].data.x_bool = curr_entry->value->visib_mod == VisibModPub;
inner_fields[2].special = ConstValSpecialStatic;
- inner_fields[2].type = type_info_definition_data_type;
+ inner_fields[2].type = type_info_declaration_data_type;
inner_fields[2].parent.id = ConstParentIdStruct;
- inner_fields[2].parent.data.p_struct.struct_val = definition_val;
+ inner_fields[2].parent.data.p_struct.struct_val = declaration_val;
inner_fields[2].parent.data.p_struct.field_index = 1;
switch (curr_entry->value->id) {
@@ -18476,7 +18476,7 @@ static Error ir_make_type_info_defs(IrAnalyze *ira, IrInstruction *source_instr,
return ErrorSemanticAnalyzeFail;
if (var->const_value->type->id == ZigTypeIdMetaType) {
- // We have a variable of type 'type', so it's actually a type definition.
+ // We have a variable of type 'type', so it's actually a type declaration.
// 0: Data.Type: type
bigint_init_unsigned(&inner_fields[2].data.x_union.tag, 0);
inner_fields[2].data.x_union.payload = var->const_value;
@@ -18496,7 +18496,7 @@ static Error ir_make_type_info_defs(IrAnalyze *ira, IrInstruction *source_instr,
}
case TldIdFn:
{
- // 2: Data.Fn: Data.FnDef
+ // 2: Data.Fn: Data.FnDecl
bigint_init_unsigned(&inner_fields[2].data.x_union.tag, 2);
ZigFn *fn_entry = ((TldFn *)curr_entry->value)->fn_entry;
@@ -18509,68 +18509,68 @@ static Error ir_make_type_info_defs(IrAnalyze *ira, IrInstruction *source_instr,
AstNodeFnProto *fn_node = &fn_entry->proto_node->data.fn_proto;
- ConstExprValue *fn_def_val = create_const_vals(1);
- fn_def_val->special = ConstValSpecialStatic;
- fn_def_val->type = type_info_fn_def_type;
- fn_def_val->parent.id = ConstParentIdUnion;
- fn_def_val->parent.data.p_union.union_val = &inner_fields[2];
+ ConstExprValue *fn_decl_val = create_const_vals(1);
+ fn_decl_val->special = ConstValSpecialStatic;
+ fn_decl_val->type = type_info_fn_decl_type;
+ fn_decl_val->parent.id = ConstParentIdUnion;
+ fn_decl_val->parent.data.p_union.union_val = &inner_fields[2];
- ConstExprValue *fn_def_fields = create_const_vals(9);
- fn_def_val->data.x_struct.fields = fn_def_fields;
+ ConstExprValue *fn_decl_fields = create_const_vals(9);
+ fn_decl_val->data.x_struct.fields = fn_decl_fields;
// fn_type: type
- ensure_field_index(fn_def_val->type, "fn_type", 0);
- fn_def_fields[0].special = ConstValSpecialStatic;
- fn_def_fields[0].type = ira->codegen->builtin_types.entry_type;
- fn_def_fields[0].data.x_type = fn_entry->type_entry;
- // inline_type: Data.FnDef.Inline
- ensure_field_index(fn_def_val->type, "inline_type", 1);
- fn_def_fields[1].special = ConstValSpecialStatic;
- fn_def_fields[1].type = type_info_fn_def_inline_type;
- bigint_init_unsigned(&fn_def_fields[1].data.x_enum_tag, fn_entry->fn_inline);
+ ensure_field_index(fn_decl_val->type, "fn_type", 0);
+ fn_decl_fields[0].special = ConstValSpecialStatic;
+ fn_decl_fields[0].type = ira->codegen->builtin_types.entry_type;
+ fn_decl_fields[0].data.x_type = fn_entry->type_entry;
+ // inline_type: Data.FnDecl.Inline
+ ensure_field_index(fn_decl_val->type, "inline_type", 1);
+ fn_decl_fields[1].special = ConstValSpecialStatic;
+ fn_decl_fields[1].type = type_info_fn_decl_inline_type;
+ bigint_init_unsigned(&fn_decl_fields[1].data.x_enum_tag, fn_entry->fn_inline);
// calling_convention: TypeInfo.CallingConvention
- ensure_field_index(fn_def_val->type, "calling_convention", 2);
- fn_def_fields[2].special = ConstValSpecialStatic;
- fn_def_fields[2].type = ir_type_info_get_type(ira, "CallingConvention", nullptr);
- bigint_init_unsigned(&fn_def_fields[2].data.x_enum_tag, fn_node->cc);
+ ensure_field_index(fn_decl_val->type, "calling_convention", 2);
+ fn_decl_fields[2].special = ConstValSpecialStatic;
+ fn_decl_fields[2].type = ir_type_info_get_type(ira, "CallingConvention", nullptr);
+ bigint_init_unsigned(&fn_decl_fields[2].data.x_enum_tag, fn_node->cc);
// is_var_args: bool
- ensure_field_index(fn_def_val->type, "is_var_args", 3);
+ ensure_field_index(fn_decl_val->type, "is_var_args", 3);
bool is_varargs = fn_node->is_var_args;
- fn_def_fields[3].special = ConstValSpecialStatic;
- fn_def_fields[3].type = ira->codegen->builtin_types.entry_bool;
- fn_def_fields[3].data.x_bool = is_varargs;
+ fn_decl_fields[3].special = ConstValSpecialStatic;
+ fn_decl_fields[3].type = ira->codegen->builtin_types.entry_bool;
+ fn_decl_fields[3].data.x_bool = is_varargs;
// is_extern: bool
- ensure_field_index(fn_def_val->type, "is_extern", 4);
- fn_def_fields[4].special = ConstValSpecialStatic;
- fn_def_fields[4].type = ira->codegen->builtin_types.entry_bool;
- fn_def_fields[4].data.x_bool = fn_node->is_extern;
+ ensure_field_index(fn_decl_val->type, "is_extern", 4);
+ fn_decl_fields[4].special = ConstValSpecialStatic;
+ fn_decl_fields[4].type = ira->codegen->builtin_types.entry_bool;
+ fn_decl_fields[4].data.x_bool = fn_node->is_extern;
// is_export: bool
- ensure_field_index(fn_def_val->type, "is_export", 5);
- fn_def_fields[5].special = ConstValSpecialStatic;
- fn_def_fields[5].type = ira->codegen->builtin_types.entry_bool;
- fn_def_fields[5].data.x_bool = fn_node->is_export;
+ ensure_field_index(fn_decl_val->type, "is_export", 5);
+ fn_decl_fields[5].special = ConstValSpecialStatic;
+ fn_decl_fields[5].type = ira->codegen->builtin_types.entry_bool;
+ fn_decl_fields[5].data.x_bool = fn_node->is_export;
// lib_name: ?[]const u8
- ensure_field_index(fn_def_val->type, "lib_name", 6);
- fn_def_fields[6].special = ConstValSpecialStatic;
+ ensure_field_index(fn_decl_val->type, "lib_name", 6);
+ fn_decl_fields[6].special = ConstValSpecialStatic;
ZigType *u8_ptr = get_pointer_to_type_extra(
ira->codegen, ira->codegen->builtin_types.entry_u8,
true, false, PtrLenUnknown,
0, 0, 0, false);
- fn_def_fields[6].type = get_optional_type(ira->codegen, get_slice_type(ira->codegen, u8_ptr));
+ fn_decl_fields[6].type = get_optional_type(ira->codegen, get_slice_type(ira->codegen, u8_ptr));
if (fn_node->is_extern && buf_len(fn_node->lib_name) > 0) {
- fn_def_fields[6].data.x_optional = create_const_vals(1);
+ fn_decl_fields[6].data.x_optional = create_const_vals(1);
ConstExprValue *lib_name = create_const_str_lit(ira->codegen, fn_node->lib_name);
- init_const_slice(ira->codegen, fn_def_fields[6].data.x_optional, lib_name, 0, buf_len(fn_node->lib_name), true);
+ init_const_slice(ira->codegen, fn_decl_fields[6].data.x_optional, lib_name, 0, buf_len(fn_node->lib_name), true);
} else {
- fn_def_fields[6].data.x_optional = nullptr;
+ fn_decl_fields[6].data.x_optional = nullptr;
}
// return_type: type
- ensure_field_index(fn_def_val->type, "return_type", 7);
- fn_def_fields[7].special = ConstValSpecialStatic;
- fn_def_fields[7].type = ira->codegen->builtin_types.entry_type;
- fn_def_fields[7].data.x_type = fn_entry->type_entry->data.fn.fn_type_id.return_type;
+ ensure_field_index(fn_decl_val->type, "return_type", 7);
+ fn_decl_fields[7].special = ConstValSpecialStatic;
+ fn_decl_fields[7].type = ira->codegen->builtin_types.entry_type;
+ fn_decl_fields[7].data.x_type = fn_entry->type_entry->data.fn.fn_type_id.return_type;
// arg_names: [][] const u8
- ensure_field_index(fn_def_val->type, "arg_names", 8);
+ ensure_field_index(fn_decl_val->type, "arg_names", 8);
size_t fn_arg_count = fn_entry->variable_list.length;
ConstExprValue *fn_arg_name_array = create_const_vals(1);
fn_arg_name_array->special = ConstValSpecialStatic;
@@ -18579,7 +18579,7 @@ static Error ir_make_type_info_defs(IrAnalyze *ira, IrInstruction *source_instr,
fn_arg_name_array->data.x_array.special = ConstArraySpecialNone;
fn_arg_name_array->data.x_array.data.s_none.elements = create_const_vals(fn_arg_count);
- init_const_slice(ira->codegen, &fn_def_fields[8], fn_arg_name_array, 0, fn_arg_count, false);
+ init_const_slice(ira->codegen, &fn_decl_fields[8], fn_arg_name_array, 0, fn_arg_count, false);
for (size_t fn_arg_index = 0; fn_arg_index < fn_arg_count; fn_arg_index++) {
ZigVar *arg_var = fn_entry->variable_list.at(fn_arg_index);
@@ -18591,7 +18591,7 @@ static Error ir_make_type_info_defs(IrAnalyze *ira, IrInstruction *source_instr,
fn_arg_name_val->parent.data.p_array.elem_index = fn_arg_index;
}
- inner_fields[2].data.x_union.payload = fn_def_val;
+ inner_fields[2].data.x_union.payload = fn_decl_val;
break;
}
case TldIdContainer:
@@ -18615,11 +18615,11 @@ static Error ir_make_type_info_defs(IrAnalyze *ira, IrInstruction *source_instr,
zig_unreachable();
}
- definition_val->data.x_struct.fields = inner_fields;
- definition_index++;
+ declaration_val->data.x_struct.fields = inner_fields;
+ declaration_index++;
}
- assert(definition_index == definition_count);
+ assert(declaration_index == declaration_count);
return ErrorNone;
}
@@ -18927,9 +18927,9 @@ static Error ir_make_type_info_value(IrAnalyze *ira, IrInstruction *source_instr
enum_field_val->parent.data.p_array.array_val = enum_field_array;
enum_field_val->parent.data.p_array.elem_index = enum_field_index;
}
- // defs: []TypeInfo.Definition
- ensure_field_index(result->type, "defs", 3);
- if ((err = ir_make_type_info_defs(ira, source_instr, &fields[3],
+ // decls: []TypeInfo.Declaration
+ ensure_field_index(result->type, "decls", 3);
+ if ((err = ir_make_type_info_decls(ira, source_instr, &fields[3],
type_entry->data.enumeration.decls_scope)))
{
return err;
@@ -19094,9 +19094,9 @@ static Error ir_make_type_info_value(IrAnalyze *ira, IrInstruction *source_instr
union_field_val->parent.data.p_array.array_val = union_field_array;
union_field_val->parent.data.p_array.elem_index = union_field_index;
}
- // defs: []TypeInfo.Definition
- ensure_field_index(result->type, "defs", 3);
- if ((err = ir_make_type_info_defs(ira, source_instr, &fields[3],
+ // decls: []TypeInfo.Declaration
+ ensure_field_index(result->type, "decls", 3);
+ if ((err = ir_make_type_info_decls(ira, source_instr, &fields[3],
type_entry->data.unionation.decls_scope)))
{
return err;
@@ -19175,9 +19175,9 @@ static Error ir_make_type_info_value(IrAnalyze *ira, IrInstruction *source_instr
struct_field_val->parent.data.p_array.array_val = struct_field_array;
struct_field_val->parent.data.p_array.elem_index = struct_field_index;
}
- // defs: []TypeInfo.Definition
- ensure_field_index(result->type, "defs", 2);
- if ((err = ir_make_type_info_defs(ira, source_instr, &fields[2],
+ // decls: []TypeInfo.Declaration
+ ensure_field_index(result->type, "decls", 2);
+ if ((err = ir_make_type_info_decls(ira, source_instr, &fields[2],
type_entry->data.structure.decls_scope)))
{
return err;