-
Bug
-
Resolution: Fixed
-
P4
-
1.4.0
-
hopper
-
sparc
-
solaris_8
-
Verified
Name: fh87463 Date: 11/12/2001
Following assertion occur when running Compile The Wrold tests on solsparc 64 bits mode. (-d64),
also occur when running test on solx86 platform.
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) 64-Bit Server VM (1.4.0-rc-b85-debug mixed mode)
#
# assert(loop_count < K, "infinite loop in PhaseGVN::transform")
#
# Error ID: /net/mersparc/usr/re/jdk/jdk1.4/ws/hotspot/src/share/vm/opto/phaseX.cpp, 951 [ Patched ]
#
# Problematic Thread: prio=5 tid=0x10024ef48 nid=0x9 runnable
#
Dumping core....
VM option '+CompileTheWorld'
VM option '+VerifyDUIterators'
VM option 'MinInliningThreshold=0'
VM option 'MaxPermSize=64m'
VM option 'CompileTheWorldStartAt=500'
VM option 'CompileTheWorldStopAt=573'
/net/taloraan.sfbay/export/vsn/VM/merlin/weekly/ctw/solsparc/d64/1.4.0-rc-b85/run.OraInstaller.jar.500.573.ksh[36]: 28022 Abort
Exit Value 134
This assertion occured in following log files
========================================================
file:/net/taloraan.sfbay/export/vsn/VM/merlin/weekly/ctw/solsparc/d64/1.4.0-rc-b85/ctw.OraInstaller.jar.500.573.txt
jar: /net/jtgb4u4c.sfbay/export/home/oracle/app/oracle/product/disk/stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/OraInstaller.jar
Please look into rerun scripts for more detail.
#########################
# To reproduce the bug:
#########################
1. cd /net/jano.sfbay/export/disk20/GammaBase/Bugs/[bug ID]
2. edit script if needed.
3. run one of the shell scripts:
run.OraInstaller.jar.500.573.ksh
#########################
# Rerun script
#########################
$ cat run.OraInstaller.jar.500.573.ksh
#!/bin/ksh
# Script automatic generated at Thu Nov 8 18:43:03 PST 2001 by fhsu
#
print "Running $(cd $(dirname $0) ; pwd)/$(basename $0)"
ulimit -s 8192
export JAVA_HOME=/net/jdk.eng/export/disk8/local.java/jdk1.4/solsparc
case "$(uname)" in
SunOS)
platform="$(uname -p)" # i386 or sparc
;;
Linux|Windows*)
platform="i386"
;;
esac
FLAGS="-d64 -verify -XX:+CompileTheWorld -XX:+VerifyDUIterators -XX:MinInliningThreshold=0 -XX:MaxPermSize=64m"
VMTYPE="-d64"
JARFILE="/net/jtgb4u4c.sfbay/export/home/oracle/app/oracle/product/disk/stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/OraInstaller.jar"
START=500
END=573
CMDLINE="$JAVA_HOME/bin/java_g $FLAGS -XX:CompileTheWorldStartAt=$START -XX:CompileTheWorldStopAt=$END -Xbootclasspath/p:${JARFILE}"
print "*****Debug Info: java_g -version(-Xinternalversion)*****"
$JAVA_HOME/bin/java_g ${VMTYPE} -version 2>&1
$JAVA_HOME/bin/java_g ${VMTYPE} -fullversion 2>&1
$JAVA_HOME/bin/java_g ${VMTYPE} -Xinternalversion 2>&1
print "*****Debug Info: JAVA_HOME*****"
print "JAVA_HOME=$JAVA_HOME"
print "*****Debug Info: Machine Used*****"
print "$(uname -a)"
print "*****Debug Info: Command Line As Follow*****"
print "$CMDLINE"
print "*****Compile The World Start AT $(date)*****"
ksh -c "${CMDLINE}"
print "Exit Value $?"
echo "*****Compile The World End AT $(date)*****"
======================================================================