mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
8003557: NPG: Klass* const k should be const Klass* k
With NPG, const KlassOop klass which is in fact a definition converted to Klass* const, which is not the original intention. The right usage is converting them to const Klass*. Reviewed-by: coleenp, kvn
This commit is contained in:
parent
8d3d80dbc9
commit
c6aa9c656f
20 changed files with 62 additions and 64 deletions
|
@ -154,12 +154,12 @@ KlassInfoTable::~KlassInfoTable() {
|
|||
}
|
||||
}
|
||||
|
||||
uint KlassInfoTable::hash(Klass* p) {
|
||||
uint KlassInfoTable::hash(const Klass* p) {
|
||||
assert(p->is_metadata(), "all klasses are metadata");
|
||||
return (uint)(((uintptr_t)p - (uintptr_t)_ref) >> 2);
|
||||
}
|
||||
|
||||
KlassInfoEntry* KlassInfoTable::lookup(Klass* const k) {
|
||||
KlassInfoEntry* KlassInfoTable::lookup(Klass* k) {
|
||||
uint idx = hash(k) % _size;
|
||||
assert(_buckets != NULL, "Allocation failure should have been caught");
|
||||
KlassInfoEntry* e = _buckets[idx].lookup(k);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue