comparison graal/com.oracle.graal.graph/src/com/oracle/graal/graph/spi/Canonicalizable.java @ 21556:48c1ebd24120

renamed com.oracle.graal.api[meta|code] modules to com.oracle.jvmci.[meta|code] (JBS:GRAAL-53)
author Doug Simon <doug.simon@oracle.com>
date Wed, 27 May 2015 00:36:16 +0200
parents d5042bcd422f
children 0e095e2c24e2
comparison
equal deleted inserted replaced
21555:d12eaef9af72 21556:48c1ebd24120
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.graal.graph.spi; 23 package com.oracle.graal.graph.spi;
24 24
25 import com.oracle.graal.api.meta.*;
26 import com.oracle.graal.graph.*; 25 import com.oracle.graal.graph.*;
26 import com.oracle.jvmci.meta.*;
27 27
28 /** 28 /**
29 * Nodes can implement {@link Canonicalizable} or one of the two sub-interfaces {@link Unary} and 29 * Nodes can implement {@link Canonicalizable} or one of the two sub-interfaces {@link Unary} and
30 * {@link Binary} to provide local optimizations like constant folding and strength reduction. 30 * {@link Binary} to provide local optimizations like constant folding and strength reduction.
31 * Implementations should return a replacement that is always semantically correct for the given 31 * Implementations should return a replacement that is always semantically correct for the given