Home
last modified time | relevance | path

Searched refs:currentCodeAddress (Results 1 – 2 of 2) sorted by relevance

/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
DMethodDefinition.java404 int currentCodeAddress = 0; in addInstructionMethodItems() local
410 currentCodeAddress, instruction); in addInstructionMethodItems()
415 methodItems.add(new BlankMethodItem(currentCodeAddress)); in addInstructionMethodItems()
419 methodItems.add(new MethodItem(currentCodeAddress) { in addInstructionMethodItems()
453 … methodItems.add(new SyntheticAccessCommentMethodItem(accessedMember, currentCodeAddress)); in addInstructionMethodItems()
459 currentCodeAddress += instruction.getCodeUnits(); in addInstructionMethodItems()
478 int currentCodeAddress = 0; in addAnalyzedInstructionMethodItems() local
483 this, currentCodeAddress, instruction.getInstruction()); in addAnalyzedInstructionMethodItems()
490 this, currentCodeAddress, instruction.getOriginalInstruction()))); in addAnalyzedInstructionMethodItems()
494 methodItems.add(new BlankMethodItem(currentCodeAddress)); in addAnalyzedInstructionMethodItems()
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DMethodAnalyzer.java440 int currentCodeAddress = 0;
443 analyzedInstructions.append(currentCodeAddress,
445 assert analyzedInstructions.indexOfKey(currentCodeAddress) == i;
446 currentCodeAddress += instruction.getCodeUnits();
463 currentCodeAddress = getInstructionAddress(instruction);
467 … if (currentTry.getStartCodeAddress() + currentTry.getCodeUnitCount() <= currentCodeAddress) {
476 if (tryBlock.getStartCodeAddress() <= currentCodeAddress) {
477 … assert(tryBlock.getStartCodeAddress() + tryBlock.getCodeUnitCount() > currentCodeAddress);