-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Add a configuration file so we can use Travis CI #2
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jtulach
added a commit
that referenced
this pull request
Jan 17, 2016
Add a configuration file so we can use Travis CI
Should this also include However, I think |
dougxc
added a commit
that referenced
this pull request
Apr 1, 2016
…e:fix/add-missing-TruffleArchiveParticipants to master * commit 'db8f1df152a69e393a19bd9724b79f7fd7310582': all distributions that use a Truffle DSL annotation processor must use TruffleArchiveParticipant
chrisseaton
referenced
this pull request
in Shopify/graal
Nov 1, 2019
Pull upstream to get Sulong fix. Revert workaround
graalvmbot
pushed a commit
that referenced
this pull request
Jan 8, 2020
We want to find a better way to implement array offset calculation. The old pattern for an int array member loading is: and x4, x3, #0xffffffff lsl x4, x4, #2 add x4, x4, #0x10 ldr x0, [x2, x4] And the optimized pattern is: add x1, x2, w3, uxtw #2 ldr x0, [x1, #16] Here is a jmh unit test for int array member loading: private final int func(int[] arr) { int ret = 0; for (int i=0; i < field0; i++) { ret += arr[i]; } return ret; } And the jmh performance results: without this patch with this patch units 1173501.595 948290.420 us/op Here are the additional issues fixed related to this patch: 1. Fix an issue in MatchProcessor, so that we can process platform specific node as a matchable node. 2. Close this optimization for substratevm because the derived reference is not supported yet in SVM. mx bootstrap passes. mx gate -o -t 'CTW:hosted' passes. Change-Id: Ia34f2bf044ca6863be075cf000b29524ca44c42d
This was referenced Jun 26, 2020
rkennke
pushed a commit
to rkennke/graal
that referenced
this pull request
Mar 12, 2021
rkennke
pushed a commit
to rkennke/graal
that referenced
this pull request
Mar 25, 2021
tofische
pushed a commit
to gwipplinger/graal
that referenced
this pull request
May 31, 2021
tofische
pushed a commit
to gwipplinger/graal
that referenced
this pull request
May 31, 2021
tofische
pushed a commit
to gwipplinger/graal
that referenced
this pull request
May 31, 2021
ghost
mentioned this pull request
Sep 17, 2021
zakkak
added a commit
to zakkak/mandrel
that referenced
this pull request
Oct 10, 2024
Backport of GR-52940: Fix reported values in GCHeapSummary JFR event
2 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I'll need to also connect the repo to Travis after this PR is merged before it starts being run.