File: getwritewatch_tests.cpp

package info (click to toggle)
gfxreconstruct 0.9.18%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 24,636 kB
  • sloc: cpp: 328,961; ansic: 25,454; python: 18,156; xml: 255; sh: 128; makefile: 6
file content (412 lines) | stat: -rw-r--r-- 16,175 bytes parent folder | download
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
/*
** Copyright (c) 2021 Advanced Micro Devices, 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.
*/

#include "dx12_utils.h"
#include "util/logging.h"

#include <d3d12.h>

#include <catch2/catch.hpp>
#include <Windows.h>
#include <comdef.h>

bool VirtualQuerySuccess(UINT8* data_begin, MEMORY_BASIC_INFORMATION& memory_info)
{
    auto sizecheck = VirtualQuery(data_begin, &memory_info, sizeof(memory_info));
    if (sizecheck > 0)
    {
        return true;
    }
    return false;
}

GFXRECON_BEGIN_NAMESPACE(gfxrecon)
GFXRECON_BEGIN_NAMESPACE(util)
GFXRECON_BEGIN_NAMESPACE(test)

static constexpr int kBufferSize = 1024;
static constexpr int kListSize   = 16;

TEST_CASE("GetWriteWatch::CreatePlacedResource, no writing to memory", "[memory_map][pre_submit]")
{
    gfxrecon::util::Log::Init(gfxrecon::util::Log::kErrorSeverity);

    ULONG                    granularity;
    void*                    modified_addresses[kBufferSize];
    D3D12_RANGE              read_range{ 0, 0 };
    Dx12HeapPtr              dx12_heap;
    UINT8*                   data_begin     = nullptr;
    ULONG_PTR                modified_count = kBufferSize;
    MEMORY_BASIC_INFORMATION memory_info    = { 0 };

    Dx12DevicePtr         dx12_device = CreateDx12Device();
    const D3D12_HEAP_DESC heap_desc{
        static_cast<UINT64>(kBufferSize),
        {
            D3D12_HEAP_TYPE_UPLOAD,
            D3D12_CPU_PAGE_PROPERTY_UNKNOWN,
            D3D12_MEMORY_POOL_UNKNOWN,
            0,
            0,
        },
        D3D12_DEFAULT_RESOURCE_PLACEMENT_ALIGNMENT,
        D3D12_HEAP_FLAG_NONE | D3D12_HEAP_FLAG_ALLOW_WRITE_WATCH,
    };

    HRESULT result =
        dx12_device->CreateHeap(&heap_desc, __uuidof(Dx12HeapPtr::Interface), reinterpret_cast<void**>(&dx12_heap));

    const D3D12_RESOURCE_DESC buffer_desc = GetDx12BufferDesc(kBufferSize);
    Dx12ResourcePtr           dx12_buffer{};
    result = dx12_device->CreatePlacedResource(dx12_heap,
                                               0,
                                               &buffer_desc,
                                               D3D12_RESOURCE_STATE_GENERIC_READ,
                                               nullptr,
                                               __uuidof(Dx12ResourcePtr::Interface),
                                               reinterpret_cast<void**>(&dx12_buffer));
    REQUIRE(result == S_OK);

    REQUIRE(dx12_buffer->Map(0, &read_range, reinterpret_cast<void**>(&data_begin)) == S_OK);
    if (VirtualQuerySuccess(data_begin, memory_info))
    {
        INFO(memory_info.AllocationProtect);
    }

    if (GetWriteWatch(
            WRITE_WATCH_FLAG_RESET, data_begin, kBufferSize, modified_addresses, &modified_count, &granularity) == 0)
    {
        REQUIRE(modified_count == 0);
    }
    else
    {
        WARN("GetWriteWatch() returns error");
    }
    gfxrecon::util::Log::Release();
}

