8038630: Remove ExtendedOopClosure::prefetch_style()

Reviewed-by: coleenp, jmasa
This commit is contained in:
Stefan Karlsson 2014-03-28 14:15:03 +01:00
parent f2de069dc2
commit a8f01c3f99
3 changed files with 0 additions and 38 deletions

View file

@ -27,7 +27,6 @@
#include "memory/allocation.hpp"
#include "memory/memRegion.hpp"
#include "runtime/prefetch.hpp"
#include "utilities/top.hpp"
class CodeBlob;
@ -84,11 +83,6 @@ class ExtendedOopClosure : public OopClosure {
virtual void do_class_loader_data(ClassLoaderData* cld) { ShouldNotReachHere(); }
// Controls how prefetching is done for invocations of this closure.
Prefetch::style prefetch_style() { // Note that this is non-virtual.
return Prefetch::do_none;
}
// True iff this closure may be safely applied more than once to an oop
// location without an intervening "major reset" (like the end of a GC).
virtual bool idempotent() { return false; }