src/scripttools/debugging/scripts/commands/up.qs
author Craig Heath <craigh@symbian.org>
Wed, 16 Jun 2010 16:18:05 +0100
branchGCC_SURGE
changeset 26 8776df5ac359
parent 0 1918ee327afb
permissions -rw-r--r--
Bug 2955. Workaround for lack of atomic operations in GCCE standard libraries (fall back to default use of Mutex)

name = "up";

group = "stack";

shortDescription = "Select and print the stack frame above the current one";

longDescription = "";

seeAlso = [ "down", "frame" ];

function execute() {
    scheduleGetContextCount();
    state = 1;
}

function handleResponse(resp) {
    if (state == 1) {
        var count = resp.result;
        var idx = getCurrentFrameIndex() + 1;
        if (idx == count) {
            warning("Already at top (outermost) frame.");
            return;
        }
        setCurrentFrameIndex(idx);
        scheduleGetContextInfo(idx);
        state = 2;
    } else if (state == 2) {
        var info = resp.result;
        setCurrentScriptId(info.scriptId);
        setCurrentLineNumber(info.lineNumber);
        scheduleGetBacktrace();
        state = 3;
    } else if (state == 3) {
        var backtrace = resp.result;
        message("#" + getCurrentFrameIndex() + "  " + backtrace[getCurrentFrameIndex()]);
    }
}