This was one of the last required functions missing from Clang's libatomic.
Changes in behaviours:
- On x86-64, it'll now be able to detect and use cmpxchg16b
- The rest should be unchanged, given it'd already been able to figure it out statically.
Paths
| Differential D85044
Add __atomic_is_lock_free to compiler-rt Needs ReviewPublic Authored by oontvoo on Jul 31 2020, 1:59 PM.
Details
Diff Detail
Unit TestsFailed Event Timelineoontvoo retitled this revision from [WIP] __atomic_is_lock_free to __atomic_is_lock_free.Aug 3 2020, 7:59 PM Comment Actions Can we please get a description of this change in the commit message and the Phab review? This revision now requires changes to proceed.Aug 4 2020, 6:03 AM oontvoo retitled this revision from __atomic_is_lock_free to Add __atomic_is_lock_free to compiler-rt.Aug 4 2020, 9:13 AM Comment Actions
Comment Actions
Yes Comment Actions
I don't see this file being built anywhere. Can you point me to where to add the test? Comment Actions There is going to be a bunch more complexity required here, I'm afraid. Not only do we need to detect the CPU capabilities in order to implement atomic_is_lock_free, but we also need to ensure that the implementations of atomic_load_c / etc can actually use those atomic instructions as appropriate. This means we need to compile the function with different flags, e.g. -mcx16 for x86-64, in order for the compiler to be able to emit cmpxchg16b, or -march=i586 on 32bit x86. But -- we can't compile the entire file that way. Only the functions called after the runtime detection has assured that we're running on the appropriate hardware can be built with those flags. GCC handles this by compiling the source files multiple times, with different flags, adding some additional #defines which change the function names for each of those compiles. Then, it arranges to dispatch to the correct function depending on the runtime CPU detection. Ideally, we'd also be able to use the "target" attribute to do this on an individual function within the file, but it looks like that may not actually work properly.
Comment Actions rebase. Note: This has effectively undone D86510 because the patch was trying to avoid _atomic_is_lock_free, which hadn't existed then. Comment Actions I'm definitely naive w.r..t compiler-rt, but why is a simple approach like D92302 not sufficient? Comment Actions
The implementation there provides the *right* answers for the cases that can be determined statically. Most of the gunk in this patch is to set up for these checks to be extensible. Then there's the actual making use of CMPXCHG8B/CMPXCHG16B when we know it's available in *_atomic_load/store. Comment Actions
Doesn't D92302 also check for the alignment of the pointer? My understanding is that with D92302, we're returning true from atomic_is_lock_free whenever the implementation in compiler-rt, as of D92302, would be lockfree. Whether that's the very best we can do on the hardware is a different story -- but D92302's atomic_is_lockfree will be consistent with the actual implementation. Am i mistaken? So, basically, this patch does the above, but also allows using a lockfree implementation in more cases, is that it? I'm trying to figure out whether it makes sense to land D92302, and then this patch, since this one seems a lot more involved (and still has TODOs). Please let me know if I'm not getting this right, I'm a bit out of my depth trying to read this patch TBH. Comment Actions
Yes, D92302 provides an implementation of is_lock_free that is consistent with the current _atomic_load_* implementations.
Yes.
The two TODOs in this patch was the attempt to simply this so that we have the basic framework in place before filling in more meaty details (ARMs and odd sizes support) . I suspect we'd do those in subsequent patches. Comment Actions
Got it, thanks a lot for the clarifications. Unless we're confident that we can move forward with this patch in the near future, I would start by doing D92302 since it solves real problems for libc++ (and Apple platforms to the extent that we're currently shipping a broken compiler-rt). @arichardson There are some tests in this patch, perhaps you could grab them? @oontvoo would you be OK with us trying to land D92302 and then rebasing your patch on top? Comment Actions
Excellent, thank you!
oontvoo marked an inline comment as done. Comment Actionsaddressed comment: restrict size-8 testing to x86-64 Comment Actions I don't think I'll be able to contribute to this discussion meaningfully without a significant time investment since I don't touch compiler-rt a lot. Since I have a huge review queue in libc++, I'd rather resign from the review than give the impression that it's blocked on me.
Revision Contents
Diff 310402 compiler-rt/cmake/config-ix.cmake
compiler-rt/lib/builtins/CMakeLists.txt
compiler-rt/lib/builtins/atomic.c
compiler-rt/lib/builtins/atomic_alt.h
compiler-rt/lib/builtins/atomic_alt.c
compiler-rt/lib/builtins/x86_64/atomic_alt_cx16.c
compiler-rt/test/builtins/Unit/atomic_lock_free_test.cc
llvm/include/llvm/Config/config.h.cmake
|
Same check used twice? Also, I think we don't need a configure check for this, #if __has_include(<asm/hwcap.h>) would be ok.