Skip to content

Commit 3b151de

Browse files
committed
[GR-59877] Update SyncPort info.
PullRequest: graal/19335
2 parents d5a0484 + 6e70854 commit 3b151de

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/hotspot/meta/HotSpotGraphBuilderPlugins.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -770,8 +770,8 @@ private static void inlineNativeNotifyJvmtiFunctions(GraalHotSpotVMConfig config
770770
}
771771

772772
// @formatter:off
773-
@SyncPort(from = "https://github.com/openjdk/jdk/blob/79345bbbae2564f9f523859d1227a1784293b20f/src/hotspot/share/opto/library_call.cpp#L3737-L3820",
774-
sha1 = "d65356dbc0235df26aa56b233bcd100462a5dab4")
773+
@SyncPort(from = "https://github.com/openjdk/jdk/blob/b80ca4902af71938b32634d3fd230f4d65cde454/src/hotspot/share/opto/library_call.cpp#L3734-L3817",
774+
sha1 = "f05a07a18ffae50e2a2b20586184a26e9cc8c5f2")
775775
// @formatter:on
776776
private static class ContinuationPinningPlugin extends InvocationPlugin {
777777

compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/hotspot/replacements/HotSpotHashCodeSnippets.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
import jdk.graal.compiler.word.Word;
4747

4848
// @formatter:off
49-
@SyncPort(from = "https://github.com/openjdk/jdk/blob/79345bbbae2564f9f523859d1227a1784293b20f/src/hotspot/share/opto/library_call.cpp#L4656-L4790",
49+
@SyncPort(from = "https://github.com/openjdk/jdk/blob/d52d13648612546ef4458579aff6daf965586a03/src/hotspot/share/opto/library_call.cpp#L4653-L4787",
5050
sha1 = "c212d1dbff26d02d4d749e085263d4104895f1ba")
5151
// @formatter:on
5252
public class HotSpotHashCodeSnippets extends IdentityHashCodeSnippets {

compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/hotspot/replacements/VirtualThreadUpdateJFRSnippets.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@
6464
* Snippet for updating JFR thread local data on {@code Thread#setCurrentThread} events.
6565
*/
6666
// @formatter:off
67-
@SyncPort(from = "https://github.com/openjdk/jdk/blob/79345bbbae2564f9f523859d1227a1784293b20f/src/hotspot/share/opto/library_call.cpp#L3525-L3651",
68-
sha1 = "564050736d9601fe43c16d9c393706b4e67f05d2")
67+
@SyncPort(from = "https://github.com/openjdk/jdk/blob/b80ca4902af71938b32634d3fd230f4d65cde454/src/hotspot/share/opto/library_call.cpp#L3522-L3648",
68+
sha1 = "f8d8362275f830ac8a2e7ac9c5e10bc58dfc015f")
6969
// @formatter:on
7070
public class VirtualThreadUpdateJFRSnippets implements Snippets {
7171

compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/lir/aarch64/AArch64BitSwapOp.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
import jdk.vm.ci.meta.AllocatableValue;
3737

3838
// @formatter:off
39-
@SyncPort(from = "https://github.com/openjdk/jdk/blob/79345bbbae2564f9f523859d1227a1784293b20f/src/hotspot/cpu/aarch64/aarch64.ad#L13507-L13531",
39+
@SyncPort(from = "https://github.com/openjdk/jdk/blob/d52d13648612546ef4458579aff6daf965586a03/src/hotspot/cpu/aarch64/aarch64.ad#L13508-L13532",
4040
sha1 = "5e7655c00a9d610fa3c992305c0f6aeba32b2d6c")
4141
// @formatter:on
4242
public class AArch64BitSwapOp extends AArch64LIRInstruction {

compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/lir/aarch64/AArch64NormalizedUnsignedCompareOp.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* Returns -1, 0, or 1 if either x < y, x == y, or x > y.
4242
*/
4343
// @formatter:off
44-
@SyncPort(from = "https://github.com/openjdk/jdk/blob/79345bbbae2564f9f523859d1227a1784293b20f/src/hotspot/cpu/aarch64/aarch64.ad#L9159-L9241",
44+
@SyncPort(from = "https://github.com/openjdk/jdk/blob/d52d13648612546ef4458579aff6daf965586a03/src/hotspot/cpu/aarch64/aarch64.ad#L9160-L9242",
4545
sha1 = "84da421c1489e188366d61bb4298e0425ccac14b")
4646
// @formatter:on
4747
public class AArch64NormalizedUnsignedCompareOp extends AArch64LIRInstruction {

compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/lir/amd64/AMD64NormalizedUnsignedCompareOp.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141
* Returns -1, 0, or 1 if either x < y, x == y, or x > y.
4242
*/
4343
// @formatter:off
44-
@SyncPort(from = "https://github.com/openjdk/jdk/blob/79345bbbae2564f9f523859d1227a1784293b20f/src/hotspot/cpu/x86/x86_64.ad#L11818-L11840",
44+
@SyncPort(from = "https://github.com/openjdk/jdk/blob/d52d13648612546ef4458579aff6daf965586a03/src/hotspot/cpu/x86/x86_64.ad#L11822-L11844",
4545
sha1 = "17a5937cf7c0857802554981366ca445c0d9cc07")
46-
@SyncPort(from = "https://github.com/openjdk/jdk/blob/79345bbbae2564f9f523859d1227a1784293b20f/src/hotspot/cpu/x86/x86_64.ad#L11866-L11888",
46+
@SyncPort(from = "https://github.com/openjdk/jdk/blob/d52d13648612546ef4458579aff6daf965586a03/src/hotspot/cpu/x86/x86_64.ad#L11870-L11892",
4747
sha1 = "28a6ada679e72fb4ae14a6bcb1d094e88a11e8d1")
4848
// @formatter:on
4949
public class AMD64NormalizedUnsignedCompareOp extends AMD64LIRInstruction {

0 commit comments

Comments
 (0)