comparison truffle/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/SLExpressionNode.java @ 22157:dc83cc1f94f2

Using fully qualified imports
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 16 Sep 2015 11:33:22 +0200
parents 503529c65456
children 20380d1d41f2
comparison
equal deleted inserted replaced
22156:50056a161d7f 22157:dc83cc1f94f2
38 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 38 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
39 * SOFTWARE. 39 * SOFTWARE.
40 */ 40 */
41 package com.oracle.truffle.sl.nodes; 41 package com.oracle.truffle.sl.nodes;
42 42
43 import com.oracle.truffle.api.dsl.*; 43 import com.oracle.truffle.api.dsl.TypeSystemReference;
44 import com.oracle.truffle.api.frame.*; 44 import com.oracle.truffle.api.frame.VirtualFrame;
45 import com.oracle.truffle.api.instrument.ProbeNode.WrapperNode; 45 import com.oracle.truffle.api.instrument.ProbeNode.WrapperNode;
46 import com.oracle.truffle.api.nodes.*; 46 import com.oracle.truffle.api.nodes.NodeInfo;
47 import com.oracle.truffle.api.source.*; 47 import com.oracle.truffle.api.nodes.UnexpectedResultException;
48 import com.oracle.truffle.sl.nodes.instrument.*; 48 import com.oracle.truffle.api.source.SourceSection;
49 import com.oracle.truffle.sl.runtime.*; 49 import com.oracle.truffle.sl.nodes.instrument.SLExpressionWrapperNode;
50 import com.oracle.truffle.sl.runtime.SLFunction;
50 51
51 /** 52 /**
52 * Base class for all SL nodes that produce a value and therefore benefit from type specialization. 53 * Base class for all SL nodes that produce a value and therefore benefit from type specialization.
53 * The annotation {@link TypeSystemReference} specifies the SL types. Specifying it here defines the 54 * The annotation {@link TypeSystemReference} specifies the SL types. Specifying it here defines the
54 * type system for all subclasses. 55 * type system for all subclasses.