proguard.classfile.attribute.visitor.StackSizeComputer Java Examples
The following examples show how to use
proguard.classfile.attribute.visitor.StackSizeComputer.
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: NonEmptyStackReturnMarker.java From proguard with GNU General Public License v2.0 | 2 votes |
/** * Creates a new NonEmptyStackReturnMarker * @param stackSizeComputer the stack size computer that can return the * stack sizes at the instructions that are * visited. */ public NonEmptyStackReturnMarker(StackSizeComputer stackSizeComputer) { this.stackSizeComputer = stackSizeComputer; }
Example #2
Source File: NonEmptyStackReturnMarker.java From proguard with GNU General Public License v2.0 | 2 votes |
/** * Creates a new NonEmptyStackReturnMarker * @param stackSizeComputer the stack size computer that can return the * stack sizes at the instructions that are * visited. */ public NonEmptyStackReturnMarker(StackSizeComputer stackSizeComputer) { this.stackSizeComputer = stackSizeComputer; }
Example #3
Source File: NonEmptyStackReturnMarker.java From bazel with Apache License 2.0 | 2 votes |
/** * Creates a new NonEmptyStackReturnMarker * @param stackSizeComputer the stack size computer that can return the * stack sizes at the instructions that are * visited. */ public NonEmptyStackReturnMarker(StackSizeComputer stackSizeComputer) { this.stackSizeComputer = stackSizeComputer; }