comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/TruffleRuntime.java @ 16535:ada0a7729b6f

Truffle: introduce debug option to print the stack trace when transferring to the interpreter
author Andreas Woess <andreas.woess@jku.at>
date Wed, 16 Jul 2014 15:18:48 +0200
parents f6ac86d3334e
children 534a87f866dc
comparison
equal deleted inserted replaced
16534:4aaa97f42b92 16535:ada0a7729b6f
129 * Accesses the current frame, i.e., the frame of the closest {@link CallTarget}. It is 129 * Accesses the current frame, i.e., the frame of the closest {@link CallTarget}. It is
130 * important to note that this {@link FrameInstance} supports only slow path access. 130 * important to note that this {@link FrameInstance} supports only slow path access.
131 */ 131 */
132 FrameInstance getCurrentFrame(); 132 FrameInstance getCurrentFrame();
133 133
134 /**
135 * Internal API method. Do not use.
136 */
137 void notifyTransferToInterpreter();
134 } 138 }