mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
These error codes are used as return codes from ocloc api. As such, it's useful to have them defined in the ocloc api header. Signed-off-by: Chodor, Jaroslaw <jaroslaw.chodor@intel.com>
29 lines
904 B
C++
29 lines
904 B
C++
/*
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/offline_compiler/source/ocloc_api.h"
|
|
#include "shared/offline_compiler/source/offline_compiler.h"
|
|
#include "shared/offline_compiler/source/offline_linker.h"
|
|
#include "shared/offline_compiler/source/utilities/linux/safety_guard_linux.h"
|
|
#include "shared/source/os_interface/os_library.h"
|
|
|
|
using namespace NEO;
|
|
|
|
int buildWithSafetyGuard(OfflineCompiler *compiler) {
|
|
SafetyGuardLinux safetyGuard;
|
|
int retVal = OCLOC_COMPILATION_CRASH;
|
|
|
|
return safetyGuard.call<int, OfflineCompiler, decltype(&OfflineCompiler::build)>(compiler, &OfflineCompiler::build, retVal);
|
|
}
|
|
|
|
int linkWithSafetyGuard(OfflineLinker *linker) {
|
|
SafetyGuardLinux safetyGuard{};
|
|
int returnValueOnCrash{OCLOC_COMPILATION_CRASH};
|
|
|
|
return safetyGuard.call(linker, &OfflineLinker::execute, returnValueOnCrash);
|
|
}
|