OpenJDK / panama / dev
changeset 56614:8c3c39710a08
8232151: Minimal VM build broken after JDK-8232050
Reviewed-by: dholmes, clanger
author | jiefu |
---|---|
date | Fri, 11 Oct 2019 17:49:25 +0800 |
parents | 516db52daad6 |
children | 7252d89e3a4e |
files | src/hotspot/cpu/aarch64/sharedRuntime_aarch64.cpp src/hotspot/cpu/arm/sharedRuntime_arm.cpp src/hotspot/cpu/ppc/macroAssembler_ppc.cpp src/hotspot/cpu/ppc/sharedRuntime_ppc.cpp src/hotspot/cpu/ppc/templateTable_ppc_64.cpp src/hotspot/cpu/ppc/vtableStubs_ppc_64.cpp src/hotspot/cpu/s390/sharedRuntime_s390.cpp src/hotspot/cpu/s390/vtableStubs_s390.cpp src/hotspot/cpu/sparc/sharedRuntime_sparc.cpp src/hotspot/cpu/x86/sharedRuntime_x86_32.cpp src/hotspot/cpu/x86/sharedRuntime_x86_64.cpp src/hotspot/share/opto/library_call.cpp |
diffstat | 12 files changed, 12 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/hotspot/cpu/aarch64/sharedRuntime_aarch64.cpp Mon Sep 23 20:26:18 2019 +0200 +++ b/src/hotspot/cpu/aarch64/sharedRuntime_aarch64.cpp Fri Oct 11 17:49:25 2019 +0800 @@ -34,6 +34,7 @@ #include "logging/log.hpp" #include "memory/resourceArea.hpp" #include "oops/compiledICHolder.hpp" +#include "oops/klass.inline.hpp" #include "runtime/safepointMechanism.hpp" #include "runtime/sharedRuntime.hpp" #include "runtime/vframeArray.hpp"
--- a/src/hotspot/cpu/arm/sharedRuntime_arm.cpp Mon Sep 23 20:26:18 2019 +0200 +++ b/src/hotspot/cpu/arm/sharedRuntime_arm.cpp Fri Oct 11 17:49:25 2019 +0800 @@ -32,6 +32,7 @@ #include "logging/log.hpp" #include "memory/resourceArea.hpp" #include "oops/compiledICHolder.hpp" +#include "oops/klass.inline.hpp" #include "runtime/sharedRuntime.hpp" #include "runtime/vframeArray.hpp" #include "utilities/align.hpp"
--- a/src/hotspot/cpu/ppc/macroAssembler_ppc.cpp Mon Sep 23 20:26:18 2019 +0200 +++ b/src/hotspot/cpu/ppc/macroAssembler_ppc.cpp Fri Oct 11 17:49:25 2019 +0800 @@ -32,6 +32,7 @@ #include "interpreter/interpreter.hpp" #include "memory/resourceArea.hpp" #include "nativeInst_ppc.hpp" +#include "oops/klass.inline.hpp" #include "prims/methodHandles.hpp" #include "runtime/biasedLocking.hpp" #include "runtime/icache.hpp"
--- a/src/hotspot/cpu/ppc/sharedRuntime_ppc.cpp Mon Sep 23 20:26:18 2019 +0200 +++ b/src/hotspot/cpu/ppc/sharedRuntime_ppc.cpp Fri Oct 11 17:49:25 2019 +0800 @@ -34,6 +34,7 @@ #include "interpreter/interp_masm.hpp" #include "memory/resourceArea.hpp" #include "oops/compiledICHolder.hpp" +#include "oops/klass.inline.hpp" #include "runtime/safepointMechanism.hpp" #include "runtime/sharedRuntime.hpp" #include "runtime/vframeArray.hpp"
--- a/src/hotspot/cpu/ppc/templateTable_ppc_64.cpp Mon Sep 23 20:26:18 2019 +0200 +++ b/src/hotspot/cpu/ppc/templateTable_ppc_64.cpp Fri Oct 11 17:49:25 2019 +0800 @@ -32,6 +32,7 @@ #include "interpreter/templateInterpreter.hpp" #include "interpreter/templateTable.hpp" #include "memory/universe.hpp" +#include "oops/klass.inline.hpp" #include "oops/objArrayKlass.hpp" #include "oops/oop.inline.hpp" #include "prims/methodHandles.hpp"
--- a/src/hotspot/cpu/ppc/vtableStubs_ppc_64.cpp Mon Sep 23 20:26:18 2019 +0200 +++ b/src/hotspot/cpu/ppc/vtableStubs_ppc_64.cpp Fri Oct 11 17:49:25 2019 +0800 @@ -30,6 +30,7 @@ #include "memory/resourceArea.hpp" #include "oops/compiledICHolder.hpp" #include "oops/instanceKlass.hpp" +#include "oops/klass.inline.hpp" #include "oops/klassVtable.hpp" #include "runtime/sharedRuntime.hpp" #include "vmreg_ppc.inline.hpp"
--- a/src/hotspot/cpu/s390/sharedRuntime_s390.cpp Mon Sep 23 20:26:18 2019 +0200 +++ b/src/hotspot/cpu/s390/sharedRuntime_s390.cpp Fri Oct 11 17:49:25 2019 +0800 @@ -33,6 +33,7 @@ #include "interpreter/interp_masm.hpp" #include "memory/resourceArea.hpp" #include "oops/compiledICHolder.hpp" +#include "oops/klass.inline.hpp" #include "registerSaver_s390.hpp" #include "runtime/safepointMechanism.hpp" #include "runtime/sharedRuntime.hpp"
--- a/src/hotspot/cpu/s390/vtableStubs_s390.cpp Mon Sep 23 20:26:18 2019 +0200 +++ b/src/hotspot/cpu/s390/vtableStubs_s390.cpp Fri Oct 11 17:49:25 2019 +0800 @@ -30,6 +30,7 @@ #include "memory/resourceArea.hpp" #include "oops/compiledICHolder.hpp" #include "oops/instanceKlass.hpp" +#include "oops/klass.inline.hpp" #include "oops/klassVtable.hpp" #include "runtime/sharedRuntime.hpp" #include "vmreg_s390.inline.hpp"
--- a/src/hotspot/cpu/sparc/sharedRuntime_sparc.cpp Mon Sep 23 20:26:18 2019 +0200 +++ b/src/hotspot/cpu/sparc/sharedRuntime_sparc.cpp Fri Oct 11 17:49:25 2019 +0800 @@ -32,6 +32,7 @@ #include "logging/log.hpp" #include "memory/resourceArea.hpp" #include "oops/compiledICHolder.hpp" +#include "oops/klass.inline.hpp" #include "runtime/safepointMechanism.hpp" #include "runtime/sharedRuntime.hpp" #include "runtime/vframeArray.hpp"
--- a/src/hotspot/cpu/x86/sharedRuntime_x86_32.cpp Mon Sep 23 20:26:18 2019 +0200 +++ b/src/hotspot/cpu/x86/sharedRuntime_x86_32.cpp Fri Oct 11 17:49:25 2019 +0800 @@ -34,6 +34,7 @@ #include "logging/log.hpp" #include "memory/resourceArea.hpp" #include "oops/compiledICHolder.hpp" +#include "oops/klass.inline.hpp" #include "runtime/safepointMechanism.hpp" #include "runtime/sharedRuntime.hpp" #include "runtime/vframeArray.hpp"
--- a/src/hotspot/cpu/x86/sharedRuntime_x86_64.cpp Mon Sep 23 20:26:18 2019 +0200 +++ b/src/hotspot/cpu/x86/sharedRuntime_x86_64.cpp Fri Oct 11 17:49:25 2019 +0800 @@ -41,6 +41,7 @@ #include "memory/resourceArea.hpp" #include "memory/universe.hpp" #include "oops/compiledICHolder.hpp" +#include "oops/klass.inline.hpp" #include "runtime/safepointMechanism.hpp" #include "runtime/sharedRuntime.hpp" #include "runtime/vframeArray.hpp"
--- a/src/hotspot/share/opto/library_call.cpp Mon Sep 23 20:26:18 2019 +0200 +++ b/src/hotspot/share/opto/library_call.cpp Fri Oct 11 17:49:25 2019 +0800 @@ -32,6 +32,7 @@ #include "gc/shared/barrierSet.hpp" #include "jfr/support/jfrIntrinsics.hpp" #include "memory/resourceArea.hpp" +#include "oops/klass.inline.hpp" #include "oops/objArrayKlass.hpp" #include "opto/addnode.hpp" #include "opto/arraycopynode.hpp"