Initialize all undef symbols with a magic poison (#1962)

Этот коммит содержится в:
Siu Chi Chan
2020-03-26 07:36:09 -04:00
коммит произвёл GitHub
родитель 12448996e3
Коммит d822daa3a5
+5 -2
Просмотреть файл
@@ -355,8 +355,11 @@ public:
const auto it1 = get_symbol_addresses().find(x);
if (it1 == get_symbol_addresses().cend()) {
hip_throw(std::runtime_error{
"Global symbol: " + x + " is undefined."});
// For a unknown symbol, initialize it with a magic poison
hsa_executable_agent_global_variable_define(
executable, agent, x.c_str(),
reinterpret_cast<void*>(0xDEADBEEFDEADBEEFull));
continue;
}
hsa_status_t status;