README: github.com/OracleLabs/GraalVM is deprecated.#7
Closed
zapster wants to merge 1 commit intooracle:masterfrom
Closed
README: github.com/OracleLabs/GraalVM is deprecated.#7zapster wants to merge 1 commit intooracle:masterfrom
zapster wants to merge 1 commit intooracle:masterfrom
Conversation
Contributor
|
Most user friendly might be a link to https://wiki.openjdk.java.net/display/Graal/Instructions |
Member
Member
Author
|
Ok will change it to https://wiki.openjdk.java.net/display/Graal/Instructions! |
dougxc
pushed a commit
that referenced
this pull request
Apr 19, 2016
…ruffle:FasterExecute to master * commit '2433f9c6627870eea575477a51dd83c6a7b45774': (47 commits) Removing typo - additional l in the class name Using constant value fields rather than magical numbers Don't wrap the TruffleObject in case of single threaded execution. Assume people will manipulate them carefully on the right thread. Adding assumption checks per Christian's request Move Context support next to PolyglotEngine as package private classes Apply proper formatting Multiply by two Removing unneeded constructor Removing redundant modifiers and spaces Comparing speed of direct SLFunction execution with overhead of PolyglotEngine.Value.execute Simplify cached object access. Add missing transferToInterpreter. Hide debug events behind boundaries. Turn checkThread into assertion DirectValue allows us to skip executor == null check when execute method is being called Hide the communication with debugger behind an assumption. Let executionStarted be part of Truffle compilation - it is optimized now. argumentLength is no longer needed Use direct value for eval when there is no executor Use condition profile to track whether boxing is needed at all Use recursive version instead of loop of two ...
XiaohongGong
pushed a commit
to XiaohongGong/graal
that referenced
this pull request
Feb 24, 2020
This patch adds the following match rules to generate bitfield move instruction on AArch64: * (RightShift (LeftShift value a) b) -> SBFX/SBFIZ * (UnsignedRightShift (LeftShift value a) b) -> UBFX/UBFIZ * (LeftShift (SignExtend value) a) -> SBFIZ Eg: lsl w0, w1, oracle#8 asr w0, w0, oracle#15 is optimized to: sbfx w0, w1, oracle#7, oracle#17 It also adds the rules to integrate the ZeroExtend with unsigned bitfield move operation. Eg: ubfiz w0, w1, oracle#5, oracle#12 and x0, x0, #0xffffffff is optimized to: ubfiz x0, x1, oracle#5, oracle#12 Change-Id: I2b635d4895db0d5f4c30630176f336e9a226ccaf
jerboaa
pushed a commit
to jerboaa/graal
that referenced
this pull request
Feb 19, 2026
Backport [GR-71287] Reduce image size when using JFR.
This file contains hidden or 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
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.
We could also link to http://openjdk.java.net/projects/graal/ if that is preferred.