Make Shark free compiled methods
Gary Benson
gbenson at redhat.com
Thu Aug 13 05:11:04 PDT 2009
Hi all,
This commit makes Shark free the bitcode and native code
for compiled methods when they are removed from the VM.
Cheers,
Gary
--
http://gbenson.net/
-------------- next part --------------
diff -r 9420faca6468 ChangeLog
--- a/ChangeLog Fri Aug 07 11:58:27 2009 +0200
+++ b/ChangeLog Thu Aug 13 08:00:49 2009 -0400
@@ -1,3 +1,22 @@
+2009-08-13 Gary Benson <gbenson at redhat.com>
+
+ * ports/hotspot/src/share/vm/shark/sharkEntry.hpp
+ (SharkEntry::_function): New field.
+ (SharkEntry::function): New method.
+ (SharkEntry::set_function): Likewise.
+
+ * ports/hotspot/src/share/vm/shark/sharkCompiler.hpp
+ (SharkCompiler::free_compiled_method): New method.
+ * ports/hotspot/src/share/vm/shark/sharkCompiler.cpp
+ (SharkCompiler::free_compiled_method): New method.
+ (SharkCompiler::compile_method): Store a pointer to
+ the LLVM function in the method's SharkEntry.
+
+ * patches/hotspot/default/icedtea-shark.patch
+ (nmethod::flush): Add code to free Shark methods.
+
+ * ports/hotspot/src/share/vm/includeDB_shark: Updated.
+
2009-08-07 Matthias Klose <doko at ubuntu.com>
* Makefile.am (ADD_ZERO_CONFIGURE_ARGS): Add configure options
diff -r 9420faca6468 patches/hotspot/default/icedtea-shark.patch
--- a/patches/hotspot/default/icedtea-shark.patch Fri Aug 07 11:58:27 2009 +0200
+++ b/patches/hotspot/default/icedtea-shark.patch Thu Aug 13 08:00:49 2009 -0400
@@ -374,3 +374,17 @@
address native_entry();
address interpreter_entry();
+diff -r 0d80af392e67 openjdk/hotspot/src/share/vm/code/nmethod.cpp
+--- openjdk/hotspot/src/share/vm/code/nmethod.cpp Thu Jul 30 10:00:04 2009 +0100
++++ openjdk/hotspot/src/share/vm/code/nmethod.cpp Fri Jul 31 15:39:43 2009 +0100
+@@ -1296,6 +1296,10 @@
+ ec = next;
+ }
+
++#ifdef SHARK
++ ((SharkCompiler *) compiler())->free_compiled_method(instructions_begin());
++#endif // SHARK
++
+ ((CodeBlob*)(this))->flush();
+
+ CodeCache::free(this);
diff -r 9420faca6468 ports/hotspot/src/share/vm/includeDB_shark
--- a/ports/hotspot/src/share/vm/includeDB_shark Fri Aug 07 11:58:27 2009 +0200
+++ b/ports/hotspot/src/share/vm/includeDB_shark Thu Aug 13 08:00:49 2009 -0400
@@ -57,7 +57,7 @@
llvmValue.hpp llvmHeaders.hpp
llvmValue.hpp sharkType.hpp
-methodOop.cpp sharkEntry.hpp
+nmethod.cpp sharkCompiler.hpp
shark_globals.cpp shark_globals.hpp
diff -r 9420faca6468 ports/hotspot/src/share/vm/shark/sharkCompiler.cpp
--- a/ports/hotspot/src/share/vm/shark/sharkCompiler.cpp Fri Aug 07 11:58:27 2009 +0200
+++ b/ports/hotspot/src/share/vm/shark/sharkCompiler.cpp Thu Aug 13 08:00:49 2009 -0400
@@ -146,6 +146,7 @@
if (!fnmatch(SharkPrintBitcodeOf, name, 0))
function->dump();
}
+ entry->set_function(function);
// Compile to native code
#ifndef PRODUCT
@@ -206,6 +207,13 @@
}
}
+void SharkCompiler::free_compiled_method(address code)
+{
+ Function *function = ((SharkEntry *) code)->function();
+ execution_engine()->freeMachineCodeForFunction(function);
+ function->eraseFromParent();
+}
+
const char* SharkCompiler::methodname(const ciMethod* target)
{
const char *klassname = target->holder()->name()->as_utf8();
diff -r 9420faca6468 ports/hotspot/src/share/vm/shark/sharkCompiler.hpp
--- a/ports/hotspot/src/share/vm/shark/sharkCompiler.hpp Fri Aug 07 11:58:27 2009 +0200
+++ b/ports/hotspot/src/share/vm/shark/sharkCompiler.hpp Thu Aug 13 08:00:49 2009 -0400
@@ -45,6 +45,9 @@
// Compilation entry point for methods
void compile_method(ciEnv* env, ciMethod* target, int entry_bci);
+ // Free compiled methods
+ void free_compiled_method(address code);
+
// LLVM interface
private:
llvm::Module* _module;
diff -r 9420faca6468 ports/hotspot/src/share/vm/shark/sharkEntry.hpp
--- a/ports/hotspot/src/share/vm/shark/sharkEntry.hpp Fri Aug 07 11:58:27 2009 +0200
+++ b/ports/hotspot/src/share/vm/shark/sharkEntry.hpp Thu Aug 13 08:00:49 2009 -0400
@@ -24,10 +24,9 @@
*/
class SharkEntry : public ZeroEntry {
- friend class SharkMemoryManager;
-
private:
- address _code_limit;
+ address _code_limit;
+ llvm::Function* _function;
public:
address code_start() const
@@ -38,9 +37,18 @@
{
return _code_limit;
}
- protected:
+ llvm::Function* function() const
+ {
+ return _function;
+ }
+
+ public:
void set_code_limit(address code_limit)
{
_code_limit = code_limit;
}
+ void set_function(llvm::Function* function)
+ {
+ _function = function;
+ }
};
More information about the distro-pkg-dev
mailing list