| java.lang.Object gnu.bytecode.TryState
TryState | public class TryState (Code) | | The state of a try statement.
|
end_label | Label end_label(Code) | | The label for the code following the entire try-statement.
|
finally_ret_addr | Variable finally_ret_addr(Code) | | Used for the return address of the finally subroutine (if any).
|
finally_subr | Label finally_subr(Code) | | If this "try" has a "finally", the Label of the "finally" sub-routine.
|
savedStack | Variable[] savedStack(Code) | | If the SP > 0 when we entered the try, the stack is saved here.
|
savedTypes | Type[] savedTypes(Code) | | Only used in emitWithCleanupStart mode.
|
saved_result | Variable saved_result(Code) | | Non-null if we need a temporary to save the result.
|
try_type | ClassType try_type(Code) | | If we are inside a try, the type of variable matched.
|
|
|