mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8218004: Clean up terminology for shared methods within the JVM for indy and condy support
Remove "invoke_dynamic" from the name of several ConstantPool bootstrap helper methods that are shared by both indy and condy. Reviewed-by: coleenp, dholmes, mchung
This commit is contained in:
parent
120fdfe6ad
commit
29245f8878
9 changed files with 119 additions and 116 deletions
|
@ -564,7 +564,7 @@ void ClassFileParser::parse_constant_pool(const ClassFileStream* const stream,
|
|||
}
|
||||
case JVM_CONSTANT_Dynamic: {
|
||||
const int name_and_type_ref_index =
|
||||
cp->invoke_dynamic_name_and_type_ref_index_at(index);
|
||||
cp->bootstrap_name_and_type_ref_index_at(index);
|
||||
|
||||
check_property(valid_cp_range(name_and_type_ref_index, length) &&
|
||||
cp->tag_at(name_and_type_ref_index).is_name_and_type(),
|
||||
|
@ -579,7 +579,7 @@ void ClassFileParser::parse_constant_pool(const ClassFileStream* const stream,
|
|||
}
|
||||
case JVM_CONSTANT_InvokeDynamic: {
|
||||
const int name_and_type_ref_index =
|
||||
cp->invoke_dynamic_name_and_type_ref_index_at(index);
|
||||
cp->bootstrap_name_and_type_ref_index_at(index);
|
||||
|
||||
check_property(valid_cp_range(name_and_type_ref_index, length) &&
|
||||
cp->tag_at(name_and_type_ref_index).is_name_and_type(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue