aboutsummaryrefslogtreecommitdiff
path: root/src/ir.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2020-11-29 18:17:21 +0000
committergingerBill <bill@gingerbill.org>2020-11-29 18:17:21 +0000
commitf06f33872ca22ca9afd1787b130ee3fb5fb2d723 (patch)
tree230c4f3acdd3a4ce31e3fff7e5c1abb397a77ad8 /src/ir.cpp
parent9e1341631246e752b7be703a6ef3e4398205b726 (diff)
Make 16 simple hasher cases for small types
Diffstat (limited to 'src/ir.cpp')
-rw-r--r--src/ir.cpp42
1 files changed, 17 insertions, 25 deletions
diff --git a/src/ir.cpp b/src/ir.cpp
index 06d88ae5b..0d9292a50 100644
--- a/src/ir.cpp
+++ b/src/ir.cpp
@@ -4969,15 +4969,10 @@ irValue *ir_simple_compare_hash(irProcedure *p, Type *type, irValue *data, irVal
GB_ASSERT_MSG(is_type_simple_compare(type), "%s", type_to_string(type));
i64 sz = type_size_of(type);
- char const *name = nullptr;
- switch (sz) {
- case 1: name = "default_hasher1"; break;
- case 2: name = "default_hasher2"; break;
- case 4: name = "default_hasher4"; break;
- case 8: name = "default_hasher8"; break;
- case 16: name = "default_hasher16"; break;
- }
- if (name != nullptr) {
+ if (1 <= sz && sz <= 16) {
+ char name[20] = {};
+ gb_snprintf(name, 20, "default_hasher%d", cast(i32)sz);
+
auto args = array_make<irValue *>(permanent_allocator(), 2);
args[0] = data;
args[1] = seed;
@@ -5038,7 +5033,19 @@ irValue *ir_get_hasher_proc_for_type(irModule *m, Type *type) {
return p;
}
- if (type->kind == Type_Struct) {
+ if (is_type_cstring(type)) {
+ auto args = array_make<irValue *>(permanent_allocator(), 2);
+ args[0] = data;
+ args[1] = seed;
+ irValue *res = ir_emit_runtime_call(proc, "default_hasher_cstring", args);
+ ir_emit(proc, ir_instr_return(proc, res));
+ } else if (is_type_string(type)) {
+ auto args = array_make<irValue *>(permanent_allocator(), 2);
+ args[0] = data;
+ args[1] = seed;
+ irValue *res = ir_emit_runtime_call(proc, "default_hasher_string", args);
+ ir_emit(proc, ir_instr_return(proc, res));
+ } else if (type->kind == Type_Struct) {
type_set_offsets(type);
data = ir_emit_conv(proc, data, t_u8_ptr);
@@ -5096,25 +5103,10 @@ irValue *ir_get_hasher_proc_for_type(irModule *m, Type *type) {
irValue *res = ir_emit_load(proc, pres);
ir_emit(proc, ir_instr_return(proc, res));
- } else if (is_type_cstring(type)) {
- auto args = array_make<irValue *>(permanent_allocator(), 2);
- args[0] = data;
- args[1] = seed;
- irValue *res = ir_emit_runtime_call(proc, "default_hasher_cstring", args);
- ir_emit(proc, ir_instr_return(proc, res));
- } else if (is_type_string(type)) {
- auto args = array_make<irValue *>(permanent_allocator(), 2);
- args[0] = data;
- args[1] = seed;
- irValue *res = ir_emit_runtime_call(proc, "default_hasher_string", args);
- ir_emit(proc, ir_instr_return(proc, res));
} else {
GB_PANIC("Unhandled type for hasher: %s", type_to_string(type));
}
-
- ir_end_procedure_body(proc);
-
return p;
}