TEST_CASE("GetWriteWatch::CreatePlacedResource", "[memory_map][pre_submit]")
{
    gfxrecon::util::Log::Init(gfxrecon::util::Log::kErrorSeverity);
    ULONG                    granularity;
    void*                    modified_addresses[kBufferSize];
    D3D12_RANGE              read_range{ 0, 0 };
    Dx12HeapPtr              dx12_heap;
    UINT8*                   data_begin     = nullptr;
    ULONG_PTR                modified_count = kBufferSize;
    Dx12DevicePtr            dx12_device    = CreateDx12Device();
    MEMORY_BASIC_INFORMATION memory_info    = { 0 };
    const D3D12_HEAP_DESC    heap_desc{
        static_cast<UINT64>(kBufferSize),
        {
            D3D12_HEAP_TYPE_UPLOAD,
            D3D12_CPU_PAGE_PROPERTY_UNKNOWN,
            D3D12_MEMORY_POOL_UNKNOWN,
            0,
            0,
        },
        D3D12_DEFAULT_RESOURCE_PLACEMENT_ALIGNMENT,
        D3D12_HEAP_FLAG_NONE | D3D12_HEAP_FLAG_ALLOW_WRITE_WATCH,
    };

    HRESULT result =
        dx12_device->CreateHeap(&heap_desc, __uuidof(Dx12HeapPtr::Interface), reinterpret_cast<void**>(&dx12_heap));

    const D3D12_RESOURCE_DESC buffer_desc = GetDx12BufferDesc(kBufferSize);
    Dx12ResourcePtr           dx12_buffer{};
    result = dx12_device->CreatePlacedResource(dx12_heap,
                                               0,
                                               &buffer_desc,
                                               D3D12_RESOURCE_STATE_GENERIC_READ,
                                               nullptr,
                                               __uuidof(Dx12ResourcePtr::Interface),
                                               reinterpret_cast<void**>(&dx12_buffer));
    REQUIRE(result == S_OK);

    REQUIRE(dx12_buffer->Map(0, &read_range, reinterpret_cast<void**>(&data_begin)) == S_OK);

    if (VirtualQuerySuccess(data_begin, memory_info))
    {
        INFO(memory_info.AllocationProtect);
    }

    data_begin[0] = 0xAC;
    if (GetWriteWatch(
            WRITE_WATCH_FLAG_RESET, data_begin, kBufferSize, modified_addresses, &modified_count, &granularity) == 0)
    {
        REQUIRE(modified_count > 0);
    }
    else
    {
        WARN("GetWriteWatch() returns error");
    }
    gfxrecon::util::Log::Release();
}

TEST_CASE("GetWriteWatch::CreatePlacedResource buffer list", "[memory_map][pre_submit]")
{
    gfxrecon::util::Log::Init(gfxrecon::util::Log::kErrorSeverity);
    static constexpr int buffer_alignment =
        ((kBufferSize / D3D12_DEFAULT_RESOURCE_PLACEMENT_ALIGNMENT) + 1) * D3D12_DEFAULT_RESOURCE_PLACEMENT_ALIGNMENT;
    ULONG                    granularity;
    void*                    modified_addresses[kBufferSize];
    D3D12_RANGE              read_range{ 0, 0 };
    Dx12HeapPtr              dx12_heap;
    UINT8*                   data_begin     = nullptr;
    ULONG_PTR                modified_count = kBufferSize;
    const int                heap_size      = kListSize * buffer_alignment;
    MEMORY_BASIC_INFORMATION memory_info    = { 0 };
    REQUIRE(0 != heap_size);
    Dx12DevicePtr dx12_device = CreateDx12Device();

    const D3D12_HEAP_DESC heap_desc{
        static_cast<UINT64>(heap_size),
        {
            D3D12_HEAP_TYPE_UPLOAD,
            D3D12_CPU_PAGE_PROPERTY_UNKNOWN,
            D3D12_MEMORY_POOL_UNKNOWN,
            0,
            0,
        },
        D3D12_DEFAULT_RESOURCE_PLACEMENT_ALIGNMENT,
        D3D12_HEAP_FLAG_NONE | D3D12_HEAP_FLAG_ALLOW_WRITE_WATCH,
    };

    HRESULT result =
        dx12_device->CreateHeap(&heap_desc, __uuidof(Dx12HeapPtr::Interface), reinterpret_cast<void**>(&dx12_heap));
    REQUIRE(result == S_OK);
    Dx12ResourcePtr              dx12_buffer{};
    std::vector<Dx12ResourcePtr> dx12_buffers{};
    dx12_buffers.reserve(kListSize);
    const D3D12_RESOURCE_DESC buffer_desc = GetDx12BufferDesc(kBufferSize);
    for (int i = 0; i < kListSize; ++i)
    {
        result = dx12_device->CreatePlacedResource(dx12_heap,
                                                   static_cast<UINT64>(i) * buffer_alignment,
                                                   &buffer_desc,
                                                   D3D12_RESOURCE_STATE_GENERIC_READ,
                                                   nullptr,
                                                   __uuidof(Dx12ResourcePtr::Interface),
                                                   reinterpret_cast<void**>(&dx12_buffer));
        REQUIRE(result == S_OK);
        dx12_buffers.push_back(dx12_buffer);
    }

    result = dx12_buffer->Map(0, &read_range, reinterpret_cast<void**>(&data_begin));
    REQUIRE(result == S_OK);

    if (VirtualQuerySuccess(data_begin, memory_info))
    {
        INFO(memory_info.AllocationProtect);
    }
    data_begin[kBufferSize / 2] = 0xAC;
    if (GetWriteWatch(
            WRITE_WATCH_FLAG_RESET, data_begin, kBufferSize, modified_addresses, &modified_count, &granularity) == 0)
    {
        REQUIRE(modified_count > 0);
    }
    else
    {
        WARN("GetWriteWatch() returns error");
    }
    gfxrecon::util::Log::Release();
}

