object LocalOptImpls
- Source
- LocalOpt.scala
- Alphabetic
- By Inheritance
- LocalOptImpls
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- sealed abstract class RemoveHandlersResult extends AnyRef
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def compactLocalVariables(method: MethodNode): Boolean
Compact the local variable slots used in the method's implementation.
Compact the local variable slots used in the method's implementation. This prevents having unused slots for example after eliminating unreachable code.
This transformation reduces the size of the frame for invoking the method. For example, if the method has an ISTORE instruction to the local variable 3, the maxLocals of the method is at least 4, even if some local variable slots below 3 are not used by any instruction.
This could be improved by doing proper register allocation.
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def removeEmptyExceptionHandlers(method: MethodNode): RemoveHandlersResult
Remove exception handlers that cover empty code blocks.
Remove exception handlers that cover empty code blocks. A block is considered empty if it consist only of labels, frames, line numbers, nops and gotos.
There are no executable instructions that we can assume don't throw (eg ILOAD). The JVM spec basically says that a VirtualMachineError may be thrown at any time: https://docs.oracle.com/javase/specs/jvms/se8/html/jvms-6.html#jvms-6.3
Note that no instructions are eliminated.
Returns a pair of booleans (handlerRemoved, liveHandlerRemoved)
The
liveHandlerRemoved
result depends onremoveUnreachableCode
being executed before, so thatBackendUtils.isLabelReachable
gives a correct answer. - def removeEmptyLineNumbers(method: MethodNode): Boolean
Removes LineNumberNodes that don't describe any executable instructions.
Removes LineNumberNodes that don't describe any executable instructions.
As a side-effect, this traversal removes the
LABEL_REACHABLE_STATUS
flag from all label'sstatus
fields.This method expects (and asserts) that the
start
label of each LineNumberNode is the lexically preceding label declaration. - def removeUnusedLocalVariableNodes(method: MethodNode)(firstLocalIndex: Int = parametersSize(method), renumber: (Int) => Int = identity): Boolean
Remove all non-parameter entries from the local variable table which denote variables that are not actually read or written.
Remove all non-parameter entries from the local variable table which denote variables that are not actually read or written.
Note that each entry in the local variable table has a start, end and index. Two entries with the same index, but distinct start / end ranges are different variables, they may have not the same type or name.
- def simplifyJumps(method: MethodNode): Boolean
Apply various simplifications to branching instructions.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- object RemoveHandlersResult
The Scala compiler and reflection APIs.