changeset in /hg/icedtea6: 2009-06-19 Gary Benson <gbenson at red...
Gary Benson
gbenson at redhat.com
Fri Jun 19 01:01:37 PDT 2009
changeset 94d99ead66a4 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=94d99ead66a4
description:
2009-06-19 Gary Benson <gbenson at redhat.com>
* ports/hotspot/src/share/vm/shark/sharkEntry.hpp
(SharkEntry::_llvm_function): Removed.
(SharkEntry::llvm_function): Likewise.
(SharkEntry::set_llvm_function): Likewise.
* ports/hotspot/src/share/vm/shark/sharkFunction.cpp
(SharkFunction::initialize): Removed call to set_llvm_function.
diffstat:
3 files changed, 11 insertions(+), 13 deletions(-)
ChangeLog | 10 ++++++++++
ports/hotspot/src/share/vm/shark/sharkEntry.hpp | 13 +------------
ports/hotspot/src/share/vm/shark/sharkFunction.cpp | 1 -
diffs (51 lines):
diff -r 025782d51e5c -r 94d99ead66a4 ChangeLog
--- a/ChangeLog Thu Jun 18 12:14:25 2009 -0400
+++ b/ChangeLog Fri Jun 19 03:59:26 2009 -0400
@@ -1,3 +1,13 @@ 2009-06-18 Gary Benson <gbenson at redhat
+2009-06-19 Gary Benson <gbenson at redhat.com>
+
+ * ports/hotspot/src/share/vm/shark/sharkEntry.hpp
+ (SharkEntry::_llvm_function): Removed.
+ (SharkEntry::llvm_function): Likewise.
+ (SharkEntry::set_llvm_function): Likewise.
+
+ * ports/hotspot/src/share/vm/shark/sharkFunction.cpp
+ (SharkFunction::initialize): Removed call to set_llvm_function.
+
2009-06-18 Gary Benson <gbenson at redhat.com>
* ports/hotspot/src/share/vm/shark/sharkTopLevelBlock.cpp
diff -r 025782d51e5c -r 94d99ead66a4 ports/hotspot/src/share/vm/shark/sharkEntry.hpp
--- a/ports/hotspot/src/share/vm/shark/sharkEntry.hpp Thu Jun 18 12:14:25 2009 -0400
+++ b/ports/hotspot/src/share/vm/shark/sharkEntry.hpp Fri Jun 19 03:59:26 2009 -0400
@@ -27,18 +27,7 @@ class SharkEntry : public ZeroEntry {
friend class SharkMemoryManager;
private:
- llvm::Function* _llvm_function;
- address _code_limit;
-
- public:
- llvm::Function* llvm_function() const
- {
- return _llvm_function;
- }
- void set_llvm_function(llvm::Function* llvm_function)
- {
- _llvm_function = llvm_function;
- }
+ address _code_limit;
public:
address code_start() const
diff -r 025782d51e5c -r 94d99ead66a4 ports/hotspot/src/share/vm/shark/sharkFunction.cpp
--- a/ports/hotspot/src/share/vm/shark/sharkFunction.cpp Thu Jun 18 12:14:25 2009 -0400
+++ b/ports/hotspot/src/share/vm/shark/sharkFunction.cpp Fri Jun 19 03:59:26 2009 -0400
@@ -38,7 +38,6 @@ void SharkFunction::initialize()
// Create the function
_function = builder()->CreateFunction(name());
- entry->set_llvm_function(function());
memory_manager()->set_entry_for_function(function(), entry);
// Get our arguments
More information about the distro-pkg-dev
mailing list