Skip to content

Commit ccad09b

Browse files
Merge tag 'jdk-25+7' into labsjdk/adopt-jdk-25+7-master
Added tag jdk-25+7 for changeset 8cf0735
2 parents d77cbf9 + 8cf0735 commit ccad09b

File tree

1,991 files changed

+11645
-8952
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,991 files changed

+11645
-8952
lines changed

bin/idea.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22
#
3-
# Copyright (c) 2009, 2020, Oracle and/or its affiliates. All rights reserved.
3+
# Copyright (c) 2009, 2025, Oracle and/or its affiliates. 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
@@ -99,7 +99,7 @@ if [ "$VERBOSE" = "true" ] ; then
9999
echo "idea template dir: $IDEA_TEMPLATE"
100100
fi
101101

102-
cd $TOP ; make -f "$IDEA_MAKE/idea.gmk" -I $MAKE_DIR/.. idea MAKEOVERRIDES= OUT=$IDEA_OUTPUT/env.cfg MODULES="$*" $CONF_ARG || exit 1
102+
cd $TOP ; make idea-gen-config IDEA_OUTPUT=$IDEA_OUTPUT MODULES="$*" $CONF_ARG || exit 1
103103
cd $SCRIPT_DIR
104104

105105
. $IDEA_OUTPUT/env.cfg

make/CompileDemos.gmk

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2011, 2024, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2011, 2025, 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
@@ -132,12 +132,19 @@ define SetupBuildDemoBody
132132
JARMAIN := $$($1_MAIN_CLASS), \
133133
MANIFEST := $(DEMO_MANIFEST), \
134134
EXTRA_MANIFEST_ATTR := $$($1_EXTRA_MANIFEST_ATTR), \
135-
SRCZIP := $(SUPPORT_OUTPUTDIR)/demos/image/$$($1_DEMO_SUBDIR)/$1/src.zip, \
136135
EXCLUDE_FILES := $$($1_EXCLUDE_FILES), \
137136
DISABLED_WARNINGS := $$($1_DISABLED_WARNINGS), \
138137
))
139138

140139
$1 += $$(BUILD_DEMO_$1)
140+
141+
$$(eval $$(call SetupZipArchive, ZIP_SRC_DEMO_$1, \
142+
SRC := $$($1_MAIN_SRC) $$($1_EXTRA_SRC_DIR), \
143+
ZIP := $(SUPPORT_OUTPUTDIR)/demos/image/$$($1_DEMO_SUBDIR)/$1/src.zip, \
144+
EXCLUDE_FILES := $$($1_EXCLUDE_FILES), \
145+
))
146+
147+
$1 += $$(ZIP_SRC_DEMO_$1)
141148
endif
142149

143150
# Copy files. Sort is needed to remove duplicates.

make/Main.gmk

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2011, 2024, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2011, 2025, 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
@@ -356,6 +356,14 @@ $(eval $(call SetupTarget, vscode-project-ccls, \
356356
DEPS := compile-commands, \
357357
))
358358

359+
################################################################################
360+
# IDEA IntelliJ projects
361+
362+
$(eval $(call SetupTarget, idea-gen-config, \
363+
MAKEFILE := ide/idea/jdk/IdeaGenConfig, \
364+
ARGS := IDEA_OUTPUT="$(IDEA_OUTPUT)" MODULES="$(MODULES)", \
365+
))
366+
359367
################################################################################
360368
# Build demos targets
361369

