/* Copyright (c) 2015-present Advanced Micro Devices, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include "hiprtc_internal.hpp" #include #include "platform/program.hpp" namespace hiprtc { thread_local hiprtcResult g_lastRtcError = HIPRTC_SUCCESS; } class ProgramState { amd::Monitor lock_; private: static ProgramState* programState_; ProgramState() : lock_("Guards program state") {} ~ProgramState() {} public: std::unordered_map, std::vector>> progHeaders_; std::map> nameExpresssion_; static ProgramState& instance(); uint32_t addNameExpression(const char* name_expression); char* getLoweredName(const char* name_expression); }; ProgramState* ProgramState::programState_ = nullptr; ProgramState& ProgramState::instance() { if (programState_ == nullptr) { programState_ = new ProgramState; } return *programState_; } uint32_t ProgramState::addNameExpression(const char* name_expression) { amd::ScopedLock lock(lock_); // Strip clean of any '(' or ')' or '&' std::string strippedName(name_expression); if (strippedName.back() == ')') { strippedName.pop_back(); strippedName.erase(0, strippedName.find('(')); } if (strippedName.front() == '&') { strippedName.erase(0, 1); } auto it = nameExpresssion_.find(name_expression); if (it == nameExpresssion_.end()) { nameExpresssion_.insert(std::pair> (name_expression, std::make_pair(strippedName,""))); } return nameExpresssion_.size(); } char* demangle(const char* loweredName) { if (!loweredName) { return nullptr; } #if __linux__ int status = 0; char* demangledName = DEMANGLE(loweredName, nullptr, nullptr, &status); if (status != 0) { DevLogPrintfError("Cannot demangle loweredName: %s \n", loweredName); return nullptr; } #elif defined(_WIN32) char* demangledName = (char*)malloc(UNDECORATED_SIZE); if (!UnDecorateSymbolName(loweredName, demangledName, UNDECORATED_SIZE/ sizeof(*demangledName), UNDNAME_COMPLETE)) { free(demangledName); DevLogPrintfError("Cannot undecorate loweredName: %s demangledName: %s \n", loweredName, demangledName); return nullptr; } #else #error "Only Linux and Windows are supported" #endif // __linux__ return demangledName; } static std::string handleMangledName(std::string name) { std::string loweredName; char* demangled = demangle(name.c_str()); loweredName.assign(demangled == nullptr ? std::string() : demangled); free(demangled); if (loweredName.empty()) { return name; } if (loweredName.find(".kd") != std::string::npos) { return {}; } if (loweredName.find("void ") == 0) { loweredName.erase(0, strlen("void ")); } auto dx{loweredName.find_first_of("(<")}; if (dx == std::string::npos) { return loweredName; } if (loweredName[dx] == '<') { uint32_t count = 1; do { ++dx; count += (loweredName[dx] == '<') ? 1 : ((loweredName[dx] == '>') ? -1 : 0); } while (count); loweredName.erase(++dx); } else { loweredName.erase(dx); } return loweredName; } const char* hiprtcGetErrorString(hiprtcResult x) { switch (x) { case HIPRTC_SUCCESS: return "HIPRTC_SUCCESS"; case HIPRTC_ERROR_OUT_OF_MEMORY: return "HIPRTC_ERROR_OUT_OF_MEMORY"; case HIPRTC_ERROR_PROGRAM_CREATION_FAILURE: return "HIPRTC_ERROR_PROGRAM_CREATION_FAILURE"; case HIPRTC_ERROR_INVALID_INPUT: return "HIPRTC_ERROR_INVALID_INPUT"; case HIPRTC_ERROR_INVALID_PROGRAM: return "HIPRTC_ERROR_INVALID_PROGRAM"; case HIPRTC_ERROR_INVALID_OPTION: return "HIPRTC_ERROR_INVALID_OPTION"; case HIPRTC_ERROR_COMPILATION: return "HIPRTC_ERROR_COMPILATION"; case HIPRTC_ERROR_BUILTIN_OPERATION_FAILURE: return "HIPRTC_ERROR_BUILTIN_OPERATION_FAILURE"; case HIPRTC_ERROR_NO_NAME_EXPRESSIONS_AFTER_COMPILATION: return "HIPRTC_ERROR_NO_NAME_EXPRESSIONS_AFTER_COMPILATION"; case HIPRTC_ERROR_NO_LOWERED_NAMES_BEFORE_COMPILATION: return "HIPRTC_ERROR_NO_LOWERED_NAMES_BEFORE_COMPILATION"; case HIPRTC_ERROR_NAME_EXPRESSION_NOT_VALID: return "HIPRTC_ERROR_NAME_EXPRESSION_NOT_VALID"; case HIPRTC_ERROR_INTERNAL_ERROR: return "HIPRTC_ERROR_INTERNAL_ERROR"; default: DevLogPrintfError("Invalid HIPRTC error code: %d \n", x); return nullptr; }; ShouldNotReachHere(); return nullptr; } hiprtcResult hiprtcCreateProgram(hiprtcProgram* prog, const char* src, const char* name, int numHeaders, const char** headers, const char** headerNames) { HIPRTC_INIT_API(prog, src, name, numHeaders, headers, headerNames); if (prog == nullptr) { HIPRTC_RETURN(HIPRTC_ERROR_INVALID_PROGRAM); } if (numHeaders < 0) { HIPRTC_RETURN(HIPRTC_ERROR_INVALID_INPUT); } if (numHeaders && (headers == nullptr || headerNames == nullptr)) { HIPRTC_RETURN(HIPRTC_ERROR_INVALID_INPUT); } amd::Program* program = new amd::Program(*hip::getCurrentDevice()->asContext(), src, amd::Program::HIP, numHeaders, headers, headerNames); if (program == NULL) { HIPRTC_RETURN(HIPRTC_ERROR_INVALID_INPUT); } if (CL_SUCCESS != program->addDeviceProgram(*hip::getCurrentDevice()->devices()[0])) { program->release(); HIPRTC_RETURN(HIPRTC_ERROR_PROGRAM_CREATION_FAILURE); } *prog = reinterpret_cast(as_cl(program)); HIPRTC_RETURN(HIPRTC_SUCCESS); } hiprtcResult hiprtcCompileProgram(hiprtcProgram prog, int numOptions, const char** options) { // FIXME[skudchad] Add headers to amd::Program::build and device::Program::build, // pass the saved from ProgramState to amd::Program::build HIPRTC_INIT_API(prog, numOptions, options); amd::Program* program = as_amd(reinterpret_cast(prog)); std::ostringstream ostrstr; std::vector oarr(&options[0], &options[numOptions]); std::copy(oarr.begin(), oarr.end(), std::ostream_iterator(ostrstr, " ")); ostrstr.str().append(" -DHIP_VERSION_MAJOR=9"); ostrstr.str().append(" -DHIP_VERSION_MINOR=0"); std::vector devices{hip::getCurrentDevice()->devices()[0]}; if (CL_SUCCESS != program->build(devices, ostrstr.str().c_str(), nullptr, nullptr)) { HIPRTC_RETURN(HIPRTC_ERROR_COMPILATION); } HIPRTC_RETURN(HIPRTC_SUCCESS); } hiprtcResult hiprtcAddNameExpression(hiprtcProgram prog, const char* name_expression) { HIPRTC_INIT_API(prog, name_expression); if (name_expression == nullptr) { HIPRTC_RETURN(HIPRTC_ERROR_INVALID_INPUT); } amd::Program* program = as_amd(reinterpret_cast(prog)); uint32_t id = ProgramState::instance().addNameExpression(name_expression); const auto var{"__hiprtc_" + std::to_string(id)}; const auto code{"\nextern \"C\" constexpr auto " + var + " = " + name_expression + ';'}; program->appendToSource(code.c_str()); HIPRTC_RETURN(HIPRTC_SUCCESS); } hiprtcResult hiprtcGetLoweredName(hiprtcProgram prog, const char* name_expression, const char** loweredName) { HIPRTC_INIT_API(prog, name_expression, loweredName); if (name_expression == nullptr || loweredName == nullptr) { HIPRTC_RETURN(HIPRTC_ERROR_INVALID_INPUT); } amd::Program* program = as_amd(reinterpret_cast(prog)); device::Program* dev_program = program->getDeviceProgram(*hip::getCurrentDevice()->devices()[0]); auto it = ProgramState::instance().nameExpresssion_.find(name_expression); if (it == ProgramState::instance().nameExpresssion_.end()) { return HIPRTC_ERROR_NAME_EXPRESSION_NOT_VALID; } std::string strippedName = it->second.first; std::vector mangledNames; if (!dev_program->getLoweredNames(&mangledNames)) { HIPRTC_RETURN(HIPRTC_ERROR_COMPILATION); } for (auto &name : mangledNames) { std::string demangledName = handleMangledName(name); if (demangledName == strippedName) { it->second.second.assign(name); } } *loweredName = it->second.second.c_str(); HIPRTC_RETURN(HIPRTC_SUCCESS); } hiprtcResult hiprtcDestroyProgram(hiprtcProgram* prog) { HIPRTC_INIT_API(prog); if (prog == NULL) { HIPRTC_RETURN(HIPRTC_ERROR_INVALID_INPUT); } // Release program. hiprtcProgram is a double pointer so free *prog amd::Program* program = as_amd(reinterpret_cast(*prog)); program->release(); HIPRTC_RETURN(HIPRTC_SUCCESS); } hiprtcResult hiprtcGetCode(hiprtcProgram prog, char* binaryMem) { HIPRTC_INIT_API(prog, binaryMem); amd::Program* program = as_amd(reinterpret_cast(prog)); const device::Program::binary_t& binary = program->getDeviceProgram(*hip::getCurrentDevice()->devices()[0])->binary(); ::memcpy(binaryMem, binary.first, binary.second); HIPRTC_RETURN(HIPRTC_SUCCESS); } hiprtcResult hiprtcGetCodeSize(hiprtcProgram prog, size_t* binarySizeRet) { HIPRTC_INIT_API(prog, binarySizeRet); amd::Program* program = as_amd(reinterpret_cast(prog)); *binarySizeRet = program->getDeviceProgram(*hip::getCurrentDevice()->devices()[0])->binary().second; HIPRTC_RETURN(HIPRTC_SUCCESS); } hiprtcResult hiprtcGetProgramLog(hiprtcProgram prog, char* dst) { HIPRTC_INIT_API(prog, dst); amd::Program* program = as_amd(reinterpret_cast(prog)); const device::Program* devProgram = program->getDeviceProgram(*hip::getCurrentDevice()->devices()[0]); auto log = program->programLog() + devProgram->buildLog().c_str(); log.copy(dst, log.size()); dst[log.size()] = '\0'; HIPRTC_RETURN(HIPRTC_SUCCESS); } hiprtcResult hiprtcGetProgramLogSize(hiprtcProgram prog, size_t* logSizeRet) { HIPRTC_INIT_API(prog, logSizeRet); amd::Program* program = as_amd(reinterpret_cast(prog)); const device::Program* devProgram = program->getDeviceProgram(*hip::getCurrentDevice()->devices()[0]); auto log = program->programLog() + devProgram->buildLog().c_str(); *logSizeRet = log.size() + 1; HIPRTC_RETURN(HIPRTC_SUCCESS); } hiprtcResult hiprtcVersion(int* major, int* minor) { HIPRTC_INIT_API(major, minor); if (major == nullptr || minor == nullptr) { HIPRTC_RETURN(HIPRTC_ERROR_INVALID_INPUT); } *major = 9; *minor = 0; HIPRTC_RETURN(HIPRTC_SUCCESS); }