Files
compute-runtime/runtime/command_stream/definitions/command_stream_receiver_simulated_hw.h
Filip Hazubski 552a1268eb Refactor blit buffer call
Resolves: NEO-3241

Change-Id: I726135ae55d1e0fcbacd80620e827ee5c7c0c8dc
Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
2019-08-09 16:43:40 +02:00

47 lines
1.8 KiB
C++

/*
* Copyright (C) 2018-2019 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "runtime/command_stream/command_stream_receiver_simulated_common_hw.h"
#include "runtime/memory_manager/memory_banks.h"
#include "runtime/memory_manager/physical_address_allocator.h"
namespace NEO {
class GraphicsAllocation;
template <typename GfxFamily>
class CommandStreamReceiverSimulatedHw : public CommandStreamReceiverSimulatedCommonHw<GfxFamily> {
protected:
using CommandStreamReceiverSimulatedCommonHw<GfxFamily>::CommandStreamReceiverSimulatedCommonHw;
using CommandStreamReceiverSimulatedCommonHw<GfxFamily>::osContext;
public:
uint32_t getMemoryBank(GraphicsAllocation *allocation) const {
return MemoryBanks::getBank(this->deviceIndex);
}
int getAddressSpace(int hint) {
return AubMemDump::AddressSpaceValues::TraceNonlocal;
}
PhysicalAddressAllocator *createPhysicalAddressAllocator(const HardwareInfo *hwInfo) {
return new PhysicalAddressAllocator();
}
void writeMemoryWithAubManager(GraphicsAllocation &graphicsAllocation) override{};
void setAubWritable(bool writable, GraphicsAllocation &graphicsAllocation) override {
graphicsAllocation.setAubWritable(writable, getMemoryBank(&graphicsAllocation));
}
bool isAubWritable(GraphicsAllocation &graphicsAllocation) const override {
return graphicsAllocation.isAubWritable(getMemoryBank(&graphicsAllocation));
}
void setTbxWritable(bool writable, GraphicsAllocation &graphicsAllocation) override {
graphicsAllocation.setTbxWritable(writable, getMemoryBank(&graphicsAllocation));
}
bool isTbxWritable(GraphicsAllocation &graphicsAllocation) const override {
return graphicsAllocation.isTbxWritable(getMemoryBank(&graphicsAllocation));
}
};
} // namespace NEO