2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2011-10-12 10:25:51 -07:00
|
|
|
* Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
|
2007-12-01 00:00:00 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
|
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
* accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License version
|
|
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
2010-05-27 19:08:38 -07:00
|
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
|
|
* questions.
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-11-23 13:22:55 -08:00
|
|
|
#include "precompiled.hpp"
|
|
|
|
#include "classfile/javaClasses.hpp"
|
|
|
|
#include "memory/referencePolicy.hpp"
|
|
|
|
#include "memory/universe.hpp"
|
|
|
|
#include "runtime/arguments.hpp"
|
|
|
|
#include "runtime/globals.hpp"
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
LRUCurrentHeapPolicy::LRUCurrentHeapPolicy() {
|
2008-12-01 23:25:24 -08:00
|
|
|
setup();
|
2008-11-20 16:56:09 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Capture state (of-the-VM) information needed to evaluate the policy
|
2008-12-01 23:25:24 -08:00
|
|
|
void LRUCurrentHeapPolicy::setup() {
|
2007-12-01 00:00:00 +00:00
|
|
|
_max_interval = (Universe::get_heap_free_at_last_gc() / M) * SoftRefLRUPolicyMSPerMB;
|
|
|
|
assert(_max_interval >= 0,"Sanity check");
|
|
|
|
}
|
|
|
|
|
|
|
|
// The oop passed in is the SoftReference object, and not
|
|
|
|
// the object the SoftReference points to.
|
2011-10-12 10:25:51 -07:00
|
|
|
bool LRUCurrentHeapPolicy::should_clear_reference(oop p,
|
|
|
|
jlong timestamp_clock) {
|
|
|
|
jlong interval = timestamp_clock - java_lang_ref_SoftReference::timestamp(p);
|
2007-12-01 00:00:00 +00:00
|
|
|
assert(interval >= 0, "Sanity check");
|
|
|
|
|
|
|
|
// The interval will be zero if the ref was accessed since the last scavenge/gc.
|
|
|
|
if(interval <= _max_interval) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/////////////////////// MaxHeap //////////////////////
|
|
|
|
|
|
|
|
LRUMaxHeapPolicy::LRUMaxHeapPolicy() {
|
2008-12-01 23:25:24 -08:00
|
|
|
setup();
|
2008-11-20 16:56:09 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Capture state (of-the-VM) information needed to evaluate the policy
|
2008-12-01 23:25:24 -08:00
|
|
|
void LRUMaxHeapPolicy::setup() {
|
2007-12-01 00:00:00 +00:00
|
|
|
size_t max_heap = MaxHeapSize;
|
|
|
|
max_heap -= Universe::get_heap_used_at_last_gc();
|
|
|
|
max_heap /= M;
|
|
|
|
|
|
|
|
_max_interval = max_heap * SoftRefLRUPolicyMSPerMB;
|
|
|
|
assert(_max_interval >= 0,"Sanity check");
|
|
|
|
}
|
|
|
|
|
|
|
|
// The oop passed in is the SoftReference object, and not
|
|
|
|
// the object the SoftReference points to.
|
2011-10-12 10:25:51 -07:00
|
|
|
bool LRUMaxHeapPolicy::should_clear_reference(oop p,
|
|
|
|
jlong timestamp_clock) {
|
|
|
|
jlong interval = timestamp_clock - java_lang_ref_SoftReference::timestamp(p);
|
2007-12-01 00:00:00 +00:00
|
|
|
assert(interval >= 0, "Sanity check");
|
|
|
|
|
|
|
|
// The interval will be zero if the ref was accessed since the last scavenge/gc.
|
|
|
|
if(interval <= _max_interval) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|