mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
Merge
This commit is contained in:
commit
4ecee47075
1452 changed files with 45943 additions and 22788 deletions
3
.hgtags
3
.hgtags
|
@ -215,3 +215,6 @@ f09ab0c416185e3cba371e81bcb6a16060c90f44 jdk8-b90
|
||||||
80b6c3172dc2cfceb022411292d290a967f9c728 jdk8-b91
|
80b6c3172dc2cfceb022411292d290a967f9c728 jdk8-b91
|
||||||
2fd6acba737b01e705e1f7c33588c922a3787f13 jdk8-b92
|
2fd6acba737b01e705e1f7c33588c922a3787f13 jdk8-b92
|
||||||
b72ae39e1329fefae50d4690db4fde43f3841a95 jdk8-b93
|
b72ae39e1329fefae50d4690db4fde43f3841a95 jdk8-b93
|
||||||
|
0d804e3b955dce406af6a79ac1cc35c696aff7fb jdk8-b94
|
||||||
|
49fe9c8049132647ad38837a877dd473e6c9b0e5 jdk8-b95
|
||||||
|
ea73f01b9053e7165e7ba80f242bafecbc6af712 jdk8-b96
|
||||||
|
|
|
@ -215,3 +215,6 @@ e1a929afcfc492470d50be0b6b0e8dc77d3760b9 jdk8-b88
|
||||||
cb51fb4789ac0b8be4056482077ddfb8f3bd3805 jdk8-b91
|
cb51fb4789ac0b8be4056482077ddfb8f3bd3805 jdk8-b91
|
||||||
3a36c926a7aafa9d4a892a45ef3678e87ad8359b jdk8-b92
|
3a36c926a7aafa9d4a892a45ef3678e87ad8359b jdk8-b92
|
||||||
27c51c6e31c1ef36afa0e6efb031f9b13f26c12b jdk8-b93
|
27c51c6e31c1ef36afa0e6efb031f9b13f26c12b jdk8-b93
|
||||||
|
50d2bde060f2a9bbbe4da0c8986e20aca61f2e2e jdk8-b94
|
||||||
|
785d07fe38901ecc1b7e0145e53e1c3da9361fee jdk8-b95
|
||||||
|
c156084add486f941c12d886a0b1b2854795d557 jdk8-b96
|
||||||
|
|
|
@ -68,12 +68,15 @@ else
|
||||||
# First, find out the valid targets
|
# First, find out the valid targets
|
||||||
# Run the makefile with an arbitraty SPEC using -p -q (quiet dry-run and dump rules) to find
|
# Run the makefile with an arbitraty SPEC using -p -q (quiet dry-run and dump rules) to find
|
||||||
# available PHONY targets. Use this list as valid targets to pass on to the repeated calls.
|
# available PHONY targets. Use this list as valid targets to pass on to the repeated calls.
|
||||||
all_phony_targets=$(filter-out $(global_targets), $(strip $(shell \
|
all_phony_targets=$(filter-out $(global_targets) bundles-only, $(strip $(shell \
|
||||||
$(MAKE) -p -q -f common/makefiles SPEC=$(firstword $(SPEC)) | \
|
$(MAKE) -p -q -f common/makefiles/Main.gmk SPEC=$(firstword $(SPEC)) | \
|
||||||
grep ^.PHONY: | head -n 1 | cut -d " " -f 2-)))
|
grep ^.PHONY: | head -n 1 | cut -d " " -f 2-)))
|
||||||
|
|
||||||
$(all_phony_targets):
|
$(all_phony_targets):
|
||||||
@$(foreach spec,$(SPEC),($(MAKE) -f NewMakefile.gmk SPEC=$(spec) $(VERBOSE) VERBOSE=$(VERBOSE) LOG_LEVEL=$(LOG_LEVEL) $@) &&) true
|
$(foreach spec,$(SPEC),($(MAKE) -f NewMakefile.gmk SPEC=$(spec) \
|
||||||
|
$(VERBOSE) VERBOSE=$(VERBOSE) LOG_LEVEL=$(LOG_LEVEL) $@) &&) true
|
||||||
|
|
||||||
|
.PHONY: $(all_phony_targets)
|
||||||
|
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -355,12 +355,24 @@
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Install a
|
Install a
|
||||||
<a name="bootjdk">Bootstrap JDK</a>
|
<a name="bootjdk">Bootstrap JDK</a>.
|
||||||
<br>
|
|
||||||
All OpenJDK builds require access to a previously released
|
All OpenJDK builds require access to a previously released
|
||||||
JDK, this is often called a bootstrap JDK.
|
JDK called the <i>bootstrap JDK</i> or <i>boot JDK.</i>
|
||||||
Currently, for this JDK release we require
|
The general rule is that the bootstrap JDK
|
||||||
JDK 7 Update 7 or newer.
|
must be an instance of the previous major
|
||||||
|
release of the JDK. In addition, there may be
|
||||||
|
a requirement to use a release at or beyond a
|
||||||
|
particular update level.
|
||||||
|
<br> <br>
|
||||||
|
|
||||||
|
<b><i>Building JDK 8 requires use of a version
|
||||||
|
of JDK 7 that is at Update 7 or newer. JDK 8
|
||||||
|
developers should not use JDK 8 as the boot
|
||||||
|
JDK, to ensure that JDK 8 dependencies are
|
||||||
|
not introduced into the parts of the system
|
||||||
|
that are built with JDK 7.</i></b>
|
||||||
|
|
||||||
|
<br> <br>
|
||||||
The JDK 7 binaries can be downloaded from Oracle's
|
The JDK 7 binaries can be downloaded from Oracle's
|
||||||
<a href="http://www.oracle.com/technetwork/java/javase/downloads/index.html"
|
<a href="http://www.oracle.com/technetwork/java/javase/downloads/index.html"
|
||||||
target="_blank">JDK 7 download site</a>.
|
target="_blank">JDK 7 download site</a>.
|
||||||
|
|
|
@ -43,6 +43,16 @@ AC_DEFUN([ADD_JVM_ARG_IF_OK],
|
||||||
fi
|
fi
|
||||||
])
|
])
|
||||||
|
|
||||||
|
# Appends a string to a path variable, only adding the : when needed.
|
||||||
|
AC_DEFUN([BASIC_APPEND_TO_PATH],
|
||||||
|
[
|
||||||
|
if test "x[$]$1" = x; then
|
||||||
|
$1="$2"
|
||||||
|
else
|
||||||
|
$1="[$]$1:$2"
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
||||||
# This will make sure the given variable points to a full and proper
|
# This will make sure the given variable points to a full and proper
|
||||||
# path. This means:
|
# path. This means:
|
||||||
# 1) There will be no spaces in the path. On posix platforms,
|
# 1) There will be no spaces in the path. On posix platforms,
|
||||||
|
@ -351,7 +361,9 @@ fi
|
||||||
AC_SUBST(SYS_ROOT)
|
AC_SUBST(SYS_ROOT)
|
||||||
|
|
||||||
AC_ARG_WITH([tools-dir], [AS_HELP_STRING([--with-tools-dir],
|
AC_ARG_WITH([tools-dir], [AS_HELP_STRING([--with-tools-dir],
|
||||||
[search this directory for compilers and tools (for cross-compiling)])], [TOOLS_DIR=$with_tools_dir])
|
[search this directory for compilers and tools (for cross-compiling)])],
|
||||||
|
[TOOLS_DIR=$with_tools_dir]
|
||||||
|
)
|
||||||
|
|
||||||
AC_ARG_WITH([devkit], [AS_HELP_STRING([--with-devkit],
|
AC_ARG_WITH([devkit], [AS_HELP_STRING([--with-devkit],
|
||||||
[use this directory as base for tools-dir and sys-root (for cross-compiling)])],
|
[use this directory as base for tools-dir and sys-root (for cross-compiling)])],
|
||||||
|
@ -359,13 +371,14 @@ AC_ARG_WITH([devkit], [AS_HELP_STRING([--with-devkit],
|
||||||
if test "x$with_sys_root" != x; then
|
if test "x$with_sys_root" != x; then
|
||||||
AC_MSG_ERROR([Cannot specify both --with-devkit and --with-sys-root at the same time])
|
AC_MSG_ERROR([Cannot specify both --with-devkit and --with-sys-root at the same time])
|
||||||
fi
|
fi
|
||||||
if test "x$with_tools_dir" != x; then
|
BASIC_FIXUP_PATH([with_devkit])
|
||||||
AC_MSG_ERROR([Cannot specify both --with-devkit and --with-tools-dir at the same time])
|
BASIC_APPEND_TO_PATH([TOOLS_DIR],$with_devkit/bin)
|
||||||
|
if test -d "$with_devkit/$host_alias/libc"; then
|
||||||
|
SYS_ROOT=$with_devkit/$host_alias/libc
|
||||||
|
elif test -d "$with_devkit/$host/sys-root"; then
|
||||||
|
SYS_ROOT=$with_devkit/$host/sys-root
|
||||||
fi
|
fi
|
||||||
TOOLS_DIR=$with_devkit/bin
|
|
||||||
SYS_ROOT=$with_devkit/$host_alias/libc
|
|
||||||
])
|
])
|
||||||
|
|
||||||
])
|
])
|
||||||
|
|
||||||
AC_DEFUN_ONCE([BASIC_SETUP_OUTPUT_DIR],
|
AC_DEFUN_ONCE([BASIC_SETUP_OUTPUT_DIR],
|
||||||
|
@ -608,6 +621,14 @@ AC_PATH_PROGS(READELF, [readelf greadelf])
|
||||||
AC_PATH_PROG(HG, hg)
|
AC_PATH_PROG(HG, hg)
|
||||||
AC_PATH_PROG(STAT, stat)
|
AC_PATH_PROG(STAT, stat)
|
||||||
AC_PATH_PROG(TIME, time)
|
AC_PATH_PROG(TIME, time)
|
||||||
|
# Check if it's GNU time
|
||||||
|
IS_GNU_TIME=`$TIME --version 2>&1 | $GREP 'GNU time'`
|
||||||
|
if test "x$IS_GNU_TIME" != x; then
|
||||||
|
IS_GNU_TIME=yes
|
||||||
|
else
|
||||||
|
IS_GNU_TIME=no
|
||||||
|
fi
|
||||||
|
AC_SUBST(IS_GNU_TIME)
|
||||||
|
|
||||||
if test "x$OPENJDK_TARGET_OS" = "xwindows"; then
|
if test "x$OPENJDK_TARGET_OS" = "xwindows"; then
|
||||||
BASIC_REQUIRE_PROG(COMM, comm)
|
BASIC_REQUIRE_PROG(COMM, comm)
|
||||||
|
|
|
@ -162,7 +162,12 @@ AC_DEFUN([BPERF_SETUP_CCACHE],
|
||||||
[disable using ccache to speed up recompilations @<:@enabled@:>@])],
|
[disable using ccache to speed up recompilations @<:@enabled@:>@])],
|
||||||
[ENABLE_CCACHE=${enable_ccache}], [ENABLE_CCACHE=yes])
|
[ENABLE_CCACHE=${enable_ccache}], [ENABLE_CCACHE=yes])
|
||||||
if test "x$ENABLE_CCACHE" = xyes; then
|
if test "x$ENABLE_CCACHE" = xyes; then
|
||||||
|
OLD_PATH="$PATH"
|
||||||
|
if test "x$TOOLS_DIR" != x; then
|
||||||
|
PATH=$TOOLS_DIR:$PATH
|
||||||
|
fi
|
||||||
AC_PATH_PROG(CCACHE, ccache)
|
AC_PATH_PROG(CCACHE, ccache)
|
||||||
|
PATH="$OLD_PATH"
|
||||||
else
|
else
|
||||||
AC_MSG_CHECKING([for ccache])
|
AC_MSG_CHECKING([for ccache])
|
||||||
AC_MSG_RESULT([explicitly disabled])
|
AC_MSG_RESULT([explicitly disabled])
|
||||||
|
|
|
@ -799,6 +799,7 @@ OS_VERSION_MAJOR
|
||||||
PKG_CONFIG
|
PKG_CONFIG
|
||||||
CODESIGN
|
CODESIGN
|
||||||
XATTR
|
XATTR
|
||||||
|
IS_GNU_TIME
|
||||||
TIME
|
TIME
|
||||||
STAT
|
STAT
|
||||||
HG
|
HG
|
||||||
|
@ -3083,6 +3084,9 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
|
||||||
# Also set JVM_ARG_OK to true/false depending on outcome.
|
# Also set JVM_ARG_OK to true/false depending on outcome.
|
||||||
|
|
||||||
|
|
||||||
|
# Appends a string to a path variable, only adding the : when needed.
|
||||||
|
|
||||||
|
|
||||||
# This will make sure the given variable points to a full and proper
|
# This will make sure the given variable points to a full and proper
|
||||||
# path. This means:
|
# path. This means:
|
||||||
# 1) There will be no spaces in the path. On posix platforms,
|
# 1) There will be no spaces in the path. On posix platforms,
|
||||||
|
@ -3782,7 +3786,7 @@ fi
|
||||||
#CUSTOM_AUTOCONF_INCLUDE
|
#CUSTOM_AUTOCONF_INCLUDE
|
||||||
|
|
||||||
# Do not change or remove the following line, it is needed for consistency checks:
|
# Do not change or remove the following line, it is needed for consistency checks:
|
||||||
DATE_WHEN_GENERATED=1370949244
|
DATE_WHEN_GENERATED=1372770384
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
#
|
#
|
||||||
|
@ -7457,6 +7461,7 @@ fi
|
||||||
# Check whether --with-tools-dir was given.
|
# Check whether --with-tools-dir was given.
|
||||||
if test "${with_tools_dir+set}" = set; then :
|
if test "${with_tools_dir+set}" = set; then :
|
||||||
withval=$with_tools_dir; TOOLS_DIR=$with_tools_dir
|
withval=$with_tools_dir; TOOLS_DIR=$with_tools_dir
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
@ -7467,17 +7472,145 @@ if test "${with_devkit+set}" = set; then :
|
||||||
if test "x$with_sys_root" != x; then
|
if test "x$with_sys_root" != x; then
|
||||||
as_fn_error $? "Cannot specify both --with-devkit and --with-sys-root at the same time" "$LINENO" 5
|
as_fn_error $? "Cannot specify both --with-devkit and --with-sys-root at the same time" "$LINENO" 5
|
||||||
fi
|
fi
|
||||||
if test "x$with_tools_dir" != x; then
|
|
||||||
as_fn_error $? "Cannot specify both --with-devkit and --with-tools-dir at the same time" "$LINENO" 5
|
if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.cygwin"; then
|
||||||
|
|
||||||
|
# Input might be given as Windows format, start by converting to
|
||||||
|
# unix format.
|
||||||
|
path="$with_devkit"
|
||||||
|
new_path=`$CYGPATH -u "$path"`
|
||||||
|
|
||||||
|
# Cygwin tries to hide some aspects of the Windows file system, such that binaries are
|
||||||
|
# named .exe but called without that suffix. Therefore, "foo" and "foo.exe" are considered
|
||||||
|
# the same file, most of the time (as in "test -f"). But not when running cygpath -s, then
|
||||||
|
# "foo.exe" is OK but "foo" is an error.
|
||||||
|
#
|
||||||
|
# This test is therefore slightly more accurate than "test -f" to check for file precense.
|
||||||
|
# It is also a way to make sure we got the proper file name for the real test later on.
|
||||||
|
test_shortpath=`$CYGPATH -s -m "$new_path" 2> /dev/null`
|
||||||
|
if test "x$test_shortpath" = x; then
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: The path of with_devkit, which resolves as \"$path\", is invalid." >&5
|
||||||
|
$as_echo "$as_me: The path of with_devkit, which resolves as \"$path\", is invalid." >&6;}
|
||||||
|
as_fn_error $? "Cannot locate the the path of with_devkit" "$LINENO" 5
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Call helper function which possibly converts this using DOS-style short mode.
|
||||||
|
# If so, the updated path is stored in $new_path.
|
||||||
|
|
||||||
|
input_path="$new_path"
|
||||||
|
# Check if we need to convert this using DOS-style short mode. If the path
|
||||||
|
# contains just simple characters, use it. Otherwise (spaces, weird characters),
|
||||||
|
# take no chances and rewrite it.
|
||||||
|
# Note: m4 eats our [], so we need to use [ and ] instead.
|
||||||
|
has_forbidden_chars=`$ECHO "$input_path" | $GREP [^-._/a-zA-Z0-9]`
|
||||||
|
if test "x$has_forbidden_chars" != x; then
|
||||||
|
# Now convert it to mixed DOS-style, short mode (no spaces, and / instead of \)
|
||||||
|
shortmode_path=`$CYGPATH -s -m -a "$input_path"`
|
||||||
|
path_after_shortmode=`$CYGPATH -u "$shortmode_path"`
|
||||||
|
if test "x$path_after_shortmode" != "x$input_to_shortpath"; then
|
||||||
|
# Going to short mode and back again did indeed matter. Since short mode is
|
||||||
|
# case insensitive, let's make it lowercase to improve readability.
|
||||||
|
shortmode_path=`$ECHO "$shortmode_path" | $TR 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
|
||||||
|
# Now convert it back to Unix-stile (cygpath)
|
||||||
|
input_path=`$CYGPATH -u "$shortmode_path"`
|
||||||
|
new_path="$input_path"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
test_cygdrive_prefix=`$ECHO $input_path | $GREP ^/cygdrive/`
|
||||||
|
if test "x$test_cygdrive_prefix" = x; then
|
||||||
|
# As a simple fix, exclude /usr/bin since it's not a real path.
|
||||||
|
if test "x`$ECHO $new_path | $GREP ^/usr/bin/`" = x; then
|
||||||
|
# The path is in a Cygwin special directory (e.g. /home). We need this converted to
|
||||||
|
# a path prefixed by /cygdrive for fixpath to work.
|
||||||
|
new_path="$CYGWIN_ROOT_PATH$input_path"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
if test "x$path" != "x$new_path"; then
|
||||||
|
with_devkit="$new_path"
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: Rewriting with_devkit to \"$new_path\"" >&5
|
||||||
|
$as_echo "$as_me: Rewriting with_devkit to \"$new_path\"" >&6;}
|
||||||
|
fi
|
||||||
|
|
||||||
|
elif test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.msys"; then
|
||||||
|
|
||||||
|
path="$with_devkit"
|
||||||
|
has_colon=`$ECHO $path | $GREP ^.:`
|
||||||
|
new_path="$path"
|
||||||
|
if test "x$has_colon" = x; then
|
||||||
|
# Not in mixed or Windows style, start by that.
|
||||||
|
new_path=`cmd //c echo $path`
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
input_path="$new_path"
|
||||||
|
# Check if we need to convert this using DOS-style short mode. If the path
|
||||||
|
# contains just simple characters, use it. Otherwise (spaces, weird characters),
|
||||||
|
# take no chances and rewrite it.
|
||||||
|
# Note: m4 eats our [], so we need to use [ and ] instead.
|
||||||
|
has_forbidden_chars=`$ECHO "$input_path" | $GREP [^-_/:a-zA-Z0-9]`
|
||||||
|
if test "x$has_forbidden_chars" != x; then
|
||||||
|
# Now convert it to mixed DOS-style, short mode (no spaces, and / instead of \)
|
||||||
|
new_path=`cmd /c "for %A in (\"$input_path\") do @echo %~sA"|$TR \\\\\\\\ / | $TR 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
windows_path="$new_path"
|
||||||
|
if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.cygwin"; then
|
||||||
|
unix_path=`$CYGPATH -u "$windows_path"`
|
||||||
|
new_path="$unix_path"
|
||||||
|
elif test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.msys"; then
|
||||||
|
unix_path=`$ECHO "$windows_path" | $SED -e 's,^\\(.\\):,/\\1,g' -e 's,\\\\,/,g'`
|
||||||
|
new_path="$unix_path"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "x$path" != "x$new_path"; then
|
||||||
|
with_devkit="$new_path"
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: Rewriting with_devkit to \"$new_path\"" >&5
|
||||||
|
$as_echo "$as_me: Rewriting with_devkit to \"$new_path\"" >&6;}
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Save the first 10 bytes of this path to the storage, so fixpath can work.
|
||||||
|
all_fixpath_prefixes=("${all_fixpath_prefixes[@]}" "${new_path:0:10}")
|
||||||
|
|
||||||
|
else
|
||||||
|
# We're on a posix platform. Hooray! :)
|
||||||
|
path="$with_devkit"
|
||||||
|
has_space=`$ECHO "$path" | $GREP " "`
|
||||||
|
if test "x$has_space" != x; then
|
||||||
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: The path of with_devkit, which resolves as \"$path\", is invalid." >&5
|
||||||
|
$as_echo "$as_me: The path of with_devkit, which resolves as \"$path\", is invalid." >&6;}
|
||||||
|
as_fn_error $? "Spaces are not allowed in this path." "$LINENO" 5
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Use eval to expand a potential ~
|
||||||
|
eval path="$path"
|
||||||
|
if test ! -f "$path" && test ! -d "$path"; then
|
||||||
|
as_fn_error $? "The path of with_devkit, which resolves as \"$path\", is not found." "$LINENO" 5
|
||||||
|
fi
|
||||||
|
|
||||||
|
with_devkit="`cd "$path"; $THEPWDCMD -L`"
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
if test "x$TOOLS_DIR" = x; then
|
||||||
|
TOOLS_DIR="$with_devkit/bin"
|
||||||
|
else
|
||||||
|
TOOLS_DIR="$TOOLS_DIR:$with_devkit/bin"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test -d "$with_devkit/$host_alias/libc"; then
|
||||||
|
SYS_ROOT=$with_devkit/$host_alias/libc
|
||||||
|
elif test -d "$with_devkit/$host/sys-root"; then
|
||||||
|
SYS_ROOT=$with_devkit/$host/sys-root
|
||||||
fi
|
fi
|
||||||
TOOLS_DIR=$with_devkit/bin
|
|
||||||
SYS_ROOT=$with_devkit/$host_alias/libc
|
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Setup default logging of stdout and stderr to build.log in the output root.
|
# Setup default logging of stdout and stderr to build.log in the output root.
|
||||||
BUILD_LOG='$(OUTPUT_ROOT)/build.log'
|
BUILD_LOG='$(OUTPUT_ROOT)/build.log'
|
||||||
BUILD_LOG_PREVIOUS='$(OUTPUT_ROOT)/build.log.old'
|
BUILD_LOG_PREVIOUS='$(OUTPUT_ROOT)/build.log.old'
|
||||||
|
@ -10218,6 +10351,14 @@ $as_echo "no" >&6; }
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Check if it's GNU time
|
||||||
|
IS_GNU_TIME=`$TIME --version 2>&1 | $GREP 'GNU time'`
|
||||||
|
if test "x$IS_GNU_TIME" != x; then
|
||||||
|
IS_GNU_TIME=yes
|
||||||
|
else
|
||||||
|
IS_GNU_TIME=no
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
if test "x$OPENJDK_TARGET_OS" = "xwindows"; then
|
if test "x$OPENJDK_TARGET_OS" = "xwindows"; then
|
||||||
|
|
||||||
|
@ -18929,15 +19070,6 @@ $as_echo "$as_me: Downloading build dependency devkit from $with_builddeps_serve
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
if test "x$SYS_ROOT" != "x/" ; then
|
|
||||||
CFLAGS="--sysroot=$SYS_ROOT $CFLAGS"
|
|
||||||
CXXFLAGS="--sysroot=$SYS_ROOT $CXXFLAGS"
|
|
||||||
OBJCFLAGS="--sysroot=$SYS_ROOT $OBJCFLAGS"
|
|
||||||
OBJCXXFLAGS="--sysroot=$SYS_ROOT $OBJCFLAGS"
|
|
||||||
CPPFLAGS="--sysroot=$SYS_ROOT $CPPFLAGS"
|
|
||||||
LDFLAGS="--sysroot=$SYS_ROOT $LDFLAGS"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Store the CFLAGS etal passed to the configure script.
|
# Store the CFLAGS etal passed to the configure script.
|
||||||
ORG_CFLAGS="$CFLAGS"
|
ORG_CFLAGS="$CFLAGS"
|
||||||
ORG_CXXFLAGS="$CXXFLAGS"
|
ORG_CXXFLAGS="$CXXFLAGS"
|
||||||
|
@ -19888,7 +20020,7 @@ $as_echo "$as_me: The result from running with -V was: \"$COMPILER_VERSION_TEST\
|
||||||
elif test "x$OPENJDK_TARGET_OS" = xwindows; then
|
elif test "x$OPENJDK_TARGET_OS" = xwindows; then
|
||||||
# First line typically looks something like:
|
# First line typically looks something like:
|
||||||
# Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 16.00.30319.01 for 80x86
|
# Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 16.00.30319.01 for 80x86
|
||||||
COMPILER_VERSION_TEST=`$COMPILER 2>&1 | $HEAD -n 1`
|
COMPILER_VERSION_TEST=`$COMPILER 2>&1 | $HEAD -n 1 | $TR -d '\r'`
|
||||||
COMPILER_VERSION=`$ECHO $COMPILER_VERSION_TEST | $SED -n "s/^.*Version \([1-9][0-9.]*\) .*/\1/p"`
|
COMPILER_VERSION=`$ECHO $COMPILER_VERSION_TEST | $SED -n "s/^.*Version \([1-9][0-9.]*\) .*/\1/p"`
|
||||||
COMPILER_VENDOR="Microsoft CL.EXE"
|
COMPILER_VENDOR="Microsoft CL.EXE"
|
||||||
COMPILER_CPU_TEST=`$ECHO $COMPILER_VERSION_TEST | $SED -n "s/^.* for \(.*\)$/\1/p"`
|
COMPILER_CPU_TEST=`$ECHO $COMPILER_VERSION_TEST | $SED -n "s/^.* for \(.*\)$/\1/p"`
|
||||||
|
@ -21461,7 +21593,7 @@ $as_echo "$as_me: The result from running with -V was: \"$COMPILER_VERSION_TEST\
|
||||||
elif test "x$OPENJDK_TARGET_OS" = xwindows; then
|
elif test "x$OPENJDK_TARGET_OS" = xwindows; then
|
||||||
# First line typically looks something like:
|
# First line typically looks something like:
|
||||||
# Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 16.00.30319.01 for 80x86
|
# Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 16.00.30319.01 for 80x86
|
||||||
COMPILER_VERSION_TEST=`$COMPILER 2>&1 | $HEAD -n 1`
|
COMPILER_VERSION_TEST=`$COMPILER 2>&1 | $HEAD -n 1 | $TR -d '\r'`
|
||||||
COMPILER_VERSION=`$ECHO $COMPILER_VERSION_TEST | $SED -n "s/^.*Version \([1-9][0-9.]*\) .*/\1/p"`
|
COMPILER_VERSION=`$ECHO $COMPILER_VERSION_TEST | $SED -n "s/^.*Version \([1-9][0-9.]*\) .*/\1/p"`
|
||||||
COMPILER_VENDOR="Microsoft CL.EXE"
|
COMPILER_VENDOR="Microsoft CL.EXE"
|
||||||
COMPILER_CPU_TEST=`$ECHO $COMPILER_VERSION_TEST | $SED -n "s/^.* for \(.*\)$/\1/p"`
|
COMPILER_CPU_TEST=`$ECHO $COMPILER_VERSION_TEST | $SED -n "s/^.* for \(.*\)$/\1/p"`
|
||||||
|
@ -23721,19 +23853,20 @@ $as_echo "$as_me: Rewriting RC to \"$new_complete\"" >&6;}
|
||||||
RC_FLAGS="$RC_FLAGS -d NDEBUG"
|
RC_FLAGS="$RC_FLAGS -d NDEBUG"
|
||||||
|
|
||||||
fi
|
fi
|
||||||
JDK_UPDATE_VERSION_NOTNULL=$JDK_UPDATE_VERSION
|
|
||||||
if test "x$JDK_UPDATE_VERSION" = x; then :
|
|
||||||
|
|
||||||
JDK_UPDATE_VERSION_NOTNULL=0
|
# The version variables used to create RC_FLAGS may be overridden
|
||||||
|
# in a custom configure script, or possibly the command line.
|
||||||
fi
|
# Let those variables be expanded at make time in spec.gmk.
|
||||||
RC_FLAGS="$RC_FLAGS -d \"JDK_BUILD_ID=$FULL_VERSION\""
|
# The \$ are escaped to the shell, and the $(...) variables
|
||||||
RC_FLAGS="$RC_FLAGS -d \"JDK_COMPANY=$COMPANY_NAME\""
|
# are evaluated by make.
|
||||||
RC_FLAGS="$RC_FLAGS -d \"JDK_COMPONENT=$PRODUCT_NAME $JDK_RC_PLATFORM_NAME binary\""
|
RC_FLAGS="$RC_FLAGS \
|
||||||
RC_FLAGS="$RC_FLAGS -d \"JDK_VER=$JDK_MINOR_VERSION.$JDK_MICRO_VERSION.$JDK_UPDATE_VERSION_NOTNULL.$COOKED_BUILD_NUMBER\""
|
-d \"JDK_BUILD_ID=\$(FULL_VERSION)\" \
|
||||||
RC_FLAGS="$RC_FLAGS -d \"JDK_COPYRIGHT=Copyright \xA9 $COPYRIGHT_YEAR\""
|
-d \"JDK_COMPANY=\$(COMPANY_NAME)\" \
|
||||||
RC_FLAGS="$RC_FLAGS -d \"JDK_NAME=$PRODUCT_NAME $JDK_RC_PLATFORM_NAME $JDK_MINOR_VERSION $JDK_UPDATE_META_TAG\""
|
-d \"JDK_COMPONENT=\$(PRODUCT_NAME) \$(JDK_RC_PLATFORM_NAME) binary\" \
|
||||||
RC_FLAGS="$RC_FLAGS -d \"JDK_FVER=$JDK_MINOR_VERSION,$JDK_MICRO_VERSION,$JDK_UPDATE_VERSION_NOTNULL,$COOKED_BUILD_NUMBER\""
|
-d \"JDK_VER=\$(JDK_MINOR_VERSION).\$(JDK_MICRO_VERSION).\$(if \$(JDK_UPDATE_VERSION),\$(JDK_UPDATE_VERSION),0).\$(COOKED_BUILD_NUMBER)\" \
|
||||||
|
-d \"JDK_COPYRIGHT=Copyright \xA9 $COPYRIGHT_YEAR\" \
|
||||||
|
-d \"JDK_NAME=\$(PRODUCT_NAME) \$(JDK_RC_PLATFORM_NAME) \$(JDK_MINOR_VERSION) \$(JDK_UPDATE_META_TAG)\" \
|
||||||
|
-d \"JDK_FVER=\$(JDK_MINOR_VERSION),\$(JDK_MICRO_VERSION),\$(if \$(JDK_UPDATE_VERSION),\$(JDK_UPDATE_VERSION),0),\$(COOKED_BUILD_NUMBER)\""
|
||||||
|
|
||||||
# lib.exe is used to create static libraries.
|
# lib.exe is used to create static libraries.
|
||||||
# Extract the first word of "lib", so it can be a program name with args.
|
# Extract the first word of "lib", so it can be a program name with args.
|
||||||
|
@ -29144,7 +29277,6 @@ CXX_FLAG_DEPS="-MMD -MF"
|
||||||
|
|
||||||
case $COMPILER_TYPE in
|
case $COMPILER_TYPE in
|
||||||
CC )
|
CC )
|
||||||
D_FLAG="-g"
|
|
||||||
case $COMPILER_NAME in
|
case $COMPILER_NAME in
|
||||||
gcc )
|
gcc )
|
||||||
case $OPENJDK_TARGET_OS in
|
case $OPENJDK_TARGET_OS in
|
||||||
|
@ -29159,17 +29291,17 @@ case $COMPILER_TYPE in
|
||||||
C_O_FLAG_HI="-O3"
|
C_O_FLAG_HI="-O3"
|
||||||
C_O_FLAG_NORM="-O2"
|
C_O_FLAG_NORM="-O2"
|
||||||
C_O_FLAG_NONE="-O0"
|
C_O_FLAG_NONE="-O0"
|
||||||
CFLAGS_DEBUG_SYMBOLS="-g"
|
|
||||||
CXXFLAGS_DEBUG_SYMBOLS="-g"
|
|
||||||
if test "x$OPENJDK_TARGET_CPU_BITS" = "x64" && test "x$DEBUG_LEVEL" = "xfastdebug"; then
|
|
||||||
CFLAGS_DEBUG_SYMBOLS="-g1"
|
|
||||||
CXXFLAGS_DEBUG_SYMBOLS="-g1"
|
|
||||||
fi
|
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
CXX_O_FLAG_HI="$C_O_FLAG_HI"
|
CXX_O_FLAG_HI="$C_O_FLAG_HI"
|
||||||
CXX_O_FLAG_NORM="$C_O_FLAG_NORM"
|
CXX_O_FLAG_NORM="$C_O_FLAG_NORM"
|
||||||
CXX_O_FLAG_NONE="$C_O_FLAG_NONE"
|
CXX_O_FLAG_NONE="$C_O_FLAG_NONE"
|
||||||
|
CFLAGS_DEBUG_SYMBOLS="-g"
|
||||||
|
CXXFLAGS_DEBUG_SYMBOLS="-g"
|
||||||
|
if test "x$OPENJDK_TARGET_CPU_BITS" = "x64" && test "x$DEBUG_LEVEL" = "xfastdebug"; then
|
||||||
|
CFLAGS_DEBUG_SYMBOLS="-g1"
|
||||||
|
CXXFLAGS_DEBUG_SYMBOLS="-g1"
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
ossc )
|
ossc )
|
||||||
#
|
#
|
||||||
|
@ -29250,7 +29382,6 @@ case $COMPILER_TYPE in
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
CL )
|
CL )
|
||||||
D_FLAG=
|
|
||||||
C_O_FLAG_HIGHEST="-O2"
|
C_O_FLAG_HIGHEST="-O2"
|
||||||
C_O_FLAG_HI="-O1"
|
C_O_FLAG_HI="-O1"
|
||||||
C_O_FLAG_NORM="-O1"
|
C_O_FLAG_NORM="-O1"
|
||||||
|
@ -29389,6 +29520,28 @@ esac
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
|
# Adjust flags according to debug level.
|
||||||
|
case $DEBUG_LEVEL in
|
||||||
|
fastdebug )
|
||||||
|
CFLAGS_JDK="$CFLAGS_JDK $CFLAGS_DEBUG_SYMBOLS"
|
||||||
|
CXXFLAGS_JDK="$CXXFLAGS_JDK $CXXFLAGS_DEBUG_SYMBOLS"
|
||||||
|
C_O_FLAG_HI="$C_O_FLAG_NORM"
|
||||||
|
C_O_FLAG_NORM="$C_O_FLAG_NORM"
|
||||||
|
CXX_O_FLAG_HI="$CXX_O_FLAG_NORM"
|
||||||
|
CXX_O_FLAG_NORM="$CXX_O_FLAG_NORM"
|
||||||
|
JAVAC_FLAGS="$JAVAC_FLAGS -g"
|
||||||
|
;;
|
||||||
|
slowdebug )
|
||||||
|
CFLAGS_JDK="$CFLAGS_JDK $CFLAGS_DEBUG_SYMBOLS"
|
||||||
|
CXXFLAGS_JDK="$CXXFLAGS_JDK $CXXFLAGS_DEBUG_SYMBOLS"
|
||||||
|
C_O_FLAG_HI="$C_O_FLAG_NONE"
|
||||||
|
C_O_FLAG_NORM="$C_O_FLAG_NONE"
|
||||||
|
CXX_O_FLAG_HI="$CXX_O_FLAG_NONE"
|
||||||
|
CXX_O_FLAG_NORM="$CXX_O_FLAG_NONE"
|
||||||
|
JAVAC_FLAGS="$JAVAC_FLAGS -g"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
CCXXFLAGS_JDK="$CCXXFLAGS_JDK $ADD_LP64"
|
CCXXFLAGS_JDK="$CCXXFLAGS_JDK $ADD_LP64"
|
||||||
|
|
||||||
# The package path is used only on macosx?
|
# The package path is used only on macosx?
|
||||||
|
@ -29532,23 +29685,6 @@ else
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Adjust flags according to debug level.
|
|
||||||
case $DEBUG_LEVEL in
|
|
||||||
fastdebug )
|
|
||||||
CFLAGS="$CFLAGS $D_FLAG"
|
|
||||||
JAVAC_FLAGS="$JAVAC_FLAGS -g"
|
|
||||||
;;
|
|
||||||
slowdebug )
|
|
||||||
CFLAGS="$CFLAGS $D_FLAG"
|
|
||||||
C_O_FLAG_HI="$C_O_FLAG_NONE"
|
|
||||||
C_O_FLAG_NORM="$C_O_FLAG_NONE"
|
|
||||||
CXX_O_FLAG_HI="$CXX_O_FLAG_NONE"
|
|
||||||
CXX_O_FLAG_NORM="$CXX_O_FLAG_NONE"
|
|
||||||
JAVAC_FLAGS="$JAVAC_FLAGS -g"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -29907,11 +30043,17 @@ if test "x$SYS_ROOT" != "x/"; then
|
||||||
if test "x$x_includes" = xNONE; then
|
if test "x$x_includes" = xNONE; then
|
||||||
if test -f "$SYS_ROOT/usr/X11R6/include/X11/Xlib.h"; then
|
if test -f "$SYS_ROOT/usr/X11R6/include/X11/Xlib.h"; then
|
||||||
x_includes="$SYS_ROOT/usr/X11R6/include"
|
x_includes="$SYS_ROOT/usr/X11R6/include"
|
||||||
|
elif test -f "$SYS_ROOT/usr/include/X11/Xlib.h"; then
|
||||||
|
x_includes="$SYS_ROOT/usr/include"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
if test "x$x_libraries" = xNONE; then
|
if test "x$x_libraries" = xNONE; then
|
||||||
if test -f "$SYS_ROOT/usr/X11R6/lib/libX11.so"; then
|
if test -f "$SYS_ROOT/usr/X11R6/lib/libX11.so"; then
|
||||||
x_libraries="$SYS_ROOT/usr/X11R6/lib"
|
x_libraries="$SYS_ROOT/usr/X11R6/lib"
|
||||||
|
elif test "$SYS_ROOT/usr/lib64/libX11.so" && test "x$OPENJDK_TARGET_CPU_BITS" = x64; then
|
||||||
|
x_libraries="$SYS_ROOT/usr/lib64"
|
||||||
|
elif test -f "$SYS_ROOT/usr/lib/libX11.so"; then
|
||||||
|
x_libraries="$SYS_ROOT/usr/lib"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
@ -30642,8 +30784,7 @@ fi
|
||||||
if test "x$OPENJDK_TARGET_OS" = xlinux; then
|
if test "x$OPENJDK_TARGET_OS" = xlinux; then
|
||||||
if test -d "$SYS_ROOT/usr/X11R6"; then
|
if test -d "$SYS_ROOT/usr/X11R6"; then
|
||||||
OPENWIN_HOME="$SYS_ROOT/usr/X11R6"
|
OPENWIN_HOME="$SYS_ROOT/usr/X11R6"
|
||||||
fi
|
elif test -d "$SYS_ROOT/usr/include/X11"; then
|
||||||
if test -d "$SYS_ROOT/usr/include/X11"; then
|
|
||||||
OPENWIN_HOME="$SYS_ROOT/usr"
|
OPENWIN_HOME="$SYS_ROOT/usr"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
@ -31536,12 +31677,12 @@ fi
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for freetype in some standard locations" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for freetype in some standard locations" >&5
|
||||||
$as_echo_n "checking for freetype in some standard locations... " >&6; }
|
$as_echo_n "checking for freetype in some standard locations... " >&6; }
|
||||||
|
|
||||||
if test -s /usr/X11/include/ft2build.h && test -d /usr/X11/include/freetype2/freetype; then
|
if test -s $SYS_ROOT/usr/X11/include/ft2build.h && test -d $SYS_ROOT/usr/X11/include/freetype2/freetype; then
|
||||||
DEFAULT_FREETYPE_CFLAGS="-I/usr/X11/include/freetype2 -I/usr/X11/include"
|
DEFAULT_FREETYPE_CFLAGS="-I$SYS_ROOT/usr/X11/include/freetype2 -I$SYS_ROOT/usr/X11/include"
|
||||||
DEFAULT_FREETYPE_LIBS="-L/usr/X11/lib -lfreetype"
|
DEFAULT_FREETYPE_LIBS="-L$SYS_ROOT/usr/X11/lib -lfreetype"
|
||||||
fi
|
fi
|
||||||
if test -s /usr/include/ft2build.h && test -d /usr/include/freetype2/freetype; then
|
if test -s $SYS_ROOT/usr/include/ft2build.h && test -d $SYS_ROOT/usr/include/freetype2/freetype; then
|
||||||
DEFAULT_FREETYPE_CFLAGS="-I/usr/include/freetype2"
|
DEFAULT_FREETYPE_CFLAGS="-I$SYS_ROOT/usr/include/freetype2"
|
||||||
DEFAULT_FREETYPE_LIBS="-lfreetype"
|
DEFAULT_FREETYPE_LIBS="-lfreetype"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -33217,6 +33358,10 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "x$ENABLE_CCACHE" = xyes; then
|
if test "x$ENABLE_CCACHE" = xyes; then
|
||||||
|
OLD_PATH="$PATH"
|
||||||
|
if test "x$TOOLS_DIR" != x; then
|
||||||
|
PATH=$TOOLS_DIR:$PATH
|
||||||
|
fi
|
||||||
# Extract the first word of "ccache", so it can be a program name with args.
|
# Extract the first word of "ccache", so it can be a program name with args.
|
||||||
set dummy ccache; ac_word=$2
|
set dummy ccache; ac_word=$2
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
||||||
|
@ -33257,6 +33402,7 @@ $as_echo "no" >&6; }
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
PATH="$OLD_PATH"
|
||||||
else
|
else
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ccache" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ccache" >&5
|
||||||
$as_echo_n "checking for ccache... " >&6; }
|
$as_echo_n "checking for ccache... " >&6; }
|
||||||
|
|
|
@ -123,11 +123,17 @@ if test "x$SYS_ROOT" != "x/"; then
|
||||||
if test "x$x_includes" = xNONE; then
|
if test "x$x_includes" = xNONE; then
|
||||||
if test -f "$SYS_ROOT/usr/X11R6/include/X11/Xlib.h"; then
|
if test -f "$SYS_ROOT/usr/X11R6/include/X11/Xlib.h"; then
|
||||||
x_includes="$SYS_ROOT/usr/X11R6/include"
|
x_includes="$SYS_ROOT/usr/X11R6/include"
|
||||||
|
elif test -f "$SYS_ROOT/usr/include/X11/Xlib.h"; then
|
||||||
|
x_includes="$SYS_ROOT/usr/include"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
if test "x$x_libraries" = xNONE; then
|
if test "x$x_libraries" = xNONE; then
|
||||||
if test -f "$SYS_ROOT/usr/X11R6/lib/libX11.so"; then
|
if test -f "$SYS_ROOT/usr/X11R6/lib/libX11.so"; then
|
||||||
x_libraries="$SYS_ROOT/usr/X11R6/lib"
|
x_libraries="$SYS_ROOT/usr/X11R6/lib"
|
||||||
|
elif test "$SYS_ROOT/usr/lib64/libX11.so" && test "x$OPENJDK_TARGET_CPU_BITS" = x64; then
|
||||||
|
x_libraries="$SYS_ROOT/usr/lib64"
|
||||||
|
elif test -f "$SYS_ROOT/usr/lib/libX11.so"; then
|
||||||
|
x_libraries="$SYS_ROOT/usr/lib"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
@ -153,8 +159,7 @@ fi
|
||||||
if test "x$OPENJDK_TARGET_OS" = xlinux; then
|
if test "x$OPENJDK_TARGET_OS" = xlinux; then
|
||||||
if test -d "$SYS_ROOT/usr/X11R6"; then
|
if test -d "$SYS_ROOT/usr/X11R6"; then
|
||||||
OPENWIN_HOME="$SYS_ROOT/usr/X11R6"
|
OPENWIN_HOME="$SYS_ROOT/usr/X11R6"
|
||||||
fi
|
elif test -d "$SYS_ROOT/usr/include/X11"; then
|
||||||
if test -d "$SYS_ROOT/usr/include/X11"; then
|
|
||||||
OPENWIN_HOME="$SYS_ROOT/usr"
|
OPENWIN_HOME="$SYS_ROOT/usr"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
@ -359,12 +364,12 @@ else
|
||||||
if test "x$FREETYPE2_FOUND" = xno; then
|
if test "x$FREETYPE2_FOUND" = xno; then
|
||||||
AC_MSG_CHECKING([for freetype in some standard locations])
|
AC_MSG_CHECKING([for freetype in some standard locations])
|
||||||
|
|
||||||
if test -s /usr/X11/include/ft2build.h && test -d /usr/X11/include/freetype2/freetype; then
|
if test -s $SYS_ROOT/usr/X11/include/ft2build.h && test -d $SYS_ROOT/usr/X11/include/freetype2/freetype; then
|
||||||
DEFAULT_FREETYPE_CFLAGS="-I/usr/X11/include/freetype2 -I/usr/X11/include"
|
DEFAULT_FREETYPE_CFLAGS="-I$SYS_ROOT/usr/X11/include/freetype2 -I$SYS_ROOT/usr/X11/include"
|
||||||
DEFAULT_FREETYPE_LIBS="-L/usr/X11/lib -lfreetype"
|
DEFAULT_FREETYPE_LIBS="-L$SYS_ROOT/usr/X11/lib -lfreetype"
|
||||||
fi
|
fi
|
||||||
if test -s /usr/include/ft2build.h && test -d /usr/include/freetype2/freetype; then
|
if test -s $SYS_ROOT/usr/include/ft2build.h && test -d $SYS_ROOT/usr/include/freetype2/freetype; then
|
||||||
DEFAULT_FREETYPE_CFLAGS="-I/usr/include/freetype2"
|
DEFAULT_FREETYPE_CFLAGS="-I$SYS_ROOT/usr/include/freetype2"
|
||||||
DEFAULT_FREETYPE_LIBS="-lfreetype"
|
DEFAULT_FREETYPE_LIBS="-lfreetype"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -275,6 +275,8 @@ FREETYPE2_LIBS:=@FREETYPE2_LIBS@
|
||||||
FREETYPE2_CFLAGS:=@FREETYPE2_CFLAGS@
|
FREETYPE2_CFLAGS:=@FREETYPE2_CFLAGS@
|
||||||
USING_SYSTEM_FT_LIB=@USING_SYSTEM_FT_LIB@
|
USING_SYSTEM_FT_LIB=@USING_SYSTEM_FT_LIB@
|
||||||
CUPS_CFLAGS:=@CUPS_CFLAGS@
|
CUPS_CFLAGS:=@CUPS_CFLAGS@
|
||||||
|
ALSA_LIBS:=@ALSA_LIBS@
|
||||||
|
ALSA_CFLAGS:=@ALSA_CFLAGS@
|
||||||
|
|
||||||
PACKAGE_PATH=@PACKAGE_PATH@
|
PACKAGE_PATH=@PACKAGE_PATH@
|
||||||
|
|
||||||
|
@ -508,6 +510,7 @@ TAR:=@TAR@
|
||||||
TAIL:=@TAIL@
|
TAIL:=@TAIL@
|
||||||
TEE:=@TEE@
|
TEE:=@TEE@
|
||||||
TIME:=@TIME@
|
TIME:=@TIME@
|
||||||
|
IS_GNU_TIME:=@IS_GNU_TIME@
|
||||||
TR:=@TR@
|
TR:=@TR@
|
||||||
TOUCH:=@TOUCH@
|
TOUCH:=@TOUCH@
|
||||||
UNIQ:=@UNIQ@
|
UNIQ:=@UNIQ@
|
||||||
|
|
|
@ -47,7 +47,7 @@ AC_DEFUN([TOOLCHAIN_CHECK_COMPILER_VERSION],
|
||||||
elif test "x$OPENJDK_TARGET_OS" = xwindows; then
|
elif test "x$OPENJDK_TARGET_OS" = xwindows; then
|
||||||
# First line typically looks something like:
|
# First line typically looks something like:
|
||||||
# Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 16.00.30319.01 for 80x86
|
# Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 16.00.30319.01 for 80x86
|
||||||
COMPILER_VERSION_TEST=`$COMPILER 2>&1 | $HEAD -n 1`
|
COMPILER_VERSION_TEST=`$COMPILER 2>&1 | $HEAD -n 1 | $TR -d '\r'`
|
||||||
COMPILER_VERSION=`$ECHO $COMPILER_VERSION_TEST | $SED -n "s/^.*Version \(@<:@1-9@:>@@<:@0-9.@:>@*\) .*/\1/p"`
|
COMPILER_VERSION=`$ECHO $COMPILER_VERSION_TEST | $SED -n "s/^.*Version \(@<:@1-9@:>@@<:@0-9.@:>@*\) .*/\1/p"`
|
||||||
COMPILER_VENDOR="Microsoft CL.EXE"
|
COMPILER_VENDOR="Microsoft CL.EXE"
|
||||||
COMPILER_CPU_TEST=`$ECHO $COMPILER_VERSION_TEST | $SED -n "s/^.* for \(.*\)$/\1/p"`
|
COMPILER_CPU_TEST=`$ECHO $COMPILER_VERSION_TEST | $SED -n "s/^.* for \(.*\)$/\1/p"`
|
||||||
|
@ -226,15 +226,6 @@ BDEPS_CHECK_MODULE(DEVKIT, devkit, xxx,
|
||||||
],
|
],
|
||||||
[])
|
[])
|
||||||
|
|
||||||
if test "x$SYS_ROOT" != "x/" ; then
|
|
||||||
CFLAGS="--sysroot=$SYS_ROOT $CFLAGS"
|
|
||||||
CXXFLAGS="--sysroot=$SYS_ROOT $CXXFLAGS"
|
|
||||||
OBJCFLAGS="--sysroot=$SYS_ROOT $OBJCFLAGS"
|
|
||||||
OBJCXXFLAGS="--sysroot=$SYS_ROOT $OBJCFLAGS"
|
|
||||||
CPPFLAGS="--sysroot=$SYS_ROOT $CPPFLAGS"
|
|
||||||
LDFLAGS="--sysroot=$SYS_ROOT $LDFLAGS"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Store the CFLAGS etal passed to the configure script.
|
# Store the CFLAGS etal passed to the configure script.
|
||||||
ORG_CFLAGS="$CFLAGS"
|
ORG_CFLAGS="$CFLAGS"
|
||||||
ORG_CXXFLAGS="$CXXFLAGS"
|
ORG_CXXFLAGS="$CXXFLAGS"
|
||||||
|
@ -378,17 +369,20 @@ AS_IF([test "x$OPENJDK_TARGET_OS" = xwindows], [
|
||||||
AS_IF([test "x$VARIANT" = xOPT], [
|
AS_IF([test "x$VARIANT" = xOPT], [
|
||||||
RC_FLAGS="$RC_FLAGS -d NDEBUG"
|
RC_FLAGS="$RC_FLAGS -d NDEBUG"
|
||||||
])
|
])
|
||||||
JDK_UPDATE_VERSION_NOTNULL=$JDK_UPDATE_VERSION
|
|
||||||
AS_IF([test "x$JDK_UPDATE_VERSION" = x], [
|
# The version variables used to create RC_FLAGS may be overridden
|
||||||
JDK_UPDATE_VERSION_NOTNULL=0
|
# in a custom configure script, or possibly the command line.
|
||||||
])
|
# Let those variables be expanded at make time in spec.gmk.
|
||||||
RC_FLAGS="$RC_FLAGS -d \"JDK_BUILD_ID=$FULL_VERSION\""
|
# The \$ are escaped to the shell, and the $(...) variables
|
||||||
RC_FLAGS="$RC_FLAGS -d \"JDK_COMPANY=$COMPANY_NAME\""
|
# are evaluated by make.
|
||||||
RC_FLAGS="$RC_FLAGS -d \"JDK_COMPONENT=$PRODUCT_NAME $JDK_RC_PLATFORM_NAME binary\""
|
RC_FLAGS="$RC_FLAGS \
|
||||||
RC_FLAGS="$RC_FLAGS -d \"JDK_VER=$JDK_MINOR_VERSION.$JDK_MICRO_VERSION.$JDK_UPDATE_VERSION_NOTNULL.$COOKED_BUILD_NUMBER\""
|
-d \"JDK_BUILD_ID=\$(FULL_VERSION)\" \
|
||||||
RC_FLAGS="$RC_FLAGS -d \"JDK_COPYRIGHT=Copyright \xA9 $COPYRIGHT_YEAR\""
|
-d \"JDK_COMPANY=\$(COMPANY_NAME)\" \
|
||||||
RC_FLAGS="$RC_FLAGS -d \"JDK_NAME=$PRODUCT_NAME $JDK_RC_PLATFORM_NAME $JDK_MINOR_VERSION $JDK_UPDATE_META_TAG\""
|
-d \"JDK_COMPONENT=\$(PRODUCT_NAME) \$(JDK_RC_PLATFORM_NAME) binary\" \
|
||||||
RC_FLAGS="$RC_FLAGS -d \"JDK_FVER=$JDK_MINOR_VERSION,$JDK_MICRO_VERSION,$JDK_UPDATE_VERSION_NOTNULL,$COOKED_BUILD_NUMBER\""
|
-d \"JDK_VER=\$(JDK_MINOR_VERSION).\$(JDK_MICRO_VERSION).\$(if \$(JDK_UPDATE_VERSION),\$(JDK_UPDATE_VERSION),0).\$(COOKED_BUILD_NUMBER)\" \
|
||||||
|
-d \"JDK_COPYRIGHT=Copyright \xA9 $COPYRIGHT_YEAR\" \
|
||||||
|
-d \"JDK_NAME=\$(PRODUCT_NAME) \$(JDK_RC_PLATFORM_NAME) \$(JDK_MINOR_VERSION) \$(JDK_UPDATE_META_TAG)\" \
|
||||||
|
-d \"JDK_FVER=\$(JDK_MINOR_VERSION),\$(JDK_MICRO_VERSION),\$(if \$(JDK_UPDATE_VERSION),\$(JDK_UPDATE_VERSION),0),\$(COOKED_BUILD_NUMBER)\""
|
||||||
|
|
||||||
# lib.exe is used to create static libraries.
|
# lib.exe is used to create static libraries.
|
||||||
AC_CHECK_PROG([WINAR], [lib],[lib],,,)
|
AC_CHECK_PROG([WINAR], [lib],[lib],,,)
|
||||||
|
@ -629,7 +623,6 @@ CXX_FLAG_DEPS="-MMD -MF"
|
||||||
|
|
||||||
case $COMPILER_TYPE in
|
case $COMPILER_TYPE in
|
||||||
CC )
|
CC )
|
||||||
D_FLAG="-g"
|
|
||||||
case $COMPILER_NAME in
|
case $COMPILER_NAME in
|
||||||
gcc )
|
gcc )
|
||||||
case $OPENJDK_TARGET_OS in
|
case $OPENJDK_TARGET_OS in
|
||||||
|
@ -644,17 +637,17 @@ case $COMPILER_TYPE in
|
||||||
C_O_FLAG_HI="-O3"
|
C_O_FLAG_HI="-O3"
|
||||||
C_O_FLAG_NORM="-O2"
|
C_O_FLAG_NORM="-O2"
|
||||||
C_O_FLAG_NONE="-O0"
|
C_O_FLAG_NONE="-O0"
|
||||||
CFLAGS_DEBUG_SYMBOLS="-g"
|
|
||||||
CXXFLAGS_DEBUG_SYMBOLS="-g"
|
|
||||||
if test "x$OPENJDK_TARGET_CPU_BITS" = "x64" && test "x$DEBUG_LEVEL" = "xfastdebug"; then
|
|
||||||
CFLAGS_DEBUG_SYMBOLS="-g1"
|
|
||||||
CXXFLAGS_DEBUG_SYMBOLS="-g1"
|
|
||||||
fi
|
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
CXX_O_FLAG_HI="$C_O_FLAG_HI"
|
CXX_O_FLAG_HI="$C_O_FLAG_HI"
|
||||||
CXX_O_FLAG_NORM="$C_O_FLAG_NORM"
|
CXX_O_FLAG_NORM="$C_O_FLAG_NORM"
|
||||||
CXX_O_FLAG_NONE="$C_O_FLAG_NONE"
|
CXX_O_FLAG_NONE="$C_O_FLAG_NONE"
|
||||||
|
CFLAGS_DEBUG_SYMBOLS="-g"
|
||||||
|
CXXFLAGS_DEBUG_SYMBOLS="-g"
|
||||||
|
if test "x$OPENJDK_TARGET_CPU_BITS" = "x64" && test "x$DEBUG_LEVEL" = "xfastdebug"; then
|
||||||
|
CFLAGS_DEBUG_SYMBOLS="-g1"
|
||||||
|
CXXFLAGS_DEBUG_SYMBOLS="-g1"
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
ossc )
|
ossc )
|
||||||
#
|
#
|
||||||
|
@ -735,7 +728,6 @@ case $COMPILER_TYPE in
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
CL )
|
CL )
|
||||||
D_FLAG=
|
|
||||||
C_O_FLAG_HIGHEST="-O2"
|
C_O_FLAG_HIGHEST="-O2"
|
||||||
C_O_FLAG_HI="-O1"
|
C_O_FLAG_HI="-O1"
|
||||||
C_O_FLAG_NORM="-O1"
|
C_O_FLAG_NORM="-O1"
|
||||||
|
@ -861,6 +853,28 @@ esac
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
|
# Adjust flags according to debug level.
|
||||||
|
case $DEBUG_LEVEL in
|
||||||
|
fastdebug )
|
||||||
|
CFLAGS_JDK="$CFLAGS_JDK $CFLAGS_DEBUG_SYMBOLS"
|
||||||
|
CXXFLAGS_JDK="$CXXFLAGS_JDK $CXXFLAGS_DEBUG_SYMBOLS"
|
||||||
|
C_O_FLAG_HI="$C_O_FLAG_NORM"
|
||||||
|
C_O_FLAG_NORM="$C_O_FLAG_NORM"
|
||||||
|
CXX_O_FLAG_HI="$CXX_O_FLAG_NORM"
|
||||||
|
CXX_O_FLAG_NORM="$CXX_O_FLAG_NORM"
|
||||||
|
JAVAC_FLAGS="$JAVAC_FLAGS -g"
|
||||||
|
;;
|
||||||
|
slowdebug )
|
||||||
|
CFLAGS_JDK="$CFLAGS_JDK $CFLAGS_DEBUG_SYMBOLS"
|
||||||
|
CXXFLAGS_JDK="$CXXFLAGS_JDK $CXXFLAGS_DEBUG_SYMBOLS"
|
||||||
|
C_O_FLAG_HI="$C_O_FLAG_NONE"
|
||||||
|
C_O_FLAG_NORM="$C_O_FLAG_NONE"
|
||||||
|
CXX_O_FLAG_HI="$CXX_O_FLAG_NONE"
|
||||||
|
CXX_O_FLAG_NORM="$CXX_O_FLAG_NONE"
|
||||||
|
JAVAC_FLAGS="$JAVAC_FLAGS -g"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
CCXXFLAGS_JDK="$CCXXFLAGS_JDK $ADD_LP64"
|
CCXXFLAGS_JDK="$CCXXFLAGS_JDK $ADD_LP64"
|
||||||
|
|
||||||
# The package path is used only on macosx?
|
# The package path is used only on macosx?
|
||||||
|
@ -1004,23 +1018,6 @@ else
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Adjust flags according to debug level.
|
|
||||||
case $DEBUG_LEVEL in
|
|
||||||
fastdebug )
|
|
||||||
CFLAGS="$CFLAGS $D_FLAG"
|
|
||||||
JAVAC_FLAGS="$JAVAC_FLAGS -g"
|
|
||||||
;;
|
|
||||||
slowdebug )
|
|
||||||
CFLAGS="$CFLAGS $D_FLAG"
|
|
||||||
C_O_FLAG_HI="$C_O_FLAG_NONE"
|
|
||||||
C_O_FLAG_NORM="$C_O_FLAG_NONE"
|
|
||||||
CXX_O_FLAG_HI="$CXX_O_FLAG_NONE"
|
|
||||||
CXX_O_FLAG_NORM="$CXX_O_FLAG_NONE"
|
|
||||||
JAVAC_FLAGS="$JAVAC_FLAGS -g"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
|
|
||||||
AC_SUBST(CFLAGS_JDKLIB)
|
AC_SUBST(CFLAGS_JDKLIB)
|
||||||
AC_SUBST(CFLAGS_JDKEXE)
|
AC_SUBST(CFLAGS_JDKEXE)
|
||||||
|
|
||||||
|
|
|
@ -155,7 +155,7 @@ define SetupArchive
|
||||||
# lines, but not here for use in make dependencies.
|
# lines, but not here for use in make dependencies.
|
||||||
$1_DEPS+=$$(subst \,,$$(foreach src,$$($1_SRCS),$$(addprefix $$(src)/,$$($1_EXTRA_FILES))))
|
$1_DEPS+=$$(subst \,,$$(foreach src,$$($1_SRCS),$$(addprefix $$(src)/,$$($1_EXTRA_FILES))))
|
||||||
ifeq (,$$($1_SKIP_METAINF))
|
ifeq (,$$($1_SKIP_METAINF))
|
||||||
$1_DEPS+=$$(call CacheFind $$(wildcard $$(addsuffix /META-INF,$$($1_SRCS))))
|
$1_DEPS+=$$(call CacheFind,$$(wildcard $$(addsuffix /META-INF,$$($1_SRCS))))
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -255,12 +255,21 @@ define SetupZipArchive
|
||||||
$(call LogSetupMacroEntry,SetupZipArchive($1),$2,$3,$4,$5,$6,$7,$8,$9,$(10),$(11),$(12),$(13),$(14),$(15))
|
$(call LogSetupMacroEntry,SetupZipArchive($1),$2,$3,$4,$5,$6,$7,$8,$9,$(10),$(11),$(12),$(13),$(14),$(15))
|
||||||
$(if $(16),$(error Internal makefile error: Too many arguments to SetupZipArchive, please update JavaCompilation.gmk))
|
$(if $(16),$(error Internal makefile error: Too many arguments to SetupZipArchive, please update JavaCompilation.gmk))
|
||||||
|
|
||||||
|
# To avoid running find over too large sets of files, which causes make to crash
|
||||||
|
# on some configurations (cygwin), use INCLUDES and INCLUDE_FILES to build a set
|
||||||
|
# of directories to run find in, if available.
|
||||||
|
ifneq ($$($1_INCLUDES)$$($1_INCLUDE_FILES),)
|
||||||
|
$1_FIND_LIST := $$(wildcard $$(foreach i,$$($1_SRC),\
|
||||||
|
$$(addprefix $$i/,$$($1_INCLUDES) $$($1_INCLUDE_FILES))))
|
||||||
|
else
|
||||||
|
$1_FIND_LIST := $$($1_SRC)
|
||||||
|
endif
|
||||||
|
|
||||||
# Find all files in the source tree.
|
# Find all files in the source tree.
|
||||||
$1_ALL_SRCS := $$(call not-containing,_the.,\
|
$1_ALL_SRCS := $$(call not-containing,_the.,\
|
||||||
$$(filter $$(addprefix %,$$($1_SUFFIXES)),$$(call CacheFind $$($1_SRC))))
|
$$(filter $$(addprefix %,$$($1_SUFFIXES)),$$(call CacheFind,$$($1_FIND_LIST))))
|
||||||
|
|
||||||
ifneq ($$($1_INCLUDES),)
|
ifneq ($$($1_INCLUDES),)
|
||||||
$1_SRC_INCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_INCLUDES))))
|
|
||||||
ifneq ($$($1_SUFFIXES),)
|
ifneq ($$($1_SUFFIXES),)
|
||||||
$1_ZIP_INCLUDES := $$(foreach s,$$($1_SUFFIXES),\
|
$1_ZIP_INCLUDES := $$(foreach s,$$($1_SUFFIXES),\
|
||||||
$$(addprefix -i$(SPACE)$(DQUOTE),$$(addsuffix /*$$s$(DQUOTE),$$($1_INCLUDES))))
|
$$(addprefix -i$(SPACE)$(DQUOTE),$$(addsuffix /*$$s$(DQUOTE),$$($1_INCLUDES))))
|
||||||
|
@ -269,12 +278,8 @@ define SetupZipArchive
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
ifneq ($$($1_INCLUDE_FILES),)
|
ifneq ($$($1_INCLUDE_FILES),)
|
||||||
$1_SRC_INCLUDES += $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$($1_INCLUDE_FILES)))
|
|
||||||
$1_ZIP_INCLUDES += $$(addprefix -i$(SPACE),$$($1_INCLUDE_FILES))
|
$1_ZIP_INCLUDES += $$(addprefix -i$(SPACE),$$($1_INCLUDE_FILES))
|
||||||
endif
|
endif
|
||||||
ifneq ($$($1_SRC_INCLUDES),)
|
|
||||||
$1_ALL_SRCS := $$(filter $$($1_SRC_INCLUDES),$$($1_ALL_SRCS))
|
|
||||||
endif
|
|
||||||
ifneq ($$($1_EXCLUDES),)
|
ifneq ($$($1_EXCLUDES),)
|
||||||
$1_SRC_EXCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_EXCLUDES))))
|
$1_SRC_EXCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_EXCLUDES))))
|
||||||
$1_ZIP_EXCLUDES := $$(addprefix -x$(SPACE)$(DQUOTE),$$(addsuffix /*$(DQUOTE),$$($1_EXCLUDES)))
|
$1_ZIP_EXCLUDES := $$(addprefix -x$(SPACE)$(DQUOTE),$$(addsuffix /*$(DQUOTE),$$($1_EXCLUDES)))
|
||||||
|
|
|
@ -183,7 +183,7 @@ bootcycle-images-only: start-make
|
||||||
test: images test-only
|
test: images test-only
|
||||||
test-only: start-make
|
test-only: start-make
|
||||||
@$(call TargetEnter)
|
@$(call TargetEnter)
|
||||||
@($(CD) $(SRC_ROOT)/test && $(BUILD_LOG_WRAPPER) $(MAKE) -j1 -k JT_HOME=$(JT_HOME) MAKEFLAGS= PRODUCT_HOME=$(JDK_IMAGE_DIR) JPRT_JAVA_HOME=$(JDK_IMAGE_DIR) ALT_OUTPUTDIR=$(OUTPUT_ROOT) $(TEST)) || true
|
@($(CD) $(SRC_ROOT)/test && $(BUILD_LOG_WRAPPER) $(MAKE) -j1 -k MAKEFLAGS= JT_HOME=$(JT_HOME) PRODUCT_HOME=$(JDK_IMAGE_DIR) JPRT_JAVA_HOME=$(JDK_IMAGE_DIR) ALT_OUTPUTDIR=$(OUTPUT_ROOT) CONCURRENCY=$(JOBS) $(TEST)) || true
|
||||||
@$(call TargetExit)
|
@$(call TargetExit)
|
||||||
|
|
||||||
# Stores the tips for each repository. This file is be used when constructing the jdk image and can be
|
# Stores the tips for each repository. This file is be used when constructing the jdk image and can be
|
||||||
|
@ -192,7 +192,7 @@ source-tips: $(OUTPUT_ROOT)/source_tips
|
||||||
$(OUTPUT_ROOT)/source_tips: FRC
|
$(OUTPUT_ROOT)/source_tips: FRC
|
||||||
@$(MKDIR) -p $(@D)
|
@$(MKDIR) -p $(@D)
|
||||||
@$(RM) $@
|
@$(RM) $@
|
||||||
@$(if $(HG),$(call GetSourceTips),$(ECHO) "hg not installed" > $@)
|
@$(call GetSourceTips)
|
||||||
|
|
||||||
|
|
||||||
# Remove everything, except the output from configure.
|
# Remove everything, except the output from configure.
|
||||||
|
|
|
@ -332,9 +332,11 @@ define SetupLogging
|
||||||
# Shell redefinition trick inspired by http://www.cmcrossroads.com/ask-mr-make/6535-tracing-rule-execution-in-gnu-make
|
# Shell redefinition trick inspired by http://www.cmcrossroads.com/ask-mr-make/6535-tracing-rule-execution-in-gnu-make
|
||||||
# For each target executed, will print
|
# For each target executed, will print
|
||||||
# Building <TARGET> (from <FIRST PREREQUISITE>) (<ALL NEWER PREREQUISITES> newer)
|
# Building <TARGET> (from <FIRST PREREQUISITE>) (<ALL NEWER PREREQUISITES> newer)
|
||||||
# but with a limit of 20 on <ALL NEWER PREREQUISITES>, to avoid cluttering logs too much (and causing a crash on Cygwin).
|
# but with a limit of 20 on <ALL NEWER PREREQUISITES>, to avoid cluttering logs too much
|
||||||
OLD_SHELL:=$$(SHELL)
|
# (and causing a crash on Cygwin).
|
||||||
WRAPPER_SHELL:=$$(OLD_SHELL) $$(SRC_ROOT)/common/bin/shell-tracer.sh $$(if $$(TIME),$$(TIME),-) $$(OUTPUT_ROOT)/build-trace-time.log $$(OLD_SHELL)
|
# Default shell seems to always be /bin/sh. Must override with bash to get this to work on Solaris.
|
||||||
|
# Only use time if it's GNU time which supports format and output file.
|
||||||
|
WRAPPER_SHELL:=/bin/bash $$(SRC_ROOT)/common/bin/shell-tracer.sh $$(if $$(findstring yes,$$(IS_GNU_TIME)),$$(TIME),-) $$(OUTPUT_ROOT)/build-trace-time.log /bin/bash
|
||||||
SHELL=$$(warning $$(if $$@,Building $$@,Running shell command) $$(if $$<, (from $$<))$$(if $$?, ($$(wordlist 1, 20, $$?) $$(if $$(wordlist 21, 22, $$?), ... [in total $$(words $$?) files]) newer)))$$(WRAPPER_SHELL)
|
SHELL=$$(warning $$(if $$@,Building $$@,Running shell command) $$(if $$<, (from $$<))$$(if $$?, ($$(wordlist 1, 20, $$?) $$(if $$(wordlist 21, 22, $$?), ... [in total $$(words $$?) files]) newer)))$$(WRAPPER_SHELL)
|
||||||
endif
|
endif
|
||||||
# Never remove warning messages; this is just for completeness
|
# Never remove warning messages; this is just for completeness
|
||||||
|
|
|
@ -108,7 +108,11 @@ define add_native_source
|
||||||
# setting -showIncludes, all included files are printed. These are filtered out and
|
# setting -showIncludes, all included files are printed. These are filtered out and
|
||||||
# parsed into make dependences.
|
# parsed into make dependences.
|
||||||
ifeq ($(COMPILER_TYPE),CL)
|
ifeq ($(COMPILER_TYPE),CL)
|
||||||
$$($1_$2_COMP) $$($1_$2_FLAGS) -showIncludes $$($1_$2_DEBUG_OUT_FLAGS) $(CC_OUT_OPTION)$$($1_$2_OBJ) $2 | $(TEE) $$($1_$2_DEP).raw | $(GREP) -v "^Note: including file:"
|
($$($1_$2_COMP) $$($1_$2_FLAGS) -showIncludes $$($1_$2_DEBUG_OUT_FLAGS) \
|
||||||
|
$(CC_OUT_OPTION)$$($1_$2_OBJ) $2 ; echo $$$$? > $$($1_$2_DEP).exitvalue) \
|
||||||
|
| $(TEE) $$($1_$2_DEP).raw | $(GREP) -v "^Note: including file:" \
|
||||||
|
&& exit `cat $$($1_$2_DEP).exitvalue`
|
||||||
|
$(RM) $$($1_$2_DEP).exitvalue
|
||||||
($(ECHO) $$@: \\ \
|
($(ECHO) $$@: \\ \
|
||||||
&& $(SED) -e '/^Note: including file:/!d' \
|
&& $(SED) -e '/^Note: including file:/!d' \
|
||||||
-e 's|Note: including file: *||' \
|
-e 's|Note: including file: *||' \
|
||||||
|
|
123
common/makefiles/devkit/Makefile
Normal file
123
common/makefiles/devkit/Makefile
Normal file
|
@ -0,0 +1,123 @@
|
||||||
|
#
|
||||||
|
# Copyright (c) 2013, 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. Oracle designates this
|
||||||
|
# particular file as subject to the "Classpath" exception as provided
|
||||||
|
# by Oracle in the LICENSE file that accompanied this code.
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
#
|
||||||
|
# This Makefile, together with Tools.gmk, can be used to compile a set of
|
||||||
|
# gcc based cross compilation, portable, self contained packages, capable
|
||||||
|
# of building OpenJDK.
|
||||||
|
#
|
||||||
|
# In addition to the makefiles, access to Oracle Linux installation
|
||||||
|
# media is required. This has been tested against Oracle Enterprise Linux
|
||||||
|
# 5.5. Set variables RPM_DIR_x86_64 and RPM_DIR_i686 respectively to point
|
||||||
|
# to directory containing the RPMs.
|
||||||
|
#
|
||||||
|
# By default this Makefile will build crosstools for:
|
||||||
|
# * i686-unknown-linux-gnu
|
||||||
|
# * x86_64-unknown-linux-gnu
|
||||||
|
# The x86_64 version of the compilers will work in multi arch mode and will
|
||||||
|
# be able to compile 32bit binaries with the -m32 flag. This makes the
|
||||||
|
# explicit cross compiler for i686 somewhat redundant and is a known issue.
|
||||||
|
#
|
||||||
|
# To build the full set of crosstools, use a command line looking like this:
|
||||||
|
#
|
||||||
|
# make tars RPM_DIR_x86_64=/tmp/oel55-x86_64/Server/ RPM_DIR_i686=/tmp/oel55-i686/Server/
|
||||||
|
#
|
||||||
|
# To create a x86_64 package without the redundant i686 cross compiler, do
|
||||||
|
# like this:
|
||||||
|
#
|
||||||
|
# make tars platforms=x86_64-unknown-linux-gnu RPM_DIR_x86_64=/tmp/oel55-x86_64/Server/ RPM_DIR_i686=/tmp/oel55-i686/Server/
|
||||||
|
|
||||||
|
#
|
||||||
|
# Main makefile which iterates over all host and target platforms.
|
||||||
|
#
|
||||||
|
|
||||||
|
os := $(shell uname -o)
|
||||||
|
cpu := x86_64
|
||||||
|
#$(shell uname -p)
|
||||||
|
|
||||||
|
#
|
||||||
|
# This wrapper script can handle exactly these platforms
|
||||||
|
#
|
||||||
|
platforms := $(foreach p,x86_64 i686,$(p)-unknown-linux-gnu)
|
||||||
|
#platforms := $(foreach p,x86_64,$(p)-unknown-linux-gnu)
|
||||||
|
|
||||||
|
# Figure out what platform this is building on.
|
||||||
|
me := $(cpu)-$(if $(findstring Linux,$(os)),unknown-linux-gnu)
|
||||||
|
|
||||||
|
$(info Building on platform $(me))
|
||||||
|
|
||||||
|
all compile : $(platforms)
|
||||||
|
|
||||||
|
ifeq (,$(SKIP_ME))
|
||||||
|
$(foreach p,$(filter-out $(me),$(platforms)),$(eval $(p) : $$(me)))
|
||||||
|
endif
|
||||||
|
|
||||||
|
OUTPUT_ROOT = $(abspath ../../../build/devkit)
|
||||||
|
RESULT = $(OUTPUT_ROOT)/result
|
||||||
|
|
||||||
|
submakevars = HOST=$@ BUILD=$(me) \
|
||||||
|
RESULT=$(RESULT) PREFIX=$(RESULT)/$@ \
|
||||||
|
OUTPUT_ROOT=$(OUTPUT_ROOT)
|
||||||
|
$(platforms) :
|
||||||
|
@echo 'Building compilers for $@'
|
||||||
|
@echo 'Targets: $(platforms)'
|
||||||
|
for p in $@ $(filter-out $@,$(platforms)); do \
|
||||||
|
$(MAKE) -f Tools.gmk all $(submakevars) \
|
||||||
|
TARGET=$$p || exit 1 ; \
|
||||||
|
done
|
||||||
|
@echo 'Building ccache program for $@'
|
||||||
|
$(MAKE) -f Tools.gmk ccache $(submakevars) TARGET=$@
|
||||||
|
@echo 'All done"'
|
||||||
|
|
||||||
|
$(foreach a,i686 x86_64,$(eval $(a) : $(filter $(a)%,$(platforms))))
|
||||||
|
|
||||||
|
ia32 : i686
|
||||||
|
today := $(shell date +%Y%m%d)
|
||||||
|
|
||||||
|
|
||||||
|
define Mktar
|
||||||
|
$(1)_tar = $$(RESULT)/sdk-$(1)-$$(today).tar.gz
|
||||||
|
$$($(1)_tar) : PLATFORM = $(1)
|
||||||
|
TARFILES += $$($(1)_tar)
|
||||||
|
$$($(1)_tar) : $(1) $$(shell find $$(RESULT)/$(1))
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(foreach p,$(platforms),$(eval $(call Mktar,$(p))))
|
||||||
|
|
||||||
|
tars : all $(TARFILES)
|
||||||
|
onlytars : $(TARFILES)
|
||||||
|
%.tar.gz :
|
||||||
|
@echo 'Creating compiler package $@'
|
||||||
|
cd $(RESULT)/$(PLATFORM) && tar -czf $@ *
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
clean :
|
||||||
|
rm -rf build result
|
||||||
|
|
||||||
|
FORCE :
|
||||||
|
.PHONY : $(configs) $(platforms)
|
||||||
|
|
||||||
|
|
473
common/makefiles/devkit/Tools.gmk
Normal file
473
common/makefiles/devkit/Tools.gmk
Normal file
|
@ -0,0 +1,473 @@
|
||||||
|
#
|
||||||
|
# Copyright (c) 2013, 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. Oracle designates this
|
||||||
|
# particular file as subject to the "Classpath" exception as provided
|
||||||
|
# by Oracle in the LICENSE file that accompanied this code.
|
||||||
|
#
|
||||||
|
# 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.
|
||||||
|
#
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
#
|
||||||
|
# Workhorse makefile for creating ONE cross compiler
|
||||||
|
# Needs either to be from BUILD -> BUILD OR have
|
||||||
|
# BUILD -> HOST prebuilt
|
||||||
|
#
|
||||||
|
# NOTE: There is a bug here. We don't limit the
|
||||||
|
# PATH when building BUILD -> BUILD, which means that
|
||||||
|
# if you configure after you've once build the BUILD->BUILD
|
||||||
|
# compiler THAT one will be picked up as the compiler for itself.
|
||||||
|
# This is not so great, especially if you did a partial delete
|
||||||
|
# of the target tree.
|
||||||
|
#
|
||||||
|
# Fix this...
|
||||||
|
#
|
||||||
|
|
||||||
|
$(info TARGET=$(TARGET))
|
||||||
|
$(info HOST=$(HOST))
|
||||||
|
$(info BUILD=$(BUILD))
|
||||||
|
|
||||||
|
ARCH := $(word 1,$(subst -, ,$(TARGET)))
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
# Define external dependencies
|
||||||
|
|
||||||
|
# Latest that could be made to work.
|
||||||
|
gcc_ver := gcc-4.7.3
|
||||||
|
binutils_ver := binutils-2.22
|
||||||
|
ccache_ver := ccache-3.1.9
|
||||||
|
mpfr_ver := mpfr-3.0.1
|
||||||
|
gmp_ver := gmp-4.3.2
|
||||||
|
mpc_ver := mpc-1.0.1
|
||||||
|
|
||||||
|
GCC := http://ftp.gnu.org/pub/gnu/gcc/$(gcc_ver)/$(gcc_ver).tar.bz2
|
||||||
|
BINUTILS := http://ftp.gnu.org/pub/gnu/binutils/$(binutils_ver).tar.bz2
|
||||||
|
CCACHE := http://samba.org/ftp/ccache/$(ccache_ver).tar.gz
|
||||||
|
MPFR := http://www.mpfr.org/${mpfr_ver}/${mpfr_ver}.tar.bz2
|
||||||
|
GMP := http://ftp.gnu.org/pub/gnu/gmp/${gmp_ver}.tar.bz2
|
||||||
|
MPC := http://www.multiprecision.org/mpc/download/${mpc_ver}.tar.gz
|
||||||
|
|
||||||
|
# RPMs in OEL5.5
|
||||||
|
RPM_LIST := \
|
||||||
|
kernel-headers \
|
||||||
|
glibc-2 glibc-headers glibc-devel \
|
||||||
|
cups-libs cups-devel \
|
||||||
|
libX11 libX11-devel \
|
||||||
|
xorg-x11-proto-devel \
|
||||||
|
alsa-lib alsa-lib-devel \
|
||||||
|
libXext libXext-devel \
|
||||||
|
libXtst libXtst-devel \
|
||||||
|
libXrender libXrender-devel \
|
||||||
|
freetype freetype-devel \
|
||||||
|
libXt libXt-devel \
|
||||||
|
libSM libSM-devel \
|
||||||
|
libICE libICE-devel \
|
||||||
|
libXi libXi-devel \
|
||||||
|
libXdmcp libXdmcp-devel \
|
||||||
|
libXau libXau-devel \
|
||||||
|
libgcc
|
||||||
|
|
||||||
|
|
||||||
|
ifeq ($(ARCH),x86_64)
|
||||||
|
RPM_DIR ?= $(RPM_DIR_x86_64)
|
||||||
|
RPM_ARCHS := x86_64
|
||||||
|
ifeq ($(BUILD),$(HOST))
|
||||||
|
ifeq ($(TARGET),$(HOST))
|
||||||
|
# When building the native compiler for x86_64, enable mixed mode.
|
||||||
|
RPM_ARCHS += i386 i686
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
else
|
||||||
|
RPM_DIR ?= $(RPM_DIR_i686)
|
||||||
|
RPM_ARCHS := i386 i686
|
||||||
|
endif
|
||||||
|
|
||||||
|
# Sort to remove duplicates
|
||||||
|
RPM_FILE_LIST := $(sort $(foreach a,$(RPM_ARCHS),$(wildcard $(patsubst %,$(RPM_DIR)/%*$a.rpm,$(RPM_LIST)))))
|
||||||
|
|
||||||
|
ifeq ($(RPM_FILE_LIST),)
|
||||||
|
$(error Found no RPMs, RPM_DIR must point to list of directories to search for RPMs)
|
||||||
|
endif
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
# Define common directories and files
|
||||||
|
|
||||||
|
# Ensure we have 32-bit libs also for x64. We enable mixed-mode.
|
||||||
|
ifeq (x86_64,$(ARCH))
|
||||||
|
LIBDIRS := lib64 lib
|
||||||
|
CFLAGS_lib := -m32
|
||||||
|
else
|
||||||
|
LIBDIRS := lib
|
||||||
|
endif
|
||||||
|
|
||||||
|
# Define directories
|
||||||
|
RESULT := $(OUTPUT_ROOT)/result
|
||||||
|
BUILDDIR := $(OUTPUT_ROOT)/$(HOST)/$(TARGET)
|
||||||
|
PREFIX := $(RESULT)/$(HOST)
|
||||||
|
TARGETDIR := $(PREFIX)/$(TARGET)
|
||||||
|
SYSROOT := $(TARGETDIR)/sys-root
|
||||||
|
DOWNLOAD := $(OUTPUT_ROOT)/download
|
||||||
|
SRCDIR := $(OUTPUT_ROOT)/src
|
||||||
|
|
||||||
|
# Marker file for unpacking rpms
|
||||||
|
rpms := $(SYSROOT)/rpms_unpacked
|
||||||
|
|
||||||
|
# Need to patch libs that are linker scripts to use non-absolute paths
|
||||||
|
libs := $(SYSROOT)/libs_patched
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
# Unpack source packages
|
||||||
|
|
||||||
|
# Generate downloading + unpacking of sources.
|
||||||
|
define Download
|
||||||
|
$(1)_DIR = $(abspath $(SRCDIR)/$(basename $(basename $(notdir $($(1))))))
|
||||||
|
$(1)_CFG = $$($(1)_DIR)/configure
|
||||||
|
$(1)_FILE = $(DOWNLOAD)/$(notdir $($(1)))
|
||||||
|
|
||||||
|
$$($(1)_CFG) : $$($(1)_FILE)
|
||||||
|
mkdir -p $$(SRCDIR)
|
||||||
|
tar -C $$(SRCDIR) -x$$(if $$(findstring .gz, $$<),z,j)f $$<
|
||||||
|
$$(foreach p,$$(abspath $$(wildcard $$(notdir $$($(1)_DIR)).patch)), \
|
||||||
|
echo PATCHING $$(p) ; \
|
||||||
|
patch -d $$($(1)_DIR) -p1 -i $$(p) ; \
|
||||||
|
)
|
||||||
|
touch $$@
|
||||||
|
|
||||||
|
$$($(1)_FILE) :
|
||||||
|
wget -P $(DOWNLOAD) $$($(1))
|
||||||
|
endef
|
||||||
|
|
||||||
|
# Download and unpack all source packages
|
||||||
|
$(foreach p,GCC BINUTILS CCACHE MPFR GMP MPC,$(eval $(call Download,$(p))))
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
# Unpack RPMS
|
||||||
|
|
||||||
|
# Note. For building linux you should install rpm2cpio.
|
||||||
|
define unrpm
|
||||||
|
$(SYSROOT)/$(notdir $(1)).unpacked \
|
||||||
|
: $(1)
|
||||||
|
$$(rpms) : $(SYSROOT)/$(notdir $(1)).unpacked
|
||||||
|
endef
|
||||||
|
|
||||||
|
%.unpacked :
|
||||||
|
$(info Unpacking target rpms and libraries from $<)
|
||||||
|
@(mkdir -p $(@D); \
|
||||||
|
cd $(@D); \
|
||||||
|
rpm2cpio $< | \
|
||||||
|
cpio --extract --make-directories \
|
||||||
|
-f \
|
||||||
|
"./usr/share/doc/*" \
|
||||||
|
"./usr/share/man/*" \
|
||||||
|
"./usr/X11R6/man/*" \
|
||||||
|
"*/X11/locale/*" \
|
||||||
|
|| die ; )
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(foreach p,$(RPM_FILE_LIST),$(eval $(call unrpm,$(p))))
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
|
||||||
|
# Note: MUST create a <sys-root>/usr/lib even if not really needed.
|
||||||
|
# gcc will use a path relative to it to resolve lib64. (x86_64).
|
||||||
|
# we're creating multi-lib compiler with 32bit libc as well, so we should
|
||||||
|
# have it anyway, but just to make sure...
|
||||||
|
# Patch libc.so and libpthread.so to force linking against libraries in sysroot
|
||||||
|
# and not the ones installed on the build machine.
|
||||||
|
$(libs) : $(rpms)
|
||||||
|
@echo Patching libc and pthreads
|
||||||
|
@(for f in `find $(SYSROOT) -name libc.so -o -name libpthread.so`; do \
|
||||||
|
(cat $$f | sed -e 's|/usr/lib64/||g' \
|
||||||
|
-e 's|/usr/lib/||g' \
|
||||||
|
-e 's|/lib64/||g' \
|
||||||
|
-e 's|/lib/||g' ) > $$f.tmp ; \
|
||||||
|
mv $$f.tmp $$f ; \
|
||||||
|
done)
|
||||||
|
@mkdir -p $(SYSROOT)/usr/lib
|
||||||
|
@touch $@
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
|
||||||
|
# Define marker files for each source package to be compiled
|
||||||
|
$(foreach t,binutils mpfr gmp mpc gcc ccache,$(eval $(t) = $(TARGETDIR)/$($(t)_ver).done))
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
|
||||||
|
# Default base config
|
||||||
|
CONFIG = --target=$(TARGET) \
|
||||||
|
--host=$(HOST) --build=$(BUILD) \
|
||||||
|
--prefix=$(PREFIX)
|
||||||
|
|
||||||
|
PATHEXT = $(RESULT)/$(BUILD)/bin:
|
||||||
|
|
||||||
|
PATHPRE = PATH=$(PATHEXT)$(PATH)
|
||||||
|
BUILDPAR = -j16
|
||||||
|
|
||||||
|
# Default commands to when making
|
||||||
|
MAKECMD =
|
||||||
|
INSTALLCMD = install
|
||||||
|
|
||||||
|
|
||||||
|
declare_tools = CC$(1)=$(2)gcc LD$(1)=$(2)ld AR$(1)=$(2)ar AS$(1)=$(2)as RANLIB$(1)=$(2)ranlib CXX$(1)=$(2)g++ OBJDUMP$(1)=$(2)objdump
|
||||||
|
|
||||||
|
ifeq ($(HOST),$(BUILD))
|
||||||
|
ifeq ($(HOST),$(TARGET))
|
||||||
|
TOOLS = $(call declare_tools,_FOR_TARGET,)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
TOOLS ?= $(call declare_tools,_FOR_TARGET,$(TARGET)-)
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
|
||||||
|
# Create a TARGET bfd + libiberty only.
|
||||||
|
# Configure one or two times depending on mulitlib arch.
|
||||||
|
# If multilib, the second should be 32-bit, and we resolve
|
||||||
|
# CFLAG_<name> to most likely -m32.
|
||||||
|
define mk_bfd
|
||||||
|
$$(info Libs for $(1))
|
||||||
|
$$(BUILDDIR)/$$(binutils_ver)-$(subst /,-,$(1))/Makefile \
|
||||||
|
: CFLAGS += $$(CFLAGS_$(1))
|
||||||
|
$$(BUILDDIR)/$$(binutils_ver)-$(subst /,-,$(1))/Makefile \
|
||||||
|
: LIBDIRS = --libdir=$(TARGETDIR)/$(1)
|
||||||
|
|
||||||
|
bfdlib += $$(TARGETDIR)/$$(binutils_ver)-$(subst /,-,$(1)).done
|
||||||
|
bfdmakes += $$(BUILDDIR)/$$(binutils_ver)-$(subst /,-,$(1))/Makefile
|
||||||
|
endef
|
||||||
|
|
||||||
|
# Create one set of bfds etc for each multilib arch
|
||||||
|
$(foreach l,$(LIBDIRS),$(eval $(call mk_bfd,$(l))))
|
||||||
|
|
||||||
|
# Only build these two libs.
|
||||||
|
$(bfdlib) : MAKECMD = all-libiberty all-bfd
|
||||||
|
$(bfdlib) : INSTALLCMD = install-libiberty install-bfd
|
||||||
|
|
||||||
|
# Building targets libbfd + libiberty. HOST==TARGET, i.e not
|
||||||
|
# for a cross env.
|
||||||
|
$(bfdmakes) : CONFIG = --target=$(TARGET) \
|
||||||
|
--host=$(TARGET) --build=$(BUILD) \
|
||||||
|
--prefix=$(TARGETDIR) \
|
||||||
|
--with-sysroot=$(SYSROOT) \
|
||||||
|
$(LIBDIRS)
|
||||||
|
|
||||||
|
$(bfdmakes) : TOOLS = $(call declare_tools,_FOR_TARGET,$(TARGET)-) $(call declare_tools,,$(TARGET)-)
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
|
||||||
|
$(gcc) \
|
||||||
|
$(binutils) \
|
||||||
|
$(gmp) \
|
||||||
|
$(mpfr) \
|
||||||
|
$(mpc) \
|
||||||
|
$(bfdmakes) \
|
||||||
|
$(ccache) : ENVS += $(TOOLS)
|
||||||
|
|
||||||
|
# libdir to work around hateful bfd stuff installing into wrong dirs...
|
||||||
|
# ensure we have 64 bit bfd support in the HOST library. I.e our
|
||||||
|
# compiler on i686 will know 64 bit symbols, BUT later
|
||||||
|
# we build just the libs again for TARGET, then with whatever the arch
|
||||||
|
# wants.
|
||||||
|
$(BUILDDIR)/$(binutils_ver)/Makefile : CONFIG += --enable-64-bit-bfd --libdir=$(PREFIX)/$(word 1,$(LIBDIRS))
|
||||||
|
|
||||||
|
# Makefile creation. Simply run configure in build dir.
|
||||||
|
$(bfdmakes) \
|
||||||
|
$(BUILDDIR)/$(binutils_ver)/Makefile \
|
||||||
|
: $(BINUTILS_CFG)
|
||||||
|
$(info Configuring $@. Log in $(@D)/log.config)
|
||||||
|
@mkdir -p $(@D)
|
||||||
|
( \
|
||||||
|
cd $(@D) ; \
|
||||||
|
$(PATHPRE) $(ENVS) CFLAGS="$(CFLAGS)" \
|
||||||
|
$(BINUTILS_CFG) \
|
||||||
|
$(CONFIG) \
|
||||||
|
--with-sysroot=$(SYSROOT) \
|
||||||
|
--disable-nls \
|
||||||
|
--program-prefix=$(TARGET)- \
|
||||||
|
--enable-multilib \
|
||||||
|
) > $(@D)/log.config 2>&1
|
||||||
|
@echo 'done'
|
||||||
|
|
||||||
|
$(BUILDDIR)/$(mpfr_ver)/Makefile \
|
||||||
|
: $(MPFR_CFG)
|
||||||
|
$(info Configuring $@. Log in $(@D)/log.config)
|
||||||
|
@mkdir -p $(@D)
|
||||||
|
( \
|
||||||
|
cd $(@D) ; \
|
||||||
|
$(PATHPRE) $(ENVS) CFLAGS="$(CFLAGS)" \
|
||||||
|
$(MPFR_CFG) \
|
||||||
|
$(CONFIG) \
|
||||||
|
--program-prefix=$(TARGET)- \
|
||||||
|
--enable-shared=no \
|
||||||
|
--with-gmp=$(PREFIX) \
|
||||||
|
) > $(@D)/log.config 2>&1
|
||||||
|
@echo 'done'
|
||||||
|
|
||||||
|
$(BUILDDIR)/$(gmp_ver)/Makefile \
|
||||||
|
: $(GMP_CFG)
|
||||||
|
$(info Configuring $@. Log in $(@D)/log.config)
|
||||||
|
@mkdir -p $(@D)
|
||||||
|
( \
|
||||||
|
cd $(@D) ; \
|
||||||
|
$(PATHPRE) $(ENVS) CFLAGS="$(CFLAGS)" \
|
||||||
|
$(GMP_CFG) \
|
||||||
|
--host=$(HOST) --build=$(BUILD) \
|
||||||
|
--prefix=$(PREFIX) \
|
||||||
|
--disable-nls \
|
||||||
|
--program-prefix=$(TARGET)- \
|
||||||
|
--enable-shared=no \
|
||||||
|
--with-mpfr=$(PREFIX) \
|
||||||
|
) > $(@D)/log.config 2>&1
|
||||||
|
@echo 'done'
|
||||||
|
|
||||||
|
$(BUILDDIR)/$(mpc_ver)/Makefile \
|
||||||
|
: $(MPC_CFG)
|
||||||
|
$(info Configuring $@. Log in $(@D)/log.config)
|
||||||
|
@mkdir -p $(@D)
|
||||||
|
( \
|
||||||
|
cd $(@D) ; \
|
||||||
|
$(PATHPRE) $(ENVS) CFLAGS="$(CFLAGS)" \
|
||||||
|
$(MPC_CFG) \
|
||||||
|
$(CONFIG) \
|
||||||
|
--program-prefix=$(TARGET)- \
|
||||||
|
--enable-shared=no \
|
||||||
|
--with-mpfr=$(PREFIX) \
|
||||||
|
--with-gmp=$(PREFIX) \
|
||||||
|
) > $(@D)/log.config 2>&1
|
||||||
|
@echo 'done'
|
||||||
|
|
||||||
|
# Only valid if glibc target -> linux
|
||||||
|
# proper destructor handling for c++
|
||||||
|
ifneq (,$(findstring linux,$(TARGET)))
|
||||||
|
$(BUILDDIR)/$(gcc_ver)/Makefile : CONFIG += --enable-__cxa_atexit
|
||||||
|
endif
|
||||||
|
|
||||||
|
# Want:
|
||||||
|
# c,c++
|
||||||
|
# shared libs
|
||||||
|
# multilib (-m32/-m64 on x64)
|
||||||
|
# skip native language.
|
||||||
|
# and link and assemble with the binutils we created
|
||||||
|
# earlier, so --with-gnu*
|
||||||
|
$(BUILDDIR)/$(gcc_ver)/Makefile \
|
||||||
|
: $(GCC_CFG)
|
||||||
|
$(info Configuring $@. Log in $(@D)/log.config)
|
||||||
|
mkdir -p $(@D)
|
||||||
|
( \
|
||||||
|
cd $(@D) ; \
|
||||||
|
$(PATHPRE) $(ENVS) $(GCC_CFG) $(EXTRA_CFLAGS) \
|
||||||
|
$(CONFIG) \
|
||||||
|
--with-sysroot=$(SYSROOT) \
|
||||||
|
--enable-languages=c,c++ \
|
||||||
|
--enable-shared \
|
||||||
|
--enable-multilib \
|
||||||
|
--disable-nls \
|
||||||
|
--with-gnu-as \
|
||||||
|
--with-gnu-ld \
|
||||||
|
--with-mpfr=$(PREFIX) \
|
||||||
|
--with-gmp=$(PREFIX) \
|
||||||
|
--with-mpc=$(PREFIX) \
|
||||||
|
) > $(@D)/log.config 2>&1
|
||||||
|
@echo 'done'
|
||||||
|
|
||||||
|
# need binutils for gcc
|
||||||
|
$(gcc) : $(binutils)
|
||||||
|
|
||||||
|
# as of 4.3 or so need these for doing config
|
||||||
|
$(BUILDDIR)/$(gcc_ver)/Makefile : $(gmp) $(mpfr) $(mpc)
|
||||||
|
$(mpfr) : $(gmp)
|
||||||
|
$(mpc) : $(gmp) $(mpfr)
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
# very straightforward. just build a ccache. it is only for host.
|
||||||
|
$(BUILDDIR)/$(ccache_ver)/Makefile \
|
||||||
|
: $(CCACHE_CFG)
|
||||||
|
$(info Configuring $@. Log in $(@D)/log.config)
|
||||||
|
@mkdir -p $(@D)
|
||||||
|
@( \
|
||||||
|
cd $(@D) ; \
|
||||||
|
$(PATHPRE) $(ENVS) $(CCACHE_CFG) \
|
||||||
|
$(CONFIG) \
|
||||||
|
) > $(@D)/log.config 2>&1
|
||||||
|
@echo 'done'
|
||||||
|
|
||||||
|
gccpatch = $(TARGETDIR)/gcc-patched
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
# For some reason cpp is not created as a target-compiler
|
||||||
|
ifeq ($(HOST),$(TARGET))
|
||||||
|
$(gccpatch) : $(gcc) link_libs
|
||||||
|
@echo -n 'Creating compiler symlinks...'
|
||||||
|
@for f in cpp; do \
|
||||||
|
if [ ! -e $(PREFIX)/bin/$(TARGET)-$$f ];\
|
||||||
|
then \
|
||||||
|
cd $(PREFIX)/bin && \
|
||||||
|
ln -s $$f $(TARGET)-$$f ; \
|
||||||
|
fi \
|
||||||
|
done
|
||||||
|
@touch $@
|
||||||
|
@echo 'done'
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
# Ugly at best. Seems that when we compile host->host compiler, that are NOT
|
||||||
|
# the BUILD compiler, the result will not try searching for libs in package root.
|
||||||
|
# "Solve" this by create links from the target libdirs to where they are.
|
||||||
|
link_libs:
|
||||||
|
@echo -n 'Creating library symlinks...'
|
||||||
|
@$(foreach l,$(LIBDIRS), \
|
||||||
|
for f in `cd $(PREFIX)/$(l) && ls`; do \
|
||||||
|
if [ ! -e $(TARGETDIR)/$(l)/$$f ]; then \
|
||||||
|
mkdir -p $(TARGETDIR)/$(l) && \
|
||||||
|
cd $(TARGETDIR)/$(l)/ && \
|
||||||
|
ln -s $(if $(findstring /,$(l)),../,)../../$(l)/$$f $$f; \
|
||||||
|
fi \
|
||||||
|
done;)
|
||||||
|
@echo 'done'
|
||||||
|
else
|
||||||
|
$(gccpatch) :
|
||||||
|
@echo 'done'
|
||||||
|
endif
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
# Build in two steps.
|
||||||
|
# make <default>
|
||||||
|
# make install.
|
||||||
|
# Use path to our build hosts cross tools
|
||||||
|
# Always need to build cross tools for build host self.
|
||||||
|
$(TARGETDIR)/%.done : $(BUILDDIR)/%/Makefile
|
||||||
|
$(info Building $(basename $@). Log in $(<D)/log.build)
|
||||||
|
$(PATHPRE) $(ENVS) $(MAKE) $(BUILDPAR) -f $< -C $(<D) $(MAKECMD) $(MAKECMD.$(notdir $@)) > $(<D)/log.build 2>&1
|
||||||
|
@echo -n 'installing...'
|
||||||
|
$(PATHPRE) $(MAKE) $(INSTALLPAR) -f $< -C $(<D) $(INSTALLCMD) $(MAKECMD.$(notdir $@)) > $(<D)/log.install 2>&1
|
||||||
|
@touch $@
|
||||||
|
@echo 'done'
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
|
||||||
|
bfdlib : $(bfdlib)
|
||||||
|
binutils : $(binutils)
|
||||||
|
rpms : $(rpms)
|
||||||
|
libs : $(libs)
|
||||||
|
sysroot : rpms libs
|
||||||
|
gcc : sysroot $(gcc) $(gccpatch)
|
||||||
|
all : binutils gcc bfdlib
|
||||||
|
|
||||||
|
# this is only built for host. so separate.
|
||||||
|
ccache : $(ccache)
|
||||||
|
|
||||||
|
.PHONY : gcc all binutils bfdlib link_libs rpms libs sysroot
|
|
@ -215,3 +215,6 @@ c8286839d0df04aba819ec4bef12b86babccf30e jdk8-b90
|
||||||
8f7ffb296385f85a4a6d53f9f2d4a7b13a8fa1ff jdk8-b91
|
8f7ffb296385f85a4a6d53f9f2d4a7b13a8fa1ff jdk8-b91
|
||||||
717aa26f8e0a1c0e768aebb3a763aca56db0c83e jdk8-b92
|
717aa26f8e0a1c0e768aebb3a763aca56db0c83e jdk8-b92
|
||||||
8dc9d7ccbb2d77fd89bc321bb02e67c152aca257 jdk8-b93
|
8dc9d7ccbb2d77fd89bc321bb02e67c152aca257 jdk8-b93
|
||||||
|
22f5d7f261d9d61a953d2d9a53f2e9ce0ca361d1 jdk8-b94
|
||||||
|
2cf36f43df36137980d9828cec27003ec10daeee jdk8-b95
|
||||||
|
3357c2776431d51a8de326a85e0f41420e40774f jdk8-b96
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#
|
#
|
||||||
# Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
#
|
#
|
||||||
# This code is free software; you can redistribute it and/or modify it
|
# This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -39,7 +39,6 @@ com_sun_corba_se_impl_orbutil_java = \
|
||||||
com/sun/corba/se/impl/orbutil/ObjectStreamClassUtil_1_3.java \
|
com/sun/corba/se/impl/orbutil/ObjectStreamClassUtil_1_3.java \
|
||||||
com/sun/corba/se/impl/orbutil/ORBConstants.java \
|
com/sun/corba/se/impl/orbutil/ORBConstants.java \
|
||||||
com/sun/corba/se/impl/orbutil/ORBUtility.java \
|
com/sun/corba/se/impl/orbutil/ORBUtility.java \
|
||||||
com/sun/corba/se/impl/orbutil/ORBClassLoader.java \
|
|
||||||
com/sun/corba/se/impl/orbutil/RepIdDelegator.java \
|
com/sun/corba/se/impl/orbutil/RepIdDelegator.java \
|
||||||
com/sun/corba/se/impl/orbutil/RepositoryIdFactory.java \
|
com/sun/corba/se/impl/orbutil/RepositoryIdFactory.java \
|
||||||
com/sun/corba/se/impl/orbutil/RepositoryIdStrings.java \
|
com/sun/corba/se/impl/orbutil/RepositoryIdStrings.java \
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1997, 2004, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -81,7 +81,6 @@ import com.sun.corba.se.impl.logging.ActivationSystemException ;
|
||||||
|
|
||||||
import com.sun.corba.se.impl.oa.poa.BadServerIdHandler;
|
import com.sun.corba.se.impl.oa.poa.BadServerIdHandler;
|
||||||
import com.sun.corba.se.impl.orbutil.ORBConstants;
|
import com.sun.corba.se.impl.orbutil.ORBConstants;
|
||||||
import com.sun.corba.se.impl.orbutil.ORBClassLoader;
|
|
||||||
import com.sun.corba.se.impl.orbutil.ORBUtility;
|
import com.sun.corba.se.impl.orbutil.ORBUtility;
|
||||||
import com.sun.corba.se.impl.util.Utility;
|
import com.sun.corba.se.impl.util.Utility;
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -33,6 +33,8 @@ package com.sun.corba.se.impl.corba;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
|
import java.security.AccessController;
|
||||||
|
import java.security.PrivilegedAction;
|
||||||
import java.util.List ;
|
import java.util.List ;
|
||||||
import java.util.ArrayList ;
|
import java.util.ArrayList ;
|
||||||
|
|
||||||
|
@ -504,7 +506,13 @@ public class AnyImpl extends Any
|
||||||
public org.omg.CORBA.portable.OutputStream create_output_stream()
|
public org.omg.CORBA.portable.OutputStream create_output_stream()
|
||||||
{
|
{
|
||||||
//debug.log ("create_output_stream");
|
//debug.log ("create_output_stream");
|
||||||
return new AnyOutputStream(orb);
|
final ORB finalorb = this.orb;
|
||||||
|
return AccessController.doPrivileged(new PrivilegedAction<AnyOutputStream>() {
|
||||||
|
@Override
|
||||||
|
public AnyOutputStream run() {
|
||||||
|
return new AnyOutputStream(finalorb);
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1996, 2006, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -600,7 +600,8 @@ public final class TypeCodeImpl extends TypeCode
|
||||||
}
|
}
|
||||||
|
|
||||||
public static CDROutputStream newOutputStream(ORB orb) {
|
public static CDROutputStream newOutputStream(ORB orb) {
|
||||||
TypeCodeOutputStream tcos = new TypeCodeOutputStream((ORB)orb);
|
TypeCodeOutputStream tcos =
|
||||||
|
sun.corba.OutputStreamFactory.newTypeCodeOutputStream(orb);
|
||||||
//if (debug) System.out.println("Created TypeCodeOutputStream " + tcos +
|
//if (debug) System.out.println("Created TypeCodeOutputStream " + tcos +
|
||||||
// " with no parent");
|
// " with no parent");
|
||||||
return tcos;
|
return tcos;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2004, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -66,7 +66,7 @@ import org.omg.CORBA.CompletionStatus;
|
||||||
*
|
*
|
||||||
* @author Ram Jeyaraman
|
* @author Ram Jeyaraman
|
||||||
*/
|
*/
|
||||||
public class IDLJavaSerializationOutputStream extends CDROutputStreamBase {
|
final class IDLJavaSerializationOutputStream extends CDROutputStreamBase {
|
||||||
|
|
||||||
private ORB orb;
|
private ORB orb;
|
||||||
private byte encodingVersion;
|
private byte encodingVersion;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -196,7 +196,8 @@ public final class TypeCodeOutputStream extends EncapsOutputStream
|
||||||
}
|
}
|
||||||
|
|
||||||
public TypeCodeOutputStream createEncapsulation(org.omg.CORBA.ORB _orb) {
|
public TypeCodeOutputStream createEncapsulation(org.omg.CORBA.ORB _orb) {
|
||||||
TypeCodeOutputStream encap = new TypeCodeOutputStream((ORB)_orb, isLittleEndian());
|
TypeCodeOutputStream encap =
|
||||||
|
sun.corba.OutputStreamFactory.newTypeCodeOutputStream((ORB)_orb, isLittleEndian());
|
||||||
encap.setEnclosingOutputStream(this);
|
encap.setEnclosingOutputStream(this);
|
||||||
encap.makeEncapsulation();
|
encap.makeEncapsulation();
|
||||||
//if (TypeCodeImpl.debug) System.out.println("Created TypeCodeOutputStream " + encap + " with parent " + this);
|
//if (TypeCodeImpl.debug) System.out.println("Created TypeCodeOutputStream " + encap + " with parent " + this);
|
||||||
|
@ -211,7 +212,8 @@ public final class TypeCodeOutputStream extends EncapsOutputStream
|
||||||
|
|
||||||
public static TypeCodeOutputStream wrapOutputStream(OutputStream os) {
|
public static TypeCodeOutputStream wrapOutputStream(OutputStream os) {
|
||||||
boolean littleEndian = ((os instanceof CDROutputStream) ? ((CDROutputStream)os).isLittleEndian() : false);
|
boolean littleEndian = ((os instanceof CDROutputStream) ? ((CDROutputStream)os).isLittleEndian() : false);
|
||||||
TypeCodeOutputStream tos = new TypeCodeOutputStream((ORB)os.orb(), littleEndian);
|
TypeCodeOutputStream tos =
|
||||||
|
sun.corba.OutputStreamFactory.newTypeCodeOutputStream((ORB)os.orb(), littleEndian);
|
||||||
tos.setEnclosingOutputStream(os);
|
tos.setEnclosingOutputStream(os);
|
||||||
//if (TypeCodeImpl.debug) System.out.println("Created TypeCodeOutputStream " + tos + " with parent " + os);
|
//if (TypeCodeImpl.debug) System.out.println("Created TypeCodeOutputStream " + tos + " with parent " + os);
|
||||||
return tos;
|
return tos;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -155,7 +155,8 @@ public final class CDREncapsCodec
|
||||||
// be versioned. This can be handled once this work is complete.
|
// be versioned. This can be handled once this work is complete.
|
||||||
|
|
||||||
// Create output stream with default endianness.
|
// Create output stream with default endianness.
|
||||||
EncapsOutputStream cdrOut = new EncapsOutputStream(
|
EncapsOutputStream cdrOut =
|
||||||
|
sun.corba.OutputStreamFactory.newEncapsOutputStream(
|
||||||
(com.sun.corba.se.spi.orb.ORB)orb, giopVersion );
|
(com.sun.corba.se.spi.orb.ORB)orb, giopVersion );
|
||||||
|
|
||||||
// This is an encapsulation, so put out the endian:
|
// This is an encapsulation, so put out the endian:
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2002, 2012, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -77,7 +77,6 @@ import com.sun.corba.se.impl.logging.InterceptorsSystemException;
|
||||||
import com.sun.corba.se.impl.logging.ORBUtilSystemException;
|
import com.sun.corba.se.impl.logging.ORBUtilSystemException;
|
||||||
import com.sun.corba.se.impl.logging.OMGSystemException;
|
import com.sun.corba.se.impl.logging.OMGSystemException;
|
||||||
import com.sun.corba.se.impl.corba.RequestImpl;
|
import com.sun.corba.se.impl.corba.RequestImpl;
|
||||||
import com.sun.corba.se.impl.orbutil.ORBClassLoader;
|
|
||||||
import com.sun.corba.se.impl.orbutil.ORBConstants;
|
import com.sun.corba.se.impl.orbutil.ORBConstants;
|
||||||
import com.sun.corba.se.impl.orbutil.ORBUtility;
|
import com.sun.corba.se.impl.orbutil.ORBUtility;
|
||||||
import com.sun.corba.se.impl.orbutil.StackImpl;
|
import com.sun.corba.se.impl.orbutil.StackImpl;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -86,13 +86,14 @@ import com.sun.corba.se.impl.encoding.CDRInputStream_1_0;
|
||||||
import com.sun.corba.se.impl.encoding.EncapsOutputStream;
|
import com.sun.corba.se.impl.encoding.EncapsOutputStream;
|
||||||
|
|
||||||
import com.sun.corba.se.impl.orbutil.ORBUtility;
|
import com.sun.corba.se.impl.orbutil.ORBUtility;
|
||||||
import com.sun.corba.se.impl.orbutil.ORBClassLoader;
|
|
||||||
|
|
||||||
import com.sun.corba.se.impl.util.RepositoryId;
|
import com.sun.corba.se.impl.util.RepositoryId;
|
||||||
|
|
||||||
import com.sun.corba.se.impl.logging.InterceptorsSystemException;
|
import com.sun.corba.se.impl.logging.InterceptorsSystemException;
|
||||||
import com.sun.corba.se.impl.logging.OMGSystemException;
|
import com.sun.corba.se.impl.logging.OMGSystemException;
|
||||||
|
|
||||||
|
import sun.corba.SharedSecrets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Implementation of the RequestInfo interface as specified in
|
* Implementation of the RequestInfo interface as specified in
|
||||||
* orbos/99-12-02 section 5.4.1.
|
* orbos/99-12-02 section 5.4.1.
|
||||||
|
@ -452,7 +453,8 @@ public abstract class RequestInfoImpl
|
||||||
|
|
||||||
// Find the read method on the helper class:
|
// Find the read method on the helper class:
|
||||||
String helperClassName = className + "Helper";
|
String helperClassName = className + "Helper";
|
||||||
Class helperClass = ORBClassLoader.loadClass( helperClassName );
|
Class<?> helperClass =
|
||||||
|
SharedSecrets.getJavaCorbaAccess().loadClass( helperClassName );
|
||||||
Class[] readParams = new Class[1];
|
Class[] readParams = new Class[1];
|
||||||
readParams[0] = org.omg.CORBA.portable.InputStream.class;
|
readParams[0] = org.omg.CORBA.portable.InputStream.class;
|
||||||
Method readMethod = helperClass.getMethod( "read", readParams );
|
Method readMethod = helperClass.getMethod( "read", readParams );
|
||||||
|
@ -512,7 +514,8 @@ public abstract class RequestInfoImpl
|
||||||
Class exceptionClass = userException.getClass();
|
Class exceptionClass = userException.getClass();
|
||||||
String className = exceptionClass.getName();
|
String className = exceptionClass.getName();
|
||||||
String helperClassName = className + "Helper";
|
String helperClassName = className + "Helper";
|
||||||
Class helperClass = ORBClassLoader.loadClass( helperClassName );
|
Class<?> helperClass =
|
||||||
|
SharedSecrets.getJavaCorbaAccess().loadClass( helperClassName );
|
||||||
|
|
||||||
// Find insert( Any, class ) method
|
// Find insert( Any, class ) method
|
||||||
Class[] insertMethodParams = new Class[2];
|
Class[] insertMethodParams = new Class[2];
|
||||||
|
@ -656,7 +659,8 @@ public abstract class RequestInfoImpl
|
||||||
// Convert the "core" service context to an
|
// Convert the "core" service context to an
|
||||||
// "IOP" ServiceContext by writing it to a
|
// "IOP" ServiceContext by writing it to a
|
||||||
// CDROutputStream and reading it back.
|
// CDROutputStream and reading it back.
|
||||||
EncapsOutputStream out = new EncapsOutputStream(myORB);
|
EncapsOutputStream out =
|
||||||
|
sun.corba.OutputStreamFactory.newEncapsOutputStream(myORB);
|
||||||
|
|
||||||
context.write( out, GIOPVersion.V1_2 );
|
context.write( out, GIOPVersion.V1_2 );
|
||||||
InputStream inputStream = out.create_input_stream();
|
InputStream inputStream = out.create_input_stream();
|
||||||
|
@ -692,8 +696,8 @@ public abstract class RequestInfoImpl
|
||||||
{
|
{
|
||||||
int id = 0 ;
|
int id = 0 ;
|
||||||
// Convert IOP.service_context to core.ServiceContext:
|
// Convert IOP.service_context to core.ServiceContext:
|
||||||
EncapsOutputStream outputStream = new EncapsOutputStream(
|
EncapsOutputStream outputStream =
|
||||||
myORB );
|
sun.corba.OutputStreamFactory.newEncapsOutputStream(myORB);
|
||||||
InputStream inputStream = null;
|
InputStream inputStream = null;
|
||||||
UnknownServiceContext coreServiceContext = null;
|
UnknownServiceContext coreServiceContext = null;
|
||||||
ServiceContextHelper.write( outputStream, service_context );
|
ServiceContextHelper.write( outputStream, service_context );
|
||||||
|
|
|
@ -300,11 +300,11 @@ public class IIOPInputStream
|
||||||
resetStream();
|
resetStream();
|
||||||
}
|
}
|
||||||
|
|
||||||
public final void setOrbStream(org.omg.CORBA_2_3.portable.InputStream os) {
|
final void setOrbStream(org.omg.CORBA_2_3.portable.InputStream os) {
|
||||||
orbStream = os;
|
orbStream = os;
|
||||||
}
|
}
|
||||||
|
|
||||||
public final org.omg.CORBA_2_3.portable.InputStream getOrbStream() {
|
final org.omg.CORBA_2_3.portable.InputStream getOrbStream() {
|
||||||
return orbStream;
|
return orbStream;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -327,11 +327,11 @@ public class IIOPInputStream
|
||||||
return (javax.rmi.CORBA.ValueHandler) vhandler;
|
return (javax.rmi.CORBA.ValueHandler) vhandler;
|
||||||
}
|
}
|
||||||
|
|
||||||
public final void increaseRecursionDepth(){
|
final void increaseRecursionDepth(){
|
||||||
recursionDepth++;
|
recursionDepth++;
|
||||||
}
|
}
|
||||||
|
|
||||||
public final int decreaseRecursionDepth(){
|
final int decreaseRecursionDepth(){
|
||||||
return --recursionDepth;
|
return --recursionDepth;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1998, 2004, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -124,19 +124,19 @@ public class IIOPOutputStream
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public final void setOrbStream(org.omg.CORBA_2_3.portable.OutputStream os) {
|
final void setOrbStream(org.omg.CORBA_2_3.portable.OutputStream os) {
|
||||||
orbStream = os;
|
orbStream = os;
|
||||||
}
|
}
|
||||||
|
|
||||||
public final org.omg.CORBA_2_3.portable.OutputStream getOrbStream() {
|
final org.omg.CORBA_2_3.portable.OutputStream getOrbStream() {
|
||||||
return orbStream;
|
return orbStream;
|
||||||
}
|
}
|
||||||
|
|
||||||
public final void increaseRecursionDepth(){
|
final void increaseRecursionDepth(){
|
||||||
recursionDepth++;
|
recursionDepth++;
|
||||||
}
|
}
|
||||||
|
|
||||||
public final int decreaseRecursionDepth(){
|
final int decreaseRecursionDepth(){
|
||||||
return --recursionDepth;
|
return --recursionDepth;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -251,7 +251,7 @@ public abstract class InputStreamHook extends ObjectInputStream
|
||||||
}
|
}
|
||||||
|
|
||||||
protected abstract byte getStreamFormatVersion();
|
protected abstract byte getStreamFormatVersion();
|
||||||
protected abstract org.omg.CORBA_2_3.portable.InputStream getOrbStream();
|
abstract org.omg.CORBA_2_3.portable.InputStream getOrbStream();
|
||||||
|
|
||||||
// Description of possible actions
|
// Description of possible actions
|
||||||
protected static class ReadObjectState {
|
protected static class ReadObjectState {
|
||||||
|
|
|
@ -179,7 +179,7 @@ public abstract class OutputStreamHook extends ObjectOutputStream
|
||||||
putFields.write(this);
|
putFields.write(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
public abstract org.omg.CORBA_2_3.portable.OutputStream getOrbStream();
|
abstract org.omg.CORBA_2_3.portable.OutputStream getOrbStream();
|
||||||
|
|
||||||
protected abstract void beginOptionalCustomData();
|
protected abstract void beginOptionalCustomData();
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -98,6 +98,14 @@ public class ValueUtility {
|
||||||
public ValueHandlerImpl newValueHandlerImpl() {
|
public ValueHandlerImpl newValueHandlerImpl() {
|
||||||
return ValueHandlerImpl.getInstance();
|
return ValueHandlerImpl.getInstance();
|
||||||
}
|
}
|
||||||
|
public Class<?> loadClass(String className) throws ClassNotFoundException {
|
||||||
|
if (Thread.currentThread().getContextClassLoader() != null) {
|
||||||
|
return Thread.currentThread().getContextClassLoader().
|
||||||
|
loadClass(className);
|
||||||
|
} else {
|
||||||
|
return ClassLoader.getSystemClassLoader().loadClass(className);
|
||||||
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -128,7 +128,8 @@ public class EncapsulationUtility
|
||||||
static public void writeEncapsulation( WriteContents obj,
|
static public void writeEncapsulation( WriteContents obj,
|
||||||
OutputStream os )
|
OutputStream os )
|
||||||
{
|
{
|
||||||
EncapsOutputStream out = new EncapsOutputStream( (ORB)os.orb() ) ;
|
EncapsOutputStream out =
|
||||||
|
sun.corba.OutputStreamFactory.newEncapsOutputStream((ORB)os.orb());
|
||||||
|
|
||||||
out.putEndian() ;
|
out.putEndian() ;
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -95,7 +95,8 @@ public class GenericTaggedProfile extends GenericIdentifiable implements TaggedP
|
||||||
|
|
||||||
public org.omg.IOP.TaggedProfile getIOPProfile()
|
public org.omg.IOP.TaggedProfile getIOPProfile()
|
||||||
{
|
{
|
||||||
EncapsOutputStream os = new EncapsOutputStream( orb ) ;
|
EncapsOutputStream os =
|
||||||
|
sun.corba.OutputStreamFactory.newEncapsOutputStream(orb);
|
||||||
write( os ) ;
|
write( os ) ;
|
||||||
InputStream is = (InputStream)(os.create_input_stream()) ;
|
InputStream is = (InputStream)(os.create_input_stream()) ;
|
||||||
return org.omg.IOP.TaggedProfileHelper.read( is ) ;
|
return org.omg.IOP.TaggedProfileHelper.read( is ) ;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2006, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -213,7 +213,8 @@ public class IORImpl extends IdentifiableContainerBase implements IOR
|
||||||
{
|
{
|
||||||
StringWriter bs;
|
StringWriter bs;
|
||||||
|
|
||||||
MarshalOutputStream s = new EncapsOutputStream(factory);
|
MarshalOutputStream s =
|
||||||
|
sun.corba.OutputStreamFactory.newEncapsOutputStream(factory);
|
||||||
s.putEndian();
|
s.putEndian();
|
||||||
write( (OutputStream)s );
|
write( (OutputStream)s );
|
||||||
bs = new StringWriter();
|
bs = new StringWriter();
|
||||||
|
@ -237,7 +238,8 @@ public class IORImpl extends IdentifiableContainerBase implements IOR
|
||||||
}
|
}
|
||||||
|
|
||||||
public org.omg.IOP.IOR getIOPIOR() {
|
public org.omg.IOP.IOR getIOPIOR() {
|
||||||
EncapsOutputStream os = new EncapsOutputStream(factory);
|
EncapsOutputStream os =
|
||||||
|
sun.corba.OutputStreamFactory.newEncapsOutputStream(factory);
|
||||||
write(os);
|
write(os);
|
||||||
InputStream is = (InputStream) (os.create_input_stream());
|
InputStream is = (InputStream) (os.create_input_stream());
|
||||||
return org.omg.IOP.IORHelper.read(is);
|
return org.omg.IOP.IORHelper.read(is);
|
||||||
|
|
|
@ -87,7 +87,8 @@ public class ObjectKeyImpl implements ObjectKey
|
||||||
|
|
||||||
public byte[] getBytes( org.omg.CORBA.ORB orb )
|
public byte[] getBytes( org.omg.CORBA.ORB orb )
|
||||||
{
|
{
|
||||||
EncapsOutputStream os = new EncapsOutputStream( (ORB)orb ) ;
|
EncapsOutputStream os =
|
||||||
|
sun.corba.OutputStreamFactory.newEncapsOutputStream((ORB)orb);
|
||||||
write( os ) ;
|
write( os ) ;
|
||||||
return os.toByteArray() ;
|
return os.toByteArray() ;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -61,7 +61,8 @@ public class TaggedComponentFactoryFinderImpl extends
|
||||||
public TaggedComponent create( org.omg.CORBA.ORB orb,
|
public TaggedComponent create( org.omg.CORBA.ORB orb,
|
||||||
org.omg.IOP.TaggedComponent comp )
|
org.omg.IOP.TaggedComponent comp )
|
||||||
{
|
{
|
||||||
EncapsOutputStream os = new EncapsOutputStream( (ORB)orb ) ;
|
EncapsOutputStream os =
|
||||||
|
sun.corba.OutputStreamFactory.newEncapsOutputStream((ORB)orb);
|
||||||
org.omg.IOP.TaggedComponentHelper.write( os, comp ) ;
|
org.omg.IOP.TaggedComponentHelper.write( os, comp ) ;
|
||||||
InputStream is = (InputStream)(os.create_input_stream() ) ;
|
InputStream is = (InputStream)(os.create_input_stream() ) ;
|
||||||
// Skip the component ID: we just wrote it out above
|
// Skip the component ID: we just wrote it out above
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -247,7 +247,8 @@ public class IIOPProfileImpl extends IdentifiableBase implements IIOPProfile
|
||||||
|
|
||||||
public org.omg.IOP.TaggedProfile getIOPProfile()
|
public org.omg.IOP.TaggedProfile getIOPProfile()
|
||||||
{
|
{
|
||||||
EncapsOutputStream os = new EncapsOutputStream( orb ) ;
|
EncapsOutputStream os =
|
||||||
|
sun.corba.OutputStreamFactory.newEncapsOutputStream(orb);
|
||||||
os.write_long( getId() ) ;
|
os.write_long( getId() ) ;
|
||||||
write( os ) ;
|
write( os ) ;
|
||||||
InputStream is = (InputStream)(os.create_input_stream()) ;
|
InputStream is = (InputStream)(os.create_input_stream()) ;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -132,8 +132,9 @@ public class IIOPProfileTemplateImpl extends TaggedProfileTemplateBase
|
||||||
// Note that this cannot be accomplished with a codec!
|
// Note that this cannot be accomplished with a codec!
|
||||||
|
|
||||||
// Use the byte order of the given stream
|
// Use the byte order of the given stream
|
||||||
OutputStream encapsulatedOS = new EncapsOutputStream( (ORB)os.orb(),
|
OutputStream encapsulatedOS =
|
||||||
((CDROutputStream)os).isLittleEndian() ) ;
|
sun.corba.OutputStreamFactory.newEncapsOutputStream(
|
||||||
|
(ORB)os.orb(), ((CDROutputStream)os).isLittleEndian() ) ;
|
||||||
|
|
||||||
okeyTemplate.write( id, encapsulatedOS ) ;
|
okeyTemplate.write( id, encapsulatedOS ) ;
|
||||||
EncapsulationUtility.writeOutputStream( encapsulatedOS, os ) ;
|
EncapsulationUtility.writeOutputStream( encapsulatedOS, os ) ;
|
||||||
|
|
|
@ -147,6 +147,14 @@ public class StubDelegateImpl implements javax.rmi.CORBA.StubDelegate
|
||||||
return ior.equals( other.ior ) ;
|
return ior.equals( other.ior ) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int hashCode() {
|
||||||
|
if (ior == null) {
|
||||||
|
return 0;
|
||||||
|
} else {
|
||||||
|
return ior.hashCode();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a string representation of this stub. Returns the same string
|
* Returns a string representation of this stub. Returns the same string
|
||||||
* for all stubs that represent the same remote object.
|
* for all stubs that represent the same remote object.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -109,12 +109,9 @@ import com.sun.corba.se.impl.logging.OMGSystemException;
|
||||||
import com.sun.corba.se.impl.util.Utility;
|
import com.sun.corba.se.impl.util.Utility;
|
||||||
import com.sun.corba.se.impl.util.IdentityHashtable;
|
import com.sun.corba.se.impl.util.IdentityHashtable;
|
||||||
import com.sun.corba.se.impl.util.JDKBridge;
|
import com.sun.corba.se.impl.util.JDKBridge;
|
||||||
import com.sun.corba.se.impl.orbutil.ORBClassLoader;
|
|
||||||
import com.sun.corba.se.impl.logging.UtilSystemException;
|
import com.sun.corba.se.impl.logging.UtilSystemException;
|
||||||
import com.sun.corba.se.spi.logging.CORBALogDomains;
|
import com.sun.corba.se.spi.logging.CORBALogDomains;
|
||||||
import sun.corba.SharedSecrets;
|
import sun.corba.SharedSecrets;
|
||||||
import sun.corba.JavaCorbaAccess;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Provides utility methods that can be used by stubs and ties to
|
* Provides utility methods that can be used by stubs and ties to
|
||||||
|
@ -263,7 +260,7 @@ public class Util implements javax.rmi.CORBA.UtilDelegate
|
||||||
return new MarshalException(message,inner);
|
return new MarshalException(message,inner);
|
||||||
} else if (ex instanceof ACTIVITY_REQUIRED) {
|
} else if (ex instanceof ACTIVITY_REQUIRED) {
|
||||||
try {
|
try {
|
||||||
Class cl = ORBClassLoader.loadClass(
|
Class<?> cl = SharedSecrets.getJavaCorbaAccess().loadClass(
|
||||||
"javax.activity.ActivityRequiredException");
|
"javax.activity.ActivityRequiredException");
|
||||||
Class[] params = new Class[2];
|
Class[] params = new Class[2];
|
||||||
params[0] = java.lang.String.class;
|
params[0] = java.lang.String.class;
|
||||||
|
@ -279,7 +276,7 @@ public class Util implements javax.rmi.CORBA.UtilDelegate
|
||||||
}
|
}
|
||||||
} else if (ex instanceof ACTIVITY_COMPLETED) {
|
} else if (ex instanceof ACTIVITY_COMPLETED) {
|
||||||
try {
|
try {
|
||||||
Class cl = ORBClassLoader.loadClass(
|
Class<?> cl = SharedSecrets.getJavaCorbaAccess().loadClass(
|
||||||
"javax.activity.ActivityCompletedException");
|
"javax.activity.ActivityCompletedException");
|
||||||
Class[] params = new Class[2];
|
Class[] params = new Class[2];
|
||||||
params[0] = java.lang.String.class;
|
params[0] = java.lang.String.class;
|
||||||
|
@ -295,7 +292,7 @@ public class Util implements javax.rmi.CORBA.UtilDelegate
|
||||||
}
|
}
|
||||||
} else if (ex instanceof INVALID_ACTIVITY) {
|
} else if (ex instanceof INVALID_ACTIVITY) {
|
||||||
try {
|
try {
|
||||||
Class cl = ORBClassLoader.loadClass(
|
Class<?> cl = SharedSecrets.getJavaCorbaAccess().loadClass(
|
||||||
"javax.activity.InvalidActivityException");
|
"javax.activity.InvalidActivityException");
|
||||||
Class[] params = new Class[2];
|
Class[] params = new Class[2];
|
||||||
params[0] = java.lang.String.class;
|
params[0] = java.lang.String.class;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2002, 2004, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -48,7 +48,6 @@ import com.sun.corba.se.spi.transport.ReadTimeouts;
|
||||||
|
|
||||||
import com.sun.corba.se.impl.encoding.CodeSetComponentInfo ;
|
import com.sun.corba.se.impl.encoding.CodeSetComponentInfo ;
|
||||||
import com.sun.corba.se.impl.legacy.connection.USLPort;
|
import com.sun.corba.se.impl.legacy.connection.USLPort;
|
||||||
import com.sun.corba.se.impl.orbutil.ORBClassLoader ;
|
|
||||||
import com.sun.corba.se.impl.orbutil.ORBConstants ;
|
import com.sun.corba.se.impl.orbutil.ORBConstants ;
|
||||||
import com.sun.corba.se.impl.logging.ORBUtilSystemException ;
|
import com.sun.corba.se.impl.logging.ORBUtilSystemException ;
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2002, 2012, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -152,7 +152,6 @@ import com.sun.corba.se.impl.oa.toa.TOAFactory;
|
||||||
import com.sun.corba.se.impl.oa.poa.BadServerIdHandler;
|
import com.sun.corba.se.impl.oa.poa.BadServerIdHandler;
|
||||||
import com.sun.corba.se.impl.oa.poa.DelegateImpl;
|
import com.sun.corba.se.impl.oa.poa.DelegateImpl;
|
||||||
import com.sun.corba.se.impl.oa.poa.POAFactory;
|
import com.sun.corba.se.impl.oa.poa.POAFactory;
|
||||||
import com.sun.corba.se.impl.orbutil.ORBClassLoader;
|
|
||||||
import com.sun.corba.se.impl.orbutil.ORBConstants;
|
import com.sun.corba.se.impl.orbutil.ORBConstants;
|
||||||
import com.sun.corba.se.impl.orbutil.ORBUtility;
|
import com.sun.corba.se.impl.orbutil.ORBUtility;
|
||||||
import com.sun.corba.se.impl.orbutil.StackImpl;
|
import com.sun.corba.se.impl.orbutil.StackImpl;
|
||||||
|
@ -551,7 +550,7 @@ public class ORBImpl extends com.sun.corba.se.spi.orb.ORB
|
||||||
public synchronized org.omg.CORBA.portable.OutputStream create_output_stream()
|
public synchronized org.omg.CORBA.portable.OutputStream create_output_stream()
|
||||||
{
|
{
|
||||||
checkShutdownState();
|
checkShutdownState();
|
||||||
return new EncapsOutputStream(this);
|
return sun.corba.OutputStreamFactory.newEncapsOutputStream(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -149,7 +149,7 @@ public class ORBSingleton extends ORB
|
||||||
}
|
}
|
||||||
|
|
||||||
public OutputStream create_output_stream() {
|
public OutputStream create_output_stream() {
|
||||||
return new EncapsOutputStream(this);
|
return sun.corba.OutputStreamFactory.newEncapsOutputStream(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
public TypeCode create_struct_tc(String id,
|
public TypeCode create_struct_tc(String id,
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2002, 2012, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -78,7 +78,6 @@ import com.sun.corba.se.impl.encoding.OSFCodeSetRegistry ;
|
||||||
import com.sun.corba.se.impl.legacy.connection.USLPort ;
|
import com.sun.corba.se.impl.legacy.connection.USLPort ;
|
||||||
import com.sun.corba.se.impl.logging.ORBUtilSystemException ;
|
import com.sun.corba.se.impl.logging.ORBUtilSystemException ;
|
||||||
import com.sun.corba.se.impl.oa.poa.BadServerIdHandler ;
|
import com.sun.corba.se.impl.oa.poa.BadServerIdHandler ;
|
||||||
import com.sun.corba.se.impl.orbutil.ORBClassLoader ;
|
|
||||||
import com.sun.corba.se.impl.orbutil.ORBConstants ;
|
import com.sun.corba.se.impl.orbutil.ORBConstants ;
|
||||||
import com.sun.corba.se.impl.protocol.giopmsgheaders.KeyAddr ;
|
import com.sun.corba.se.impl.protocol.giopmsgheaders.KeyAddr ;
|
||||||
import com.sun.corba.se.impl.protocol.giopmsgheaders.ProfileAddr ;
|
import com.sun.corba.se.impl.protocol.giopmsgheaders.ProfileAddr ;
|
||||||
|
@ -86,6 +85,8 @@ import com.sun.corba.se.impl.protocol.giopmsgheaders.ReferenceAddr ;
|
||||||
import com.sun.corba.se.impl.transport.DefaultIORToSocketInfoImpl;
|
import com.sun.corba.se.impl.transport.DefaultIORToSocketInfoImpl;
|
||||||
import com.sun.corba.se.impl.transport.DefaultSocketFactoryImpl;
|
import com.sun.corba.se.impl.transport.DefaultSocketFactoryImpl;
|
||||||
|
|
||||||
|
import sun.corba.SharedSecrets;
|
||||||
|
|
||||||
/** Initialize the parser data for the standard ORB parser. This is used both
|
/** Initialize the parser data for the standard ORB parser. This is used both
|
||||||
* to implement ORBDataParserImpl and to provide the basic testing framework
|
* to implement ORBDataParserImpl and to provide the basic testing framework
|
||||||
* for ORBDataParserImpl.
|
* for ORBDataParserImpl.
|
||||||
|
@ -455,6 +456,10 @@ public class ParserTable {
|
||||||
return other instanceof TestBadServerIdHandler ;
|
return other instanceof TestBadServerIdHandler ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int hashCode() {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
public void handle( ObjectKey objectKey )
|
public void handle( ObjectKey objectKey )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -518,6 +523,10 @@ public class ParserTable {
|
||||||
return other instanceof TestLegacyORBSocketFactory ;
|
return other instanceof TestLegacyORBSocketFactory ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int hashCode() {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
public ServerSocket createServerSocket( String type, int port )
|
public ServerSocket createServerSocket( String type, int port )
|
||||||
{
|
{
|
||||||
return null ;
|
return null ;
|
||||||
|
@ -543,6 +552,10 @@ public class ParserTable {
|
||||||
return other instanceof TestORBSocketFactory ;
|
return other instanceof TestORBSocketFactory ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int hashCode() {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
public void setORB(ORB orb)
|
public void setORB(ORB orb)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -572,6 +585,10 @@ public class ParserTable {
|
||||||
return other instanceof TestIORToSocketInfo;
|
return other instanceof TestIORToSocketInfo;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int hashCode() {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
public List getSocketInfo(IOR ior)
|
public List getSocketInfo(IOR ior)
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
|
@ -608,6 +625,10 @@ public class ParserTable {
|
||||||
return other instanceof TestContactInfoListFactory;
|
return other instanceof TestContactInfoListFactory;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int hashCode() {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
public void setORB(ORB orb) { }
|
public void setORB(ORB orb) { }
|
||||||
|
|
||||||
public CorbaContactInfoList create( IOR ior ) { return null; }
|
public CorbaContactInfoList create( IOR ior ) { return null; }
|
||||||
|
@ -640,8 +661,8 @@ public class ParserTable {
|
||||||
String param = (String)value ;
|
String param = (String)value ;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Class legacySocketFactoryClass =
|
Class<?> legacySocketFactoryClass =
|
||||||
ORBClassLoader.loadClass(param);
|
SharedSecrets.getJavaCorbaAccess().loadClass(param);
|
||||||
// For security reasons avoid creating an instance if
|
// For security reasons avoid creating an instance if
|
||||||
// this socket factory class is not one that would fail
|
// this socket factory class is not one that would fail
|
||||||
// the class cast anyway.
|
// the class cast anyway.
|
||||||
|
@ -670,7 +691,8 @@ public class ParserTable {
|
||||||
String param = (String)value ;
|
String param = (String)value ;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Class socketFactoryClass = ORBClassLoader.loadClass(param);
|
Class<?> socketFactoryClass =
|
||||||
|
SharedSecrets.getJavaCorbaAccess().loadClass(param);
|
||||||
// For security reasons avoid creating an instance if
|
// For security reasons avoid creating an instance if
|
||||||
// this socket factory class is not one that would fail
|
// this socket factory class is not one that would fail
|
||||||
// the class cast anyway.
|
// the class cast anyway.
|
||||||
|
@ -699,7 +721,8 @@ public class ParserTable {
|
||||||
String param = (String)value ;
|
String param = (String)value ;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Class iorToSocketInfoClass = ORBClassLoader.loadClass(param);
|
Class<?> iorToSocketInfoClass =
|
||||||
|
SharedSecrets.getJavaCorbaAccess().loadClass(param);
|
||||||
// For security reasons avoid creating an instance if
|
// For security reasons avoid creating an instance if
|
||||||
// this socket factory class is not one that would fail
|
// this socket factory class is not one that would fail
|
||||||
// the class cast anyway.
|
// the class cast anyway.
|
||||||
|
@ -728,7 +751,8 @@ public class ParserTable {
|
||||||
String param = (String)value ;
|
String param = (String)value ;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Class iiopPrimaryToContactInfoClass = ORBClassLoader.loadClass(param);
|
Class<?> iiopPrimaryToContactInfoClass =
|
||||||
|
SharedSecrets.getJavaCorbaAccess().loadClass(param);
|
||||||
// For security reasons avoid creating an instance if
|
// For security reasons avoid creating an instance if
|
||||||
// this socket factory class is not one that would fail
|
// this socket factory class is not one that would fail
|
||||||
// the class cast anyway.
|
// the class cast anyway.
|
||||||
|
@ -757,8 +781,8 @@ public class ParserTable {
|
||||||
String param = (String)value ;
|
String param = (String)value ;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Class contactInfoListFactoryClass =
|
Class<?> contactInfoListFactoryClass =
|
||||||
ORBClassLoader.loadClass(param);
|
SharedSecrets.getJavaCorbaAccess().loadClass(param);
|
||||||
// For security reasons avoid creating an instance if
|
// For security reasons avoid creating an instance if
|
||||||
// this socket factory class is not one that would fail
|
// this socket factory class is not one that would fail
|
||||||
// the class cast anyway.
|
// the class cast anyway.
|
||||||
|
@ -865,6 +889,10 @@ public class ParserTable {
|
||||||
return other instanceof TestORBInitializer1 ;
|
return other instanceof TestORBInitializer1 ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int hashCode() {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
public void pre_init( ORBInitInfo info )
|
public void pre_init( ORBInitInfo info )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -882,6 +910,10 @@ public class ParserTable {
|
||||||
return other instanceof TestORBInitializer2 ;
|
return other instanceof TestORBInitializer2 ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int hashCode() {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
public void pre_init( ORBInitInfo info )
|
public void pre_init( ORBInitInfo info )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -950,6 +982,8 @@ public class ParserTable {
|
||||||
{
|
{
|
||||||
return other instanceof TestAcceptor1 ;
|
return other instanceof TestAcceptor1 ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int hashCode() { return 1; }
|
||||||
public boolean initialize() { return true; }
|
public boolean initialize() { return true; }
|
||||||
public boolean initialized() { return true; }
|
public boolean initialized() { return true; }
|
||||||
public String getConnectionCacheType() { return "FOO"; }
|
public String getConnectionCacheType() { return "FOO"; }
|
||||||
|
@ -981,6 +1015,7 @@ public class ParserTable {
|
||||||
{
|
{
|
||||||
return other instanceof TestAcceptor2 ;
|
return other instanceof TestAcceptor2 ;
|
||||||
}
|
}
|
||||||
|
public int hashCode() { return 1; }
|
||||||
public boolean initialize() { return true; }
|
public boolean initialize() { return true; }
|
||||||
public boolean initialized() { return true; }
|
public boolean initialized() { return true; }
|
||||||
public String getConnectionCacheType() { return "FOO"; }
|
public String getConnectionCacheType() { return "FOO"; }
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -90,6 +90,8 @@ import com.sun.corba.se.impl.logging.ORBUtilSystemException ;
|
||||||
import com.sun.corba.se.impl.logging.OMGSystemException ;
|
import com.sun.corba.se.impl.logging.OMGSystemException ;
|
||||||
import com.sun.corba.se.impl.ior.iiop.JavaSerializationComponent;
|
import com.sun.corba.se.impl.ior.iiop.JavaSerializationComponent;
|
||||||
|
|
||||||
|
import sun.corba.SharedSecrets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handy class full of static functions that don't belong in util.Utility for pure ORB reasons.
|
* Handy class full of static functions that don't belong in util.Utility for pure ORB reasons.
|
||||||
*/
|
*/
|
||||||
|
@ -262,8 +264,8 @@ public final class ORBUtility {
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
String name = classNameOf(strm.read_string());
|
String name = classNameOf(strm.read_string());
|
||||||
SystemException ex
|
SystemException ex = (SystemException)SharedSecrets.
|
||||||
= (SystemException)ORBClassLoader.loadClass(name).newInstance();
|
getJavaCorbaAccess().loadClass(name).newInstance();
|
||||||
ex.minor = strm.read_long();
|
ex.minor = strm.read_long();
|
||||||
ex.completed = CompletionStatus.from_int(strm.read_long());
|
ex.completed = CompletionStatus.from_int(strm.read_long());
|
||||||
return ex;
|
return ex;
|
||||||
|
|
|
@ -151,7 +151,9 @@ public final class RepIdDelegator
|
||||||
}
|
}
|
||||||
|
|
||||||
// Constructor used for factory/utility cases
|
// Constructor used for factory/utility cases
|
||||||
public RepIdDelegator() {}
|
public RepIdDelegator() {
|
||||||
|
this(null);
|
||||||
|
}
|
||||||
|
|
||||||
// Constructor used by getIdFromString. All non-static
|
// Constructor used by getIdFromString. All non-static
|
||||||
// RepositoryId methods will use the provided delegate.
|
// RepositoryId methods will use the provided delegate.
|
||||||
|
@ -159,7 +161,7 @@ public final class RepIdDelegator
|
||||||
this.delegate = _delegate;
|
this.delegate = _delegate;
|
||||||
}
|
}
|
||||||
|
|
||||||
private RepositoryId delegate;
|
private final RepositoryId delegate;
|
||||||
|
|
||||||
public String toString() {
|
public String toString() {
|
||||||
if (delegate != null)
|
if (delegate != null)
|
||||||
|
@ -174,4 +176,12 @@ public final class RepIdDelegator
|
||||||
else
|
else
|
||||||
return super.equals(obj);
|
return super.equals(obj);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int hashCode() {
|
||||||
|
if (delegate != null) {
|
||||||
|
return delegate.hashCode();
|
||||||
|
} else {
|
||||||
|
return super.hashCode();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
orbd.usage=\uC0AC\uC6A9\uBC95: {0} <options> \n\n\uC5EC\uAE30\uC11C <options>\uB294 \uB2E4\uC74C\uACFC \uAC19\uC2B5\uB2C8\uB2E4.\n -port ORBD\uAC00 \uC2DC\uC791\uB418\uC5B4\uC57C \uD558\uB294 \uD65C\uC131 \uD3EC\uD2B8\uB85C, \uAE30\uBCF8\uAC12\uC740 1049\uC785\uB2C8\uB2E4(\uC120\uD0DD \uC0AC\uD56D).\n -defaultdb ORBD \uD30C\uC77C\uC758 \uB514\uB809\uD1A0\uB9AC\uB85C, \uAE30\uBCF8\uAC12\uC740 "./orb.db"\uC785\uB2C8\uB2E4(\uC120\uD0DD \uC0AC\uD56D).\n -serverid ORBD\uC758 \uC11C\uBC84 ID\uB85C, \uAE30\uBCF8\uAC12\uC740 1 \uC785\uB2C8\uB2E4(\uC120\uD0DD \uC0AC\uD56D).\n -ORBInitialPort \uCD08\uAE30 \uD3EC\uD2B8\uC785\uB2C8\uB2E4(\uD544\uC218).\n -ORBInitialHost \uCD08\uAE30 HostName\uC785\uB2C8\uB2E4(\uD544\uC218).\n
|
orbd.usage=\uC0AC\uC6A9\uBC95: {0} <options> \n\n\uC5EC\uAE30\uC11C <options>\uB294 \uB2E4\uC74C\uACFC \uAC19\uC2B5\uB2C8\uB2E4.\n -port ORBD\uAC00 \uC2DC\uC791\uB418\uC5B4\uC57C \uD558\uB294 \uD65C\uC131 \uD3EC\uD2B8\uB85C, \uAE30\uBCF8\uAC12\uC740 1049\uC785\uB2C8\uB2E4(\uC120\uD0DD \uC0AC\uD56D).\n -defaultdb ORBD \uD30C\uC77C\uC758 \uB514\uB809\uD1A0\uB9AC\uB85C, \uAE30\uBCF8\uAC12\uC740 "./orb.db"\uC785\uB2C8\uB2E4(\uC120\uD0DD \uC0AC\uD56D).\n -serverid ORBD\uC758 \uC11C\uBC84 ID\uB85C, \uAE30\uBCF8\uAC12\uC740 1 \uC785\uB2C8\uB2E4(\uC120\uD0DD \uC0AC\uD56D).\n -ORBInitialPort \uCD08\uAE30 \uD3EC\uD2B8\uC785\uB2C8\uB2E4(\uD544\uC218).\n -ORBInitialHost \uCD08\uAE30 HostName\uC785\uB2C8\uB2E4(\uD544\uC218).\n
|
||||||
|
|
||||||
servertool.usage=\uC0AC\uC6A9\uBC95: {0} <options> \n\n\uC5EC\uAE30\uC11C <options>\uB294 \uB2E4\uC74C\uACFC \uAC19\uC2B5\uB2C8\uB2E4.\n -ORBInitialPort \uCD08\uAE30 \uD3EC\uD2B8\uC785\uB2C8\uB2E4(\uD544\uC218).\n -ORBInitialHost \uCD08\uAE30 HostName\uC785\uB2C8\uB2E4(\uD544\uC218).\n
|
servertool.usage=\uC0AC\uC6A9\uBC95: {0} <options> \n\n\uC5EC\uAE30\uC11C <options>\uB294 \uB2E4\uC74C\uACFC \uAC19\uC2B5\uB2C8\uB2E4.\n -ORBInitialPort \uCD08\uAE30 \uD3EC\uD2B8\uC785\uB2C8\uB2E4(\uD544\uC218).\n -ORBInitialHost \uCD08\uAE30 HostName\uC785\uB2C8\uB2E4(\uD544\uC218).\n
|
||||||
servertool.banner=\n\nJava IDL \uC11C\uBC84 \uD234 \uC2DC\uC791 \n\uD504\uB86C\uD504\uD2B8\uC5D0 \uBA85\uB839\uC744 \uC785\uB825\uD558\uC2ED\uC2DC\uC624.\n
|
servertool.banner=\n\nJava IDL \uC11C\uBC84 \uD234 \uC2DC\uC791 \n\uD504\uB86C\uD504\uD2B8\uC5D0 \uBA85\uB839\uC744 \uC785\uB825\uD558\uC2ED\uC2DC\uC624. \n
|
||||||
servertool.shorthelp=\n\n\t\uC0AC\uC6A9 \uAC00\uB2A5\uD55C \uBA85\uB839: \n\t------------------- \n
|
servertool.shorthelp=\n\n\t\uC0AC\uC6A9 \uAC00\uB2A5\uD55C \uBA85\uB839: \n\t------------------- \n
|
||||||
servertool.baddef=\uC798\uBABB\uB41C \uC11C\uBC84 \uC815\uC758: {0}
|
servertool.baddef=\uC798\uBABB\uB41C \uC11C\uBC84 \uC815\uC758: {0}
|
||||||
servertool.nosuchserver=\t\uD574\uB2F9 \uC11C\uBC84\uB97C \uCC3E\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
servertool.nosuchserver=\t\uD574\uB2F9 \uC11C\uBC84\uB97C \uCC3E\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -1794,8 +1794,7 @@ public class CorbaMessageMediatorImpl
|
||||||
|
|
||||||
if (msg.getGIOPVersion().lessThan(GIOPVersion.V1_2)) {
|
if (msg.getGIOPVersion().lessThan(GIOPVersion.V1_2)) {
|
||||||
// locate msgs 1.0 & 1.1 :=> grow,
|
// locate msgs 1.0 & 1.1 :=> grow,
|
||||||
// REVISIT - build from factory
|
outputObject = sun.corba.OutputStreamFactory.newCDROutputObject(
|
||||||
outputObject = new CDROutputObject(
|
|
||||||
(ORB) messageMediator.getBroker(),
|
(ORB) messageMediator.getBroker(),
|
||||||
this,
|
this,
|
||||||
GIOPVersion.V1_0,
|
GIOPVersion.V1_0,
|
||||||
|
@ -1804,8 +1803,7 @@ public class CorbaMessageMediatorImpl
|
||||||
ORBConstants.STREAM_FORMAT_VERSION_1);
|
ORBConstants.STREAM_FORMAT_VERSION_1);
|
||||||
} else {
|
} else {
|
||||||
// 1.2 :=> stream
|
// 1.2 :=> stream
|
||||||
// REVISIT - build from factory
|
outputObject = sun.corba.OutputStreamFactory.newCDROutputObject(
|
||||||
outputObject = new CDROutputObject(
|
|
||||||
(ORB) messageMediator.getBroker(),
|
(ORB) messageMediator.getBroker(),
|
||||||
messageMediator,
|
messageMediator,
|
||||||
reply,
|
reply,
|
||||||
|
@ -1959,7 +1957,8 @@ public class CorbaMessageMediatorImpl
|
||||||
ReplyMessage.NEEDS_ADDRESSING_MODE,
|
ReplyMessage.NEEDS_ADDRESSING_MODE,
|
||||||
null, null);
|
null, null);
|
||||||
// REVISIT: via acceptor factory.
|
// REVISIT: via acceptor factory.
|
||||||
CDROutputObject outputObject = new CDROutputObject(
|
CDROutputObject outputObject =
|
||||||
|
sun.corba.OutputStreamFactory.newCDROutputObject(
|
||||||
(ORB)messageMediator.getBroker(),
|
(ORB)messageMediator.getBroker(),
|
||||||
this,
|
this,
|
||||||
messageMediator.getGIOPVersion(),
|
messageMediator.getGIOPVersion(),
|
||||||
|
@ -2126,7 +2125,7 @@ public class CorbaMessageMediatorImpl
|
||||||
ex.printStackTrace(pw);
|
ex.printStackTrace(pw);
|
||||||
pw.flush(); // NOTE: you must flush or baos will be empty.
|
pw.flush(); // NOTE: you must flush or baos will be empty.
|
||||||
EncapsOutputStream encapsOutputStream =
|
EncapsOutputStream encapsOutputStream =
|
||||||
new EncapsOutputStream((ORB)mediator.getBroker());
|
sun.corba.OutputStreamFactory.newEncapsOutputStream((ORB)mediator.getBroker());
|
||||||
encapsOutputStream.putEndian();
|
encapsOutputStream.putEndian();
|
||||||
encapsOutputStream.write_wstring(baos.toString());
|
encapsOutputStream.write_wstring(baos.toString());
|
||||||
UnknownServiceContext serviceContext =
|
UnknownServiceContext serviceContext =
|
||||||
|
@ -2203,12 +2202,11 @@ public class CorbaMessageMediatorImpl
|
||||||
// REVISIT = do not use null.
|
// REVISIT = do not use null.
|
||||||
//
|
//
|
||||||
if (messageMediator.getConnection() == null) {
|
if (messageMediator.getConnection() == null) {
|
||||||
// REVISIT - needs factory
|
|
||||||
replyOutputObject =
|
replyOutputObject =
|
||||||
new CDROutputObject(orb, messageMediator,
|
sun.corba.OutputStreamFactory.newCDROutputObject(orb,
|
||||||
messageMediator.getReplyHeader(),
|
messageMediator, messageMediator.getReplyHeader(),
|
||||||
messageMediator.getStreamFormatVersion(),
|
messageMediator.getStreamFormatVersion(),
|
||||||
BufferManagerFactory.GROW);
|
BufferManagerFactory.GROW);
|
||||||
} else {
|
} else {
|
||||||
replyOutputObject = messageMediator.getConnection().getAcceptor()
|
replyOutputObject = messageMediator.getConnection().getAcceptor()
|
||||||
.createOutputObject(messageMediator.getBroker(), messageMediator);
|
.createOutputObject(messageMediator.getBroker(), messageMediator);
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -41,7 +41,6 @@ import com.sun.corba.se.impl.encoding.CDROutputStream;
|
||||||
|
|
||||||
import com.sun.corba.se.impl.orbutil.ORBUtility;
|
import com.sun.corba.se.impl.orbutil.ORBUtility;
|
||||||
import com.sun.corba.se.impl.orbutil.ORBConstants;
|
import com.sun.corba.se.impl.orbutil.ORBConstants;
|
||||||
import com.sun.corba.se.impl.orbutil.ORBClassLoader;
|
|
||||||
|
|
||||||
import com.sun.corba.se.spi.logging.CORBALogDomains ;
|
import com.sun.corba.se.spi.logging.CORBALogDomains ;
|
||||||
import com.sun.corba.se.impl.logging.ORBUtilSystemException ;
|
import com.sun.corba.se.impl.logging.ORBUtilSystemException ;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -60,9 +60,10 @@ import com.sun.corba.se.impl.encoding.CDRInputStream_1_0;
|
||||||
import com.sun.corba.se.impl.logging.ORBUtilSystemException ;
|
import com.sun.corba.se.impl.logging.ORBUtilSystemException ;
|
||||||
import com.sun.corba.se.impl.orbutil.ORBUtility;
|
import com.sun.corba.se.impl.orbutil.ORBUtility;
|
||||||
import com.sun.corba.se.impl.orbutil.ORBConstants;
|
import com.sun.corba.se.impl.orbutil.ORBConstants;
|
||||||
import com.sun.corba.se.impl.orbutil.ORBClassLoader;
|
|
||||||
import com.sun.corba.se.impl.protocol.AddressingDispositionException;
|
import com.sun.corba.se.impl.protocol.AddressingDispositionException;
|
||||||
|
|
||||||
|
import sun.corba.SharedSecrets;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class acts as the base class for the various GIOP message types. This
|
* This class acts as the base class for the various GIOP message types. This
|
||||||
* also serves as a factory to create various message types. We currently
|
* also serves as a factory to create various message types. We currently
|
||||||
|
@ -909,7 +910,8 @@ public abstract class MessageBase implements Message{
|
||||||
SystemException sysEx = null;
|
SystemException sysEx = null;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Class clazz = ORBClassLoader.loadClass(exClassName);
|
Class<?> clazz =
|
||||||
|
SharedSecrets.getJavaCorbaAccess().loadClass(exClassName);
|
||||||
if (message == null) {
|
if (message == null) {
|
||||||
sysEx = (SystemException) clazz.newInstance();
|
sysEx = (SystemException) clazz.newInstance();
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -37,7 +37,6 @@ import com.sun.corba.se.spi.orb.ORB;
|
||||||
import com.sun.corba.se.spi.servicecontext.ServiceContexts;
|
import com.sun.corba.se.spi.servicecontext.ServiceContexts;
|
||||||
import com.sun.corba.se.spi.ior.iiop.GIOPVersion;
|
import com.sun.corba.se.spi.ior.iiop.GIOPVersion;
|
||||||
import com.sun.corba.se.impl.orbutil.ORBUtility;
|
import com.sun.corba.se.impl.orbutil.ORBUtility;
|
||||||
import com.sun.corba.se.impl.orbutil.ORBClassLoader;
|
|
||||||
import com.sun.corba.se.spi.ior.IOR;
|
import com.sun.corba.se.spi.ior.IOR;
|
||||||
import com.sun.corba.se.impl.encoding.CDRInputStream;
|
import com.sun.corba.se.impl.encoding.CDRInputStream;
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -37,7 +37,6 @@ import com.sun.corba.se.spi.orb.ORB;
|
||||||
import com.sun.corba.se.spi.servicecontext.ServiceContexts;
|
import com.sun.corba.se.spi.servicecontext.ServiceContexts;
|
||||||
import com.sun.corba.se.spi.ior.iiop.GIOPVersion;
|
import com.sun.corba.se.spi.ior.iiop.GIOPVersion;
|
||||||
import com.sun.corba.se.impl.orbutil.ORBUtility;
|
import com.sun.corba.se.impl.orbutil.ORBUtility;
|
||||||
import com.sun.corba.se.impl.orbutil.ORBClassLoader;
|
|
||||||
import com.sun.corba.se.spi.ior.IOR;
|
import com.sun.corba.se.spi.ior.IOR;
|
||||||
import com.sun.corba.se.impl.encoding.CDRInputStream;
|
import com.sun.corba.se.impl.encoding.CDRInputStream;
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2003, 2004, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -214,7 +214,7 @@ public abstract class CorbaContactInfoBase
|
||||||
messageMediator;
|
messageMediator;
|
||||||
|
|
||||||
OutputObject outputObject =
|
OutputObject outputObject =
|
||||||
new CDROutputObject(orb, messageMediator,
|
sun.corba.OutputStreamFactory.newCDROutputObject(orb, messageMediator,
|
||||||
corbaMessageMediator.getRequestHeader(),
|
corbaMessageMediator.getRequestHeader(),
|
||||||
corbaMessageMediator.getStreamFormatVersion());
|
corbaMessageMediator.getStreamFormatVersion());
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -134,7 +134,7 @@ public class SharedCDRContactInfoImpl
|
||||||
messageMediator;
|
messageMediator;
|
||||||
// NOTE: GROW.
|
// NOTE: GROW.
|
||||||
OutputObject outputObject =
|
OutputObject outputObject =
|
||||||
new CDROutputObject(orb, messageMediator,
|
sun.corba.OutputStreamFactory.newCDROutputObject(orb, messageMediator,
|
||||||
corbaMessageMediator.getRequestHeader(),
|
corbaMessageMediator.getRequestHeader(),
|
||||||
corbaMessageMediator.getStreamFormatVersion(),
|
corbaMessageMediator.getStreamFormatVersion(),
|
||||||
BufferManagerFactory.GROW);
|
BufferManagerFactory.GROW);
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -534,9 +534,9 @@ public class SocketOrChannelAcceptorImpl
|
||||||
{
|
{
|
||||||
CorbaMessageMediator corbaMessageMediator = (CorbaMessageMediator)
|
CorbaMessageMediator corbaMessageMediator = (CorbaMessageMediator)
|
||||||
messageMediator;
|
messageMediator;
|
||||||
return new CDROutputObject((ORB) broker, corbaMessageMediator,
|
return sun.corba.OutputStreamFactory.newCDROutputObject((ORB) broker,
|
||||||
corbaMessageMediator.getReplyHeader(),
|
corbaMessageMediator, corbaMessageMediator.getReplyHeader(),
|
||||||
corbaMessageMediator.getStreamFormatVersion());
|
corbaMessageMediator.getStreamFormatVersion());
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////
|
////////////////////////////////////////////////////
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -1587,8 +1587,8 @@ public class SocketOrChannelConnectionImpl
|
||||||
{
|
{
|
||||||
// REVISIT: See comments in CDROutputObject constructor.
|
// REVISIT: See comments in CDROutputObject constructor.
|
||||||
CDROutputObject outputObject =
|
CDROutputObject outputObject =
|
||||||
new CDROutputObject((ORB)orb, null, giopVersion, this, msg,
|
sun.corba.OutputStreamFactory.newCDROutputObject((ORB)orb, null, giopVersion,
|
||||||
ORBConstants.STREAM_FORMAT_VERSION_1);
|
this, msg, ORBConstants.STREAM_FORMAT_VERSION_1);
|
||||||
msg.write(outputObject);
|
msg.write(outputObject);
|
||||||
|
|
||||||
outputObject.writeTo(this);
|
outputObject.writeTo(this);
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -42,7 +42,8 @@ public abstract class TaggedComponentBase extends IdentifiableBase
|
||||||
public org.omg.IOP.TaggedComponent getIOPComponent(
|
public org.omg.IOP.TaggedComponent getIOPComponent(
|
||||||
org.omg.CORBA.ORB orb )
|
org.omg.CORBA.ORB orb )
|
||||||
{
|
{
|
||||||
EncapsOutputStream os = new EncapsOutputStream( (ORB)orb ) ;
|
EncapsOutputStream os =
|
||||||
|
sun.corba.OutputStreamFactory.newEncapsOutputStream((ORB)orb);
|
||||||
write( os ) ;
|
write( os ) ;
|
||||||
InputStream is = (InputStream)(os.create_input_stream() ) ;
|
InputStream is = (InputStream)(os.create_input_stream() ) ;
|
||||||
return org.omg.IOP.TaggedComponentHelper.read( is ) ;
|
return org.omg.IOP.TaggedComponentHelper.read( is ) ;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2002, 2012, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -97,8 +97,8 @@ import com.sun.corba.se.impl.logging.OMGSystemException ;
|
||||||
|
|
||||||
import com.sun.corba.se.impl.presentation.rmi.PresentationManagerImpl ;
|
import com.sun.corba.se.impl.presentation.rmi.PresentationManagerImpl ;
|
||||||
|
|
||||||
import com.sun.corba.se.impl.orbutil.ORBClassLoader ;
|
|
||||||
import sun.awt.AppContext;
|
import sun.awt.AppContext;
|
||||||
|
import sun.corba.SharedSecrets;
|
||||||
|
|
||||||
public abstract class ORB extends com.sun.corba.se.org.omg.CORBA.ORB
|
public abstract class ORB extends com.sun.corba.se.org.omg.CORBA.ORB
|
||||||
implements Broker, TypeCodeFactory
|
implements Broker, TypeCodeFactory
|
||||||
|
@ -201,7 +201,7 @@ public abstract class ORB extends com.sun.corba.se.org.omg.CORBA.ORB
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// First try the configured class name, if any
|
// First try the configured class name, if any
|
||||||
Class cls = ORBClassLoader.loadClass( className ) ;
|
Class<?> cls = SharedSecrets.getJavaCorbaAccess().loadClass( className ) ;
|
||||||
sff = (PresentationManager.StubFactoryFactory)cls.newInstance() ;
|
sff = (PresentationManager.StubFactoryFactory)cls.newInstance() ;
|
||||||
} catch (Exception exc) {
|
} catch (Exception exc) {
|
||||||
// Use the default. Log the error as a warning.
|
// Use the default. Log the error as a warning.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -35,9 +35,10 @@ import java.net.MalformedURLException ;
|
||||||
import com.sun.corba.se.spi.logging.CORBALogDomains ;
|
import com.sun.corba.se.spi.logging.CORBALogDomains ;
|
||||||
|
|
||||||
import com.sun.corba.se.impl.logging.ORBUtilSystemException ;
|
import com.sun.corba.se.impl.logging.ORBUtilSystemException ;
|
||||||
import com.sun.corba.se.impl.orbutil.ORBClassLoader ;
|
|
||||||
import com.sun.corba.se.impl.orbutil.ObjectUtility ;
|
import com.sun.corba.se.impl.orbutil.ObjectUtility ;
|
||||||
|
|
||||||
|
import sun.corba.SharedSecrets;
|
||||||
|
|
||||||
/** This is a static factory class for commonly used operations
|
/** This is a static factory class for commonly used operations
|
||||||
* for property parsing. The following operations are supported:
|
* for property parsing. The following operations are supported:
|
||||||
* <ul>
|
* <ul>
|
||||||
|
@ -247,7 +248,8 @@ public abstract class OperationFactory {
|
||||||
String className = getString( value ) ;
|
String className = getString( value ) ;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Class result = ORBClassLoader.loadClass( className ) ;
|
Class<?> result =
|
||||||
|
SharedSecrets.getJavaCorbaAccess().loadClass( className ) ;
|
||||||
return result ;
|
return result ;
|
||||||
} catch (Exception exc) {
|
} catch (Exception exc) {
|
||||||
ORBUtilSystemException wrapper = ORBUtilSystemException.get(
|
ORBUtilSystemException wrapper = ORBUtilSystemException.get(
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1998, 2003, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -92,7 +92,8 @@ public abstract class ServiceContext {
|
||||||
*/
|
*/
|
||||||
public void write(OutputStream s, GIOPVersion gv) throws SystemException
|
public void write(OutputStream s, GIOPVersion gv) throws SystemException
|
||||||
{
|
{
|
||||||
EncapsOutputStream os = new EncapsOutputStream( (ORB)(s.orb()), gv ) ;
|
EncapsOutputStream os =
|
||||||
|
sun.corba.OutputStreamFactory.newEncapsOutputStream((ORB)(s.orb()), gv);
|
||||||
os.putEndian() ;
|
os.putEndian() ;
|
||||||
writeData( os ) ;
|
writeData( os ) ;
|
||||||
byte[] data = os.toByteArray() ;
|
byte[] data = os.toByteArray() ;
|
||||||
|
|
|
@ -64,7 +64,7 @@
|
||||||
#
|
#
|
||||||
# Translator: Start Translating
|
# Translator: Start Translating
|
||||||
|
|
||||||
Compile.parsing=\u6B63\u5728\u5BF9 %0 \u8FDB\u884C\u8BED\u6CD5\u5206\u6790
|
Compile.parsing=\u6B63\u5728\u89E3\u6790 %0
|
||||||
Compile.parseDone=\u5B8C\u6210 - %0
|
Compile.parseDone=\u5B8C\u6210 - %0
|
||||||
Compile.generating=\u6B63\u5728\u751F\u6210 %0
|
Compile.generating=\u6B63\u5728\u751F\u6210 %0
|
||||||
Compile.genDone=\u5B8C\u6210 - %0
|
Compile.genDone=\u5B8C\u6210 - %0
|
||||||
|
@ -165,7 +165,7 @@ Token.identifier=<\u6807\u8BC6\u7B26>
|
||||||
Token.endOfFile=EOF
|
Token.endOfFile=EOF
|
||||||
Token.unknown=?
|
Token.unknown=?
|
||||||
Util.cantCreatePkg=\u65E0\u6CD5\u521B\u5EFA\u7A0B\u5E8F\u5305%0\u3002
|
Util.cantCreatePkg=\u65E0\u6CD5\u521B\u5EFA\u7A0B\u5E8F\u5305%0\u3002
|
||||||
Version.product=IDL \u8BED\u6CD5\u5206\u6790\u5668\u6846\u67B6, \u7248\u672C "%0"
|
Version.product=IDL \u89E3\u6790\u5668\u6846\u67B6, \u7248\u672C "%0"
|
||||||
Version.number=3.2
|
Version.number=3.2
|
||||||
default=\u9519\u8BEF! \u8BF7\u6C42\u4E86\u4E0D\u5B58\u5728\u7684\u6D88\u606F\u3002\u6D88\u606F\u6587\u4EF6\u672A\u5305\u542B\u5173\u952E\u5B57: %0\u3002
|
default=\u9519\u8BEF! \u8BF7\u6C42\u4E86\u4E0D\u5B58\u5728\u7684\u6D88\u606F\u3002\u6D88\u606F\u6587\u4EF6\u672A\u5305\u542B\u5173\u952E\u5B57: %0\u3002
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1998, 2000, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -31,6 +31,10 @@
|
||||||
|
|
||||||
package org.omg.CORBA_2_3.portable;
|
package org.omg.CORBA_2_3.portable;
|
||||||
|
|
||||||
|
import java.io.SerializablePermission;
|
||||||
|
import java.security.AccessController;
|
||||||
|
import java.security.PrivilegedAction;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* OutputStream provides interface for writing of all of the mapped IDL type
|
* OutputStream provides interface for writing of all of the mapped IDL type
|
||||||
* to the stream. It extends org.omg.CORBA.portable.OutputStream, and defines
|
* to the stream. It extends org.omg.CORBA.portable.OutputStream, and defines
|
||||||
|
@ -43,6 +47,40 @@ package org.omg.CORBA_2_3.portable;
|
||||||
|
|
||||||
public abstract class OutputStream extends org.omg.CORBA.portable.OutputStream {
|
public abstract class OutputStream extends org.omg.CORBA.portable.OutputStream {
|
||||||
|
|
||||||
|
private static final String ALLOW_SUBCLASS_PROP = "jdk.corba.allowOutputStreamSubclass";
|
||||||
|
private static final boolean allowSubclass = AccessController.doPrivileged(
|
||||||
|
new PrivilegedAction<Boolean>() {
|
||||||
|
@Override
|
||||||
|
public Boolean run() {
|
||||||
|
String prop = System.getProperty(ALLOW_SUBCLASS_PROP);
|
||||||
|
return prop == null ? false :
|
||||||
|
(prop.equalsIgnoreCase("false") ? false : true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
private static Void checkPermission() {
|
||||||
|
SecurityManager sm = System.getSecurityManager();
|
||||||
|
if (sm != null) {
|
||||||
|
if (!allowSubclass)
|
||||||
|
sm.checkPermission(new
|
||||||
|
SerializablePermission("enableSubclassImplementation"));
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
private OutputStream(Void ignore) { }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new instance of this class.
|
||||||
|
*
|
||||||
|
* throw SecurityException if SecurityManager is installed and
|
||||||
|
* enableSubclassImplementation SerializablePermission
|
||||||
|
* is not granted or jdk.corba.allowOutputStreamSubclass system
|
||||||
|
* property is either not set or is set to 'false'
|
||||||
|
*/
|
||||||
|
public OutputStream() {
|
||||||
|
this(checkPermission());
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Marshals a value type to the output stream.
|
* Marshals a value type to the output stream.
|
||||||
* @param value is the acutal value to write
|
* @param value is the acutal value to write
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -29,4 +29,5 @@ import com.sun.corba.se.impl.io.ValueHandlerImpl;
|
||||||
|
|
||||||
public interface JavaCorbaAccess {
|
public interface JavaCorbaAccess {
|
||||||
public ValueHandlerImpl newValueHandlerImpl();
|
public ValueHandlerImpl newValueHandlerImpl();
|
||||||
|
public Class<?> loadClass(String className) throws ClassNotFoundException;
|
||||||
}
|
}
|
||||||
|
|
149
corba/src/share/classes/sun/corba/OutputStreamFactory.java
Normal file
149
corba/src/share/classes/sun/corba/OutputStreamFactory.java
Normal file
|
@ -0,0 +1,149 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2013, 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. Oracle designates this
|
||||||
|
* particular file as subject to the "Classpath" exception as provided
|
||||||
|
* by Oracle in the LICENSE file that accompanied this code.
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package sun.corba;
|
||||||
|
|
||||||
|
import com.sun.corba.se.impl.corba.AnyImpl;
|
||||||
|
import com.sun.corba.se.impl.encoding.BufferManagerWrite;
|
||||||
|
import com.sun.corba.se.impl.encoding.CDROutputObject;
|
||||||
|
import com.sun.corba.se.impl.encoding.EncapsOutputStream;
|
||||||
|
import com.sun.corba.se.impl.encoding.TypeCodeOutputStream;
|
||||||
|
import com.sun.corba.se.impl.protocol.giopmsgheaders.Message;
|
||||||
|
|
||||||
|
import com.sun.corba.se.pept.protocol.MessageMediator;
|
||||||
|
|
||||||
|
import com.sun.corba.se.spi.orb.ORB;
|
||||||
|
import com.sun.corba.se.spi.transport.CorbaConnection;
|
||||||
|
import com.sun.corba.se.spi.ior.iiop.GIOPVersion;
|
||||||
|
import com.sun.corba.se.spi.protocol.CorbaMessageMediator;
|
||||||
|
|
||||||
|
import java.security.AccessController;
|
||||||
|
import java.security.PrivilegedAction;
|
||||||
|
|
||||||
|
public final class OutputStreamFactory {
|
||||||
|
|
||||||
|
private OutputStreamFactory() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public static TypeCodeOutputStream newTypeCodeOutputStream(
|
||||||
|
final ORB orb) {
|
||||||
|
return AccessController.doPrivileged(
|
||||||
|
new PrivilegedAction<TypeCodeOutputStream>() {
|
||||||
|
@Override
|
||||||
|
public TypeCodeOutputStream run() {
|
||||||
|
return new TypeCodeOutputStream(orb);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public static TypeCodeOutputStream newTypeCodeOutputStream(
|
||||||
|
final ORB orb, final boolean littleEndian) {
|
||||||
|
return AccessController.doPrivileged(
|
||||||
|
new PrivilegedAction<TypeCodeOutputStream>() {
|
||||||
|
@Override
|
||||||
|
public TypeCodeOutputStream run() {
|
||||||
|
return new TypeCodeOutputStream(orb, littleEndian);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public static EncapsOutputStream newEncapsOutputStream(
|
||||||
|
final ORB orb) {
|
||||||
|
return AccessController.doPrivileged(
|
||||||
|
new PrivilegedAction<EncapsOutputStream>() {
|
||||||
|
@Override
|
||||||
|
public EncapsOutputStream run() {
|
||||||
|
return new EncapsOutputStream(
|
||||||
|
(com.sun.corba.se.spi.orb.ORB)orb);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public static EncapsOutputStream newEncapsOutputStream(
|
||||||
|
final ORB orb, final GIOPVersion giopVersion) {
|
||||||
|
return AccessController.doPrivileged(
|
||||||
|
new PrivilegedAction<EncapsOutputStream>() {
|
||||||
|
@Override
|
||||||
|
public EncapsOutputStream run() {
|
||||||
|
return new EncapsOutputStream(
|
||||||
|
(com.sun.corba.se.spi.orb.ORB)orb, giopVersion);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public static EncapsOutputStream newEncapsOutputStream(
|
||||||
|
final ORB orb, final boolean isLittleEndian) {
|
||||||
|
return AccessController.doPrivileged(
|
||||||
|
new PrivilegedAction<EncapsOutputStream>() {
|
||||||
|
@Override
|
||||||
|
public EncapsOutputStream run() {
|
||||||
|
return new EncapsOutputStream(
|
||||||
|
(com.sun.corba.se.spi.orb.ORB)orb, isLittleEndian);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public static CDROutputObject newCDROutputObject(
|
||||||
|
final ORB orb, final MessageMediator messageMediator,
|
||||||
|
final Message header, final byte streamFormatVersion) {
|
||||||
|
return AccessController.doPrivileged(
|
||||||
|
new PrivilegedAction<CDROutputObject>() {
|
||||||
|
@Override
|
||||||
|
public CDROutputObject run() {
|
||||||
|
return new CDROutputObject(orb, messageMediator,
|
||||||
|
header, streamFormatVersion);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public static CDROutputObject newCDROutputObject(
|
||||||
|
final ORB orb, final MessageMediator messageMediator,
|
||||||
|
final Message header, final byte streamFormatVersion,
|
||||||
|
final int strategy) {
|
||||||
|
return AccessController.doPrivileged(
|
||||||
|
new PrivilegedAction<CDROutputObject>() {
|
||||||
|
@Override
|
||||||
|
public CDROutputObject run() {
|
||||||
|
return new CDROutputObject(orb, messageMediator,
|
||||||
|
header, streamFormatVersion, strategy);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public static CDROutputObject newCDROutputObject(
|
||||||
|
final ORB orb, final CorbaMessageMediator mediator,
|
||||||
|
final GIOPVersion giopVersion, final CorbaConnection connection,
|
||||||
|
final Message header, final byte streamFormatVersion) {
|
||||||
|
return AccessController.doPrivileged(
|
||||||
|
new PrivilegedAction<CDROutputObject>() {
|
||||||
|
@Override
|
||||||
|
public CDROutputObject run() {
|
||||||
|
return new CDROutputObject(orb, mediator,
|
||||||
|
giopVersion, connection, header, streamFormatVersion);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -32,6 +32,7 @@
|
||||||
|
|
||||||
package sun.rmi.rmic.iiop;
|
package sun.rmi.rmic.iiop;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
import java.util.Vector;
|
import java.util.Vector;
|
||||||
import sun.tools.java.Identifier;
|
import sun.tools.java.Identifier;
|
||||||
import sun.tools.java.ClassNotFound;
|
import sun.tools.java.ClassNotFound;
|
||||||
|
@ -1851,6 +1852,10 @@ public abstract class CompoundType extends Type {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int hashCode() {
|
||||||
|
return getName().hashCode() ^ Arrays.hashCode(arguments);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return a new Method object that is a legal combination of
|
* Return a new Method object that is a legal combination of
|
||||||
* this method object and another one.
|
* this method object and another one.
|
||||||
|
|
|
@ -349,3 +349,9 @@ b19517cecc2e91636d7c16ba2f35e3d3dc628099 hs25-b33
|
||||||
573d86d412cd9d3df7912194c1a540be50e9544e jdk8-b93
|
573d86d412cd9d3df7912194c1a540be50e9544e jdk8-b93
|
||||||
b786c04b7be15194febe88dc1f0c9443e737a84b hs25-b35
|
b786c04b7be15194febe88dc1f0c9443e737a84b hs25-b35
|
||||||
3c78a14da19d26d6937af5f98b97e2a21c653b04 hs25-b36
|
3c78a14da19d26d6937af5f98b97e2a21c653b04 hs25-b36
|
||||||
|
1beed1f6f9edefe47ba8ed1355fbd3e7606b8288 jdk8-b94
|
||||||
|
69689078dff8b21e6df30870464f5d736eebdf72 hs25-b37
|
||||||
|
5d65c078cd0ac455aa5e58a09844c7acce54b487 jdk8-b95
|
||||||
|
2cc5a9d1ba66dfdff578918b393c727bd9450210 hs25-b38
|
||||||
|
e6a4b8c71fa6f225bd989a34de2d0d0a656a8be8 jdk8-b96
|
||||||
|
2b9380b0bf0b649f40704735773e8956c2d88ba0 hs25-b39
|
||||||
|
|
|
@ -31,13 +31,19 @@ import java.io.*;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
|
||||||
public class CLHSDB {
|
public class CLHSDB {
|
||||||
|
|
||||||
|
public CLHSDB(JVMDebugger d) {
|
||||||
|
jvmDebugger = d;
|
||||||
|
}
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
new CLHSDB(args).run();
|
new CLHSDB(args).run();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void run() {
|
public void run() {
|
||||||
// At this point, if pidText != null we are supposed to attach to it.
|
// If jvmDebugger is already set, we have been given a JVMDebugger.
|
||||||
// Else, if execPath != null, it is the path of a jdk/bin/java
|
// Otherwise, if pidText != null we are supposed to attach to it.
|
||||||
|
// Finally, if execPath != null, it is the path of a jdk/bin/java
|
||||||
// and coreFilename is the pathname of a core file we are
|
// and coreFilename is the pathname of a core file we are
|
||||||
// supposed to attach to.
|
// supposed to attach to.
|
||||||
|
|
||||||
|
@ -49,7 +55,9 @@ public class CLHSDB {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
if (pidText != null) {
|
if (jvmDebugger != null) {
|
||||||
|
attachDebugger(jvmDebugger);
|
||||||
|
} else if (pidText != null) {
|
||||||
attachDebugger(pidText);
|
attachDebugger(pidText);
|
||||||
} else if (execPath != null) {
|
} else if (execPath != null) {
|
||||||
attachDebugger(execPath, coreFilename);
|
attachDebugger(execPath, coreFilename);
|
||||||
|
@ -96,6 +104,7 @@ public class CLHSDB {
|
||||||
// Internals only below this point
|
// Internals only below this point
|
||||||
//
|
//
|
||||||
private HotSpotAgent agent;
|
private HotSpotAgent agent;
|
||||||
|
private JVMDebugger jvmDebugger;
|
||||||
private boolean attached;
|
private boolean attached;
|
||||||
// These had to be made data members because they are referenced in inner classes.
|
// These had to be made data members because they are referenced in inner classes.
|
||||||
private String pidText;
|
private String pidText;
|
||||||
|
@ -120,7 +129,7 @@ public class CLHSDB {
|
||||||
case (1):
|
case (1):
|
||||||
if (args[0].equals("help") || args[0].equals("-help")) {
|
if (args[0].equals("help") || args[0].equals("-help")) {
|
||||||
doUsage();
|
doUsage();
|
||||||
System.exit(0);
|
return;
|
||||||
}
|
}
|
||||||
// If all numbers, it is a PID to attach to
|
// If all numbers, it is a PID to attach to
|
||||||
// Else, it is a pathname to a .../bin/java for a core file.
|
// Else, it is a pathname to a .../bin/java for a core file.
|
||||||
|
@ -142,10 +151,15 @@ public class CLHSDB {
|
||||||
default:
|
default:
|
||||||
System.out.println("HSDB Error: Too many options specified");
|
System.out.println("HSDB Error: Too many options specified");
|
||||||
doUsage();
|
doUsage();
|
||||||
System.exit(1);
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void attachDebugger(JVMDebugger d) {
|
||||||
|
agent.attach(d);
|
||||||
|
attached = true;
|
||||||
|
}
|
||||||
|
|
||||||
/** NOTE we are in a different thread here than either the main
|
/** NOTE we are in a different thread here than either the main
|
||||||
thread or the Swing/AWT event handler thread, so we must be very
|
thread or the Swing/AWT event handler thread, so we must be very
|
||||||
careful when creating or removing widgets */
|
careful when creating or removing widgets */
|
||||||
|
|
|
@ -101,6 +101,9 @@ import sun.jvm.hotspot.utilities.soql.JSJavaFactoryImpl;
|
||||||
import sun.jvm.hotspot.utilities.soql.JSJavaScriptEngine;
|
import sun.jvm.hotspot.utilities.soql.JSJavaScriptEngine;
|
||||||
|
|
||||||
public class CommandProcessor {
|
public class CommandProcessor {
|
||||||
|
|
||||||
|
volatile boolean quit;
|
||||||
|
|
||||||
public abstract static class DebuggerInterface {
|
public abstract static class DebuggerInterface {
|
||||||
public abstract HotSpotAgent getAgent();
|
public abstract HotSpotAgent getAgent();
|
||||||
public abstract boolean isAttached();
|
public abstract boolean isAttached();
|
||||||
|
@ -1135,7 +1138,7 @@ public class CommandProcessor {
|
||||||
usage();
|
usage();
|
||||||
} else {
|
} else {
|
||||||
debugger.detach();
|
debugger.detach();
|
||||||
System.exit(0);
|
quit = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -1714,7 +1717,7 @@ public class CommandProcessor {
|
||||||
}
|
}
|
||||||
protected void quit() {
|
protected void quit() {
|
||||||
debugger.detach();
|
debugger.detach();
|
||||||
System.exit(0);
|
quit = true;
|
||||||
}
|
}
|
||||||
protected BufferedReader getInputReader() {
|
protected BufferedReader getInputReader() {
|
||||||
return in;
|
return in;
|
||||||
|
@ -1781,7 +1784,7 @@ public class CommandProcessor {
|
||||||
|
|
||||||
public void run(boolean prompt) {
|
public void run(boolean prompt) {
|
||||||
// Process interactive commands.
|
// Process interactive commands.
|
||||||
while (true) {
|
while (!quit) {
|
||||||
if (prompt) printPrompt();
|
if (prompt) printPrompt();
|
||||||
String ln = null;
|
String ln = null;
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -59,8 +59,11 @@ public class HSDB implements ObjectHistogramPanel.Listener, SAListener {
|
||||||
// Internals only below this point
|
// Internals only below this point
|
||||||
//
|
//
|
||||||
private HotSpotAgent agent;
|
private HotSpotAgent agent;
|
||||||
|
private JVMDebugger jvmDebugger;
|
||||||
private JDesktopPane desktop;
|
private JDesktopPane desktop;
|
||||||
private boolean attached;
|
private boolean attached;
|
||||||
|
private boolean argError;
|
||||||
|
private JFrame frame;
|
||||||
/** List <JMenuItem> */
|
/** List <JMenuItem> */
|
||||||
private java.util.List attachMenuItems;
|
private java.util.List attachMenuItems;
|
||||||
/** List <JMenuItem> */
|
/** List <JMenuItem> */
|
||||||
|
@ -85,6 +88,11 @@ public class HSDB implements ObjectHistogramPanel.Listener, SAListener {
|
||||||
System.out.println(" path-to-corefile: Debug this corefile. The default is 'core'");
|
System.out.println(" path-to-corefile: Debug this corefile. The default is 'core'");
|
||||||
System.out.println(" If no arguments are specified, you can select what to do from the GUI.\n");
|
System.out.println(" If no arguments are specified, you can select what to do from the GUI.\n");
|
||||||
HotSpotAgent.showUsage();
|
HotSpotAgent.showUsage();
|
||||||
|
argError = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public HSDB(JVMDebugger d) {
|
||||||
|
jvmDebugger = d;
|
||||||
}
|
}
|
||||||
|
|
||||||
private HSDB(String[] args) {
|
private HSDB(String[] args) {
|
||||||
|
@ -95,7 +103,6 @@ public class HSDB implements ObjectHistogramPanel.Listener, SAListener {
|
||||||
case (1):
|
case (1):
|
||||||
if (args[0].equals("help") || args[0].equals("-help")) {
|
if (args[0].equals("help") || args[0].equals("-help")) {
|
||||||
doUsage();
|
doUsage();
|
||||||
System.exit(0);
|
|
||||||
}
|
}
|
||||||
// If all numbers, it is a PID to attach to
|
// If all numbers, it is a PID to attach to
|
||||||
// Else, it is a pathname to a .../bin/java for a core file.
|
// Else, it is a pathname to a .../bin/java for a core file.
|
||||||
|
@ -117,24 +124,29 @@ public class HSDB implements ObjectHistogramPanel.Listener, SAListener {
|
||||||
default:
|
default:
|
||||||
System.out.println("HSDB Error: Too many options specified");
|
System.out.println("HSDB Error: Too many options specified");
|
||||||
doUsage();
|
doUsage();
|
||||||
System.exit(1);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void run() {
|
// close this tool without calling System.exit
|
||||||
// At this point, if pidText != null we are supposed to attach to it.
|
protected void closeUI() {
|
||||||
// Else, if execPath != null, it is the path of a jdk/bin/java
|
workerThread.shutdown();
|
||||||
// and coreFilename is the pathname of a core file we are
|
frame.dispose();
|
||||||
// supposed to attach to.
|
}
|
||||||
|
|
||||||
|
public void run() {
|
||||||
|
// Don't start the UI if there were bad arguments.
|
||||||
|
if (argError) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
agent = new HotSpotAgent();
|
agent = new HotSpotAgent();
|
||||||
workerThread = new WorkerThread();
|
workerThread = new WorkerThread();
|
||||||
attachMenuItems = new java.util.ArrayList();
|
attachMenuItems = new java.util.ArrayList();
|
||||||
detachMenuItems = new java.util.ArrayList();
|
detachMenuItems = new java.util.ArrayList();
|
||||||
|
|
||||||
JFrame frame = new JFrame("HSDB - HotSpot Debugger");
|
frame = new JFrame("HSDB - HotSpot Debugger");
|
||||||
frame.setSize(800, 600);
|
frame.setSize(800, 600);
|
||||||
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
|
frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
|
||||||
|
|
||||||
JMenuBar menuBar = new JMenuBar();
|
JMenuBar menuBar = new JMenuBar();
|
||||||
|
|
||||||
|
@ -197,7 +209,7 @@ public class HSDB implements ObjectHistogramPanel.Listener, SAListener {
|
||||||
item = createMenuItem("Exit",
|
item = createMenuItem("Exit",
|
||||||
new ActionListener() {
|
new ActionListener() {
|
||||||
public void actionPerformed(ActionEvent e) {
|
public void actionPerformed(ActionEvent e) {
|
||||||
System.exit(0);
|
closeUI();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
item.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_X, ActionEvent.ALT_MASK));
|
item.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_X, ActionEvent.ALT_MASK));
|
||||||
|
@ -406,7 +418,15 @@ public class HSDB implements ObjectHistogramPanel.Listener, SAListener {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
if (pidText != null) {
|
// If jvmDebugger is already set, we have been given a JVMDebugger.
|
||||||
|
// Otherwise, if pidText != null we are supposed to attach to it.
|
||||||
|
// Finally, if execPath != null, it is the path of a jdk/bin/java
|
||||||
|
// and coreFilename is the pathname of a core file we are
|
||||||
|
// supposed to attach to.
|
||||||
|
|
||||||
|
if (jvmDebugger != null) {
|
||||||
|
attach(jvmDebugger);
|
||||||
|
} else if (pidText != null) {
|
||||||
attach(pidText);
|
attach(pidText);
|
||||||
} else if (execPath != null) {
|
} else if (execPath != null) {
|
||||||
attach(execPath, coreFilename);
|
attach(execPath, coreFilename);
|
||||||
|
@ -1113,6 +1133,12 @@ public class HSDB implements ObjectHistogramPanel.Listener, SAListener {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Attach to existing JVMDebugger, which should be already attached to a core/process.
|
||||||
|
private void attach(JVMDebugger d) {
|
||||||
|
attached = true;
|
||||||
|
showThreadsDialog();
|
||||||
|
}
|
||||||
|
|
||||||
/** NOTE we are in a different thread here than either the main
|
/** NOTE we are in a different thread here than either the main
|
||||||
thread or the Swing/AWT event handler thread, so we must be very
|
thread or the Swing/AWT event handler thread, so we must be very
|
||||||
careful when creating or removing widgets */
|
careful when creating or removing widgets */
|
||||||
|
|
|
@ -25,6 +25,8 @@
|
||||||
package sun.jvm.hotspot;
|
package sun.jvm.hotspot;
|
||||||
|
|
||||||
import java.rmi.RemoteException;
|
import java.rmi.RemoteException;
|
||||||
|
import java.lang.reflect.Constructor;
|
||||||
|
import java.lang.reflect.InvocationTargetException;
|
||||||
|
|
||||||
import sun.jvm.hotspot.debugger.Debugger;
|
import sun.jvm.hotspot.debugger.Debugger;
|
||||||
import sun.jvm.hotspot.debugger.DebuggerException;
|
import sun.jvm.hotspot.debugger.DebuggerException;
|
||||||
|
@ -63,7 +65,6 @@ public class HotSpotAgent {
|
||||||
|
|
||||||
private String os;
|
private String os;
|
||||||
private String cpu;
|
private String cpu;
|
||||||
private String fileSep;
|
|
||||||
|
|
||||||
// The system can work in several ways:
|
// The system can work in several ways:
|
||||||
// - Attaching to local process
|
// - Attaching to local process
|
||||||
|
@ -155,6 +156,14 @@ public class HotSpotAgent {
|
||||||
go();
|
go();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** This uses a JVMDebugger that is already attached to the core or process */
|
||||||
|
public synchronized void attach(JVMDebugger d)
|
||||||
|
throws DebuggerException {
|
||||||
|
debugger = d;
|
||||||
|
isServer = false;
|
||||||
|
go();
|
||||||
|
}
|
||||||
|
|
||||||
/** This attaches to a "debug server" on a remote machine; this
|
/** This attaches to a "debug server" on a remote machine; this
|
||||||
remote server has already attached to a process or opened a
|
remote server has already attached to a process or opened a
|
||||||
core file and is waiting for RMI calls on the Debugger object to
|
core file and is waiting for RMI calls on the Debugger object to
|
||||||
|
@ -303,28 +312,37 @@ public class HotSpotAgent {
|
||||||
// server, but not client attaching to server)
|
// server, but not client attaching to server)
|
||||||
//
|
//
|
||||||
|
|
||||||
try {
|
// Handle existing or alternate JVMDebugger:
|
||||||
os = PlatformInfo.getOS();
|
// these will set os, cpu independently of our PlatformInfo implementation.
|
||||||
cpu = PlatformInfo.getCPU();
|
String alternateDebugger = System.getProperty("sa.altDebugger");
|
||||||
}
|
if (debugger != null) {
|
||||||
catch (UnsupportedPlatformException e) {
|
setupDebuggerExisting();
|
||||||
throw new DebuggerException(e);
|
|
||||||
}
|
} else if (alternateDebugger != null) {
|
||||||
fileSep = System.getProperty("file.separator");
|
setupDebuggerAlternate(alternateDebugger);
|
||||||
|
|
||||||
if (os.equals("solaris")) {
|
|
||||||
setupDebuggerSolaris();
|
|
||||||
} else if (os.equals("win32")) {
|
|
||||||
setupDebuggerWin32();
|
|
||||||
} else if (os.equals("linux")) {
|
|
||||||
setupDebuggerLinux();
|
|
||||||
} else if (os.equals("bsd")) {
|
|
||||||
setupDebuggerBsd();
|
|
||||||
} else if (os.equals("darwin")) {
|
|
||||||
setupDebuggerDarwin();
|
|
||||||
} else {
|
} else {
|
||||||
// Add support for more operating systems here
|
// Otherwise, os, cpu are those of our current platform:
|
||||||
throw new DebuggerException("Operating system " + os + " not yet supported");
|
try {
|
||||||
|
os = PlatformInfo.getOS();
|
||||||
|
cpu = PlatformInfo.getCPU();
|
||||||
|
} catch (UnsupportedPlatformException e) {
|
||||||
|
throw new DebuggerException(e);
|
||||||
|
}
|
||||||
|
if (os.equals("solaris")) {
|
||||||
|
setupDebuggerSolaris();
|
||||||
|
} else if (os.equals("win32")) {
|
||||||
|
setupDebuggerWin32();
|
||||||
|
} else if (os.equals("linux")) {
|
||||||
|
setupDebuggerLinux();
|
||||||
|
} else if (os.equals("bsd")) {
|
||||||
|
setupDebuggerBsd();
|
||||||
|
} else if (os.equals("darwin")) {
|
||||||
|
setupDebuggerDarwin();
|
||||||
|
} else {
|
||||||
|
// Add support for more operating systems here
|
||||||
|
throw new DebuggerException("Operating system " + os + " not yet supported");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isServer) {
|
if (isServer) {
|
||||||
|
@ -423,6 +441,41 @@ public class HotSpotAgent {
|
||||||
// OS-specific debugger setup/connect routines
|
// OS-specific debugger setup/connect routines
|
||||||
//
|
//
|
||||||
|
|
||||||
|
// Use the existing JVMDebugger, as passed to our constructor.
|
||||||
|
// Retrieve os and cpu from that debugger, not the current platform.
|
||||||
|
private void setupDebuggerExisting() {
|
||||||
|
|
||||||
|
os = debugger.getOS();
|
||||||
|
cpu = debugger.getCPU();
|
||||||
|
setupJVMLibNames(os);
|
||||||
|
machDesc = debugger.getMachineDescription();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Given a classname, load an alternate implementation of JVMDebugger.
|
||||||
|
private void setupDebuggerAlternate(String alternateName) {
|
||||||
|
|
||||||
|
try {
|
||||||
|
Class c = Class.forName(alternateName);
|
||||||
|
Constructor cons = c.getConstructor();
|
||||||
|
debugger = (JVMDebugger) cons.newInstance();
|
||||||
|
attachDebugger();
|
||||||
|
setupDebuggerExisting();
|
||||||
|
|
||||||
|
} catch (ClassNotFoundException cnfe) {
|
||||||
|
throw new DebuggerException("Cannot find alternate SA Debugger: '" + alternateName + "'");
|
||||||
|
} catch (NoSuchMethodException nsme) {
|
||||||
|
throw new DebuggerException("Alternate SA Debugger: '" + alternateName + "' has missing constructor.");
|
||||||
|
} catch (InstantiationException ie) {
|
||||||
|
throw new DebuggerException("Alternate SA Debugger: '" + alternateName + "' fails to initialise: ", ie);
|
||||||
|
} catch (IllegalAccessException iae) {
|
||||||
|
throw new DebuggerException("Alternate SA Debugger: '" + alternateName + "' fails to initialise: ", iae);
|
||||||
|
} catch (InvocationTargetException iae) {
|
||||||
|
throw new DebuggerException("Alternate SA Debugger: '" + alternateName + "' fails to initialise: ", iae);
|
||||||
|
}
|
||||||
|
|
||||||
|
System.err.println("Loaded alternate HotSpot SA Debugger: " + alternateName);
|
||||||
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// Solaris
|
// Solaris
|
||||||
//
|
//
|
||||||
|
@ -466,6 +519,11 @@ public class HotSpotAgent {
|
||||||
debugger = new RemoteDebuggerClient(remote);
|
debugger = new RemoteDebuggerClient(remote);
|
||||||
machDesc = ((RemoteDebuggerClient) debugger).getMachineDescription();
|
machDesc = ((RemoteDebuggerClient) debugger).getMachineDescription();
|
||||||
os = debugger.getOS();
|
os = debugger.getOS();
|
||||||
|
setupJVMLibNames(os);
|
||||||
|
cpu = debugger.getCPU();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void setupJVMLibNames(String os) {
|
||||||
if (os.equals("solaris")) {
|
if (os.equals("solaris")) {
|
||||||
setupJVMLibNamesSolaris();
|
setupJVMLibNamesSolaris();
|
||||||
} else if (os.equals("win32")) {
|
} else if (os.equals("win32")) {
|
||||||
|
@ -479,8 +537,6 @@ public class HotSpotAgent {
|
||||||
} else {
|
} else {
|
||||||
throw new RuntimeException("Unknown OS type");
|
throw new RuntimeException("Unknown OS type");
|
||||||
}
|
}
|
||||||
|
|
||||||
cpu = debugger.getCPU();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void setupJVMLibNamesSolaris() {
|
private void setupJVMLibNamesSolaris() {
|
||||||
|
|
|
@ -26,11 +26,11 @@ package sun.jvm.hotspot.debugger.linux;
|
||||||
|
|
||||||
import sun.jvm.hotspot.debugger.*;
|
import sun.jvm.hotspot.debugger.*;
|
||||||
|
|
||||||
class LinuxAddress implements Address {
|
public class LinuxAddress implements Address {
|
||||||
protected LinuxDebugger debugger;
|
protected LinuxDebugger debugger;
|
||||||
protected long addr;
|
protected long addr;
|
||||||
|
|
||||||
LinuxAddress(LinuxDebugger debugger, long addr) {
|
public LinuxAddress(LinuxDebugger debugger, long addr) {
|
||||||
this.debugger = debugger;
|
this.debugger = debugger;
|
||||||
this.addr = addr;
|
this.addr = addr;
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,8 +26,8 @@ package sun.jvm.hotspot.debugger.linux;
|
||||||
|
|
||||||
import sun.jvm.hotspot.debugger.*;
|
import sun.jvm.hotspot.debugger.*;
|
||||||
|
|
||||||
class LinuxOopHandle extends LinuxAddress implements OopHandle {
|
public class LinuxOopHandle extends LinuxAddress implements OopHandle {
|
||||||
LinuxOopHandle(LinuxDebugger debugger, long addr) {
|
public LinuxOopHandle(LinuxDebugger debugger, long addr) {
|
||||||
super(debugger, addr);
|
super(debugger, addr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -246,7 +246,7 @@ public class VM {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final boolean disableDerivedPrinterTableCheck;
|
private static final boolean disableDerivedPointerTableCheck;
|
||||||
private static final Properties saProps;
|
private static final Properties saProps;
|
||||||
|
|
||||||
static {
|
static {
|
||||||
|
@ -256,12 +256,12 @@ public class VM {
|
||||||
url = VM.class.getClassLoader().getResource("sa.properties");
|
url = VM.class.getClassLoader().getResource("sa.properties");
|
||||||
saProps.load(new BufferedInputStream(url.openStream()));
|
saProps.load(new BufferedInputStream(url.openStream()));
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
throw new RuntimeException("Unable to load properties " +
|
System.err.println("Unable to load properties " +
|
||||||
(url == null ? "null" : url.toString()) +
|
(url == null ? "null" : url.toString()) +
|
||||||
": " + e.getMessage());
|
": " + e.getMessage());
|
||||||
}
|
}
|
||||||
|
|
||||||
disableDerivedPrinterTableCheck = System.getProperty("sun.jvm.hotspot.runtime.VM.disableDerivedPointerTableCheck") != null;
|
disableDerivedPointerTableCheck = System.getProperty("sun.jvm.hotspot.runtime.VM.disableDerivedPointerTableCheck") != null;
|
||||||
}
|
}
|
||||||
|
|
||||||
private VM(TypeDataBase db, JVMDebugger debugger, boolean isBigEndian) {
|
private VM(TypeDataBase db, JVMDebugger debugger, boolean isBigEndian) {
|
||||||
|
@ -371,7 +371,8 @@ public class VM {
|
||||||
/** This is used by the debugging system */
|
/** This is used by the debugging system */
|
||||||
public static void initialize(TypeDataBase db, JVMDebugger debugger) {
|
public static void initialize(TypeDataBase db, JVMDebugger debugger) {
|
||||||
if (soleInstance != null) {
|
if (soleInstance != null) {
|
||||||
throw new RuntimeException("Attempt to initialize VM twice");
|
// Using multiple SA Tool classes in the same process creates a call here.
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
soleInstance = new VM(db, debugger, debugger.getMachineDescription().isBigEndian());
|
soleInstance = new VM(db, debugger, debugger.getMachineDescription().isBigEndian());
|
||||||
|
|
||||||
|
@ -683,7 +684,7 @@ public class VM {
|
||||||
|
|
||||||
/** Returns true if C2 derived pointer table should be used, false otherwise */
|
/** Returns true if C2 derived pointer table should be used, false otherwise */
|
||||||
public boolean useDerivedPointerTable() {
|
public boolean useDerivedPointerTable() {
|
||||||
return !disableDerivedPrinterTableCheck;
|
return !disableDerivedPointerTableCheck;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Returns the code cache; should not be used if is core build */
|
/** Returns the code cache; should not be used if is core build */
|
||||||
|
|
|
@ -41,6 +41,14 @@ import sun.jvm.hotspot.utilities.*;
|
||||||
public class ClassLoaderStats extends Tool {
|
public class ClassLoaderStats extends Tool {
|
||||||
boolean verbose = true;
|
boolean verbose = true;
|
||||||
|
|
||||||
|
public ClassLoaderStats() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
public ClassLoaderStats(JVMDebugger d) {
|
||||||
|
super(d);
|
||||||
|
}
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
ClassLoaderStats cls = new ClassLoaderStats();
|
ClassLoaderStats cls = new ClassLoaderStats();
|
||||||
cls.start(args);
|
cls.start(args);
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
|
|
||||||
package sun.jvm.hotspot.tools;
|
package sun.jvm.hotspot.tools;
|
||||||
|
|
||||||
|
import sun.jvm.hotspot.debugger.JVMDebugger;
|
||||||
import sun.jvm.hotspot.tools.*;
|
import sun.jvm.hotspot.tools.*;
|
||||||
|
|
||||||
import sun.jvm.hotspot.oops.*;
|
import sun.jvm.hotspot.oops.*;
|
||||||
|
@ -42,6 +43,15 @@ import java.util.Comparator;
|
||||||
* summary of these objects in the form of a histogram.
|
* summary of these objects in the form of a histogram.
|
||||||
*/
|
*/
|
||||||
public class FinalizerInfo extends Tool {
|
public class FinalizerInfo extends Tool {
|
||||||
|
|
||||||
|
public FinalizerInfo() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
public FinalizerInfo(JVMDebugger d) {
|
||||||
|
super(d);
|
||||||
|
}
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
FinalizerInfo finfo = new FinalizerInfo();
|
FinalizerInfo finfo = new FinalizerInfo();
|
||||||
finfo.start(args);
|
finfo.start(args);
|
||||||
|
|
|
@ -25,10 +25,19 @@
|
||||||
package sun.jvm.hotspot.tools;
|
package sun.jvm.hotspot.tools;
|
||||||
|
|
||||||
import java.io.PrintStream;
|
import java.io.PrintStream;
|
||||||
|
import sun.jvm.hotspot.debugger.JVMDebugger;
|
||||||
import sun.jvm.hotspot.runtime.*;
|
import sun.jvm.hotspot.runtime.*;
|
||||||
|
|
||||||
public class FlagDumper extends Tool {
|
public class FlagDumper extends Tool {
|
||||||
|
|
||||||
|
public FlagDumper() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
public FlagDumper(JVMDebugger d) {
|
||||||
|
super(d);
|
||||||
|
}
|
||||||
|
|
||||||
public void run() {
|
public void run() {
|
||||||
VM.Flag[] flags = VM.getVM().getCommandLineFlags();
|
VM.Flag[] flags = VM.getVM().getCommandLineFlags();
|
||||||
PrintStream out = System.out;
|
PrintStream out = System.out;
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
package sun.jvm.hotspot.tools;
|
package sun.jvm.hotspot.tools;
|
||||||
|
|
||||||
import sun.jvm.hotspot.utilities.HeapHprofBinWriter;
|
import sun.jvm.hotspot.utilities.HeapHprofBinWriter;
|
||||||
|
import sun.jvm.hotspot.debugger.JVMDebugger;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -42,6 +43,11 @@ public class HeapDumper extends Tool {
|
||||||
this.dumpFile = dumpFile;
|
this.dumpFile = dumpFile;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public HeapDumper(String dumpFile, JVMDebugger d) {
|
||||||
|
super(d);
|
||||||
|
this.dumpFile = dumpFile;
|
||||||
|
}
|
||||||
|
|
||||||
protected void printFlagsUsage() {
|
protected void printFlagsUsage() {
|
||||||
System.out.println(" <no option>\tto dump heap to " +
|
System.out.println(" <no option>\tto dump heap to " +
|
||||||
DEFAULT_DUMP_FILE);
|
DEFAULT_DUMP_FILE);
|
||||||
|
|
|
@ -29,12 +29,21 @@ import sun.jvm.hotspot.gc_interface.*;
|
||||||
import sun.jvm.hotspot.gc_implementation.g1.*;
|
import sun.jvm.hotspot.gc_implementation.g1.*;
|
||||||
import sun.jvm.hotspot.gc_implementation.parallelScavenge.*;
|
import sun.jvm.hotspot.gc_implementation.parallelScavenge.*;
|
||||||
import sun.jvm.hotspot.gc_implementation.shared.*;
|
import sun.jvm.hotspot.gc_implementation.shared.*;
|
||||||
|
import sun.jvm.hotspot.debugger.JVMDebugger;
|
||||||
import sun.jvm.hotspot.memory.*;
|
import sun.jvm.hotspot.memory.*;
|
||||||
import sun.jvm.hotspot.oops.*;
|
import sun.jvm.hotspot.oops.*;
|
||||||
import sun.jvm.hotspot.runtime.*;
|
import sun.jvm.hotspot.runtime.*;
|
||||||
|
|
||||||
public class HeapSummary extends Tool {
|
public class HeapSummary extends Tool {
|
||||||
|
|
||||||
|
public HeapSummary() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
public HeapSummary(JVMDebugger d) {
|
||||||
|
super(d);
|
||||||
|
}
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
HeapSummary hs = new HeapSummary();
|
HeapSummary hs = new HeapSummary();
|
||||||
hs.start(args);
|
hs.start(args);
|
||||||
|
|
|
@ -25,12 +25,21 @@
|
||||||
package sun.jvm.hotspot.tools;
|
package sun.jvm.hotspot.tools;
|
||||||
|
|
||||||
import sun.jvm.hotspot.runtime.*;
|
import sun.jvm.hotspot.runtime.*;
|
||||||
|
import sun.jvm.hotspot.debugger.JVMDebugger;
|
||||||
|
|
||||||
public class JInfo extends Tool {
|
public class JInfo extends Tool {
|
||||||
|
public JInfo() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
public JInfo(int m) {
|
public JInfo(int m) {
|
||||||
mode = m;
|
mode = m;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public JInfo(JVMDebugger d) {
|
||||||
|
super(d);
|
||||||
|
}
|
||||||
|
|
||||||
protected boolean needsJavaPrefix() {
|
protected boolean needsJavaPrefix() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
package sun.jvm.hotspot.tools;
|
package sun.jvm.hotspot.tools;
|
||||||
|
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
|
import sun.jvm.hotspot.debugger.JVMDebugger;
|
||||||
import sun.jvm.hotspot.utilities.*;
|
import sun.jvm.hotspot.utilities.*;
|
||||||
|
|
||||||
public class JMap extends Tool {
|
public class JMap extends Tool {
|
||||||
|
@ -36,6 +37,10 @@ public class JMap extends Tool {
|
||||||
this(MODE_PMAP);
|
this(MODE_PMAP);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public JMap(JVMDebugger d) {
|
||||||
|
super(d);
|
||||||
|
}
|
||||||
|
|
||||||
protected boolean needsJavaPrefix() {
|
protected boolean needsJavaPrefix() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,9 +25,19 @@
|
||||||
package sun.jvm.hotspot.tools;
|
package sun.jvm.hotspot.tools;
|
||||||
|
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
|
import sun.jvm.hotspot.debugger.JVMDebugger;
|
||||||
import sun.jvm.hotspot.runtime.*;
|
import sun.jvm.hotspot.runtime.*;
|
||||||
|
|
||||||
public class JSnap extends Tool {
|
public class JSnap extends Tool {
|
||||||
|
|
||||||
|
public JSnap() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
public JSnap(JVMDebugger d) {
|
||||||
|
super(d);
|
||||||
|
}
|
||||||
|
|
||||||
public void run() {
|
public void run() {
|
||||||
final PrintStream out = System.out;
|
final PrintStream out = System.out;
|
||||||
if (PerfMemory.initialized()) {
|
if (PerfMemory.initialized()) {
|
||||||
|
|
|
@ -24,6 +24,8 @@
|
||||||
|
|
||||||
package sun.jvm.hotspot.tools;
|
package sun.jvm.hotspot.tools;
|
||||||
|
|
||||||
|
import sun.jvm.hotspot.debugger.JVMDebugger;
|
||||||
|
|
||||||
public class JStack extends Tool {
|
public class JStack extends Tool {
|
||||||
public JStack(boolean mixedMode, boolean concurrentLocks) {
|
public JStack(boolean mixedMode, boolean concurrentLocks) {
|
||||||
this.mixedMode = mixedMode;
|
this.mixedMode = mixedMode;
|
||||||
|
@ -34,6 +36,10 @@ public class JStack extends Tool {
|
||||||
this(true, true);
|
this(true, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public JStack(JVMDebugger d) {
|
||||||
|
super(d);
|
||||||
|
}
|
||||||
|
|
||||||
protected boolean needsJavaPrefix() {
|
protected boolean needsJavaPrefix() {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,6 +33,14 @@ import java.io.PrintStream;
|
||||||
an object histogram from a remote or crashed VM. */
|
an object histogram from a remote or crashed VM. */
|
||||||
public class ObjectHistogram extends Tool {
|
public class ObjectHistogram extends Tool {
|
||||||
|
|
||||||
|
public ObjectHistogram() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
public ObjectHistogram(JVMDebugger d) {
|
||||||
|
super(d);
|
||||||
|
}
|
||||||
|
|
||||||
public void run() {
|
public void run() {
|
||||||
run(System.out, System.err);
|
run(System.out, System.err);
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,6 +31,15 @@ import sun.jvm.hotspot.debugger.cdbg.*;
|
||||||
import sun.jvm.hotspot.runtime.*;
|
import sun.jvm.hotspot.runtime.*;
|
||||||
|
|
||||||
public class PMap extends Tool {
|
public class PMap extends Tool {
|
||||||
|
|
||||||
|
public PMap() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
public PMap(JVMDebugger d) {
|
||||||
|
super(d);
|
||||||
|
}
|
||||||
|
|
||||||
public void run() {
|
public void run() {
|
||||||
run(System.out);
|
run(System.out);
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,6 +45,10 @@ public class PStack extends Tool {
|
||||||
this(true, true);
|
this(true, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public PStack(JVMDebugger d) {
|
||||||
|
super(d);
|
||||||
|
}
|
||||||
|
|
||||||
public void run() {
|
public void run() {
|
||||||
run(System.out);
|
run(System.out);
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,6 +45,16 @@ public class StackTrace extends Tool {
|
||||||
run(System.out);
|
run(System.out);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public StackTrace(JVMDebugger d) {
|
||||||
|
super(d);
|
||||||
|
}
|
||||||
|
|
||||||
|
public StackTrace(JVMDebugger d, boolean v, boolean concurrentLocks) {
|
||||||
|
super(d);
|
||||||
|
this.verbose = v;
|
||||||
|
this.concurrentLocks = concurrentLocks;
|
||||||
|
}
|
||||||
|
|
||||||
public void run(java.io.PrintStream tty) {
|
public void run(java.io.PrintStream tty) {
|
||||||
// Ready to go with the database...
|
// Ready to go with the database...
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -27,10 +27,19 @@ package sun.jvm.hotspot.tools;
|
||||||
import java.io.PrintStream;
|
import java.io.PrintStream;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
|
||||||
|
import sun.jvm.hotspot.debugger.JVMDebugger;
|
||||||
import sun.jvm.hotspot.runtime.*;
|
import sun.jvm.hotspot.runtime.*;
|
||||||
|
|
||||||
public class SysPropsDumper extends Tool {
|
public class SysPropsDumper extends Tool {
|
||||||
|
|
||||||
|
public SysPropsDumper() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
public SysPropsDumper(JVMDebugger d) {
|
||||||
|
super(d);
|
||||||
|
}
|
||||||
|
|
||||||
public void run() {
|
public void run() {
|
||||||
Properties sysProps = VM.getVM().getSystemProperties();
|
Properties sysProps = VM.getVM().getSystemProperties();
|
||||||
PrintStream out = System.out;
|
PrintStream out = System.out;
|
||||||
|
|
|
@ -35,6 +35,7 @@ import sun.jvm.hotspot.debugger.*;
|
||||||
|
|
||||||
public abstract class Tool implements Runnable {
|
public abstract class Tool implements Runnable {
|
||||||
private HotSpotAgent agent;
|
private HotSpotAgent agent;
|
||||||
|
private JVMDebugger jvmDebugger;
|
||||||
private int debugeeType;
|
private int debugeeType;
|
||||||
|
|
||||||
// debugeeType is one of constants below
|
// debugeeType is one of constants below
|
||||||
|
@ -42,6 +43,13 @@ public abstract class Tool implements Runnable {
|
||||||
protected static final int DEBUGEE_CORE = 1;
|
protected static final int DEBUGEE_CORE = 1;
|
||||||
protected static final int DEBUGEE_REMOTE = 2;
|
protected static final int DEBUGEE_REMOTE = 2;
|
||||||
|
|
||||||
|
public Tool() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public Tool(JVMDebugger d) {
|
||||||
|
jvmDebugger = d;
|
||||||
|
}
|
||||||
|
|
||||||
public String getName() {
|
public String getName() {
|
||||||
return getClass().getName();
|
return getClass().getName();
|
||||||
}
|
}
|
||||||
|
@ -90,7 +98,6 @@ public abstract class Tool implements Runnable {
|
||||||
|
|
||||||
protected void usage() {
|
protected void usage() {
|
||||||
printUsage();
|
printUsage();
|
||||||
System.exit(1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -106,13 +113,13 @@ public abstract class Tool implements Runnable {
|
||||||
protected void stop() {
|
protected void stop() {
|
||||||
if (agent != null) {
|
if (agent != null) {
|
||||||
agent.detach();
|
agent.detach();
|
||||||
System.exit(0);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void start(String[] args) {
|
protected void start(String[] args) {
|
||||||
if ((args.length < 1) || (args.length > 2)) {
|
if ((args.length < 1) || (args.length > 2)) {
|
||||||
usage();
|
usage();
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Attempt to handle -h or -help or some invalid flag
|
// Attempt to handle -h or -help or some invalid flag
|
||||||
|
@ -185,13 +192,31 @@ public abstract class Tool implements Runnable {
|
||||||
}
|
}
|
||||||
if (e.getMessage() != null) {
|
if (e.getMessage() != null) {
|
||||||
err.print(e.getMessage());
|
err.print(e.getMessage());
|
||||||
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
err.println();
|
err.println();
|
||||||
System.exit(1);
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
err.println("Debugger attached successfully.");
|
err.println("Debugger attached successfully.");
|
||||||
|
startInternal();
|
||||||
|
}
|
||||||
|
|
||||||
|
// When using an existing JVMDebugger.
|
||||||
|
public void start() {
|
||||||
|
|
||||||
|
if (jvmDebugger == null) {
|
||||||
|
throw new RuntimeException("Tool.start() called with no JVMDebugger set.");
|
||||||
|
}
|
||||||
|
agent = new HotSpotAgent();
|
||||||
|
agent.attach(jvmDebugger);
|
||||||
|
startInternal();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remains of the start mechanism, common to both start methods.
|
||||||
|
private void startInternal() {
|
||||||
|
|
||||||
|
PrintStream err = System.err;
|
||||||
VM vm = VM.getVM();
|
VM vm = VM.getVM();
|
||||||
if (vm.isCore()) {
|
if (vm.isCore()) {
|
||||||
err.println("Core build detected.");
|
err.println("Core build detected.");
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
package sun.jvm.hotspot.tools.jcore;
|
package sun.jvm.hotspot.tools.jcore;
|
||||||
|
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
|
import java.lang.reflect.Constructor;
|
||||||
import java.util.jar.JarOutputStream;
|
import java.util.jar.JarOutputStream;
|
||||||
import java.util.jar.JarEntry;
|
import java.util.jar.JarEntry;
|
||||||
import java.util.jar.Manifest;
|
import java.util.jar.Manifest;
|
||||||
|
@ -38,6 +39,16 @@ public class ClassDump extends Tool {
|
||||||
private ClassFilter classFilter;
|
private ClassFilter classFilter;
|
||||||
private String outputDirectory;
|
private String outputDirectory;
|
||||||
private JarOutputStream jarStream;
|
private JarOutputStream jarStream;
|
||||||
|
private String pkgList;
|
||||||
|
|
||||||
|
public ClassDump() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
public ClassDump(JVMDebugger d, String pkgList) {
|
||||||
|
super(d);
|
||||||
|
this.pkgList = pkgList;
|
||||||
|
}
|
||||||
|
|
||||||
public void setClassFilter(ClassFilter cf) {
|
public void setClassFilter(ClassFilter cf) {
|
||||||
classFilter = cf;
|
classFilter = cf;
|
||||||
|
@ -63,6 +74,25 @@ public class ClassDump extends Tool {
|
||||||
public void run() {
|
public void run() {
|
||||||
// Ready to go with the database...
|
// Ready to go with the database...
|
||||||
try {
|
try {
|
||||||
|
// The name of the filter always comes from a System property.
|
||||||
|
// If we have a pkgList, pass it, otherwise let the filter read
|
||||||
|
// its own System property for the list of classes.
|
||||||
|
String filterClassName = System.getProperty("sun.jvm.hotspot.tools.jcore.filter",
|
||||||
|
"sun.jvm.hotspot.tools.jcore.PackageNameFilter");
|
||||||
|
try {
|
||||||
|
Class filterClass = Class.forName(filterClassName);
|
||||||
|
if (pkgList == null) {
|
||||||
|
classFilter = (ClassFilter) filterClass.newInstance();
|
||||||
|
} else {
|
||||||
|
Constructor con = filterClass.getConstructor(String.class);
|
||||||
|
classFilter = (ClassFilter) con.newInstance(pkgList);
|
||||||
|
}
|
||||||
|
} catch(Exception exp) {
|
||||||
|
System.err.println("Warning: Can not create class filter!");
|
||||||
|
}
|
||||||
|
|
||||||
|
String outputDirectory = System.getProperty("sun.jvm.hotspot.tools.jcore.outputDir", ".");
|
||||||
|
setOutputDirectory(outputDirectory);
|
||||||
|
|
||||||
// walk through the system dictionary
|
// walk through the system dictionary
|
||||||
SystemDictionary dict = VM.getVM().getSystemDictionary();
|
SystemDictionary dict = VM.getVM().getSystemDictionary();
|
||||||
|
@ -139,26 +169,8 @@ public class ClassDump extends Tool {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
// load class filters
|
|
||||||
ClassFilter classFilter = null;
|
|
||||||
String filterClassName = System.getProperty("sun.jvm.hotspot.tools.jcore.filter");
|
|
||||||
if (filterClassName != null) {
|
|
||||||
try {
|
|
||||||
Class filterClass = Class.forName(filterClassName);
|
|
||||||
classFilter = (ClassFilter) filterClass.newInstance();
|
|
||||||
} catch(Exception exp) {
|
|
||||||
System.err.println("Warning: Can not create class filter!");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
String outputDirectory = System.getProperty("sun.jvm.hotspot.tools.jcore.outputDir");
|
|
||||||
if (outputDirectory == null)
|
|
||||||
outputDirectory = ".";
|
|
||||||
|
|
||||||
|
|
||||||
ClassDump cd = new ClassDump();
|
ClassDump cd = new ClassDump();
|
||||||
cd.setClassFilter(classFilter);
|
|
||||||
cd.setOutputDirectory(outputDirectory);
|
|
||||||
cd.start(args);
|
cd.start(args);
|
||||||
cd.stop();
|
cd.stop();
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,12 +24,22 @@
|
||||||
|
|
||||||
package sun.jvm.hotspot.tools.soql;
|
package sun.jvm.hotspot.tools.soql;
|
||||||
|
|
||||||
|
import sun.jvm.hotspot.debugger.JVMDebugger;
|
||||||
import sun.jvm.hotspot.tools.*;
|
import sun.jvm.hotspot.tools.*;
|
||||||
import sun.jvm.hotspot.utilities.*;
|
import sun.jvm.hotspot.utilities.*;
|
||||||
import sun.jvm.hotspot.utilities.soql.*;
|
import sun.jvm.hotspot.utilities.soql.*;
|
||||||
|
|
||||||
/** This is command line JavaScript debugger console */
|
/** This is command line JavaScript debugger console */
|
||||||
public class JSDB extends Tool {
|
public class JSDB extends Tool {
|
||||||
|
|
||||||
|
public JSDB() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
public JSDB(JVMDebugger d) {
|
||||||
|
super(d);
|
||||||
|
}
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
JSDB jsdb = new JSDB();
|
JSDB jsdb = new JSDB();
|
||||||
jsdb.start(args);
|
jsdb.start(args);
|
||||||
|
|
|
@ -44,6 +44,14 @@ public class SOQL extends Tool {
|
||||||
soql.stop();
|
soql.stop();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public SOQL() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
public SOQL(JVMDebugger d) {
|
||||||
|
super(d);
|
||||||
|
}
|
||||||
|
|
||||||
protected SOQLEngine soqlEngine;
|
protected SOQLEngine soqlEngine;
|
||||||
protected BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
|
protected BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
|
||||||
protected PrintStream out = System.out;
|
protected PrintStream out = System.out;
|
||||||
|
|
|
@ -112,3 +112,5 @@ ifeq ($(INCLUDE_NMT), false)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
-include $(HS_ALT_MAKE)/excludeSrc.make
|
-include $(HS_ALT_MAKE)/excludeSrc.make
|
||||||
|
|
||||||
|
.PHONY: $(HS_ALT_MAKE)/excludeSrc.make
|
||||||
|
|
|
@ -35,7 +35,7 @@ HOTSPOT_VM_COPYRIGHT=Copyright 2013
|
||||||
|
|
||||||
HS_MAJOR_VER=25
|
HS_MAJOR_VER=25
|
||||||
HS_MINOR_VER=0
|
HS_MINOR_VER=0
|
||||||
HS_BUILD_NUMBER=37
|
HS_BUILD_NUMBER=40
|
||||||
|
|
||||||
JDK_MAJOR_VER=1
|
JDK_MAJOR_VER=1
|
||||||
JDK_MINOR_VER=8
|
JDK_MINOR_VER=8
|
||||||
|
|
|
@ -350,9 +350,9 @@ else
|
||||||
ifeq ($(DEBUG_CFLAGS/$(BUILDARCH)),)
|
ifeq ($(DEBUG_CFLAGS/$(BUILDARCH)),)
|
||||||
ifeq ($(USE_CLANG), true)
|
ifeq ($(USE_CLANG), true)
|
||||||
# Clang doesn't understand -gstabs
|
# Clang doesn't understand -gstabs
|
||||||
OPT_CFLAGS += -g
|
DEBUG_CFLAGS += -g
|
||||||
else
|
else
|
||||||
OPT_CFLAGS += -gstabs
|
DEBUG_CFLAGS += -gstabs
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -365,9 +365,9 @@ else
|
||||||
ifeq ($(FASTDEBUG_CFLAGS/$(BUILDARCH)),)
|
ifeq ($(FASTDEBUG_CFLAGS/$(BUILDARCH)),)
|
||||||
ifeq ($(USE_CLANG), true)
|
ifeq ($(USE_CLANG), true)
|
||||||
# Clang doesn't understand -gstabs
|
# Clang doesn't understand -gstabs
|
||||||
OPT_CFLAGS += -g
|
FASTDEBUG_CFLAGS += -g
|
||||||
else
|
else
|
||||||
OPT_CFLAGS += -gstabs
|
FASTDEBUG_CFLAGS += -gstabs
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
|
@ -107,6 +107,10 @@ CXXFLAGS/BYFILE = $(CXXFLAGS/$@)
|
||||||
# File specific flags
|
# File specific flags
|
||||||
CXXFLAGS += $(CXXFLAGS/BYFILE)
|
CXXFLAGS += $(CXXFLAGS/BYFILE)
|
||||||
|
|
||||||
|
# Large File Support
|
||||||
|
ifneq ($(LP64), 1)
|
||||||
|
CXXFLAGS/ostream.o += -D_FILE_OFFSET_BITS=64
|
||||||
|
endif # ifneq ($(LP64), 1)
|
||||||
|
|
||||||
# CFLAGS_WARN holds compiler options to suppress/enable warnings.
|
# CFLAGS_WARN holds compiler options to suppress/enable warnings.
|
||||||
CFLAGS += $(CFLAGS_WARN/BYFILE)
|
CFLAGS += $(CFLAGS_WARN/BYFILE)
|
||||||
|
|
|
@ -95,6 +95,10 @@ CXXFLAGS/BYFILE = $(CXXFLAGS/$@)
|
||||||
# File specific flags
|
# File specific flags
|
||||||
CXXFLAGS += $(CXXFLAGS/BYFILE)
|
CXXFLAGS += $(CXXFLAGS/BYFILE)
|
||||||
|
|
||||||
|
# Large File Support
|
||||||
|
ifneq ($(LP64), 1)
|
||||||
|
CXXFLAGS/ostream.o += -D_FILE_OFFSET_BITS=64
|
||||||
|
endif # ifneq ($(LP64), 1)
|
||||||
|
|
||||||
# CFLAGS_WARN holds compiler options to suppress/enable warnings.
|
# CFLAGS_WARN holds compiler options to suppress/enable warnings.
|
||||||
CFLAGS += $(CFLAGS_WARN)
|
CFLAGS += $(CFLAGS_WARN)
|
||||||
|
|
|
@ -57,7 +57,6 @@ class Assembler : public AbstractAssembler {
|
||||||
fbp_op2 = 5,
|
fbp_op2 = 5,
|
||||||
br_op2 = 2,
|
br_op2 = 2,
|
||||||
bp_op2 = 1,
|
bp_op2 = 1,
|
||||||
cb_op2 = 7, // V8
|
|
||||||
sethi_op2 = 4
|
sethi_op2 = 4
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -145,7 +144,6 @@ class Assembler : public AbstractAssembler {
|
||||||
ldsh_op3 = 0x0a,
|
ldsh_op3 = 0x0a,
|
||||||
ldx_op3 = 0x0b,
|
ldx_op3 = 0x0b,
|
||||||
|
|
||||||
ldstub_op3 = 0x0d,
|
|
||||||
stx_op3 = 0x0e,
|
stx_op3 = 0x0e,
|
||||||
swap_op3 = 0x0f,
|
swap_op3 = 0x0f,
|
||||||
|
|
||||||
|
@ -163,15 +161,6 @@ class Assembler : public AbstractAssembler {
|
||||||
|
|
||||||
prefetch_op3 = 0x2d,
|
prefetch_op3 = 0x2d,
|
||||||
|
|
||||||
|
|
||||||
ldc_op3 = 0x30,
|
|
||||||
ldcsr_op3 = 0x31,
|
|
||||||
lddc_op3 = 0x33,
|
|
||||||
stc_op3 = 0x34,
|
|
||||||
stcsr_op3 = 0x35,
|
|
||||||
stdcq_op3 = 0x36,
|
|
||||||
stdc_op3 = 0x37,
|
|
||||||
|
|
||||||
casa_op3 = 0x3c,
|
casa_op3 = 0x3c,
|
||||||
casxa_op3 = 0x3e,
|
casxa_op3 = 0x3e,
|
||||||
|
|
||||||
|
@ -574,17 +563,11 @@ class Assembler : public AbstractAssembler {
|
||||||
static void vis3_only() { assert( VM_Version::has_vis3(), "This instruction only works on SPARC with VIS3"); }
|
static void vis3_only() { assert( VM_Version::has_vis3(), "This instruction only works on SPARC with VIS3"); }
|
||||||
|
|
||||||
// instruction only in v9
|
// instruction only in v9
|
||||||
static void v9_only() { assert( VM_Version::v9_instructions_work(), "This instruction only works on SPARC V9"); }
|
static void v9_only() { } // do nothing
|
||||||
|
|
||||||
// instruction only in v8
|
|
||||||
static void v8_only() { assert( VM_Version::v8_instructions_work(), "This instruction only works on SPARC V8"); }
|
|
||||||
|
|
||||||
// instruction deprecated in v9
|
// instruction deprecated in v9
|
||||||
static void v9_dep() { } // do nothing for now
|
static void v9_dep() { } // do nothing for now
|
||||||
|
|
||||||
// some float instructions only exist for single prec. on v8
|
|
||||||
static void v8_s_only(FloatRegisterImpl::Width w) { if (w != FloatRegisterImpl::S) v9_only(); }
|
|
||||||
|
|
||||||
// v8 has no CC field
|
// v8 has no CC field
|
||||||
static void v8_no_cc(CC cc) { if (cc) v9_only(); }
|
static void v8_no_cc(CC cc) { if (cc) v9_only(); }
|
||||||
|
|
||||||
|
@ -730,11 +713,6 @@ public:
|
||||||
inline void bp( Condition c, bool a, CC cc, Predict p, address d, relocInfo::relocType rt = relocInfo::none );
|
inline void bp( Condition c, bool a, CC cc, Predict p, address d, relocInfo::relocType rt = relocInfo::none );
|
||||||
inline void bp( Condition c, bool a, CC cc, Predict p, Label& L );
|
inline void bp( Condition c, bool a, CC cc, Predict p, Label& L );
|
||||||
|
|
||||||
// pp 121 (V8)
|
|
||||||
|
|
||||||
inline void cb( Condition c, bool a, address d, relocInfo::relocType rt = relocInfo::none );
|
|
||||||
inline void cb( Condition c, bool a, Label& L );
|
|
||||||
|
|
||||||
// pp 149
|
// pp 149
|
||||||
|
|
||||||
inline void call( address d, relocInfo::relocType rt = relocInfo::runtime_call_type );
|
inline void call( address d, relocInfo::relocType rt = relocInfo::runtime_call_type );
|
||||||
|
@ -775,8 +753,8 @@ public:
|
||||||
|
|
||||||
// pp 157
|
// pp 157
|
||||||
|
|
||||||
void fcmp( FloatRegisterImpl::Width w, CC cc, FloatRegister s1, FloatRegister s2) { v8_no_cc(cc); emit_int32( op(arith_op) | cmpcc(cc) | op3(fpop2_op3) | fs1(s1, w) | opf(0x50 + w) | fs2(s2, w)); }
|
void fcmp( FloatRegisterImpl::Width w, CC cc, FloatRegister s1, FloatRegister s2) { emit_int32( op(arith_op) | cmpcc(cc) | op3(fpop2_op3) | fs1(s1, w) | opf(0x50 + w) | fs2(s2, w)); }
|
||||||
void fcmpe( FloatRegisterImpl::Width w, CC cc, FloatRegister s1, FloatRegister s2) { v8_no_cc(cc); emit_int32( op(arith_op) | cmpcc(cc) | op3(fpop2_op3) | fs1(s1, w) | opf(0x54 + w) | fs2(s2, w)); }
|
void fcmpe( FloatRegisterImpl::Width w, CC cc, FloatRegister s1, FloatRegister s2) { emit_int32( op(arith_op) | cmpcc(cc) | op3(fpop2_op3) | fs1(s1, w) | opf(0x54 + w) | fs2(s2, w)); }
|
||||||
|
|
||||||
// pp 159
|
// pp 159
|
||||||
|
|
||||||
|
@ -794,21 +772,11 @@ public:
|
||||||
|
|
||||||
// pp 162
|
// pp 162
|
||||||
|
|
||||||
void fmov( FloatRegisterImpl::Width w, FloatRegister s, FloatRegister d ) { v8_s_only(w); emit_int32( op(arith_op) | fd(d, w) | op3(fpop1_op3) | opf(0x00 + w) | fs2(s, w)); }
|
void fmov( FloatRegisterImpl::Width w, FloatRegister s, FloatRegister d ) { emit_int32( op(arith_op) | fd(d, w) | op3(fpop1_op3) | opf(0x00 + w) | fs2(s, w)); }
|
||||||
|
|
||||||
void fneg( FloatRegisterImpl::Width w, FloatRegister s, FloatRegister d ) { v8_s_only(w); emit_int32( op(arith_op) | fd(d, w) | op3(fpop1_op3) | opf(0x04 + w) | fs2(s, w)); }
|
void fneg( FloatRegisterImpl::Width w, FloatRegister s, FloatRegister d ) { emit_int32( op(arith_op) | fd(d, w) | op3(fpop1_op3) | opf(0x04 + w) | fs2(s, w)); }
|
||||||
|
|
||||||
// page 144 sparc v8 architecture (double prec works on v8 if the source and destination registers are the same). fnegs is the only instruction available
|
void fabs( FloatRegisterImpl::Width w, FloatRegister s, FloatRegister d ) { emit_int32( op(arith_op) | fd(d, w) | op3(fpop1_op3) | opf(0x08 + w) | fs2(s, w)); }
|
||||||
// on v8 to do negation of single, double and quad precision floats.
|
|
||||||
|
|
||||||
void fneg( FloatRegisterImpl::Width w, FloatRegister sd ) { if (VM_Version::v9_instructions_work()) emit_int32( op(arith_op) | fd(sd, w) | op3(fpop1_op3) | opf(0x04 + w) | fs2(sd, w)); else emit_int32( op(arith_op) | fd(sd, w) | op3(fpop1_op3) | opf(0x05) | fs2(sd, w)); }
|
|
||||||
|
|
||||||
void fabs( FloatRegisterImpl::Width w, FloatRegister s, FloatRegister d ) { v8_s_only(w); emit_int32( op(arith_op) | fd(d, w) | op3(fpop1_op3) | opf(0x08 + w) | fs2(s, w)); }
|
|
||||||
|
|
||||||
// page 144 sparc v8 architecture (double prec works on v8 if the source and destination registers are the same). fabss is the only instruction available
|
|
||||||
// on v8 to do abs operation on single/double/quad precision floats.
|
|
||||||
|
|
||||||
void fabs( FloatRegisterImpl::Width w, FloatRegister sd ) { if (VM_Version::v9_instructions_work()) emit_int32( op(arith_op) | fd(sd, w) | op3(fpop1_op3) | opf(0x08 + w) | fs2(sd, w)); else emit_int32( op(arith_op) | fd(sd, w) | op3(fpop1_op3) | opf(0x09) | fs2(sd, w)); }
|
|
||||||
|
|
||||||
// pp 163
|
// pp 163
|
||||||
|
|
||||||
|
@ -839,11 +807,6 @@ public:
|
||||||
void impdep1( int id1, int const19a ) { v9_only(); emit_int32( op(arith_op) | fcn(id1) | op3(impdep1_op3) | u_field(const19a, 18, 0)); }
|
void impdep1( int id1, int const19a ) { v9_only(); emit_int32( op(arith_op) | fcn(id1) | op3(impdep1_op3) | u_field(const19a, 18, 0)); }
|
||||||
void impdep2( int id1, int const19a ) { v9_only(); emit_int32( op(arith_op) | fcn(id1) | op3(impdep2_op3) | u_field(const19a, 18, 0)); }
|
void impdep2( int id1, int const19a ) { v9_only(); emit_int32( op(arith_op) | fcn(id1) | op3(impdep2_op3) | u_field(const19a, 18, 0)); }
|
||||||
|
|
||||||
// pp 149 (v8)
|
|
||||||
|
|
||||||
void cpop1( int opc, int cr1, int cr2, int crd ) { v8_only(); emit_int32( op(arith_op) | fcn(crd) | op3(impdep1_op3) | u_field(cr1, 18, 14) | opf(opc) | u_field(cr2, 4, 0)); }
|
|
||||||
void cpop2( int opc, int cr1, int cr2, int crd ) { v8_only(); emit_int32( op(arith_op) | fcn(crd) | op3(impdep2_op3) | u_field(cr1, 18, 14) | opf(opc) | u_field(cr2, 4, 0)); }
|
|
||||||
|
|
||||||
// pp 170
|
// pp 170
|
||||||
|
|
||||||
void jmpl( Register s1, Register s2, Register d );
|
void jmpl( Register s1, Register s2, Register d );
|
||||||
|
@ -860,16 +823,6 @@ public:
|
||||||
inline void ldxfsr( Register s1, Register s2 );
|
inline void ldxfsr( Register s1, Register s2 );
|
||||||
inline void ldxfsr( Register s1, int simm13a);
|
inline void ldxfsr( Register s1, int simm13a);
|
||||||
|
|
||||||
// pp 94 (v8)
|
|
||||||
|
|
||||||
inline void ldc( Register s1, Register s2, int crd );
|
|
||||||
inline void ldc( Register s1, int simm13a, int crd);
|
|
||||||
inline void lddc( Register s1, Register s2, int crd );
|
|
||||||
inline void lddc( Register s1, int simm13a, int crd);
|
|
||||||
inline void ldcsr( Register s1, Register s2, int crd );
|
|
||||||
inline void ldcsr( Register s1, int simm13a, int crd);
|
|
||||||
|
|
||||||
|
|
||||||
// 173
|
// 173
|
||||||
|
|
||||||
void ldfa( FloatRegisterImpl::Width w, Register s1, Register s2, int ia, FloatRegister d ) { v9_only(); emit_int32( op(ldst_op) | fd(d, w) | alt_op3(ldf_op3 | alt_bit_op3, w) | rs1(s1) | imm_asi(ia) | rs2(s2) ); }
|
void ldfa( FloatRegisterImpl::Width w, Register s1, Register s2, int ia, FloatRegister d ) { v9_only(); emit_int32( op(ldst_op) | fd(d, w) | alt_op3(ldf_op3 | alt_bit_op3, w) | rs1(s1) | imm_asi(ia) | rs2(s2) ); }
|
||||||
|
@ -910,18 +863,6 @@ public:
|
||||||
void lduwa( Register s1, int simm13a, Register d ) { emit_int32( op(ldst_op) | rd(d) | op3(lduw_op3 | alt_bit_op3) | rs1(s1) | immed(true) | simm(simm13a, 13) ); }
|
void lduwa( Register s1, int simm13a, Register d ) { emit_int32( op(ldst_op) | rd(d) | op3(lduw_op3 | alt_bit_op3) | rs1(s1) | immed(true) | simm(simm13a, 13) ); }
|
||||||
void ldxa( Register s1, Register s2, int ia, Register d ) { v9_only(); emit_int32( op(ldst_op) | rd(d) | op3(ldx_op3 | alt_bit_op3) | rs1(s1) | imm_asi(ia) | rs2(s2) ); }
|
void ldxa( Register s1, Register s2, int ia, Register d ) { v9_only(); emit_int32( op(ldst_op) | rd(d) | op3(ldx_op3 | alt_bit_op3) | rs1(s1) | imm_asi(ia) | rs2(s2) ); }
|
||||||
void ldxa( Register s1, int simm13a, Register d ) { v9_only(); emit_int32( op(ldst_op) | rd(d) | op3(ldx_op3 | alt_bit_op3) | rs1(s1) | immed(true) | simm(simm13a, 13) ); }
|
void ldxa( Register s1, int simm13a, Register d ) { v9_only(); emit_int32( op(ldst_op) | rd(d) | op3(ldx_op3 | alt_bit_op3) | rs1(s1) | immed(true) | simm(simm13a, 13) ); }
|
||||||
void ldda( Register s1, Register s2, int ia, Register d ) { v9_dep(); emit_int32( op(ldst_op) | rd(d) | op3(ldd_op3 | alt_bit_op3) | rs1(s1) | imm_asi(ia) | rs2(s2) ); }
|
|
||||||
void ldda( Register s1, int simm13a, Register d ) { v9_dep(); emit_int32( op(ldst_op) | rd(d) | op3(ldd_op3 | alt_bit_op3) | rs1(s1) | immed(true) | simm(simm13a, 13) ); }
|
|
||||||
|
|
||||||
// pp 179
|
|
||||||
|
|
||||||
inline void ldstub( Register s1, Register s2, Register d );
|
|
||||||
inline void ldstub( Register s1, int simm13a, Register d);
|
|
||||||
|
|
||||||
// pp 180
|
|
||||||
|
|
||||||
void ldstuba( Register s1, Register s2, int ia, Register d ) { emit_int32( op(ldst_op) | rd(d) | op3(ldstub_op3 | alt_bit_op3) | rs1(s1) | imm_asi(ia) | rs2(s2) ); }
|
|
||||||
void ldstuba( Register s1, int simm13a, Register d ) { emit_int32( op(ldst_op) | rd(d) | op3(ldstub_op3 | alt_bit_op3) | rs1(s1) | immed(true) | simm(simm13a, 13) ); }
|
|
||||||
|
|
||||||
// pp 181
|
// pp 181
|
||||||
|
|
||||||
|
@ -992,11 +933,6 @@ public:
|
||||||
void smulcc( Register s1, Register s2, Register d ) { emit_int32( op(arith_op) | rd(d) | op3(smul_op3 | cc_bit_op3) | rs1(s1) | rs2(s2) ); }
|
void smulcc( Register s1, Register s2, Register d ) { emit_int32( op(arith_op) | rd(d) | op3(smul_op3 | cc_bit_op3) | rs1(s1) | rs2(s2) ); }
|
||||||
void smulcc( Register s1, int simm13a, Register d ) { emit_int32( op(arith_op) | rd(d) | op3(smul_op3 | cc_bit_op3) | rs1(s1) | immed(true) | simm(simm13a, 13) ); }
|
void smulcc( Register s1, int simm13a, Register d ) { emit_int32( op(arith_op) | rd(d) | op3(smul_op3 | cc_bit_op3) | rs1(s1) | immed(true) | simm(simm13a, 13) ); }
|
||||||
|
|
||||||
// pp 199
|
|
||||||
|
|
||||||
void mulscc( Register s1, Register s2, Register d ) { v9_dep(); emit_int32( op(arith_op) | rd(d) | op3(mulscc_op3) | rs1(s1) | rs2(s2) ); }
|
|
||||||
void mulscc( Register s1, int simm13a, Register d ) { v9_dep(); emit_int32( op(arith_op) | rd(d) | op3(mulscc_op3) | rs1(s1) | immed(true) | simm(simm13a, 13) ); }
|
|
||||||
|
|
||||||
// pp 201
|
// pp 201
|
||||||
|
|
||||||
void nop() { emit_int32( op(branch_op) | op2(sethi_op2) ); }
|
void nop() { emit_int32( op(branch_op) | op2(sethi_op2) ); }
|
||||||
|
@ -1116,17 +1052,6 @@ public:
|
||||||
void stda( Register d, Register s1, Register s2, int ia ) { emit_int32( op(ldst_op) | rd(d) | op3(std_op3 | alt_bit_op3) | rs1(s1) | imm_asi(ia) | rs2(s2) ); }
|
void stda( Register d, Register s1, Register s2, int ia ) { emit_int32( op(ldst_op) | rd(d) | op3(std_op3 | alt_bit_op3) | rs1(s1) | imm_asi(ia) | rs2(s2) ); }
|
||||||
void stda( Register d, Register s1, int simm13a ) { emit_int32( op(ldst_op) | rd(d) | op3(std_op3 | alt_bit_op3) | rs1(s1) | immed(true) | simm(simm13a, 13) ); }
|
void stda( Register d, Register s1, int simm13a ) { emit_int32( op(ldst_op) | rd(d) | op3(std_op3 | alt_bit_op3) | rs1(s1) | immed(true) | simm(simm13a, 13) ); }
|
||||||
|
|
||||||
// pp 97 (v8)
|
|
||||||
|
|
||||||
inline void stc( int crd, Register s1, Register s2 );
|
|
||||||
inline void stc( int crd, Register s1, int simm13a);
|
|
||||||
inline void stdc( int crd, Register s1, Register s2 );
|
|
||||||
inline void stdc( int crd, Register s1, int simm13a);
|
|
||||||
inline void stcsr( int crd, Register s1, Register s2 );
|
|
||||||
inline void stcsr( int crd, Register s1, int simm13a);
|
|
||||||
inline void stdcq( int crd, Register s1, Register s2 );
|
|
||||||
inline void stdcq( int crd, Register s1, int simm13a);
|
|
||||||
|
|
||||||
// pp 230
|
// pp 230
|
||||||
|
|
||||||
void sub( Register s1, Register s2, Register d ) { emit_int32( op(arith_op) | rd(d) | op3(sub_op3 ) | rs1(s1) | rs2(s2) ); }
|
void sub( Register s1, Register s2, Register d ) { emit_int32( op(arith_op) | rd(d) | op3(sub_op3 ) | rs1(s1) | rs2(s2) ); }
|
||||||
|
@ -1153,20 +1078,16 @@ public:
|
||||||
|
|
||||||
void taddcc( Register s1, Register s2, Register d ) { emit_int32( op(arith_op) | rd(d) | op3(taddcc_op3 ) | rs1(s1) | rs2(s2) ); }
|
void taddcc( Register s1, Register s2, Register d ) { emit_int32( op(arith_op) | rd(d) | op3(taddcc_op3 ) | rs1(s1) | rs2(s2) ); }
|
||||||
void taddcc( Register s1, int simm13a, Register d ) { emit_int32( op(arith_op) | rd(d) | op3(taddcc_op3 ) | rs1(s1) | immed(true) | simm(simm13a, 13) ); }
|
void taddcc( Register s1, int simm13a, Register d ) { emit_int32( op(arith_op) | rd(d) | op3(taddcc_op3 ) | rs1(s1) | immed(true) | simm(simm13a, 13) ); }
|
||||||
void taddcctv( Register s1, Register s2, Register d ) { v9_dep(); emit_int32( op(arith_op) | rd(d) | op3(taddcctv_op3) | rs1(s1) | rs2(s2) ); }
|
|
||||||
void taddcctv( Register s1, int simm13a, Register d ) { v9_dep(); emit_int32( op(arith_op) | rd(d) | op3(taddcctv_op3) | rs1(s1) | immed(true) | simm(simm13a, 13) ); }
|
|
||||||
|
|
||||||
// pp 235
|
// pp 235
|
||||||
|
|
||||||
void tsubcc( Register s1, Register s2, Register d ) { emit_int32( op(arith_op) | rd(d) | op3(tsubcc_op3 ) | rs1(s1) | rs2(s2) ); }
|
void tsubcc( Register s1, Register s2, Register d ) { emit_int32( op(arith_op) | rd(d) | op3(tsubcc_op3 ) | rs1(s1) | rs2(s2) ); }
|
||||||
void tsubcc( Register s1, int simm13a, Register d ) { emit_int32( op(arith_op) | rd(d) | op3(tsubcc_op3 ) | rs1(s1) | immed(true) | simm(simm13a, 13) ); }
|
void tsubcc( Register s1, int simm13a, Register d ) { emit_int32( op(arith_op) | rd(d) | op3(tsubcc_op3 ) | rs1(s1) | immed(true) | simm(simm13a, 13) ); }
|
||||||
void tsubcctv( Register s1, Register s2, Register d ) { emit_int32( op(arith_op) | rd(d) | op3(tsubcctv_op3) | rs1(s1) | rs2(s2) ); }
|
|
||||||
void tsubcctv( Register s1, int simm13a, Register d ) { emit_int32( op(arith_op) | rd(d) | op3(tsubcctv_op3) | rs1(s1) | immed(true) | simm(simm13a, 13) ); }
|
|
||||||
|
|
||||||
// pp 237
|
// pp 237
|
||||||
|
|
||||||
void trap( Condition c, CC cc, Register s1, Register s2 ) { v8_no_cc(cc); emit_int32( op(arith_op) | cond(c) | op3(trap_op3) | rs1(s1) | trapcc(cc) | rs2(s2)); }
|
void trap( Condition c, CC cc, Register s1, Register s2 ) { emit_int32( op(arith_op) | cond(c) | op3(trap_op3) | rs1(s1) | trapcc(cc) | rs2(s2)); }
|
||||||
void trap( Condition c, CC cc, Register s1, int trapa ) { v8_no_cc(cc); emit_int32( op(arith_op) | cond(c) | op3(trap_op3) | rs1(s1) | trapcc(cc) | immed(true) | u_field(trapa, 6, 0)); }
|
void trap( Condition c, CC cc, Register s1, int trapa ) { emit_int32( op(arith_op) | cond(c) | op3(trap_op3) | rs1(s1) | trapcc(cc) | immed(true) | u_field(trapa, 6, 0)); }
|
||||||
// simple uncond. trap
|
// simple uncond. trap
|
||||||
void trap( int trapa ) { trap( always, icc, G0, trapa ); }
|
void trap( int trapa ) { trap( always, icc, G0, trapa ); }
|
||||||
|
|
||||||
|
|
|
@ -63,9 +63,6 @@ inline void Assembler::fb( Condition c, bool a, Label& L ) { fb(c, a, target(L))
|
||||||
inline void Assembler::fbp( Condition c, bool a, CC cc, Predict p, address d, relocInfo::relocType rt ) { v9_only(); cti(); emit_data( op(branch_op) | annul(a) | cond(c) | op2(fbp_op2) | branchcc(cc) | predict(p) | wdisp(intptr_t(d), intptr_t(pc()), 19), rt); has_delay_slot(); }
|
inline void Assembler::fbp( Condition c, bool a, CC cc, Predict p, address d, relocInfo::relocType rt ) { v9_only(); cti(); emit_data( op(branch_op) | annul(a) | cond(c) | op2(fbp_op2) | branchcc(cc) | predict(p) | wdisp(intptr_t(d), intptr_t(pc()), 19), rt); has_delay_slot(); }
|
||||||
inline void Assembler::fbp( Condition c, bool a, CC cc, Predict p, Label& L ) { fbp(c, a, cc, p, target(L)); }
|
inline void Assembler::fbp( Condition c, bool a, CC cc, Predict p, Label& L ) { fbp(c, a, cc, p, target(L)); }
|
||||||
|
|
||||||
inline void Assembler::cb( Condition c, bool a, address d, relocInfo::relocType rt ) { v8_only(); cti(); emit_data( op(branch_op) | annul(a) | cond(c) | op2(cb_op2) | wdisp(intptr_t(d), intptr_t(pc()), 22), rt); has_delay_slot(); }
|
|
||||||
inline void Assembler::cb( Condition c, bool a, Label& L ) { cb(c, a, target(L)); }
|
|
||||||
|
|
||||||
inline void Assembler::br( Condition c, bool a, address d, relocInfo::relocType rt ) { v9_dep(); cti(); emit_data( op(branch_op) | annul(a) | cond(c) | op2(br_op2) | wdisp(intptr_t(d), intptr_t(pc()), 22), rt); has_delay_slot(); }
|
inline void Assembler::br( Condition c, bool a, address d, relocInfo::relocType rt ) { v9_dep(); cti(); emit_data( op(branch_op) | annul(a) | cond(c) | op2(br_op2) | wdisp(intptr_t(d), intptr_t(pc()), 22), rt); has_delay_slot(); }
|
||||||
inline void Assembler::br( Condition c, bool a, Label& L ) { br(c, a, target(L)); }
|
inline void Assembler::br( Condition c, bool a, Label& L ) { br(c, a, target(L)); }
|
||||||
|
|
||||||
|
@ -88,18 +85,9 @@ inline void Assembler::jmpl( Register s1, int simm13a, Register d, RelocationHol
|
||||||
inline void Assembler::ldf(FloatRegisterImpl::Width w, Register s1, Register s2, FloatRegister d) { emit_int32( op(ldst_op) | fd(d, w) | alt_op3(ldf_op3, w) | rs1(s1) | rs2(s2) ); }
|
inline void Assembler::ldf(FloatRegisterImpl::Width w, Register s1, Register s2, FloatRegister d) { emit_int32( op(ldst_op) | fd(d, w) | alt_op3(ldf_op3, w) | rs1(s1) | rs2(s2) ); }
|
||||||
inline void Assembler::ldf(FloatRegisterImpl::Width w, Register s1, int simm13a, FloatRegister d, RelocationHolder const& rspec) { emit_data( op(ldst_op) | fd(d, w) | alt_op3(ldf_op3, w) | rs1(s1) | immed(true) | simm(simm13a, 13), rspec); }
|
inline void Assembler::ldf(FloatRegisterImpl::Width w, Register s1, int simm13a, FloatRegister d, RelocationHolder const& rspec) { emit_data( op(ldst_op) | fd(d, w) | alt_op3(ldf_op3, w) | rs1(s1) | immed(true) | simm(simm13a, 13), rspec); }
|
||||||
|
|
||||||
inline void Assembler::ldfsr( Register s1, Register s2) { v9_dep(); emit_int32( op(ldst_op) | op3(ldfsr_op3) | rs1(s1) | rs2(s2) ); }
|
|
||||||
inline void Assembler::ldfsr( Register s1, int simm13a) { v9_dep(); emit_data( op(ldst_op) | op3(ldfsr_op3) | rs1(s1) | immed(true) | simm(simm13a, 13)); }
|
|
||||||
inline void Assembler::ldxfsr( Register s1, Register s2) { v9_only(); emit_int32( op(ldst_op) | rd(G1) | op3(ldfsr_op3) | rs1(s1) | rs2(s2) ); }
|
inline void Assembler::ldxfsr( Register s1, Register s2) { v9_only(); emit_int32( op(ldst_op) | rd(G1) | op3(ldfsr_op3) | rs1(s1) | rs2(s2) ); }
|
||||||
inline void Assembler::ldxfsr( Register s1, int simm13a) { v9_only(); emit_data( op(ldst_op) | rd(G1) | op3(ldfsr_op3) | rs1(s1) | immed(true) | simm(simm13a, 13)); }
|
inline void Assembler::ldxfsr( Register s1, int simm13a) { v9_only(); emit_data( op(ldst_op) | rd(G1) | op3(ldfsr_op3) | rs1(s1) | immed(true) | simm(simm13a, 13)); }
|
||||||
|
|
||||||
inline void Assembler::ldc( Register s1, Register s2, int crd) { v8_only(); emit_int32( op(ldst_op) | fcn(crd) | op3(ldc_op3 ) | rs1(s1) | rs2(s2) ); }
|
|
||||||
inline void Assembler::ldc( Register s1, int simm13a, int crd) { v8_only(); emit_data( op(ldst_op) | fcn(crd) | op3(ldc_op3 ) | rs1(s1) | immed(true) | simm(simm13a, 13)); }
|
|
||||||
inline void Assembler::lddc( Register s1, Register s2, int crd) { v8_only(); emit_int32( op(ldst_op) | fcn(crd) | op3(lddc_op3 ) | rs1(s1) | rs2(s2) ); }
|
|
||||||
inline void Assembler::lddc( Register s1, int simm13a, int crd) { v8_only(); emit_data( op(ldst_op) | fcn(crd) | op3(lddc_op3 ) | rs1(s1) | immed(true) | simm(simm13a, 13)); }
|
|
||||||
inline void Assembler::ldcsr( Register s1, Register s2, int crd) { v8_only(); emit_int32( op(ldst_op) | fcn(crd) | op3(ldcsr_op3) | rs1(s1) | rs2(s2) ); }
|
|
||||||
inline void Assembler::ldcsr( Register s1, int simm13a, int crd) { v8_only(); emit_data( op(ldst_op) | fcn(crd) | op3(ldcsr_op3) | rs1(s1) | immed(true) | simm(simm13a, 13)); }
|
|
||||||
|
|
||||||
inline void Assembler::ldsb( Register s1, Register s2, Register d) { emit_int32( op(ldst_op) | rd(d) | op3(ldsb_op3) | rs1(s1) | rs2(s2) ); }
|
inline void Assembler::ldsb( Register s1, Register s2, Register d) { emit_int32( op(ldst_op) | rd(d) | op3(ldsb_op3) | rs1(s1) | rs2(s2) ); }
|
||||||
inline void Assembler::ldsb( Register s1, int simm13a, Register d) { emit_data( op(ldst_op) | rd(d) | op3(ldsb_op3) | rs1(s1) | immed(true) | simm(simm13a, 13)); }
|
inline void Assembler::ldsb( Register s1, int simm13a, Register d) { emit_data( op(ldst_op) | rd(d) | op3(ldsb_op3) | rs1(s1) | immed(true) | simm(simm13a, 13)); }
|
||||||
|
|
||||||
|
@ -119,9 +107,6 @@ inline void Assembler::ldx( Register s1, int simm13a, Register d) { v9_only();
|
||||||
inline void Assembler::ldd( Register s1, Register s2, Register d) { v9_dep(); assert(d->is_even(), "not even"); emit_int32( op(ldst_op) | rd(d) | op3(ldd_op3) | rs1(s1) | rs2(s2) ); }
|
inline void Assembler::ldd( Register s1, Register s2, Register d) { v9_dep(); assert(d->is_even(), "not even"); emit_int32( op(ldst_op) | rd(d) | op3(ldd_op3) | rs1(s1) | rs2(s2) ); }
|
||||||
inline void Assembler::ldd( Register s1, int simm13a, Register d) { v9_dep(); assert(d->is_even(), "not even"); emit_data( op(ldst_op) | rd(d) | op3(ldd_op3) | rs1(s1) | immed(true) | simm(simm13a, 13)); }
|
inline void Assembler::ldd( Register s1, int simm13a, Register d) { v9_dep(); assert(d->is_even(), "not even"); emit_data( op(ldst_op) | rd(d) | op3(ldd_op3) | rs1(s1) | immed(true) | simm(simm13a, 13)); }
|
||||||
|
|
||||||
inline void Assembler::ldstub( Register s1, Register s2, Register d) { emit_int32( op(ldst_op) | rd(d) | op3(ldstub_op3) | rs1(s1) | rs2(s2) ); }
|
|
||||||
inline void Assembler::ldstub( Register s1, int simm13a, Register d) { emit_data( op(ldst_op) | rd(d) | op3(ldstub_op3) | rs1(s1) | immed(true) | simm(simm13a, 13)); }
|
|
||||||
|
|
||||||
inline void Assembler::rett( Register s1, Register s2 ) { cti(); emit_int32( op(arith_op) | op3(rett_op3) | rs1(s1) | rs2(s2)); has_delay_slot(); }
|
inline void Assembler::rett( Register s1, Register s2 ) { cti(); emit_int32( op(arith_op) | op3(rett_op3) | rs1(s1) | rs2(s2)); has_delay_slot(); }
|
||||||
inline void Assembler::rett( Register s1, int simm13a, relocInfo::relocType rt) { cti(); emit_data( op(arith_op) | op3(rett_op3) | rs1(s1) | immed(true) | simm(simm13a, 13), rt); has_delay_slot(); }
|
inline void Assembler::rett( Register s1, int simm13a, relocInfo::relocType rt) { cti(); emit_data( op(arith_op) | op3(rett_op3) | rs1(s1) | immed(true) | simm(simm13a, 13), rt); has_delay_slot(); }
|
||||||
|
|
||||||
|
@ -132,8 +117,6 @@ inline void Assembler::sethi( int imm22a, Register d, RelocationHolder const& rs
|
||||||
inline void Assembler::stf( FloatRegisterImpl::Width w, FloatRegister d, Register s1, Register s2) { emit_int32( op(ldst_op) | fd(d, w) | alt_op3(stf_op3, w) | rs1(s1) | rs2(s2) ); }
|
inline void Assembler::stf( FloatRegisterImpl::Width w, FloatRegister d, Register s1, Register s2) { emit_int32( op(ldst_op) | fd(d, w) | alt_op3(stf_op3, w) | rs1(s1) | rs2(s2) ); }
|
||||||
inline void Assembler::stf( FloatRegisterImpl::Width w, FloatRegister d, Register s1, int simm13a) { emit_data( op(ldst_op) | fd(d, w) | alt_op3(stf_op3, w) | rs1(s1) | immed(true) | simm(simm13a, 13)); }
|
inline void Assembler::stf( FloatRegisterImpl::Width w, FloatRegister d, Register s1, int simm13a) { emit_data( op(ldst_op) | fd(d, w) | alt_op3(stf_op3, w) | rs1(s1) | immed(true) | simm(simm13a, 13)); }
|
||||||
|
|
||||||
inline void Assembler::stfsr( Register s1, Register s2) { v9_dep(); emit_int32( op(ldst_op) | op3(stfsr_op3) | rs1(s1) | rs2(s2) ); }
|
|
||||||
inline void Assembler::stfsr( Register s1, int simm13a) { v9_dep(); emit_data( op(ldst_op) | op3(stfsr_op3) | rs1(s1) | immed(true) | simm(simm13a, 13)); }
|
|
||||||
inline void Assembler::stxfsr( Register s1, Register s2) { v9_only(); emit_int32( op(ldst_op) | rd(G1) | op3(stfsr_op3) | rs1(s1) | rs2(s2) ); }
|
inline void Assembler::stxfsr( Register s1, Register s2) { v9_only(); emit_int32( op(ldst_op) | rd(G1) | op3(stfsr_op3) | rs1(s1) | rs2(s2) ); }
|
||||||
inline void Assembler::stxfsr( Register s1, int simm13a) { v9_only(); emit_data( op(ldst_op) | rd(G1) | op3(stfsr_op3) | rs1(s1) | immed(true) | simm(simm13a, 13)); }
|
inline void Assembler::stxfsr( Register s1, int simm13a) { v9_only(); emit_data( op(ldst_op) | rd(G1) | op3(stfsr_op3) | rs1(s1) | immed(true) | simm(simm13a, 13)); }
|
||||||
|
|
||||||
|
@ -152,17 +135,6 @@ inline void Assembler::stx( Register d, Register s1, int simm13a) { v9_only();
|
||||||
inline void Assembler::std( Register d, Register s1, Register s2) { v9_dep(); assert(d->is_even(), "not even"); emit_int32( op(ldst_op) | rd(d) | op3(std_op3) | rs1(s1) | rs2(s2) ); }
|
inline void Assembler::std( Register d, Register s1, Register s2) { v9_dep(); assert(d->is_even(), "not even"); emit_int32( op(ldst_op) | rd(d) | op3(std_op3) | rs1(s1) | rs2(s2) ); }
|
||||||
inline void Assembler::std( Register d, Register s1, int simm13a) { v9_dep(); assert(d->is_even(), "not even"); emit_data( op(ldst_op) | rd(d) | op3(std_op3) | rs1(s1) | immed(true) | simm(simm13a, 13)); }
|
inline void Assembler::std( Register d, Register s1, int simm13a) { v9_dep(); assert(d->is_even(), "not even"); emit_data( op(ldst_op) | rd(d) | op3(std_op3) | rs1(s1) | immed(true) | simm(simm13a, 13)); }
|
||||||
|
|
||||||
// v8 p 99
|
|
||||||
|
|
||||||
inline void Assembler::stc( int crd, Register s1, Register s2) { v8_only(); emit_int32( op(ldst_op) | fcn(crd) | op3(stc_op3 ) | rs1(s1) | rs2(s2) ); }
|
|
||||||
inline void Assembler::stc( int crd, Register s1, int simm13a) { v8_only(); emit_data( op(ldst_op) | fcn(crd) | op3(stc_op3 ) | rs1(s1) | immed(true) | simm(simm13a, 13)); }
|
|
||||||
inline void Assembler::stdc( int crd, Register s1, Register s2) { v8_only(); emit_int32( op(ldst_op) | fcn(crd) | op3(stdc_op3) | rs1(s1) | rs2(s2) ); }
|
|
||||||
inline void Assembler::stdc( int crd, Register s1, int simm13a) { v8_only(); emit_data( op(ldst_op) | fcn(crd) | op3(stdc_op3) | rs1(s1) | immed(true) | simm(simm13a, 13)); }
|
|
||||||
inline void Assembler::stcsr( int crd, Register s1, Register s2) { v8_only(); emit_int32( op(ldst_op) | fcn(crd) | op3(stcsr_op3) | rs1(s1) | rs2(s2) ); }
|
|
||||||
inline void Assembler::stcsr( int crd, Register s1, int simm13a) { v8_only(); emit_data( op(ldst_op) | fcn(crd) | op3(stcsr_op3) | rs1(s1) | immed(true) | simm(simm13a, 13)); }
|
|
||||||
inline void Assembler::stdcq( int crd, Register s1, Register s2) { v8_only(); emit_int32( op(ldst_op) | fcn(crd) | op3(stdcq_op3) | rs1(s1) | rs2(s2) ); }
|
|
||||||
inline void Assembler::stdcq( int crd, Register s1, int simm13a) { v8_only(); emit_data( op(ldst_op) | fcn(crd) | op3(stdcq_op3) | rs1(s1) | immed(true) | simm(simm13a, 13)); }
|
|
||||||
|
|
||||||
// pp 231
|
// pp 231
|
||||||
|
|
||||||
inline void Assembler::swap( Register s1, Register s2, Register d) { v9_dep(); emit_int32( op(ldst_op) | rd(d) | op3(swap_op3) | rs1(s1) | rs2(s2) ); }
|
inline void Assembler::swap( Register s1, Register s2, Register d) { v9_dep(); emit_int32( op(ldst_op) | rd(d) | op3(swap_op3) | rs1(s1) | rs2(s2) ); }
|
||||||
|
|
|
@ -597,13 +597,6 @@ void LIR_Assembler::emit_op3(LIR_Op3* op) {
|
||||||
|
|
||||||
__ sra(Rdividend, 31, Rscratch);
|
__ sra(Rdividend, 31, Rscratch);
|
||||||
__ wry(Rscratch);
|
__ wry(Rscratch);
|
||||||
if (!VM_Version::v9_instructions_work()) {
|
|
||||||
// v9 doesn't require these nops
|
|
||||||
__ nop();
|
|
||||||
__ nop();
|
|
||||||
__ nop();
|
|
||||||
__ nop();
|
|
||||||
}
|
|
||||||
|
|
||||||
add_debug_info_for_div0_here(op->info());
|
add_debug_info_for_div0_here(op->info());
|
||||||
|
|
||||||
|
@ -652,10 +645,6 @@ void LIR_Assembler::emit_opBranch(LIR_OpBranch* op) {
|
||||||
case lir_cond_lessEqual: acond = (is_unordered ? Assembler::f_unorderedOrLessOrEqual : Assembler::f_lessOrEqual); break;
|
case lir_cond_lessEqual: acond = (is_unordered ? Assembler::f_unorderedOrLessOrEqual : Assembler::f_lessOrEqual); break;
|
||||||
case lir_cond_greaterEqual: acond = (is_unordered ? Assembler::f_unorderedOrGreaterOrEqual: Assembler::f_greaterOrEqual); break;
|
case lir_cond_greaterEqual: acond = (is_unordered ? Assembler::f_unorderedOrGreaterOrEqual: Assembler::f_greaterOrEqual); break;
|
||||||
default : ShouldNotReachHere();
|
default : ShouldNotReachHere();
|
||||||
};
|
|
||||||
|
|
||||||
if (!VM_Version::v9_instructions_work()) {
|
|
||||||
__ nop();
|
|
||||||
}
|
}
|
||||||
__ fb( acond, false, Assembler::pn, *(op->label()));
|
__ fb( acond, false, Assembler::pn, *(op->label()));
|
||||||
} else {
|
} else {
|
||||||
|
@ -725,9 +714,6 @@ void LIR_Assembler::emit_opConvert(LIR_OpConvert* op) {
|
||||||
Label L;
|
Label L;
|
||||||
// result must be 0 if value is NaN; test by comparing value to itself
|
// result must be 0 if value is NaN; test by comparing value to itself
|
||||||
__ fcmp(FloatRegisterImpl::S, Assembler::fcc0, rsrc, rsrc);
|
__ fcmp(FloatRegisterImpl::S, Assembler::fcc0, rsrc, rsrc);
|
||||||
if (!VM_Version::v9_instructions_work()) {
|
|
||||||
__ nop();
|
|
||||||
}
|
|
||||||
__ fb(Assembler::f_unordered, true, Assembler::pn, L);
|
__ fb(Assembler::f_unordered, true, Assembler::pn, L);
|
||||||
__ delayed()->st(G0, addr); // annuled if contents of rsrc is not NaN
|
__ delayed()->st(G0, addr); // annuled if contents of rsrc is not NaN
|
||||||
__ ftoi(FloatRegisterImpl::S, rsrc, rsrc);
|
__ ftoi(FloatRegisterImpl::S, rsrc, rsrc);
|
||||||
|
@ -1909,7 +1895,7 @@ void LIR_Assembler::arith_op(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr
|
||||||
switch (code) {
|
switch (code) {
|
||||||
case lir_add: __ add (lreg, rreg, res); break;
|
case lir_add: __ add (lreg, rreg, res); break;
|
||||||
case lir_sub: __ sub (lreg, rreg, res); break;
|
case lir_sub: __ sub (lreg, rreg, res); break;
|
||||||
case lir_mul: __ mult (lreg, rreg, res); break;
|
case lir_mul: __ mulx (lreg, rreg, res); break;
|
||||||
default: ShouldNotReachHere();
|
default: ShouldNotReachHere();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1924,7 +1910,7 @@ void LIR_Assembler::arith_op(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr
|
||||||
switch (code) {
|
switch (code) {
|
||||||
case lir_add: __ add (lreg, simm13, res); break;
|
case lir_add: __ add (lreg, simm13, res); break;
|
||||||
case lir_sub: __ sub (lreg, simm13, res); break;
|
case lir_sub: __ sub (lreg, simm13, res); break;
|
||||||
case lir_mul: __ mult (lreg, simm13, res); break;
|
case lir_mul: __ mulx (lreg, simm13, res); break;
|
||||||
default: ShouldNotReachHere();
|
default: ShouldNotReachHere();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -1936,7 +1922,7 @@ void LIR_Assembler::arith_op(LIR_Code code, LIR_Opr left, LIR_Opr right, LIR_Opr
|
||||||
switch (code) {
|
switch (code) {
|
||||||
case lir_add: __ add (lreg, (int)con, res); break;
|
case lir_add: __ add (lreg, (int)con, res); break;
|
||||||
case lir_sub: __ sub (lreg, (int)con, res); break;
|
case lir_sub: __ sub (lreg, (int)con, res); break;
|
||||||
case lir_mul: __ mult (lreg, (int)con, res); break;
|
case lir_mul: __ mulx (lreg, (int)con, res); break;
|
||||||
default: ShouldNotReachHere();
|
default: ShouldNotReachHere();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3234,48 +3220,26 @@ void LIR_Assembler::volatile_move_op(LIR_Opr src, LIR_Opr dest, BasicType type,
|
||||||
Register base = mem_addr->base()->as_register();
|
Register base = mem_addr->base()->as_register();
|
||||||
if (src->is_register() && dest->is_address()) {
|
if (src->is_register() && dest->is_address()) {
|
||||||
// G4 is high half, G5 is low half
|
// G4 is high half, G5 is low half
|
||||||
if (VM_Version::v9_instructions_work()) {
|
// clear the top bits of G5, and scale up G4
|
||||||
// clear the top bits of G5, and scale up G4
|
__ srl (src->as_register_lo(), 0, G5);
|
||||||
__ srl (src->as_register_lo(), 0, G5);
|
__ sllx(src->as_register_hi(), 32, G4);
|
||||||
__ sllx(src->as_register_hi(), 32, G4);
|
// combine the two halves into the 64 bits of G4
|
||||||
// combine the two halves into the 64 bits of G4
|
__ or3(G4, G5, G4);
|
||||||
__ or3(G4, G5, G4);
|
null_check_offset = __ offset();
|
||||||
null_check_offset = __ offset();
|
if (idx == noreg) {
|
||||||
if (idx == noreg) {
|
__ stx(G4, base, disp);
|
||||||
__ stx(G4, base, disp);
|
|
||||||
} else {
|
|
||||||
__ stx(G4, base, idx);
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
__ mov (src->as_register_hi(), G4);
|
__ stx(G4, base, idx);
|
||||||
__ mov (src->as_register_lo(), G5);
|
|
||||||
null_check_offset = __ offset();
|
|
||||||
if (idx == noreg) {
|
|
||||||
__ std(G4, base, disp);
|
|
||||||
} else {
|
|
||||||
__ std(G4, base, idx);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} else if (src->is_address() && dest->is_register()) {
|
} else if (src->is_address() && dest->is_register()) {
|
||||||
null_check_offset = __ offset();
|
null_check_offset = __ offset();
|
||||||
if (VM_Version::v9_instructions_work()) {
|
if (idx == noreg) {
|
||||||
if (idx == noreg) {
|
__ ldx(base, disp, G5);
|
||||||
__ ldx(base, disp, G5);
|
|
||||||
} else {
|
|
||||||
__ ldx(base, idx, G5);
|
|
||||||
}
|
|
||||||
__ srax(G5, 32, dest->as_register_hi()); // fetch the high half into hi
|
|
||||||
__ mov (G5, dest->as_register_lo()); // copy low half into lo
|
|
||||||
} else {
|
} else {
|
||||||
if (idx == noreg) {
|
__ ldx(base, idx, G5);
|
||||||
__ ldd(base, disp, G4);
|
|
||||||
} else {
|
|
||||||
__ ldd(base, idx, G4);
|
|
||||||
}
|
|
||||||
// G4 is high half, G5 is low half
|
|
||||||
__ mov (G4, dest->as_register_hi());
|
|
||||||
__ mov (G5, dest->as_register_lo());
|
|
||||||
}
|
}
|
||||||
|
__ srax(G5, 32, dest->as_register_hi()); // fetch the high half into hi
|
||||||
|
__ mov (G5, dest->as_register_lo()); // copy low half into lo
|
||||||
} else {
|
} else {
|
||||||
Unimplemented();
|
Unimplemented();
|
||||||
}
|
}
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue