JesusFreke / smali

smali/baksmali
6.3k stars 1.07k forks source link

added support for 4rcc in MutableMethodImplementation #865

Open hide955 opened 1 year ago

hide955 commented 1 year ago

case Format45cc: ...... case Format4rcc: setInstruction(location, newBuilderInstruction4rcc((Instruction4rcc) instruction)); return; case Format51l: ......

@Nonnull private BuilderInstruction4rcc newBuilderInstruction4rcc(@Nonnull Instruction4rcc instruction) { return new BuilderInstruction4rcc( instruction.getOpcode(), instruction.getStartRegister(), instruction.getRegisterCount(), instruction.getReference(), instruction.getReference2() ); }