Skip to content

Commit 1c77046

Browse files
committed
8260404: jvm_io.h include missing in a number of files
Reviewed-by: shade, iklam, dholmes
1 parent bd2744d commit 1c77046

File tree

16 files changed

+26
-10
lines changed

16 files changed

+26
-10
lines changed

src/hotspot/os/posix/perfMemory_posix.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright (c) 2001, 2021, Oracle and/or its affiliates. All rights reserved.
3-
* Copyright (c) 2012, 2020 SAP SE. All rights reserved.
3+
* Copyright (c) 2012, 2021 SAP SE. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
66
* This code is free software; you can redistribute it and/or modify it
@@ -24,6 +24,7 @@
2424
*/
2525

2626
#include "precompiled.hpp"
27+
#include "jvm_io.h"
2728
#include "classfile/vmSymbols.hpp"
2829
#include "logging/log.hpp"
2930
#include "memory/allocation.inline.hpp"

src/hotspot/share/aot/aotCodeHeap.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
*/
2323

2424
#include "precompiled.hpp"
25+
#include "jvm_io.h"
2526
#include "aot/aotCodeHeap.hpp"
2627
#include "aot/aotLoader.hpp"
2728
#include "ci/ciUtilities.inline.hpp"

src/hotspot/share/code/codeCache.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,6 +23,7 @@
2323
*/
2424

2525
#include "precompiled.hpp"
26+
#include "jvm_io.h"
2627
#include "aot/aotLoader.hpp"
2728
#include "code/codeBlob.hpp"
2829
#include "code/codeCache.hpp"

src/hotspot/share/interpreter/interpreterRuntime.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,6 +23,7 @@
2323
*/
2424

2525
#include "precompiled.hpp"
26+
#include "jvm_io.h"
2627
#include "classfile/javaClasses.inline.hpp"
2728
#include "classfile/symbolTable.hpp"
2829
#include "classfile/systemDictionary.hpp"

src/hotspot/share/interpreter/zero/bytecodeInterpreter.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
*/
2424

2525
// no precompiled headers
26+
#include "jvm_io.h"
2627
#include "classfile/javaClasses.hpp"
2728
#include "classfile/vmSymbols.hpp"
2829
#include "gc/shared/collectedHeap.hpp"

src/hotspot/share/jfr/jni/jfrUpcalls.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,6 +23,7 @@
2323
*/
2424

2525
#include "precompiled.hpp"
26+
#include "jvm_io.h"
2627
#include "classfile/javaClasses.hpp"
2728
#include "classfile/symbolTable.hpp"
2829
#include "classfile/systemDictionary.hpp"

src/hotspot/share/jfr/leakprofiler/checkpoint/objectSampleDescription.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,6 +23,7 @@
2323
*/
2424

2525
#include "precompiled.hpp"
26+
#include "jvm_io.h"
2627
#include "classfile/javaClasses.inline.hpp"
2728
#include "classfile/symbolTable.hpp"
2829
#include "classfile/systemDictionary.hpp"

src/hotspot/share/jfr/recorder/repository/jfrEmergencyDump.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2012, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,6 +23,7 @@
2323
*/
2424

2525
#include "precompiled.hpp"
26+
#include "jvm_io.h"
2627
#include "jfr/jfrEvents.hpp"
2728
#include "jfr/jni/jfrJavaSupport.hpp"
2829
#include "jfr/leakprofiler/leakProfiler.hpp"

src/hotspot/share/jvmci/jvmciEnv.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
*/
2424

2525
#include "precompiled.hpp"
26+
#include "jvm_io.h"
2627
#include "classfile/stringTable.hpp"
2728
#include "classfile/symbolTable.hpp"
2829
#include "code/codeCache.hpp"

src/hotspot/share/jvmci/jvmciRuntime.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2012, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -24,6 +24,7 @@
2424
#ifndef SHARE_JVMCI_JVMCIRUNTIME_HPP
2525
#define SHARE_JVMCI_JVMCIRUNTIME_HPP
2626

27+
#include "jvm_io.h"
2728
#include "code/nmethod.hpp"
2829
#include "gc/shared/collectedHeap.hpp"
2930
#include "jvmci/jvmci.hpp"

0 commit comments

Comments
 (0)