Searched refs:registerFormatter (Results 1 - 8 of 8) sorted by relevance

/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Debug/
H A DEndLocalMethodItem.java43 @Nonnull private final RegisterFormatter registerFormatter; field in class:EndLocalMethodItem
45 public EndLocalMethodItem(int codeAddress, int sortOrder, @Nonnull RegisterFormatter registerFormatter, argument
49 this.registerFormatter = registerFormatter;
55 registerFormatter.writeTo(writer, endLocal.getRegister());
H A DRestartLocalMethodItem.java43 @Nonnull private final RegisterFormatter registerFormatter; field in class:RestartLocalMethodItem
45 public RestartLocalMethodItem(int codeAddress, int sortOrder, @Nonnull RegisterFormatter registerFormatter, argument
49 this.registerFormatter = registerFormatter;
55 registerFormatter.writeTo(writer, restartLocal.getRegister());
H A DStartLocalMethodItem.java43 @Nonnull private final RegisterFormatter registerFormatter; field in class:StartLocalMethodItem
45 public StartLocalMethodItem(int codeAddress, int sortOrder, @Nonnull RegisterFormatter registerFormatter, argument
49 this.registerFormatter = registerFormatter;
55 registerFormatter.writeTo(writer, startLocal.getRegister());
H A DDebugMethodItem.java50 public static DebugMethodItem build(RegisterFormatter registerFormatter, DebugItem debugItem) { argument
54 return new StartLocalMethodItem(codeAddress, -1, registerFormatter, (StartLocal)debugItem);
56 return new EndLocalMethodItem(codeAddress, -1, registerFormatter, (EndLocal)debugItem);
58 return new RestartLocalMethodItem(codeAddress, -1, registerFormatter, (RestartLocal)debugItem);
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DPostInstructionRegisterInfoMethodItem.java41 @Nonnull private final RegisterFormatter registerFormatter; field in class:PostInstructionRegisterInfoMethodItem
44 public PostInstructionRegisterInfoMethodItem(@Nonnull RegisterFormatter registerFormatter, argument
48 this.registerFormatter = registerFormatter;
59 int registerInfo = registerFormatter.options.registerInfo;
95 registerFormatter.writeTo(writer, registerNum);
H A DPreInstructionRegisterInfoMethodItem.java45 @Nonnull private final RegisterFormatter registerFormatter; field in class:PreInstructionRegisterInfoMethodItem
50 @Nonnull RegisterFormatter registerFormatter,
56 this.registerFormatter = registerFormatter;
174 registerFormatter.writeTo(writer, registerNum);
231 registerFormatter.writeTo(writer, registerNum);
48 PreInstructionRegisterInfoMethodItem(int registerInfo, @Nonnull MethodAnalyzer methodAnalyzer, @Nonnull RegisterFormatter registerFormatter, @Nonnull AnalyzedInstruction analyzedInstruction, int codeAddress) argument
H A DMethodDefinition.java69 public RegisterFormatter registerFormatter; field in class:MethodDefinition
196 if (registerFormatter == null) {
197 registerFormatter = new RegisterFormatter(classDef.options, methodImpl.getRegisterCount(),
457 methodAnalyzer, registerFormatter, instruction, currentCodeAddress));
460 new PostInstructionRegisterInfoMethodItem(registerFormatter, instruction, currentCodeAddress));
517 methodItems.add(DebugMethodItem.build(registerFormatter, debugItem));
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
H A DInstructionMethodItem.java368 methodDef.registerFormatter.writeTo(writer, registerNumber);
436 methodDef.registerFormatter.writeRegisterRange(writer, startRegister, startRegister+regCount-1);

Completed in 1152 milliseconds