Skip to content

Commit d19a396

Browse files
Lois Foltanrose00
Lois Foltan
andcommittedFeb 6, 2020
8230199: consolidate signature parsing code in HotSpot sources
Add a new Signature class to support basic signature queries and enhance SignatureStream class to parse field signatures in addition to methods. Co-authored-by: John Rose <john.r.rose@oracle.com> Reviewed-by: coleenp, dholmes, fparain, hseigel
1 parent 2ede36b commit d19a396

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+1382
-1486
lines changed
 

‎src/hotspot/cpu/aarch64/sharedRuntime_aarch64.cpp

+6-18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2003, 2020, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2014, 2019, Red Hat Inc. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -1333,28 +1333,16 @@ nmethod* SharedRuntime::generate_native_wrapper(MacroAssembler* masm,
13331333
// Arrays are passed as int, elem* pair
13341334
out_sig_bt[argc++] = T_INT;
13351335
out_sig_bt[argc++] = T_ADDRESS;
1336-
Symbol* atype = ss.as_symbol();
1337-
const char* at = atype->as_C_string();
1338-
if (strlen(at) == 2) {
1339-
assert(at[0] == '[', "must be");
1340-
switch (at[1]) {
1341-
case 'B': in_elem_bt[i] = T_BYTE; break;
1342-
case 'C': in_elem_bt[i] = T_CHAR; break;
1343-
case 'D': in_elem_bt[i] = T_DOUBLE; break;
1344-
case 'F': in_elem_bt[i] = T_FLOAT; break;
1345-
case 'I': in_elem_bt[i] = T_INT; break;
1346-
case 'J': in_elem_bt[i] = T_LONG; break;
1347-
case 'S': in_elem_bt[i] = T_SHORT; break;
1348-
case 'Z': in_elem_bt[i] = T_BOOLEAN; break;
1349-
default: ShouldNotReachHere();
1350-
}
1351-
}
1336+
ss.skip_array_prefix(1); // skip one '['
1337+
assert(ss.is_primitive(), "primitive type expected");
1338+
in_elem_bt[i] = ss.type();
13521339
} else {
13531340
out_sig_bt[argc++] = in_sig_bt[i];
13541341
in_elem_bt[i] = T_VOID;
13551342
}
13561343
if (in_sig_bt[i] != T_VOID) {
1357-
assert(in_sig_bt[i] == ss.type(), "must match");
1344+
assert(in_sig_bt[i] == ss.type() ||
1345+
in_sig_bt[i] == T_ARRAY, "must match");
13581346
ss.next();
13591347
}
13601348
}

‎src/hotspot/cpu/ppc/sharedRuntime_ppc.cpp

+6-18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2012, 2019 SAP SE. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -1934,27 +1934,15 @@ nmethod *SharedRuntime::generate_native_wrapper(MacroAssembler *masm,
19341934
for (int i = 0; i < total_in_args ; i++, o++) {
19351935
if (in_sig_bt[i] == T_ARRAY) {
19361936
// Arrays are passed as int, elem* pair
1937-
Symbol* atype = ss.as_symbol();
1938-
const char* at = atype->as_C_string();
1939-
if (strlen(at) == 2) {
1940-
assert(at[0] == '[', "must be");
1941-
switch (at[1]) {
1942-
case 'B': in_elem_bt[o] = T_BYTE; break;
1943-
case 'C': in_elem_bt[o] = T_CHAR; break;
1944-
case 'D': in_elem_bt[o] = T_DOUBLE; break;
1945-
case 'F': in_elem_bt[o] = T_FLOAT; break;
1946-
case 'I': in_elem_bt[o] = T_INT; break;
1947-
case 'J': in_elem_bt[o] = T_LONG; break;
1948-
case 'S': in_elem_bt[o] = T_SHORT; break;
1949-
case 'Z': in_elem_bt[o] = T_BOOLEAN; break;
1950-
default: ShouldNotReachHere();
1951-
}
1952-
}
1937+
ss.skip_array_prefix(1); // skip one '['
1938+
assert(ss.is_primitive(), "primitive type expected");
1939+
in_elem_bt[o] = ss.type();
19531940
} else {
19541941
in_elem_bt[o] = T_VOID;
19551942
}
19561943
if (in_sig_bt[i] != T_VOID) {
1957-
assert(in_sig_bt[i] == ss.type(), "must match");
1944+
assert(in_sig_bt[i] == ss.type() ||
1945+
in_sig_bt[i] == T_ARRAY, "must match");
19581946
ss.next();
19591947
}
19601948
}

0 commit comments

Comments
 (0)
Please sign in to comment.