final class Code extends Attribute with CommonAttributes with InstructionsContainer with CodeSequence[Instruction] with Iterable[PCAndInstruction]
Representation of a method's code attribute, that is, representation of a method's implementation.
- Self Type
- Code
- Source
- Code.scala
- Alphabetic
- By Inheritance
- Code
- Iterable
- IterableFactoryDefaults
- IterableOps
- IterableOnceOps
- IterableOnce
- CodeSequence
- InstructionsContainer
- CommonAttributes
- Attribute
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ++[B >: PCAndInstruction](suffix: IterableOnce[B]): Iterable[B]
- Definition Classes
- IterableOps
- Annotations
- @inline()
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def addString(b: StringBuilder): b.type
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- final def addString(b: StringBuilder, sep: String): b.type
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- def addString(b: StringBuilder, start: String, sep: String, end: String): b.type
- Definition Classes
- IterableOnceOps
- def alwaysResultsInException(pc: Int, cfJoins: IntTrieSet, anInvocation: (Int) => Boolean, aThrow: (Int) => Boolean): Boolean
Tests if the straight-line sequence of instructions that starts with the given
pc
always ends with anATHROW
instruction or a method call that always throws an exception.Tests if the straight-line sequence of instructions that starts with the given
pc
always ends with anATHROW
instruction or a method call that always throws an exception. The call sequence furthermore has to contain no complex logic. Here, complex means that evaluating the instruction may result in multiple control flows. If the sequence contains complex logic,false
will be returned.One use case of this method is, e.g., to check if the code of the default case of a switch instruction always throws some error (e.g., an
UnknownError
orAssertionError
).switch(...) { case X : .... default : throw new AssertionError(); }
This is a typical idiom used in Java programs and which may be relevant for certain analyses to detect.
- pc
The program counter of an instruction that strictly dominates all succeeding instructions up until the next instruction (as determined by #cfJoins where two or more paths join. If the pc belongs to an instruction where multiple paths join,
false
will be returned.- anInvocation
When the analysis finds a method call, it calls this method to let the caller decide whether the called method is an (indirect) way of always throwing an exception. If
true
is returned the analysis terminates and returnstrue
; otherwise the analysis continues.- aThrow
If all (non-exception) paths will always end in one specific
ATHROW
instruction then this function is called (callback) to let the caller decide if the "expected" exception is thrown. This analysis will return with the result of this call.- returns
true
if the bytecode sequence starting with the instruction with the givenpc
always ends with an org.opalj.br.instructions.ATHROW instruction.false
in all other cases (i.e., the sequence does not end with anathrow
instruction or the control flow is more complex.)
- Annotations
- @inline()
- Note
If complex control flows should also be considered it is possible to compute a methods org.opalj.br.cfg.CFG and use that one.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val attributes: Attributes
- Definition Classes
- Code → CommonAttributes
- def belongsToSubroutine(): Array[Int]
Calculates for each instruction the subroutine to which it belongs to – if any.
Calculates for each instruction the subroutine to which it belongs to – if any. This information is required to, e.g., identify the subroutine contexts that need to be reset in case of an exception in a subroutine.
- returns
Basically a map that maps the
pc
of each instruction to the id of the subroutine. For each instruction (with a specificpc
) thepc
of the first instruction of the subroutine it belongs to is returned. The pc0
identifies the instruction as belonging to the core method. The pc-1
identifies the instruction as dead by compilation.
- Note
Calling this method only makes sense for Java bytecode that actually contains org.opalj.br.instructions.JSR and org.opalj.br.instructions.RET instructions.
- def cfJoins(implicit classHierarchy: ClassHierarchy = PreInitializedClassHierarchy): IntTrieSet
Returns the set of all program counters where two or more control flow paths may join.
Returns the set of all program counters where two or more control flow paths may join.
Example
0: iload_1 1: ifgt 6 2: iconst_1 5: goto 10 6: ... 9: iload_1 10: return // <= PATH JOIN: the predecessors are the instructions 5 and 9.
In case of exception handlers the sound overapproximation is made that all exception handlers with a fitting type may be reached on multiple paths.
- def cfPCs(implicit classHierarchy: ClassHierarchy = PreInitializedClassHierarchy): (PCs, PCs, IntMap[PCs])
Returns the set of all program counters where two or more control flow paths join or fork.
Returns the set of all program counters where two or more control flow paths join or fork.
Example
0: iload_1 1: ifgt 6 // <= PATH FORK 2: iconst_1 5: goto 10 6: ... 9: iload_1 10: return // <= PATH JOIN: the predecessors are the instructions 5 and 9.
In case of exception handlers the sound overapproximation is made that all exception handlers may be reached on multiple paths.
- returns
A triple which contains (1) the set of pcs of those instructions where multiple control-flow paths join; (2) the pcs of the instructions which may result in multiple different control-flow paths and (3) for each of the later instructions the set of all potential targets.
- def className: String
- Attributes
- protected[this]
- Definition Classes
- Iterable
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- final def codeSize: Int
- Annotations
- @inline()
- final def coll: Code.this.type
- Attributes
- protected
- Definition Classes
- Iterable → IterableOps
- def collect[B <: AnyRef](f: PartialFunction[Instruction, B]): List[PCAndAnyRef[B]]
Collects all instructions for which the given function is defined.
Collects all instructions for which the given function is defined.
Usage scenario
Use this function if you want to search for and collect specific instructions and when you do not immediately require the program counter/index of the instruction in the instruction array to make the decision whether you want to collect the instruction.
Examples
Example usage to collect the declaring class of all get field accesses where the field name is "last".
collect({ case GETFIELD(declaringClass, "last", _) => declaringClass })
Example usage to collect all instances of a "DUP" instruction.
code.collect({ case dup @ DUP => dup })
- returns
The result of applying the function f to all instructions for which f is defined combined with the index (program counter) of the instruction in the code array.
- def collect[B](pf: PartialFunction[PCAndInstruction, B]): Iterable[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def collectFirst[B](pf: PartialFunction[PCAndInstruction, B]): Option[B]
- Definition Classes
- IterableOnceOps
- def collectFirstWithIndex[B](f: PartialFunction[PCAndInstruction, B]): Option[B]
Applies the given function to the first instruction for which the given function is defined.
- def collectInstructions[B <: AnyRef](f: PartialFunction[Instruction, B]): List[B]
Collects all instructions for which the given function is defined.
Collects all instructions for which the given function is defined. The order in which the instructions are collected is reversed when compared to the order in the instructions array.
- def collectInstructionsWithPC[B <: AnyRef](f: PartialFunction[PCAndInstruction, B]): List[PCAndAnyRef[B]]
Collects all instructions for which the given function is defined.
- def collectPair[B <: AnyRef](f: PartialFunction[(Instruction, Instruction), B]): List[PCAndAnyRef[B]]
Finds a pair of consecutive instructions that are matched by the given partial function.
Finds a pair of consecutive instructions that are matched by the given partial function.
Example Usage
(pc, _) <- body.findPair { case ( INVOKESPECIAL(receiver1, _, SingleArgumentMethodDescriptor((paramType: BaseType, _))), INVOKEVIRTUAL(receiver2, name, NoArgumentMethodDescriptor(returnType: BaseType)) ) if (...) => (...) } yield ...
- def collectUntil[B <: AnyRef](f: PartialFunction[PCAndInstruction, B]): PCAndAnyRef[List[B]]
Collects the results of the evaluation of the partial function until the partial function is not defined.
Collects the results of the evaluation of the partial function until the partial function is not defined.
- returns
The program counter of the instruction for which the given partial function was not defined along with the list of previous results. The results are sorted in descending order w.r.t. the PC.
- def collectWithIndex[B](f: PartialFunction[PCAndInstruction, B])(implicit arg0: ClassTag[B]): List[B]
Applies the given function
f
to all instruction objects for which the function is defined.Applies the given function
f
to all instruction objects for which the function is defined. The function is passed a tuple consisting of the current program counter/index in the code array and the corresponding instruction.Example
Example usage to collect the program counters (indexes) of all instructions that are the target of a conditional branch instruction:
code.collectWithIndex({ case (pc, cbi: ConditionalBranchInstruction) => Seq(cbi.indexOfNextInstruction(pc, code), pc + cbi.branchoffset) }) // .flatten should equal (Seq(...))
- def compareAttributes(other: Attributes, config: SimilarityTestConfiguration): Option[AnyRef]
Compares this element's attributes with the given one.
Compares this element's attributes with the given one.
- returns
None, if both attribute lists are similar; Some(<description of the difference>) otherwise.
- Attributes
- protected[this]
- Definition Classes
- CommonAttributes
- def concat[B >: PCAndInstruction](suffix: IterableOnce[B]): Iterable[B]
- Definition Classes
- IterableOps
- def copy(maxStack: Int = this.maxStack, maxLocals: Int = this.maxLocals, instructions: Array[Instruction] = this.instructions, exceptionHandlers: ExceptionHandlers = this.exceptionHandlers, attributes: Attributes = this.attributes): Code
- def copyToArray[B >: PCAndInstruction](xs: Array[B], start: Int, len: Int): Int
- Definition Classes
- IterableOnceOps
- def copyToArray[B >: PCAndInstruction](xs: Array[B], start: Int): Int
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecatedOverriding()
- def copyToArray[B >: PCAndInstruction](xs: Array[B]): Int
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecatedOverriding()
- def corresponds[B](that: IterableOnce[B])(p: (PCAndInstruction, B) => Boolean): Boolean
- Definition Classes
- IterableOnceOps
- def count(p: (PCAndInstruction) => Boolean): Int
- Definition Classes
- IterableOnceOps
- def drop(n: Int): Iterable[PCAndInstruction]
- Definition Classes
- IterableOps → IterableOnceOps
- def dropRight(n: Int): Iterable[PCAndInstruction]
- Definition Classes
- IterableOps
- def dropWhile(p: (PCAndInstruction) => Boolean): Iterable[PCAndInstruction]
- Definition Classes
- IterableOps → IterableOnceOps
- def empty: Iterable[PCAndInstruction]
- Definition Classes
- IterableFactoryDefaults → IterableOps
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- val exceptionHandlers: ExceptionHandlers
- def exceptionHandlersFor(pc: PC): List[ExceptionHandler]
Returns a view of all potential exception handlers (if any) for the instruction with the given program counter (
pc
).Returns a view of all potential exception handlers (if any) for the instruction with the given program counter (
pc
).Finally
handlers (catchType == None
) are not returned but will stop the evaluation (as all further exception handlers have no further meaning w.r.t. the runtime)! In case of identical caught exceptions only the first of them will be returned. No further checks (w.r.t. the typehierarchy) are done.- pc
The program counter of an instruction of this
Code
array.
- def exists(p: (PCAndInstruction) => Boolean): Boolean
- Definition Classes
- IterableOnceOps
- def filter[B](f: (PC, Instruction) => Boolean): IntArraySet
- def filter(pred: (PCAndInstruction) => Boolean): Iterable[PCAndInstruction]
- Definition Classes
- IterableOps → IterableOnceOps
- def filterNot(pred: (PCAndInstruction) => Boolean): Iterable[PCAndInstruction]
- Definition Classes
- IterableOps → IterableOnceOps
- def find(p: (PCAndInstruction) => Boolean): Option[PCAndInstruction]
- Definition Classes
- IterableOnceOps
- def findSequence[B <: AnyRef](windowSize: Int)(f: PartialFunction[Queue[Instruction], B]): List[PCAndAnyRef[B]]
Finds a sequence of instructions that are matched by the given partial function.
Finds a sequence of instructions that are matched by the given partial function.
- returns
List of pairs where the first element is the pc of the first instruction of a matched sequence and the second value is the result of the evaluation of the partial function.
- Note
If possible, use one of the more specialized methods, such as, collectPair. The pure iteration overhead caused by this method is roughly 10-20 times higher than this one.
- def firstLineNumber: Option[Int]
Returns the smallest line number (if any).
Returns the smallest line number (if any).
- Note
The line number associated with the first instruction (pc === 0) is not necessarily the smallest one.
public void foo(int i) { super.foo( // The call has the smallest line number. i+=1; // THIS IS THE FIRST OPERATION... ) }
- def flatMap[B](f: (PCAndInstruction) => IterableOnce[B]): Iterable[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def flatten[B](implicit asIterable: (PCAndInstruction) => IterableOnce[B]): Iterable[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def fold[A1 >: PCAndInstruction](z: A1)(op: (A1, A1) => A1): A1
- Definition Classes
- IterableOnceOps
- def foldLeft[T](start: T)(f: (T, Int, Instruction) => T): T
- def foldLeft[B](z: B)(op: (B, PCAndInstruction) => B): B
- Definition Classes
- IterableOnceOps
- def foldRight[B](z: B)(op: (PCAndInstruction, B) => B): B
- Definition Classes
- IterableOnceOps
- final def forall(f: (Int, Instruction) => Boolean): Boolean
- Annotations
- @inline()
- def forall(p: (PCAndInstruction) => Boolean): Boolean
- Definition Classes
- IterableOnceOps
- def foreach[U](f: (PCAndInstruction) => U): Unit
- Definition Classes
- IterableOnceOps
- final def foreachInstruction[U](f: (Instruction) => U): Unit
Iterates over all instructions and calls the given function
f
for every instruction.Iterates over all instructions and calls the given function
f
for every instruction.- Annotations
- @inline()
- final def foreachPC[U](f: (PC) => U): Unit
Iterates over all instructions and calls the given function
f
for every instruction.Iterates over all instructions and calls the given function
f
for every instruction.- Annotations
- @inline()
- def foreachProgramCounter[U](f: (Int) => U): Unit
- final def foreachTypeAnnotation[U](f: (TypeAnnotation) => U): Unit
- Definition Classes
- CommonAttributes
- def fromSpecific(coll: IterableOnce[PCAndInstruction]): Iterable[PCAndInstruction]
- Attributes
- protected
- Definition Classes
- IterableFactoryDefaults → IterableOps
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def groupBy[K](f: (PCAndInstruction) => K): Map[K, Iterable[PCAndInstruction]]
- Definition Classes
- IterableOps
- def groupMap[K, B](key: (PCAndInstruction) => K)(f: (PCAndInstruction) => B): Map[K, Iterable[B]]
- Definition Classes
- IterableOps
- def groupMapReduce[K, B](key: (PCAndInstruction) => K)(f: (PCAndInstruction) => B)(reduce: (B, B) => B): Map[K, B]
- Definition Classes
- IterableOps
- def grouped(size: Int): Iterator[Iterable[PCAndInstruction]]
- Definition Classes
- IterableOps
- def handlerInstructionsFor(pc: Int): List[Int]
The list of pcs of those instructions that may handle an exception if the evaluation of the instruction with the given
pc
throws an exception.The list of pcs of those instructions that may handle an exception if the evaluation of the instruction with the given
pc
throws an exception.In case of multiple finally handlers only the first one will be returned and no further exception handlers will be returned. In case of identical caught exceptions only the first of them will be returned. No further checks (w.r.t. the type hierarchy) are done.
If different exceptions are handled by the same handler, the corresponding pc is returned multiple times.
- def handlersFor(pc: Int, justExceptions: Boolean = false): List[ExceptionHandler]
Returns a view of all handlers (exception and finally handlers) for the instruction with the given program counter (
pc
) that may catch an exception; as soon as a finally handler is found no further handlers will be returned!Returns a view of all handlers (exception and finally handlers) for the instruction with the given program counter (
pc
) that may catch an exception; as soon as a finally handler is found no further handlers will be returned!In case of multiple exception handlers that are identical (in particular in case of the finally handlers) only the first one is returned as that one is the one that will be used by the JVM at runtime. No further checks (w.r.t. the type hierarchy) are done.
- pc
The program counter of an instruction of this
Code
array.
- def handlersForException(pc: Int, exception: ObjectType)(implicit classHierarchy: ClassHierarchy = ClassHierarchy.PreInitializedClassHierarchy): List[ExceptionHandler]
Returns the handlers that may handle the given exception.
Returns the handlers that may handle the given exception.
The (known/given) type hierarchy is taken into account as well as the order between the exception handlers.
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def haveSameLineNumber(firstPC: Int, secondPC: Int): Option[Boolean]
Returns
Some(true)
if both pcs have the same line number.Returns
Some(true)
if both pcs have the same line number. If line number information is not availableNone
is returned. - def head: PCAndInstruction
- Definition Classes
- IterableOps
- def headOption: Option[PCAndInstruction]
- Definition Classes
- IterableOps
- def init: Iterable[PCAndInstruction]
- Definition Classes
- IterableOps
- def inits: Iterator[Iterable[PCAndInstruction]]
- Definition Classes
- IterableOps
- def instructionIterator: Iterator[Instruction]
- val instructions: Array[Instruction]
- Definition Classes
- Code → CodeSequence
- def instructionsCount: Int
Counts the number of instructions.
Counts the number of instructions.
- Note
The number of instructions is always smaller or equal to the size of the code array.
,This operation has complexity O(n).
- def instructionsOption: Some[Array[Instruction]]
- Definition Classes
- Code → InstructionsContainer
- def isEmpty: Boolean
- Definition Classes
- IterableOnceOps
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isModifiedByWide(pc: Int): Boolean
True if the instruction with the given program counter is modified by wide.
True if the instruction with the given program counter is modified by wide.
- pc
A valid index in the code array.
- Annotations
- @inline()
- def isTraversableAgain: Boolean
- Definition Classes
- IterableOps → IterableOnceOps
- def iterableFactory: IterableFactory[Iterable]
- Definition Classes
- Iterable → IterableOps
- final def iterate[U](instructionType: InstructionMetaInformation)(f: (Int, Instruction) => U): Unit
Iterates over all instructions with the given opcode and calls the given function
f
for every instruction.Iterates over all instructions with the given opcode and calls the given function
f
for every instruction.- Annotations
- @inline()
- final def iterate[U](f: (Int, Instruction) => U): Unit
Iterates over all instructions and calls the given function
f
for every instruction.Iterates over all instructions and calls the given function
f
for every instruction.- Annotations
- @inline()
- def iterator: Iterator[PCAndInstruction]
- Definition Classes
- Code → IterableOnce
- def kindId: Int
This attribute's kind id.
- def knownSize: Int
- Definition Classes
- IterableOnce
- def last: PCAndInstruction
- Definition Classes
- IterableOps
- def lastOption: Option[PCAndInstruction]
- Definition Classes
- IterableOps
- def lazyZip[B](that: Iterable[B]): LazyZip2[PCAndInstruction, B, Code.this.type]
- Definition Classes
- Iterable
- def lineNumber(pc: Int): Option[Int]
Returns the line number associated with the instruction with the given pc if it is available.
Returns the line number associated with the instruction with the given pc if it is available.
- pc
Index of the instruction for which we want to get the line number.
- returns
Some
line number orNone
if no line-number information is available.
- def lineNumberTable: Option[LineNumberTable]
Returns the line number table - if any.
Returns the line number table - if any.
- Note
A code attribute is allowed to have multiple line number tables. However, all tables are merged into one by OPAL at class loading time.
,Depending on the configuration of the reader for
ClassFile
s this attribute may not be reified.
- def liveVariables(predecessorPCs: Array[PCs], finalPCs: PCs, cfJoins: PCs): LiveVariables
Performs a live variable analysis restricted to a method's locals.
Performs a live variable analysis restricted to a method's locals.
- returns
For each instruction (identified by its pc) the set of variables (register values) which are live (identified by their index) is determined. I.e., if you need to know if the variable with the index 5 is (still) live at instruction j with pc 37 it is sufficient to test if the bit set stored at index 37 contains the value 5.
- def liveVariables(implicit classHierarchy: ClassHierarchy): LiveVariables
Computes for each instruction which variables are live; see
liveVariables(predecessorPCs: Array[PCs], finalPCs: PCs, cfJoins: BitSet)
for further details. - def localVariable(pc: Int, index: Int): Option[LocalVariable]
Returns the local variable stored at the given local variable index that is live at the given instruction (pc).
- def localVariableTable: Option[LocalVariables]
Collects (the merged if necessary) local variable table.
Collects (the merged if necessary) local variable table.
- Note
A code attribute is allowed to have multiple local variable tables. However, all tables are merged into one by OPAL at class loading time.
,Depending on the configuration of the reader for
ClassFile
s this attribute may not be reified.
- def localVariableTypeTable: Iterable[LocalVariableTypes]
Collects all local variable type tables.
Collects all local variable type tables.
- Note
Depending on the configuration of the reader for
ClassFile
s this attribute may not be reified.
- def localVariablesAt(pc: Int): Map[Int, LocalVariable]
Returns the set of local variables defined at the given pc base on debug information.
Returns the set of local variables defined at the given pc base on debug information.
- returns
A mapping of the index to the name of the local variable. The map is empty if no debug information is available.
- def map[B](f: (PCAndInstruction) => B): Iterable[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def matchPair(f: (Instruction, Instruction) => Boolean): List[Int]
Matches pairs of two consecutive instructions.
Matches pairs of two consecutive instructions. For each matched pair, the program counter of the first instruction is returned.
Example Usage
for { classFile <- project.view.map(_._1).par method @ MethodWithBody(body) <- classFile.methods pc <- body.matchPair({ case ( INVOKESPECIAL(receiver1, _, TheArgument(parameterType: BaseType)), INVOKEVIRTUAL(receiver2, name, NoArgumentMethodDescriptor(returnType: BaseType)) ) => { (receiver1 eq receiver2) && (returnType ne parameterType) } case _ => false }) } yield (classFile, method, pc)
- def matchTriple(matchMaxTriples: Int = Int.MaxValue, f: (Instruction, Instruction, Instruction) => Boolean): List[Int]
Finds a sequence of 3 consecutive instructions for which the given function returns
true
, and returns thePC
of the first instruction in each found sequence.Finds a sequence of 3 consecutive instructions for which the given function returns
true
, and returns thePC
of the first instruction in each found sequence.- matchMaxTriples
Is the maximum number of triples that is passed to
f
. E.g., ifmatchMaxTriples
is "1" only the first three instructions are passed tof
.
- def matchTriple(f: (Instruction, Instruction, Instruction) => Boolean): List[Int]
Finds all sequences of three consecutive instructions that are matched by
f
. - def max[B >: PCAndInstruction](implicit ord: Ordering[B]): PCAndInstruction
- Definition Classes
- IterableOnceOps
- def maxBy[B](f: (PCAndInstruction) => B)(implicit cmp: Ordering[B]): PCAndInstruction
- Definition Classes
- IterableOnceOps
- def maxByOption[B](f: (PCAndInstruction) => B)(implicit cmp: Ordering[B]): Option[PCAndInstruction]
- Definition Classes
- IterableOnceOps
- val maxLocals: Int
- def maxOption[B >: PCAndInstruction](implicit ord: Ordering[B]): Option[PCAndInstruction]
- Definition Classes
- IterableOnceOps
- val maxStack: Int
- def min[B >: PCAndInstruction](implicit ord: Ordering[B]): PCAndInstruction
- Definition Classes
- IterableOnceOps
- def minBy[B](f: (PCAndInstruction) => B)(implicit cmp: Ordering[B]): PCAndInstruction
- Definition Classes
- IterableOnceOps
- def minByOption[B](f: (PCAndInstruction) => B)(implicit cmp: Ordering[B]): Option[PCAndInstruction]
- Definition Classes
- IterableOnceOps
- def minOption[B >: PCAndInstruction](implicit ord: Ordering[B]): Option[PCAndInstruction]
- Definition Classes
- IterableOnceOps
- final def mkString: String
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- final def mkString(sep: String): String
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- final def mkString(start: String, sep: String, end: String): String
- Definition Classes
- IterableOnceOps
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def newSpecificBuilder: Builder[PCAndInstruction, Iterable[PCAndInstruction]]
- Attributes
- protected
- Definition Classes
- IterableFactoryDefaults → IterableOps
- def nextNonGotoInstruction(pc: Int): Int
Returns the next instruction that will be executed at runtime that is not a org.opalj.br.instructions.GotoInstruction.
Returns the next instruction that will be executed at runtime that is not a org.opalj.br.instructions.GotoInstruction. If the given instruction is not a org.opalj.br.instructions.GotoInstruction, the given instruction is returned.
- Annotations
- @tailrec()
- def nonEmpty: Boolean
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecatedOverriding()
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- def partition(p: (PCAndInstruction) => Boolean): (Iterable[PCAndInstruction], Iterable[PCAndInstruction])
- Definition Classes
- IterableOps
- def partitionMap[A1, A2](f: (PCAndInstruction) => Either[A1, A2]): (Iterable[A1], Iterable[A2])
- Definition Classes
- IterableOps
- final def pcOfNextInstruction(currentPC: Int): Int
Returns the program counter of the next instruction after the instruction with the given counter (
currentPC
).Returns the program counter of the next instruction after the instruction with the given counter (
currentPC
).- currentPC
The program counter of an instruction. If
currentPC
is the program counter of the last instruction of the code block then the returned program counter will be equivalent to the length of the Code/Instructions array.
- Definition Classes
- Code → CodeSequence
- Annotations
- @inline()
- final def pcOfPreviousInstruction(currentPC: Int): Int
Returns the program counter of the previous instruction in the code array.
Returns the program counter of the previous instruction in the code array.
currentPC
must be the program counter of an instruction.This function is only defined if currentPC is larger than 0; i.e., if there is a previous instruction! If currentPC is larger than
instructions.size
the behavior is undefined.- Definition Classes
- Code → CodeSequence
- Annotations
- @inline()
- def predecessorPCs(implicit classHierarchy: ClassHierarchy): (Array[PCs], PCs, PCs)
Computes for each instruction the set of predecessor instructions as well as all instructions without predecessors.
Computes for each instruction the set of predecessor instructions as well as all instructions without predecessors. Those instructions with multiple predecessors are also returned.
- returns
(1) An array which contains for each instruction the set of all predecessors, (2) the set of all instructions which have only predecessors; i.e., no successors and (3) the set of all instructions where multiple paths join. ´(Array[PCs]/*PREDECESSOR_PCs*/, PCs/*FINAL_PCs*/, PCs/*CF_JOINS*/)´. Note, that in case of completely broken code, set 2 may contain other instructions than
return
andathrow
instructions. If the code contains jsr/ret instructions, the full blown CFG is computed.
- def product[B >: PCAndInstruction](implicit num: Numeric[B]): B
- Definition Classes
- IterableOnceOps
- def programCounters: IntIterator
Returns an iterator to iterate over the program counters (
pcs
) of the instructions of thisCode
block.Returns an iterator to iterate over the program counters (
pcs
) of the instructions of thisCode
block.- See also
See the method foreach for an alternative.
- def reduce[B >: PCAndInstruction](op: (B, B) => B): B
- Definition Classes
- IterableOnceOps
- def reduceLeft[B >: PCAndInstruction](op: (B, PCAndInstruction) => B): B
- Definition Classes
- IterableOnceOps
- def reduceLeftOption[B >: PCAndInstruction](op: (B, PCAndInstruction) => B): Option[B]
- Definition Classes
- IterableOnceOps
- def reduceOption[B >: PCAndInstruction](op: (B, B) => B): Option[B]
- Definition Classes
- IterableOnceOps
- def reduceRight[B >: PCAndInstruction](op: (PCAndInstruction, B) => B): B
- Definition Classes
- IterableOnceOps
- def reduceRightOption[B >: PCAndInstruction](op: (PCAndInstruction, B) => B): Option[B]
- Definition Classes
- IterableOnceOps
- def reversed: Iterable[PCAndInstruction]
- Attributes
- protected
- Definition Classes
- IterableOnceOps
- def runtimeInvisibleTypeAnnotations: TypeAnnotations
- Definition Classes
- CommonAttributes
- def runtimeVisibleTypeAnnotations: TypeAnnotations
- Definition Classes
- CommonAttributes
- def scan[B >: PCAndInstruction](z: B)(op: (B, B) => B): Iterable[B]
- Definition Classes
- IterableOps
- def scanLeft[B](z: B)(op: (B, PCAndInstruction) => B): Iterable[B]
- Definition Classes
- IterableOps → IterableOnceOps
- def scanRight[B](z: B)(op: (PCAndInstruction, B) => B): Iterable[B]
- Definition Classes
- IterableOps
- def similar(other: Code, config: SimilarityTestConfiguration): Boolean
- def similar(other: Attribute, config: SimilarityTestConfiguration): Boolean
Returns true if this attribute and the given one are guaranteed to be indistinguishable at runtime.
- def size: Int
- Definition Classes
- IterableOnceOps
- def sizeCompare(that: Iterable[_]): Int
- Definition Classes
- IterableOps
- def sizeCompare(otherSize: Int): Int
- Definition Classes
- IterableOps
- final def sizeIs: SizeCompareOps
- Definition Classes
- IterableOps
- Annotations
- @inline()
- def slice(from: Int, until: Int): Iterable[PCAndInstruction]
- Definition Classes
- IterableOps → IterableOnceOps
- def sliding(size: Int, step: Int): Iterator[Iterable[PCAndInstruction]]
- Definition Classes
- IterableOps
- def sliding(size: Int): Iterator[Iterable[PCAndInstruction]]
- Definition Classes
- IterableOps
- def slidingCollect[B <: AnyRef](windowSize: Int)(f: PartialFunction[PCAndAnyRef[Queue[Instruction]], B]): List[B]
Slides over the code array and tries to apply the given function to each sequence of instructions consisting of
windowSize
elements.Slides over the code array and tries to apply the given function to each sequence of instructions consisting of
windowSize
elements.Scenario
If you want to search for specific patterns of bytecode instructions. Some "bug patterns" are directly related to specific bytecode sequences and these patterns can easily be identified using this method.
Example
Search for sequences of the bytecode instructions
PUTFIELD
andALOAD_O
in the method's body and return the list of program counters of the start of the identified sequences.code.slidingCollect(2)({ case (pc, Seq(PUTFIELD(_, _, _), ALOAD_0)) => (pc) }) should be(Seq(...))
- windowSize
The size of the sequence of instructions that is passed to the partial function. It must be larger than 0. **Do not use this method with windowSize "1"**; it is more efficient to use the
collect
orcollectWithIndex
methods instead.- returns
The list of results of applying the function f for each matching sequence.
- Note
If possible, use one of the more specialized methods, such as, collectPair. The pure iteration overhead caused by this method is roughly 10-20 times higher than this one.
- def span(p: (PCAndInstruction) => Boolean): (Iterable[PCAndInstruction], Iterable[PCAndInstruction])
- Definition Classes
- IterableOps → IterableOnceOps
- def splitAt(n: Int): (Iterable[PCAndInstruction], Iterable[PCAndInstruction])
- Definition Classes
- IterableOps → IterableOnceOps
- def stackDepthAt(atPC: Int, cfg: CFG[Instruction, Code]): Int
Computes the stack depth for the instruction with the given pc (
atPC
).Computes the stack depth for the instruction with the given pc (
atPC
). I.e, computes the stack depth before executing the instruction! This function is intended to be used if and only if the stack depth is only required for a single instruction; it recomputes the stack depth for all instructions whenever the function is called.- returns
the stack depth or -1 if the instruction is invalid/dead.
- Annotations
- @throws("if it is impossible to compute the maximum height of the stack")
- Note
If the CFG is already available, it should be passed as the computation is potentially the most expensive part.
- def stackDepthAt(atPC: Int, classHierarchy: ClassHierarchy = ClassHierarchy.PreInitializedClassHierarchy): Int
- Annotations
- @throws("if it is impossible to compute the maximum height of the stack")
- def stackMapTable: Option[StackMapTable]
The JVM specification mandates that a Code attribute has at most one StackMapTable attribute.
The JVM specification mandates that a Code attribute has at most one StackMapTable attribute.
- Note
Depending on the configuration of the reader for
ClassFile
s this attribute may not be reified.
- def stackMapTablePCs(implicit classHierarchy: ClassHierarchy): IntArraySet
Computes the set of PCs for which a stack map frame is required.
Computes the set of PCs for which a stack map frame is required. Calling this method (i.e., the generation of stack map tables in general) is only defined for Java > 5 code; i.e., cocde which does not use JSR/RET; therefore the behavior for Java 5 or earlier code is deliberately undefined.
- classHierarchy
The computation of the stack map table generally requires the presence of a complete type hierarchy.
- returns
The sorted set of PCs for which a stack map frame is required.
- def stepper[S <: Stepper[_]](implicit shape: StepperShape[PCAndInstruction, S]): S
- Definition Classes
- IterableOnce
- def stringPrefix: String
- Attributes
- protected[this]
- Definition Classes
- Iterable
- Annotations
- @deprecatedOverriding()
- def sum[B >: PCAndInstruction](implicit num: Numeric[B]): B
- Definition Classes
- IterableOnceOps
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def tail: Iterable[PCAndInstruction]
- Definition Classes
- IterableOps
- def tails: Iterator[Iterable[PCAndInstruction]]
- Definition Classes
- IterableOps
- def take(n: Int): Iterable[PCAndInstruction]
- Definition Classes
- IterableOps → IterableOnceOps
- def takeRight(n: Int): Iterable[PCAndInstruction]
- Definition Classes
- IterableOps
- def takeWhile(p: (PCAndInstruction) => Boolean): Iterable[PCAndInstruction]
- Definition Classes
- IterableOps → IterableOnceOps
- def tapEach[U](f: (PCAndInstruction) => U): Iterable[PCAndInstruction]
- Definition Classes
- IterableOps → IterableOnceOps
- def to[C1](factory: Factory[PCAndInstruction, C1]): C1
- Definition Classes
- IterableOnceOps
- def toArray[B >: PCAndInstruction](implicit arg0: ClassTag[B]): Array[B]
- Definition Classes
- IterableOnceOps
- final def toBuffer[B >: PCAndInstruction]: Buffer[B]
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- def toIndexedSeq: IndexedSeq[PCAndInstruction]
- Definition Classes
- IterableOnceOps
- def toList: List[PCAndInstruction]
- Definition Classes
- IterableOnceOps
- def toMap[K, V](implicit ev: <:<[PCAndInstruction, (K, V)]): Map[K, V]
- Definition Classes
- IterableOnceOps
- def toSeq: Seq[PCAndInstruction]
- Definition Classes
- IterableOnceOps
- def toSet[B >: PCAndInstruction]: Set[B]
- Definition Classes
- IterableOnceOps
- def toString(): String
A complete representation of this code attribute (including instructions, attributes, etc.).
A complete representation of this code attribute (including instructions, attributes, etc.).
- Definition Classes
- Code → Iterable → AnyRef → Any
- def toVector: Vector[PCAndInstruction]
- Definition Classes
- IterableOnceOps
- def transpose[B](implicit asIterable: (PCAndInstruction) => Iterable[B]): Iterable[Iterable[B]]
- Definition Classes
- IterableOps
- def unzip[A1, A2](implicit asPair: (PCAndInstruction) => (A1, A2)): (Iterable[A1], Iterable[A2])
- Definition Classes
- IterableOps
- def unzip3[A1, A2, A3](implicit asTriple: (PCAndInstruction) => (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
- Definition Classes
- IterableOps
- def view: View[PCAndInstruction]
- Definition Classes
- IterableOps
- 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])
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def withFilter(p: (PCAndInstruction) => Boolean): WithFilter[PCAndInstruction, Iterable]
- Definition Classes
- IterableOps
- def zip[B](that: IterableOnce[B]): Iterable[(PCAndInstruction, B)]
- Definition Classes
- IterableOps
- def zipAll[A1 >: PCAndInstruction, B](that: Iterable[B], thisElem: A1, thatElem: B): Iterable[(A1, B)]
- Definition Classes
- IterableOps
- def zipWithIndex: Iterable[(PCAndInstruction, Int)]
- Definition Classes
- IterableOps → IterableOnceOps
Deprecated Value Members
- def ++:[B >: PCAndInstruction](that: IterableOnce[B]): Iterable[B]
- Definition Classes
- IterableOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable
- final def /:[B](z: B)(op: (B, PCAndInstruction) => B): B
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use foldLeft instead of /:
- final def :\[B](z: B)(op: (PCAndInstruction, B) => B): B
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use foldRight instead of :\
- def aggregate[B](z: => B)(seqop: (B, PCAndInstruction) => B, combop: (B, B) => B): B
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0)
aggregate
is not relevant for sequential collections. UsefoldLeft(z)(seqop)
instead.
- def companion: IterableFactory[Iterable]
- Definition Classes
- IterableOps
- Annotations
- @deprecated @deprecatedOverriding() @inline()
- Deprecated
(Since version 2.13.0) Use iterableFactory instead
- final def copyToBuffer[B >: PCAndInstruction](dest: Buffer[B]): Unit
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use
dest ++= coll
instead
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
- def hasDefiniteSize: Boolean
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)
- final def repr: Iterable[PCAndInstruction]
- Definition Classes
- IterableOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside
- def seq: Code.this.type
- Definition Classes
- Iterable
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Iterable.seq always returns the iterable itself
- final def toIterable: Code.this.type
- Definition Classes
- Iterable → IterableOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.7) toIterable is internal and will be made protected; its name is similar to
toList
ortoSeq
, but it doesn't copy non-immutable collections
- final def toIterator: Iterator[PCAndInstruction]
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator instead of .toIterator
- final def toStream: Stream[PCAndInstruction]
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .to(LazyList) instead of .toStream
- final def toTraversable: Traversable[PCAndInstruction]
- Definition Classes
- IterableOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) toTraversable is internal and will be made protected; its name is similar to
toList
ortoSeq
, but it doesn't copy non-immutable collections
- def view(from: Int, until: Int): View[PCAndInstruction]
- Definition Classes
- IterableOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)