mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8146690: Make all classes in GC follow the naming convention
Reviewed-by: dholmes, stefank
This commit is contained in:
parent
49d61bdeb6
commit
ad0c208a5a
77 changed files with 411 additions and 411 deletions
|
@ -863,7 +863,7 @@ void ClassFileParser::parse_interfaces(const ClassFileStream* const stream,
|
|||
initialize_hashtable(interface_names);
|
||||
bool dup = false;
|
||||
{
|
||||
debug_only(No_Safepoint_Verifier nsv;)
|
||||
debug_only(NoSafepointVerifier nsv;)
|
||||
for (index = 0; index < itfs_len; index++) {
|
||||
const Klass* const k = _local_interfaces->at(index);
|
||||
const Symbol* const name = InstanceKlass::cast(k)->name();
|
||||
|
@ -1620,7 +1620,7 @@ void ClassFileParser::parse_fields(const ClassFileStream* const cfs,
|
|||
initialize_hashtable(names_and_sigs);
|
||||
bool dup = false;
|
||||
{
|
||||
debug_only(No_Safepoint_Verifier nsv;)
|
||||
debug_only(NoSafepointVerifier nsv;)
|
||||
for (AllFieldStream fs(_fields, cp); !fs.done(); fs.next()) {
|
||||
const Symbol* const name = fs.name();
|
||||
const Symbol* const sig = fs.signature();
|
||||
|
@ -2885,7 +2885,7 @@ void ClassFileParser::parse_methods(const ClassFileStream* const cfs,
|
|||
initialize_hashtable(names_and_sigs);
|
||||
bool dup = false;
|
||||
{
|
||||
debug_only(No_Safepoint_Verifier nsv;)
|
||||
debug_only(NoSafepointVerifier nsv;)
|
||||
for (int i = 0; i < length; i++) {
|
||||
const Method* const m = _methods->at(i);
|
||||
// If no duplicates, add name/signature in hashtable names_and_sigs.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue