summaryrefslogtreecommitdiff
path: root/sources/scalac/backend/jvm/GenJVMBCELPhase.java
blob: 3d1b50a77ef77903b17c93a40e43c88209891a73 (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
/*     ____ ____  ____ ____  ______                                     *\
**    / __// __ \/ __// __ \/ ____/    SOcos COmpiles Scala             **
**  __\_ \/ /_/ / /__/ /_/ /\_ \       (c) 2002, LAMP/EPFL              **
** /_____/\____/\___/\____/____/                                        **
\*                                                                      */

// $Id$

package scalac.backend.jvm;

import scalac.Global;
import scalac.Phase;
import scalac.PhaseDescriptor;
import scalac.Unit;


/**
 * Phase to generate Java bytecodes using the BCEL library.
 *
 * @author Michel Schinz
 * @version 1.0
 */

public class GenJVMBCELPhase extends Phase {

    //########################################################################
    // Private Fields

    /** The tree to code translator */
    private final GenJVMBCEL translator;

    //########################################################################
    // Public Constructors

    /** Initializes this instance. */
    public GenJVMBCELPhase(Global global, PhaseDescriptor descriptor) {
        super(global, descriptor);
        this.translator = new GenJVMBCEL(global);
    }

    //########################################################################
    // Public Methods

    /** Applies this phase to the given compilation units. */
    public void apply(Unit[] units) {
        for (int i = 0; i < units.length; i++) translator.translate(units[i]);
    }

    //########################################################################
}