Packages

object LocalsList extends Serializable

Source
ClosureOptimizer.scala
Linear Supertypes
Serializable, java.io.Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LocalsList
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def fromTypes(firstLocal: Int, types: Array[Type]): LocalsList

    A list of local variables starting at firstLocal that can hold values of the types in the types parameter.

    A list of local variables starting at firstLocal that can hold values of the types in the types parameter.

    For example, fromTypes(3, Array(Int, Long, String)) returns Local(3, intOpOffset) :: Local(4, longOpOffset) :: // note that this local occupies two slots, the next is at 6 Local(6, refOpOffset) :: Nil