Trait

sigmastate.eval

IRContext

Related Doc: package eval

Permalink

trait IRContext extends Scalan with TreeBuilding with GraphBuilding

Main interface of graph IR context which contain both GraphBuilding and TreeBuilding methods. It is not used in v5.0 interpreter and thus not part of consensus.

See also

RuntimeIRContext, CompiletimeIRContext

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IRContext
  2. GraphBuilding
  3. TreeBuilding
  4. SigmaLibrary
  5. SigmaDslModule
  6. SigmaDslDefs
  7. SigmaDsl
  8. WrappersModule
  9. Library
  10. CollsModule
  11. CollsDefs
  12. Colls
  13. WrappersModule
  14. WRTypesModule
  15. WRTypesDefs
  16. WRTypes
  17. WOptionsModule
  18. WOptionsDefs
  19. WOptions
  20. WSpecialPredefsModule
  21. WSpecialPredefsDefs
  22. WSpecialPredefs
  23. Scalan
  24. DefRewriting
  25. Modules
  26. Entities
  27. Thunks
  28. IfThenElse
  29. Functions
  30. ProgramGraphs
  31. AstGraphs
  32. Transforming
  33. UniversalOps
  34. Equal
  35. OrderingOps
  36. LogicalOps
  37. UnBinOps
  38. NumericOps
  39. Tuples
  40. MethodCalls
  41. GraphVizExport
  42. TypeDescs
  43. Base
  44. AnyRef
  45. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait AnyValue extends scalan.SigmaLibrary.Node with scalan.SigmaLibrary.Def[scalan.SigmaLibrary.AnyValue]

    Permalink
    Definition Classes
    SigmaDsl
    Annotations
    @Liftable() @WithMethodCallRecognizers()
  2. trait AnyValueCompanion extends AnyRef

    Permalink
    Definition Classes
    SigmaDsl
  3. case class Apply[A, B](f: Scalan.Ref[(A) ⇒ B], arg: Scalan.Ref[A], mayInline: Boolean = true) extends Scalan.Node with Scalan.Def[B] with Product with Serializable

    Permalink
    Definition Classes
    Functions
  4. case class ApplyBinOp[A, R](op: Scalan.BinOp[A, R], lhs: Scalan.Ref[A], rhs: Scalan.Ref[A]) extends Scalan.BaseDef[R] with Product with Serializable

    Permalink

    Graph node which represents application of the given binary operation to the given arguments.

    Graph node which represents application of the given binary operation to the given arguments.

    Definition Classes
    UnBinOps
  5. case class ApplyBinOpLazy[A, R](op: Scalan.BinOp[A, R], lhs: Scalan.Ref[A], rhs: Scalan.Ref[Scalan.Thunk[A]]) extends Scalan.BaseDef[R] with Product with Serializable

    Permalink

    Graph node which represents application of the given binary operation to the given arguments where the second argument is lazy.

    Graph node which represents application of the given binary operation to the given arguments where the second argument is lazy.

    Definition Classes
    UnBinOps
  6. case class ApplyUnOp[A, R](op: Scalan.UnOp[A, R], arg: Scalan.Ref[A]) extends Scalan.BaseDef[R] with Product with Serializable

    Permalink

    Graph node which represents application of the given unary operation to the given argument.

    Graph node which represents application of the given unary operation to the given argument.

    Definition Classes
    UnBinOps
  7. abstract class AstGraph extends Scalan.Node

    Permalink

    Base class for all compound nodes with schedule (e.g.

    Base class for all compound nodes with schedule (e.g. Lambda, ThunkDef). The graph is directed acyclic (i.e. DAG) in which edges go from boundVars down to roots.

    Definition Classes
    AstGraphs
  8. trait AvlTree extends scalan.SigmaLibrary.Node with scalan.SigmaLibrary.Def[scalan.SigmaLibrary.AvlTree]

    Permalink
    Definition Classes
    SigmaDsl
    Annotations
    @Liftable()
  9. trait AvlTreeCompanion extends AnyRef

    Permalink
    Definition Classes
    SigmaDsl
  10. abstract class BaseDef[+T] extends Scalan.Node with Scalan.Def[T]

    Permalink

    Base class for most predefined operations.

    Base class for most predefined operations.

    Definition Classes
    Base
  11. abstract class BaseElem[A] extends Scalan.Elem[A] with Serializable with Equals

    Permalink
    Definition Classes
    TypeDescs
  12. class BaseElemLiftable[A] extends Scalan.BaseElem[A]

    Permalink

    Type descriptor for primitive types.

    Type descriptor for primitive types. There is implicit val declaration for each primitive type.

    Definition Classes
    TypeDescs
  13. trait BigInt extends scalan.SigmaLibrary.Node with scalan.SigmaLibrary.Def[scalan.SigmaLibrary.BigInt]

    Permalink
    Definition Classes
    SigmaDsl
    Annotations
    @Liftable() @WithMethodCallRecognizers()
  14. trait BigIntCompanion extends AnyRef

    Permalink
    Definition Classes
    SigmaDsl
  15. abstract class BinOp[A, R] extends AnyRef

    Permalink

    Base class for descriptors of binary operations.

    Base class for descriptors of binary operations.

    Definition Classes
    UnBinOps
  16. trait Box extends scalan.SigmaLibrary.Node with scalan.SigmaLibrary.Def[scalan.SigmaLibrary.Box]

    Permalink
    Definition Classes
    SigmaDsl
    Annotations
    @Liftable() @WithMethodCallRecognizers()
  17. trait BoxCompanion extends AnyRef

    Permalink
    Definition Classes
    SigmaDsl
  18. trait Coll[A] extends scalan.Library.Node with scalan.Library.Def[scalan.Library.Coll[A]]

    Permalink
    Definition Classes
    Colls
    Annotations
    @ContainerType() @FunctorType() @Liftable() @WithMethodCallRecognizers()
  19. trait CollBuilder extends scalan.Library.Node with scalan.Library.Def[scalan.Library.CollBuilder]

    Permalink
    Definition Classes
    Colls
    Annotations
    @Liftable() @WithMethodCallRecognizers()
  20. trait CollBuilderCompanion extends AnyRef

    Permalink
    Definition Classes
    Colls
  21. trait CollCompanion extends AnyRef

    Permalink
    Definition Classes
    Colls
  22. abstract class CompanionDef[T] extends Scalan.Node with Scalan.Def[T]

    Permalink

    Base class for virtualized instances of type companions.

    Base class for virtualized instances of type companions. Each virtualized entity type (trait or class) may have virtualized companion class.

    Definition Classes
    Base
  23. abstract class CompanionElem[T] extends Scalan.Elem[T]

    Permalink

    Base class for all descriptors of staged companions

    Base class for all descriptors of staged companions

    Definition Classes
    Entities
  24. type CompilingEnv = Map[Any, Ref[_]]

    Permalink

    Type of the mapping between variable names (see Ident) or definition ids (see ValDef) and graph nodes.

    Type of the mapping between variable names (see Ident) or definition ids (see ValDef) and graph nodes. Thus, the key is either String or Int. Used in buildNode method.

    Attributes
    protected
    Definition Classes
    GraphBuilding
  25. trait ConcreteElem[TData, TClass] extends Scalan.EntityElem[TClass]

    Permalink

    Base class for all descriptors of staged classes.

    Base class for all descriptors of staged classes.

    Definition Classes
    Entities
  26. trait ConcreteElem1[A, TData, TClass, C[_]] extends Scalan.EntityElem1[A, TClass, C]

    Permalink

    Base class for all descriptors of staged classes with one type parameter.

    Base class for all descriptors of staged classes with one type parameter. Note, it doesn't inherit from ConcreteElem

    Definition Classes
    Entities
  27. case class Const[T](x: T)(implicit eT: Scalan.Elem[T]) extends Scalan.BaseDef[T] with Product with Serializable

    Permalink

    Default node type for embedding of literal values to graph IR.

    Default node type for embedding of literal values to graph IR. This can be used or those types T when Elem[T] is defined, but Liftable[_,T] is not, i.e. for non-liftable types.

    x

    literal value

    eT

    type descriptor of IR type T

    Definition Classes
    Base
  28. abstract class Cont[F[_]] extends Scalan.TypeDesc

    Permalink

    Descriptor of type constructor of * -> * kind.

    Descriptor of type constructor of * -> * kind. Type constructor is not a type, but rather a function from type to type. It contains methods which abstract relationship between types T, F[T] etc.

    Definition Classes
    TypeDescs
    Annotations
    @implicitNotFound( "No Cont available for ${F}." )
  29. trait Context extends scalan.SigmaLibrary.Node with scalan.SigmaLibrary.Def[scalan.SigmaLibrary.Context]

    Permalink
    Definition Classes
    SigmaDsl
    Annotations
    @Liftable() @WithMethodCallRecognizers()
  30. trait ContextCompanion extends AnyRef

    Permalink
    Definition Classes
    SigmaDsl
  31. case class Convert[From, To](eFrom: Scalan.Elem[From], eTo: Scalan.Elem[To], x: Scalan.Ref[Scalan.Def[_]], conv: Scalan.Ref[(From) ⇒ To]) extends Scalan.BaseDef[To] with Product with Serializable

    Permalink
    Definition Classes
    UniversalOps
  32. trait CostModelCompanion extends AnyRef

    Permalink
    Definition Classes
    SigmaDsl
  33. type DataEnv = Map[Sym, AnyRef]

    Permalink

    Immutable data environment used to assign data values to graph nodes.

    Immutable data environment used to assign data values to graph nodes.

    Definition Classes
    TypeDescs
  34. trait Def[+T] extends Scalan.Node

    Permalink

    Base type for all graph nodes (aka computable value definitions).

    Base type for all graph nodes (aka computable value definitions). Each graph node or definition represent one operation node of the data flow graph.

    Definition Classes
    Base
  35. type DefEnv = Map[Sym, (Int, SType)]

    Permalink

    Describes assignment of valIds for symbols which become ValDefs.

    Describes assignment of valIds for symbols which become ValDefs. Each ValDef in current scope have entry in this map

    Definition Classes
    TreeBuilding
  36. class DefaultPass extends Scalan.Pass

    Permalink

    Default pass to be used when IR is used without special compiler configuration.

    Default pass to be used when IR is used without special compiler configuration.

    Definition Classes
    Transforming
  37. abstract class DivOp[T] extends Scalan.EndoBinOp[T]

    Permalink

    Base class for descriptors of binary division operations.

    Base class for descriptors of binary division operations.

    Definition Classes
    NumericOps
  38. case class Downcast[From, To](input: Scalan.Ref[From], eTo: Scalan.Elem[To]) extends Scalan.BaseDef[To] with Product with Serializable

    Permalink
    Definition Classes
    UniversalOps
  39. abstract class Elem[A] extends Scalan.TypeDesc

    Permalink

    Type descriptor of staged types, which correspond to source (unstaged) RTypes defined outside of IR cake.

    Type descriptor of staged types, which correspond to source (unstaged) RTypes defined outside of IR cake.

    A

    the type represented by this descriptor

    Definition Classes
    TypeDescs
    Annotations
    @implicitNotFound( "No Elem available for ${A}." )
  40. class ElemCacheEntry extends AnyRef

    Permalink

    Elements cache information for each Elem class.

    Elements cache information for each Elem class.

    Definition Classes
    TypeDescs
  41. class ElseIfBranch[T] extends AnyRef

    Permalink

    Defines syntax available after IF (cond) THEN thenp ELSEIF (cond1)

    Defines syntax available after IF (cond) THEN thenp ELSEIF (cond1)

    Definition Classes
    IfThenElse
  42. type EndoBinOp[A] = BinOp[A, A]

    Permalink
    Definition Classes
    UnBinOps
  43. type EndoUnOp[A] = UnOp[A, A]

    Permalink
    Definition Classes
    UnBinOps
  44. abstract class EntityElem[A] extends Scalan.Elem[A] with Equals

    Permalink

    Base class for all descriptors of staged traits.

    Base class for all descriptors of staged traits. See derived classes in impl packages.

    Definition Classes
    Entities
  45. abstract class EntityElem1[A, To, C[_]] extends Scalan.EntityElem[To]

    Permalink

    Base class for all descriptors of staged traits with one type parameter.

    Base class for all descriptors of staged traits with one type parameter.

    Definition Classes
    Entities
  46. class EntityObject extends AnyRef

    Permalink

    Base class for all objects generated for virtualized types to support staged evaluation machinery.

    Base class for all objects generated for virtualized types to support staged evaluation machinery. Each object contains definitions which can be imported when necessary. All that objects are registered in entityObjects hash map, which is done while IR cake is constructed.

    Definition Classes
    Base
  47. case class EntityObjectOwner(obj: Scalan.EntityObject) extends Scalan.OwnerKind with Product with Serializable

    Permalink
    Definition Classes
    Base
  48. case class EnvRep[A](run: (Scalan.DataEnv) ⇒ (Scalan.DataEnv, Scalan.Ref[A])) extends Product with Serializable

    Permalink

    State monad for symbols computed in a data environment.

    State monad for symbols computed in a data environment. DataEnv is used as the state of the state monad.

    Definition Classes
    TypeDescs
  49. implicit class EqualOps[A] extends AnyRef

    Permalink

    Extension methods to construct ApplyBinOp nodes

    Extension methods to construct ApplyBinOp nodes

    Definition Classes
    Equal
  50. case class Equals[A]()(implicit evidence$1: Scalan.Elem[A]) extends Scalan.BinOp[A, Boolean] with Product with Serializable

    Permalink

    Binary operation representing structural equality between arguments.

    Binary operation representing structural equality between arguments.

    Definition Classes
    Equal
  51. case class First[A, B](pair: Scalan.Ref[(A, B)]) extends Scalan.Node with Scalan.Def[A] with Product with Serializable

    Permalink
    Definition Classes
    Tuples
  52. case class FuncElem[A, B](eDom: Scalan.Elem[A], eRange: Scalan.Elem[B]) extends Scalan.Elem[(A) ⇒ B] with Product with Serializable

    Permalink

    Type descriptor for A => B type where descriptors for A and B are given as arguments.

    Type descriptor for A => B type where descriptors for A and B are given as arguments.

    Definition Classes
    TypeDescs
  53. implicit class FuncExtensions[A, B] extends AnyRef

    Permalink
    Definition Classes
    Functions
  54. trait Functor[F[_]] extends Scalan.Cont[F]

    Permalink
    Definition Classes
    TypeDescs
  55. case class GraphFile(file: File, fileType: String) extends Product with Serializable

    Permalink
    Definition Classes
    GraphVizExport
  56. case class GraphNode(sym: Scalan.Sym, usages: Buffer[Int]) extends Product with Serializable

    Permalink

    GraphNode is created for each symbol of the AstGraph and represents graph linking structure

    GraphNode is created for each symbol of the AstGraph and represents graph linking structure

    Definition Classes
    AstGraphs
  57. trait GroupElement extends scalan.SigmaLibrary.Node with scalan.SigmaLibrary.Def[scalan.SigmaLibrary.GroupElement]

    Permalink
    Definition Classes
    SigmaDsl
    Annotations
    @Liftable() @WithMethodCallRecognizers()
  58. trait GroupElementCompanion extends AnyRef

    Permalink
    Definition Classes
    SigmaDsl
  59. case class HashCode[A]() extends Scalan.UnOp[A, Int] with Product with Serializable

    Permalink
    Definition Classes
    UniversalOps
  60. trait Header extends scalan.SigmaLibrary.Node with scalan.SigmaLibrary.Def[scalan.SigmaLibrary.Header]

    Permalink
    Definition Classes
    SigmaDsl
    Annotations
    @Liftable()
  61. trait HeaderCompanion extends AnyRef

    Permalink
    Definition Classes
    SigmaDsl
  62. class IfBranch extends AnyRef

    Permalink

    Defines syntax available after IF (cond)

    Defines syntax available after IF (cond)

    Definition Classes
    IfThenElse
  63. case class IfThenElseLazy[T](cond: Scalan.Ref[Boolean], thenp: Scalan.Ref[Scalan.Thunk[T]], elsep: Scalan.Ref[Scalan.Thunk[T]]) extends Scalan.Node with Scalan.Def[T] with Product with Serializable

    Permalink

    IR node to represent IF condition with lazy branches.

    IR node to represent IF condition with lazy branches.

    Definition Classes
    IfThenElse
  64. case class IntegralDivide[T](i: ExactIntegral[T])(implicit elem: Scalan.Elem[T]) extends Scalan.DivOp[T] with Product with Serializable

    Permalink

    Descriptor of binary / operation (integral division).

    Descriptor of binary / operation (integral division).

    Definition Classes
    NumericOps
  65. case class IntegralMod[T](i: ExactIntegral[T])(implicit elem: Scalan.Elem[T]) extends Scalan.DivOp[T] with Product with Serializable

    Permalink

    Descriptor of binary % operation (remainder of integral division).

    Descriptor of binary % operation (remainder of integral division).

    Definition Classes
    NumericOps
  66. implicit class IntegralOpsCls[T] extends AnyRef

    Permalink

    Extension methods over Ref[T] where T is instance of ExactIntegral type-class.

    Extension methods over Ref[T] where T is instance of ExactIntegral type-class.

    Definition Classes
    NumericOps
  67. case class InvokeFailure(exception: Throwable) extends Scalan.InvokeResult with Product with Serializable

    Permalink

    Exception thrown during MethodCall invocation.

    Exception thrown during MethodCall invocation.

    Definition Classes
    MethodCalls
  68. sealed abstract class InvokeResult extends AnyRef

    Permalink

    Result of MethodCall invocation.

    Result of MethodCall invocation.

    Definition Classes
    MethodCalls
    See also

    tryInvoke

  69. case class InvokeSuccess(result: Scalan.Ref[_]) extends Scalan.InvokeResult with Product with Serializable

    Permalink

    Successful MethodCall invocation with the given result.

    Successful MethodCall invocation with the given result.

    Definition Classes
    MethodCalls
  70. type LElem[A] = Lazy[Elem[A]]

    Permalink

    Type descriptor which is computed lazily on demand.

    Type descriptor which is computed lazily on demand.

    Definition Classes
    TypeDescs
  71. class Lambda[A, B] extends Scalan.AstGraph with Scalan.Def[(A) ⇒ B]

    Permalink

    Represent lambda expression as IR node.

    Represent lambda expression as IR node.

    Definition Classes
    Functions
  72. type LambdaData[A, B] = (Lambda[A, B], Nullable[(Ref[A]) ⇒ Ref[B]], Ref[A], Ref[B])

    Permalink
    Definition Classes
    Functions
  73. implicit class LambdaOps[A, B] extends AnyRef

    Permalink
    Definition Classes
    Functions
  74. class LambdaStack extends AnyRef

    Permalink
    Definition Classes
    Functions
  75. type LazyRep[T] = MutableLazy[Ref[T]]

    Permalink
    Definition Classes
    Library
  76. case class LiftableThunk[ST, T](lT: Base.Liftables.Liftable[ST, T]) extends Base.Liftables.Liftable[Scalan.SThunk[ST], Scalan.Thunk[T]] with Product with Serializable

    Permalink

    Implementation of Liftable type class for Thunk[T] given liftable for T.

    Implementation of Liftable type class for Thunk[T] given liftable for T.

    Definition Classes
    Thunks
  77. implicit class ListOps[A, B] extends AnyRef

    Permalink
    Definition Classes
    Tuples
  78. case class MapTransformer(subst: HashMap[Scalan.Sym, Scalan.Sym]) extends Scalan.Transformer with Product with Serializable

    Permalink

    Concrete and default implementation of Transformer using underlying HashMap.

    Concrete and default implementation of Transformer using underlying HashMap. HOTSPOT: don't beatify the code

    Definition Classes
    Transforming
  79. case class MethodCall extends Scalan.Node with Scalan.Def[Any] with Product with Serializable

    Permalink

    Graph node to represent invocation of the method of some class.

    Graph node to represent invocation of the method of some class.

    Definition Classes
    MethodCalls
  80. sealed abstract class MethodDesc extends AnyRef

    Permalink
    Definition Classes
    TypeDescs
  81. abstract class Mirror extends AnyRef

    Permalink

    Base class for mirrors of graph nodes.

    Base class for mirrors of graph nodes. Provides default implementations which can be overriden if special logic is required. HOTSPOT: don't beautify the code

    Definition Classes
    Transforming
  82. case class NewObject[A](eA: Scalan.Elem[A], args: Seq[Any]) extends Scalan.BaseDef[A] with Product with Serializable

    Permalink

    Represents invocation of constructor of the class described by eA.

    Represents invocation of constructor of the class described by eA.

    eA

    class descriptor for new instance

    args

    arguments of class constructor

    Definition Classes
    MethodCalls
  83. abstract class Node extends Product

    Permalink

    Base class for all IR nodes/operations/definitions.

    Base class for all IR nodes/operations/definitions.

    Definition Classes
    Base
  84. case class NotEquals[A]()(implicit evidence$2: Scalan.Elem[A]) extends Scalan.BinOp[A, Boolean] with Product with Serializable

    Permalink

    Binary operation representing structural inequality between arguments.

    Binary operation representing structural inequality between arguments.

    Definition Classes
    Equal
  85. class NotImplementedStagingException extends Scalan.StagingException

    Permalink
    Definition Classes
    Base
  86. case class NumericMinus[T](n: ExactNumeric[T])(implicit evidence$4: Scalan.Elem[T]) extends Scalan.EndoBinOp[T] with Product with Serializable

    Permalink

    Descriptor of binary - operation.

    Descriptor of binary - operation.

    Definition Classes
    NumericOps
  87. case class NumericNegate[T](n: ExactNumeric[T])(implicit evidence$7: Scalan.Elem[T]) extends Scalan.UnOp[T, T] with Product with Serializable

    Permalink

    Descriptor of unary - operation.

    Descriptor of unary - operation.

    Definition Classes
    NumericOps
  88. implicit class NumericOpsCls[T] extends AnyRef

    Permalink

    Extension methods over Ref[T] where T is instance of ExactNumeric type-class.

    Extension methods over Ref[T] where T is instance of ExactNumeric type-class.

    Definition Classes
    NumericOps
  89. case class NumericPlus[T](n: ExactNumeric[T])(implicit evidence$3: Scalan.Elem[T]) extends Scalan.EndoBinOp[T] with Product with Serializable

    Permalink

    Descriptor of binary + operation.

    Descriptor of binary + operation.

    Definition Classes
    NumericOps
  90. case class NumericTimes[T](n: ExactNumeric[T])(implicit evidence$5: Scalan.Elem[T]) extends Scalan.EndoBinOp[T] with Product with Serializable

    Permalink

    Descriptor of binary * operation.

    Descriptor of binary * operation.

    Definition Classes
    NumericOps
  91. case class NumericToInt[T](n: ExactNumeric[T]) extends Scalan.UnOp[T, Int] with Product with Serializable

    Permalink

    Descriptor of unary ToInt conversion operation.

    Descriptor of unary ToInt conversion operation.

    Definition Classes
    NumericOps
  92. case class NumericToLong[T](n: ExactNumeric[T]) extends Scalan.UnOp[T, Long] with Product with Serializable

    Permalink

    Descriptor of unary ToLong conversion operation.

    Descriptor of unary ToLong conversion operation.

    Definition Classes
    NumericOps
  93. case class OpCost(lambdaVar: Scalan.Sym, costedValueId: Int, args: Seq[Scalan.Ref[Int]], opCost: Scalan.Ref[Int]) extends Scalan.BaseDef[Int] with Product with Serializable

    Permalink

    Special graph node to represent accumulation of the operation costs.

    Special graph node to represent accumulation of the operation costs. In general, due to node sharing it is incorrect to just sum up all the args costs and add resCost to that value. Example:
    val x = .. val y = op1(x) val z = op2(x) val res = op3(y, z) The naive summation will lead to the cost of x is accumulated both into cost of y and into cost of z, so in the cost of res it is accumulated twice. To avoid this problem OpCost nodes require special handling in during evaluation.

    lambdaVar

    the variable of the lambda in which scope this node is created. This makes this node belong to the lambda body, even if it doesn't otherwise depend on lambda argument.

    costedValueId

    The id of the node for which this node represents cost

    args

    costs of the arguments, which are here represent dependency information.

    opCost

    operation cost, which should be added to the current scope accumulated cost

    Definition Classes
    UniversalOps
  94. case class OrderingCompare[T](ord: ExactOrdering[T]) extends Scalan.BinOp[T, Int] with Product with Serializable

    Permalink

    Descriptor of binary compare operation.

    Descriptor of binary compare operation.

    Definition Classes
    OrderingOps
  95. case class OrderingGT[T](ord: ExactOrdering[T]) extends Scalan.BinOp[T, Boolean] with Product with Serializable

    Permalink

    Descriptor of binary > operation.

    Descriptor of binary > operation.

    Definition Classes
    OrderingOps
  96. case class OrderingGTEQ[T](ord: ExactOrdering[T]) extends Scalan.BinOp[T, Boolean] with Product with Serializable

    Permalink

    Descriptor of binary >= operation.

    Descriptor of binary >= operation.

    Definition Classes
    OrderingOps
  97. case class OrderingLT[T](ord: ExactOrdering[T]) extends Scalan.BinOp[T, Boolean] with Product with Serializable

    Permalink

    Descriptor of binary < operation.

    Descriptor of binary < operation.

    Definition Classes
    OrderingOps
  98. case class OrderingLTEQ[T](ord: ExactOrdering[T]) extends Scalan.BinOp[T, Boolean] with Product with Serializable

    Permalink

    Descriptor of binary <= operation.

    Descriptor of binary <= operation.

    Definition Classes
    OrderingOps
  99. case class OrderingMax[T](ord: ExactOrdering[T])(implicit evidence$1: Scalan.Elem[T]) extends Scalan.BinOp[T, T] with Product with Serializable

    Permalink

    Descriptor of binary max operation.

    Descriptor of binary max operation.

    Definition Classes
    OrderingOps
  100. case class OrderingMin[T](ord: ExactOrdering[T])(implicit evidence$2: Scalan.Elem[T]) extends Scalan.BinOp[T, T] with Product with Serializable

    Permalink

    Descriptor of binary min operation.

    Descriptor of binary min operation.

    Definition Classes
    OrderingOps
  101. class OrderingOpsCls[T] extends AnyRef

    Permalink

    Extension method over Ref[T] given an instance of ExactOrdering for T.

    Extension method over Ref[T] given an instance of ExactOrdering for T.

    Definition Classes
    OrderingOps
  102. sealed abstract class OwnerKind extends AnyRef

    Permalink

    Variants of owner parameter of constructors of nested classes: 1) predefined node classes are owned by IR cake (ScalanOwner) 2) entity classes are owned by enclosing EntityObject

    Variants of owner parameter of constructors of nested classes: 1) predefined node classes are owned by IR cake (ScalanOwner) 2) entity classes are owned by enclosing EntityObject

    Definition Classes
    Base
  103. type PGraph = ProgramGraph

    Permalink
    Definition Classes
    ProgramGraphs
  104. class PGraphUsages extends DFunc[Int, Buffer[Int]]

    Permalink

    Deboxed function to obtain usages of a given node.

    Deboxed function to obtain usages of a given node. Represents adjacency matrix of the reversed graph g.

    Definition Classes
    ProgramGraphs
  105. trait PairColl[L, R] extends scalan.Library.Node with scalan.Library.Coll[(L, R)]

    Permalink
    Definition Classes
    Colls
    Annotations
    @WithMethodCallRecognizers()
  106. trait PairCollCompanion extends AnyRef

    Permalink
    Definition Classes
    Colls
  107. case class PairElem[A, B](eFst: Scalan.Elem[A], eSnd: Scalan.Elem[B]) extends Scalan.Elem[(A, B)] with Product with Serializable

    Permalink

    Type descriptor for (A, B) type where descriptors for A and B are given as arguments.

    Type descriptor for (A, B) type where descriptors for A and B are given as arguments.

    Definition Classes
    TypeDescs
  108. implicit class PartialRewriter extends Scalan.Rewriter

    Permalink

    Turns partial function into rewriter (i.e.

    Turns partial function into rewriter (i.e. set of rewriting rules)

    Definition Classes
    Transforming
  109. abstract class Pass extends AnyRef

    Permalink

    Descriptor of a current compiler pass.

    Descriptor of a current compiler pass. Compiler can be configured to perform one pass after another. Each pass has name, configuration parameters, finalizaton logic etc.

    Definition Classes
    Transforming
  110. case class PassConfig(shouldUnpackTuples: Boolean = false, shouldExtractFields: Boolean = true, constantPropagation: Boolean = true, shouldSlice: Boolean = false) extends Product with Serializable

    Permalink

    Configuration parameters of the Pass descriptor.

    Configuration parameters of the Pass descriptor.

    Definition Classes
    Transforming
  111. case class Placeholder[T](eT: Scalan.LElem[T]) extends Scalan.Node with Scalan.Def[T] with Product with Serializable

    Permalink

    Symbols may temporary refer to this node until their target node is updated.

    Symbols may temporary refer to this node until their target node is updated.

    Definition Classes
    Base
  112. trait PreHeader extends scalan.SigmaLibrary.Node with scalan.SigmaLibrary.Def[scalan.SigmaLibrary.PreHeader]

    Permalink
    Definition Classes
    SigmaDsl
    Annotations
    @Liftable()
  113. trait PreHeaderCompanion extends AnyRef

    Permalink
    Definition Classes
    SigmaDsl
  114. case class ProgramGraph(roots: Seq[Scalan.Sym], mapping: Nullable[Scalan.Transformer], filterNode: Nullable[(Scalan.Sym) ⇒ Boolean]) extends Scalan.AstGraph with Product with Serializable

    Permalink

    Immutable graph collected from roots following Ref.node.deps links.

    Immutable graph collected from roots following Ref.node.deps links.

    Definition Classes
    ProgramGraphs
  115. type RColl[T] = Ref[Coll[T]]

    Permalink
    Definition Classes
    GraphBuilding
  116. type RFunc[-A, +B] = Ref[(A) ⇒ B]

    Permalink
    Definition Classes
    Base
  117. case class RMethodDesc(method: Method) extends Scalan.MethodDesc with Product with Serializable

    Permalink
    Definition Classes
    TypeDescs
  118. type ROption[T] = Ref[WOption[T]]

    Permalink
    Definition Classes
    GraphBuilding
  119. type RPair[+A, +B] = Ref[(A, B)]

    Permalink
    Definition Classes
    Base
  120. abstract class Ref[+T] extends AnyRef

    Permalink

    Abstract representation of a computable value.

    Abstract representation of a computable value. Default implementation is a simple lightweight reference to the corresponding definition. Every Ref have direct access to its Def via node property. Every Ref is typed, and the type is avaliable via elem property.

    Definition Classes
    Base
    See also

    SingleRep

  121. implicit class RepBooleanOps extends AnyRef

    Permalink

    Extension methods over Ref[Boolean].

    Extension methods over Ref[Boolean].

    Definition Classes
    LogicalOps
  122. implicit class RepThunkOps[T] extends AnyRef

    Permalink

    Extension methods on Ref[Thunk[T]] values.

    Extension methods on Ref[Thunk[T]] values.

    Definition Classes
    Thunks
  123. implicit class RepUniversalOps[A] extends AnyRef

    Permalink
    Definition Classes
    UniversalOps
  124. abstract class Rewriter extends AnyRef

    Permalink
    Definition Classes
    Transforming
  125. type SThunk[T] = () ⇒ T

    Permalink

    Runtime representation of lazy values.

    Runtime representation of lazy values. Each Thunk typed graph node evaluates to a value of this type.

    Definition Classes
    Thunks
  126. type Schedule = Seq[Sym]

    Permalink

    Type synonim for graph schedules.

    Type synonim for graph schedules.

    Definition Classes
    AstGraphs
  127. type ScheduleIds = Buffer[Int]

    Permalink

    Alternative representation of schedules using node ids.

    Alternative representation of schedules using node ids.

    Definition Classes
    AstGraphs
  128. case class Second[A, B](pair: Scalan.Ref[(A, B)]) extends Scalan.Node with Scalan.Def[B] with Product with Serializable

    Permalink
    Definition Classes
    Tuples
  129. implicit class SeqExpExtensionsForEmitGraph extends AnyRef

    Permalink
    Definition Classes
    GraphVizExport
  130. trait SigmaContractCompanion extends AnyRef

    Permalink
    Definition Classes
    SigmaDsl
  131. trait SigmaDslBuilder extends scalan.SigmaLibrary.Node with scalan.SigmaLibrary.Def[scalan.SigmaLibrary.SigmaDslBuilder]

    Permalink
    Definition Classes
    SigmaDsl
    Annotations
    @Liftable() @WithMethodCallRecognizers()
  132. trait SigmaDslBuilderCompanion extends AnyRef

    Permalink
    Definition Classes
    SigmaDsl
  133. trait SigmaProp extends scalan.SigmaLibrary.Node with scalan.SigmaLibrary.Def[scalan.SigmaLibrary.SigmaProp]

    Permalink
    Definition Classes
    SigmaDsl
    Annotations
    @Liftable() @WithMethodCallRecognizers()
  134. trait SigmaPropCompanion extends AnyRef

    Permalink
    Definition Classes
    SigmaDsl
  135. final class SingleRef[+T] extends Scalan.Ref[T]

    Permalink

    A Ref is a symbolic reference used internally to refer to graph nodes.

    A Ref is a symbolic reference used internally to refer to graph nodes. Light weight stateless immutable reference to a graph node (Def[T]). Two symbols are equal if they refer to the nodes with the same id, which is due to Def unification means equal symbols refer to the same instance of Def.

    Definition Classes
    Base
  136. case class SizeOf[T](value: Scalan.Ref[T]) extends Scalan.BaseDef[Long] with Product with Serializable

    Permalink

    Represents calculation of size in bytes of the given value.

    Represents calculation of size in bytes of the given value. The descriptor value.elem can be used to decompose value into components.

    Definition Classes
    UniversalOps
  137. class StagingException extends RuntimeException

    Permalink
    Definition Classes
    Base
  138. type Subst = HashMap[Sym, Sym]

    Permalink
    Definition Classes
    Functions
  139. case class SumElem[A, B](eLeft: Scalan.Elem[A], eRight: Scalan.Elem[B]) extends Scalan.Elem[Scalan.|[A, B]] with Product with Serializable

    Permalink

    Type descriptor for A | B type where descriptors for A and B are given as arguments.

    Type descriptor for A | B type where descriptors for A and B are given as arguments.

    Definition Classes
    TypeDescs
  140. type Sym = Ref[_]

    Permalink

    Untyped shortcut sinonim of Ref, which is used as untyped reference to graph nodes (definitions).

    Untyped shortcut sinonim of Ref, which is used as untyped reference to graph nodes (definitions). Following a tradition in compiler engineering we call references to definitions as symbols.

    Definition Classes
    Base
  141. type Th[+T] = Ref[Thunk[T]]

    Permalink
    Definition Classes
    Thunks
  142. class ThenIfBranch[T] extends AnyRef

    Permalink

    Defines syntax available after IF (cond) THEN thenp

    Defines syntax available after IF (cond) THEN thenp

    Definition Classes
    IfThenElse
  143. trait Thunk[+A] extends AnyRef

    Permalink

    Phantom type to define thunk-typed graph nodes and thunk based lazy operations.

    Phantom type to define thunk-typed graph nodes and thunk based lazy operations. Usually used inside Ref, see for example Th. See also for details http://gigiigig.github.io/tlp-step-by-step/phantom-types.html

    Definition Classes
    Thunks
  144. class ThunkCompanion extends AnyRef

    Permalink

    A class of factory to create new Thunks by use Thunk { ... } expressions.

    A class of factory to create new Thunks by use Thunk { ... } expressions.

    Definition Classes
    Thunks
  145. case class ThunkConst[ST, T](constValue: Scalan.SThunk[ST], lT: Base.Liftables.Liftable[ST, T]) extends Scalan.BaseDef[Scalan.Thunk[T]] with LiftedConst[Scalan.SThunk[ST], Scalan.Thunk[T]] with Product with Serializable

    Permalink

    Graph node to represent constants of type Thunk.

    Graph node to represent constants of type Thunk.

    Definition Classes
    Thunks
    See also

    scalan.Base.Liftables.Liftable

  146. class ThunkDef[A] extends Scalan.AstGraph with Scalan.Def[Scalan.Thunk[A]]

    Permalink

    Graph node representing thunk with reified body.

    Graph node representing thunk with reified body. Each thunk node is a specialized implementation of AstGraph abstract class.

    Definition Classes
    Thunks
  147. case class ThunkElem[A](eItem: Scalan.Elem[A]) extends Scalan.EntityElem1[A, Scalan.Thunk[A], Scalan.Thunk] with Product with Serializable

    Permalink

    Implements a type descriptor of Thunk[A] type given the instance of A.

    Implements a type descriptor of Thunk[A] type given the instance of A.

    Definition Classes
    Thunks
  148. case class ThunkForce[A](thunk: Scalan.Ref[Scalan.Thunk[A]]) extends Scalan.Node with Scalan.Def[A] with Product with Serializable

    Permalink

    Graph node to represent thunk forcing operation.

    Graph node to represent thunk forcing operation.

    Definition Classes
    Thunks
  149. class ThunkScope extends AnyRef

    Permalink

    Helper object to handle construction of nested thunks.

    Helper object to handle construction of nested thunks. One instance is created for each ThunkDef under construction. This corresponds to syntactic nesting of thunks.

    Definition Classes
    Thunks
  150. class ThunkStack extends AnyRef

    Permalink

    The stack of nested thunks during graph construction.

    The stack of nested thunks during graph construction.

    Definition Classes
    Thunks
  151. case class ToString[A]() extends Scalan.UnOp[A, String] with Product with Serializable

    Permalink
    Definition Classes
    UniversalOps
  152. abstract class Transformer extends AnyRef

    Permalink

    Base class for Ref to Ref transformations.

    Base class for Ref to Ref transformations. Each transformer keeps a mapping data between references to original nodes and references to the corresponding transformed nodes.

    Definition Classes
    Base
  153. case class Tup[A, B](a: Scalan.Ref[A], b: Scalan.Ref[B]) extends Scalan.Node with Scalan.Def[(A, B)] with Product with Serializable

    Permalink
    Definition Classes
    Tuples
  154. implicit class TupleOps2[A, B] extends AnyRef

    Permalink
    Definition Classes
    Tuples
  155. implicit class TupleOps3[A, B, C] extends AnyRef

    Permalink
    Definition Classes
    Tuples
  156. implicit class TupleOps4[A, B, C, D] extends AnyRef

    Permalink
    Definition Classes
    Tuples
  157. implicit class TupleOps5[A, B, C, D, E] extends AnyRef

    Permalink
    Definition Classes
    Tuples
  158. abstract class TypeDesc extends Serializable

    Permalink
    Definition Classes
    TypeDescs
  159. abstract class UnOp[A, R] extends AnyRef

    Permalink

    Base class for descriptors of unary operations.

    Base class for descriptors of unary operations.

    Definition Classes
    UnBinOps
  160. case class Upcast[From, To](input: Scalan.Ref[From], eTo: Scalan.Elem[To]) extends Scalan.BaseDef[To] with Product with Serializable

    Permalink
    Definition Classes
    UniversalOps
  161. case class Variable[T](varId: Int)(implicit eT: Scalan.LElem[T]) extends Scalan.Node with Scalan.Def[T] with Product with Serializable

    Permalink

    Node class for typed variables.

    Node class for typed variables. In particular for lambda-bound variables.

    varId

    is independent from nodeId, shouldn't be used as node id.

    eT

    type descriptor of the variable type

    Definition Classes
    Base
  162. case class WMethodDesc(wrapSpec: WrapSpec, method: Method) extends Scalan.MethodDesc with Product with Serializable

    Permalink
    Definition Classes
    TypeDescs
  163. trait WOption[A] extends special.wrappers.WrappersModule.Node with special.wrappers.WrappersModule.Def[special.wrappers.WrappersModule.WOption[A]]

    Permalink
    Definition Classes
    WOptions
    Annotations
    @External() @ContainerType() @FunctorType() @Liftable() @WithMethodCallRecognizers()
  164. trait WOptionCompanion extends AnyRef

    Permalink
    Definition Classes
    WOptions
  165. trait WRType[A] extends special.wrappers.WrappersModule.Node with special.wrappers.WrappersModule.Def[special.wrappers.WrappersModule.WRType[A]]

    Permalink
    Definition Classes
    WRTypes
    Annotations
    @External() @Liftable() @WithMethodCallRecognizers()
  166. trait WRTypeCompanion extends AnyRef

    Permalink
    Definition Classes
    WRTypes
  167. trait WSpecialPredef extends special.wrappers.WrappersModule.Node with special.wrappers.WrappersModule.Def[special.wrappers.WrappersModule.WSpecialPredef]

    Permalink
    Definition Classes
    WSpecialPredefs
    Annotations
    @External() @WithMethodCallRecognizers()
  168. trait WSpecialPredefCompanion extends AnyRef

    Permalink
    Definition Classes
    WSpecialPredefs
  169. type |[+A, +B] = Either[A, B]

    Permalink
    Definition Classes
    Base

Value Members

  1. def !!!(msg: String, e: Throwable, syms: Ref[_]*): Nothing

    Permalink
    Definition Classes
    Base
  2. def !!!(msg: String, syms: Ref[_]*): Nothing

    Permalink
    Definition Classes
    Base
  3. def !!!: Nothing

    Permalink

    Helper methods to throw errors

    Helper methods to throw errors

    Definition Classes
    Base
  4. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  5. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  6. object &&

    Permalink

    Logical AND between two pattern matches of the save value x.

    Logical AND between two pattern matches of the save value x. Can be used to construct patterns like case P1 && P2 => ...

    Definition Classes
    Base
  7. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def ???(value: Any, syms: Ref[_]*): Nothing

    Permalink
    Definition Classes
    Base
  9. def ???: Nothing

    Permalink
    Definition Classes
    Base
  10. object AllOf

    Permalink

    Recognizer of SigmaDslBuilder.allOf method call in Graph-IR.

    Recognizer of SigmaDslBuilder.allOf method call in Graph-IR. This method call represents allOf predefined function.

    Definition Classes
    GraphBuilding
  11. object AllZk

    Permalink

    Recognizer of SigmaDslBuilder.allZK method call in Graph-IR.

    Recognizer of SigmaDslBuilder.allZK method call in Graph-IR. This method call represents allZK predefined function.

    Definition Classes
    GraphBuilding
  12. val And: EndoBinOp[Boolean]

    Permalink

    Logical AND binary operation.

    Logical AND binary operation.

    Definition Classes
    LogicalOps
  13. val AnyElement: Elem[Any]

    Permalink

    Type descriptor for Any, cannot be used implicitly.

    Type descriptor for Any, cannot be used implicitly.

    Definition Classes
    TypeDescs
  14. object AnyOf

    Permalink

    Recognizer of SigmaDslBuilder.anyOf method call in Graph-IR.

    Recognizer of SigmaDslBuilder.anyOf method call in Graph-IR. This method call represents anyOf predefined function.

    Definition Classes
    GraphBuilding
  15. val AnyRefElement: Elem[AnyRef]

    Permalink

    Type descriptor for AnyRef, cannot be used implicitly.

    Type descriptor for AnyRef, cannot be used implicitly.

    Definition Classes
    TypeDescs
  16. object AnyValue extends scalan.SigmaLibrary.EntityObject

    Permalink
    Definition Classes
    SigmaDslDefs
  17. object AnyZk

    Permalink

    Recognizer of SigmaDslBuilder.anyZK method call in Graph-IR.

    Recognizer of SigmaDslBuilder.anyZK method call in Graph-IR. This method call represents anyZK predefined function.

    Definition Classes
    GraphBuilding
  18. object AvlTree extends scalan.SigmaLibrary.EntityObject

    Permalink
    Definition Classes
    SigmaDslDefs
  19. object BigInt extends scalan.SigmaLibrary.EntityObject

    Permalink
    Definition Classes
    SigmaDslDefs
  20. val BinaryXorOp: EndoBinOp[Boolean]

    Permalink

    Logical XOR binary operation.

    Logical XOR binary operation.

    Definition Classes
    LogicalOps
  21. implicit val BooleanElement: Elem[Boolean]

    Permalink
    Definition Classes
    TypeDescs
  22. val BooleanToInt: UnOp[Boolean, Int]

    Permalink

    Boolean to Int conversion unary operation.

    Boolean to Int conversion unary operation.

    Definition Classes
    LogicalOps
  23. object Box extends scalan.SigmaLibrary.EntityObject

    Permalink
    Definition Classes
    SigmaDslDefs
  24. implicit val ByteElement: Elem[Byte]

    Permalink
    Definition Classes
    TypeDescs
  25. val CM: CollMethods.type

    Permalink
    Definition Classes
    Library
  26. implicit val CharElement: Elem[Char]

    Permalink
    Definition Classes
    TypeDescs
  27. object Coll extends scalan.Library.EntityObject

    Permalink
    Definition Classes
    CollsDefs
  28. object CollBuilder extends scalan.Library.EntityObject

    Permalink
    Definition Classes
    CollsDefs
  29. object ConstantLambda

    Permalink

    Matcher for lambdas which don't depend on their arguments (but can close over other expressions, unlike VeryConstantLambda).

    Matcher for lambdas which don't depend on their arguments (but can close over other expressions, unlike VeryConstantLambda).

    Definition Classes
    Functions
  30. object ConstantThunk

    Permalink
    Definition Classes
    Thunks
  31. object Context extends scalan.SigmaLibrary.EntityObject

    Permalink
    Definition Classes
    SigmaDslDefs
  32. object Def

    Permalink
    Definition Classes
    Base
  33. val DefaultMirror: Mirror

    Permalink

    Default Mirror instance which is used in core IR methods.

    Default Mirror instance which is used in core IR methods.

    Definition Classes
    Transforming
  34. implicit val DoubleElement: Elem[Double]

    Permalink
    Definition Classes
    TypeDescs
  35. object Elem extends Serializable

    Permalink
    Definition Classes
    TypeDescs
  36. val EmptyArrayOfSym: Array[Sym]

    Permalink

    Immutable empty array of symbols, can be used to avoid unnecessary allocations.

    Immutable empty array of symbols, can be used to avoid unnecessary allocations.

    Definition Classes
    Base
  37. val EmptyDSetOfInt: Set[Int]

    Permalink

    Used internally in IR and should be used with care since it is mutable.

    Used internally in IR and should be used with care since it is mutable. At the same time, it is used in the hotspot and allows to avoid roughly tens of thousands of allocations per second. WARNING: Mutations of this instance can lead to undefined behavior.

    Attributes
    protected
    Definition Classes
    Base
  38. val EmptySeqOfSym: Seq[Sym]

    Permalink

    Immutable empty Seq, can be used to avoid unnecessary allocations.

    Immutable empty Seq, can be used to avoid unnecessary allocations.

    Definition Classes
    Base
  39. val EmptyTypeArgs: ListMap[String, (TypeDesc, Variance)]

    Permalink

    Since ListMap is immutable this empty map can be shared by all other maps created from it.

    Since ListMap is immutable this empty map can be shared by all other maps created from it.

    Definition Classes
    TypeDescs
  40. object EnvRep extends Serializable

    Permalink
    Definition Classes
    TypeDescs
  41. object ExpWithElem

    Permalink
    Definition Classes
    Base
  42. implicit val FloatElement: Elem[Float]

    Permalink
    Definition Classes
    TypeDescs
  43. implicit final def FuncElemExtensions[A, B](eAB: Elem[(A) ⇒ B]): FuncElem[A, B]

    Permalink
    Definition Classes
    TypeDescs
  44. object GroupElement extends scalan.SigmaLibrary.EntityObject

    Permalink
    Definition Classes
    SigmaDslDefs
  45. object HasSigmas

    Permalink

    Pattern match extractor which recognizes isValid nodes among items.

    Pattern match extractor which recognizes isValid nodes among items.

    returns

    None if there is no isValid node among items Some((bs, ss)) if there are isValid nodes where ss are SigmaProp arguments of those nodes and bs contains all the other nodes.

    Definition Classes
    GraphBuilding
  46. object Header extends scalan.SigmaLibrary.EntityObject

    Permalink
    Definition Classes
    SigmaDslDefs
  47. def IF(cond: Ref[Boolean]): IfBranch

    Permalink

    If c then t else e construction with standard lazy evaluation of branches.

    If c then t else e construction with standard lazy evaluation of branches. The representation uses Thunk for each branch

    Definition Classes
    IfThenElse
  48. object IdentityLambda

    Permalink
    Definition Classes
    Functions
  49. implicit val IntElement: Elem[Int]

    Permalink
    Definition Classes
    TypeDescs
  50. final def IntZero: Ref[Int]

    Permalink

    Zero literal node, which is lazily created and can be efficiently reused.

    Zero literal node, which is lazily created and can be efficiently reused. Much faster alternative to (0: Rep[Int]) or toRep(0).

    Definition Classes
    Base
    Annotations
    @inline()
  51. object InvokeImpossible extends Scalan.InvokeResult with Product with Serializable

    Permalink

    Invocation is not possible, e.g.

    Invocation is not possible, e.g. when receiver doesn't implemented the method.

    Definition Classes
    MethodCalls
  52. object IsArithOp

    Permalink

    Recognizes arithmetic operation of graph IR and returns its ErgoTree code.

    Recognizes arithmetic operation of graph IR and returns its ErgoTree code.

    Definition Classes
    TreeBuilding
  53. object IsConstantDef

    Permalink

    Recognizes constants in graph IR.

    Recognizes constants in graph IR.

    Definition Classes
    TreeBuilding
  54. object IsContextProperty

    Permalink

    Recognizes context property in the graph IR and returns the corresponding ErgoTree node.

    Recognizes context property in the graph IR and returns the corresponding ErgoTree node.

    Definition Classes
    TreeBuilding
  55. object IsInternalDef

    Permalink

    Recognizes special graph IR nodes which typically have many usages, but for which no ValDefs should be created.

    Recognizes special graph IR nodes which typically have many usages, but for which no ValDefs should be created.

    Definition Classes
    TreeBuilding
  56. object IsLogicalBinOp

    Permalink

    Recognizes logical binary operation of graph IR and returns the corresponding ErgoTree builder function.

    Recognizes logical binary operation of graph IR and returns the corresponding ErgoTree builder function.

    Definition Classes
    TreeBuilding
  57. object IsLogicalUnOp

    Permalink

    Recognizes unary logical operation of graph IR and returns the corresponding ErgoTree builder function.

    Recognizes unary logical operation of graph IR and returns the corresponding ErgoTree builder function.

    Definition Classes
    TreeBuilding
  58. object IsNumericToInt

    Permalink
    Definition Classes
    Library
  59. object IsNumericToLong

    Permalink
    Definition Classes
    Library
  60. object IsNumericUnOp

    Permalink

    Recognizes unary numeric operation of graph IR and returns the corresponding ErgoTree builder function.

    Recognizes unary numeric operation of graph IR and returns the corresponding ErgoTree builder function.

    Definition Classes
    TreeBuilding
  61. object IsPair

    Permalink
    Definition Classes
    Tuples
  62. object IsRelationOp

    Permalink

    Recognizes comparison operation of graph IR and returns the corresponding ErgoTree builder function.

    Recognizes comparison operation of graph IR and returns the corresponding ErgoTree builder function.

    Definition Classes
    TreeBuilding
  63. object Lambda

    Permalink
    Definition Classes
    Functions
  64. val LazyAnyElement: Lazy[Elem[Any]]

    Permalink

    Predefined Lazy value saved here to be used in hotspot code.

    Predefined Lazy value saved here to be used in hotspot code.

    Definition Classes
    TypeDescs
  65. object Liftables

    Permalink

    Data type ST is liftable is there is Liftable[ST, T] instance for some type T.

    Data type ST is liftable is there is Liftable[ST, T] instance for some type T. Liftable typeclass allows to define which types can have values embedded as literals into graph IR.

    Definition Classes
    Base
  66. implicit val LongElement: Elem[Long]

    Permalink
    Definition Classes
    TypeDescs
  67. object MapTransformer extends Serializable

    Permalink
    Definition Classes
    Transforming
  68. object NoOwner extends Scalan.OwnerKind with Product with Serializable

    Permalink
    Definition Classes
    Base
  69. val NoRewriting: Rewriter

    Permalink

    Identity rewriter, i.e.

    Identity rewriter, i.e. doesn't change the graph when applied.

    Definition Classes
    Transforming
  70. val Not: EndoUnOp[Boolean]

    Permalink

    Logical NOT unary operation.

    Logical NOT unary operation.

    Definition Classes
    LogicalOps
  71. val NothingElement: Elem[Nothing]

    Permalink
    Definition Classes
    TypeDescs
  72. val Or: EndoBinOp[Boolean]

    Permalink

    Logical AND binary operation.

    Logical AND binary operation.

    Definition Classes
    LogicalOps
  73. implicit def OrderingToOrderingOps[T](x: T)(implicit n: ExactOrdering[T], et: Elem[T]): OrderingOpsCls[T]

    Permalink
    Definition Classes
    OrderingOps
  74. object Pair

    Permalink
    Definition Classes
    Tuples
  75. object PairColl extends scalan.Library.EntityObject

    Permalink
    Definition Classes
    CollsDefs
  76. implicit final def PairElemExtensions[A, B](eAB: Elem[(A, B)]): PairElem[A, B]

    Permalink
    Definition Classes
    TypeDescs
  77. object Pass

    Permalink
    Definition Classes
    Transforming
  78. object PreHeader extends scalan.SigmaLibrary.EntityObject

    Permalink
    Definition Classes
    SigmaDslDefs
  79. object ProgramGraph extends Serializable

    Permalink
    Definition Classes
    ProgramGraphs
  80. object ScalanOwner extends Scalan.OwnerKind with Product with Serializable

    Permalink
    Definition Classes
    Base
  81. implicit val ShortElement: Elem[Short]

    Permalink
    Definition Classes
    TypeDescs
  82. object SigmaDslBuilder extends scalan.SigmaLibrary.EntityObject

    Permalink
    Definition Classes
    SigmaDslDefs
  83. object SigmaProp extends scalan.SigmaLibrary.EntityObject

    Permalink
    Definition Classes
    SigmaDslDefs
  84. implicit val StringElement: Elem[String]

    Permalink
    Definition Classes
    TypeDescs
  85. implicit final def SumElemExtensions[A, B](eAB: Elem[|[A, B]]): SumElem[A, B]

    Permalink
    Definition Classes
    TypeDescs
  86. val Thunk: ThunkCompanion

    Permalink

    Allow expressions like Thunk { ... } to create new Thunks.

    Allow expressions like Thunk { ... } to create new Thunks.

    Definition Classes
    Thunks
  87. object ThunkDef

    Permalink
    Definition Classes
    Thunks
  88. final def TypeArgs(descs: (String, (TypeDesc, Variance))*): ListMap[String, (TypeDesc, Variance)]

    Permalink
    Definition Classes
    TypeDescs
  89. implicit val UnitElement: Elem[Unit]

    Permalink
    Definition Classes
    TypeDescs
  90. object VeryConstantLambda

    Permalink

    Matcher for lambdas which return staging-time constants.

    Matcher for lambdas which return staging-time constants. VeryConstantLambda(x) should be equivalent to ConstantLambda(Def(Const(x)))

    Definition Classes
    Functions
  91. object WOption extends special.wrappers.WrappersModule.EntityObject

    Permalink
    Definition Classes
    WOptionsDefs
  92. object WRType extends special.wrappers.WrappersModule.EntityObject

    Permalink
    Definition Classes
    WRTypesDefs
  93. object WSpecialPredef extends special.wrappers.WrappersModule.EntityObject

    Permalink
    Definition Classes
    WSpecialPredefsDefs
  94. var _currentPass: Pass

    Permalink
    Definition Classes
    Transforming
  95. def alphaEqual(s1: Sym, s2: Sym): Boolean

    Permalink
    Definition Classes
    Functions
  96. def applyBinOp[A, R](op: BinOp[A, R], lhs: Ref[A], rhs: Ref[A]): Ref[R]

    Permalink

    Overridable constructor of a binary operation node.

    Overridable constructor of a binary operation node.

    Definition Classes
    UnBinOps
  97. def applyBinOpLazy[A, R](op: BinOp[A, R], lhs: Ref[A], rhs: Ref[Thunk[A]]): Ref[R]

    Permalink

    Overridable constructor of a binary operation node with lazy argument.

    Overridable constructor of a binary operation node with lazy argument.

    Definition Classes
    UnBinOps
  98. def applyUnOp[A, R](op: UnOp[A, R], arg: Ref[A]): Ref[R]

    Permalink

    Overridable constructor of an unary operation node.

    Overridable constructor of an unary operation node.

    Definition Classes
    UnBinOps
  99. final def asElem[T](d: TypeDesc): Elem[T]

    Permalink

    Helper type case method.

    Helper type case method.

    Definition Classes
    TypeDescs
    Annotations
    @inline()
  100. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  101. final def asRep[T](x: Ref[_]): Ref[T]

    Permalink

    Helper to type cast node references.

    Helper to type cast node references.

    Definition Classes
    Base
    Annotations
    @inline()
  102. def assertElem(value: Ref[_], elem: Elem[_], hint: ⇒ String): Unit

    Permalink
    Definition Classes
    TypeDescs
  103. def assertElem(value: Ref[_], elem: Elem[_]): Unit

    Permalink
    Definition Classes
    TypeDescs
  104. def assertEqualElems[A](e1: Elem[A], e2: Elem[A], m: ⇒ String): Unit

    Permalink
    Definition Classes
    TypeDescs
  105. def assertValueIdForOpCost[A, B](value: Ref[A], cost: Ref[B]): Unit

    Permalink
    Definition Classes
    UniversalOps
  106. def beginPass(pass: Pass): Unit

    Permalink

    Called to setup IR before the new pass is executed.

    Called to setup IR before the new pass is executed.

    Definition Classes
    Transforming
  107. def buildGraph[T](env: ScriptEnv, typed: SValue): Ref[(Context) ⇒ T]

    Permalink

    Translates the given typed expression to IR graph representing a function from Context to some type T.

    Translates the given typed expression to IR graph representing a function from Context to some type T.

    env

    contains values for each named constant used

    Definition Classes
    GraphBuilding
  108. def buildNode[T <: SType](ctx: Ref[Context], env: CompilingEnv, node: Value[T]): Ref[GraphBuilding.buildNode.T.WrappedType]

    Permalink

    Builds IR graph for the given ErgoTree expression node.

    Builds IR graph for the given ErgoTree expression node.

    ctx

    reference to a graph node that represents Context value passed to script interpreter

    env

    compilation environment which resolves variables to graph nodes

    node

    ErgoTree expression to be translated to graph

    returns

    reference to the graph node which represents node expression as part of in the IR graph data structure

    Attributes
    protected
    Definition Classes
    GraphBuilding
  109. def buildTree[T <: SType](f: Ref[(Context) ⇒ Any], constantsProcessing: Option[ConstantStore] = None): Value[T]

    Permalink

    Transforms the given function f from graph-based IR to ErgoTree expression.

    Transforms the given function f from graph-based IR to ErgoTree expression.

    f

    reference to the graph node representing function from Context.

    constantsProcessing

    if Some(store) is specified, then each constant is segregated and a placeholder is inserted in the resulting expression.

    returns

    expression of ErgoTree which corresponds to the function f

    Definition Classes
    TreeBuilding
  110. val builder: TransformingSigmaBuilder.type

    Permalink

    Should be specified in the final cake

    Should be specified in the final cake

    Definition Classes
    IRContextGraphBuilding
  111. val cacheElems: Boolean

    Permalink

    Whether IR type descriptors should be cached.

    Whether IR type descriptors should be cached.

    Definition Classes
    Base
  112. val cachePairs: Boolean

    Permalink

    Whether Tup instances should be cached.

    Whether Tup instances should be cached.

    Definition Classes
    Base
  113. final def cachedElemByClass[E <: Elem[_]](args: AnyRef*)(implicit clazz: Class[E]): E

    Permalink

    Retrieve an instance of the given Elem class by either looking up in the cache or creating a new one.

    Retrieve an instance of the given Elem class by either looking up in the cache or creating a new one. We assume that all Elem instances are uniquely defined by (clazz, args)

    args

    arguments of Elem class constructor

    clazz

    Elem class

    Definition Classes
    TypeDescs
  114. def canBeInvoked(d: Def[_], m: Method, args: Array[AnyRef]): Boolean

    Permalink

    Method invocation checker.

    Method invocation checker.

    Attributes
    protected
    Definition Classes
    MethodCalls
  115. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  116. def clusterColor(g: AstGraph): Option[String]

    Permalink
    Attributes
    protected
    Definition Classes
    GraphVizExport
  117. def clusterSchedule(g: AstGraph): Seq[Sym]

    Permalink
    Attributes
    protected
    Definition Classes
    GraphVizExport
  118. def colBuilder: Ref[CollBuilder]

    Permalink
    Definition Classes
    GraphBuildingLibrary
    Annotations
    @inline()
  119. def compose[A, B, C](f: Ref[(B) ⇒ C], g: Ref[(A) ⇒ B]): Ref[(A) ⇒ C]

    Permalink

    Composition of two functions (in mathematical notation), where first g is applied and them f.

    Composition of two functions (in mathematical notation), where first g is applied and them f.

    Definition Classes
    Functions
  120. def constFun[A, B](x: Ref[B])(implicit e: Elem[A]): Ref[(A) ⇒ B]

    Permalink
    Definition Classes
    Functions
  121. final def container[F[_]](implicit arg0: Cont[F]): Cont[F]

    Permalink
    Definition Classes
    TypeDescs
  122. implicit final def containerElem[F[_], A](implicit arg0: Cont[F], arg1: Elem[A]): Elem[F[A]]

    Permalink
    Definition Classes
    TypeDescs
  123. def createDefinition[T](optScope: Nullable[ThunkScope], s: Ref[T], d: Def[T]): Ref[T]

    Permalink

    Create new definition entry in either given Thunk or in the global hash table.

    Create new definition entry in either given Thunk or in the global hash table.

    optScope

    optional thunk scope to put given definition

    s

    symbol refering to d

    d

    definition node to add to the scope of globally

    returns

    reference to d (which is s)

    Attributes
    protected
    Definition Classes
    Base
  124. def currentPass: Pass

    Permalink

    IR global current Pass, changes when the compier switches from one pass to the next one.

    IR global current Pass, changes when the compier switches from one pass to the next one. Should remain constant during the whole pass execution.

    Definition Classes
    Transforming
  125. val debugModeSanityChecks: Boolean

    Permalink

    Whether to perform extended checks of correctness, expected invariants and data consistency.

    Whether to perform extended checks of correctness, expected invariants and data consistency. NOTE: Since it may add substantial overhead, set it to false before using in production.

    Definition Classes
    Base
  126. def defCount: Int

    Permalink

    Returns a number of definitions added to this IR context.

    Returns a number of definitions added to this IR context.

    Definition Classes
    Base
  127. def def_unapply[T](e: Ref[T]): Nullable[Def[T]]

    Permalink
    Definition Classes
    Base
  128. def defaultGraphVizConfig: GraphVizConfig

    Permalink
    Definition Classes
    GraphVizExport
  129. def delayInvoke: Nothing

    Permalink
    Definition Classes
    MethodCalls
  130. def downcast[To](value: Ref[_])(implicit arg0: Elem[To]): Ref[To]

    Permalink
    Definition Classes
    UniversalOps
  131. val elemCache: AVHashMap[Class[_], ElemCacheEntry]

    Permalink
    Attributes
    protected
    Definition Classes
    TypeDescs
  132. def elemToExactIntegral[T](e: Elem[T]): ExactIntegral[T]

    Permalink

    returns

    ExactIntegral instance for the given type

    Definition Classes
    GraphBuilding
  133. def elemToExactNumeric[T](e: Elem[T]): ExactNumeric[T]

    Permalink

    returns

    ExactNumeric instance for the given type

    Definition Classes
    GraphBuilding
  134. def elemToExactOrdering[T](e: Elem[T]): ExactOrdering[T]

    Permalink

    returns

    ExactOrdering instance for the given type

    Definition Classes
    GraphBuilding
  135. lazy val elemToExactOrderingMap: Map[Elem[_], ExactOrdering[_]]

    Permalink
    Attributes
    protected
    Definition Classes
    GraphBuilding
  136. def elemToSType[T](e: Elem[T]): SType

    Permalink

    Translates Elem descriptor to SType descriptor used in ErgoTree.

    Translates Elem descriptor to SType descriptor used in ErgoTree. Should be inverse to stypeToElem.

    Definition Classes
    GraphBuilding
  137. final def element[A](implicit ea: Elem[A]): Elem[A]

    Permalink
    Definition Classes
    TypeDescs
  138. def emitDepGraph(exceptionOrGraph: Either[Throwable, AstGraph], directory: File, fileName: String)(implicit config: GraphVizConfig): Option[GraphFile]

    Permalink
    Definition Classes
    GraphVizExport
  139. def emitDepGraph(graph: AstGraph, directory: File, fileName: String)(implicit config: GraphVizConfig): Option[GraphFile]

    Permalink
    Definition Classes
    GraphVizExport
  140. def emitDepGraph(ss: Seq[Sym], directory: File, fileName: String)(implicit config: GraphVizConfig): Option[GraphFile]

    Permalink
    Definition Classes
    GraphVizExport
  141. def emitDepGraph(start: Sym, directory: File, fileName: String)(implicit config: GraphVizConfig): Option[GraphFile]

    Permalink
    Definition Classes
    GraphVizExport
  142. def emitDepGraph(d: Def[_], directory: File, fileName: String)(implicit config: GraphVizConfig): Option[GraphFile]

    Permalink
    Definition Classes
    GraphVizExport
  143. def emitDot(dotText: String, directory: File, fileName: String)(implicit config: GraphVizConfig): Option[GraphFile]

    Permalink
    Definition Classes
    GraphVizExport
  144. def emitExceptionGraph(e: Throwable, directory: File, fileName: String)(implicit config: GraphVizConfig): Option[GraphFile]

    Permalink
    Definition Classes
    GraphVizExport
  145. final def emptyDBufferOfSym: Buffer[Sym]

    Permalink

    Create a new empty buffer around pre-allocated empty array.

    Create a new empty buffer around pre-allocated empty array. This method is preferred, rather that creating empty debox.Buffer directly because it allows to avoid allocation of the empty array.

    Definition Classes
    Base
    Annotations
    @inline()
  146. def emptyMatchSubst: Subst

    Permalink
    Definition Classes
    Functions
    Annotations
    @inline()
  147. def endPass(pass: Pass): Unit

    Permalink

    Called to let this IR context to finalized the given pass.

    Called to let this IR context to finalized the given pass.

    Definition Classes
    Transforming
  148. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  149. def equalValues[A](x: Any, y: Any)(implicit eA: Elem[A]): Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    Equal
  150. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  151. def error(msg: String, srcCtx: Option[SourceContext]): Nothing

    Permalink
    Definition Classes
    GraphBuilding
  152. def error(msg: String): Nothing

    Permalink
    Definition Classes
    GraphBuilding
  153. implicit def extendThunkElement[T](elem: Elem[Thunk[T]]): ThunkElem[T]

    Permalink

    Implicit conversion (downcast) to access ThunkElem.eItem field.

    Implicit conversion (downcast) to access ThunkElem.eItem field.

    Definition Classes
    Thunks
  154. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  155. def findGlobalDefinition[T](d: Def[T]): Ref[T]

    Permalink

    Lookup definition in this IR context's hash table of definitions.

    Lookup definition in this IR context's hash table of definitions.

    returns

    node reference to an instance stored in hash table, which is equal to d and null if there is no definition which is equal to d

    Definition Classes
    Base
  156. def findIsProven[T](f: Ref[(Context) ⇒ T]): Option[Sym]

    Permalink

    Finds SigmaProp.isProven method calls in the given Lambda f

  157. def findOrCreateDefinition[T](d: Def[T], newSym: ⇒ Ref[T]): Ref[T]

    Permalink

    Lookup d in the heap of nodes.

    Lookup d in the heap of nodes. If the lookup is successfull, then its reference is returned. If the node is not found in the heap, then it is added and d.self reference is returned.

    d

    node to be added to the head of nodes

    newSym

    producer of the reference to be used as the reference to d node.

    returns

    return a reference to d node in the heap HOTSPOT:

    Definition Classes
    Base
  158. def forceThunkByMirror[A](thunk: Th[A], subst: MapTransformer = MapTransformer.empty()): Ref[A]

    Permalink

    Inlines the given thunk by cloning all its nodes and applying the given substitution (transformer).

    Inlines the given thunk by cloning all its nodes and applying the given substitution (transformer).

    thunk

    reference to the thunk node

    subst

    transformer to be applied for each mirrored (cloned) node.

    returns

    the reference to the graph node, which represents the resulting value of the thunk

    Definition Classes
    Thunks
  159. def forceThunkDefByMirror[A](th: ThunkDef[A], subst: MapTransformer = MapTransformer.empty()): Ref[A]

    Permalink

    Inlines the given thunk by cloning all its nodes and applying the given substitution (transformer).

    Inlines the given thunk by cloning all its nodes and applying the given substitution (transformer).

    th

    the thunk node

    subst

    transformer to be applied for each mirrored (cloned) node.

    returns

    the reference to the graph node, which represents the resulting value of the thunk

    Definition Classes
    Thunks
  160. def formatConst(x: Any): String

    Permalink
    Attributes
    protected
    Definition Classes
    GraphVizExport
  161. def formatDef(d: Def[_])(implicit config: GraphVizConfig): String

    Permalink

    To enable specific configuration uncomment one of the lines above and use it in the beginPass below.

    To enable specific configuration uncomment one of the lines above and use it in the beginPass below.

    Attributes
    protected
    Definition Classes
    GraphBuildingThunksMethodCallsGraphVizExport
  162. def formatMetadata(s: Sym): List[String]

    Permalink
    Attributes
    protected
    Definition Classes
    GraphVizExport
  163. final def freshId: Int

    Permalink

    Get next fresh node id

    Get next fresh node id

    Definition Classes
    Base
    Annotations
    @inline()
  164. final def freshSym[T](d: Def[T]): Ref[T]

    Permalink

    Lookup of create reference to the given definition.

    Lookup of create reference to the given definition. To lookup d.nodeId is used as the index in the _symbolTable. If Ref is not found in _symbolTable, then new Ref instance is created and stored in _symbolTable at d.nodeId index.

    Definition Classes
    Base
    Annotations
    @inline()
  165. implicit final def fun[A, B](f: (Ref[A]) ⇒ Ref[B])(implicit eA: LElem[A]): Ref[(A) ⇒ B]

    Permalink

    Executes given lambda to construct Lambda node.

    Executes given lambda to construct Lambda node. The function f can be called with any symbol and has an effect of growing a graph starting from the argument symbol. If a reference to Variable node is passed as argument, then the constructed graph nodes can be collected to Lambda node forming its body and schedule.

    f

    function which execution will create body nodes

    eA

    arguments type descriptor

    Definition Classes
    Functions
  166. implicit final def fun2[A, B, C](f: (Ref[A], Ref[B]) ⇒ Ref[C])(implicit eA: LElem[A], eB: LElem[B]): Ref[((A, B)) ⇒ C]

    Permalink
    Definition Classes
    Functions
  167. implicit final def funcElement[A, B](implicit ea: Elem[A], eb: Elem[B]): Elem[(A) ⇒ B]

    Permalink
    Definition Classes
    TypeDescs
  168. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  169. def getEntityObject(name: String): Nullable[EntityObject]

    Permalink
    Definition Classes
    Base
    Annotations
    @inline()
  170. def getOwnerKind(constructor: Constructor[_]): OwnerKind

    Permalink

    Returns OwnerKind for the given constructor, using its first parameter.

    Returns OwnerKind for the given constructor, using its first parameter.

    Attributes
    protected
    Definition Classes
    Base
  171. final def getSourceValues(dataEnv: DataEnv, forWrapper: Boolean, stagedValues: AnyRef*): Seq[AnyRef]

    Permalink
    Definition Classes
    TypeDescs
  172. final def getSym(id: Int): Sym

    Permalink

    Lookup node reference by its id.

    Lookup node reference by its id. This is simple array access by index O(1) operation.

    Definition Classes
    Base
    Annotations
    @inline()
  173. implicit def groupElementToECPoint(g: special.sigma.GroupElement): EcPointType

    Permalink
    Attributes
    protected
    Definition Classes
    GraphBuilding
  174. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  175. def identityFun[A](implicit e: Elem[A]): Ref[(A) ⇒ A]

    Permalink
    Definition Classes
    Functions
  176. def ifThenElseLazy[T](cond: Ref[Boolean], thenp: ⇒ Ref[T], elsep: ⇒ Ref[T]): Ref[T]

    Permalink

    Constructs IfThenElse node wrapping by-name args into ThunkDef nodes.

    Constructs IfThenElse node wrapping by-name args into ThunkDef nodes.

    Definition Classes
    IfThenElse
  177. def integral[T](implicit arg0: ExactIntegral[T]): ExactIntegral[T]

    Permalink

    Return an ExactIntegral for a given type T.

    Return an ExactIntegral for a given type T.

    Definition Classes
    NumericOps
  178. def invokeUnlifted(e: Elem[_], mc: MethodCall, dataEnv: DataEnv): AnyRef

    Permalink

    Invoke source type method corresponding to the given MethodCall node.

    Invoke source type method corresponding to the given MethodCall node. This method delegated the work to the given element instance.

    e

    type descriptor of receiver node

    mc

    IR node representing method invocation

    dataEnv

    environment where each symbol of 'mc' has associated data value

    returns

    data value returned from invoked method

    Definition Classes
    LibraryTypeDescs
  179. var isInlineThunksOnForce: Boolean

    Permalink

    Specifies thunk staging strategy with respect to handling thunk_force operation.

    Specifies thunk staging strategy with respect to handling thunk_force operation.

    Definition Classes
    Thunks
    See also

    thunk_force

  180. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  181. def isInvokeEnabled(d: Def[_], m: Method): Boolean

    Permalink

    Method invocation enabler.

    Method invocation enabler.

    returns

    true if the given method can be invoked on the given node.

    Definition Classes
    MethodCalls
  182. final def isOne[T](x: T, n: ExactNumeric[T]): Boolean

    Permalink

    Compares the given value with 1 of the given ExactNumeric instance.

    Compares the given value with 1 of the given ExactNumeric instance.

    Definition Classes
    NumericOps
    Annotations
    @inline()
  183. final def isZero[T](x: T, n: ExactNumeric[T]): Boolean

    Permalink

    Compares the given value with zero of the given ExactNumeric instance.

    Compares the given value with zero of the given ExactNumeric instance.

    Definition Classes
    NumericOps
    Annotations
    @inline()
  184. var keepOriginalFunc: Boolean

    Permalink

    Global flag governing lambda reification in fun and mkLambda.

    Global flag governing lambda reification in fun and mkLambda. If this flag is true then original f: Ref[A] => Ref[B] function is stored in Lambda node. As a consequence if f is not stored, then unfoldLambda is done by mirrorLambda.

    Definition Classes
    Functions
  185. var lambdaStack: List[Lambda[_, _]]

    Permalink
    Definition Classes
    Functions
  186. implicit def liftElem[T](eT: Elem[T]): Ref[WRType[T]]

    Permalink
    Definition Classes
    Library
  187. implicit def liftToRep[A](x: A)(implicit arg0: Elem[A]): Ref[A]

    Permalink
    Definition Classes
    Base
    Annotations
    @inline()
  188. def liftableFromElem[WT](eWT: Elem[WT]): Liftable[_, WT]

    Permalink

    Translates Elem to the corresponding Liftable instance.

    Translates Elem to the corresponding Liftable instance.

    eWT

    type descriptor

    Definition Classes
    GraphBuilding
  189. implicit def liftableThunk[ST, T](implicit lT: Liftable[ST, T]): Liftable[SThunk[ST], Thunk[T]]

    Permalink
    Definition Classes
    Thunks
  190. val lock: ReentrantLock

    Permalink

    Can be used to synchronize access to this IR object from multiple threads.

  191. def logWarn(msg: ⇒ String): Unit

    Permalink

    Log warning message to the log.

    Log warning message to the log. This is default and simple implementation, which can be overriden.

    Definition Classes
    Base
  192. def matchAny(a1: Any, a2: Any, allowInexactMatch: Boolean, subst: Subst): Nullable[Subst]

    Permalink
    Attributes
    protected
    Definition Classes
    Functions
  193. def matchDefs(d1: Def[_], d2: Def[_], allowInexactMatch: Boolean, subst: Subst): Nullable[Subst]

    Permalink
    Attributes
    protected
    Definition Classes
    ThunksFunctions
  194. def matchExps(s1: Sym, s2: Sym, allowInexactMatch: Boolean, subst: Subst): Nullable[Subst]

    Permalink
    Attributes
    protected
    Definition Classes
    Functions
  195. def matchIterators(i1: Iterator[_], i2: Iterator[_], allowInexactMatch: Boolean, subst: Subst): Nullable[Subst]

    Permalink
    Attributes
    protected
    Definition Classes
    Functions
  196. def mirrorApply[A, B](lam: Lambda[A, B], s: Ref[A]): Ref[B]

    Permalink
    Definition Classes
    Functions
  197. def mkApply[A, B](f: Ref[(A) ⇒ B], x: Ref[A]): Ref[B]

    Permalink
    Definition Classes
    Functions
  198. def mkLambda[A, B, C](f: (Ref[A], Ref[B]) ⇒ Ref[C])(implicit eA: LElem[A], eB: LElem[B]): Ref[((A, B)) ⇒ C]

    Permalink
    Definition Classes
    Functions
  199. def mkLambda[A, B, C](f: (Ref[A]) ⇒ (Ref[B]) ⇒ Ref[C])(implicit eA: LElem[A], eB: Elem[B]): Ref[(A) ⇒ (B) ⇒ C]

    Permalink
    Definition Classes
    Functions
  200. def mkLambda[A, B](f: (Ref[A]) ⇒ Ref[B], mayInline: Boolean, alphaEquality: Boolean, keepOriginalFunc: Boolean)(implicit eA: LElem[A]): Ref[(A) ⇒ B]

    Permalink
    Definition Classes
    Functions
  201. def mkMethodCall(receiver: Sym, method: Method, args: Seq[AnyRef], neverInvoke: Boolean, isAdapterCall: Boolean, resultElem: Elem[_]): Sym

    Permalink

    Creates new MethodCall node and returns its node ref.

    Creates new MethodCall node and returns its node ref.

    Definition Classes
    MethodCalls
  202. val nInitialDefs: Int

    Permalink
    Definition Classes
    Base
  203. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  204. def newObjEx[A](args: Any*)(implicit eA: Elem[A]): Ref[A]

    Permalink

    Creates new NewObject node and returns its node ref.

    Creates new NewObject node and returns its node ref.

    Definition Classes
    MethodCalls
  205. lazy val noConstPropagationPass: DefaultPass

    Permalink

    Pass configuration which is used to turn-off constant propagation.

    Pass configuration which is used to turn-off constant propagation.

    See also

    beginPass(noCostPropagationPass)

  206. def nodeColor(td: TypeDesc, d: Def[_])(implicit config: GraphVizConfig): String

    Permalink
    Attributes
    protected
    Definition Classes
    ThunksGraphVizExport
  207. def nodeColor(td: TypeDesc): String

    Permalink
    Attributes
    protected
    Definition Classes
    GraphVizExport
  208. final def nodeLabel(parts: String*)(implicit config: GraphVizConfig): String

    Permalink
    Attributes
    protected
    Definition Classes
    GraphVizExport
  209. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  210. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  211. def numeric[T](implicit arg0: ExactNumeric[T]): ExactNumeric[T]

    Permalink

    Return an ExactNumeric for a given type T.

    Return an ExactNumeric for a given type T.

    Definition Classes
    NumericOps
  212. val okMeasureOperationTime: Boolean

    Permalink
    Definition Classes
    GraphBuilding
  213. def okRegisterModules: Boolean

    Permalink

    Whether staged modules should be registered when cake is constructed and initialized.

    Whether staged modules should be registered when cake is constructed and initialized.

    Definition Classes
    Modules
  214. def onReset(): Unit

    Permalink

    Called during resetContext() operation after the core context state has been reset.

    Called during resetContext() operation after the core context state has been reset. Derived classes can override to define application specific initialization. Don't forget to call super method in the beginning of your overriding method.

    Attributes
    protected
    Definition Classes
    GraphBuildingLibraryBase
  215. def opCost(costedValue: Sym, args: Seq[Ref[Int]], opCost: Ref[Int]): Ref[Int]

    Permalink
    Definition Classes
    UniversalOps
  216. def opcodeToBinOp[A](opCode: Byte, eA: Elem[A]): BinOp[A, _]

    Permalink

    returns

    binary operation for the given opCode and type

    Definition Classes
    GraphBuilding
  217. def opcodeToEndoBinOp[T](opCode: Byte, eT: Elem[T]): EndoBinOp[T]

    Permalink

    returns

    binary operation for the given opCode and type

    Definition Classes
    GraphBuilding
  218. implicit final def pairElement[A, B](implicit ea: Elem[A], eb: Elem[B]): Elem[(A, B)]

    Permalink
    Definition Classes
    TypeDescs
  219. def partsIterator(td: TypeDesc): TraversableOnce[TypeDesc] { def seq: scala.collection.TraversableOnce[IRContext.this.TypeDesc]{def seq: scala.collection.TraversableOnce[IRContext.this.TypeDesc]{def seq: scala.collection.TraversableOnce[IRContext.this.TypeDesc]}} }

    Permalink
    Attributes
    protected
    Definition Classes
    GraphVizExport
  220. def patternMatch(s1: Sym, s2: Sym): Nullable[Subst]

    Permalink
    Definition Classes
    Functions
  221. def placeholder[T](implicit eT: LElem[T]): Ref[T]

    Permalink
    Definition Classes
    Base
    Annotations
    @inline()
  222. def propagateBinOp[T, R](op: BinOp[T, R], x: Ref[T], y: Ref[T]): Ref[R]

    Permalink

    Perform constant propagation if enabled and both arguments are Const.

    Perform constant propagation if enabled and both arguments are Const.

    returns

    null if propagation is not done

    Definition Classes
    DefRewriting
  223. def propagateUnOp[T, R](op: UnOp[T, R], x: Ref[T]): Ref[R]

    Permalink

    Perform constant propagation if enabled and argument is Const.

    Perform constant propagation if enabled and argument is Const.

    returns

    null if propagation is not done

    Definition Classes
    DefRewriting
  224. def registerEntityObject(name: String, obj: EntityObject): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Base
  225. def registerModule(moduleInfo: ModuleInfo): Unit

    Permalink

    Called once for each staged module during this cake initialization.

    Called once for each staged module during this cake initialization.

    Attributes
    protected
    Definition Classes
    Modules
  226. implicit def reifyObject[A](obj: Def[A]): Ref[A]

    Permalink

    Implicit injection of new definition (graph node) into universum of nodes with collapsing semantics.

    Implicit injection of new definition (graph node) into universum of nodes with collapsing semantics. If there exists node n in this IR such that obj equals n, then the value of n.self is returned, i.e. the new node obj is collapsed with already existing one. This has an effect of Common Subexpression Elimination (CSE) when an expression tree is transformed to the graph and identical subtrees are collapsed. After a reference to the node is obtained, global rewriting rules are examined and the reference may be replaced with a new one.

    Definition Classes
    Base
  227. def removeIsProven[T, R](f: (Ref[T]) ⇒ Ref[R]): (Ref[T]) ⇒ Ref[R]

    Permalink

    If f returns isValid graph node, then it is filtered out.

    If f returns isValid graph node, then it is filtered out.

    Definition Classes
    GraphBuilding
  228. implicit def repOrderingToOrderingOps[T](x: Ref[T])(implicit n: ExactOrdering[T]): OrderingOpsCls[T]

    Permalink
    Definition Classes
    OrderingOps
  229. implicit def repToThunk[A](block: Ref[A]): Ref[Thunk[A]]

    Permalink
    Definition Classes
    Thunks
  230. def resetContext(): Unit

    Permalink
    Definition Classes
    SigmaDslDefsBase
  231. final def rewriteBinOp[A, R](op: BinOp[A, R], x: Ref[A], y: Ref[A]): Ref[_]

    Permalink

    Rewrites application of given binary operation to the given arguments.

    Rewrites application of given binary operation to the given arguments.

    returns

    null if no rewriting is defined.

    Definition Classes
    DefRewriting
  232. final def rewriteBoolConsts(lhs: Sym, rhs: Sym, ifTrue: (Sym) ⇒ Sym, ifFalse: (Sym) ⇒ Sym, ifEqual: (Sym) ⇒ Sym, ifNegated: (Sym) ⇒ Sym): Sym

    Permalink

    Helper method which defines rewriting rules with boolean constants.

    Helper method which defines rewriting rules with boolean constants.

    Definition Classes
    LogicalOps
    Annotations
    @inline()
  233. def rewriteDef[T](d: Def[T]): Ref[_]

    Permalink

    For performance reasons the patterns are organized in special (non-declarative) way.

    For performance reasons the patterns are organized in special (non-declarative) way. Unfortunately, this is less readable, but gives significant performance boost Look at comments to understand the logic of the rules.

    HOTSPOT: executed for each node of the graph, don't beautify.

    d

    node to be matched against rewrite patterns

    returns

    reference of new node if RW pattern is found and applied null if no rewriting is defined.

    Definition Classes
    GraphBuildingLibraryDefRewriting
  234. def rewriteNonInvokableMethodCall(mc: MethodCall): Ref[_]

    Permalink

    This method is called for each MethodCall node which is about to be added to the graph.

    This method is called for each MethodCall node which is about to be added to the graph. This means mc has been examined by all the rewrite rules, but has not need rewritten. Now, if this method returns null, then mc will be added to the graph. However, in this method, mc can be examined by a second set of RW rules (kind of lower priority rules). These rules kind of context dependent, because at this point we know that the first RW set didn't triggered any rewrite.

    Definition Classes
    MethodCalls
  235. final def rewriteUnOp[A, R](op: UnOp[A, R], x: Ref[A]): Ref[_]

    Permalink

    Rewrites application of given unary operation to the given argument.

    Rewrites application of given unary operation to the given argument.

    returns

    null if no rewriting is defined.

    Definition Classes
    DefRewriting
  236. var saveGraphsInFile: Boolean

    Permalink

    Whether to save calcF and costF graphs in the file given by ScriptNameProp environment variable

    Whether to save calcF and costF graphs in the file given by ScriptNameProp environment variable

    Definition Classes
    GraphBuilding
  237. def shouldEmitCluster(g: AstGraph): Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    GraphVizExport
  238. def showGraphs(graph: AstGraph)(implicit config: GraphVizConfig): Unit

    Permalink
    Definition Classes
    GraphVizExport
  239. def showGraphs(roots: Sym*)(implicit config: GraphVizConfig): Unit

    Permalink
    Definition Classes
    GraphVizExport
  240. def sigmaDslBuilder: Ref[SigmaDslBuilder]

    Permalink

    During compilation represent a global value Global, see also SGlobal type.

    During compilation represent a global value Global, see also SGlobal type.

    Definition Classes
    GraphBuildingSigmaLibrary
    Annotations
    @inline()
  241. val sigmaDslBuilderValue: CostingSigmaDslBuilder.type

    Permalink

    The value of Global ErgoTree operation

  242. def sizeOf[T](value: Ref[T]): Ref[Long]

    Permalink
    Definition Classes
    UniversalOps
  243. def specialPredef: Ref[WSpecialPredefCompanionCtor]

    Permalink
    Definition Classes
    Library
  244. def stagingExceptionMessage(message: String, syms: Seq[Ref[_]]): String

    Permalink

    Prettyprint exception message

    Prettyprint exception message

    Attributes
    protected
    Definition Classes
    Base
  245. def stypeToElem[T <: SType](t: T): Elem[GraphBuilding.stypeToElem.T.WrappedType]

    Permalink

    Translates SType descriptor to Elem descriptor used in graph IR.

    Translates SType descriptor to Elem descriptor used in graph IR. Should be inverse to elemToSType.

    Definition Classes
    GraphBuilding
  246. var substFromCostTable: Boolean

    Permalink

    Whether to create CostOf nodes or substutute costs from CostTable as constants in the graph.

    Whether to create CostOf nodes or substutute costs from CostTable as constants in the graph. true - substitute; false - create CostOf nodes

    Definition Classes
    GraphBuilding
  247. implicit final def sumElement[A, B](implicit ea: Elem[A], eb: Elem[B]): Elem[|[A, B]]

    Permalink
    Definition Classes
    TypeDescs
  248. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  249. def throwInvocationException(whatFailed: String, cause: Throwable, receiver: Sym, m: Method, args: Seq[Any]): Nothing

    Permalink
    Definition Classes
    MethodCalls
  250. implicit val thunkCont: Cont[Thunk]

    Permalink

    Thunk is an instance of container type class Cont.

    Thunk is an instance of container type class Cont.

    Definition Classes
    Thunks
  251. implicit def thunkElement[T](implicit eItem: Elem[T]): Elem[Thunk[T]]

    Permalink
    Definition Classes
    Thunks
  252. val thunkStack: ThunkStack

    Permalink
    Attributes
    protected
    Definition Classes
    Thunks
  253. def thunk_create[A](block: ⇒ Ref[A]): Ref[Thunk[A]]

    Permalink

    Constructs a new thunk node by executing the given block and collecting all the graph node created along the way.

    Constructs a new thunk node by executing the given block and collecting all the graph node created along the way. This methods: 1) starts a new nested ThunkScope, 2) executes the block to obtain resulting graph node 3) schedule thunk body for execution order 4) adds a new ThunkDef node and returns its reference.

    returns

    a reference to the newly created ThunkDef node

    Definition Classes
    Thunks
  254. def thunk_force[A](t: Th[A]): Ref[A]

    Permalink

    Logical force of the thunk.

    Logical force of the thunk. Depending on isInlineThunksOnForce it either inlines the thunk body or creates a new ThunkForce node.

    returns

    a reference to the graph node, which represent the result of the thunk's evaluation.

    Definition Classes
    Thunks
  255. def thunk_map[A, B](t: Th[A], f: Ref[(A) ⇒ B]): Th[B]

    Permalink
    Definition Classes
    Thunks
  256. def thunk_map1[A, B](t: Th[A], f: (Ref[A]) ⇒ Ref[B]): Th[B]

    Permalink
    Definition Classes
    Thunks
  257. def toExp[T](d: Def[T], newSym: ⇒ Ref[T]): Ref[T]

    Permalink

    Updates the universe of symbols and definitions, then rewrites until fix-point

    Updates the universe of symbols and definitions, then rewrites until fix-point

    d

    A new graph node to add to the universe

    newSym

    A symbol that will be used if d doesn't exist in the universe

    returns

    The symbol of the graph which is semantically(up to rewrites) equivalent to d

    Attributes
    protected[scalan]
    Definition Classes
    Base
  258. implicit final def toLazyElem[A](implicit eA: Elem[A]): LElem[A]

    Permalink
    Definition Classes
    TypeDescs
  259. def toRep[A](x: A)(implicit eA: Elem[A]): Ref[A]

    Permalink

    Lifting of data values to IR nodes.

    Lifting of data values to IR nodes.

    Definition Classes
    Base
  260. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  261. def transformProductParam(x: Any, t: Transformer): Any

    Permalink

    Transforms this object into new one by applying t to every Ref inside its structure.

    Transforms this object into new one by applying t to every Ref inside its structure. The structure is build out of Seq, Array, Option and Def values. Other structure items remain unchanged and copied to the new instance. HOTSPOT: don't beautify the code

    Attributes
    protected
    Definition Classes
    Base
  262. def tryConvert[From, To](eFrom: Elem[From], eTo: Elem[To], x: Ref[Def[_]], conv: Ref[(From) ⇒ To]): Ref[To]

    Permalink
    Definition Classes
    UniversalOps
  263. val tuplesCache: AVHashMap[Ref[_], (Ref[_], Ref[_])]

    Permalink
    Definition Classes
    Tuples
  264. def unfoldLambda[A, B](f: Ref[(A) ⇒ B], x: Ref[A]): Ref[B]

    Permalink
    Definition Classes
    Functions
  265. def unfoldLambda[A, B](lam: Lambda[A, B], x: Ref[A]): Ref[B]

    Permalink
    Definition Classes
    Functions
  266. var unfoldWithOriginalFunc: Boolean

    Permalink

    Turns on/off lambda unfolding using original function f stored in the Lambda node.

    Turns on/off lambda unfolding using original function f stored in the Lambda node. If this flag is false then this function cannot be used even if it is present in the node.

    Definition Classes
    Functions
  267. def unrefDelegate[T <: AnyRef](x: Ref[T])(implicit ct: ClassTag[T]): T

    Permalink

    Create delegate instance suitable for method invocation.

    Create delegate instance suitable for method invocation. It is used when T is a class or a trait and the node referred by x doesn't conform to T. This method returns dynamically constructed instance, which conforms to T. Whenever a method of T is called on that instance, the call is intercepted and DelegatedInterceptionHandler.invoke method is called, then a new MethodCall can be constructed (which is befavior by default).

    Attributes
    protected
    Definition Classes
    MethodCalls
  268. def unzipPair[A, B](p: Ref[(A, B)]): (Ref[A], Ref[B])

    Permalink
    Definition Classes
    Tuples
  269. def upcast[To](value: Ref[_])(implicit arg0: Elem[To]): Ref[To]

    Permalink
    Definition Classes
    UniversalOps
  270. def upcastFun[A, B >: A](implicit arg0: Elem[A]): Ref[(A) ⇒ B]

    Permalink
    Definition Classes
    Functions
  271. final def updateSymbolTable[T](s: Ref[T], d: Def[T]): Ref[T]

    Permalink

    Create or find symbol (node Ref) which refers to the given node in the table of all created symbols.

    Create or find symbol (node Ref) which refers to the given node in the table of all created symbols. The d.nodeId is the index in the _symbolTable which is DBuffer (backed by Array)

    returns

    new of existing symbol HOTSPOT: the method should be allocation-free (make it sure by examining the generated Java code)

    Definition Classes
    Base
  272. var useAlphaEquality: Boolean

    Permalink

    Global lambda equality mode used by default.

    Global lambda equality mode used by default. It is used in fun and fun2 lambda builders. If this flag is true then Lambda nodes are equal if they are the same up to renaming of symbols. (see Lambda.equals()). Each Lambda node has independent equality mode flag which is setup in the constructor.

    Definition Classes
    Functions
  273. final def valueFromRep[A](x: Ref[A]): A

    Permalink

    Extract data value from Const node or throw an exception.

    Extract data value from Const node or throw an exception.

    Definition Classes
    Base
    Annotations
    @inline()
  274. def variable[T](implicit eT: LElem[T]): Ref[T]

    Permalink
    Definition Classes
    Base
    Annotations
    @inline()
  275. def verifyIsProven[T](f: Ref[(Context) ⇒ T]): Try[Unit]

    Permalink

    Checks that if SigmaProp.isProven method calls exists in the given Lambda's schedule, then it is the last operation.

  276. implicit lazy val wRTypeAnyElement: Elem[WRType[Any]]

    Permalink
    Definition Classes
    SigmaLibrary
  277. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  278. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  279. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  280. implicit def zipPair[A, B](p: (Ref[A], Ref[B])): Ref[(A, B)]

    Permalink
    Definition Classes
    Tuples

