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

// $Id$

package scalac.backend.jvm;

import scalac.Global;
import scalac.Unit;
import scalac.PhaseDescriptor;
import scalac.ApplicationError;


public class GenJVMBCELPhase extends PhaseDescriptor {

    public String name () {
        return "genjvm-bcel";
    }

    public String description () {
        return "generate JVM bytecodes";
    }

    public String taskDescription() {
        return "generated JVM code";
    }

    public void apply(Global global) {
        for (int i = 0; i < global.units.length; i++)
            apply(global.units[i]);
    }

    public void apply(Unit unit) {
        new GenJVMBCEL(unit.global).translate(unit);
    }
}