P4 to Git Change 1200677 by mbareghe@mbareghe_stg_win30 on 2015/10/16 10:11:30

SWDEV-78915 - SYCL - segfault building SPIR binary where the kernel name exceeds 255 characters - changed kernel/arg name type from char[] to string to avoid the 256 character limitation.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpukernel.cpp#304 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpukernel.hpp#122 edit
... //depot/stg/opencl/drivers/opencl/runtime/device/gpu/gpuprogram.cpp#211 edit
Этот коммит содержится в:
foreman
2015-10-16 10:20:54 -04:00
родитель 108aa6e8ee
Коммит fab877c56d
3 изменённых файлов: 6 добавлений и 8 удалений
+3 -5
Просмотреть файл
@@ -144,7 +144,7 @@ expect(const std::string& str, size_t* pos, const std::string& sym)
}
bool
getword(const std::string& str, size_t* pos, char* sym)
getword(const std::string& str, size_t* pos, std::string& sym)
{
if (*pos == std::string::npos) {
return false;
@@ -155,9 +155,7 @@ getword(const std::string& str, size_t* pos, char* sym)
size_t count = posEnd - *pos;
if (count != 0) {
if (!str.copy(sym, count, *pos)) {
return false;
}
sym = str.substr(*pos, count);
}
sym[count] = 0;
*pos = posEnd + 1;
@@ -2527,7 +2525,7 @@ NullKernel::parseArguments(const std::string& metaData, uint* uavRefCount)
break;
}
char argName[256];
std::string argName;
// Save the argument type
arg.type_ = ArgState[i].type_;