Package

scalan

Permalink

package scalan

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. scalan
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final class AVHashMap[K, V] extends AnyVal

    Permalink

    Allocation free alternative to scala.collection.mutable.Map with similar interface.

    Allocation free alternative to scala.collection.mutable.Map with similar interface. This simplifies optimization of performance critical code.

  2. abstract class Base extends AnyRef

    Permalink

    The Base trait houses common AST nodes.

    The Base trait houses common AST nodes. It also manages a list of encountered definitions which allows for common sub-expression elimination (CSE).

  3. abstract class DFunc[A, B] extends AnyRef

    Permalink

    Function interface which support specialization and thus unboxed invocations.

  4. trait DefRewriting extends AnyRef

    Permalink
  5. class DelayInvokeException extends Exception

    Permalink

    Can be thrown in staged method body to prevent body unfolding.

    Can be thrown in staged method body to prevent body unfolding. When this exception is thrown, the caller can catch it and reify this invocation as MethodCall graph node.

  6. trait Entities extends TypeDescs

    Permalink

    A slice in the Scalan cake with base classes for various descriptors.

  7. trait ExactIntegral[T] extends ExactNumeric[T]

    Permalink

    Type-class which defines the operations on Integral types (Byte, Short, Int, Long, BigInt) with overflow checks.

    Type-class which defines the operations on Integral types (Byte, Short, Int, Long, BigInt) with overflow checks.

    An exception is raised when an overflow is detected. Each concrete instance of this type-class overrides three methods plus, minus, times.

    By default all the methods are implemented by delegating to the corresponding Integral instance from the standard Scala library.

    This trait is used in core IR to avoid implicitly using standard scala implementations.

  8. trait ExactNumeric[T] extends AnyRef

    Permalink

    Numeric operations with overflow checks.

    Numeric operations with overflow checks. Raise exception when overflow is detected. Each instance of this typeclass overrides three methods plus, minus, times. All other methods are implemented by delegating to the corresponding Numeric instance from standard Scala library. This trait is used in core IR to avoid implicitly using standard scala implementations

  9. trait ExactOrdering[T] extends Ordering[T]

    Permalink

    Ordering operations to be used with other Exact traits.

    Ordering operations to be used with other Exact traits. All methods are implemented by delegating to the corresponding Ordering instance from standard Scala library. This trait is used in core IR to avoid implicitly using standard scala implementations.

  10. class ExactOrderingImpl[T] extends ExactOrdering[T]

    Permalink
  11. class Lazy[A] extends AnyRef

    Permalink

    Non-thread safe (but efficient on single thread) immutable lazy value.

    Non-thread safe (but efficient on single thread) immutable lazy value. The block is executed only once.

  12. trait Library extends Scalan with WrappersModule with CollsModule

    Permalink
  13. trait MethodCalls extends Base

    Permalink
  14. case class ModuleInfo(packageName: String, moduleName: String, extension: String = ".scalan") extends Product with Serializable

    Permalink

    Information about generated Special library module.

    Information about generated Special library module. Instances are created in generated code.

    See also

    *Impl.scala files

  15. trait Modules extends Base

    Permalink
  16. final class MutableLazy[A] extends AnyRef

    Permalink

    Non-thread safe (but efficient on single thread) immutable lazy value with reset.

    Non-thread safe (but efficient on single thread) immutable lazy value with reset. The block may execute potentially many times, but only once before each reset.

  17. final class Nullable[+T] extends AnyVal

    Permalink

    Allocation free alternative to scala.Option with similar interface.

    Allocation free alternative to scala.Option with similar interface. Using this in recognizers allows: 1) to avoid allocation of Some(x) 2) reading random memory location (where Some is stored) to access x

  18. abstract class RType[A] extends AnyRef

    Permalink

    Base type for all runtime type descriptors.

    Base type for all runtime type descriptors. Sigma uses type descriptors to represent structure of the data values. Data values of registers and context variables come equipped with type descriptors in order to check the actual type is the same as the type expected by the script.

    Annotations
    @implicitNotFound( "No RType available for ${A}." )
    See also

    getReg, getVar

  19. class Scalan extends TypeDescs with MethodCalls with Tuples with NumericOps with UnBinOps with LogicalOps with OrderingOps with Equal with UniversalOps with Functions with IfThenElse with Transforming with Thunks with Entities with Modules with DefRewriting

    Permalink

    Aggregate cake with all inter-dependent modules assembled together.

    Aggregate cake with all inter-dependent modules assembled together. Each instance of this class contains independent IR context, thus many instances can be created simultaneously. However, the inner types declared in the traits are path-dependant. This in particular means that ctx1.Ref[_] and ctx2.Ref[_] are different types. The typical usage is to create val ctx = new Scalan and then import inner declarations using import ctx._. This way the declaration will be directly available as if they were global declarations. At the same time cake design pattern allow to override many methods and values in classed derived from Scalan, this is significant benefit over *everything is global* design.

  20. trait SigmaLibrary extends Scalan with Library with WrappersModule with SigmaDslModule

    Permalink

    Main trait which represents sigma operations in graph IR cake.

  21. abstract class TypeDescs extends Base

    Permalink
  22. trait WrapSpec extends AnyRef

    Permalink

    Base type for all wrapper specification classes.

    Base type for all wrapper specification classes.

    See also

    OptionWrapSpec as an example

