JDK-8044575 : [TEST_BUG]testlibrary_tests/whitebox/vm_flags/UintxTest.java failed: assert(!res || TypeEntriesAtCall::arguments_profiling_enabled()) failed: no profiling of arguments
  • Type: Bug
  • Component: hotspot
  • Sub-Component: compiler
  • Affected Version: 8u91,8u101,9
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • OS: generic
  • CPU: generic
  • Submitted: 2014-06-02
  • Updated: 2016-10-13
  • Resolved: 2014-06-10
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 8 JDK 9
8u112Fixed 9 b20Fixed
Related Reports
Relates :  
Description
----------System.out:(35/1324)----------
T = 111
T = 0
T = 0
T = 100
T = 100
T = 2147483647
T = 2147483647
T = 4294967295
T = 4294967295
T = 0
# To suppress the following error report, specify this argument
# after -XX: or in .hotspotrc:  SuppressErrorAt=/methodData.hpp:1118
#
# A fatal error has been detected by the Java Runtime Environment:
#
#  Internal Error (/opt/jprt/T/P1/132342.iignatye/s/src/share/vm/oops/methodData.hpp:1118), pid=26109, tid=3451911024
#  assert(!res || TypeEntriesAtCall::arguments_profiling_enabled()) failed: no profiling of arguments
#
# JRE version: Java(TM) SE Runtime Environment (9.0-b14) (build 1.9.0-ea-fastdebug-b14)
# Java VM: Java HotSpot(TM) Server VM (1.9.0-internal-201405301323.iignatye.8038756-fastdebug compiled mode linux-x86 )

Comments
ILW=Test bug, always for this test, none=MLH=P4
05-06-2014

Problem: - the test w/ '-Xcomp and -XX:-TieredCompilation' triggers an assert Root-cause: - the test changes 'TypeProfileLevel' via WhiteBox during execution, but 'TypeProfileLevel' isn't supposed to be changed and there's the asserts based on that Fix: - as a flag to change, the test uses 'VerifyGCStartAt' instead of 'TypeProfileLevel'. 'VerifyGCStartAt' is safe to change during execution - removed 'System.out.println' which was left by accident
02-06-2014