/hg/icedtea: 2 new changesets
xranby at icedtea.classpath.org
xranby at icedtea.classpath.org
Thu Aug 5 04:59:29 PDT 2010
changeset dfb6b319b123 in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=dfb6b319b123
author: Gary Benson <gbenson at redhat.com>
date: Wed May 12 11:16:47 2010 +0100
LLVM 2.7 non-product fixes
changeset 56af4f9369ca in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=56af4f9369ca
author: Xerxes R?nby <xerxes at zafena.se>
date: Thu Aug 05 13:57:44 2010 +0200
Updated NEWS and ChangeLog with LLVM 2.7 non-product fixes.
2010-08-05 Gary Benson <gbenson at redhat.com>
* NEWS: Updated with LLVM 2.7 non-product fixes.
* ports/hotspot/src/share/vm/shark/llvmHeaders.hpp: Prevent
LLVM headers to define DEBUG.
* ports/hotspot/src/share/vm/shark/sharkBuilder.cpp
(SharkBuilder::CreateDump): Make non-product debug code LLVM
2.7 API compatible.
diffstat:
4 files changed, 31 insertions(+), 2 deletions(-)
ChangeLog | 9 +++++++++
NEWS | 1 +
ports/hotspot/src/share/vm/shark/llvmHeaders.hpp | 15 ++++++++++++++-
ports/hotspot/src/share/vm/shark/sharkBuilder.cpp | 8 +++++++-
diffs (80 lines):
diff -r e93b9abe3db7 -r 56af4f9369ca ChangeLog
--- a/ChangeLog Thu Aug 05 11:44:14 2010 +0200
+++ b/ChangeLog Thu Aug 05 13:57:44 2010 +0200
@@ -1,3 +1,12 @@ 2010-08-05 Xerxes RÃ¥nby <xerxes at zafen
+2010-08-05 Gary Benson <gbenson at redhat.com>
+
+ * NEWS: Updated with LLVM 2.7 non-product fixes.
+ * ports/hotspot/src/share/vm/shark/llvmHeaders.hpp:
+ Prevent LLVM headers to define DEBUG.
+ * ports/hotspot/src/share/vm/shark/sharkBuilder.cpp
+ (SharkBuilder::CreateDump): Make non-product debug code
+ LLVM 2.7 API compatible.
+
2010-08-05 Xerxes RÃ¥nby <xerxes at zafena.se>
* NEWS: Updated for Shark OSR fix.
diff -r e93b9abe3db7 -r 56af4f9369ca NEWS
--- a/NEWS Thu Aug 05 11:44:14 2010 +0200
+++ b/NEWS Thu Aug 05 13:57:44 2010 +0200
@@ -2,6 +2,7 @@ New in release 1.14 (XXXX-XX-XX)
* Zero/Shark
- Match Shark in icedtea6, makes OSR work by removing vestigal check.
+ - LLVM 2.7 non-product fixes.
New in release 1.13 (2010-07-29)
diff -r e93b9abe3db7 -r 56af4f9369ca ports/hotspot/src/share/vm/shark/llvmHeaders.hpp
--- a/ports/hotspot/src/share/vm/shark/llvmHeaders.hpp Thu Aug 05 11:44:14 2010 +0200
+++ b/ports/hotspot/src/share/vm/shark/llvmHeaders.hpp Thu Aug 05 13:57:44 2010 +0200
@@ -1,6 +1,6 @@
/*
* Copyright 1999-2007 Sun Microsystems, Inc. All Rights Reserved.
- * Copyright 2008, 2009 Red Hat, Inc.
+ * Copyright 2008, 2009, 2010 Red Hat, Inc.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -25,6 +25,11 @@
#ifdef assert
#undef assert
+#endif
+
+#ifdef DEBUG
+ #define SHARK_DEBUG
+ #undef DEBUG
#endif
#include <llvm/Argument.h>
@@ -67,3 +72,11 @@
#else
#define assert(p, msg)
#endif
+
+#ifdef DEBUG
+ #undef DEBUG
+#endif
+#ifdef SHARK_DEBUG
+ #define DEBUG
+ #undef SHARK_DEBUG
+#endif
diff -r e93b9abe3db7 -r 56af4f9369ca ports/hotspot/src/share/vm/shark/sharkBuilder.cpp
--- a/ports/hotspot/src/share/vm/shark/sharkBuilder.cpp Thu Aug 05 11:44:14 2010 +0200
+++ b/ports/hotspot/src/share/vm/shark/sharkBuilder.cpp Thu Aug 05 13:57:44 2010 +0200
@@ -498,7 +498,13 @@ CallInst* SharkBuilder::CreateDump(Value
if (isa<PointerType>(value->getType()))
value = CreatePtrToInt(value, SharkType::intptr_type());
- else if (value->getType()->isInteger())
+ else if (value->getType()->
+#if SHARK_LLVM_VERSION >= 27
+ isIntegerTy()
+#else
+ isInteger()
+#endif
+ )
value = CreateIntCast(value, SharkType::intptr_type(), false);
else
Unimplemented();
More information about the distro-pkg-dev
mailing list