/hg/icedtea6: 2009-09-03 Gary Benson <gbenson at redhat.com>
gbenson at icedtea.classpath.org
gbenson at icedtea.classpath.org
Thu Sep 3 06:10:02 PDT 2009
changeset ad90da0ee95f in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=ad90da0ee95f
author: Gary Benson <gbenson at redhat.com>
date: Thu Sep 03 09:03:41 2009 -0400
2009-09-03 Gary Benson <gbenson at redhat.com>
* ports/hotspot/src/cpu/zero/vm/bytecodes_zero.hpp
Added copyright header.
* ports/hotspot/src/cpu/zero/vm/assembler_zero.inline.hpp:
Added copyright header and "intentionally empty" message.
* ports/hotspot/src/cpu/zero/vm/depChecker_zero.cpp: Likewise.
* ports/hotspot/src/cpu/zero/vm/depChecker_zero.hpp: Likewise.
* ports/hotspot/src/cpu/zero/vm/disassembler_zero.cpp: Likewise.
* ports/hotspot/src/cpu/zero/vm/globalDefinitions_zero.hpp: Likewise.
* ports/hotspot/src/cpu/zero/vm/interp_masm_zero.cpp: Likewise.
* ports/hotspot/src/cpu/zero/vm/register_definitions_zero.cpp:
Likewise.
* ports/hotspot/src/cpu/zero/vm/templateInterpreterGenerator_zero.hpp:
Likewise.
* ports/hotspot/src/cpu/zero/vm/templateInterpreter_zero.cpp:
Likewise.
* ports/hotspot/src/cpu/zero/vm/templateInterpreter_zero.hpp:
Likewise.
* ports/hotspot/src/cpu/zero/vm/templateTable_zero.cpp: Likewise.
* ports/hotspot/src/cpu/zero/vm/templateTable_zero.hpp: Likewise.
* ports/hotspot/src/cpu/zero/vm/vm_version_zero.cpp: Likewise.
* ports/hotspot/src/os_cpu/linux_zero/vm/assembler_linux_zero.cpp:
Likewise.
* ports/hotspot/src/os_cpu/linux_zero/vm/thread_linux_zero.cpp:
Likewise.
* ports/hotspot/src/os_cpu/linux_zero/vm/vm_version_linux_zero.cpp:
Likewise.
* ports/hotspot/src/cpu/zero/vm/stackPrinter_zero.hpp
(ZeroStackPrinter::print_word): Replaced a couple of "%d"s with
INTPTR_FORMAT.
diffstat:
19 files changed, 473 insertions(+), 2 deletions(-)
ChangeLog | 30 ++++++++++
ports/hotspot/src/cpu/zero/vm/assembler_zero.inline.hpp | 26 ++++++++
ports/hotspot/src/cpu/zero/vm/bytecodes_zero.hpp | 25 ++++++++
ports/hotspot/src/cpu/zero/vm/depChecker_zero.cpp | 26 ++++++++
ports/hotspot/src/cpu/zero/vm/depChecker_zero.hpp | 26 ++++++++
ports/hotspot/src/cpu/zero/vm/disassembler_zero.cpp | 26 ++++++++
ports/hotspot/src/cpu/zero/vm/globalDefinitions_zero.hpp | 26 ++++++++
ports/hotspot/src/cpu/zero/vm/interp_masm_zero.cpp | 26 ++++++++
ports/hotspot/src/cpu/zero/vm/register_definitions_zero.cpp | 26 ++++++++
ports/hotspot/src/cpu/zero/vm/stackPrinter_zero.hpp | 4 -
ports/hotspot/src/cpu/zero/vm/templateInterpreterGenerator_zero.hpp | 26 ++++++++
ports/hotspot/src/cpu/zero/vm/templateInterpreter_zero.cpp | 26 ++++++++
ports/hotspot/src/cpu/zero/vm/templateInterpreter_zero.hpp | 26 ++++++++
ports/hotspot/src/cpu/zero/vm/templateTable_zero.cpp | 26 ++++++++
ports/hotspot/src/cpu/zero/vm/templateTable_zero.hpp | 26 ++++++++
ports/hotspot/src/cpu/zero/vm/vm_version_zero.cpp | 26 ++++++++
ports/hotspot/src/os_cpu/linux_zero/vm/assembler_linux_zero.cpp | 26 ++++++++
ports/hotspot/src/os_cpu/linux_zero/vm/thread_linux_zero.cpp | 26 ++++++++
ports/hotspot/src/os_cpu/linux_zero/vm/vm_version_linux_zero.cpp | 26 ++++++++
diffs (truncated from 570 to 500 lines):
diff -r 21edcf84dc76 -r ad90da0ee95f ChangeLog
--- a/ChangeLog Mon Aug 31 07:45:07 2009 +0200
+++ b/ChangeLog Thu Sep 03 09:03:41 2009 -0400
@@ -1,3 +1,33 @@ 2009-08-31 Mark Wielaard <mjw at redhat.c
+2009-09-03 Gary Benson <gbenson at redhat.com>
+
+ * ports/hotspot/src/cpu/zero/vm/bytecodes_zero.hpp
+ Added copyright header.
+ * ports/hotspot/src/cpu/zero/vm/assembler_zero.inline.hpp:
+ Added copyright header and "intentionally empty" message.
+ * ports/hotspot/src/cpu/zero/vm/depChecker_zero.cpp: Likewise.
+ * ports/hotspot/src/cpu/zero/vm/depChecker_zero.hpp: Likewise.
+ * ports/hotspot/src/cpu/zero/vm/disassembler_zero.cpp: Likewise.
+ * ports/hotspot/src/cpu/zero/vm/globalDefinitions_zero.hpp: Likewise.
+ * ports/hotspot/src/cpu/zero/vm/interp_masm_zero.cpp: Likewise.
+ * ports/hotspot/src/cpu/zero/vm/register_definitions_zero.cpp: Likewise.
+ * ports/hotspot/src/cpu/zero/vm/templateInterpreterGenerator_zero.hpp:
+ Likewise.
+ * ports/hotspot/src/cpu/zero/vm/templateInterpreter_zero.cpp: Likewise.
+ * ports/hotspot/src/cpu/zero/vm/templateInterpreter_zero.hpp: Likewise.
+ * ports/hotspot/src/cpu/zero/vm/templateTable_zero.cpp: Likewise.
+ * ports/hotspot/src/cpu/zero/vm/templateTable_zero.hpp: Likewise.
+ * ports/hotspot/src/cpu/zero/vm/vm_version_zero.cpp: Likewise.
+ * ports/hotspot/src/os_cpu/linux_zero/vm/assembler_linux_zero.cpp:
+ Likewise.
+ * ports/hotspot/src/os_cpu/linux_zero/vm/thread_linux_zero.cpp:
+ Likewise.
+ * ports/hotspot/src/os_cpu/linux_zero/vm/vm_version_linux_zero.cpp:
+ Likewise.
+
+ * ports/hotspot/src/cpu/zero/vm/stackPrinter_zero.hpp
+ (ZeroStackPrinter::print_word): Replaced a couple of "%d"s with
+ INTPTR_FORMAT.
+
2009-08-31 Mark Wielaard <mjw at redhat.com>
Keith Seitz <keiths at redhat.com>
diff -r 21edcf84dc76 -r ad90da0ee95f ports/hotspot/src/cpu/zero/vm/assembler_zero.inline.hpp
--- a/ports/hotspot/src/cpu/zero/vm/assembler_zero.inline.hpp Mon Aug 31 07:45:07 2009 +0200
+++ b/ports/hotspot/src/cpu/zero/vm/assembler_zero.inline.hpp Thu Sep 03 09:03:41 2009 -0400
@@ -0,0 +1,26 @@
+/*
+ * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2009 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
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ *
+ */
+
+// This file is intentionally empty
diff -r 21edcf84dc76 -r ad90da0ee95f ports/hotspot/src/cpu/zero/vm/bytecodes_zero.hpp
--- a/ports/hotspot/src/cpu/zero/vm/bytecodes_zero.hpp Mon Aug 31 07:45:07 2009 +0200
+++ b/ports/hotspot/src/cpu/zero/vm/bytecodes_zero.hpp Thu Sep 03 09:03:41 2009 -0400
@@ -1,3 +1,28 @@
+/*
+ * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2009 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
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ *
+ */
+
#if defined(PRODUCT) && defined(HOTSPOT_ASM)
#define _iaccess_0 ((Bytecodes::Code)0xdb)
#define _iaccess_1 ((Bytecodes::Code)0xdc)
diff -r 21edcf84dc76 -r ad90da0ee95f ports/hotspot/src/cpu/zero/vm/depChecker_zero.cpp
--- a/ports/hotspot/src/cpu/zero/vm/depChecker_zero.cpp Mon Aug 31 07:45:07 2009 +0200
+++ b/ports/hotspot/src/cpu/zero/vm/depChecker_zero.cpp Thu Sep 03 09:03:41 2009 -0400
@@ -0,0 +1,26 @@
+/*
+ * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2009 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
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ *
+ */
+
+// This file is intentionally empty
diff -r 21edcf84dc76 -r ad90da0ee95f ports/hotspot/src/cpu/zero/vm/depChecker_zero.hpp
--- a/ports/hotspot/src/cpu/zero/vm/depChecker_zero.hpp Mon Aug 31 07:45:07 2009 +0200
+++ b/ports/hotspot/src/cpu/zero/vm/depChecker_zero.hpp Thu Sep 03 09:03:41 2009 -0400
@@ -0,0 +1,26 @@
+/*
+ * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2009 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
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ *
+ */
+
+// This file is intentionally empty
diff -r 21edcf84dc76 -r ad90da0ee95f ports/hotspot/src/cpu/zero/vm/disassembler_zero.cpp
--- a/ports/hotspot/src/cpu/zero/vm/disassembler_zero.cpp Mon Aug 31 07:45:07 2009 +0200
+++ b/ports/hotspot/src/cpu/zero/vm/disassembler_zero.cpp Thu Sep 03 09:03:41 2009 -0400
@@ -0,0 +1,26 @@
+/*
+ * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2009 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
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ *
+ */
+
+// This file is intentionally empty
diff -r 21edcf84dc76 -r ad90da0ee95f ports/hotspot/src/cpu/zero/vm/globalDefinitions_zero.hpp
--- a/ports/hotspot/src/cpu/zero/vm/globalDefinitions_zero.hpp Mon Aug 31 07:45:07 2009 +0200
+++ b/ports/hotspot/src/cpu/zero/vm/globalDefinitions_zero.hpp Thu Sep 03 09:03:41 2009 -0400
@@ -0,0 +1,26 @@
+/*
+ * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2009 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
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ *
+ */
+
+// This file is intentionally empty
diff -r 21edcf84dc76 -r ad90da0ee95f ports/hotspot/src/cpu/zero/vm/interp_masm_zero.cpp
--- a/ports/hotspot/src/cpu/zero/vm/interp_masm_zero.cpp Mon Aug 31 07:45:07 2009 +0200
+++ b/ports/hotspot/src/cpu/zero/vm/interp_masm_zero.cpp Thu Sep 03 09:03:41 2009 -0400
@@ -0,0 +1,26 @@
+/*
+ * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2009 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
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ *
+ */
+
+// This file is intentionally empty
diff -r 21edcf84dc76 -r ad90da0ee95f ports/hotspot/src/cpu/zero/vm/register_definitions_zero.cpp
--- a/ports/hotspot/src/cpu/zero/vm/register_definitions_zero.cpp Mon Aug 31 07:45:07 2009 +0200
+++ b/ports/hotspot/src/cpu/zero/vm/register_definitions_zero.cpp Thu Sep 03 09:03:41 2009 -0400
@@ -0,0 +1,26 @@
+/*
+ * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2009 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
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ *
+ */
+
+// This file is intentionally empty
diff -r 21edcf84dc76 -r ad90da0ee95f ports/hotspot/src/cpu/zero/vm/stackPrinter_zero.hpp
--- a/ports/hotspot/src/cpu/zero/vm/stackPrinter_zero.hpp Mon Aug 31 07:45:07 2009 +0200
+++ b/ports/hotspot/src/cpu/zero/vm/stackPrinter_zero.hpp Thu Sep 03 09:03:41 2009 -0400
@@ -190,7 +190,7 @@ class ZeroStackPrinter {
}
}
else {
- snprintf(_buf, _buflen, "%s[%d]",
+ snprintf(_buf, _buflen, "%s[" INTPTR_FORMAT "]",
top_frame ? "stack_word" : "local",
istate->stack_base() - addr - 1);
field = _buf;
@@ -250,7 +250,7 @@ class ZeroStackPrinter {
}
}
else {
- snprintf(_buf, _buflen, "%s[%d]",
+ snprintf(_buf, _buflen, "%s[" INTPTR_FORMAT "]",
top_frame ? "stack_word" : "local",
stack_base - addr - 1);
field = _buf;
diff -r 21edcf84dc76 -r ad90da0ee95f ports/hotspot/src/cpu/zero/vm/templateInterpreterGenerator_zero.hpp
--- a/ports/hotspot/src/cpu/zero/vm/templateInterpreterGenerator_zero.hpp Mon Aug 31 07:45:07 2009 +0200
+++ b/ports/hotspot/src/cpu/zero/vm/templateInterpreterGenerator_zero.hpp Thu Sep 03 09:03:41 2009 -0400
@@ -0,0 +1,26 @@
+/*
+ * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2009 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
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ *
+ */
+
+// This file is intentionally empty
diff -r 21edcf84dc76 -r ad90da0ee95f ports/hotspot/src/cpu/zero/vm/templateInterpreter_zero.cpp
--- a/ports/hotspot/src/cpu/zero/vm/templateInterpreter_zero.cpp Mon Aug 31 07:45:07 2009 +0200
+++ b/ports/hotspot/src/cpu/zero/vm/templateInterpreter_zero.cpp Thu Sep 03 09:03:41 2009 -0400
@@ -0,0 +1,26 @@
+/*
+ * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2009 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
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ *
+ */
+
+// This file is intentionally empty
diff -r 21edcf84dc76 -r ad90da0ee95f ports/hotspot/src/cpu/zero/vm/templateInterpreter_zero.hpp
--- a/ports/hotspot/src/cpu/zero/vm/templateInterpreter_zero.hpp Mon Aug 31 07:45:07 2009 +0200
+++ b/ports/hotspot/src/cpu/zero/vm/templateInterpreter_zero.hpp Thu Sep 03 09:03:41 2009 -0400
@@ -0,0 +1,26 @@
+/*
+ * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2009 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
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ *
+ */
+
+// This file is intentionally empty
diff -r 21edcf84dc76 -r ad90da0ee95f ports/hotspot/src/cpu/zero/vm/templateTable_zero.cpp
--- a/ports/hotspot/src/cpu/zero/vm/templateTable_zero.cpp Mon Aug 31 07:45:07 2009 +0200
+++ b/ports/hotspot/src/cpu/zero/vm/templateTable_zero.cpp Thu Sep 03 09:03:41 2009 -0400
@@ -0,0 +1,26 @@
+/*
+ * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2009 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
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ *
+ */
+
+// This file is intentionally empty
diff -r 21edcf84dc76 -r ad90da0ee95f ports/hotspot/src/cpu/zero/vm/templateTable_zero.hpp
--- a/ports/hotspot/src/cpu/zero/vm/templateTable_zero.hpp Mon Aug 31 07:45:07 2009 +0200
+++ b/ports/hotspot/src/cpu/zero/vm/templateTable_zero.hpp Thu Sep 03 09:03:41 2009 -0400
@@ -0,0 +1,26 @@
+/*
+ * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2009 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
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ *
+ */
+
+// This file is intentionally empty
diff -r 21edcf84dc76 -r ad90da0ee95f ports/hotspot/src/cpu/zero/vm/vm_version_zero.cpp
--- a/ports/hotspot/src/cpu/zero/vm/vm_version_zero.cpp Mon Aug 31 07:45:07 2009 +0200
+++ b/ports/hotspot/src/cpu/zero/vm/vm_version_zero.cpp Thu Sep 03 09:03:41 2009 -0400
@@ -0,0 +1,26 @@
+/*
+ * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2009 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
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+ * CA 95054 USA or visit www.sun.com if you need additional information or
+ * have any questions.
+ *
+ */
+
+// This file is intentionally empty
diff -r 21edcf84dc76 -r ad90da0ee95f ports/hotspot/src/os_cpu/linux_zero/vm/assembler_linux_zero.cpp
--- a/ports/hotspot/src/os_cpu/linux_zero/vm/assembler_linux_zero.cpp Mon Aug 31 07:45:07 2009 +0200
+++ b/ports/hotspot/src/os_cpu/linux_zero/vm/assembler_linux_zero.cpp Thu Sep 03 09:03:41 2009 -0400
@@ -0,0 +1,26 @@
+/*
+ * Copyright 1997-2007 Sun Microsystems, Inc. All Rights Reserved.
+ * Copyright 2009 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
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
More information about the distro-pkg-dev
mailing list