https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=230888

--- Comment #36 from Tijl Coosemans <t...@freebsd.org> ---
(In reply to Dimitry Andric from comment #35)
The calls are expanded because of casts.  So for instance a uint64_t* parameter
is cast to _Atomic(uint64_t)*.  This is problematic because _Atomic(uint64_t)
can be an 8 byte aligned type which causes compiler_rt to use instructions as
if a given address is 8 byte aligned while it can be completely misaligned. 
Here's some example code where clang generates a library call because of
misalignment.

struct foo {
        char c;
        _Atomic(long long) ll;
} __attribute__((__packed__));

long long
test(struct foo *f) {
        return (f->ll);
}

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
freebsd-toolchain@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-toolchain
To unsubscribe, send any mail to "freebsd-toolchain-unsubscr...@freebsd.org"

Reply via email to