mirror of
https://github.com/ReVanced/revanced-patches.git
synced 2025-05-10 12:45:41 +02:00
fix(YouTube): Improve litho filtering performance (#4904)
This commit is contained in:
parent
7a245d3748
commit
7b43986871
4 changed files with 150 additions and 77 deletions
|
@ -1534,6 +1534,7 @@ public final class app/revanced/patches/yuka/misc/unlockpremium/UnlockPremiumPat
|
||||||
|
|
||||||
public final class app/revanced/util/BytecodeUtilsKt {
|
public final class app/revanced/util/BytecodeUtilsKt {
|
||||||
public static final fun addInstructionsAtControlFlowLabel (Lapp/revanced/patcher/util/proxy/mutableTypes/MutableMethod;ILjava/lang/String;)V
|
public static final fun addInstructionsAtControlFlowLabel (Lapp/revanced/patcher/util/proxy/mutableTypes/MutableMethod;ILjava/lang/String;)V
|
||||||
|
public static final fun addInstructionsAtControlFlowLabel (Lapp/revanced/patcher/util/proxy/mutableTypes/MutableMethod;ILjava/lang/String;[Lapp/revanced/patcher/util/smali/ExternalLabel;)V
|
||||||
public static final fun containsLiteralInstruction (Lcom/android/tools/smali/dexlib2/iface/Method;D)Z
|
public static final fun containsLiteralInstruction (Lcom/android/tools/smali/dexlib2/iface/Method;D)Z
|
||||||
public static final fun containsLiteralInstruction (Lcom/android/tools/smali/dexlib2/iface/Method;F)Z
|
public static final fun containsLiteralInstruction (Lcom/android/tools/smali/dexlib2/iface/Method;F)Z
|
||||||
public static final fun containsLiteralInstruction (Lcom/android/tools/smali/dexlib2/iface/Method;J)Z
|
public static final fun containsLiteralInstruction (Lcom/android/tools/smali/dexlib2/iface/Method;J)Z
|
||||||
|
|
|
@ -45,6 +45,10 @@ internal val readComponentIdentifierFingerprint = fingerprint {
|
||||||
strings("Number of bits must be positive")
|
strings("Number of bits must be positive")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal val elementConfigFingerprint = fingerprint {
|
||||||
|
strings(" enableDroppedFrameLogging", " elementDepthInTree")
|
||||||
|
}
|
||||||
|
|
||||||
internal val emptyComponentFingerprint = fingerprint {
|
internal val emptyComponentFingerprint = fingerprint {
|
||||||
accessFlags(AccessFlags.PRIVATE, AccessFlags.CONSTRUCTOR)
|
accessFlags(AccessFlags.PRIVATE, AccessFlags.CONSTRUCTOR)
|
||||||
parameters()
|
parameters()
|
||||||
|
|
|
@ -4,27 +4,33 @@ package app.revanced.patches.youtube.misc.litho.filter
|
||||||
|
|
||||||
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
|
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
|
||||||
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
|
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
|
||||||
import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
|
|
||||||
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
|
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
|
||||||
import app.revanced.patcher.extensions.InstructionExtensions.removeInstructions
|
import app.revanced.patcher.extensions.InstructionExtensions.removeInstructions
|
||||||
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
|
import app.revanced.patcher.extensions.InstructionExtensions.replaceInstruction
|
||||||
|
import app.revanced.patcher.patch.PatchException
|
||||||
import app.revanced.patcher.patch.bytecodePatch
|
import app.revanced.patcher.patch.bytecodePatch
|
||||||
import app.revanced.patcher.util.smali.ExternalLabel
|
import app.revanced.patcher.util.proxy.mutableTypes.MutableField.Companion.toMutable
|
||||||
|
import app.revanced.patches.youtube.layout.returnyoutubedislike.conversionContextFingerprint
|
||||||
import app.revanced.patches.youtube.misc.extension.sharedExtensionPatch
|
import app.revanced.patches.youtube.misc.extension.sharedExtensionPatch
|
||||||
import app.revanced.patches.youtube.misc.playservice.is_19_18_or_greater
|
import app.revanced.patches.youtube.misc.playservice.is_19_18_or_greater
|
||||||
import app.revanced.patches.youtube.misc.playservice.is_19_25_or_greater
|
import app.revanced.patches.youtube.misc.playservice.is_19_25_or_greater
|
||||||
import app.revanced.patches.youtube.misc.playservice.is_20_05_or_greater
|
import app.revanced.patches.youtube.misc.playservice.is_20_05_or_greater
|
||||||
import app.revanced.patches.youtube.misc.playservice.versionCheckPatch
|
import app.revanced.patches.youtube.misc.playservice.versionCheckPatch
|
||||||
|
import app.revanced.util.addInstructionsAtControlFlowLabel
|
||||||
import app.revanced.util.findFreeRegister
|
import app.revanced.util.findFreeRegister
|
||||||
|
import app.revanced.util.findInstructionIndicesReversedOrThrow
|
||||||
import app.revanced.util.getReference
|
import app.revanced.util.getReference
|
||||||
import app.revanced.util.indexOfFirstInstructionOrThrow
|
import app.revanced.util.indexOfFirstInstructionOrThrow
|
||||||
|
import app.revanced.util.indexOfFirstInstructionReversed
|
||||||
import app.revanced.util.indexOfFirstInstructionReversedOrThrow
|
import app.revanced.util.indexOfFirstInstructionReversedOrThrow
|
||||||
import com.android.tools.smali.dexlib2.AccessFlags
|
import com.android.tools.smali.dexlib2.AccessFlags
|
||||||
import com.android.tools.smali.dexlib2.Opcode
|
import com.android.tools.smali.dexlib2.Opcode
|
||||||
|
import com.android.tools.smali.dexlib2.iface.instruction.FiveRegisterInstruction
|
||||||
import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
|
import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
|
||||||
import com.android.tools.smali.dexlib2.iface.instruction.TwoRegisterInstruction
|
import com.android.tools.smali.dexlib2.iface.instruction.ReferenceInstruction
|
||||||
import com.android.tools.smali.dexlib2.iface.reference.FieldReference
|
import com.android.tools.smali.dexlib2.iface.reference.FieldReference
|
||||||
import com.android.tools.smali.dexlib2.iface.reference.MethodReference
|
import com.android.tools.smali.dexlib2.iface.reference.MethodReference
|
||||||
|
import com.android.tools.smali.dexlib2.immutable.ImmutableField
|
||||||
|
|
||||||
lateinit var addLithoFilter: (String) -> Unit
|
lateinit var addLithoFilter: (String) -> Unit
|
||||||
private set
|
private set
|
||||||
|
@ -53,42 +59,48 @@ val lithoFilterPatch = bytecodePatch(
|
||||||
* The buffer is a large byte array that represents the component tree.
|
* The buffer is a large byte array that represents the component tree.
|
||||||
* This byte array is searched for strings that indicate the current component.
|
* This byte array is searched for strings that indicate the current component.
|
||||||
*
|
*
|
||||||
* The following pseudocode shows how the patch works:
|
* All modifications done here must allow all the original code to still execute
|
||||||
|
* even when filtering, otherwise memory leaks or poor app performance may occur.
|
||||||
|
*
|
||||||
|
* The following pseudocode shows how this patch works:
|
||||||
*
|
*
|
||||||
* class SomeOtherClass {
|
* class SomeOtherClass {
|
||||||
* // Called before ComponentContextParser.parseBytesToComponentContext method.
|
* // Called before ComponentContextParser.readComponentIdentifier(...) method.
|
||||||
* public void someOtherMethod(ByteBuffer byteBuffer) {
|
* public void someOtherMethod(ByteBuffer byteBuffer) {
|
||||||
* ExtensionClass.setProtoBuffer(byteBuffer); // Inserted by this patch.
|
* ExtensionClass.setProtoBuffer(byteBuffer); // Inserted by this patch.
|
||||||
* ...
|
* ...
|
||||||
* }
|
* }
|
||||||
* }
|
* }
|
||||||
*
|
*
|
||||||
* When patching 19.17 and earlier:
|
* When patching 19.16:
|
||||||
*
|
*
|
||||||
* class ComponentContextParser {
|
* class ComponentContextParser {
|
||||||
* public ComponentContext ReadComponentIdentifierFingerprint(...) {
|
* public Component readComponentIdentifier(...) {
|
||||||
* ...
|
* ...
|
||||||
* if (extensionClass.filter(identifier, pathBuilder)); // Inserted by this patch.
|
* if (extensionClass.filter(identifier, pathBuilder)) { // Inserted by this patch.
|
||||||
* return emptyComponent;
|
* return emptyComponent;
|
||||||
* ...
|
* }
|
||||||
|
* return originalUnpatchedComponent;
|
||||||
* }
|
* }
|
||||||
* }
|
* }
|
||||||
*
|
*
|
||||||
* When patching 19.18 and later:
|
* When patching 19.18 and later:
|
||||||
*
|
*
|
||||||
* class ComponentContextParser {
|
* class ComponentContextParser {
|
||||||
* public ComponentContext parseBytesToComponentContext(...) {
|
* public ComponentIdentifierObj readComponentIdentifier(...) {
|
||||||
* ...
|
* ...
|
||||||
* if (ReadComponentIdentifierFingerprint() == null); // Inserted by this patch.
|
* if (extensionClass.filter(identifier, pathBuilder)) { // Inserted by this patch.
|
||||||
* return emptyComponent;
|
* this.patch_isFiltered = true;
|
||||||
|
* }
|
||||||
* ...
|
* ...
|
||||||
* }
|
* }
|
||||||
*
|
*
|
||||||
* public ComponentIdentifierObj readComponentIdentifier(...) {
|
* public Component parseBytesToComponentContext(...) {
|
||||||
* ...
|
|
||||||
* if (extensionClass.filter(identifier, pathBuilder)); // Inserted by this patch.
|
|
||||||
* return null;
|
|
||||||
* ...
|
* ...
|
||||||
|
* if (this.patch_isFiltered) { // Inserted by this patch.
|
||||||
|
* return emptyComponent;
|
||||||
|
* }
|
||||||
|
* return originalUnpatchedComponent;
|
||||||
* }
|
* }
|
||||||
* }
|
* }
|
||||||
*/
|
*/
|
||||||
|
@ -115,14 +127,13 @@ val lithoFilterPatch = bytecodePatch(
|
||||||
|
|
||||||
protobufBufferReferenceFingerprint.method.addInstruction(
|
protobufBufferReferenceFingerprint.method.addInstruction(
|
||||||
0,
|
0,
|
||||||
" invoke-static { p2 }, $EXTENSION_CLASS_DESCRIPTOR->setProtoBuffer(Ljava/nio/ByteBuffer;)V",
|
"invoke-static { p2 }, $EXTENSION_CLASS_DESCRIPTOR->setProtoBuffer(Ljava/nio/ByteBuffer;)V",
|
||||||
)
|
)
|
||||||
|
|
||||||
// endregion
|
// endregion
|
||||||
|
|
||||||
// region Hook the method that parses bytes into a ComponentContext.
|
// region Hook the method that parses bytes into a ComponentContext.
|
||||||
|
|
||||||
val readComponentMethod = readComponentIdentifierFingerprint.originalMethod
|
|
||||||
// Get the only static method in the class.
|
// Get the only static method in the class.
|
||||||
val builderMethodDescriptor = emptyComponentFingerprint.classDef.methods.first { method ->
|
val builderMethodDescriptor = emptyComponentFingerprint.classDef.methods.first { method ->
|
||||||
AccessFlags.STATIC.isSet(method.accessFlags)
|
AccessFlags.STATIC.isSet(method.accessFlags)
|
||||||
|
@ -132,44 +143,47 @@ val lithoFilterPatch = bytecodePatch(
|
||||||
builderMethodDescriptor.returnType == classDef.type
|
builderMethodDescriptor.returnType == classDef.type
|
||||||
}!!.immutableClass.fields.single()
|
}!!.immutableClass.fields.single()
|
||||||
|
|
||||||
|
// Add a field to store the result of the filtering. This allows checking the field
|
||||||
|
// just before returning so the original code always runs the same when filtering occurs.
|
||||||
|
val lithoFilterResultField = ImmutableField(
|
||||||
|
componentContextParserFingerprint.classDef.type,
|
||||||
|
"patch_isFiltered",
|
||||||
|
"Z",
|
||||||
|
AccessFlags.PRIVATE.value,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
).toMutable()
|
||||||
|
componentContextParserFingerprint.classDef.fields.add(lithoFilterResultField)
|
||||||
|
|
||||||
// Returns an empty component instead of the original component.
|
// Returns an empty component instead of the original component.
|
||||||
fun createReturnEmptyComponentInstructions(register: Int): String =
|
fun returnEmptyComponentInstructions(free: Int): String = """
|
||||||
"""
|
move-object/from16 v$free, p0
|
||||||
move-object/from16 v$register, p1
|
iget-boolean v$free, v$free, $lithoFilterResultField
|
||||||
invoke-static { v$register }, $builderMethodDescriptor
|
if-eqz v$free, :unfiltered
|
||||||
move-result-object v$register
|
|
||||||
iget-object v$register, v$register, $emptyComponentField
|
move-object/from16 v$free, p1
|
||||||
return-object v$register
|
invoke-static { v$free }, $builderMethodDescriptor
|
||||||
"""
|
move-result-object v$free
|
||||||
|
iget-object v$free, v$free, $emptyComponentField
|
||||||
|
return-object v$free
|
||||||
|
|
||||||
|
:unfiltered
|
||||||
|
nop
|
||||||
|
"""
|
||||||
|
|
||||||
componentContextParserFingerprint.method.apply {
|
componentContextParserFingerprint.method.apply {
|
||||||
// 19.18 and later require patching 2 methods instead of one.
|
// 19.18 and later require patching 2 methods instead of one.
|
||||||
// Otherwise the modifications done here are the same for all targets.
|
// Otherwise the modifications done here are the same for all targets.
|
||||||
if (is_19_18_or_greater) {
|
if (is_19_18_or_greater) {
|
||||||
// Get the method name of the ReadComponentIdentifierFingerprint call.
|
findInstructionIndicesReversedOrThrow(Opcode.RETURN_OBJECT).forEach { index ->
|
||||||
val readComponentMethodCallIndex = indexOfFirstInstructionOrThrow {
|
val free = findFreeRegister(index)
|
||||||
val reference = getReference<MethodReference>()
|
|
||||||
reference?.definingClass == readComponentMethod.definingClass &&
|
addInstructionsAtControlFlowLabel(
|
||||||
reference.name == readComponentMethod.name
|
index,
|
||||||
|
returnEmptyComponentInstructions(free)
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Result of read component, and also a free register.
|
|
||||||
val register = getInstruction<OneRegisterInstruction>(readComponentMethodCallIndex + 1).registerA
|
|
||||||
|
|
||||||
// Insert after 'move-result-object'
|
|
||||||
val insertHookIndex = readComponentMethodCallIndex + 2
|
|
||||||
|
|
||||||
// Return an EmptyComponent instead of the original component if the filterState method returns true.
|
|
||||||
addInstructionsWithLabels(
|
|
||||||
insertHookIndex,
|
|
||||||
"""
|
|
||||||
if-nez v$register, :unfiltered
|
|
||||||
|
|
||||||
# Component was filtered in ReadComponentIdentifierFingerprint hook
|
|
||||||
${createReturnEmptyComponentInstructions(register)}
|
|
||||||
""",
|
|
||||||
ExternalLabel("unfiltered", getInstruction(insertHookIndex)),
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -178,47 +192,79 @@ val lithoFilterPatch = bytecodePatch(
|
||||||
// region Read component then store the result.
|
// region Read component then store the result.
|
||||||
|
|
||||||
readComponentIdentifierFingerprint.method.apply {
|
readComponentIdentifierFingerprint.method.apply {
|
||||||
val insertHookIndex = indexOfFirstInstructionOrThrow {
|
val returnIndex = indexOfFirstInstructionReversedOrThrow(Opcode.RETURN_OBJECT)
|
||||||
opcode == Opcode.IPUT_OBJECT &&
|
if (indexOfFirstInstructionReversed(returnIndex - 1, Opcode.RETURN_OBJECT) >= 0) {
|
||||||
getReference<FieldReference>()?.type == "Ljava/lang/StringBuilder;"
|
throw PatchException("Found multiple return indexes") // Patch needs an update.
|
||||||
|
}
|
||||||
|
|
||||||
|
val elementConfigClass = elementConfigFingerprint.originalClassDef
|
||||||
|
val elementConfigClassType = elementConfigClass.type
|
||||||
|
val elementConfigIndex = indexOfFirstInstructionReversedOrThrow(returnIndex) {
|
||||||
|
val reference = getReference<MethodReference>()
|
||||||
|
reference?.definingClass == elementConfigClassType
|
||||||
|
}
|
||||||
|
val elementConfigStringBuilderField = elementConfigClass.fields.single { field ->
|
||||||
|
field.type == "Ljava/lang/StringBuilder;"
|
||||||
}
|
}
|
||||||
val stringBuilderRegister = getInstruction<TwoRegisterInstruction>(insertHookIndex).registerA
|
|
||||||
|
|
||||||
// Identifier is saved to a field just before the string builder.
|
// Identifier is saved to a field just before the string builder.
|
||||||
val identifierRegister = getInstruction<TwoRegisterInstruction>(
|
val putStringBuilderIndex = indexOfFirstInstructionOrThrow {
|
||||||
indexOfFirstInstructionReversedOrThrow(insertHookIndex) {
|
val reference = getReference<FieldReference>()
|
||||||
|
opcode == Opcode.IPUT_OBJECT &&
|
||||||
|
reference?.definingClass == elementConfigClassType &&
|
||||||
|
reference.type == "Ljava/lang/StringBuilder;"
|
||||||
|
}
|
||||||
|
val elementConfigIdentifierField = getInstruction<ReferenceInstruction>(
|
||||||
|
indexOfFirstInstructionReversedOrThrow(putStringBuilderIndex) {
|
||||||
|
val reference = getReference<FieldReference>()
|
||||||
opcode == Opcode.IPUT_OBJECT &&
|
opcode == Opcode.IPUT_OBJECT &&
|
||||||
getReference<FieldReference>()?.type == "Ljava/lang/String;"
|
reference?.definingClass == elementConfigClassType &&
|
||||||
},
|
reference.type == "Ljava/lang/String;"
|
||||||
).registerA
|
}
|
||||||
|
).getReference<FieldReference>()
|
||||||
|
|
||||||
|
// Could use some of these free registers multiple times, but this is inserting at a
|
||||||
|
// return instruction so there is always multiple 4-bit registers available.
|
||||||
|
val elementConfigRegister = getInstruction<FiveRegisterInstruction>(elementConfigIndex).registerC
|
||||||
|
val identifierRegister = findFreeRegister(returnIndex, elementConfigRegister)
|
||||||
|
val stringBuilderRegister = findFreeRegister(returnIndex, elementConfigRegister, identifierRegister)
|
||||||
|
val thisRegister = findFreeRegister(returnIndex, elementConfigRegister, identifierRegister, stringBuilderRegister)
|
||||||
|
val freeRegister = findFreeRegister(returnIndex, elementConfigRegister, identifierRegister, stringBuilderRegister, thisRegister)
|
||||||
|
|
||||||
val freeRegister = findFreeRegister(insertHookIndex, identifierRegister, stringBuilderRegister)
|
|
||||||
val invokeFilterInstructions = """
|
val invokeFilterInstructions = """
|
||||||
|
iget-object v$identifierRegister, v$elementConfigRegister, $elementConfigIdentifierField
|
||||||
|
iget-object v$stringBuilderRegister, v$elementConfigRegister, $elementConfigStringBuilderField
|
||||||
invoke-static { v$identifierRegister, v$stringBuilderRegister }, $EXTENSION_CLASS_DESCRIPTOR->filter(Ljava/lang/String;Ljava/lang/StringBuilder;)Z
|
invoke-static { v$identifierRegister, v$stringBuilderRegister }, $EXTENSION_CLASS_DESCRIPTOR->filter(Ljava/lang/String;Ljava/lang/StringBuilder;)Z
|
||||||
move-result v$freeRegister
|
move-result v$freeRegister
|
||||||
if-eqz v$freeRegister, :unfiltered
|
move-object/from16 v$thisRegister, p0
|
||||||
|
iput-boolean v$freeRegister, v$thisRegister, $lithoFilterResultField
|
||||||
"""
|
"""
|
||||||
|
|
||||||
addInstructionsWithLabels(
|
if (is_19_18_or_greater) {
|
||||||
insertHookIndex,
|
addInstructionsAtControlFlowLabel(
|
||||||
if (is_19_18_or_greater) {
|
returnIndex,
|
||||||
|
invokeFilterInstructions
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
val elementConfigMethod = conversionContextFingerprint.originalClassDef.methods
|
||||||
|
.single { method ->
|
||||||
|
!AccessFlags.STATIC.isSet(method.accessFlags) && method.returnType == elementConfigClassType
|
||||||
|
}
|
||||||
|
|
||||||
|
addInstructionsAtControlFlowLabel(
|
||||||
|
returnIndex,
|
||||||
"""
|
"""
|
||||||
$invokeFilterInstructions
|
# Element config is a method on a parameter.
|
||||||
|
move-object/from16 v$elementConfigRegister, p2
|
||||||
|
invoke-virtual { v$elementConfigRegister }, $elementConfigMethod
|
||||||
|
move-result-object v$elementConfigRegister
|
||||||
|
|
||||||
# Return null, and the ComponentContextParserFingerprint hook
|
|
||||||
# handles returning an empty component.
|
|
||||||
const/4 v$freeRegister, 0x0
|
|
||||||
return-object v$freeRegister
|
|
||||||
"""
|
|
||||||
} else {
|
|
||||||
"""
|
|
||||||
$invokeFilterInstructions
|
$invokeFilterInstructions
|
||||||
|
|
||||||
${createReturnEmptyComponentInstructions(freeRegister)}
|
${returnEmptyComponentInstructions(freeRegister)}
|
||||||
"""
|
"""
|
||||||
},
|
)
|
||||||
ExternalLabel("unfiltered", getInstruction(insertHookIndex)),
|
}
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// endregion
|
// endregion
|
||||||
|
|
|
@ -11,6 +11,7 @@ import app.revanced.patcher.patch.BytecodePatchContext
|
||||||
import app.revanced.patcher.patch.PatchException
|
import app.revanced.patcher.patch.PatchException
|
||||||
import app.revanced.patcher.util.proxy.mutableTypes.MutableClass
|
import app.revanced.patcher.util.proxy.mutableTypes.MutableClass
|
||||||
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
|
import app.revanced.patcher.util.proxy.mutableTypes.MutableMethod
|
||||||
|
import app.revanced.patcher.util.smali.ExternalLabel
|
||||||
import app.revanced.patches.shared.misc.mapping.get
|
import app.revanced.patches.shared.misc.mapping.get
|
||||||
import app.revanced.patches.shared.misc.mapping.resourceMappingPatch
|
import app.revanced.patches.shared.misc.mapping.resourceMappingPatch
|
||||||
import app.revanced.patches.shared.misc.mapping.resourceMappings
|
import app.revanced.patches.shared.misc.mapping.resourceMappings
|
||||||
|
@ -207,6 +208,26 @@ fun MutableMethod.injectHideViewCall(
|
||||||
"invoke-static { v$viewRegister }, $classDescriptor->$targetMethod(Landroid/view/View;)V",
|
"invoke-static { v$viewRegister }, $classDescriptor->$targetMethod(Landroid/view/View;)V",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Inserts instructions at a given index, using the existing control flow label at that index.
|
||||||
|
* Inserted instructions can have it's own control flow labels as well.
|
||||||
|
*
|
||||||
|
* Effectively this changes the code from:
|
||||||
|
* :label
|
||||||
|
* (original code)
|
||||||
|
*
|
||||||
|
* Into:
|
||||||
|
* :label
|
||||||
|
* (patch code)
|
||||||
|
* (original code)
|
||||||
|
*/
|
||||||
|
// TODO: delete this on next major version bump.
|
||||||
|
fun MutableMethod.addInstructionsAtControlFlowLabel(
|
||||||
|
insertIndex: Int,
|
||||||
|
instructions: String
|
||||||
|
) = addInstructionsAtControlFlowLabel(insertIndex, instructions, *arrayOf<ExternalLabel>())
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Inserts instructions at a given index, using the existing control flow label at that index.
|
* Inserts instructions at a given index, using the existing control flow label at that index.
|
||||||
* Inserted instructions can have it's own control flow labels as well.
|
* Inserted instructions can have it's own control flow labels as well.
|
||||||
|
@ -223,13 +244,14 @@ fun MutableMethod.injectHideViewCall(
|
||||||
fun MutableMethod.addInstructionsAtControlFlowLabel(
|
fun MutableMethod.addInstructionsAtControlFlowLabel(
|
||||||
insertIndex: Int,
|
insertIndex: Int,
|
||||||
instructions: String,
|
instructions: String,
|
||||||
|
vararg externalLabels: ExternalLabel
|
||||||
) {
|
) {
|
||||||
// Duplicate original instruction and add to +1 index.
|
// Duplicate original instruction and add to +1 index.
|
||||||
addInstruction(insertIndex + 1, getInstruction(insertIndex))
|
addInstruction(insertIndex + 1, getInstruction(insertIndex))
|
||||||
|
|
||||||
// Add patch code at same index as duplicated instruction,
|
// Add patch code at same index as duplicated instruction,
|
||||||
// so it uses the original instruction control flow label.
|
// so it uses the original instruction control flow label.
|
||||||
addInstructionsWithLabels(insertIndex + 1, instructions)
|
addInstructionsWithLabels(insertIndex + 1, instructions, *externalLabels)
|
||||||
|
|
||||||
// Remove original non duplicated instruction.
|
// Remove original non duplicated instruction.
|
||||||
removeInstruction(insertIndex)
|
removeInstruction(insertIndex)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue