RFR: 8264538: Rename SystemDictionary::parse_stream
Coleen Phillimore
coleenp at openjdk.java.net
Wed Mar 31 19:52:35 UTC 2021
This function is used to call the classfile parser for hidden or anonymous classes, and for use with jvmti RedefineClasses. The latter only calls KlassFactory::create_from_stream and skips the rest of the code in SystemDictionary::parse_stream.
Renamed SystemDictionary::parse_stream -> resolve_hidden_class_from_stream
resolve_from_stream -> resolve_class_from_stream
and have SystemDictionary::resolve_from_stream() call the right version depending on ClassLoadInfo flags. Callers of resolve_from_stream now pass protection domain via. ClassLoadInfo.
So the external API is resolve_from_stream.
Tested with tier1 on 4 Oracle supported platforms.
-------------
Commit messages:
- Rename parse_stream
Changes: https://git.openjdk.java.net/jdk/pull/3289/files
Webrev: https://webrevs.openjdk.java.net/?repo=jdk&pr=3289&range=00
Issue: https://bugs.openjdk.java.net/browse/JDK-8264538
Stats: 132 lines in 7 files changed: 37 ins; 23 del; 72 mod
Patch: https://git.openjdk.java.net/jdk/pull/3289.diff
Fetch: git fetch https://git.openjdk.java.net/jdk pull/3289/head:pull/3289
PR: https://git.openjdk.java.net/jdk/pull/3289
More information about the serviceability-dev
mailing list