-
Bug
-
Resolution: Fixed
-
P4
-
8
-
8.0 b126
-
b04
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8045120 | 8u25 | Alexander Zuev | P4 | Resolved | Fixed | b01 |
JDK-8034137 | 8u20 | Alexander Zuev | P4 | Resolved | Fixed | b03 |
JDK-8052559 | emb-8u26 | Alexander Zuev | P4 | Resolved | Fixed | b17 |
Obtain the javap's output that contains StackMapTable
(e.g. "-verbose",
public class A {
public void a() {
for (int i = 0; i < 10; i++) {
System.out.println(i);
}
}
}
)
The alignment of entries looks illogical:
StackMapTable: number_of_entries = 2
frame_type = 252 /* append */
offset_delta = 2
locals = [ int ]
frame_type = 250 /* chop */
offset_delta = 18
(e.g. "-verbose",
public class A {
public void a() {
for (int i = 0; i < 10; i++) {
System.out.println(i);
}
}
}
)
The alignment of entries looks illogical:
StackMapTable: number_of_entries = 2
frame_type = 252 /* append */
offset_delta = 2
locals = [ int ]
frame_type = 250 /* chop */
offset_delta = 18
- backported by
-
JDK-8034137 Incorrect indentation of StackMapTable entries
- Resolved
-
JDK-8045120 Incorrect indentation of StackMapTable entries
- Resolved
-
JDK-8052559 Incorrect indentation of StackMapTable entries
- Resolved