comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/impl/DefaultTruffleRuntime.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
133 133
134 @Override 134 @Override
135 public FrameInstance getCurrentFrame() { 135 public FrameInstance getCurrentFrame() {
136 return currentFrames.get(); 136 return currentFrames.get();
137 } 137 }
138
139 public void notifyTransferToInterpreter() {
140 }
138 } 141 }