
org.opalj.br.instructions.GETSTATIC.scala Maven / Gradle / Ivy
The newest version!
/* BSD 2-Clause License - see OPAL/LICENSE for details. */
package org.opalj
package br
package instructions
/**
* Getstatic field from class.
*
* @see [[org.opalj.br.instructions.FieldAccess]] for additional pattern matching support.
*
* @author Michael Eichberg
*/
case class GETSTATIC(
declaringClass: ObjectType,
name: String,
fieldType: FieldType
) extends FieldReadAccess {
final def opcode: Opcode = GETSTATIC.opcode
final def mnemonic: String = GETSTATIC.mnemonic
final def jvmExceptions: List[ObjectType] = Nil
final def mayThrowExceptions: Boolean = false
final def numberOfPoppedOperands(ctg: Int => ComputationalTypeCategory): Int = 0
final def stackSlotsChange: Int = fieldType.computationalType.operandSize
final def nextInstructions(
currentPC: PC,
regularSuccessorsOnly: Boolean
)(
implicit
code: Code,
classHierarchy: ClassHierarchy = ClassHierarchy.PreInitializedClassHierarchy
): List[PC] = {
List(indexOfNextInstruction(currentPC))
}
override def toString =
"get static "+declaringClass.toJava+"."+name+" : "+fieldType.toJava
}
/**
* General information and factory methods.
*
* @author Malte Limmeroth
*/
object GETSTATIC extends InstructionMetaInformation {
final val opcode = 178
final val mnemonic = "getstatic"
/**
* Factory method to create [[GETSTATIC]] instructions.
*
* @param declaringClassName The binary name of the field's declaring class, e.g.
* `java/lang/Object`.
* @param name The field's name.
* @param fieldTypeName The field's type; see [[org.opalj.br.FieldType$]] for the concrete
* syntax.
*/
def apply(declaringClassName: String, name: String, fieldTypeName: String): GETSTATIC = {
GETSTATIC(ObjectType(declaringClassName), name, FieldType(fieldTypeName))
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy