JDK-4451864 : JCK13a lang/STMT/stmt115/stmt11501 err:564652414D4521525241590E4350500059 c2Xcom
  • Type: Bug
  • Component: hotspot
  • Sub-Component: compiler
  • Affected Version: 1.4.0
  • Priority: P2
  • Status: Closed
  • Resolution: Duplicate
  • OS: solaris_8
  • CPU: x86,sparc
  • Submitted: 2001-04-27
  • Updated: 2001-04-30
  • Resolved: 2001-04-28
Related Reports
Duplicate :  
Description
JDK            : 1.4.0-beta-b61/b62
JCK            : jck1.3a
Platform[s]    : Solaris 8 sparc, intel, 4m were tested.
switch/Mode    : -server -Xcomp, -d64 -Xcomp ---->Failed
                 -client (Xint, Xcomp)       ---->Passed
                 -server (Xint)              ---->Passed
                 -d64 (Xint)                 ---->Passed

JCK test owner : http://javaweb.eng/jct/sqe/JCK-tck/usr/owners.jto
Failing Test   : 

 lang/STMT/stmt115/stmt11501/stmt11501.html

Test source location:
=====================
/net/jdk/export/disk8/local.java/jck1.3a/JCK-runtime-13a/tests/lang/STMT/stmt115/stmt11501/stmt11501.java

jtr file location:
==================
file:///net/jtgb4u4c/export/sail16/results/merlin/b61/jck13a/sparc/s8_32bit_server_comp_jtg-s212/workDir/lang/STMT/stmt115/stmt11501/stmt11501.jtr


How to reproduce:
====================
Run the attached script
     lang_stmt115.ksh -server -Xcomp
     lang_stmt115.ksh -d64 -Xcomp

--------Script START---------------------
#!/bin/ksh
SWITCH=${1+$@}
JDK=/net/jdk/export/disk8/local.java/jdk1.4
TESTBASE=/net/jdk/export/disk8/local.java/jck1.3a
JCK=${TESTBASE}/JCK-runtime-13a
executeClass=javasoft.sqe.tests.lang.stmt115.stmt11501.stmt11501
excludeCmd=
executeClassArgs=
executeTestURL=
headless=

#executeContextArgs is used for vm testing.
executeContextArgs=

case `uname -s` in
  SunOS)
   ARCH=`uname -p`
   case $ARCH in
    sparc)
      sharedJDK=$JDK/solsparc
      ;;
    i386)
      sharedJDK=$JDK/solx86
      ;;
   esac
   ;;
  Linux)
   sharedJDK=$JDK/linux-i386
   ARCH=linux
   ;;
esac

CLASSPATH=${JCK}/classes:${JCK}/javatest.jar
DISPLAY=${DISPLAY-$HOST:0.0}

if `echo $SWITCH|grep "\-d64" >/dev/null`; then
  LD_LIBRARY_PATH=${JCK}/lib/sparcv9
else
  LD_LIBRARY_PATH=${JCK}/lib/${ARCH}
fi


PATH=$JDK/bin:$sharedJDK/bin:$PATH

export PATH CLASSPATH DISPLAY LD_LIBRARY_PATH


echo
java ${SWITCH} -version
echo
java ${SWITCH} -verify -Xfuture -Djava.security.policy=${JCK}/lib/jck.policy -Djava.rmi.activation.port=${executeClass} -Djava.awt.headless=${headless} ${executeClass} ${excludeCmd}  ${executeClassArgs} ${executeContextArgs} ${executeTestURL} 
--------Script END----------------------

Test output:
=============

#
# HotSpot Virtual Machine Error, Internal Error
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Error happened during: deoptimize frame
#
# Error ID: 564652414D4521525241590E4350500059 01
#
# Problematic Thread: prio=5 tid=0xd1938 nid=0x4 runnable 
#


Specific Machine Info:
=====================

SunOS jtg-s120 5.8 Generic sun4u sparc SUNW,Ultra-60
SunOS jtg-s212 5.8 Generic sun4m sparc SUNW,SPARCstation-5
SunOS jtg-i108 5.8 Generic i86pc i386 i86pc




takwing.cheung@Eng 2001-04-27

Comments
EVALUATION michael.paleczny@eng 2001-04-27 Investigated the cause of the crash, it occurs when the compiler discovers that code must throw an arithmetic exception for division by zero. This has been fixed in merlin_beta2 in putback 20010423-154513 to c2_baseline and has been promoted to main/baseline, 20010425-185519. This is a duplicate of Bugs 4433790 and 4432078.
11-06-2004