comparison graal/com.oracle.max.graal.java/src/com/oracle/graal/java/BciBlockMapping.java @ 5060:4ed4295ce15f

Update import statements.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 08 Mar 2012 19:11:12 +0100
parents ed559a528128
children
comparison
equal deleted inserted replaced
5059:ed559a528128 5060:4ed4295ce15f
18 * 18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 */ 22 */
23 package com.oracle.max.graal.java; 23 package com.oracle.graal.java;
24 24
25 import static com.oracle.max.graal.java.bytecode.Bytecodes.*; 25 import static com.oracle.graal.java.bytecode.Bytecodes.*;
26 26
27 import java.util.*; 27 import java.util.*;
28 28
29 29
30 import com.oracle.max.cri.ci.*; 30 import com.oracle.max.cri.ci.*;
31 import com.oracle.max.cri.ri.*; 31 import com.oracle.max.cri.ri.*;
32 import com.oracle.max.graal.compiler.*; 32 import com.oracle.graal.compiler.*;
33 import com.oracle.max.graal.debug.*; 33 import com.oracle.graal.debug.*;
34 import com.oracle.max.graal.graph.*; 34 import com.oracle.graal.graph.*;
35 import com.oracle.max.graal.java.bytecode.*; 35 import com.oracle.graal.java.bytecode.*;
36 import com.oracle.max.graal.nodes.*; 36 import com.oracle.graal.nodes.*;
37 37
38 /** 38 /**
39 * Builds a mapping between bytecodes and basic blocks and builds a conservative control flow 39 * Builds a mapping between bytecodes and basic blocks and builds a conservative control flow
40 * graph. Note that this class serves a similar role to C1's {@code BlockListBuilder}, but makes fewer assumptions about 40 * graph. Note that this class serves a similar role to C1's {@code BlockListBuilder}, but makes fewer assumptions about
41 * what the compiler interface provides. It builds all basic blocks for the control flow graph without requiring the 41 * what the compiler interface provides. It builds all basic blocks for the control flow graph without requiring the