Skip to content

Commit fbac995

Browse files
author
duke
committed
Added webrev for jdk17u-dev/502
1 parent ab3d782 commit fbac995

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

jdk17u-dev/502/00/commits.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[{"commit":{"message":"Backport cdb476888a65b8ee2538f08b4b1dbb245874a262"},"files":[{"filename":"src\/hotspot\/share\/c1\/c1_LIR.hpp"}],"sha":"df350a6e72eb6b8785ae44bd54c8747f4dc0f847"}]

jdk17u-dev/502/00/comparison.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"files":[{"patch":"@@ -234,1 +234,1 @@\n- , non_data_bits = pointer_bits + kind_bits + type_bits + size_bits + destroys_bits + virtual_bits\n+ , non_data_bits = kind_bits + type_bits + size_bits + destroys_bits + virtual_bits\n@@ -240,1 +240,1 @@\n- enum OprShift {\n+ enum OprShift : uintptr_t {\n@@ -273,1 +273,1 @@\n- uintptr_t data() const { return value() >> data_shift; }\n+ uint32_t data() const { return (uint32_t)value() >> data_shift; }\n@@ -284,1 +284,3 @@\n- vreg_max = (1 << data_bits) - 1\n+ data_max = (1 << data_bits) - 1, \/\/ max unsigned value for data bit field\n+ vreg_limit = 10000, \/\/ choose a reasonable limit,\n+ vreg_max = MIN2(vreg_limit, data_max) \/\/ and make sure if fits in the bit field\n@@ -739,1 +741,0 @@\n- assert(index <= (max_jint >> LIR_OprDesc::data_shift), \"index is too big\");\n@@ -818,1 +819,1 @@\n- assert(index <= (max_jint >> LIR_OprDesc::data_shift), \"index is too big\");\n+ assert(index == (int)res->data(), \"conversion check\");\n","filename":"src\/hotspot\/share\/c1\/c1_LIR.hpp","additions":7,"deletions":6,"binary":false,"changes":13,"status":"modified"}]}

jdk17u-dev/502/00/metadata.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"head":{"repo":{"full_name":"GoeLin\/jdk17u-dev","html_url":"https:\/\/github.com\/GoeLin\/jdk17u-dev"},"sha":"df350a6e72eb6b8785ae44bd54c8747f4dc0f847"},"created_at":"2022-06-24T06:57:36.056105279Z","base":{"repo":{"full_name":"openjdk\/jdk17u-dev","html_url":"https:\/\/git.openjdk.org\/jdk17u-dev"},"sha":"a2be28daca7b67635d0d1ddac770c8b7b8309529"}}

0 commit comments

Comments
 (0)