org.jruby.truffle.language.globals.ReadLastBacktraceNode Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2015, 2017 Oracle and/or its affiliates. All rights reserved. This
* code is released under a tri EPL/GPL/LGPL license. You can use it,
* redistribute it and/or modify it under the terms of the:
*
* Eclipse Public License version 1.0
* GNU General Public License version 2
* GNU Lesser General Public License version 2.1
*/
package org.jruby.truffle.language.globals;
import com.oracle.truffle.api.CompilerDirectives;
import com.oracle.truffle.api.frame.VirtualFrame;
import com.oracle.truffle.api.profiles.ConditionProfile;
import org.jruby.truffle.language.RubyNode;
import org.jruby.truffle.language.dispatch.CallDispatchHeadNode;
import org.jruby.truffle.language.dispatch.DispatchHeadNodeFactory;
public class ReadLastBacktraceNode extends RubyNode {
@Child private ReadThreadLocalGlobalVariableNode getLastExceptionNode;
@Child private CallDispatchHeadNode getBacktraceNode;
private final ConditionProfile lastExceptionNilProfile = ConditionProfile.createBinaryProfile();
@Override
public Object execute(VirtualFrame frame) {
final Object lastException = getGetLastExceptionNode().execute(frame);
if (lastExceptionNilProfile.profile(lastException == nil())) {
return nil();
}
return getGetBacktraceNode().call(frame, lastException, "backtrace");
}
@Override
public Object isDefined(VirtualFrame frame) {
return coreStrings().GLOBAL_VARIABLE.createInstance();
}
private ReadThreadLocalGlobalVariableNode getGetLastExceptionNode() {
if (getLastExceptionNode == null) {
CompilerDirectives.transferToInterpreterAndInvalidate();
getLastExceptionNode = insert(new ReadThreadLocalGlobalVariableNode("$!", true));
}
return getLastExceptionNode;
}
private CallDispatchHeadNode getGetBacktraceNode() {
if (getBacktraceNode == null) {
CompilerDirectives.transferToInterpreterAndInvalidate();
getBacktraceNode = insert(DispatchHeadNodeFactory.createMethodCall());
}
return getBacktraceNode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy