/hg/icedtea8-forest/hotspot: 8078628, PR3208: Zero build fails w...

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Tue Oct 25 22:38:20 UTC 2016


changeset 3e73be729f73 in /hg/icedtea8-forest/hotspot
details: http://icedtea.classpath.org/hg/icedtea8-forest/hotspot?cmd=changeset;node=3e73be729f73
author: andrew
date: Tue Oct 25 22:16:45 2016 +0100

	8078628, PR3208: Zero build fails with pre-compiled headers disabled


diffstat:

 src/cpu/zero/vm/entry_zero.hpp                       |  4 +++-
 src/cpu/zero/vm/methodHandles_zero.hpp               |  6 +++++-
 src/cpu/zero/vm/nativeInst_zero.cpp                  |  3 ++-
 src/share/vm/interpreter/cppInterpreterGenerator.hpp |  5 +++++
 src/share/vm/prims/methodHandles.hpp                 |  5 +++++
 5 files changed, 20 insertions(+), 3 deletions(-)

diffs (107 lines):

diff -r e200581a7a13 -r 3e73be729f73 src/cpu/zero/vm/entry_zero.hpp
--- a/src/cpu/zero/vm/entry_zero.hpp	Mon Aug 08 15:51:36 2016 +0100
+++ b/src/cpu/zero/vm/entry_zero.hpp	Tue Oct 25 22:16:45 2016 +0100
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
- * Copyright 2008, 2009, 2010 Red Hat, Inc.
+ * Copyright 2016 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
@@ -26,6 +26,8 @@
 #ifndef CPU_ZERO_VM_ENTRY_ZERO_HPP
 #define CPU_ZERO_VM_ENTRY_ZERO_HPP
 
+#include "interpreter/cppInterpreter.hpp"
+
 class ZeroEntry {
  public:
   ZeroEntry() {
diff -r e200581a7a13 -r 3e73be729f73 src/cpu/zero/vm/methodHandles_zero.hpp
--- a/src/cpu/zero/vm/methodHandles_zero.hpp	Mon Aug 08 15:51:36 2016 +0100
+++ b/src/cpu/zero/vm/methodHandles_zero.hpp	Tue Oct 25 22:16:45 2016 +0100
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
- * Copyright 2011 Red Hat, Inc.
+ * Copyright 2016 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
@@ -23,6 +23,8 @@
  *
  */
 
+#ifndef CPU_ZERO_VM_METHODHANDLES_ZERO_HPP
+#define CPU_ZERO_VM_METHODHANDLES_ZERO_HPP
 
 // Adapters
 enum /* platform_dependent_constants */ {
@@ -37,3 +39,5 @@
   static int method_handle_entry_linkToVirtual(Method* method, intptr_t UNUSED, TRAPS);
   static int method_handle_entry_linkToInterface(Method* method, intptr_t UNUSED, TRAPS);
   static int method_handle_entry_invalid(Method* method, intptr_t UNUSED, TRAPS);
+
+#endif // CPU_ZERO_VM_METHODHANDLES_ZERO_HPP
diff -r e200581a7a13 -r 3e73be729f73 src/cpu/zero/vm/nativeInst_zero.cpp
--- a/src/cpu/zero/vm/nativeInst_zero.cpp	Mon Aug 08 15:51:36 2016 +0100
+++ b/src/cpu/zero/vm/nativeInst_zero.cpp	Tue Oct 25 22:16:45 2016 +0100
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
- * Copyright 2008 Red Hat, Inc.
+ * Copyright 2016 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,7 @@
 
 #include "precompiled.hpp"
 #include "assembler_zero.inline.hpp"
+#include "entry_zero.hpp"
 #include "memory/resourceArea.hpp"
 #include "nativeInst_zero.hpp"
 #include "oops/oop.inline.hpp"
diff -r e200581a7a13 -r 3e73be729f73 src/share/vm/interpreter/cppInterpreterGenerator.hpp
--- a/src/share/vm/interpreter/cppInterpreterGenerator.hpp	Mon Aug 08 15:51:36 2016 +0100
+++ b/src/share/vm/interpreter/cppInterpreterGenerator.hpp	Tue Oct 25 22:16:45 2016 +0100
@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
+ * Copyright 2016 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
@@ -28,6 +29,10 @@
 // This file contains the platform-independent parts
 // of the template interpreter generator.
 
+#ifdef TARGET_ARCH_zero
+#include "entry_zero.hpp"
+#endif
+
 #ifdef CC_INTERP
 
 class CppInterpreterGenerator: public AbstractInterpreterGenerator {
diff -r e200581a7a13 -r 3e73be729f73 src/share/vm/prims/methodHandles.hpp
--- a/src/share/vm/prims/methodHandles.hpp	Mon Aug 08 15:51:36 2016 +0100
+++ b/src/share/vm/prims/methodHandles.hpp	Tue Oct 25 22:16:45 2016 +0100
@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2008, 2014, Oracle and/or its affiliates. All rights reserved.
+ * Copyright 2016 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
@@ -31,6 +32,10 @@
 #include "runtime/globals.hpp"
 #include "runtime/interfaceSupport.hpp"
 
+#ifdef TARGET_ARCH_zero
+#include "entry_zero.hpp"
+#endif
+
 class MacroAssembler;
 class Label;
 


More information about the distro-pkg-dev mailing list