comparison truffle/com.oracle.truffle.sl/src/com/oracle/truffle/sl/builtins/SLStackTraceBuiltin.java @ 22157:dc83cc1f94f2

Using fully qualified imports
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Wed, 16 Sep 2015 11:33:22 +0200
parents 503529c65456
children 8dddde8b20d4
comparison
equal deleted inserted replaced
22156:50056a161d7f 22157:dc83cc1f94f2
38 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 38 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
39 * SOFTWARE. 39 * SOFTWARE.
40 */ 40 */
41 package com.oracle.truffle.sl.builtins; 41 package com.oracle.truffle.sl.builtins;
42 42
43 import com.oracle.truffle.api.*; 43 import com.oracle.truffle.api.CallTarget;
44 import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary; 44 import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary;
45 import com.oracle.truffle.api.dsl.*; 45 import com.oracle.truffle.api.RootCallTarget;
46 import com.oracle.truffle.api.frame.*; 46 import com.oracle.truffle.api.Truffle;
47 import com.oracle.truffle.api.dsl.Specialization;
48 import com.oracle.truffle.api.frame.Frame;
49 import com.oracle.truffle.api.frame.FrameDescriptor;
50 import com.oracle.truffle.api.frame.FrameInstance;
47 import com.oracle.truffle.api.frame.FrameInstance.FrameAccess; 51 import com.oracle.truffle.api.frame.FrameInstance.FrameAccess;
48 import com.oracle.truffle.api.nodes.*; 52 import com.oracle.truffle.api.frame.FrameInstanceVisitor;
49 import com.oracle.truffle.api.source.*; 53 import com.oracle.truffle.api.frame.FrameSlot;
54 import com.oracle.truffle.api.nodes.NodeInfo;
55 import com.oracle.truffle.api.nodes.RootNode;
56 import com.oracle.truffle.api.source.SourceSection;
50 57
51 /** 58 /**
52 * Returns a string representation of the current stack. This includes the {@link CallTarget}s and 59 * Returns a string representation of the current stack. This includes the {@link CallTarget}s and
53 * the contents of the {@link Frame}. Note that this is implemented as a slow path by passing 60 * the contents of the {@link Frame}. Note that this is implemented as a slow path by passing
54 * {@code true} to {@link FrameInstance#getFrame(FrameAccess, boolean)}. 61 * {@code true} to {@link FrameInstance#getFrame(FrameAccess, boolean)}.