33 lines
1.3 KiB
C++
33 lines
1.3 KiB
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "runtime/memory_manager/allocations_list.h"
|
|
|
|
namespace OCLRT {
|
|
class CommandStreamReceiver;
|
|
|
|
class InternalAllocationStorage {
|
|
public:
|
|
MOCKABLE_VIRTUAL ~InternalAllocationStorage() = default;
|
|
InternalAllocationStorage(CommandStreamReceiver &commandStreamReceiver);
|
|
MOCKABLE_VIRTUAL void cleanAllocationList(uint32_t waitTaskCount, uint32_t allocationUsage);
|
|
void storeAllocation(std::unique_ptr<GraphicsAllocation> gfxAllocation, uint32_t allocationUsage);
|
|
void storeAllocationWithTaskCount(std::unique_ptr<GraphicsAllocation> gfxAllocation, uint32_t allocationUsage, uint32_t taskCount);
|
|
std::unique_ptr<GraphicsAllocation> obtainReusableAllocation(size_t requiredSize, GraphicsAllocation::AllocationType allocationType);
|
|
AllocationsList &getTemporaryAllocations() { return temporaryAllocations; }
|
|
AllocationsList &getAllocationsForReuse() { return allocationsForReuse; }
|
|
|
|
protected:
|
|
void freeAllocationsList(uint32_t waitTaskCount, AllocationsList &allocationsList);
|
|
CommandStreamReceiver &commandStreamReceiver;
|
|
|
|
AllocationsList temporaryAllocations;
|
|
AllocationsList allocationsForReuse;
|
|
};
|
|
} // namespace OCLRT
|