-
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 platform for b85.
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Server VM (1.4.0-rc-b85-debug mixed mode)
#
# assert(is_con(), "")
#
# Error ID: /export/home3/jdk/jdk1.4/ws/hotspot/src/share/vm/opto/type.hpp, 332 [ Patched ]
#
# Problematic Thread: prio=5 tid=0x12a900 nid=0xb runnable
#
Dumping core....
VM option '+CompileTheWorld'
VM option '+VerifyDUIterators'
VM option 'MinInliningThreshold=0'
VM option 'MaxPermSize=64m'
VM option 'CompileTheWorldStartAt=0'
VM option 'CompileTheWorldStopAt=490'
/net/taloraan.sfbay/export/vsn/VM/merlin/weekly/ctw/solsparc/server/1.4.0-rc-b85/run.JavaSafe.jar.0.490.ksh[36]: 27395 Abort
Exit Value 134
This assertion occured in following log files
========================================================
file:/net/taloraan.sfbay/export/vsn/VM/merlin/weekly/ctw/solsparc/server/1.4.0-rc-b85/ctw.JavaSafe.jar.0.490.txt
jar: /net/jdk/export/disk8/local.java/JavaSafe/Solaris/client-install/y/JavaSafe1.0-client/lib/JavaSafe.jar
B
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.JavaSafe.jar.0.490.ksh
#########################
# Rerun script
#########################
$ cat run.JavaSafe.jar.0.490.ksh
#!/bin/ksh
# Script automatic generated at Wed Nov 7 22:31:10 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="-server -verify -XX:+CompileTheWorld -XX:+VerifyDUIterators -XX:MinInliningThreshold=0 -XX:MaxPermSize=64m"
VMTYPE="-server"
JARFILE="/net/jdk/export/disk8/local.java/JavaSafe/Solaris/client-install/y/JavaSafe1.0-client/lib/JavaSafe.jar"
START=0
END=490
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)*****"
======================================================================