FramesComputationMode

@Incubating enum class FramesComputationMode
kotlin.Any
   ↳ kotlin.Enum<com.android.build.api.instrumentation.FramesComputationMode>
   ↳ com.android.build.api.instrumentation.FramesComputationMode

Indicates the frame computation mode that will be applied to the bytecode of the classes instrumented by ASM visitors registered through Component.transformClassesWith.

The default mode is to copy frames.

Summary

Enum values

Stack frames and the maximum stack sizes will be skipped when reading the original classes, and will not be computed by ClassWriter.

Stack frames and the maximum stack sizes will be skipped when reading the original classes, and will be instead computed from scratch by ClassWriter based on the classpath of the original classes.

Stack frames and the maximum stack size will be computed by ClassWriter for any modified or added methods based on the classpath of the original classes.

Stack frames and the maximum stack sizes will be copied from the original classes to the instrumented ones, i.

Enum values

COMPUTE_FRAMES_FOR_ALL_CLASSES

enum val COMPUTE_FRAMES_FOR_ALL_CLASSES : FramesComputationMode

Stack frames and the maximum stack sizes will be skipped when reading the original classes, and will not be computed by ClassWriter. Instead, when the whole instrumentation process is finished for all the classes, there will be another pass where the frames are computed for all classes based on the classpath of the instrumented classes. This means that the frames will be computed for all classes non-incrementally regardless of which classes changed or which classes were instrumented.

Using this mode will have a large impact on the build speed, use only when it's absolutely necessary.

Use this mode if your instrumentation process requires recomputing frames and/or maxs, and there will be two classes A and B, where the lowest common superclass will not be the same before and after instrumentation.

For example, the instrumentation process could be

  • Changing the superclass of a subset of classes, that will result in changing the lowest common superclass of at least two classes.

COMPUTE_FRAMES_FOR_INSTRUMENTED_CLASSES

enum val COMPUTE_FRAMES_FOR_INSTRUMENTED_CLASSES : FramesComputationMode

Stack frames and the maximum stack sizes will be skipped when reading the original classes, and will be instead computed from scratch by ClassWriter based on the classpath of the original classes.

Use this mode if your instrumentation process requires recomputing frames and/or maxs for all instrumented classes, and for any two classes A and B, the lowest common superclass will be the same before and after instrumentation.

For example, the instrumentation process could be

  • Injecting code without visiting the frames and/or maxs for the injected code.

COMPUTE_FRAMES_FOR_INSTRUMENTED_METHODS

enum val COMPUTE_FRAMES_FOR_INSTRUMENTED_METHODS : FramesComputationMode

Stack frames and the maximum stack size will be computed by ClassWriter for any modified or added methods based on the classpath of the original classes. This means that neither the maximum stack size nor the stack frames will be computed for methods that are copied as is in the new class.

Use this mode if your instrumentation process requires recomputing frames and/or maxs only for the modified methods in each class.

For example, the instrumentation process could be

  • Injecting code without visiting the frames and/or maxs for the injected code.

COPY_FRAMES

enum val COPY_FRAMES : FramesComputationMode

Stack frames and the maximum stack sizes will be copied from the original classes to the instrumented ones, i.e. frames and maxs will be read and visited by the class visitors and then to the ClassWriter where they will be written without modification.

This is the fastest mode as it doesn't require computing frames which can be an expensive operation.

Use this mode if your instrumentation process doesn't require recomputing frames or maxs.

For example, the instrumentation process could be

  • Adding an annotation to a method
  • Adding an interface to a class
  • Injecting code and also manually calculating and visiting the frames and maxs for the injected code.