comparison graal/com.oracle.max.graal.hotspot/src/com/oracle/graal/hotspot/nodes/TailcallNode.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.hotspot.nodes; 23 package com.oracle.graal.hotspot.nodes;
24 24
25 import java.lang.reflect.*; 25 import java.lang.reflect.*;
26 import java.util.*; 26 import java.util.*;
27 27
28 import com.oracle.max.cri.ci.*; 28 import com.oracle.max.cri.ci.*;
29 import com.oracle.max.cri.ri.*; 29 import com.oracle.max.cri.ri.*;
30 import com.oracle.max.graal.compiler.gen.*; 30 import com.oracle.graal.compiler.gen.*;
31 import com.oracle.max.graal.hotspot.*; 31 import com.oracle.graal.hotspot.*;
32 import com.oracle.max.graal.hotspot.target.amd64.*; 32 import com.oracle.graal.hotspot.target.amd64.*;
33 import com.oracle.max.graal.java.*; 33 import com.oracle.graal.java.*;
34 import com.oracle.max.graal.nodes.*; 34 import com.oracle.graal.nodes.*;
35 import com.oracle.max.graal.nodes.spi.*; 35 import com.oracle.graal.nodes.spi.*;
36 import com.oracle.max.graal.nodes.type.*; 36 import com.oracle.graal.nodes.type.*;
37 37
38 /** 38 /**
39 * Performs a tail call to the specified target compiled method, with the parameter taken from the supplied FrameState. 39 * Performs a tail call to the specified target compiled method, with the parameter taken from the supplied FrameState.
40 */ 40 */
41 public class TailcallNode extends FixedWithNextNode implements LIRLowerable { 41 public class TailcallNode extends FixedWithNextNode implements LIRLowerable {