Java Code Examples for org.jf.dexlib2.analysis.MethodAnalyzer#getAnalyzedInstructions()
The following examples show how to use
org.jf.dexlib2.analysis.MethodAnalyzer#getAnalyzedInstructions() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: MethodDefinition.java From ZjDroid with Apache License 2.0 | 4 votes |
private void addAnalyzedInstructionMethodItems(List<MethodItem> methodItems) { MethodAnalyzer methodAnalyzer = new MethodAnalyzer(classDef.options.classPath, method, classDef.options.inlineResolver); AnalysisException analysisException = methodAnalyzer.getAnalysisException(); if (analysisException != null) { // TODO: need to keep track of whether any errors occurred, so we can exit with a non-zero result methodItems.add(new CommentMethodItem( String.format("AnalysisException: %s", analysisException.getMessage()), analysisException.codeAddress, Integer.MIN_VALUE)); analysisException.printStackTrace(System.err); } List<AnalyzedInstruction> instructions = methodAnalyzer.getAnalyzedInstructions(); int currentCodeAddress = 0; for (int i=0; i<instructions.size(); i++) { AnalyzedInstruction instruction = instructions.get(i); MethodItem methodItem = InstructionMethodItemFactory.makeInstructionFormatMethodItem( this, currentCodeAddress, instruction.getInstruction()); methodItems.add(methodItem); if (instruction.getInstruction().getOpcode().format == Format.UnresolvedOdexInstruction) { methodItems.add(new CommentedOutMethodItem( InstructionMethodItemFactory.makeInstructionFormatMethodItem( this, currentCodeAddress, instruction.getOriginalInstruction()))); } if (i != instructions.size() - 1) { methodItems.add(new BlankMethodItem(currentCodeAddress)); } if (classDef.options.addCodeOffsets) { methodItems.add(new MethodItem(currentCodeAddress) { @Override public double getSortOrder() { return -1000; } @Override public boolean writeTo(IndentingWriter writer) throws IOException { writer.write("#@"); writer.printUnsignedLongAsHex(codeAddress & 0xFFFFFFFFL); return true; } }); } if (classDef.options.registerInfo != 0 && !instruction.getInstruction().getOpcode().format.isPayloadFormat) { methodItems.add( new PreInstructionRegisterInfoMethodItem(classDef.options.registerInfo, methodAnalyzer, registerFormatter, instruction, currentCodeAddress)); methodItems.add( new PostInstructionRegisterInfoMethodItem(registerFormatter, instruction, currentCodeAddress)); } currentCodeAddress += instruction.getInstruction().getCodeUnits(); } }
Example 2
Source File: MethodDefinition.java From atlas with Apache License 2.0 | 4 votes |
private void addAnalyzedInstructionMethodItems(List<MethodItem> methodItems) { MethodAnalyzer methodAnalyzer = new MethodAnalyzer(classDef.options.classPath, method, classDef.options.inlineResolver,classDef.options.normalizeVirtualMethods); AnalysisException analysisException = methodAnalyzer.getAnalysisException(); if (analysisException != null) { // TODO: need to keep track of whether any errors occurred, so we can exit with a non-zero result methodItems.add(new CommentMethodItem( String.format("AnalysisException: %s", analysisException.getMessage()), analysisException.codeAddress, Integer.MIN_VALUE)); analysisException.printStackTrace(System.err); } List<AnalyzedInstruction> instructions = methodAnalyzer.getAnalyzedInstructions(); int currentCodeAddress = 0; for (int i = 0; i < instructions.size(); i++) { AnalyzedInstruction instruction = instructions.get(i); MethodItem methodItem = InstructionMethodItemFactory.makeInstructionFormatMethodItem( this, currentCodeAddress, instruction.getInstruction()); methodItems.add(methodItem); if (instruction.getInstruction().getOpcode().format == Format.UnresolvedOdexInstruction) { methodItems.add(new CommentedOutMethodItem( InstructionMethodItemFactory.makeInstructionFormatMethodItem( this, currentCodeAddress, instruction.getOriginalInstruction()))); } if (i != instructions.size() - 1) { methodItems.add(new BlankMethodItem(currentCodeAddress)); } if (classDef.options.codeOffsets) { methodItems.add(new MethodItem(currentCodeAddress) { @Override public double getSortOrder() { return -1000; } @Override public boolean writeTo(IndentingWriter writer) throws IOException { writer.write("#@"); writer.printUnsignedLongAsHex(codeAddress & 0xFFFFFFFFL); return true; } }); } if (classDef.options.registerInfo != 0 && !instruction.getInstruction().getOpcode().format.isPayloadFormat) { methodItems.add( new PreInstructionRegisterInfoMethodItem(classDef.options.registerInfo, methodAnalyzer, registerFormatter, instruction, currentCodeAddress)); methodItems.add( new PostInstructionRegisterInfoMethodItem(registerFormatter, instruction, currentCodeAddress)); } currentCodeAddress += instruction.getInstruction().getCodeUnits(); } }
Example 3
Source File: MethodDefinition.java From zjdroid with Apache License 2.0 | 4 votes |
private void addAnalyzedInstructionMethodItems(List<MethodItem> methodItems) { MethodAnalyzer methodAnalyzer = new MethodAnalyzer(classDef.options.classPath, method, classDef.options.inlineResolver); AnalysisException analysisException = methodAnalyzer.getAnalysisException(); if (analysisException != null) { // TODO: need to keep track of whether any errors occurred, so we can exit with a non-zero result methodItems.add(new CommentMethodItem( String.format("AnalysisException: %s", analysisException.getMessage()), analysisException.codeAddress, Integer.MIN_VALUE)); analysisException.printStackTrace(System.err); } List<AnalyzedInstruction> instructions = methodAnalyzer.getAnalyzedInstructions(); int currentCodeAddress = 0; for (int i=0; i<instructions.size(); i++) { AnalyzedInstruction instruction = instructions.get(i); MethodItem methodItem = InstructionMethodItemFactory.makeInstructionFormatMethodItem( this, currentCodeAddress, instruction.getInstruction()); methodItems.add(methodItem); if (instruction.getInstruction().getOpcode().format == Format.UnresolvedOdexInstruction) { methodItems.add(new CommentedOutMethodItem( InstructionMethodItemFactory.makeInstructionFormatMethodItem( this, currentCodeAddress, instruction.getOriginalInstruction()))); } if (i != instructions.size() - 1) { methodItems.add(new BlankMethodItem(currentCodeAddress)); } if (classDef.options.addCodeOffsets) { methodItems.add(new MethodItem(currentCodeAddress) { @Override public double getSortOrder() { return -1000; } @Override public boolean writeTo(IndentingWriter writer) throws IOException { writer.write("#@"); writer.printUnsignedLongAsHex(codeAddress & 0xFFFFFFFFL); return true; } }); } if (classDef.options.registerInfo != 0 && !instruction.getInstruction().getOpcode().format.isPayloadFormat) { methodItems.add( new PreInstructionRegisterInfoMethodItem(classDef.options.registerInfo, methodAnalyzer, registerFormatter, instruction, currentCodeAddress)); methodItems.add( new PostInstructionRegisterInfoMethodItem(registerFormatter, instruction, currentCodeAddress)); } currentCodeAddress += instruction.getInstruction().getCodeUnits(); } }
Example 4
Source File: MethodDefinition.java From HeyGirl with Apache License 2.0 | 4 votes |
private void addAnalyzedInstructionMethodItems(List<MethodItem> methodItems) { MethodAnalyzer methodAnalyzer = new MethodAnalyzer(classDef.options.classPath, method, classDef.options.inlineResolver); AnalysisException analysisException = methodAnalyzer.getAnalysisException(); if (analysisException != null) { // TODO: need to keep track of whether any errors occurred, so we can exit with a non-zero result methodItems.add(new CommentMethodItem( String.format("AnalysisException: %s", analysisException.getMessage()), analysisException.codeAddress, Integer.MIN_VALUE)); analysisException.printStackTrace(System.err); } List<AnalyzedInstruction> instructions = methodAnalyzer.getAnalyzedInstructions(); int currentCodeAddress = 0; for (int i=0; i<instructions.size(); i++) { AnalyzedInstruction instruction = instructions.get(i); MethodItem methodItem = InstructionMethodItemFactory.makeInstructionFormatMethodItem( this, currentCodeAddress, instruction.getInstruction()); methodItems.add(methodItem); if (instruction.getInstruction().getOpcode().format == Format.UnresolvedOdexInstruction) { methodItems.add(new CommentedOutMethodItem( InstructionMethodItemFactory.makeInstructionFormatMethodItem( this, currentCodeAddress, instruction.getOriginalInstruction()))); } if (i != instructions.size() - 1) { methodItems.add(new BlankMethodItem(currentCodeAddress)); } if (classDef.options.addCodeOffsets) { methodItems.add(new MethodItem(currentCodeAddress) { @Override public double getSortOrder() { return -1000; } @Override public boolean writeTo(IndentingWriter writer) throws IOException { writer.write("#@"); writer.printUnsignedLongAsHex(codeAddress & 0xFFFFFFFFL); return true; } }); } if (classDef.options.registerInfo != 0 && !instruction.getInstruction().getOpcode().format.isPayloadFormat) { methodItems.add( new PreInstructionRegisterInfoMethodItem(classDef.options.registerInfo, methodAnalyzer, registerFormatter, instruction, currentCodeAddress)); methodItems.add( new PostInstructionRegisterInfoMethodItem(registerFormatter, instruction, currentCodeAddress)); } currentCodeAddress += instruction.getInstruction().getCodeUnits(); } }
Example 5
Source File: MethodDefinition.java From ZjDroid with Apache License 2.0 | 4 votes |
private void addAnalyzedInstructionMethodItems(List<MethodItem> methodItems) { MethodAnalyzer methodAnalyzer = new MethodAnalyzer(classDef.options.classPath, method, classDef.options.inlineResolver); AnalysisException analysisException = methodAnalyzer.getAnalysisException(); if (analysisException != null) { // TODO: need to keep track of whether any errors occurred, so we can exit with a non-zero result methodItems.add(new CommentMethodItem( String.format("AnalysisException: %s", analysisException.getMessage()), analysisException.codeAddress, Integer.MIN_VALUE)); analysisException.printStackTrace(System.err); } List<AnalyzedInstruction> instructions = methodAnalyzer.getAnalyzedInstructions(); int currentCodeAddress = 0; for (int i=0; i<instructions.size(); i++) { AnalyzedInstruction instruction = instructions.get(i); MethodItem methodItem = InstructionMethodItemFactory.makeInstructionFormatMethodItem( this, currentCodeAddress, instruction.getInstruction()); methodItems.add(methodItem); if (instruction.getInstruction().getOpcode().format == Format.UnresolvedOdexInstruction) { methodItems.add(new CommentedOutMethodItem( InstructionMethodItemFactory.makeInstructionFormatMethodItem( this, currentCodeAddress, instruction.getOriginalInstruction()))); } if (i != instructions.size() - 1) { methodItems.add(new BlankMethodItem(currentCodeAddress)); } if (classDef.options.addCodeOffsets) { methodItems.add(new MethodItem(currentCodeAddress) { @Override public double getSortOrder() { return -1000; } @Override public boolean writeTo(IndentingWriter writer) throws IOException { writer.write("#@"); writer.printUnsignedLongAsHex(codeAddress & 0xFFFFFFFFL); return true; } }); } if (classDef.options.registerInfo != 0 && !instruction.getInstruction().getOpcode().format.isPayloadFormat) { methodItems.add( new PreInstructionRegisterInfoMethodItem(classDef.options.registerInfo, methodAnalyzer, registerFormatter, instruction, currentCodeAddress)); methodItems.add( new PostInstructionRegisterInfoMethodItem(registerFormatter, instruction, currentCodeAddress)); } currentCodeAddress += instruction.getInstruction().getCodeUnits(); } }