comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/instrument/TruffleEventListener.java @ 19521:b5467bb34b24

Truffle/Instrumentation: some variable renaming for clarity
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Thu, 19 Feb 2015 11:42:03 -0800
parents 128586040207
children
comparison
equal deleted inserted replaced
19520:b08cf18b9f0a 19521:b5467bb34b24
34 public interface TruffleEventListener { 34 public interface TruffleEventListener {
35 35
36 /** 36 /**
37 * Receive notification that an AST node's execute method is about to be called. 37 * Receive notification that an AST node's execute method is about to be called.
38 */ 38 */
39 void enter(Node node, VirtualFrame frame); 39 void enter(Node node, VirtualFrame vFrame);
40 40
41 /** 41 /**
42 * Receive notification that an AST Node's {@code void}-valued execute method has just returned. 42 * Receive notification that an AST Node's {@code void}-valued execute method has just returned.
43 */ 43 */
44 void returnVoid(Node node, VirtualFrame frame); 44 void returnVoid(Node node, VirtualFrame vFrame);
45 45
46 /** 46 /**
47 * Receive notification that an AST Node'sexecute method has just returned a value (boxed if 47 * Receive notification that an AST Node'sexecute method has just returned a value (boxed if
48 * primitive). 48 * primitive).
49 */ 49 */
50 void returnValue(Node node, VirtualFrame frame, Object result); 50 void returnValue(Node node, VirtualFrame vFrame, Object result);
51 51
52 /** 52 /**
53 * Receive notification that an AST Node's execute method has just thrown an exception. 53 * Receive notification that an AST Node's execute method has just thrown an exception.
54 */ 54 */
55 void returnExceptional(Node node, VirtualFrame frame, Exception exception); 55 void returnExceptional(Node node, VirtualFrame vFrame, Exception exception);
56 56
57 } 57 }