make/autoconf/jdk-options.m4

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2011, 2024, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2011, 2025, 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
@@ -446,6 +446,7 @@ AC_DEFUN_ONCE([JDKOPT_SETUP_ADDRESS_SANITIZER],
446446
fi
447447
if test "x$TOOLCHAIN_TYPE" = "xclang"; then
448448
ASAN_CFLAGS="$ASAN_CFLAGS -fsanitize-address-use-after-return=never"
449+
ASAN_LDFLAGS="$ASAN_LDFLAGS -shared-libasan"
449450
fi
450451
elif test "x$TOOLCHAIN_TYPE" = "xmicrosoft"; then
451452
# -Oy- is equivalent to -fno-omit-frame-pointer in GCC/Clang.

make/common/JavaCompilation.gmk

+2-18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2011, 2024, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2011, 2025, 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
@@ -32,10 +32,8 @@ endif
3232

3333
include MakeIO.gmk
3434

35-
# Java compilation needs SetupJarArchive and/or SetupZipArchive, if we're
36-
# generating a jar file or a source zip.
35+
# Java compilation needs SetupJarArchive if we're generating a jar file
3736
include JarArchive.gmk
38-
include ZipArchive.gmk
3937

4038
###
4139
### Definitions for common release targets
@@ -156,7 +154,6 @@ endef
156154
# COPY_FILES myapp/foo/setting.txt means copy this file over to the package myapp/foo
157155
# CLEAN .properties means copy and clean all properties file to the corresponding package in BIN.
158156
# CLEAN_FILES myapp/foo/setting.txt means clean this file over to the package myapp/foo
159-
# SRCZIP Create a src.zip based on the found sources and copied files.
160157
# INCLUDE_FILES "com/sun/SolarisFoobar.java" means only compile this file!
161158
# EXCLUDE_FILES "com/sun/SolarisFoobar.java" means do not compile this particular file!
162159
# "SolarisFoobar.java" means do not compile SolarisFoobar, wherever it is found.
@@ -529,19 +526,6 @@ define SetupJavaCompilationBody
529526
# Add jar to target list
530527
$1 += $$($1_JAR)
531528
endif
532-
533-
# Check if a srczip was specified, then setup the rules for the srczip.
534-
ifneq ($$($1_SRCZIP), )
535-
$$(eval $$(call SetupZipArchive, ZIP_ARCHIVE_$1, \
536-
SRC := $$($1_SRC), \
537-
ZIP := $$($1_SRCZIP), \
538-
INCLUDES := $$($1_INCLUDES), \
539-
EXCLUDES := $$($1_EXCLUDES), \
540-
EXCLUDE_FILES := $$($1_EXCLUDE_FILES)))
541-
542-
# Add zip to target list
543-
$1 += $$($1_SRCZIP)
544-
endif
545529
endif # Source files found
546530
endef
547531

make/common/native/CompileFile.gmk

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2011, 2024, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2011, 2025, 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
@@ -253,11 +253,13 @@ define CreatePrecompiledHeader
253253
$$(eval $$(call CreateCompiledNativeFile, $1_$$(notdir $$($1_GENERATED_PCH_SRC)), \
254254
FILE := $$($1_GENERATED_PCH_SRC), \
255255
BASE := $1, \
256-
EXTRA_CXXFLAGS := -Fp$$($1_PCH_FILE) -Yc$$(notdir $$($1_PRECOMPILED_HEADER)), \
256+
EXTRA_CXXFLAGS := -I$$(dir $$($1_PRECOMPILED_HEADER)) -Fp$$($1_PCH_FILE) \
257+
-Yc$$(notdir $$($1_PRECOMPILED_HEADER)), \
257258
))
258259

259260
$1_USE_PCH_FLAGS := \
260-
-Fp$$($1_PCH_FILE) -Yu$$(notdir $$($1_PRECOMPILED_HEADER))
261+
-FI$$(notdir $$($1_PRECOMPILED_HEADER)) -Fp$$($1_PCH_FILE) \
262+
-Yu$$(notdir $$($1_PRECOMPILED_HEADER))
261263

262264
$$($1_ALL_OBJS): $$($1_GENERATED_PCH_OBJ)
263265

@@ -271,7 +273,8 @@ define CreatePrecompiledHeader
271273
else ifneq ($(findstring $(TOOLCHAIN_TYPE), gcc clang), )
272274
ifeq ($(TOOLCHAIN_TYPE), gcc)
273275
$1_PCH_FILE := $$($1_OBJECT_DIR)/precompiled/$$(notdir $$($1_PRECOMPILED_HEADER)).gch
274-
$1_USE_PCH_FLAGS := -I$$($1_OBJECT_DIR)/precompiled
276+
$1_USE_PCH_FLAGS := -I$$($1_OBJECT_DIR)/precompiled \
277+
-include $$(notdir $$($1_PRECOMPILED_HEADER))
275278
else ifeq ($(TOOLCHAIN_TYPE), clang)
276279
$1_PCH_FILE := $$($1_OBJECT_DIR)/precompiled/$$(notdir $$($1_PRECOMPILED_HEADER)).pch
277280
$1_USE_PCH_FLAGS := -include-pch $$($1_PCH_FILE)

make/hotspot/gensrc/GensrcAdlc.gmk

+3-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2013, 2024, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2013, 2025, 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
@@ -37,13 +37,8 @@ ifeq ($(call check-jvm-feature, compiler2), true)
3737
ifeq ($(call isBuildOs, linux), true)
3838
ADLC_CFLAGS := -fno-exceptions -DLINUX
3939
else ifeq ($(call isBuildOs, aix), true)
40-
ifeq ($(TOOLCHAIN_TYPE), clang)
41-
ADLC_LDFLAGS += -m64
42-
ADLC_CFLAGS := -fno-rtti -fexceptions -ffunction-sections -m64 -DAIX -mcpu=pwr8
43-
else
44-
ADLC_LDFLAGS += -q64
45-
ADLC_CFLAGS := -qnortti -qeh -q64 -DAIX
46-
endif
40+
ADLC_LDFLAGS += -m64
41+
ADLC_CFLAGS := -fno-rtti -fexceptions -ffunction-sections -m64 -DAIX -mcpu=pwr8
4742
else ifeq ($(call isBuildOs, windows), true)
4843
ADLC_CFLAGS := -nologo -EHsc
4944
ADLC_CFLAGS_WARNINGS := -W3 -D_CRT_SECURE_NO_WARNINGS

make/hotspot/lib/JvmFlags.gmk

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2013, 2023, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2013, 2025, 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
@@ -43,7 +43,6 @@ JVM_SRC_DIRS += $(call uniq, $(wildcard $(foreach d, $(JVM_SRC_ROOTS), \
4343

4444
JVM_CFLAGS_INCLUDES += \
4545
$(patsubst %,-I%,$(JVM_SRC_DIRS)) \
46-
-I$(TOPDIR)/src/hotspot/share/precompiled \
4746
-I$(TOPDIR)/src/hotspot/share/include \
4847
-I$(TOPDIR)/src/hotspot/os/$(HOTSPOT_TARGET_OS_TYPE)/include \
4948
-I$(SUPPORT_OUTPUTDIR)/modules_include/java.base \
@@ -93,11 +92,6 @@ JVM_CFLAGS += \
9392
$(EXTRA_CFLAGS) \
9493
#
9594

96-
# -DDONT_USE_PRECOMPILED_HEADER will exclude all includes in precompiled.hpp.
97-
ifeq ($(USE_PRECOMPILED_HEADER), false)
98-
JVM_CFLAGS += -DDONT_USE_PRECOMPILED_HEADER
99-
endif
100-
10195
ifneq ($(HOTSPOT_OVERRIDE_LIBPATH), )
10296
JVM_CFLAGS += -DOVERRIDE_LIBPATH='"$(HOTSPOT_OVERRIDE_LIBPATH)"'
10397
endif
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2016, 2025, 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,36 +23,35 @@
2323
# questions.
2424
#
2525

26-
include Makefile
27-
include make/MainSupport.gmk
28-
29-
.PHONY: idea
30-
31-
ifeq ($(SPEC), )
32-
ifneq ($(words $(SPECS)), 1)
33-
@echo "Error: Multiple build specification files found. Please select one explicitly."
34-
@exit 2
35-
endif
36-
idea:
37-
@cd $(topdir)
38-
@$(MAKE) $(MFLAGS) $(MAKE_LOG_FLAGS) -r -R -j 1 -f $(topdir)/make/ide/idea/jdk/idea.gmk SPEC=$(SPECS) HAS_SPEC=true ACTUAL_TOPDIR=$(topdir) MODULES="$(MODULES)" idea
39-
else #with SPEC
40-
include make/common/Modules.gmk
41-
42-
ifeq ($(MODULES), )
43-
SEL_MODULES := $(call FindAllModules)
44-
else
45-
SEL_MODULES := $(MODULES)
46-
endif
47-
48-
idea:
26+
default: all
27+
28+
include $(SPEC)
29+
include MakeBase.gmk
30+
31+
include Modules.gmk
32+
33+
# MODULES and IDEA_OUTPUT is passed on the command line
34+
ifeq ($(MODULES), )
35+
override MODULES := $(call FindAllModules)
36+
endif
37+
38+
ifeq ($(IDEA_OUTPUT), )
39+
override IDEA_OUTPUT := $(WORKSPACE_ROOT)/.idea
40+
endif
41+
42+
OUT := $(IDEA_OUTPUT)/env.cfg
43+
44+
idea:
45+
$(RM) $(OUT)
4946
$(ECHO) "SUPPORT=$(SUPPORT_OUTPUTDIR)" >> $(OUT)
50-
$(ECHO) "MODULE_ROOTS=\"$(foreach mod, $(SEL_MODULES), $(call FindModuleSrcDirs, $(mod)))\"" >> $(OUT)
51-
$(ECHO) "MODULE_NAMES=\"$(strip $(foreach mod, $(SEL_MODULES), $(mod)))\"" >> $(OUT)
52-
$(ECHO) "SEL_MODULES=\"$(SEL_MODULES)\"" >> $(OUT)
47+
$(ECHO) "MODULE_ROOTS=\"$(foreach mod, $(MODULES), $(call FindModuleSrcDirs, $(mod)))\"" >> $(OUT)
48+
$(ECHO) "MODULE_NAMES=\"$(strip $(foreach mod, $(MODULES), $(mod)))\"" >> $(OUT)
49+
$(ECHO) "SEL_MODULES=\"$(MODULES)\"" >> $(OUT)
5350
$(ECHO) "BOOT_JDK=\"$(BOOT_JDK)\"" >> $(OUT)
5451
$(ECHO) "CYGPATH=\"$(PATHTOOL)\"" >> $(OUT)
5552
$(ECHO) "SPEC=\"$(SPEC)\"" >> $(OUT)
5653
$(ECHO) "JT_HOME=\"$(JT_HOME)\"" >> $(OUT)
5754

58-
endif
55+
all: idea
56+
57+
.PHONY: default all idea

make/test/BuildTestLib.gmk

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2015, 2024, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2015, 2025, 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
@@ -64,7 +64,6 @@ $(eval $(call SetupJavaCompilation, BUILD_TEST_LIB_JAR, \
6464
BIN := $(TEST_LIB_SUPPORT)/test-lib_classes, \
6565
HEADERS := $(TEST_LIB_SUPPORT)/test-lib_headers, \
6666
JAR := $(TEST_LIB_SUPPORT)/test-lib.jar, \
67-
DISABLED_WARNINGS := try deprecation rawtypes unchecked serial cast removal preview restricted dangling-doc-comments, \
6867
JAVAC_FLAGS := --add-exports java.base/sun.security.util=ALL-UNNAMED \
6968
--add-exports java.base/jdk.internal.classfile=ALL-UNNAMED \
7069
--add-exports java.base/jdk.internal.classfile.attribute=ALL-UNNAMED \

src/hotspot/cpu/aarch64/abstractInterpreter_aarch64.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2003, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2003, 2025, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2014, Red Hat Inc. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -23,7 +23,6 @@
2323
*
2424
*/
2525

26-
#include "precompiled.hpp"
2726
#include "interpreter/interpreter.hpp"
2827
#include "oops/constMethod.hpp"
2928
#include "oops/klass.inline.hpp"

src/hotspot/cpu/aarch64/assembler_aarch64.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2025, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2014, 2020 Red Hat Inc. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -22,7 +22,6 @@
2222
* questions.
2323
*/
2424

25-
#include "precompiled.hpp"
2625
#include "asm/assembler.hpp"
2726
#include "asm/assembler.inline.hpp"
2827
#include "asm/macroAssembler.hpp"

src/hotspot/cpu/aarch64/bytecodes_aarch64.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1998, 2025, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2014, Red Hat Inc. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -23,7 +23,6 @@
2323
*
2424
*/
2525

26-
#include "precompiled.hpp"
2726
#include "interpreter/bytecodes.hpp"
2827

2928

src/hotspot/cpu/aarch64/c1_CodeStubs_aarch64.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2025, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2014, Red Hat Inc. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -23,7 +23,6 @@
2323
*
2424
*/
2525

26-
#include "precompiled.hpp"
2726
#include "asm/macroAssembler.inline.hpp"
2827
#include "c1/c1_CodeStubs.hpp"
2928
#include "c1/c1_FrameMap.hpp"

src/hotspot/cpu/aarch64/c1_FpuStackSim_aarch64.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2025, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2014, Red Hat Inc. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -28,4 +28,3 @@
2828
//--------------------------------------------------------
2929

3030
// No FPU stack on AARCH64
31-
#include "precompiled.hpp"

src/hotspot/cpu/aarch64/c1_FrameMap_aarch64.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2025, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2014, Red Hat Inc. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -23,7 +23,6 @@
2323
*
2424
*/
2525

26-
#include "precompiled.hpp"
2726
#include "c1/c1_FrameMap.hpp"
2827
#include "c1/c1_LIR.hpp"
2928
#include "runtime/sharedRuntime.hpp"

src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2025, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2014, 2020, Red Hat Inc. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -23,7 +23,6 @@
2323
*
2424
*/
2525

26-
#include "precompiled.hpp"
2726
#include "asm/macroAssembler.inline.hpp"
2827
#include "asm/assembler.hpp"
2928
#include "c1/c1_CodeStubs.hpp"

0 commit comments

Comments
 (0)