2021-10-05 21:14:08 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2021 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "shared/source/helpers/hw_info.h"
|
|
|
|
|
|
|
|
#include "igfxfmid.h"
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
class CompilerHwInfoConfig;
|
|
|
|
struct HardwareInfo;
|
|
|
|
extern CompilerHwInfoConfig *CompilerHwInfoConfigFactory[IGFX_MAX_PRODUCT];
|
|
|
|
|
|
|
|
class CompilerHwInfoConfig {
|
|
|
|
public:
|
|
|
|
static CompilerHwInfoConfig *get(PRODUCT_FAMILY product) {
|
|
|
|
return CompilerHwInfoConfigFactory[product];
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool isMidThreadPreemptionSupported(const HardwareInfo &hwInfo) const = 0;
|
2021-10-26 23:25:20 +08:00
|
|
|
virtual bool isForceEmuInt32DivRemSPRequired() const = 0;
|
|
|
|
virtual bool isStatelessToStatefulBufferOffsetSupported() const = 0;
|
2021-10-05 21:14:08 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
template <PRODUCT_FAMILY gfxProduct>
|
|
|
|
class CompilerHwInfoConfigHw : public CompilerHwInfoConfig {
|
|
|
|
public:
|
|
|
|
static CompilerHwInfoConfig *get() {
|
|
|
|
static CompilerHwInfoConfigHw<gfxProduct> instance;
|
|
|
|
return &instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isMidThreadPreemptionSupported(const HardwareInfo &hwInfo) const override;
|
2021-10-26 23:25:20 +08:00
|
|
|
bool isForceEmuInt32DivRemSPRequired() const override;
|
|
|
|
bool isStatelessToStatefulBufferOffsetSupported() const override;
|
2021-10-05 21:14:08 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
CompilerHwInfoConfigHw() = default;
|
|
|
|
};
|
|
|
|
|
|
|
|
template <PRODUCT_FAMILY gfxProduct>
|
|
|
|
struct EnableCompilerHwInfoConfig {
|
|
|
|
typedef typename HwMapper<gfxProduct>::GfxProduct GfxProduct;
|
|
|
|
|
|
|
|
EnableCompilerHwInfoConfig() {
|
|
|
|
CompilerHwInfoConfig *pCompilerHwInfoConfig = CompilerHwInfoConfigHw<gfxProduct>::get();
|
|
|
|
CompilerHwInfoConfigFactory[gfxProduct] = pCompilerHwInfoConfig;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace NEO
|