comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/SplicedNode.java @ 20909:f96165ecb6f1

Truffle/Instrumentation: rename the most recently created kind of Instrument, formerly "ToolNodeblahblah...". It is now defined by SpliceInstrumentListener. This listener allows the client to create an instrument that will *splied* a client-supplied AST fragment directly into a Probe's "instrumentation chain", and this directly into the flow of Truffle execution (with full optimization).
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Mon, 13 Apr 2015 15:33:45 -0700
parents graal/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/ToolNode.java@2e3cc2a27711
children
comparison
equal deleted inserted replaced
20908:f166d264af9f 20909:f96165ecb6f1
1 /*
2 * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25 package com.oracle.truffle.api.instrument;
26
27 import com.oracle.truffle.api.frame.*;
28 import com.oracle.truffle.api.nodes.*;
29
30 /**
31 * Root of a client-provided AST fragment that can be spliced directly into an executing AST via
32 * {@link Instrument#create(SpliceInstrumentListener, String)}.
33 * <p>
34 * <strong>Note:</strong> Instances of this class will in some situations be cloned by the
35 * instrumentation platform for attachment at equivalent locations in cloned ASTs.
36 */
37 public abstract class SplicedNode extends Node implements InstrumentationNode.TruffleEvents, InstrumentationNode {
38
39 public void enter(Node node, VirtualFrame vFrame) {
40 }
41
42 public void returnVoid(Node node, VirtualFrame vFrame) {
43 }
44
45 public void returnValue(Node node, VirtualFrame vFrame, Object result) {
46 }
47
48 public void returnExceptional(Node node, VirtualFrame vFrame, Exception exception) {
49 }
50
51 public String instrumentationInfo() {
52 return null;
53 }
54
55 }