@@ -1268,7 +1268,7 @@ void ConstantPool::unreference_symbols() {
1268
1268
// Compare this constant pool's entry at index1 to the constant pool
1269
1269
// cp2's entry at index2.
1270
1270
bool ConstantPool::compare_entry_to (int index1, const constantPoolHandle& cp2,
1271
- int index2, TRAPS ) {
1271
+ int index2) {
1272
1272
1273
1273
// The error tags are equivalent to non-error tags when comparing
1274
1274
jbyte t1 = tag_at (index1).non_error_value ();
@@ -1287,8 +1287,8 @@ bool ConstantPool::compare_entry_to(int index1, const constantPoolHandle& cp2,
1287
1287
switch (t1) {
1288
1288
case JVM_CONSTANT_Class:
1289
1289
{
1290
- Klass* k1 = klass_at (index1, CHECK_false );
1291
- Klass* k2 = cp2->klass_at (index2, CHECK_false );
1290
+ Klass* k1 = resolved_klass_at (index1);
1291
+ Klass* k2 = cp2->resolved_klass_at (index2);
1292
1292
if (k1 == k2) {
1293
1293
return true ;
1294
1294
}
@@ -1298,8 +1298,7 @@ bool ConstantPool::compare_entry_to(int index1, const constantPoolHandle& cp2,
1298
1298
{
1299
1299
int recur1 = klass_index_at (index1);
1300
1300
int recur2 = cp2->klass_index_at (index2);
1301
- bool match = compare_entry_to (recur1, cp2, recur2, CHECK_false);
1302
- if (match) {
1301
+ if (compare_entry_to (recur1, cp2, recur2)) {
1303
1302
return true ;
1304
1303
}
1305
1304
} break ;
@@ -1319,12 +1318,11 @@ bool ConstantPool::compare_entry_to(int index1, const constantPoolHandle& cp2,
1319
1318
{
1320
1319
int recur1 = uncached_klass_ref_index_at (index1);
1321
1320
int recur2 = cp2->uncached_klass_ref_index_at (index2);
1322
- bool match = compare_entry_to (recur1, cp2, recur2, CHECK_false );
1321
+ bool match = compare_entry_to (recur1, cp2, recur2);
1323
1322
if (match) {
1324
1323
recur1 = uncached_name_and_type_ref_index_at (index1);
1325
1324
recur2 = cp2->uncached_name_and_type_ref_index_at (index2);
1326
- match = compare_entry_to (recur1, cp2, recur2, CHECK_false);
1327
- if (match) {
1325
+ if (compare_entry_to (recur1, cp2, recur2)) {
1328
1326
return true ;
1329
1327
}
1330
1328
}
@@ -1361,12 +1359,10 @@ bool ConstantPool::compare_entry_to(int index1, const constantPoolHandle& cp2,
1361
1359
{
1362
1360
int recur1 = name_ref_index_at (index1);
1363
1361
int recur2 = cp2->name_ref_index_at (index2);
1364
- bool match = compare_entry_to (recur1, cp2, recur2, CHECK_false);
1365
- if (match) {
1362
+ if (compare_entry_to (recur1, cp2, recur2)) {
1366
1363
recur1 = signature_ref_index_at (index1);
1367
1364
recur2 = cp2->signature_ref_index_at (index2);
1368
- match = compare_entry_to (recur1, cp2, recur2, CHECK_false);
1369
- if (match) {
1365
+ if (compare_entry_to (recur1, cp2, recur2)) {
1370
1366
return true ;
1371
1367
}
1372
1368
}
@@ -1376,8 +1372,7 @@ bool ConstantPool::compare_entry_to(int index1, const constantPoolHandle& cp2,
1376
1372
{
1377
1373
int recur1 = string_index_at (index1);
1378
1374
int recur2 = cp2->string_index_at (index2);
1379
- bool match = compare_entry_to (recur1, cp2, recur2, CHECK_false);
1380
- if (match) {
1375
+ if (compare_entry_to (recur1, cp2, recur2)) {
1381
1376
return true ;
1382
1377
}
1383
1378
} break ;
@@ -1395,8 +1390,7 @@ bool ConstantPool::compare_entry_to(int index1, const constantPoolHandle& cp2,
1395
1390
{
1396
1391
int k1 = method_type_index_at (index1);
1397
1392
int k2 = cp2->method_type_index_at (index2);
1398
- bool match = compare_entry_to (k1, cp2, k2, CHECK_false);
1399
- if (match) {
1393
+ if (compare_entry_to (k1, cp2, k2)) {
1400
1394
return true ;
1401
1395
}
1402
1396
} break ;
@@ -1408,8 +1402,7 @@ bool ConstantPool::compare_entry_to(int index1, const constantPoolHandle& cp2,
1408
1402
if (k1 == k2) {
1409
1403
int i1 = method_handle_index_at (index1);
1410
1404
int i2 = cp2->method_handle_index_at (index2);
1411
- bool match = compare_entry_to (i1, cp2, i2, CHECK_false);
1412
- if (match) {
1405
+ if (compare_entry_to (i1, cp2, i2)) {
1413
1406
return true ;
1414
1407
}
1415
1408
}
@@ -1421,9 +1414,8 @@ bool ConstantPool::compare_entry_to(int index1, const constantPoolHandle& cp2,
1421
1414
int k2 = cp2->bootstrap_name_and_type_ref_index_at (index2);
1422
1415
int i1 = bootstrap_methods_attribute_index (index1);
1423
1416
int i2 = cp2->bootstrap_methods_attribute_index (index2);
1424
- // separate statements and variables because CHECK_false is used
1425
- bool match_entry = compare_entry_to (k1, cp2, k2, CHECK_false);
1426
- bool match_operand = compare_operand_to (i1, cp2, i2, CHECK_false);
1417
+ bool match_entry = compare_entry_to (k1, cp2, k2);
1418
+ bool match_operand = compare_operand_to (i1, cp2, i2);
1427
1419
return (match_entry && match_operand);
1428
1420
} break ;
1429
1421
@@ -1433,9 +1425,8 @@ bool ConstantPool::compare_entry_to(int index1, const constantPoolHandle& cp2,
1433
1425
int k2 = cp2->bootstrap_name_and_type_ref_index_at (index2);
1434
1426
int i1 = bootstrap_methods_attribute_index (index1);
1435
1427
int i2 = cp2->bootstrap_methods_attribute_index (index2);
1436
- // separate statements and variables because CHECK_false is used
1437
- bool match_entry = compare_entry_to (k1, cp2, k2, CHECK_false);
1438
- bool match_operand = compare_operand_to (i1, cp2, i2, CHECK_false);
1428
+ bool match_entry = compare_entry_to (k1, cp2, k2);
1429
+ bool match_operand = compare_operand_to (i1, cp2, i2);
1439
1430
return (match_entry && match_operand);
1440
1431
} break ;
1441
1432
@@ -1616,7 +1607,7 @@ void ConstantPool::copy_cp_to_impl(const constantPoolHandle& from_cp, int start_
1616
1607
int dest_i = to_i; // leave original alone for debug purposes
1617
1608
1618
1609
for (int src_i = start_i; src_i <= end_i; /* see loop bottom */ ) {
1619
- copy_entry_to (from_cp, src_i, to_cp, dest_i, CHECK );
1610
+ copy_entry_to (from_cp, src_i, to_cp, dest_i);
1620
1611
1621
1612
switch (from_cp->tag_at (src_i).value ()) {
1622
1613
case JVM_CONSTANT_Double:
@@ -1641,8 +1632,7 @@ void ConstantPool::copy_cp_to_impl(const constantPoolHandle& from_cp, int start_
1641
1632
// Copy this constant pool's entry at from_i to the constant pool
1642
1633
// to_cp's entry at to_i.
1643
1634
void ConstantPool::copy_entry_to (const constantPoolHandle& from_cp, int from_i,
1644
- const constantPoolHandle& to_cp, int to_i,
1645
- TRAPS) {
1635
+ const constantPoolHandle& to_cp, int to_i) {
1646
1636
1647
1637
int tag = from_cp->tag_at (from_i).value ();
1648
1638
switch (tag) {
@@ -1786,11 +1776,11 @@ void ConstantPool::copy_entry_to(const constantPoolHandle& from_cp, int from_i,
1786
1776
// constant pool's entry at pattern_i. Returns the index of a
1787
1777
// matching entry or zero (0) if there is no matching entry.
1788
1778
int ConstantPool::find_matching_entry (int pattern_i,
1789
- const constantPoolHandle& search_cp, TRAPS ) {
1779
+ const constantPoolHandle& search_cp) {
1790
1780
1791
1781
// index zero (0) is not used
1792
1782
for (int i = 1 ; i < search_cp->length (); i++) {
1793
- bool found = compare_entry_to (pattern_i, search_cp, i, CHECK_0 );
1783
+ bool found = compare_entry_to (pattern_i, search_cp, i);
1794
1784
if (found) {
1795
1785
return i;
1796
1786
}
@@ -1802,10 +1792,10 @@ int ConstantPool::find_matching_entry(int pattern_i,
1802
1792
1803
1793
// Compare this constant pool's bootstrap specifier at idx1 to the constant pool
1804
1794
// cp2's bootstrap specifier at idx2.
1805
- bool ConstantPool::compare_operand_to (int idx1, const constantPoolHandle& cp2, int idx2, TRAPS ) {
1795
+ bool ConstantPool::compare_operand_to (int idx1, const constantPoolHandle& cp2, int idx2) {
1806
1796
int k1 = operand_bootstrap_method_ref_index_at (idx1);
1807
1797
int k2 = cp2->operand_bootstrap_method_ref_index_at (idx2);
1808
- bool match = compare_entry_to (k1, cp2, k2, CHECK_false );
1798
+ bool match = compare_entry_to (k1, cp2, k2);
1809
1799
1810
1800
if (!match) {
1811
1801
return false ;
@@ -1815,7 +1805,7 @@ bool ConstantPool::compare_operand_to(int idx1, const constantPoolHandle& cp2, i
1815
1805
for (int j = 0 ; j < argc; j++) {
1816
1806
k1 = operand_argument_index_at (idx1, j);
1817
1807
k2 = cp2->operand_argument_index_at (idx2, j);
1818
- match = compare_entry_to (k1, cp2, k2, CHECK_false );
1808
+ match = compare_entry_to (k1, cp2, k2);
1819
1809
if (!match) {
1820
1810
return false ;
1821
1811
}
@@ -1829,9 +1819,9 @@ bool ConstantPool::compare_operand_to(int idx1, const constantPoolHandle& cp2, i
1829
1819
// this constant pool's bootstrap specifier data at pattern_i index.
1830
1820
// Return the index of a matching bootstrap attribute record or (-1) if there is no match.
1831
1821
int ConstantPool::find_matching_operand (int pattern_i,
1832
- const constantPoolHandle& search_cp, int search_len, TRAPS ) {
1822
+ const constantPoolHandle& search_cp, int search_len) {
1833
1823
for (int i = 0 ; i < search_len; i++) {
1834
- bool found = compare_operand_to (pattern_i, search_cp, i, CHECK_ (- 1 ) );
1824
+ bool found = compare_operand_to (pattern_i, search_cp, i);
1835
1825
if (found) {
1836
1826
return i;
1837
1827
}
0 commit comments