Value Members

  1. object AVHashMap

    Permalink
  2. val EmptyArrayOfInt: Array[Int]

    Permalink

    Immutable empty array of integers, should be used instead of allocating new empty arrays.

  3. val EmptySeqOfInt: Seq[Int]

    Permalink

    Immutable empty Seq[Int] backed by empty array.

    Immutable empty Seq[Int] backed by empty array. You should prefer using it instead of Seq[Int]() or Seq.empty[Int]

  4. object ExactIntegral

    Permalink

    ExactIntegral instances for all types.

  5. object ExactNumeric

    Permalink
  6. object ExactOrdering extends Serializable

    Permalink

    ExactOrdering instances for all types.

  7. object GraphIRReflection

    Permalink

    Registrations of reflection metadata for graph-ir module (see README.md).

    Registrations of reflection metadata for graph-ir module (see README.md). For each class of this module that needs reflection metadata, we register a class entry with the necessary information. Only information that is needed at runtime is registered.

  8. object Lazy

    Permalink
  9. object MutableLazy

    Permalink
  10. object Nullable

    Permalink
  11. object OverloadHack

    Permalink

    Scala specific trick to appease erasure of methods argument types.

    Scala specific trick to appease erasure of methods argument types. Example usage: def m1(l: List[Int])(implicit o: Overloaded1) def m2(l: List[String])(implicit o: Overloaded2) Without the implicit arguments the methods would have identical signatures after erasure, which is a compilation time error.

  12. object RType

    Permalink
  13. def emptyDBufferOfInt: Buffer[Int]

    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. Note, this method allocates a new Buffer, but the underlying empty array is shared. This is safe because empty arrays are immutable.

  14. package meta

    Permalink
  15. package primitives

    Permalink
  16. package reflection

    Permalink

    Contains the Sigma Reflection API.

    Contains the Sigma Reflection API. Sigma reflection is a mechanism for obtaining metadata about classes, methods, fields, etc. at runtime. It is used by kiama to rewrite ErgoTree expressions. It is also used by the ErgoTree interpreter to implement MethodCall nodes.

    The Sigma Reflection API has two implementations: 1) based on the Java Reflection API 2) based on Sigma Reflection metadata declared in the StaticImpl.scala file

  17. implicit def rtypeToClassTag[A](implicit t: RType[A]): ClassTag[A]

    Permalink

    Allows implicit resolution to find appropriate instance of ClassTag in the scope where RType is implicitly available.

  18. package staged

    Permalink
  19. package util

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped