comparison graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/ProxyNode.java @ 15198:2c0cfbf454b5

Move LIRTypeTool and Stamp to graal.compiler.common.
author Josef Eisl <josef.eisl@jku.at>
date Thu, 17 Apr 2014 17:28:20 +0200
parents df2ef5204f2b
children a039ae7e0e50
comparison
equal deleted inserted replaced
15197:06bfcf5f941d 15198:2c0cfbf454b5
21 * questions. 21 * questions.
22 */ 22 */
23 package com.oracle.graal.nodes; 23 package com.oracle.graal.nodes;
24 24
25 import com.oracle.graal.api.meta.*; 25 import com.oracle.graal.api.meta.*;
26 import com.oracle.graal.compiler.common.type.*;
26 import com.oracle.graal.graph.*; 27 import com.oracle.graal.graph.*;
27 import com.oracle.graal.graph.Node.ValueNumberable; 28 import com.oracle.graal.graph.Node.ValueNumberable;
28 import com.oracle.graal.nodes.calc.*; 29 import com.oracle.graal.nodes.calc.*;
29 import com.oracle.graal.nodes.extended.*; 30 import com.oracle.graal.nodes.extended.*;
30 import com.oracle.graal.nodes.type.*;
31 31
32 /** 32 /**
33 * A proxy is inserted at loop exits for any value that is created inside the loop (i.e. was not 33 * A proxy is inserted at loop exits for any value that is created inside the loop (i.e. was not
34 * live on entry to the loop) and is (potentially) used after the loop. 34 * live on entry to the loop) and is (potentially) used after the loop.
35 */ 35 */