TEST_CASE("GetWriteWatch::CreatePlacedResource D3D12_HEAP_TYPE_DEFAULT flag", "[memory_map][pre_submit]")
{
    gfxrecon::util::Log::Init(gfxrecon::util::Log::kErrorSeverity);
    ULONG                    granularity;
    void*                    modified_addresses[kBufferSize];
    D3D12_RANGE              read_range{ 0, 0 };
    Dx12HeapPtr              dx12_heap;
    UINT8*                   data_begin     = nullptr;
    ULONG_PTR                modified_count = kBufferSize;
    MEMORY_BASIC_INFORMATION memory_info    = { 0 };
    Dx12DevicePtr            dx12_device    = CreateDx12Device();

    const D3D12_HEAP_DESC heap_desc{
        static_cast<UINT64>(kBufferSize),
        {
            D3D12_HEAP_TYPE_DEFAULT,
            D3D12_CPU_PAGE_PROPERTY_UNKNOWN,
            D3D12_MEMORY_POOL_UNKNOWN,
            0,
            0,
        },
        D3D12_DEFAULT_RESOURCE_PLACEMENT_ALIGNMENT,
        D3D12_HEAP_FLAG_NONE | D3D12_HEAP_FLAG_ALLOW_WRITE_WATCH,
    };

    HRESULT result =
        dx12_device->CreateHeap(&heap_desc, __uuidof(Dx12HeapPtr::Interface), reinterpret_cast<void**>(&dx12_heap));
    // Failed to create heap D3D12_HEAP_TYPE_DEFAULT together with D3D12_HEAP_FLAG_ALLOW_WRITE_WATCH flag
    if (result == S_OK)
    {
        const D3D12_RESOURCE_DESC buffer_desc = GetDx12BufferDesc(kBufferSize);
        Dx12ResourcePtr           dx12_buffer{};
        result = dx12_device->CreatePlacedResource(dx12_heap,
                                                   0,
                                                   &buffer_desc,
                                                   D3D12_RESOURCE_STATE_GENERIC_READ,
                                                   nullptr,
                                                   __uuidof(Dx12ResourcePtr::Interface),
                                                   reinterpret_cast<void**>(&dx12_buffer));
        REQUIRE(result == S_OK);

        UINT8*      data_begin;
        D3D12_RANGE read_range{ 0, 0 };
        result = dx12_buffer->Map(0, &read_range, reinterpret_cast<void**>(&data_begin));
        REQUIRE(result == S_OK);

        if (VirtualQuerySuccess(data_begin, memory_info))
        {
            INFO(memory_info.AllocationProtect);
        }

        data_begin[0] = 0xAC;
        if (GetWriteWatch(
                WRITE_WATCH_FLAG_RESET, data_begin, kBufferSize, modified_addresses, &modified_count, &granularity) ==
            0)
        {
            REQUIRE(modified_count > 0);
        }
        else
        {
            WARN("GetWriteWatch() returns error");
        }
    }
    else
    {
        INFO("Cannot CreatePlacedResource D3D12_HEAP_TYPE_DEFAULT together with D3D12_HEAP_FLAG_ALLOW_WRITE_WATCH ");
    }
    gfxrecon::util::Log::Release();
}

