SWDEV-216213 - Function to lookup module functions from COMGR.

Change-Id: I3890fb188b5b3ae44d2bb161d1b7e75228e30942


[ROCm/clr commit: d961c64b00]
Cette révision appartient à :
kjayapra-amd
2020-03-18 12:44:24 -04:00
Parent 66ca4de8c4
révision 68fc604f5d
2 fichiers modifiés avec 10 ajouts et 0 suppressions
Fichier normal → Fichier exécutable
+9
Voir le fichier
@@ -2633,6 +2633,15 @@ const bool Program::getLoweredNames(std::vector<std::string>* mangledNames) cons
return false;
#endif
}
bool Program::getGlobalFuncFromCodeObj(std::vector<std::string>* func_names) const {
#if defined(USE_COMGR_LIBRARY)
return getSymbolsFromCodeObj(func_names, AMD_COMGR_SYMBOL_TYPE_FUNC);
#else
return true;
#endif
}
bool Program::getGlobalVarFromCodeObj(std::vector<std::string>* var_names) const {
#if defined(USE_COMGR_LIBRARY)
return getSymbolsFromCodeObj(var_names, AMD_COMGR_SYMBOL_TYPE_OBJECT);
Fichier normal → Fichier exécutable
+1
Voir le fichier
@@ -247,6 +247,7 @@ class Program : public amd::HeapObject {
//! Get mangled name of a name expresion
const bool getLoweredNames(std::vector<std::string>* mangledNames) const;
bool getGlobalFuncFromCodeObj(std::vector<std::string>* func_names) const;
bool getGlobalVarFromCodeObj(std::vector<std::string>* var_names) const;
bool getUndefinedVarFromCodeObj(std::vector<std::string>* var_names) const;