From 0a90cc9e335b5e1eecdcdadd95937b4d960a9ec5 Mon Sep 17 00:00:00 2001 From: SendaoYan Date: Thu, 9 Oct 2025 17:37:34 +0800 Subject: [PATCH] 8369490: Remove unused Runinfo parameters in compiler/c2/gvn/TestBitCompressValueTransform.java --- .../c2/gvn/TestBitCompressValueTransform.java | 38 +++++++++---------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/test/hotspot/jtreg/compiler/c2/gvn/TestBitCompressValueTransform.java b/test/hotspot/jtreg/compiler/c2/gvn/TestBitCompressValueTransform.java index 3f32f78871c60..f821b3aa1896e 100644 --- a/test/hotspot/jtreg/compiler/c2/gvn/TestBitCompressValueTransform.java +++ b/test/hotspot/jtreg/compiler/c2/gvn/TestBitCompressValueTransform.java @@ -75,7 +75,7 @@ public long test1(long value) { } @Run(test = "test1") - public void run1(RunInfo info) { + public void run1() { long res = test1(field_L); Asserts.assertEQ(res, gold_L); } @@ -88,7 +88,7 @@ public int test2(int value) { } @Run(test = "test2") - public void run2(RunInfo info) { + public void run2() { int res = test2(field_I); Asserts.assertEQ(res, gold_I); } @@ -105,7 +105,7 @@ public int test3(int value) { } @Run(test = "test3") - public void run3(RunInfo info) { + public void run3() { int res = 0; for (int i = 1; i < 100; i++) { res |= test3(i); @@ -125,7 +125,7 @@ public long test4(long value) { } @Run(test = "test4") - public void run4(RunInfo info) { + public void run4() { long res = 0; for (long i = 1; i < 100; i++) { res |= test4(i); @@ -143,7 +143,7 @@ public long test5(long value) { } @Run(test = "test5") - public void run5(RunInfo info) { + public void run5() { long res = 0; for (int i = -100; i < 100; i++) { res |= test5((long)i); @@ -161,7 +161,7 @@ public long test6(long value) { } @Run(test = "test6") - public void run6(RunInfo info) { + public void run6() { long res = 0; for (int i = -100; i < 100; i++) { res |= test6((long)i); @@ -180,7 +180,7 @@ public long test7(long value) { } @Run(test = "test7") - public void run7(RunInfo info) { + public void run7() { long res = Long.MIN_VALUE; for (int i = -100; i < 100; i++) { res = Long.max(test7((long)i), res); @@ -198,7 +198,7 @@ public int test8(int value) { } @Run(test = "test8") - public void run8(RunInfo info) { + public void run8() { int res = 0; for (int i = -100; i < 100; i++) { res |= test8(i); @@ -216,7 +216,7 @@ public int test9(int value) { } @Run(test = "test9") - public void run9(RunInfo info) { + public void run9() { int res = 0; for (int i = -100; i < 100; i++) { res |= test9(i); @@ -235,7 +235,7 @@ public int test10(int value) { } @Run(test = "test10") - public void run10(RunInfo info) { + public void run10() { int res = Integer.MIN_VALUE; for (int i = -100; i < 100; i++) { res = Integer.max(test10(i), res); @@ -252,7 +252,7 @@ public int test11(int value) { } @Run(test = "test11") - public void run11(RunInfo info) { + public void run11() { int res = 0; for (int i = -100; i < 100; i++) { res |= test11(i); @@ -269,7 +269,7 @@ public long test12(long value) { } @Run(test = "test12") - public void run12(RunInfo info) { + public void run12() { long res = 0; for (int i = -100; i < 100; i++) { res |= test12(i); @@ -286,7 +286,7 @@ public int test13(int value) { } @Run(test = "test13") - public void run13(RunInfo info) { + public void run13() { int res = 0; for (int i = -100; i < 100; i++) { res |= test13(i); @@ -303,7 +303,7 @@ public long test14(long value) { } @Run(test = "test14") - public void run14(RunInfo info) { + public void run14() { long res = 0; for (int i = -100; i < 100; i++) { res |= test14(i); @@ -320,7 +320,7 @@ public int test15(int src, int mask) { } @Run (test = "test15") - public void run15(RunInfo info) { + public void run15() { int res = test15(0, 0); Asserts.assertEQ(0, res); } @@ -395,7 +395,7 @@ public int test16(int src, int mask) { } @Run (test = "test16") - public void run16(RunInfo info) { + public void run16() { int actual = 0; int expected = 0; @@ -479,7 +479,7 @@ public int test17(int src, int mask) { } @Run (test = "test17") - public void run17(RunInfo info) { + public void run17() { int actual = 0; int expected = 0; @@ -563,7 +563,7 @@ public long test18(long src, long mask) { } @Run (test = "test18") - public void run18(RunInfo info) { + public void run18() { long actual = 0; long expected = 0; @@ -647,7 +647,7 @@ public long test19(long src, long mask) { } @Run (test = "test19") - public void run19(RunInfo info) { + public void run19() { long actual = 0; long expected = 0;