TEST_CASE("GetWriteWatch::CreateCommittedResource", "[memory_map][pre_submit]")
{
    gfxrecon::util::Log::Init(gfxrecon::util::Log::kErrorSeverity);
    ULONG                    granularity;
    void*                    modified_addresses[kBufferSize];
    D3D12_RANGE              read_range{ 0, 0 };
    Dx12HeapPtr              dx12_heap;
    UINT8*                   data_begin     = nullptr;
    ULONG_PTR                modified_count = kBufferSize;
    MEMORY_BASIC_INFORMATION memory_info    = { 0 };
    Dx12DevicePtr            dx12_device    = CreateDx12Device();

    const D3D12_RESOURCE_DESC buffer_desc = GetDx12BufferDesc(kBufferSize);

    D3D12_HEAP_PROPERTIES heap_props{
        D3D12_HEAP_TYPE_READBACK, D3D12_CPU_PAGE_PROPERTY_UNKNOWN, D3D12_MEMORY_POOL_UNKNOWN, 0, 0,
    };

    Dx12ResourcePtr dx12_buffer{};
    HRESULT         result = dx12_device->CreateCommittedResource(&heap_props,
                                                          D3D12_HEAP_FLAG_ALLOW_WRITE_WATCH,
                                                          &buffer_desc,
                                                          D3D12_RESOURCE_STATE_COPY_DEST,
                                                          nullptr,
                                                          __uuidof(Dx12ResourcePtr::Interface),
                                                          reinterpret_cast<void**>(&dx12_buffer));
    REQUIRE(result == S_OK);

    result = dx12_buffer->Map(0, &read_range, reinterpret_cast<void**>(&data_begin));
    REQUIRE(result == S_OK);

    if (VirtualQuerySuccess(data_begin, memory_info))
    {
        INFO(memory_info.AllocationProtect);
    }

    data_begin[kBufferSize / 2] = 0xAC;

    if (GetWriteWatch(
            WRITE_WATCH_FLAG_RESET, data_begin, kBufferSize, modified_addresses, &modified_count, &granularity) == 0)
    {
        REQUIRE(modified_count > 0);
    }
    else
    {
        WARN("GetWriteWatch() returns error");
    }
    gfxrecon::util::Log::Release();
}

TEST_CASE("GetWriteWatch::CreateCommittedResource buffer list", "[memory_map][pre_submit]")
{
    gfxrecon::util::Log::Init(gfxrecon::util::Log::kErrorSeverity);
    ULONG                    granularity;
    void*                    modified_addresses[kBufferSize];
    D3D12_RANGE              read_range{ 0, 0 };
    Dx12HeapPtr              dx12_heap;
    UINT8*                   data_begin     = nullptr;
    ULONG_PTR                modified_count = kBufferSize;
    MEMORY_BASIC_INFORMATION memory_info    = { 0 };
    Dx12DevicePtr            dx12_device    = CreateDx12Device();

    const D3D12_RESOURCE_DESC buffer_desc = GetDx12BufferDesc(kBufferSize);

    D3D12_HEAP_PROPERTIES heap_props{
        D3D12_HEAP_TYPE_READBACK, D3D12_CPU_PAGE_PROPERTY_UNKNOWN, D3D12_MEMORY_POOL_UNKNOWN, 0, 0,
    };

    Dx12ResourcePtr              dx12_buffer{};
    std::vector<Dx12ResourcePtr> dx12_resource_list{};
    for (int i = 0; i < kListSize; ++i)
    {
        HRESULT result = dx12_device->CreateCommittedResource(&heap_props,
                                                              D3D12_HEAP_FLAG_ALLOW_WRITE_WATCH,
                                                              &buffer_desc,
                                                              D3D12_RESOURCE_STATE_COPY_DEST,
                                                              nullptr,
                                                              __uuidof(Dx12ResourcePtr::Interface),
                                                              reinterpret_cast<void**>(&dx12_buffer));
        REQUIRE(S_OK == result);

        dx12_resource_list.push_back(dx12_buffer);
    }

    HRESULT result = dx12_buffer->Map(0, &read_range, reinterpret_cast<void**>(&data_begin));
    if (VirtualQuerySuccess(data_begin, memory_info))
    {
        INFO(memory_info.AllocationProtect);
    }

    REQUIRE(result == S_OK);

    data_begin[kBufferSize / 2] = 0xAC;

    if (GetWriteWatch(
            WRITE_WATCH_FLAG_RESET, data_begin, kBufferSize, modified_addresses, &modified_count, &granularity) == 0)
    {
        REQUIRE(modified_count > 0);
    }
    else
    {
        WARN("GetWriteWatch() returns error");
    }
    gfxrecon::util::Log::Release();
}

GFXRECON_END_NAMESPACE(test)
GFXRECON_END_NAMESPACE(util)
GFXRECON_END_NAMESPACE(gfxrecon)