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
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
- duplicates
-
JDK-4280948 jdb prints incorrect values for variables of type float
-
- Closed
-
- relates to
-
JDK-4509481 nsk b4259923 test fails to get valid values for locals of type long (64bit)
-
- Closed
-
-
JDK-4386002 Incorrect values reported for some locals of type long
-
- Closed
-