comparison graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/nodes/call/SLAbstractDispatchNode.java @ 15393:1d3c23e675ed

fixed some minor javadoc formatting issues
author Doug Simon <doug.simon@oracle.com>
date Sun, 27 Apr 2014 17:29:19 +0200
parents 64dcb92ee75a
children
comparison
equal deleted inserted replaced
15392:a9df38ce8fb7 15393:1d3c23e675ed
42 * <li>After parsing: {@code I->U} 42 * <li>After parsing: {@code I->U}
43 * <li>After execution of function {@code f1}: {@code I->D(f1)->U} 43 * <li>After execution of function {@code f1}: {@code I->D(f1)->U}
44 * <li>After execution of function {@code f2}: {@code I->D(f1)->D(f2)->U} 44 * <li>After execution of function {@code f2}: {@code I->D(f1)->D(f2)->U}
45 * <li>After execution of function {@code f3}: {@code I->G} 45 * <li>After execution of function {@code f3}: {@code I->G}
46 * </ol> 46 * </ol>
47 * */ 47 */
48 public abstract class SLAbstractDispatchNode extends Node { 48 public abstract class SLAbstractDispatchNode extends Node {
49 49
50 protected static final int INLINE_CACHE_SIZE = 2; 50 protected static final int INLINE_CACHE_SIZE = 2;
51 51
52 protected abstract Object executeDispatch(VirtualFrame frame, SLFunction function, Object[] arguments); 52 protected abstract Object executeDispatch(VirtualFrame frame, SLFunction function, Object[] arguments);