7200470: KeepAliveClosure not needed in CodeCache::do_unloading

Removed the unused keep_alive parameter

Reviewed-by: stefank, dholmes, kamg, coleenp
This commit is contained in:
Bengt Rutisson 2012-09-25 14:58:12 +02:00
parent d6538dc298
commit fcae0353d2
9 changed files with 14 additions and 29 deletions

View file

@ -556,10 +556,8 @@ public:
void set_method(Method* method) { _method = method; }
// GC support
void do_unloading(BoolObjectClosure* is_alive, OopClosure* keep_alive,
bool unloading_occurred);
bool can_unload(BoolObjectClosure* is_alive, OopClosure* keep_alive,
oop* root, bool unloading_occurred);
void do_unloading(BoolObjectClosure* is_alive, bool unloading_occurred);
bool can_unload(BoolObjectClosure* is_alive, oop* root, bool unloading_occurred);
void preserve_callee_argument_oops(frame fr, const RegisterMap *reg_map,
OopClosure* f);