mirror of
https://github.com/revanced/Apktool.git
synced 2024-11-07 21:27:00 +01:00
Add support for non-standard invoke-object-init/range instructions
This commit is contained in:
parent
83e63dab7a
commit
9596513f6f
@ -1493,8 +1493,11 @@ public class MethodAnalyzer {
|
||||
Instruction deodexedInstruction;
|
||||
|
||||
int startRegister = instruction.getStartRegister();
|
||||
int registerCount = instruction.getRegisterCount();
|
||||
if (registerCount == 1 && startRegister < 16) {
|
||||
// hack: we should be using instruction.getRegisterCount, but some tweaked versions of dalvik appear
|
||||
// to generate invoke-object-init/range instructions with an invalid register count. We know it should
|
||||
// always be 1, so just use that.
|
||||
int registerCount = 1;
|
||||
if (startRegister < 16) {
|
||||
deodexedInstruction = new ImmutableInstruction35c(Opcode.INVOKE_DIRECT,
|
||||
registerCount, startRegister, 0, 0, 0, 0, instruction.getReference());
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user