All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opalj.br.instructions.LStoreInstruction.scala Maven / Gradle / Ivy

The newest version!
/* BSD 2-Clause License - see OPAL/LICENSE for details. */
package org.opalj
package br
package instructions

/**
 * Store long into local variable.
 *
 * @author Michael Eichberg
 */
trait LStoreInstruction extends StoreLocalVariableInstruction {

    final def computationalType: ComputationalType = ComputationalTypeLong

    final def stackSlotsChange: Int = -2
}

object LStoreInstruction {

    def unapply(lstore: LStoreInstruction): Some[Int] = Some(lstore.lvIndex)
}

trait ConstantIndexLStoreInstruction
    extends LStoreInstruction
    with ImplicitLocalVariableIndex
    with InstructionMetaInformation




© 2015 - 2025 Weber Informatics LLC | Privacy Policy