Packages

final case class Callsite(callsiteInstruction: MethodInsnNode, callsiteMethod: MethodNode, callsiteClass: ClassBType, callee: Either[OptimizerWarning, Callee], argInfos: IntMap[ArgInfo], callsiteStackHeight: Int, receiverKnownNotNull: Boolean, callsitePosition: Position, annotatedInline: Boolean, annotatedNoInline: Boolean) extends Product with Serializable

A callsite in the call graph.

callsiteInstruction

The invocation instruction

callsiteMethod

The method containing the callsite

callsiteClass

The class containing the callsite

callee

The callee, as it appears in the invocation instruction. For virtual calls, an override of the callee might be invoked. Also, the callee can be abstract. Contains a warning message if the callee MethodNode cannot be found in the bytecode repository.

argInfos

Information about the invocation receiver and arguments

callsiteStackHeight

The stack height at the callsite, required by the inliner

callsitePosition

The source position of the callsite, used for inliner warnings.

Source
CallGraph.scala
Linear Supertypes
Serializable, java.io.Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Callsite
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Callsite(callsiteInstruction: MethodInsnNode, callsiteMethod: MethodNode, callsiteClass: ClassBType, callee: Either[OptimizerWarning, Callee], argInfos: IntMap[ArgInfo], callsiteStackHeight: Int, receiverKnownNotNull: Boolean, callsitePosition: Position, annotatedInline: Boolean, annotatedNoInline: Boolean)

    callsiteInstruction

    The invocation instruction

    callsiteMethod

    The method containing the callsite

    callsiteClass

    The class containing the callsite

    callee

    The callee, as it appears in the invocation instruction. For virtual calls, an override of the callee might be invoked. Also, the callee can be abstract. Contains a warning message if the callee MethodNode cannot be found in the bytecode repository.

    argInfos

    Information about the invocation receiver and arguments

    callsiteStackHeight

    The stack height at the callsite, required by the inliner

    callsitePosition

    The source position of the callsite, used for inliner warnings.

Value Members

  1. val annotatedInline: Boolean
  2. val annotatedNoInline: Boolean
  3. val argInfos: IntMap[ArgInfo]
  4. val callee: Either[OptimizerWarning, Callee]
  5. val callsiteClass: ClassBType
  6. val callsiteInstruction: MethodInsnNode
  7. val callsiteMethod: MethodNode
  8. val callsitePosition: Position
  9. val callsiteStackHeight: Int
  10. val inlinedClones: Set[ClonedCallsite]

    Contains callsites that were created during inlining by cloning this callsite.

    Contains callsites that were created during inlining by cloning this callsite. Used to find corresponding callsites when inlining post-inline requests.

  11. def isInlineAnnotated: Boolean
  12. def isNoInlineAnnotated: Boolean
  13. val receiverKnownNotNull: Boolean
  14. def toString(): String
    Definition Classes
    Callsite → AnyRef → Any