org.kiama.util

Profiler

trait Profiler extends bitbucket.inkytonik.dsprofile.Profiler

Kiama-specific additions to dsprofile profilers.

Source
Profiler.scala
Linear Supertypes
bitbucket.inkytonik.dsprofile.Profiler, Values, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Profiler
  2. Profiler
  3. Values
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. case class Child(i: Int) extends Step with Product with Serializable

    A step to child i of the current node, counting from zero.

  2. case class Dep(step: Step, tipe: Value, attribute: Value) extends Product with Serializable

    Dependence record saying that the source attribute depends on attribute of a node with type type that is the given step away.

  3. case class Record extends Product with Serializable

    Definition Classes
    Values
  4. abstract class Step extends AnyRef

    A single step in the evaluation of an attribute.

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. object Next extends Step with Product with Serializable

    A step to the previous node in a sequence.

  7. object Other extends Step with Product with Serializable

    A step to a node that doesn't fit into any of the other categories.

  8. object Parent extends Step with Product with Serializable

    A step to the parent of the current node.

  9. object Prev extends Step with Product with Serializable

    A step to the previous node in a sequence.

  10. object Self extends Step with Product with Serializable

    A step nowhere.

  11. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  12. def checkFor(record: Record, dim: Dimension, eventtype: String, needed: Dimension)(f: (Value) ⇒ Value): Value

    Definition Classes
    Values
  13. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  14. def dimValue(record: Record, dim: Dimension): Value

    Support Kiama-specific profiling dimensions.

    Support Kiama-specific profiling dimensions.

    Definition Classes
    Profiler → Profiler → Values
  15. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  18. def finishReport(): Unit

    Definition Classes
    Values
  19. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  20. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  21. def includeTimings: Boolean

    Definition Classes
    Profiler
  22. def isEventType(record: Record, eventtype: String): Boolean

    Definition Classes
    Values
  23. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  24. def nanoToMs(nano: Long): Long

    Definition Classes
    Profiler
  25. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  26. final def notify(): Unit

    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  28. def output(str: String): Unit

    Definition Classes
    Values
  29. def outputln(str: String): Unit

    Definition Classes
    Values
  30. def parseProfileOption(value: String): Seq[Dimension]

    Definition Classes
    Profiler
  31. def percent(v: Long, total: Long): String

    Definition Classes
    Profiler
  32. def printDependencyGraph(record: Record, dim: Dimension): Unit

    Print the dependency graph for the attribute evaluation represented by record.

    Print the dependency graph for the attribute evaluation represented by record. The output is in dot form.

  33. def printReports(totalTime: Long, dimensionNames: Seq[Dimension], records: List[Record]): Unit

    Definition Classes
    Profiler
  34. var printTables: Boolean

    Definition Classes
    Values
  35. def profile[T](computation: ⇒ T, dimensionNames: Dimension*): T

    Definition Classes
    Profiler
  36. def profileStart(): Unit

    Definition Classes
    Profiler
  37. def profileStop(): (Seq[Dimension]) ⇒ Unit

    Definition Classes
    Profiler
  38. def profileStop(dimensionNames: Seq[Dimension]): Unit

    Definition Classes
    Profiler
  39. def profileStopInteractive(): Unit

    Definition Classes
    Profiler
  40. def startReport(dimensionNames: Seq[Dimension]): Unit

    Take any actions that need to be done at the start of reporting.

    Take any actions that need to be done at the start of reporting.

    Definition Classes
    Profiler → Values
  41. var startTime: Long

    Definition Classes
    Profiler
  42. def subjectsToStep(src: Any, dst: Any): Step

    Summarise the single step between two nodes at which attributes have been evaluated.

  43. def summariseAlongDims(dimensionNames: Seq[Dimension], records: List[Record], nrecords: Int, profiledTime: Long): Unit

    Definition Classes
    Profiler
  44. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  45. def time[T](computation: ⇒ T, warmup: Int, n: Int, discard: Int): Unit

    Definition Classes
    Profiler
  46. def toString(): String

    Definition Classes
    AnyRef → Any
  47. def trace(predicate: (Event) ⇒ Boolean): Unit

    Definition Classes
    Profiler
  48. def valueToString(a: Value): String

    Definition Classes
    Values
  49. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from bitbucket.inkytonik.dsprofile.Profiler

Inherited from Values

Inherited from AnyRef

Inherited from Any

Ungrouped