summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/backend/WorklistAlgorithm.scala
blob: 6676c820bc9eaa3e3446726912104d640b3828f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* NSC -- new scala compiler
 * Copyright 2005 LAMP/EPFL
 * @author  Martin Odersky
 */

// $Id$

package scala.tools.nsc.backend;

import scala.tools.nsc.ast._;
import scala.collection.mutable.MutableList;

/**
 * Simple implementation of a worklist algorithm. A processing
 * function is applied repeatedly to the first element in the
 * worklist, as long as the stack is not empty.
 *
 * The client class should mix-in this trait and initialize the
 * worklist field and define the processElement method. Then call
 * the 'run' method providing a function that initializes the
 * worklist.
 *
 * @see scala.tools.nsc.backend.icode.Linearizers
 */
trait WorklistAlgorithm {
  type Elem;
  type WList <: MutableList[Elem];

  val worklist: WList;

  /**
   * Run the iterative algorithm until the worklist
   * remains empty. The initializer is run once before
   * the loop starts and should initialize the worklist.
   */
  def run(initWorklist: => Unit) = {
    initWorklist;

    while (!(worklist.length == 0))
      processElement(dequeue);
  }

  /**
   * Process the current element from the worklist.
   */
  def processElement(e: Elem): Unit;

  /** Remove and return the first element to be processed from the worklist. */
  def dequeue: Elem;
}