comparison truffle/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/local/SLReadLocalVariableNode.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 3a96086cf698
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.local; 41 package com.oracle.truffle.sl.nodes.local;
42 42
43 import com.oracle.truffle.api.dsl.*; 43 import com.oracle.truffle.api.dsl.NodeField;
44 import com.oracle.truffle.api.frame.*; 44 import com.oracle.truffle.api.dsl.Specialization;
45 import com.oracle.truffle.api.source.*; 45 import com.oracle.truffle.api.frame.FrameSlot;
46 import com.oracle.truffle.sl.nodes.*; 46 import com.oracle.truffle.api.frame.FrameSlotTypeException;
47 import com.oracle.truffle.api.frame.VirtualFrame;
48 import com.oracle.truffle.api.source.SourceSection;
49 import com.oracle.truffle.sl.nodes.SLExpressionNode;
47 50
48 /** 51 /**
49 * Node to read a local variable from a function's {@link VirtualFrame frame}. The Truffle frame API 52 * Node to read a local variable from a function's {@link VirtualFrame frame}. The Truffle frame API
50 * allows to store primitive values of all Java primitive types, and Object values. This means that 53 * allows to store primitive values of all Java primitive types, and Object values. This means that
51 * all SL types that are objects are handled by the {@link #readObject} method. When a local 54 * all SL types that are objects are handled by the {@link #readObject} method. When a local