frida-java-bridge 6.3.8 → 6.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/android.js +5 -0
- package/package.json +1 -1
package/lib/android.js
CHANGED
|
@@ -4256,6 +4256,7 @@ function recompileExceptionClearForArm (buffer, pc, exceptionClearImpl, nextFunc
|
|
|
4256
4256
|
case 'beq.w':
|
|
4257
4257
|
case 'beq':
|
|
4258
4258
|
case 'bne':
|
|
4259
|
+
case 'bne.w':
|
|
4259
4260
|
case 'bgt':
|
|
4260
4261
|
branchTarget = ptr(insn.operands[0].value);
|
|
4261
4262
|
break;
|
|
@@ -4351,6 +4352,10 @@ function recompileExceptionClearForArm (buffer, pc, exceptionClearImpl, nextFunc
|
|
|
4351
4352
|
writer.putBCondLabelWide('eq', branchLabelFromOperand(insn.operands[0]));
|
|
4352
4353
|
keep = false;
|
|
4353
4354
|
break;
|
|
4355
|
+
case 'bne.w':
|
|
4356
|
+
writer.putBCondLabelWide('ne', branchLabelFromOperand(insn.operands[0]));
|
|
4357
|
+
keep = false;
|
|
4358
|
+
break;
|
|
4354
4359
|
case 'beq':
|
|
4355
4360
|
case 'bne':
|
|
4356
4361
|
case 'bgt':
|