comparison graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/extended/LocationNode.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 844cfee4041a
children e4d6c613d552
comparison
equal deleted inserted replaced
15197:06bfcf5f941d 15198:2c0cfbf454b5
21 * questions. 21 * questions.
22 */ 22 */
23 package com.oracle.graal.nodes.extended; 23 package com.oracle.graal.nodes.extended;
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.spi.*; 30 import com.oracle.graal.nodes.spi.*;
30 import com.oracle.graal.nodes.type.*;
31 31
32 /** 32 /**
33 * A location for a memory access in terms of the kind of value accessed and how to access it. All 33 * A location for a memory access in terms of the kind of value accessed and how to access it. All
34 * locations have the form [base + location], where base is a node and location is defined by 34 * locations have the form [base + location], where base is a node and location is defined by
35 * subclasses of the {@link LocationNode}. 35 * subclasses of the {@link LocationNode}.