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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
##########################################################################
#
# Copyright 2008-2009 VMware, Inc.
# All Rights Reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
##########################################################################/
import sys
from dlltrace import DllTracer
from trace import getWrapperInterfaceName
from specs import stdapi
from specs.stdapi import API
from specs import dxgi
from specs import d3d10
from specs import d3d11
from specs import dcomp
from specs import d3d9
class D3DCommonTracer(DllTracer):
def serializeArgValue(self, function, arg):
# Dump shaders as strings
if isinstance(arg.type, stdapi.Blob) and arg.name.startswith('pShaderBytecode'):
print ' DumpShader(trace::localWriter, %s, %s);' % (arg.name, arg.type.size)
return
# Serialize the swapchain dimensions
if function.name == 'CreateSwapChain' and arg.name == 'pDesc' \
or arg.name == 'pSwapChainDesc':
print r' DXGI_SWAP_CHAIN_DESC *_pSwapChainDesc = NULL;'
print r' DXGI_SWAP_CHAIN_DESC _SwapChainDesc;'
print r' if (%s) {' % arg.name
print r' _SwapChainDesc = *%s;' % arg.name
if function.name != 'CreateSwapChain' or not self.interface.name.endswith('DWM'):
# Obtain size from the window
print r' RECT _rect;'
print r' if (GetClientRect(%s->OutputWindow, &_rect)) {' % arg.name
print r' if (%s->BufferDesc.Width == 0) {' % arg.name
print r' _SwapChainDesc.BufferDesc.Width = _rect.right - _rect.left;'
print r' }'
print r' if (%s->BufferDesc.Height == 0) {' % arg.name
print r' _SwapChainDesc.BufferDesc.Height = _rect.bottom - _rect.top;'
print r' }'
print r' }'
else:
# Obtain size from the output
print r' DXGI_OUTPUT_DESC _OutputDesc;'
print r' if (SUCCEEDED(pOutput->GetDesc(&_OutputDesc))) {'
print r' _SwapChainDesc.BufferDesc.Width = _OutputDesc.DesktopCoordinates.right - _OutputDesc.DesktopCoordinates.left;'
print r' _SwapChainDesc.BufferDesc.Height = _OutputDesc.DesktopCoordinates.bottom - _OutputDesc.DesktopCoordinates.top;'
print r' }'
print r' _pSwapChainDesc = &_SwapChainDesc;'
print r' }'
self.serializeValue(arg.type, '_pSwapChainDesc')
return
# Serialize object names
if function.name == 'SetPrivateData' and arg.name == 'pData':
iid = function.args[0].name
print r' if (%s == WKPDID_D3DDebugObjectName) {' % iid
print r' trace::localWriter.writeString(static_cast<const char *>(pData), DataSize);'
print r' } else {'
DllTracer.serializeArgValue(self, function, arg)
print r' }'
return
DllTracer.serializeArgValue(self, function, arg)
# Interfaces that need book-keeping for maps
mapInterfaces = (
dxgi.IDXGISurface,
d3d10.ID3D10Resource,
)
def enumWrapperInterfaceVariables(self, interface):
variables = DllTracer.enumWrapperInterfaceVariables(self, interface)
# Add additional members to track maps
if interface.hasBase(*self.mapInterfaces):
variables += [
('_MAP_DESC', 'm_MapDesc', None),
]
if interface.hasBase(d3d11.ID3D11DeviceContext):
variables += [
('std::map< std::pair<ID3D11Resource *, UINT>, _MAP_DESC >', 'm_MapDescs', None),
]
return variables
def implementWrapperInterfaceMethodBody(self, interface, base, method):
if method.getArgByName('pInitialData'):
pDesc1 = method.getArgByName('pDesc1')
if pDesc1 is not None:
print r' %s pDesc = pDesc1;' % (pDesc1.type,)
if method.name in ('Map', 'Unmap'):
# On D3D11 Map/Unmap is not a resource method, but a context method instead.
resourceArg = method.getArgByName('pResource')
if resourceArg is None:
print ' _MAP_DESC & _MapDesc = m_MapDesc;'
else:
print ' _MAP_DESC & _MapDesc = m_MapDescs[std::pair<%s, UINT>(pResource, Subresource)];' % resourceArg.type
if method.name == 'Unmap':
print ' if (_MapDesc.Size && _MapDesc.pData) {'
self.emit_memcpy('_MapDesc.pData', '_MapDesc.Size')
print ' }'
DllTracer.implementWrapperInterfaceMethodBody(self, interface, base, method)
if method.name == 'Map':
# NOTE: recursive locks are explicitely forbidden
print ' if (SUCCEEDED(_result)) {'
print ' _getMapDesc(_this, %s, _MapDesc);' % ', '.join(method.argNames())
print ' } else {'
print ' _MapDesc.pData = NULL;'
print ' _MapDesc.Size = 0;'
print ' }'
if __name__ == '__main__':
print r'#include "guids_defs.hpp"'
print
print r'#include "trace_writer_local.hpp"'
print r'#include "os.hpp"'
print
print r'#include "d3dcommonshader.hpp"'
print
print r'#include "d3d10imports.hpp"'
print r'#include "d3d10size.hpp"'
print r'#include "d3d11imports.hpp"'
print r'#include "d3d11size.hpp"'
print r'#include "dcompimports.hpp"'
print r'#include "d2dimports.hpp" // WINCODEC_ERR_UNSUPPORTEDPIXELFORMAT'
print r'#include "d3d9imports.hpp" // D3DPERF_*'
print
api = API()
api.addModule(dxgi.dxgi)
api.addModule(d3d10.d3d10)
api.addModule(d3d10.d3d10_1)
api.addModule(d3d11.d3d11)
api.addModule(dcomp.dcomp)
api.addModule(d3d9.d3dperf)
tracer = D3DCommonTracer()
tracer.traceApi(api)
|