mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 07:38:48 +00:00
Merge pull request #3377 from laytan/fix-amd64-sysv-abi
fix amd64 sysv abi to pass asan everywhere
This commit is contained in:
+15
-32
@@ -558,7 +558,6 @@ namespace lbAbiAmd64SysV {
|
|||||||
Amd64TypeAttribute_StructRect,
|
Amd64TypeAttribute_StructRect,
|
||||||
};
|
};
|
||||||
|
|
||||||
gb_internal LB_ABI_COMPUTE_RETURN_TYPE(compute_return_type);
|
|
||||||
gb_internal void classify_with(LLVMTypeRef t, Array<RegClass> *cls, i64 ix, i64 off);
|
gb_internal void classify_with(LLVMTypeRef t, Array<RegClass> *cls, i64 ix, i64 off);
|
||||||
gb_internal void fixup(LLVMTypeRef t, Array<RegClass> *cls);
|
gb_internal void fixup(LLVMTypeRef t, Array<RegClass> *cls);
|
||||||
gb_internal lbArgType amd64_type(LLVMContextRef c, LLVMTypeRef type, Amd64TypeAttributeKind attribute_kind, ProcCallingConvention calling_convention);
|
gb_internal lbArgType amd64_type(LLVMContextRef c, LLVMTypeRef type, Amd64TypeAttributeKind attribute_kind, ProcCallingConvention calling_convention);
|
||||||
@@ -796,10 +795,10 @@ namespace lbAbiAmd64SysV {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
i64 sz = lb_sizeof(type);
|
||||||
if (all_ints) {
|
if (all_ints) {
|
||||||
i64 sz = lb_sizeof(type);
|
|
||||||
for_array(i, reg_classes) {
|
for_array(i, reg_classes) {
|
||||||
GB_ASSERT(sz != 0);
|
GB_ASSERT(sz > 0);
|
||||||
// TODO(bill): is this even correct? BECAUSE LLVM DOES NOT DOCUMENT ANY OF THIS!!!
|
// TODO(bill): is this even correct? BECAUSE LLVM DOES NOT DOCUMENT ANY OF THIS!!!
|
||||||
if (sz >= 8) {
|
if (sz >= 8) {
|
||||||
array_add(&types, LLVMIntTypeInContext(c, 64));
|
array_add(&types, LLVMIntTypeInContext(c, 64));
|
||||||
@@ -811,12 +810,16 @@ namespace lbAbiAmd64SysV {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
for (isize i = 0; i < reg_classes.count; /**/) {
|
for (isize i = 0; i < reg_classes.count; /**/) {
|
||||||
|
GB_ASSERT(sz > 0);
|
||||||
RegClass reg_class = reg_classes[i];
|
RegClass reg_class = reg_classes[i];
|
||||||
switch (reg_class) {
|
switch (reg_class) {
|
||||||
case RegClass_Int:
|
case RegClass_Int:
|
||||||
// TODO(bill): is this even correct? BECAUSE LLVM DOES NOT DOCUMENT ANY OF THIS!!!
|
{
|
||||||
array_add(&types, LLVMIntTypeInContext(c, 64));
|
i64 rs = gb_min(sz, 8);
|
||||||
break;
|
array_add(&types, LLVMIntTypeInContext(c, cast(unsigned)(rs*8)));
|
||||||
|
sz -= rs;
|
||||||
|
break;
|
||||||
|
}
|
||||||
case RegClass_SSEFv:
|
case RegClass_SSEFv:
|
||||||
case RegClass_SSEDv:
|
case RegClass_SSEDv:
|
||||||
case RegClass_SSEInt8:
|
case RegClass_SSEInt8:
|
||||||
@@ -856,15 +859,18 @@ namespace lbAbiAmd64SysV {
|
|||||||
unsigned vec_len = llvec_len(reg_classes, i+1);
|
unsigned vec_len = llvec_len(reg_classes, i+1);
|
||||||
LLVMTypeRef vec_type = LLVMVectorType(elem_type, vec_len * elems_per_word);
|
LLVMTypeRef vec_type = LLVMVectorType(elem_type, vec_len * elems_per_word);
|
||||||
array_add(&types, vec_type);
|
array_add(&types, vec_type);
|
||||||
|
sz -= lb_sizeof(vec_type);
|
||||||
i += vec_len;
|
i += vec_len;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case RegClass_SSEFs:
|
case RegClass_SSEFs:
|
||||||
array_add(&types, LLVMFloatTypeInContext(c));
|
array_add(&types, LLVMFloatTypeInContext(c));
|
||||||
|
sz -= 4;
|
||||||
break;
|
break;
|
||||||
case RegClass_SSEDs:
|
case RegClass_SSEDs:
|
||||||
array_add(&types, LLVMDoubleTypeInContext(c));
|
array_add(&types, LLVMDoubleTypeInContext(c));
|
||||||
|
sz -= 8;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
GB_PANIC("Unhandled RegClass");
|
GB_PANIC("Unhandled RegClass");
|
||||||
@@ -876,8 +882,8 @@ namespace lbAbiAmd64SysV {
|
|||||||
if (types.count == 1) {
|
if (types.count == 1) {
|
||||||
return types[0];
|
return types[0];
|
||||||
}
|
}
|
||||||
// TODO(bill): this should be packed but it causes code generation issues
|
|
||||||
return LLVMStructTypeInContext(c, types.data, cast(unsigned)types.count, false);
|
return LLVMStructTypeInContext(c, types.data, cast(unsigned)types.count, sz == 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
gb_internal void classify_with(LLVMTypeRef t, Array<RegClass> *cls, i64 ix, i64 off) {
|
gb_internal void classify_with(LLVMTypeRef t, Array<RegClass> *cls, i64 ix, i64 off) {
|
||||||
@@ -980,28 +986,6 @@ namespace lbAbiAmd64SysV {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
gb_internal LB_ABI_COMPUTE_RETURN_TYPE(compute_return_type) {
|
|
||||||
if (!return_is_defined) {
|
|
||||||
return lb_arg_type_direct(LLVMVoidTypeInContext(c));
|
|
||||||
} else if (lb_is_type_kind(return_type, LLVMStructTypeKind)) {
|
|
||||||
i64 sz = lb_sizeof(return_type);
|
|
||||||
switch (sz) {
|
|
||||||
case 1: return lb_arg_type_direct(return_type, LLVMIntTypeInContext(c, 8), nullptr, nullptr);
|
|
||||||
case 2: return lb_arg_type_direct(return_type, LLVMIntTypeInContext(c, 16), nullptr, nullptr);
|
|
||||||
case 4: return lb_arg_type_direct(return_type, LLVMIntTypeInContext(c, 32), nullptr, nullptr);
|
|
||||||
case 8: return lb_arg_type_direct(return_type, LLVMIntTypeInContext(c, 64), nullptr, nullptr);
|
|
||||||
}
|
|
||||||
|
|
||||||
LB_ABI_MODIFY_RETURN_IF_TUPLE_MACRO();
|
|
||||||
|
|
||||||
LLVMAttributeRef attr = lb_create_enum_attribute_with_type(c, "sret", return_type);
|
|
||||||
return lb_arg_type_indirect(return_type, attr);
|
|
||||||
} else if (build_context.metrics.os == TargetOs_windows && lb_is_type_kind(return_type, LLVMIntegerTypeKind) && lb_sizeof(return_type) == 16) {
|
|
||||||
return lb_arg_type_direct(return_type, LLVMIntTypeInContext(c, 128), nullptr, nullptr);
|
|
||||||
}
|
|
||||||
return non_struct(c, return_type);
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -1166,8 +1150,7 @@ namespace lbAbiArm64 {
|
|||||||
size_copy -= 8;
|
size_copy -= 8;
|
||||||
}
|
}
|
||||||
GB_ASSERT(size_copy <= 0);
|
GB_ASSERT(size_copy <= 0);
|
||||||
// TODO(bill): this should be packed but it causes code generation issues
|
cast_type = LLVMStructTypeInContext(c, types, count, true);
|
||||||
cast_type = LLVMStructTypeInContext(c, types, count, false);
|
|
||||||
}
|
}
|
||||||
return lb_arg_type_direct(return_type, cast_type, nullptr, nullptr);
|
return lb_arg_type_direct(return_type, cast_type, nullptr, nullptr);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
ODIN=../../odin
|
ODIN=../../odin
|
||||||
|
|
||||||
all: rtti_test map_test pow_test 128_test
|
all: rtti_test map_test pow_test 128_test asan_test
|
||||||
|
|
||||||
rtti_test:
|
rtti_test:
|
||||||
$(ODIN) run test_rtti.odin -file -vet -strict-style -o:minimal
|
$(ODIN) run test_rtti.odin -file -vet -strict-style -o:minimal
|
||||||
@@ -13,3 +13,6 @@ pow_test:
|
|||||||
|
|
||||||
128_test:
|
128_test:
|
||||||
$(ODIN) run test_128.odin -file -vet -strict-style -o:minimal
|
$(ODIN) run test_128.odin -file -vet -strict-style -o:minimal
|
||||||
|
|
||||||
|
asan_test:
|
||||||
|
$(ODIN) run test_asan.odin -file -sanitize:address -debug
|
||||||
|
|||||||
@@ -0,0 +1,62 @@
|
|||||||
|
// Intended to contain code that would trigger asan easily if the abi was set up badly.
|
||||||
|
package test_asan
|
||||||
|
|
||||||
|
import "core:fmt"
|
||||||
|
import "core:testing"
|
||||||
|
import "core:os"
|
||||||
|
|
||||||
|
TEST_count := 0
|
||||||
|
TEST_fail := 0
|
||||||
|
|
||||||
|
when ODIN_TEST {
|
||||||
|
expect :: testing.expect
|
||||||
|
log :: testing.log
|
||||||
|
} else {
|
||||||
|
expect :: proc(t: ^testing.T, condition: bool, message: string, loc := #caller_location) {
|
||||||
|
TEST_count += 1
|
||||||
|
if !condition {
|
||||||
|
TEST_fail += 1
|
||||||
|
fmt.printf("[%v] %v\n", loc, message)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
log :: proc(t: ^testing.T, v: any, loc := #caller_location) {
|
||||||
|
fmt.printf("[%v] ", loc)
|
||||||
|
fmt.printf("log: %v\n", v)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
main :: proc() {
|
||||||
|
t := testing.T{}
|
||||||
|
|
||||||
|
test_12_bytes(&t)
|
||||||
|
test_12_bytes_two(&t)
|
||||||
|
|
||||||
|
fmt.printf("%v/%v tests successful.\n", TEST_count - TEST_fail, TEST_count)
|
||||||
|
if TEST_fail > 0 {
|
||||||
|
os.exit(1)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@(test)
|
||||||
|
test_12_bytes :: proc(t: ^testing.T) {
|
||||||
|
internal :: proc() -> (a, b: f32, ok: bool) {
|
||||||
|
return max(f32), 0, true
|
||||||
|
}
|
||||||
|
|
||||||
|
a, b, ok := internal()
|
||||||
|
expect(t, a == max(f32), fmt.tprintf("a (%v) != max(f32)", a))
|
||||||
|
expect(t, b == 0, fmt.tprintf("b (%v) != 0", b))
|
||||||
|
expect(t, ok, fmt.tprintf("ok (%v) != true", ok))
|
||||||
|
}
|
||||||
|
|
||||||
|
@(test)
|
||||||
|
test_12_bytes_two :: proc(t: ^testing.T) {
|
||||||
|
internal :: proc() -> (a: f32, b: int) {
|
||||||
|
return 100., max(int)
|
||||||
|
}
|
||||||
|
|
||||||
|
a, b := internal()
|
||||||
|
expect(t, a == 100., fmt.tprintf("a (%v) != 100.", a))
|
||||||
|
expect(t, b == max(int), fmt.tprintf("b (%v) != max(int)", b))
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user