-
Notifications
You must be signed in to change notification settings - Fork 401
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement atomic add and swap codegen support for Z #2999
Conversation
Implement inlined intrinsic support for the following symbols as defined in eclipse-omr#2958: - atomicAdd32BitSymbol - atomicAdd64BitSymbol - atomicFetchAndAdd32BitSymbol - atomicFetchAndAdd64BitSymbol - atomicSwap32BitSymbol - atomicSwap64BitSymbol Signed-off-by: Filip Jeremic <[email protected]>
Documents the semantics of the following codegen inlined intrinsics so that different codegens know exactly how to implement them: - atomicAdd32BitSymbol - atomicAdd64BitSymbol - atomicFetchAndAdd32BitSymbol - atomicFetchAndAdd64BitSymbol - atomicSwap32BitSymbol - atomicSwap64BitSymbol Signed-off-by: Filip Jeremic <[email protected]>
Signed-off-by: Filip Jeremic <[email protected]>
The width of the intrinsic to generate can be implied by the data type of the second child. Signed-off-by: Filip Jeremic <[email protected]>
This commit creates the following symbols: - atomicAddSymbol - atomicFetchAndAddSymbol - atomicSwapSymbol - atomicCompareAndSwapSymbol Because the corresponding "32Bit" and "64Bit" symbols are being used in the downstream OpenJ9 project a subsequent PR will remove them once the dependency is alleviated. The following symbols have been deprecated: - atomicAdd32BitSymbol - atomicAdd64BitSymbol - atomicCompareAndSwap32BitSymbol - atomicCompareAndSwap64BitSymbol in favor of the width-less versions. There are no known downstream projects using the above symbols so folding them is safe. Signed-off-by: Filip Jeremic <[email protected]>
f7f9547
to
8d30aae
Compare
Introduce a new API supportsNonHelper which determines whether inlining intrinsics is supported for a particular non-helper symbol. Since this API is more general we deprecate some existing APIs such as supportsAtomicAdd and supportsAtomicSwap. Signed-off-by: Filip Jeremic <[email protected]>
23dbc88
to
a7704d1
Compare
@0dvictor could you please review again? All comments have been addressed. |
Changes in common code and X86 CodeGen looks good to me. |
I like the idea of having the query |
I'm not sure what you're referring to here. Could you elaborate what these are and where they should be added? |
Sorry, what I really wanted to ask is: does current implementation support object fields that are reference type? Reading from and writing to such fields needs read/write barrier. |
No it doesn't. According to the documentation an address must be provided to these atomic symbols. Presumably whoever is providing the address has ensured that it is correct, i.e. if the address was calculated from a field load whoever is providing the address must ensure the read barrier was done. Our evaluators for the atomic symbols are simple. The onus is on whoever generates them to ensure they follow the semantics according to the documentation. |
Signed-off-by: Filip Jeremic <[email protected]>
All tagged reviews have approved. Off to @0xdaryl. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. (Sorry that I forgot to "officially" approve though I said LGTM in my comments.)
@0xdaryl / @vijaysun-omr all suggested reviewers have approved. Any concerns from committers side? |
Signed-off-by: Filip Jeremic <[email protected]>
@0xdaryl any other concerns? |
@genie-omr build all |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, for looking at this so late.
- I find the name NonHelper a bit confusing. I would rather called it InlinedHelper.
- @andrewcraik should not we do something special about aliasing for these new symbols?
There is an outstanding Issue (#3050) about renaming |
I don't think any special aliasing is required because we default to a conservative default method aliasing which should be conservative enough to prevent unwanted code motion (https://github.com/eclipse/omr/blob/9cf9e1c660823c3f2ad333c9e6aca9c791581051/compiler/il/Aliases.cpp#L390). |
Yes, I meant something more optimistic than the default aliasing. But I agree, it can be a separate feature. |
In support of #2958 we implement the existing intrinsics for Z. Another follow-up PR will address the new intrinsics which are proposed in #2174.
Issue: #2958
Signed-off-by: Filip Jeremic [email protected]