Packages

final case class Callee(callee: MethodNode, calleeDeclarationClass: ClassBType, isStaticallyResolved: Boolean, sourceFilePath: Option[String], annotatedInline: Boolean, annotatedNoInline: Boolean, samParamTypes: IntMap[ClassBType], calleeInfoWarning: Option[CalleeInfoWarning]) extends Product with Serializable

A callee in the call graph.

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.

calleeDeclarationClass

The class in which the callee is declared

isStaticallyResolved

True if the callee cannot be overridden

annotatedInline

True if the callee is annotated @inline

annotatedNoInline

True if the callee is annotated @noinline

samParamTypes

A map from parameter positions to SAM parameter types

calleeInfoWarning

An inliner warning if some information was not available while gathering the information about this callee.

Source
CallGraph.scala
Linear Supertypes
Serializable, java.io.Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Callee
  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 Callee(callee: MethodNode, calleeDeclarationClass: ClassBType, isStaticallyResolved: Boolean, sourceFilePath: Option[String], annotatedInline: Boolean, annotatedNoInline: Boolean, samParamTypes: IntMap[ClassBType], calleeInfoWarning: Option[CalleeInfoWarning])

    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.

    calleeDeclarationClass

    The class in which the callee is declared

    isStaticallyResolved

    True if the callee cannot be overridden

    annotatedInline

    True if the callee is annotated @inline

    annotatedNoInline

    True if the callee is annotated @noinline

    samParamTypes

    A map from parameter positions to SAM parameter types

    calleeInfoWarning

    An inliner warning if some information was not available while gathering the information about this callee.

Value Members

  1. val annotatedInline: Boolean
  2. val annotatedNoInline: Boolean
  3. val callee: MethodNode
  4. val calleeDeclarationClass: ClassBType
  5. val calleeInfoWarning: Option[CalleeInfoWarning]
  6. def canInlineFromSource: Boolean
  7. def isAbstract: Boolean
  8. def isSpecialMethod: Boolean
  9. val isStaticallyResolved: Boolean
  10. def safeToInline: Boolean
  11. val samParamTypes: IntMap[ClassBType]
  12. val sourceFilePath: Option[String]
  13. def toString(): String
    Definition Classes
    Callee → AnyRef → Any