8152271: MemberNameTable doesn't purge stale entries

Intern MemberNames in table instead of allocating new entries

Reviewed-by: vlivanov, sspitsyn, dholmes
This commit is contained in:
Coleen Phillimore 2016-06-15 09:48:24 -04:00
parent 6ef961edbd
commit eba25b33b9
7 changed files with 55 additions and 19 deletions

View file

@ -1114,6 +1114,8 @@ class java_lang_invoke_MemberName: AllStatic {
static int flags_offset_in_bytes() { return _flags_offset; }
static int vmtarget_offset_in_bytes() { return _vmtarget_offset; }
static int vmindex_offset_in_bytes() { return _vmindex_offset; }
static bool equals(oop mt1, oop mt2);
};