/* * Copyright (C) 2019 Intel Corporation * * SPDX-License-Identifier: MIT * */ #pragma once #include "core/memory_manager/eviction_status.h" #include "core/os_interface/windows/windows_defs.h" #include namespace NEO { namespace WddmMockHelpers { struct CallResult { uint32_t called = 0; uint64_t uint64ParamPassed = -1; bool success = false; uint64_t commandBufferSubmitted = 0u; void *commandHeaderSubmitted = nullptr; void *cpuPtrPassed = nullptr; }; struct MakeResidentCall : CallResult { std::vector handlePack; uint32_t handleCount = 0; }; struct KmDafLockCall : CallResult { std::vector lockedAllocations; }; struct WaitFromCpuResult : CallResult { const MonitoredFence *monitoredFence = nullptr; }; struct FreeGpuVirtualAddressCall : CallResult { uint64_t sizePassed = -1; }; struct MemoryOperationResult : CallResult { MemoryOperationsStatus operationSuccess = MemoryOperationsStatus::UNSUPPORTED; }; } // namespace WddmMockHelpers } // namespace NEO