Skip to content
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

Merged
merged 8 commits into from
Oct 3, 2018

Conversation

fjeremic
Copy link
Contributor

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.

  • Implement Z codegen support for several atomic symbols
  • Document atomic symbol semantics
  • Document supportsAtomicAdd and introduce supportsAtomicSwap

Issue: #2958

Signed-off-by: Filip Jeremic [email protected]

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]>
@fjeremic
Copy link
Contributor Author

Requesting review from @liqunl @0dvictor for x86 code changes and verification of documentation, and @r30shah for Z codegen piece.

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]>
@fjeremic fjeremic force-pushed the atomic-codegen-support branch from f7f9547 to 8d30aae Compare September 27, 2018 16:43
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]>
@fjeremic fjeremic force-pushed the atomic-codegen-support branch from 23dbc88 to a7704d1 Compare September 27, 2018 17:19
@fjeremic
Copy link
Contributor Author

@0dvictor could you please review again? All comments have been addressed.

@0dvictor
Copy link
Contributor

Changes in common code and X86 CodeGen looks good to me.

@liqunl
Copy link
Contributor

liqunl commented Sep 27, 2018

I like the idea of having the query supportsNonHelper. Changes in common and X86 look good to me. But will there be a follow-up PR to add the write barrier and read barrier for Object type?

@fjeremic
Copy link
Contributor Author

But will there be a follow-up PR to add the write barrier and read barrier for Object type?

I'm not sure what you're referring to here. Could you elaborate what these are and where they should be added?

@liqunl
Copy link
Contributor

liqunl commented Sep 27, 2018

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.

@fjeremic
Copy link
Contributor Author

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.

@fjeremic
Copy link
Contributor Author

All tagged reviews have approved. Off to @0xdaryl.

Copy link
Contributor

@0dvictor 0dvictor left a 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.)

@fjeremic
Copy link
Contributor Author

fjeremic commented Oct 2, 2018

@0xdaryl / @vijaysun-omr all suggested reviewers have approved. Any concerns from committers side?

@fjeremic
Copy link
Contributor Author

fjeremic commented Oct 3, 2018

@0xdaryl any other concerns?

@0xdaryl
Copy link
Contributor

0xdaryl commented Oct 3, 2018

@genie-omr build all

@0xdaryl 0xdaryl self-assigned this Oct 3, 2018
@0xdaryl 0xdaryl merged commit 6301037 into eclipse-omr:master Oct 3, 2018
Copy link
Contributor

@gita-omr gita-omr left a 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.

  1. I find the name NonHelper a bit confusing. I would rather called it InlinedHelper.
  2. @andrewcraik should not we do something special about aliasing for these new symbols?

@0dvictor
Copy link
Contributor

I find the name NoHelper a bit confusing. I would rather called it InlineHelper.

There is an outstanding Issue (#3050) about renaming NonHelper. Though I believe everyone agreed to change its name, the final decision on its new name has not been made yet. The discussion was brought in one of complier architecture meetings. #3115

@andrewcraik
Copy link
Contributor

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).

@gita-omr
Copy link
Contributor

Yes, I meant something more optimistic than the default aliasing. But I agree, it can be a separate feature.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants