├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── build.yml │ └── codeql-analyze.yml ├── .gitignore ├── BUILDING.md ├── CODE_OF_CONDUCT.md ├── Engine ├── DLLOrdinalHelper.cs ├── DiaUtil.cs ├── ExportedSymbol.cs ├── GlobalUsings.cs ├── ImageExportDirectory.cs ├── ModuleInfo.cs ├── ModuleInfoHelper.cs ├── PEHelper.cs ├── Properties │ └── AssemblyInfo.cs ├── SQLBuildInfo.cs ├── SQLCallStackResolver.Engine.csproj ├── SafeNativeMethods.cs ├── StackDetails.cs ├── StackResolver.cs ├── SymSrvHelpers.cs ├── Symbol.cs ├── XELHelper.cs ├── app.config ├── app.manifest └── packages.config ├── GUI ├── App.config ├── FieldSelection.Designer.cs ├── FieldSelection.cs ├── FieldSelection.resx ├── GlobalUsings.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── MultilineInput.Designer.cs ├── MultilineInput.cs ├── MultilineInput.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Settings.Designer.cs │ └── Settings.settings ├── SQLBuildsForm.Designer.cs ├── SQLBuildsForm.cs ├── SQLBuildsForm.resx ├── SQLCallstackResolver.GUI.csproj └── Utils.cs ├── LICENSE ├── README.md ├── SECURITY.md ├── SQLCallStackResolver.sln ├── SUPPORT.md ├── Tests ├── Properties │ └── AssemblyInfo.cs ├── SQLCallStackResolver.Tests.csproj ├── TestCases │ ├── ImportXEL │ │ ├── base_addresses.txt │ │ └── xe_wait_base_addresses.txt │ ├── buildinfo.sample.json │ └── downloadsyms.ps1 ├── Tests.cs ├── app.config └── packages.config ├── images ├── 1_ModOffset_Text.gif ├── 2_XEL_Address.gif └── 3_SQL2022_format.gif ├── latestrelease.txt └── utils ├── getBuildPreReqs.ps1 └── import-vsenv.ps1 /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analyze.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/.github/workflows/codeql-analyze.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Engine/DLLOrdinalHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Engine/DLLOrdinalHelper.cs -------------------------------------------------------------------------------- /Engine/DiaUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Engine/DiaUtil.cs -------------------------------------------------------------------------------- /Engine/ExportedSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Engine/ExportedSymbol.cs -------------------------------------------------------------------------------- /Engine/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Engine/GlobalUsings.cs -------------------------------------------------------------------------------- /Engine/ImageExportDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Engine/ImageExportDirectory.cs -------------------------------------------------------------------------------- /Engine/ModuleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Engine/ModuleInfo.cs -------------------------------------------------------------------------------- /Engine/ModuleInfoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Engine/ModuleInfoHelper.cs -------------------------------------------------------------------------------- /Engine/PEHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Engine/PEHelper.cs -------------------------------------------------------------------------------- /Engine/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Engine/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Engine/SQLBuildInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Engine/SQLBuildInfo.cs -------------------------------------------------------------------------------- /Engine/SQLCallStackResolver.Engine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Engine/SQLCallStackResolver.Engine.csproj -------------------------------------------------------------------------------- /Engine/SafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Engine/SafeNativeMethods.cs -------------------------------------------------------------------------------- /Engine/StackDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Engine/StackDetails.cs -------------------------------------------------------------------------------- /Engine/StackResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Engine/StackResolver.cs -------------------------------------------------------------------------------- /Engine/SymSrvHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Engine/SymSrvHelpers.cs -------------------------------------------------------------------------------- /Engine/Symbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Engine/Symbol.cs -------------------------------------------------------------------------------- /Engine/XELHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Engine/XELHelper.cs -------------------------------------------------------------------------------- /Engine/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Engine/app.config -------------------------------------------------------------------------------- /Engine/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Engine/app.manifest -------------------------------------------------------------------------------- /Engine/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Engine/packages.config -------------------------------------------------------------------------------- /GUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/GUI/App.config -------------------------------------------------------------------------------- /GUI/FieldSelection.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/GUI/FieldSelection.Designer.cs -------------------------------------------------------------------------------- /GUI/FieldSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/GUI/FieldSelection.cs -------------------------------------------------------------------------------- /GUI/FieldSelection.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/GUI/FieldSelection.resx -------------------------------------------------------------------------------- /GUI/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/GUI/GlobalUsings.cs -------------------------------------------------------------------------------- /GUI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/GUI/MainForm.Designer.cs -------------------------------------------------------------------------------- /GUI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/GUI/MainForm.cs -------------------------------------------------------------------------------- /GUI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/GUI/MainForm.resx -------------------------------------------------------------------------------- /GUI/MultilineInput.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/GUI/MultilineInput.Designer.cs -------------------------------------------------------------------------------- /GUI/MultilineInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/GUI/MultilineInput.cs -------------------------------------------------------------------------------- /GUI/MultilineInput.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/GUI/MultilineInput.resx -------------------------------------------------------------------------------- /GUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/GUI/Program.cs -------------------------------------------------------------------------------- /GUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/GUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/GUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /GUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/GUI/Properties/Settings.settings -------------------------------------------------------------------------------- /GUI/SQLBuildsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/GUI/SQLBuildsForm.Designer.cs -------------------------------------------------------------------------------- /GUI/SQLBuildsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/GUI/SQLBuildsForm.cs -------------------------------------------------------------------------------- /GUI/SQLBuildsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/GUI/SQLBuildsForm.resx -------------------------------------------------------------------------------- /GUI/SQLCallstackResolver.GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/GUI/SQLCallstackResolver.GUI.csproj -------------------------------------------------------------------------------- /GUI/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/GUI/Utils.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SQLCallStackResolver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/SQLCallStackResolver.sln -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/SQLCallStackResolver.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Tests/SQLCallStackResolver.Tests.csproj -------------------------------------------------------------------------------- /Tests/TestCases/ImportXEL/base_addresses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Tests/TestCases/ImportXEL/base_addresses.txt -------------------------------------------------------------------------------- /Tests/TestCases/ImportXEL/xe_wait_base_addresses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Tests/TestCases/ImportXEL/xe_wait_base_addresses.txt -------------------------------------------------------------------------------- /Tests/TestCases/buildinfo.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Tests/TestCases/buildinfo.sample.json -------------------------------------------------------------------------------- /Tests/TestCases/downloadsyms.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Tests/TestCases/downloadsyms.ps1 -------------------------------------------------------------------------------- /Tests/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Tests/Tests.cs -------------------------------------------------------------------------------- /Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Tests/app.config -------------------------------------------------------------------------------- /Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/Tests/packages.config -------------------------------------------------------------------------------- /images/1_ModOffset_Text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/images/1_ModOffset_Text.gif -------------------------------------------------------------------------------- /images/2_XEL_Address.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/images/2_XEL_Address.gif -------------------------------------------------------------------------------- /images/3_SQL2022_format.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/images/3_SQL2022_format.gif -------------------------------------------------------------------------------- /latestrelease.txt: -------------------------------------------------------------------------------- 1 | 2025-06-22 00:00 2 | -------------------------------------------------------------------------------- /utils/getBuildPreReqs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/utils/getBuildPreReqs.ps1 -------------------------------------------------------------------------------- /utils/import-vsenv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SQLCallStackResolver/HEAD/utils/import-vsenv.ps1 --------------------------------------------------------------------------------