本文整理匯總了Java中org.jf.dexlib.Code.Format.Instruction21c類的典型用法代碼示例。如果您正苦於以下問題:Java Instruction21c類的具體用法?Java Instruction21c怎麽用?Java Instruction21c使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
Instruction21c類屬於org.jf.dexlib.Code.Format包,在下文中一共展示了Instruction21c類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: findFieldsSetInStaticConstructor
import org.jf.dexlib.Code.Format.Instruction21c; //導入依賴的package包/類
private void findFieldsSetInStaticConstructor() {
fieldsSetInStaticConstructor = new SparseArray<FieldIdItem>();
if (classDataItem == null) {
return;
}
for (ClassDataItem.EncodedMethod directMethod: classDataItem.getDirectMethods()) {
if (directMethod.method.getMethodName().getStringValue().equals("<clinit>") &&
directMethod.codeItem != null) {
for (Instruction instruction: directMethod.codeItem.getInstructions()) {
switch (instruction.opcode) {
case SPUT:
case SPUT_BOOLEAN:
case SPUT_BYTE:
case SPUT_CHAR:
case SPUT_OBJECT:
case SPUT_SHORT:
case SPUT_WIDE:
Instruction21c ins = (Instruction21c)instruction;
FieldIdItem fieldIdItem = (FieldIdItem)ins.getReferencedItem();
fieldsSetInStaticConstructor.put(fieldIdItem.getIndex(), fieldIdItem);
}
}
}
}
}