Make load method be "use$name"
This commit is contained in:
parent
5641d0c837
commit
ea7fcd85b4
5
Makefile
5
Makefile
@ -1,7 +1,8 @@
|
||||
PREFIX=/usr/local
|
||||
VERSION=0.12.1
|
||||
CCONFIG=-std=c11 -Werror -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -fPIC -fsanitize=signed-integer-overflow -fno-sanitize-recover -fvisibility=hidden \
|
||||
-flto=auto -fno-fat-lto-objects -Wl,-flto -fdollars-in-identifiers
|
||||
CCONFIG=-std=c11 -Werror -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -fPIC \
|
||||
-fsanitize=signed-integer-overflow -fno-sanitize-recover -fvisibility=hidden -fdollars-in-identifiers
|
||||
LTO=-flto=auto -fno-fat-lto-objects -Wl,-flto
|
||||
LDFLAGS=-Wl,-rpath '-Wl,$$ORIGIN'
|
||||
# MAKEFLAGS := --jobs=$(shell nproc) --output-sync=target
|
||||
CWARN=-Wall -Wextra -Wno-format
|
||||
|
14
compile.c
14
compile.c
@ -1083,21 +1083,31 @@ module_code_t compile_file(ast_t *ast)
|
||||
CORD_appendf(&env->code->main, "%r\n", code);
|
||||
}
|
||||
|
||||
const char *name = strrchr(ast->file->filename, '/');
|
||||
name = name ? name : ast->file->filename;
|
||||
size_t name_len = 0;
|
||||
while (name[name_len] && (isalnum(name[name_len]) || name[name_len] == '_'))
|
||||
++name_len;
|
||||
const char *module_name = heap_strn(name, name_len);
|
||||
|
||||
return (module_code_t){
|
||||
.module_name=module_name,
|
||||
.header=CORD_all(
|
||||
"#pragma once\n",
|
||||
// CORD_asprintf("#line 0 %r\n", Str__quoted(ast->file->filename, false)),
|
||||
env->code->imports, "\n",
|
||||
env->code->typedefs, "\n",
|
||||
env->code->typecode, "\n",
|
||||
env->code->fndefs, "\n"),
|
||||
env->code->fndefs, "\n",
|
||||
"void use$", module_name, "(void);\n"
|
||||
),
|
||||
.c_file=CORD_all(
|
||||
// CORD_asprintf("#line 0 %r\n", Str__quoted(ast->file->filename, false)),
|
||||
env->code->staticdefs, "\n",
|
||||
env->code->funcs, "\n",
|
||||
env->code->typeinfos, "\n",
|
||||
"\n"
|
||||
"static void $load(void) {\n",
|
||||
"void use$", module_name, "(void) {\n",
|
||||
env->code->main,
|
||||
"}\n"
|
||||
),
|
||||
|
@ -8,6 +8,7 @@
|
||||
#include "environment.h"
|
||||
|
||||
typedef struct {
|
||||
const char *module_name;
|
||||
CORD header, c_file;
|
||||
} module_code_t;
|
||||
|
||||
|
9
enums.c
9
enums.c
@ -35,7 +35,7 @@ static CORD compile_str_method(env_t *env, ast_t *ast)
|
||||
}
|
||||
str_func = CORD_cat(str_func, ", \")\");\n");
|
||||
}
|
||||
str_func = CORD_cat(str_func, "\t}\n}\n");
|
||||
str_func = CORD_cat(str_func, "\tdefault: return CORD_EMPTY;\n\t}\n}\n");
|
||||
return str_func;
|
||||
}
|
||||
|
||||
@ -44,6 +44,7 @@ static CORD compile_compare_method(env_t *env, ast_t *ast)
|
||||
auto def = Match(ast, EnumDef);
|
||||
CORD cmp_func = CORD_all("static int ", def->name, "__compare(const ", def->name, "_t *x, const ", def->name,
|
||||
"_t *y, const TypeInfo *info) {\n"
|
||||
"(void)info;\n"
|
||||
"int diff = x->$tag - y->$tag;\n"
|
||||
"if (diff) return diff;\n"
|
||||
"switch (x->$tag) {\n");
|
||||
@ -52,7 +53,7 @@ static CORD compile_compare_method(env_t *env, ast_t *ast)
|
||||
cmp_func = CORD_all(cmp_func, "\tcase $tag$", def->name, "$", tag->name, ": "
|
||||
"return generic_compare(&x->", tag->name, ", &y->", tag->name, ", ", compile_type_info(env, tag_type), ");\n");
|
||||
}
|
||||
cmp_func = CORD_all(cmp_func, "}\n}\n");
|
||||
cmp_func = CORD_all(cmp_func, "default: return 0;\n}\n}\n");
|
||||
return cmp_func;
|
||||
}
|
||||
|
||||
@ -61,6 +62,7 @@ static CORD compile_equals_method(env_t *env, ast_t *ast)
|
||||
auto def = Match(ast, EnumDef);
|
||||
CORD eq_func = CORD_all("static bool ", def->name, "__equal(const ", def->name, "_t *x, const ", def->name,
|
||||
"_t *y, const TypeInfo *info) {\n"
|
||||
"(void)info;\n"
|
||||
"if (x->$tag != y->$tag) return no;\n"
|
||||
"switch (x->$tag) {\n");
|
||||
for (tag_ast_t *tag = def->tags; tag; tag = tag->next) {
|
||||
@ -68,7 +70,7 @@ static CORD compile_equals_method(env_t *env, ast_t *ast)
|
||||
eq_func = CORD_all(eq_func, "\tcase $tag$", def->name, "$", tag->name, ": "
|
||||
"return generic_equal(&x->", tag->name, ", &y->", tag->name, ", ", compile_type_info(env, tag_type), ");\n");
|
||||
}
|
||||
eq_func = CORD_all(eq_func, "}\n}\n");
|
||||
eq_func = CORD_all(eq_func, "default: return 0;\n}\n}\n");
|
||||
return eq_func;
|
||||
}
|
||||
|
||||
@ -76,6 +78,7 @@ static CORD compile_hash_method(env_t *env, ast_t *ast)
|
||||
{
|
||||
auto def = Match(ast, EnumDef);
|
||||
CORD hash_func = CORD_all("static uint32_t ", def->name, "__hash(const ", def->name, "_t *obj, const TypeInfo *info) {\n"
|
||||
"(void)info;\n"
|
||||
"uint32_t hashes[2] = {(uint32_t)obj->$tag};\n"
|
||||
"switch (obj->$tag) {\n");
|
||||
for (tag_ast_t *tag = def->tags; tag; tag = tag->next) {
|
||||
|
@ -61,6 +61,7 @@ static CORD compile_compare_method(env_t *env, ast_t *ast)
|
||||
auto def = Match(ast, StructDef);
|
||||
CORD cmp_func = CORD_all("static int ", def->name, "__compare(const ", def->name, "_t *x, const ", def->name,
|
||||
"_t *y, const TypeInfo *info) {\n"
|
||||
"(void)info;\n",
|
||||
"int diff;\n");
|
||||
for (arg_ast_t *field = def->fields; field; field = field->next) {
|
||||
type_t *field_type = get_arg_ast_type(env, field);
|
||||
@ -86,7 +87,8 @@ static CORD compile_equals_method(env_t *env, ast_t *ast)
|
||||
{
|
||||
auto def = Match(ast, StructDef);
|
||||
CORD eq_func = CORD_all("static bool ", def->name, "__equal(const ", def->name, "_t *x, const ", def->name,
|
||||
"_t *y, const TypeInfo *info) {\n");
|
||||
"_t *y, const TypeInfo *info) {\n"
|
||||
"(void)info;\n");
|
||||
for (arg_ast_t *field = def->fields; field; field = field->next) {
|
||||
type_t *field_type = parse_type_ast(env, field->type);
|
||||
switch (field_type->tag) {
|
||||
@ -110,6 +112,7 @@ static CORD compile_hash_method(env_t *env, ast_t *ast)
|
||||
{
|
||||
auto def = Match(ast, StructDef);
|
||||
CORD hash_func = CORD_all("static uint32_t ", def->name, "__hash(const ", def->name, "_t *obj, const TypeInfo *info) {\n"
|
||||
"(void)info;\n"
|
||||
"uint32_t field_hashes[] = {");
|
||||
for (arg_ast_t *field = def->fields; field; field = field->next) {
|
||||
type_t *field_type = get_arg_ast_type(env, field);
|
||||
|
Loading…
Reference in New Issue
Block a user