Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4259923

Incorrect values reported for locals of type long, float, and double

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P2 P2
    • 2.0
    • 1.3.0
    • vm-legacy
    • None
    • beta
    • generic, x86
    • generic, windows_98
    • Not verified

      When debugging the following code, the hotspot VM reports incorrect values for the variables l, f, and d.

      public class Bug5 {
          public static void main(String args[]) {
              long l = 22;
              float f = 6.66f;
              double d = 7.77;

              System.out.println("l="+l +", f="+f + ", d="+d);
          }
      }

      JDB under hotspot:

      H:\work>j:\jdk1.3\win32\bin\jdb Bug5
      Initializing jdb...
      > stop at Bug5:7
      Deferring breakpoint Bug5:7.
      It will be set after the class is loaded.
      > run
      run Bug5
      Java Client VM warning: Setting of property "java.compiler" is ignored
      >
      VM Started: Set deferred breakpoint request Bug5:7

      Breakpoint hit: thread="main", Bug5.main(), line=7, bci=12
        7 System.out.println("l="+l +", f="+f + ", d="+d);

      main[1] locals
      Method arguments:
        args = instance of java.lang.String[0] (id=199)
      Local variables:
        l = 0
        f = 1.0877088E9
        d = 1.075778682E9


      JDB under classic reports the expected values:

      H:\work>j:\jdk1.3\win32\bin\jdb -tclassic Bug5
      Initializing jdb...
      > stop at Bug5:7
      Deferring breakpoint Bug5:7.
      It will be set after the class is loaded.
      > run
      run Bug5
      >
      VM Started: Set deferred breakpoint request Bug5:7

      Breakpoint hit: thread="main", Bug5.main(), line=7, bci=12
        7 System.out.println("l="+l +", f="+f + ", d="+d);

      main[1] locals
      Method arguments:
        args = instance of java.lang.String[0] (id=169)
      Local variables:
        l = 22
        f = 6.66
        d = 7.77
      main[1] quit

            sduvur Sreeram Duvur (Inactive)
            ghirschsunw Gordon Hirsch (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: