Package proguard.util
Class PartialEvaluatorUtils
java.lang.Object
proguard.util.PartialEvaluatorUtils
Helper functions to access PartialEvaluator results more conveniently.
-
Method Summary
Modifier and TypeMethodDescriptionstatic ObjectReturns the identifier of a reference value for whichValue.isSpecific()is true (i.e., the reference is identified by a unique number).static ValuegetStackBefore(PartialEvaluator partialEvaluator, int offset, int index) Returns the value from the before stack at offset, counting from the top.static ValuegetStackValue(Stack stack, int indexFromTop) Returns the value from the stack, counting from the top of the stack.
-
Method Details
-
getStackValue
Returns the value from the stack, counting from the top of the stack. If the stack does not contain that many elements, returns null. -
getStackBefore
Returns the value from the before stack at offset, counting from the top. If the stack does not contain that many elements, returns null. -
getIdFromSpecificReferenceValue
Returns the identifier of a reference value for whichValue.isSpecific()is true (i.e., the reference is identified by a unique number).This helper method is needed because
IdentifiedReferenceValueandIdentifiedArrayReferenceValuedo not share the relevant portion of the class hierarchy, but a better solution should be implemented in the future.
-