opCodes

This method uses opcodes matcher

----------------

该方法使用的指令匹配器

opCodes(OpCodesMatcher().opCodes(listOf(0x12, 0x13, 0x14)))

Return

MethodMatcher

Parameters

opCodes

opcodes matcher / 指令匹配器


fun opCodes(opCodes: Collection<Int>, matchType: OpCodeMatchType = OpCodeMatchType.Contains, opCodeSize: IntRange? = null): MethodMatcher

This method uses consecutive OP instructions.

----------------

该方法使用的连续的 OP 指令。

opCodes(listOf(0x12, 0x13, 0x14), OpCodeMatchType.StartsWith)

Return

MethodMatcher

Parameters

opCodes

opcodes / 指令

matchType

match type / 匹配关系

opCodeSize

opcodes size / 指令数量


This method uses consecutive OP instructions.

----------------

该方法使用的连续的 OP 指令。

opCodes = listOf(0x12, 0x13, 0x14)