comparison truffle/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/instrument/SLStatementWrapperNode.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 c896a8e70777
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.instrument; 41 package com.oracle.truffle.sl.nodes.instrument;
42 42
43 import com.oracle.truffle.api.frame.*; 43 import com.oracle.truffle.api.frame.VirtualFrame;
44 import com.oracle.truffle.api.instrument.*; 44 import com.oracle.truffle.api.instrument.Instrument;
45 import com.oracle.truffle.api.instrument.KillException;
46 import com.oracle.truffle.api.instrument.Probe;
47 import com.oracle.truffle.api.instrument.ProbeNode;
45 import com.oracle.truffle.api.instrument.ProbeNode.WrapperNode; 48 import com.oracle.truffle.api.instrument.ProbeNode.WrapperNode;
46 import com.oracle.truffle.api.nodes.*; 49 import com.oracle.truffle.api.nodes.Node;
47 import com.oracle.truffle.sl.nodes.*; 50 import com.oracle.truffle.api.nodes.NodeCost;
51 import com.oracle.truffle.api.nodes.NodeInfo;
52 import com.oracle.truffle.sl.nodes.SLStatementNode;
48 53
49 /** 54 /**
50 * A Truffle node that can be inserted into a Simple AST (assumed not to have executed yet) to 55 * A Truffle node that can be inserted into a Simple AST (assumed not to have executed yet) to
51 * enable "instrumentation" of a {@link SLStatementNode}. Tools wishing to interact with AST 56 * enable "instrumentation" of a {@link SLStatementNode}. Tools wishing to interact with AST
52 * execution may attach {@link Instrument}s to the {@link Probe} uniquely associated with the 57 * execution may attach {@link Instrument}s to the {@link Probe} uniquely associated with the