mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8209189: Make CompiledMethod::do_unloading more concurrent
Reviewed-by: kvn, coleenp
This commit is contained in:
parent
97d3dc7902
commit
25f14cd757
15 changed files with 309 additions and 447 deletions
|
@ -75,10 +75,6 @@ address* AOTCompiledMethod::orig_pc_addr(const frame* fr) {
|
|||
return (address*) ((address)fr->unextended_sp() + _meta->orig_pc_offset());
|
||||
}
|
||||
|
||||
bool AOTCompiledMethod::do_unloading_oops(address low_boundary, BoolObjectClosure* is_alive) {
|
||||
return false;
|
||||
}
|
||||
|
||||
oop AOTCompiledMethod::oop_at(int index) const {
|
||||
if (index == 0) { // 0 is reserved
|
||||
return NULL;
|
||||
|
@ -352,7 +348,7 @@ void AOTCompiledMethod::log_identity(xmlStream* log) const {
|
|||
log->print(" aot='%2d'", _heap->dso_id());
|
||||
}
|
||||
|
||||
void AOTCompiledMethod::log_state_change(oop cause) const {
|
||||
void AOTCompiledMethod::log_state_change() const {
|
||||
if (LogCompilation) {
|
||||
ResourceMark m;
|
||||
if (xtty != NULL) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue