OpenJDK / jdk / hs
changeset 29702:9ed339a5e096
8075809: Add missing includes of stack.inline.hpp
Reviewed-by: jmasa, pliden
author | stefank |
---|---|
date | Wed, 25 Mar 2015 10:08:09 +0100 |
parents | f638fc81a3d0 |
children | 0bbea51cbaf8 |
files | hotspot/src/share/vm/gc_implementation/parallelScavenge/psPromotionManager.cpp hotspot/src/share/vm/gc_implementation/parallelScavenge/psTasks.cpp hotspot/src/share/vm/memory/genMarkSweep.cpp hotspot/src/share/vm/memory/heapInspection.cpp hotspot/src/share/vm/oops/klass.cpp |
diffstat | 5 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/hotspot/src/share/vm/gc_implementation/parallelScavenge/psPromotionManager.cpp Tue Mar 24 11:21:21 2015 +0100 +++ b/hotspot/src/share/vm/gc_implementation/parallelScavenge/psPromotionManager.cpp Wed Mar 25 10:08:09 2015 +0100 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -34,6 +34,7 @@ #include "memory/padded.inline.hpp" #include "oops/oop.inline.hpp" #include "oops/oop.psgc.inline.hpp" +#include "utilities/stack.inline.hpp" PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
--- a/hotspot/src/share/vm/gc_implementation/parallelScavenge/psTasks.cpp Tue Mar 24 11:21:21 2015 +0100 +++ b/hotspot/src/share/vm/gc_implementation/parallelScavenge/psTasks.cpp Wed Mar 25 10:08:09 2015 +0100 @@ -40,6 +40,7 @@ #include "runtime/thread.hpp" #include "runtime/vmThread.hpp" #include "services/management.hpp" +#include "utilities/stack.inline.hpp" #include "utilities/taskqueue.hpp" //
--- a/hotspot/src/share/vm/memory/genMarkSweep.cpp Tue Mar 24 11:21:21 2015 +0100 +++ b/hotspot/src/share/vm/memory/genMarkSweep.cpp Wed Mar 25 10:08:09 2015 +0100 @@ -50,6 +50,7 @@ #include "runtime/vmThread.hpp" #include "utilities/copy.hpp" #include "utilities/events.hpp" +#include "utilities/stack.inline.hpp" void GenMarkSweep::invoke_at_safepoint(int level, ReferenceProcessor* rp, bool clear_all_softrefs) { guarantee(level == 1, "We always collect both old and young.");
--- a/hotspot/src/share/vm/memory/heapInspection.cpp Tue Mar 24 11:21:21 2015 +0100 +++ b/hotspot/src/share/vm/memory/heapInspection.cpp Wed Mar 25 10:08:09 2015 +0100 @@ -33,6 +33,7 @@ #include "runtime/os.hpp" #include "utilities/globalDefinitions.hpp" #include "utilities/macros.hpp" +#include "utilities/stack.inline.hpp" #if INCLUDE_ALL_GCS #include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp" #endif // INCLUDE_ALL_GCS
--- a/hotspot/src/share/vm/oops/klass.cpp Tue Mar 24 11:21:21 2015 +0100 +++ b/hotspot/src/share/vm/oops/klass.cpp Wed Mar 25 10:08:09 2015 +0100 @@ -39,8 +39,8 @@ #include "runtime/atomic.inline.hpp" #include "runtime/orderAccess.inline.hpp" #include "trace/traceMacros.hpp" -#include "utilities/stack.hpp" #include "utilities/macros.hpp" +#include "utilities/stack.inline.hpp" #if INCLUDE_ALL_GCS #include "gc_implementation/g1/g1SATBCardTableModRefBS.hpp" #include "gc_implementation/parallelScavenge/psParallelCompact.hpp"