This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
1,839 additions
and 740 deletions.
- +4 −0 make/RunTests.gmk
- +3 −3 make/data/currency/CurrencyData.properties
- +0 −151 src/hotspot/os/windows/os_windows.cpp
- +5 −0 src/hotspot/share/aot/aotCodeHeap.cpp
- +1 −0 src/hotspot/share/ci/ciField.cpp
- +1 −0 src/hotspot/share/ci/ciReplay.cpp
- +1 −0 src/hotspot/share/classfile/classFileParser.cpp
- +1 −0 src/hotspot/share/classfile/classListParser.cpp
- +99 −0 src/hotspot/share/classfile/classLoadInfo.hpp
- +1 −0 src/hotspot/share/classfile/classLoader.cpp
- +1 −0 src/hotspot/share/classfile/classLoaderExt.cpp
- +18 −0 src/hotspot/share/classfile/dictionary.cpp
- +2 −19 src/hotspot/share/classfile/dictionary.hpp
- +1 −0 src/hotspot/share/classfile/javaClasses.cpp
- +1 −0 src/hotspot/share/classfile/javaClasses.hpp
- +1 −0 src/hotspot/share/classfile/klassFactory.cpp
- +18 −40 src/hotspot/share/classfile/systemDictionary.cpp
- +10 −68 src/hotspot/share/classfile/systemDictionary.hpp
- +1 −1 src/hotspot/share/classfile/systemDictionaryShared.hpp
- +2 −1 src/hotspot/share/gc/g1/g1Arguments.cpp
- +1 −0 src/hotspot/share/gc/g1/g1CollectedHeap.cpp
- +2 −1 src/hotspot/share/gc/parallel/mutableNUMASpace.cpp
- +1 −0 src/hotspot/share/gc/parallel/psParallelCompact.cpp
- +10 −16 src/hotspot/share/gc/serial/defNewGeneration.cpp
- +7 −5 src/hotspot/share/gc/serial/defNewGeneration.hpp
- +1 −2 src/hotspot/share/gc/serial/defNewGeneration.inline.hpp
- +3 −5 src/hotspot/share/gc/serial/serialHeap.cpp
- +3 −3 src/hotspot/share/gc/serial/serialHeap.hpp
- +1 −2 src/hotspot/share/gc/serial/tenuredGeneration.inline.hpp
- +1 −0 src/hotspot/share/gc/shared/gcVMOperations.cpp
- +46 −61 src/hotspot/share/gc/shared/genOopClosures.hpp
- +42 −43 src/hotspot/share/gc/shared/genOopClosures.inline.hpp
- +0 −1 src/hotspot/share/gc/shared/generation.hpp
- +1 −0 src/hotspot/share/jfr/instrumentation/jfrEventClassTransformer.cpp
- +4 −0 src/hotspot/share/jvmci/jvmciCodeInstaller.cpp
- +4 −0 src/hotspot/share/jvmci/jvmciCodeInstaller.hpp
- +1 −0 src/hotspot/share/jvmci/jvmciCompilerToVM.cpp
- +2 −1 src/hotspot/share/jvmci/jvmciJavaClasses.cpp
- +2 −0 src/hotspot/share/jvmci/jvmciRuntime.cpp
- +4 −0 src/hotspot/share/jvmci/vmStructs_jvmci.cpp
- +1 −0 src/hotspot/share/memory/virtualspace.cpp
- +1 −0 src/hotspot/share/oops/instanceKlass.cpp
- +1 −3 src/hotspot/share/oops/klass.inline.hpp
- +0 −1 src/hotspot/share/oops/oop.hpp
- +86 −9 src/hotspot/share/opto/loopnode.cpp
- +5 −0 src/hotspot/share/opto/loopnode.hpp
- +4 −1 src/hotspot/share/opto/loopopts.cpp
- +1 −0 src/hotspot/share/prims/jvm.cpp
- +2 −1 src/hotspot/share/prims/jvmtiRedefineClasses.cpp
- +1 −0 src/hotspot/share/prims/methodHandles.cpp
- +1 −0 src/hotspot/share/prims/unsafe.cpp
- +1 −0 src/hotspot/share/runtime/fieldDescriptor.inline.hpp
- +6 −0 src/hotspot/share/runtime/signature.cpp
- +1 −6 src/hotspot/share/runtime/signature.hpp
- +1 −1 src/hotspot/share/utilities/globalDefinitions_gcc.hpp
- +4 −4 src/java.base/linux/native/libnet/linux_close.c
- +26 −1 src/java.base/share/classes/java/util/stream/DoublePipeline.java
- +63 −0 src/java.base/share/classes/java/util/stream/DoubleStream.java
- +25 −1 src/java.base/share/classes/java/util/stream/IntPipeline.java
- +63 −0 src/java.base/share/classes/java/util/stream/IntStream.java
- +25 −1 src/java.base/share/classes/java/util/stream/LongPipeline.java
- +64 −1 src/java.base/share/classes/java/util/stream/LongStream.java
- +99 −2 src/java.base/share/classes/java/util/stream/ReferencePipeline.java
- +209 −7 src/java.base/share/classes/java/util/stream/Stream.java
- +2 −4 src/java.base/unix/native/libnio/ch/NativeThread.c
- +23 −23 src/java.logging/share/classes/java/util/logging/FileHandler.java
- +9 −9 src/java.logging/share/classes/java/util/logging/Handler.java
- +3 −3 src/java.logging/share/classes/java/util/logging/LogManager.java
- +3 −3 src/java.logging/share/classes/java/util/logging/MemoryHandler.java
- +2 −2 src/java.logging/share/classes/java/util/logging/SocketHandler.java
- +5 −5 src/java.logging/share/classes/java/util/logging/StreamHandler.java
- +20 −0 ...dk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/BinaryContainer.java
- +11 −1 src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/Main.java
- +16 −0 src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/MarkProcessor.java
- +3 −0 ...e/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/GraalOptions.java
- +46 −29 ...e/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/GraalHotSpotVMConfig.java
- +26 −6 ...ses/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/GraalHotSpotVMConfigAccess.java
- +13 −25 ...er/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/HotSpotMarkId.java
- +43 −4 ...org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/nodes/GraalHotSpotVMConfigNode.java
- +1 −1 ...compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/HotSpotG1WriteBarrierSnippets.java
- +2 −6 ...aalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/HotSpotReplacementsUtil.java
- +4 −9 ...sses/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/ForeignCallSnippets.java
- +39 −11 src/jdk.jdwp.agent/share/native/libdt_socket/socketTransport.c
- +106 −0 test/hotspot/jtreg/compiler/loopopts/TestSplitIfPinnedLoadInStripMinedLoop.java
- +1 −1 test/hotspot/jtreg/vmTestbase/vm/mlvm/mixed/stress/java/findDeadlock/TestDescription.java
- +2 −2 test/jdk/java/util/stream/test/org/openjdk/tests/java/util/stream/FlatMapOpTest.java
- +323 −0 test/jdk/java/util/stream/test/org/openjdk/tests/java/util/stream/mapMultiOpTest.java
- +139 −129 test/jdk/security/infra/java/security/cert/CertPathValidator/certification/GlobalSignR6CA.java
- +0 −5 test/jtreg-ext/requires/VMProps.java
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -32,6 +32,7 @@ | ||
#include "oops/oop.inline.hpp" | ||
#include "runtime/fieldDescriptor.inline.hpp" | ||
#include "runtime/handles.inline.hpp" | ||
#include "runtime/reflectionUtils.hpp" | ||
|
||
// ciField | ||
// | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,99 @@ | ||
/* | ||
* Copyright (c) 2020, 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 | ||
* 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
* | ||
*/ | ||
|
||
#ifndef SHARE_CLASSFILE_CLASSLOADINFO_HPP | ||
#define SHARE_CLASSFILE_CLASSLOADINFO_HPP | ||
|
||
#include "runtime/handles.hpp" | ||
|
||
class InstanceKlass; | ||
|
||
template <typename T> class GrowableArray; | ||
|
||
class ClassInstanceInfo : public StackObj { | ||
private: | ||
InstanceKlass* _dynamic_nest_host; | ||
Handle _class_data; | ||
|
||
public: | ||
ClassInstanceInfo() { | ||
_dynamic_nest_host = NULL; | ||
_class_data = Handle(); | ||
} | ||
ClassInstanceInfo(InstanceKlass* dynamic_nest_host, Handle class_data) { | ||
_dynamic_nest_host = dynamic_nest_host; | ||
_class_data = class_data; | ||
} | ||
|
||
InstanceKlass* dynamic_nest_host() const { return _dynamic_nest_host; } | ||
Handle class_data() const { return _class_data; } | ||
friend class ClassLoadInfo; | ||
}; | ||
|
||
class ClassLoadInfo : public StackObj { | ||
private: | ||
Handle _protection_domain; | ||
const InstanceKlass* _unsafe_anonymous_host; | ||
GrowableArray<Handle>* _cp_patches; | ||
ClassInstanceInfo _class_hidden_info; | ||
bool _is_hidden; | ||
bool _is_strong_hidden; | ||
bool _can_access_vm_annotations; | ||
|
||
public: | ||
ClassLoadInfo(Handle protection_domain) { | ||
_protection_domain = protection_domain; | ||
_unsafe_anonymous_host = NULL; | ||
_cp_patches = NULL; | ||
_class_hidden_info._dynamic_nest_host = NULL; | ||
_class_hidden_info._class_data = Handle(); | ||
_is_hidden = false; | ||
_is_strong_hidden = false; | ||
_can_access_vm_annotations = false; | ||
} | ||
|
||
ClassLoadInfo(Handle protection_domain, const InstanceKlass* unsafe_anonymous_host, | ||
GrowableArray<Handle>* cp_patches, InstanceKlass* dynamic_nest_host, | ||
Handle class_data, bool is_hidden, bool is_strong_hidden, | ||
bool can_access_vm_annotations) { | ||
_protection_domain = protection_domain; | ||
_unsafe_anonymous_host = unsafe_anonymous_host; | ||
_cp_patches = cp_patches; | ||
_class_hidden_info._dynamic_nest_host = dynamic_nest_host; | ||
_class_hidden_info._class_data = class_data; | ||
_is_hidden = is_hidden; | ||
_is_strong_hidden = is_strong_hidden; | ||
_can_access_vm_annotations = can_access_vm_annotations; | ||
} | ||
|
||
Handle protection_domain() const { return _protection_domain; } | ||
const InstanceKlass* unsafe_anonymous_host() const { return _unsafe_anonymous_host; } | ||
GrowableArray<Handle>* cp_patches() const { return _cp_patches; } | ||
const ClassInstanceInfo* class_hidden_info_ptr() const { return &_class_hidden_info; } | ||
bool is_hidden() const { return _is_hidden; } | ||
bool is_strong_hidden() const { return _is_strong_hidden; } | ||
bool can_access_vm_annotations() const { return _can_access_vm_annotations; } | ||
}; | ||
|
||
#endif // SHARE_CLASSFILE_CLASSLOADINFO_HPP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.