comparison src/share/vm/prims/jvmtiTagMap.cpp @ 20804:7848fc12602b

Merge with jdk8u40-b25
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Tue, 07 Apr 2015 14:58:49 +0200
parents 51c6ce89d4dd 2c6ef90f030a
children
comparison
equal deleted inserted replaced
20184:84105dcdb05b 20804:7848fc12602b
3017 blk.set_kind(JVMTI_HEAP_REFERENCE_OTHER); 3017 blk.set_kind(JVMTI_HEAP_REFERENCE_OTHER);
3018 Universe::oops_do(&blk); 3018 Universe::oops_do(&blk);
3019 3019
3020 // If there are any non-perm roots in the code cache, visit them. 3020 // If there are any non-perm roots in the code cache, visit them.
3021 blk.set_kind(JVMTI_HEAP_REFERENCE_OTHER); 3021 blk.set_kind(JVMTI_HEAP_REFERENCE_OTHER);
3022 CodeBlobToOopClosure look_in_blobs(&blk, false); 3022 CodeBlobToOopClosure look_in_blobs(&blk, !CodeBlobToOopClosure::FixRelocations);
3023 CodeCache::scavenge_root_nmethods_do(&look_in_blobs); 3023 CodeCache::scavenge_root_nmethods_do(&look_in_blobs);
3024 3024
3025 return true; 3025 return true;
3026 } 3026 }
3027 3027