changeset in /hg/icedtea: Fix shark build failure with llvm trunk

doko at ubuntu.com doko at ubuntu.com
Tue Aug 4 15:33:44 PDT 2009


changeset 8d06dc9cbd73 in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=8d06dc9cbd73
description:
	Fix shark build failure with llvm trunk

	2009-08-04  Matthias Klose  <doko at ubuntu.com>

	        * ports/hotspot/src/share/vm/shark/llvmValue.hpp: Adjust to rev 78061.
	        ConstantInt API moved back to the 2.5 API, ConstantFP partially moved
	        back to the 2.5 API.

diffstat:

2 files changed, 16 insertions(+), 36 deletions(-)
ChangeLog                                      |    6 +++
ports/hotspot/src/share/vm/shark/llvmValue.hpp |   46 +++++-------------------

diffs (96 lines):

diff -r 40aa38f0fe07 -r 8d06dc9cbd73 ChangeLog
--- a/ChangeLog	Tue Aug 04 17:43:18 2009 +0100
+++ b/ChangeLog	Tue Aug 04 18:48:17 2009 +0200
@@ -1,3 +1,9 @@ 2009-08-04  Andrew John Hughes  <ahughes
+2009-08-04  Matthias Klose  <doko at ubuntu.com>
+
+	* ports/hotspot/src/share/vm/shark/llvmValue.hpp: Adjust to rev 78061.
+	ConstantInt API moved back to the 2.5 API, ConstantFP partially moved
+	back to the 2.5 API.
+
 2009-08-04  Andrew John Hughes  <ahughes at redhat.com>
 
 	* test/jtreg/com/sun/javatest/exec/FileTable.java,
diff -r 40aa38f0fe07 -r 8d06dc9cbd73 ports/hotspot/src/share/vm/shark/llvmValue.hpp
--- a/ports/hotspot/src/share/vm/shark/llvmValue.hpp	Tue Aug 04 17:43:18 2009 +0100
+++ b/ports/hotspot/src/share/vm/shark/llvmValue.hpp	Tue Aug 04 18:48:17 2009 +0200
@@ -27,50 +27,32 @@ class LLVMValue : public AllStatic {
  public:
   static llvm::ConstantInt* jbyte_constant(jbyte value)
   {
-#if SHARK_LLVM_VERSION >= 26
-    return llvm::getGlobalContext().getConstantInt(SharkType::jbyte_type(), value, true);
-#else
     return llvm::ConstantInt::get(SharkType::jbyte_type(), value, true);
-#endif
   }
   static llvm::ConstantInt* jint_constant(jint value)
   {
-#if SHARK_LLVM_VERSION >= 26
-    return llvm::getGlobalContext().getConstantInt(SharkType::jint_type(), value, true);
-#else
     return llvm::ConstantInt::get(SharkType::jint_type(), value, true);
-#endif
   }
   static llvm::ConstantInt* jlong_constant(jlong value)
   {
+    return llvm::ConstantInt::get(SharkType::jlong_type(), value, true);
+  }
+  static llvm::ConstantFP* jfloat_constant(jfloat value)
+  {
 #if SHARK_LLVM_VERSION >= 26
-    return llvm::getGlobalContext().getConstantInt(SharkType::jlong_type(), value, true);
+    return llvm::ConstantFP::get(llvm::getGlobalContext(), llvm::APFloat(value));
 #else
-    return llvm::ConstantInt::get(SharkType::jlong_type(), value, true);
+    return llvm::ConstantFP::get(SharkType::jfloat_type(), value);
 #endif
   }
-#if SHARK_LLVM_VERSION >= 26
-  static llvm::Constant* jfloat_constant(jfloat value)
-  {
-    return llvm::getGlobalContext().getConstantFP(SharkType::jfloat_type(), value); 
-  }
-#else
-  static llvm::ConstantFP* jfloat_constant(jfloat value)
-  {
-    return llvm::ConstantFP::get(SharkType::jfloat_type(), value);
-  }
-#endif
-#if SHARK_LLVM_VERSION >= 26
-  static llvm::Constant* jdouble_constant(jdouble value)
-  {
-    return llvm::getGlobalContext().getConstantFP(SharkType::jdouble_type(), value);
-  }
-#else
   static llvm::ConstantFP* jdouble_constant(jdouble value)
   {
+#if SHARK_LLVM_VERSION >= 26
+    return llvm::ConstantFP::get(llvm::getGlobalContext(), llvm::APFloat(value));
+#else
     return llvm::ConstantFP::get(SharkType::jdouble_type(), value);
+#endif
   }
-#endif
   static llvm::ConstantPointerNull* null()
   {
     return llvm::ConstantPointerNull::get(SharkType::jobject_type());
@@ -79,18 +61,10 @@ class LLVMValue : public AllStatic {
  public:
   static llvm::ConstantInt* bit_constant(int value)
   {
-#if SHARK_LLVM_VERSION >= 26
-    return llvm::getGlobalContext().getConstantInt(llvm::Type::Int1Ty, value, false);
-#else
     return llvm::ConstantInt::get(llvm::Type::Int1Ty, value, false);
-#endif
   }
   static llvm::ConstantInt* intptr_constant(intptr_t value)
   {
-#if SHARK_LLVM_VERSION >= 26
-    return llvm::getGlobalContext().getConstantInt(SharkType::intptr_type(), value, false);
-#else
     return llvm::ConstantInt::get(SharkType::intptr_type(), value, false);
-#endif
   }
 };



More information about the distro-pkg-dev mailing list