Skip to content

Commit

Permalink
Merge pull request #3339 from dnakamura/retop_fix
Browse files Browse the repository at this point in the history
Fix  DDR stackmap info for truncated return bytecodes
  • Loading branch information
DanHeidinga authored Oct 18, 2018
2 parents 44ba21f + f375629 commit d3ac663
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions debugtools/DDR_VM/src/com/ibm/j9ddr/vm29/j9/PCStack.java
Original file line number Diff line number Diff line change
Expand Up @@ -270,10 +270,10 @@ public class PCStack
0x03 /* JBinvokehandlegeneric = 233 */,
0x63 /* JBinvokestaticsplit = 234 */,
0x63 /* JBinvokespecialsplit = 235 */,
0x01 /* JBreturnC = 236 */,
0x01 /* JBreturnS = 237 */,
0x01 /* JBreturnB = 238 */,
0x01 /* JBreturnZ = 239 */,
0x41 /* JBreturnC = 236 */,
0x41 /* JBreturnS = 237 */,
0x41 /* JBreturnB = 238 */,
0x41 /* JBreturnZ = 239 */,
0x00 /* JBunimplemented = 240 */,
0x00 /* JBunimplemented = 241 */,
0x00 /* JBunimplemented = 242 */,
Expand Down Expand Up @@ -529,7 +529,7 @@ public class PCStack
0x80 /* JBinvokehandlegeneric = 233 -- pops: 0 pushes: 0*/ ,
0x80 /* JBinvokestaticsplit = 234 -- pops: 0 pushes: 0*/ ,
0x80 /* JBinvokespecialsplit = 235 -- pops: 0 pushes: 0*/ ,
0x00 /* JBreturnC = 236 -- pops: 1 pushes: 0*/ ,
0x01 /* JBreturnC = 236 -- pops: 1 pushes: 0*/ ,
0x01 /* JBreturnS = 237 -- pops: 1 pushes: 0*/ ,
0x01 /* JBreturnB = 238 -- pops: 1 pushes: 0*/ ,
0x01 /* JBreturnZ = 239 -- pops: 1 pushes: 0*/ ,
Expand Down

0 comments on commit d3ac663

Please sign in to comment.