summaryrefslogtreecommitdiffstats
path: root/src/libs/dxvk-native-1.9.2a/tests/dxbc/test_dxbc_disasm.cpp
blob: c87ec352920b8502108500d9aea45a3797591b07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include <iostream>
#include <string>

#include <d3dcompiler.h>

#include <shellapi.h>
#include <windows.h>
#include <windowsx.h>

#include "../../src/util/com/com_pointer.h"

using namespace dxvk;

int WINAPI WinMain(HINSTANCE hInstance,
                   HINSTANCE hPrevInstance,
                   LPSTR lpCmdLine,
                   int nCmdShow) {
  int     argc = 0;
  LPWSTR* argv = CommandLineToArgvW(
    GetCommandLineW(), &argc);

  if (argc < 2 || argc > 3) {
    std::cerr << "Usage: dxbc-disasm input.dxbc [output]" << std::endl;
    return 1;
  }

  Com<ID3DBlob> assembly;
  Com<ID3DBlob> binary;

  // input file
  if (FAILED(D3DReadFileToBlob(argv[1], &binary))) {
    std::cerr << "Failed to read shader" << std::endl;
    return 1;
  }

  HRESULT hr = D3DDisassemble(
    binary->GetBufferPointer(),
    binary->GetBufferSize(),
    D3D_DISASM_ENABLE_INSTRUCTION_NUMBERING, nullptr,
    &assembly);

  if (FAILED(hr)) {
    std::cerr << "Failed to disassemble shader" << std::endl;
    return 1;
  }

  // output file variant
  if (argc == 3 && FAILED(D3DWriteBlobToFile(assembly.ptr(), argv[2], 1))) {
    std::cerr << "Failed to write shader" << std::endl;
    return 1;
  }

  // stdout variant
  if (argc == 2) {
    std::string data((const char *)assembly->GetBufferPointer(), assembly->GetBufferSize());
    std::cout << data;
  }

  return 0;
}