Skip to content

Commit 6ff79a0

Browse files
committed
refactor: remove excess cast to C-string and add const reference
Signed-off-by: Semenov Herman (Семенов Герман) <[email protected]>
1 parent c5d541d commit 6ff79a0

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

shared/offline_compiler/source/offline_compiler.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2018-2024 Intel Corporation
2+
* Copyright (C) 2018-2025 Intel Corporation
33
*
44
* SPDX-License-Identifier: MIT
55
*
@@ -936,7 +936,7 @@ int OfflineCompiler::initialize(size_t numArgs, const std::vector<std::string> &
936936
}
937937
}
938938

939-
retVal = deviceName.empty() ? OCLOC_SUCCESS : initHardwareInfo(deviceName.c_str());
939+
retVal = deviceName.empty() ? OCLOC_SUCCESS : initHardwareInfo(deviceName);
940940
if (retVal != OCLOC_SUCCESS) {
941941
argHelper->printf("Error: Cannot get HW Info for device %s.\n", deviceName.c_str());
942942
return retVal;

shared/source/compiler_interface/linux/compiler_cache_linux.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2023 Intel Corporation
2+
* Copyright (C) 2025 Intel Corporation
33
*
44
* SPDX-License-Identifier: MIT
55
*
@@ -63,7 +63,7 @@ bool CompilerCache::evictCache(uint64_t &bytesEvicted) {
6363
for (int i = 0; i < filesCount; ++i) {
6464
ElementsStruct fileElement = {};
6565
fileElement.path = joinPath(config.cacheDir, files[i]->d_name);
66-
if (NEO::SysCalls::stat(fileElement.path.c_str(), &fileElement.statEl) == 0) {
66+
if (NEO::SysCalls::stat(fileElement.path, &fileElement.statEl) == 0) {
6767
cacheFiles.push_back(std::move(fileElement));
6868
}
6969
free(files[i]);
@@ -177,7 +177,7 @@ void CompilerCache::lockConfigFileAndReadSize(const std::string &configFilePath,
177177
if (fileName.find(config.cacheFileExtension) != fileName.npos) {
178178
ElementsStruct fileElement = {};
179179
fileElement.path = joinPath(config.cacheDir, files[i]->d_name);
180-
if (NEO::SysCalls::stat(fileElement.path.c_str(), &fileElement.statEl) == 0) {
180+
if (NEO::SysCalls::stat(fileElement.path, &fileElement.statEl) == 0) {
181181
cacheFiles.push_back(std::move(fileElement));
182182
}
183183
}

shared/source/execution_environment/execution_environment_drm_or_wddm.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2022-2024 Intel Corporation
2+
* Copyright (C) 2022-2025 Intel Corporation
33
*
44
* SPDX-License-Identifier: MIT
55
*
@@ -42,16 +42,16 @@ void ExecutionEnvironment::configureCcsMode() {
4242
return;
4343
}
4444

45-
const std::string drmPath = "/sys/class/drm";
45+
const std::string &drmPath = "/sys/class/drm";
4646
std::string expectedFilePrefix = drmPath + "/card";
47-
auto files = Directory::getFiles(drmPath.c_str());
47+
const auto &files = Directory::getFiles(drmPath);
4848
for (const auto &file : files) {
4949
if (file.find(expectedFilePrefix.c_str()) == std::string::npos) {
5050
continue;
5151
}
5252

5353
std::string gtPath = file + "/gt";
54-
auto gtFiles = Directory::getFiles(gtPath.c_str());
54+
const auto &gtFiles = Directory::getFiles(gtPath);
5555
expectedFilePrefix = gtPath + "/gt";
5656
for (const auto &gtFile : gtFiles) {
5757
if (gtFile.find(expectedFilePrefix.c_str()) == std::string::npos) {

shared/source/helpers/linux/path.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2024 Intel Corporation
2+
* Copyright (C) 2025 Intel Corporation
33
*
44
* SPDX-License-Identifier: MIT
55
*
@@ -15,7 +15,7 @@ namespace NEO {
1515
bool pathExists(const std::string &path) {
1616
struct stat statbuf = {};
1717

18-
if (NEO::SysCalls::stat(path.c_str(), &statbuf) == -1) {
18+
if (NEO::SysCalls::stat(path, &statbuf) == -1) {
1919
return false;
2020
}
2121

shared/source/kernel/kernel_descriptor_from_patchtokens.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2020-2024 Intel Corporation
2+
* Copyright (C) 2020-2025 Intel Corporation
33
*
44
* SPDX-License-Identifier: MIT
55
*
@@ -113,7 +113,7 @@ void populateKernelDescriptor(KernelDescriptor &dst, const SPatchDataParameterSt
113113

114114
void populateKernelDescriptor(KernelDescriptor &dst, const SPatchKernelAttributesInfo &token) {
115115
constexpr ConstStringRef attributeReqdSubGroupSizeBeg = "intel_reqd_sub_group_size(";
116-
std::string attributes = std::string(reinterpret_cast<const char *>(&token + 1), token.AttributesSize).c_str();
116+
const auto &attributes = std::string(reinterpret_cast<const char *>(&token + 1), token.AttributesSize);
117117
dst.kernelMetadata.kernelLanguageAttributes = attributes;
118118
auto it = attributes.find(attributeReqdSubGroupSizeBeg.begin());
119119
if (it != std::string::npos) {
@@ -460,7 +460,7 @@ void populateArgDescriptor(KernelDescriptor &dst, size_t argNum, const PatchToke
460460

461461
void populateKernelDescriptor(KernelDescriptor &dst, const PatchTokenBinary::KernelFromPatchtokens &src, uint32_t gpuPointerSizeInBytes) {
462462
UNRECOVERABLE_IF(nullptr == src.header);
463-
dst.kernelMetadata.kernelName = std::string(src.name.begin(), src.name.end()).c_str();
463+
dst.kernelMetadata.kernelName = std::string(src.name.begin(), src.name.end());
464464
populateKernelDescriptorIfNotNull(dst, src.tokens.executionEnvironment);
465465
populateKernelDescriptorIfNotNull(dst, src.tokens.samplerStateArray);
466466
populateKernelDescriptorIfNotNull(dst, src.tokens.bindingTableState);

shared/source/os_interface/linux/drm_neo.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2018-2024 Intel Corporation
2+
* Copyright (C) 2018-2025 Intel Corporation
33
*
44
* SPDX-License-Identifier: MIT
55
*
@@ -189,7 +189,7 @@ bool Drm::readSysFsAsString(const std::string &relativeFilePath, std::string &re
189189
return false;
190190
}
191191

192-
const std::string fileName = devicePath + relativeFilePath;
192+
const std::string &fileName = devicePath + relativeFilePath;
193193
int fd = SysCalls::open(fileName.c_str(), O_RDONLY);
194194
if (fd < 0) {
195195
return false;

shared/source/os_interface/windows/wddm/wddm.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2018-2024 Intel Corporation
2+
* Copyright (C) 2018-2025 Intel Corporation
33
*
44
* SPDX-License-Identifier: MIT
55
*
@@ -302,7 +302,7 @@ bool Wddm::queryAdapterInfo() {
302302
memcpy_s(&gfxPartition, sizeof(gfxPartition), &adapterInfo.GfxPartition, sizeof(GMM_GFX_PARTITIONING));
303303
memcpy_s(&adapterBDF, sizeof(adapterBDF), &adapterInfo.stAdapterBDF, sizeof(ADAPTER_BDF));
304304

305-
deviceRegistryPath = std::string(adapterInfo.DeviceRegistryPath, sizeof(adapterInfo.DeviceRegistryPath)).c_str();
305+
deviceRegistryPath = std::string(adapterInfo.DeviceRegistryPath, sizeof(adapterInfo.DeviceRegistryPath));
306306

307307
systemSharedMemory = adapterInfo.SystemSharedMemory;
308308
dedicatedVideoMemory = adapterInfo.DedicatedVideoMemory;

0 commit comments

Comments
 (0)