comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/CallNode.java @ 15398:70e4316c5785

Split HotSpotLoweringProvider into interface and implementation class.
author Roland Schatz <roland.schatz@oracle.com>
date Fri, 25 Apr 2014 13:56:27 +0200
parents f675818d9ad0
children
comparison
equal deleted inserted replaced
15065:f5ef63b5b5ed 15398:70e4316c5785
23 * questions. 23 * questions.
24 */ 24 */
25 package com.oracle.truffle.api.nodes; 25 package com.oracle.truffle.api.nodes;
26 26
27 import com.oracle.truffle.api.*; 27 import com.oracle.truffle.api.*;
28 import com.oracle.truffle.api.CompilerDirectives.CompilationFinal;
29 import com.oracle.truffle.api.frame.FrameInstance.FrameAccess;
30 import com.oracle.truffle.api.frame.*; 28 import com.oracle.truffle.api.frame.*;
31 29
32 /** 30 /**
33 * Represents a call to a {@link CallTarget} in the Truffle AST. In addition to calling the 31 * Represents a call to a {@link CallTarget} in the Truffle AST. In addition to calling the
34 * {@link CallTarget}, this {@link Node} enables the runtime system to implement further 32 * {@link CallTarget}, this {@link Node} enables the runtime system to implement further