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:
Yumin Qi 2013-05-10 08:27:30 -07:00 committed by Yumin Qi
parent 8d3d80dbc9
commit c6aa9c656f
20 changed files with 62 additions and 64 deletions

View file

@ -739,7 +739,7 @@ class InstanceKlass: public Klass {
void set_osr_nmethods_head(nmethod* h) { _osr_nmethods_head = h; };
void add_osr_nmethod(nmethod* n);
void remove_osr_nmethod(nmethod* n);
nmethod* lookup_osr_nmethod(Method* const m, int bci, int level, bool match_level) const;
nmethod* lookup_osr_nmethod(const Method* m, int bci, int level, bool match_level) const;
// Breakpoint support (see methods on Method* for details)
BreakpointInfo* breakpoints() const { return _breakpoints; };