comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/RootNode.java @ 15093:5634b199c4da

Truffle: API-change: renamed CallNode to DirectCallNode and added IndirectCallNode.
author Christian Humer <christian.humer@gmail.com>
date Mon, 14 Apr 2014 20:32:25 +0200
parents 1422f0bd55e3
children 04703cff4ef2
comparison
equal deleted inserted replaced
15092:c73ce0dd3583 15093:5634b199c4da
65 throw new UnsupportedOperationException(); 65 throw new UnsupportedOperationException();
66 } 66 }
67 67
68 /** 68 /**
69 * Returns <code>true</code> if this {@link RootNode} can be split. A {@link RootNode} can be 69 * Returns <code>true</code> if this {@link RootNode} can be split. A {@link RootNode} can be
70 * split inside of a {@link CallTarget} that is invoked using a {@link CallNode}. If this method 70 * split inside of a {@link CallTarget} that is invoked using a {@link DirectCallNode}. If this method
71 * returns <code>true</code> a proper implementation of {@link #split()} must also be provided. 71 * returns <code>true</code> a proper implementation of {@link #split()} must also be provided.
72 * This method is intended to be overridden by a subclass. 72 * This method is intended to be overridden by a subclass.
73 * 73 *
74 * @return <code>true</code> if splittable else <code>false</code>. 74 * @return <code>true</code> if splittable else <code>false</code>.
75 */ 75 */