エピソード

デフラグ ツール #170 - デバッガー - JavaScript スクリプト

Defrag Toolsこのエピソードでは、Andrew Richards が Windows チームのデバッグ ツールから Andy Luhrs と Bill Messmerします。 WDK および SDK ビルド 14951 以降で使用できる WinDbg の新しい JavaScript 拡張機能とスクリプト機能について説明します。

Bill は、これらのエピソードで以前にデバッガー オブジェクト モデルを利用しました。

タイムライン:

[00:00] ようこそと紹介
[00:24] 新しい SDK ドロップ
[00:29] JavaScript の 理由
[02:07] 新しいコマンド
[03:50] Visual Studio Code
[04:00] 例 - Hello World
[07:15] デバッガーの既定の名前空間
[09:07] 例 - すべてのスレッドを印刷する
[10:26] 例 - 条件付きブレークポイント
[18:13] 'g' vs. 'gc' – Andrew was right! 'gc' は、開始したのと同じ方法で実行を再開します。 したがって、'p' にヒットし、その中に 'gc' が含まれる条件付きブレークポイントにヒットすると、'gc' は最初の 'p' を終了するだけです。
[20:40] 例 - 一意のスタック
[34:40] 例 - 加算

質問/コメント マイクロソフトにメールを送信する (defragtools@microsoft.com)

JavaScript MSDN Docs:

一意のスタックの例 (右側):

"use strict";

クラス __stackEntry { constructor(frameString) { this.threads = []; this.frameString = frameString; this.children = new Map(); }

display(indent) 
{
    for (var child of this.children.values())
    {
        host.diagnostics.debugLog(indent, child.frameString, " [Threads In Branch: ");
        for (var thread of child.threads)
        {
            host.diagnostics.debugLog(thread.Id, " ");
        }
        host.diagnostics.debugLog("]\n");
        child.display(indent + "    ");
    }
}

}

クラス __stackMap { constructor(process) { this.__process = process; this.__root = new __stackEntry(");this.build();}

build()
{
    for (var thread of this.__process.Threads)
    {
        var current = this.__root;
        var frameNum = 0;

        var frameCount = thread.Stack.Frames.Count();
        for (var frameNum = frameCount - 1; frameNum >= 0; --frameNum) {
            var frame = thread.Stack.Frames[frameNum];
            var frameString = frame.toString();
            if (current.children.has(frameString)) {
                current = current.children.get(frameString);
                current.threads.push(thread);
            }
            else {
                var newEntry = new __stackEntry(frameString);
                current.children.set(frameString, newEntry);
                current = newEntry;
                current.threads.push(thread);
            }
        }
    }
}

findEntry(thread)
{
    var current = this.__root;
    var frameCount = thread.Stack.Frames.Count();
    for (var frameNum = frameCount - 1; frameNum >= 0; --frameNum)
    {
        var frame = thread.Stack.Frames[frameNum];
        var frameString = frame.toString();
        if (!current.children.has(frameString))
        {
            return null;
        }
        current = current.children.get(frameString);
    }
    return current;
}

display()
{
    this.__root.display("");
}

}

クラス __threadSameStacks { constructor(thread) { this.__thread = thread; }

getDimensionality()
{
    return 1;
}

getValueAt(idx)
{
    for (var idxVal of this)
    {
        var tid = idxVal[Symbol.indicies][0];
        if (idxVal[Symbol.indicies][0] == idx && tid != this.__thread.Id)
        {
            return idxVal.value;
        }
    }
    return undefined;
}

*[Symbol.iterator]()
{
    var context = this.__thread.hostContext;
    var session = host.namespace.Debugger.Sessions.getValueAt(context);
    var process = session.Processes.getValueAt(context);
    var map = new __stackMap(process);
    var entry = map.findEntry(this.__thread);
    if (entry != null)
    {
        for (var sharingThread of entry.threads)
        {
            if (sharingThread.Id != this.__thread.Id)
            {
                yield new host.indexedValue(sharingThread, [sharingThread.Id]);
            }
        }
    }
}

}

class __threadExtension { get IdenticalStacks() { return new __threadSameStacks(this); } } }

function invokeScript() { var map = new __stackMap(host.currentProcess); map.display(); }

function initializeScript() { return [new host.namedModelParent(__threadExtension, "Debugger.Models.Thread")]; }