Inherited from GraphBuilding

Inherited from TreeBuilding

Inherited from SigmaLibrary

Inherited from SigmaDslModule

Inherited from SigmaDslDefs

Inherited from SigmaDsl

Inherited from WrappersModule

Inherited from Library

Inherited from CollsModule

Inherited from CollsDefs

Inherited from Colls

Inherited from WrappersModule

Inherited from WRTypesModule

Inherited from WRTypesDefs

Inherited from WRTypes

Inherited from WOptionsModule

Inherited from WOptionsDefs

Inherited from WOptions

Inherited from WSpecialPredefsModule

Inherited from WSpecialPredefsDefs

Inherited from WSpecialPredefs

Inherited from Scalan

Inherited from DefRewriting

Inherited from Modules

Inherited from Entities

Inherited from Thunks

Inherited from IfThenElse

Inherited from Functions

Inherited from ProgramGraphs

Inherited from AstGraphs

Inherited from Transforming

Inherited from UniversalOps

Inherited from Equal

Inherited from OrderingOps

Inherited from LogicalOps

Inherited from UnBinOps

Inherited from NumericOps

Inherited from Tuples

Inherited from MethodCalls

Inherited from GraphVizExport

Inherited from TypeDescs

Inherited from Base

Inherited from AnyRef

Inherited from Any

Ungrouped