440 lines
18 KiB
C++
440 lines
18 KiB
C++
/*
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/offline_compiler/source/ocloc_fatbinary.h"
|
|
|
|
#include "shared/offline_compiler/source/ocloc_api.h"
|
|
#include "shared/offline_compiler/source/ocloc_arg_helper.h"
|
|
#include "shared/offline_compiler/source/offline_compiler.h"
|
|
#include "shared/offline_compiler/source/utilities/safety_caller.h"
|
|
#include "shared/source/compiler_interface/compiler_options.h"
|
|
#include "shared/source/compiler_interface/intermediate_representations.h"
|
|
#include "shared/source/compiler_interface/tokenized_string.h"
|
|
#include "shared/source/device_binary_format/ar/ar_encoder.h"
|
|
#include "shared/source/device_binary_format/elf/elf_encoder.h"
|
|
#include "shared/source/device_binary_format/elf/ocl_elf.h"
|
|
#include "shared/source/helpers/file_io.h"
|
|
#include "shared/source/helpers/hw_info.h"
|
|
#include "shared/source/helpers/product_config_helper.h"
|
|
|
|
#include "igfxfmid.h"
|
|
#include "platforms.h"
|
|
|
|
#include <algorithm>
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
#include <cstdio>
|
|
#include <set>
|
|
|
|
namespace NEO {
|
|
bool requestedFatBinary(ConstStringRef deviceArg, OclocArgHelper *helper) {
|
|
auto deviceName = deviceArg.str();
|
|
ProductConfigHelper::adjustDeviceName(deviceName);
|
|
auto release = helper->productConfigHelper->getReleaseFromDeviceName(deviceName);
|
|
auto family = helper->productConfigHelper->getFamilyFromDeviceName(deviceName);
|
|
|
|
auto retVal = deviceArg.contains("*");
|
|
retVal |= deviceArg.contains(":");
|
|
retVal |= deviceArg.contains(",");
|
|
retVal |= family != AOT::UNKNOWN_FAMILY;
|
|
retVal |= release != AOT::UNKNOWN_RELEASE;
|
|
|
|
return retVal;
|
|
}
|
|
|
|
bool requestedFatBinary(const std::vector<std::string> &args, OclocArgHelper *helper) {
|
|
for (size_t argIndex = 1; argIndex < args.size(); argIndex++) {
|
|
const auto &currArg = args[argIndex];
|
|
const bool hasMoreArgs = (argIndex + 1 < args.size());
|
|
if ((ConstStringRef("-device") == currArg) && hasMoreArgs) {
|
|
return requestedFatBinary(args[argIndex + 1], helper);
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
template <>
|
|
void getProductsAcronymsForTarget<AOT::RELEASE>(std::vector<NEO::ConstStringRef> &out, AOT::RELEASE target, OclocArgHelper *argHelper) {
|
|
auto &allSuppportedProducts = argHelper->productConfigHelper->getDeviceAotInfo();
|
|
auto hasDeviceAcronym = std::any_of(allSuppportedProducts.begin(), allSuppportedProducts.end(), ProductConfigHelper::findDeviceAcronymForRelease(target));
|
|
for (const auto &device : allSuppportedProducts) {
|
|
if (device.release == target) {
|
|
ConstStringRef acronym{};
|
|
if (hasDeviceAcronym) {
|
|
if (!device.deviceAcronyms.empty()) {
|
|
acronym = device.deviceAcronyms.front();
|
|
}
|
|
} else {
|
|
if (!device.rtlIdAcronyms.empty()) {
|
|
acronym = device.rtlIdAcronyms.front();
|
|
}
|
|
}
|
|
if (!acronym.empty() && std::find(out.begin(), out.end(), acronym) == out.end()) {
|
|
out.push_back(acronym);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
template <>
|
|
void getProductsAcronymsForTarget<AOT::FAMILY>(std::vector<NEO::ConstStringRef> &out, AOT::FAMILY target, OclocArgHelper *argHelper) {
|
|
auto &allSuppportedProducts = argHelper->productConfigHelper->getDeviceAotInfo();
|
|
std::vector<AOT::RELEASE> releases{};
|
|
for (const auto &device : allSuppportedProducts) {
|
|
if (device.family == target && std::find(releases.begin(), releases.end(), device.release) == releases.end()) {
|
|
releases.push_back(device.release);
|
|
}
|
|
}
|
|
for (const auto &release : releases) {
|
|
getProductsAcronymsForTarget<AOT::RELEASE>(out, release, argHelper);
|
|
}
|
|
}
|
|
|
|
template <typename T>
|
|
std::vector<ConstStringRef> getProductsForTargetRange(T targetFrom, T targetTo, OclocArgHelper *argHelper) {
|
|
std::vector<ConstStringRef> ret{};
|
|
if (targetFrom > targetTo) {
|
|
std::swap(targetFrom, targetTo);
|
|
}
|
|
while (targetFrom <= targetTo) {
|
|
getProductsAcronymsForTarget<T>(ret, targetFrom, argHelper);
|
|
targetFrom = static_cast<T>(static_cast<unsigned int>(targetFrom) + 1);
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
std::vector<ConstStringRef> getProductsForRange(unsigned int productFrom, unsigned int productTo,
|
|
OclocArgHelper *argHelper) {
|
|
std::vector<ConstStringRef> ret = {};
|
|
auto &allSuppportedProducts = argHelper->productConfigHelper->getDeviceAotInfo();
|
|
|
|
for (const auto &device : allSuppportedProducts) {
|
|
auto validAcronym = device.aotConfig.value >= productFrom;
|
|
validAcronym &= device.aotConfig.value <= productTo;
|
|
|
|
if (validAcronym) {
|
|
if (!device.deviceAcronyms.empty()) {
|
|
ret.push_back(device.deviceAcronyms.front());
|
|
} else if (!device.rtlIdAcronyms.empty()) {
|
|
ret.push_back(device.rtlIdAcronyms.front());
|
|
}
|
|
}
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
std::vector<ConstStringRef> getProductForClosedRange(ConstStringRef rangeFrom, ConstStringRef rangeTo, OclocArgHelper *argHelper) {
|
|
std::vector<ConstStringRef> requestedProducts = {};
|
|
auto rangeToStr = rangeTo.str();
|
|
auto rangeFromStr = rangeFrom.str();
|
|
|
|
ProductConfigHelper::adjustDeviceName(rangeToStr);
|
|
ProductConfigHelper::adjustDeviceName(rangeFromStr);
|
|
|
|
auto familyFrom = argHelper->productConfigHelper->getFamilyFromDeviceName(rangeFromStr);
|
|
auto familyTo = argHelper->productConfigHelper->getFamilyFromDeviceName(rangeToStr);
|
|
if (familyFrom != AOT::UNKNOWN_FAMILY && familyTo != AOT::UNKNOWN_FAMILY) {
|
|
return getProductsForTargetRange(familyFrom, familyTo, argHelper);
|
|
}
|
|
|
|
auto releaseFrom = argHelper->productConfigHelper->getReleaseFromDeviceName(rangeFromStr);
|
|
auto releaseTo = argHelper->productConfigHelper->getReleaseFromDeviceName(rangeToStr);
|
|
if (releaseFrom != AOT::UNKNOWN_RELEASE && releaseTo != AOT::UNKNOWN_RELEASE) {
|
|
return getProductsForTargetRange(releaseFrom, releaseTo, argHelper);
|
|
}
|
|
|
|
auto prodConfigFrom = argHelper->productConfigHelper->getProductConfigFromDeviceName(rangeFromStr);
|
|
auto prodConfigTo = argHelper->productConfigHelper->getProductConfigFromDeviceName(rangeToStr);
|
|
if (prodConfigFrom != AOT::UNKNOWN_ISA && prodConfigTo != AOT::UNKNOWN_ISA) {
|
|
if (prodConfigFrom > prodConfigTo) {
|
|
std::swap(prodConfigFrom, prodConfigTo);
|
|
}
|
|
return getProductsForRange(prodConfigFrom, prodConfigTo, argHelper);
|
|
}
|
|
|
|
auto target = rangeFromStr + ":" + rangeToStr;
|
|
argHelper->printf("Failed to parse target : %s.\n", target.c_str());
|
|
return {};
|
|
}
|
|
|
|
std::vector<ConstStringRef> getProductForOpenRange(ConstStringRef openRange, OclocArgHelper *argHelper, bool rangeTo) {
|
|
std::vector<ConstStringRef> requestedProducts = {};
|
|
auto openRangeStr = openRange.str();
|
|
ProductConfigHelper::adjustDeviceName(openRangeStr);
|
|
|
|
auto family = argHelper->productConfigHelper->getFamilyFromDeviceName(openRangeStr);
|
|
if (family != AOT::UNKNOWN_FAMILY) {
|
|
if (rangeTo) {
|
|
unsigned int familyFrom = AOT::UNKNOWN_FAMILY;
|
|
++familyFrom;
|
|
return getProductsForTargetRange(static_cast<AOT::FAMILY>(familyFrom), family, argHelper);
|
|
} else {
|
|
unsigned int familyTo = AOT::FAMILY_MAX;
|
|
--familyTo;
|
|
return getProductsForTargetRange(family, static_cast<AOT::FAMILY>(familyTo), argHelper);
|
|
}
|
|
}
|
|
|
|
auto release = argHelper->productConfigHelper->getReleaseFromDeviceName(openRangeStr);
|
|
if (release != AOT::UNKNOWN_RELEASE) {
|
|
if (rangeTo) {
|
|
unsigned int releaseFrom = AOT::UNKNOWN_FAMILY;
|
|
++releaseFrom;
|
|
return getProductsForTargetRange(static_cast<AOT::RELEASE>(releaseFrom), release, argHelper);
|
|
} else {
|
|
unsigned int releaseTo = AOT::RELEASE_MAX;
|
|
--releaseTo;
|
|
return getProductsForTargetRange(release, static_cast<AOT::RELEASE>(releaseTo), argHelper);
|
|
}
|
|
}
|
|
|
|
auto product = argHelper->productConfigHelper->getProductConfigFromDeviceName(openRangeStr);
|
|
if (product != AOT::UNKNOWN_ISA) {
|
|
if (rangeTo) {
|
|
unsigned int productFrom = AOT::UNKNOWN_ISA;
|
|
++productFrom;
|
|
return getProductsForRange(productFrom, static_cast<unsigned int>(product), argHelper);
|
|
} else {
|
|
unsigned int productTo = AOT::CONFIG_MAX_PLATFORM;
|
|
--productTo;
|
|
return getProductsForRange(product, static_cast<AOT::PRODUCT_CONFIG>(productTo), argHelper);
|
|
}
|
|
}
|
|
argHelper->printf("Failed to parse target : %s.\n", openRangeStr.c_str());
|
|
return {};
|
|
}
|
|
|
|
std::vector<ConstStringRef> getProductForSpecificTarget(const CompilerOptions::TokenizedString &targets, OclocArgHelper *argHelper) {
|
|
std::vector<ConstStringRef> requestedConfigs;
|
|
for (const auto &target : targets) {
|
|
auto targetStr = target.str();
|
|
ProductConfigHelper::adjustDeviceName(targetStr);
|
|
|
|
auto family = argHelper->productConfigHelper->getFamilyFromDeviceName(targetStr);
|
|
if (family != AOT::UNKNOWN_FAMILY) {
|
|
getProductsAcronymsForTarget(requestedConfigs, family, argHelper);
|
|
continue;
|
|
}
|
|
auto release = argHelper->productConfigHelper->getReleaseFromDeviceName(targetStr);
|
|
if (release != AOT::UNKNOWN_RELEASE) {
|
|
getProductsAcronymsForTarget(requestedConfigs, release, argHelper);
|
|
continue;
|
|
}
|
|
auto product = argHelper->productConfigHelper->getProductConfigFromDeviceName(targetStr);
|
|
if (product != AOT::UNKNOWN_ISA) {
|
|
requestedConfigs.push_back(target);
|
|
continue;
|
|
}
|
|
argHelper->printf("Failed to parse target : %s - invalid device:\n", target.str().c_str());
|
|
return {};
|
|
}
|
|
return requestedConfigs;
|
|
}
|
|
|
|
std::vector<ConstStringRef> getTargetProductsForFatbinary(ConstStringRef deviceArg, OclocArgHelper *argHelper) {
|
|
std::vector<ConstStringRef> retVal;
|
|
if (deviceArg == "*") {
|
|
return argHelper->productConfigHelper->getRepresentativeProductAcronyms();
|
|
} else {
|
|
auto sets = CompilerOptions::tokenize(deviceArg, ',');
|
|
if (sets[0].contains(":")) {
|
|
auto range = CompilerOptions::tokenize(deviceArg, ':');
|
|
if (range.size() > 2) {
|
|
argHelper->printf("Invalid range : %s - should be from:to or :to or from:\n", sets[0].str().c_str());
|
|
return {};
|
|
}
|
|
if (range.size() == 1) {
|
|
bool rangeTo = (':' == sets[0][0]);
|
|
retVal = getProductForOpenRange(range[0], argHelper, rangeTo);
|
|
} else {
|
|
retVal = getProductForClosedRange(range[0], range[1], argHelper);
|
|
}
|
|
} else {
|
|
retVal = getProductForSpecificTarget(sets, argHelper);
|
|
}
|
|
}
|
|
return retVal;
|
|
}
|
|
|
|
int buildFatBinaryForTarget(int retVal, const std::vector<std::string> &argsCopy, std::string pointerSize, Ar::ArEncoder &fatbinary,
|
|
OfflineCompiler *pCompiler, OclocArgHelper *argHelper, const std::string &product) {
|
|
|
|
if (retVal == 0) {
|
|
retVal = buildWithSafetyGuard(pCompiler);
|
|
std::string buildLog = pCompiler->getBuildLog();
|
|
if (buildLog.empty() == false) {
|
|
argHelper->printf("%s\n", buildLog.c_str());
|
|
}
|
|
if (retVal == 0) {
|
|
if (!pCompiler->isQuiet())
|
|
argHelper->printf("Build succeeded for : %s.\n", product.c_str());
|
|
} else {
|
|
argHelper->printf("Build failed for : %s with error code: %d\n", product.c_str(), retVal);
|
|
argHelper->printf("Command was:");
|
|
for (const auto &arg : argsCopy)
|
|
argHelper->printf(" %s", arg.c_str());
|
|
argHelper->printf("\n");
|
|
}
|
|
}
|
|
if (retVal) {
|
|
return retVal;
|
|
}
|
|
|
|
std::string productConfig("");
|
|
if (product.find(".") != std::string::npos) {
|
|
productConfig = product;
|
|
} else {
|
|
productConfig = ProductConfigHelper::parseMajorMinorRevisionValue(argHelper->productConfigHelper->getProductConfigFromDeviceName(product));
|
|
}
|
|
|
|
fatbinary.appendFileEntry(pointerSize + "." + productConfig, pCompiler->getPackedDeviceBinaryOutput());
|
|
return retVal;
|
|
}
|
|
|
|
int buildFatBinary(const std::vector<std::string> &args, OclocArgHelper *argHelper) {
|
|
std::string pointerSizeInBits = (sizeof(void *) == 4) ? "32" : "64";
|
|
size_t deviceArgIndex = -1;
|
|
std::string inputFileName = "";
|
|
std::string outputFileName = "";
|
|
std::string outputDirectory = "";
|
|
bool spirvInput = false;
|
|
bool excludeIr = false;
|
|
std::set<std::string> deviceAcronymsFromDeviceOptions;
|
|
|
|
std::vector<std::string> argsCopy(args);
|
|
for (size_t argIndex = 1; argIndex < args.size(); argIndex++) {
|
|
const auto &currArg = args[argIndex];
|
|
const bool hasMoreArgs = (argIndex + 1 < args.size());
|
|
const bool hasAtLeast2MoreArgs = (argIndex + 2 < args.size());
|
|
if ((ConstStringRef("-device") == currArg) && hasMoreArgs) {
|
|
deviceArgIndex = argIndex + 1;
|
|
++argIndex;
|
|
} else if ((CompilerOptions::arch32bit == currArg) || (ConstStringRef("-32") == currArg)) {
|
|
pointerSizeInBits = "32";
|
|
} else if ((CompilerOptions::arch64bit == currArg) || (ConstStringRef("-64") == currArg)) {
|
|
pointerSizeInBits = "64";
|
|
} else if ((ConstStringRef("-file") == currArg) && hasMoreArgs) {
|
|
inputFileName = args[argIndex + 1];
|
|
++argIndex;
|
|
} else if (((ConstStringRef("-output") == currArg) || (ConstStringRef("-o") == currArg)) && hasMoreArgs) {
|
|
outputFileName = args[argIndex + 1];
|
|
++argIndex;
|
|
} else if ((ConstStringRef("-out_dir") == currArg) && hasMoreArgs) {
|
|
outputDirectory = args[argIndex + 1];
|
|
++argIndex;
|
|
} else if (ConstStringRef("-exclude_ir") == currArg) {
|
|
excludeIr = true;
|
|
} else if (ConstStringRef("-spirv_input") == currArg) {
|
|
spirvInput = true;
|
|
} else if (("-device_options" == currArg) && hasAtLeast2MoreArgs) {
|
|
const auto deviceAcronyms = CompilerOptions::tokenize(args[argIndex + 1], ',');
|
|
for (const auto &deviceAcronym : deviceAcronyms) {
|
|
deviceAcronymsFromDeviceOptions.insert(deviceAcronym.str());
|
|
}
|
|
argIndex += 2;
|
|
}
|
|
}
|
|
|
|
const bool shouldPreserveGenericIr = spirvInput && !excludeIr;
|
|
if (shouldPreserveGenericIr) {
|
|
argsCopy.push_back("-exclude_ir");
|
|
}
|
|
|
|
if (deviceArgIndex == static_cast<size_t>(-1)) {
|
|
argHelper->printf("Error! Command does not contain device argument!\n");
|
|
return OCLOC_INVALID_COMMAND_LINE;
|
|
}
|
|
|
|
Ar::ArEncoder fatbinary(true);
|
|
std::vector<ConstStringRef> targetProducts;
|
|
targetProducts = getTargetProductsForFatbinary(ConstStringRef(args[deviceArgIndex]), argHelper);
|
|
if (targetProducts.empty()) {
|
|
argHelper->printf("Failed to parse target devices from : %s\n", args[deviceArgIndex].c_str());
|
|
return 1;
|
|
}
|
|
|
|
for (const auto &deviceAcronym : deviceAcronymsFromDeviceOptions) {
|
|
if (std::find(targetProducts.begin(), targetProducts.end(), deviceAcronym) == targetProducts.end()) {
|
|
argHelper->printf("Warning! -device_options set for non-compiled device: %s\n", deviceAcronym.c_str());
|
|
}
|
|
}
|
|
std::string optionsForIr;
|
|
for (const auto &product : targetProducts) {
|
|
int retVal = 0;
|
|
argsCopy[deviceArgIndex] = product.str();
|
|
|
|
std::unique_ptr<OfflineCompiler> pCompiler{OfflineCompiler::create(argsCopy.size(), argsCopy, false, retVal, argHelper)};
|
|
if (OCLOC_SUCCESS != retVal) {
|
|
argHelper->printf("Error! Couldn't create OfflineCompiler. Exiting.\n");
|
|
return retVal;
|
|
}
|
|
|
|
retVal = buildFatBinaryForTarget(retVal, argsCopy, pointerSizeInBits, fatbinary, pCompiler.get(), argHelper, product.str());
|
|
if (retVal) {
|
|
return retVal;
|
|
}
|
|
if (optionsForIr.empty()) {
|
|
optionsForIr = pCompiler->getOptions();
|
|
}
|
|
}
|
|
|
|
if (shouldPreserveGenericIr) {
|
|
const auto errorCode = appendGenericIr(fatbinary, inputFileName, argHelper, optionsForIr);
|
|
if (errorCode != OCLOC_SUCCESS) {
|
|
argHelper->printf("Error! Couldn't append generic IR file!\n");
|
|
return errorCode;
|
|
}
|
|
}
|
|
|
|
auto fatbinaryData = fatbinary.encode();
|
|
std::string fatbinaryFileName = outputFileName;
|
|
if (outputFileName.empty() && (false == inputFileName.empty())) {
|
|
fatbinaryFileName = OfflineCompiler::getFileNameTrunk(inputFileName) + ".ar";
|
|
}
|
|
if (false == outputDirectory.empty()) {
|
|
fatbinaryFileName = outputDirectory + "/" + outputFileName;
|
|
}
|
|
argHelper->saveOutput(fatbinaryFileName, fatbinaryData.data(), fatbinaryData.size());
|
|
|
|
return 0;
|
|
}
|
|
|
|
int appendGenericIr(Ar::ArEncoder &fatbinary, const std::string &inputFile, OclocArgHelper *argHelper, std::string options) {
|
|
std::size_t fileSize = 0;
|
|
std::unique_ptr<char[]> fileContents = argHelper->loadDataFromFile(inputFile, fileSize);
|
|
if (fileSize == 0) {
|
|
argHelper->printf("Error! Couldn't read input file!\n");
|
|
return OCLOC_INVALID_FILE;
|
|
}
|
|
|
|
const auto ir = ArrayRef<const uint8_t>::fromAny(fileContents.get(), fileSize);
|
|
const auto opt = ArrayRef<const uint8_t>::fromAny(options.data(), options.size());
|
|
if (!isSpirVBitcode(ir)) {
|
|
argHelper->printf("Error! Input file is not in supported generic IR format! "
|
|
"Currently supported format is SPIR-V.\n");
|
|
return OCLOC_INVALID_FILE;
|
|
}
|
|
|
|
const auto encodedElf = createEncodedElfWithSpirv(ir, opt);
|
|
ArrayRef<const uint8_t> genericIrFile{encodedElf.data(), encodedElf.size()};
|
|
|
|
fatbinary.appendFileEntry("generic_ir", genericIrFile);
|
|
return OCLOC_SUCCESS;
|
|
}
|
|
|
|
std::vector<uint8_t> createEncodedElfWithSpirv(const ArrayRef<const uint8_t> &spirv, const ArrayRef<const uint8_t> &options) {
|
|
using namespace NEO::Elf;
|
|
ElfEncoder<EI_CLASS_64> elfEncoder;
|
|
elfEncoder.getElfFileHeader().type = ET_OPENCL_OBJECTS;
|
|
elfEncoder.appendSection(SHT_OPENCL_SPIRV, SectionNamesOpenCl::spirvObject, spirv);
|
|
elfEncoder.appendSection(SHT_OPENCL_OPTIONS, SectionNamesOpenCl::buildOptions, options);
|
|
|
|
return elfEncoder.encode();
|
|
}
|
|
|
|
} // namespace NEO
|