| 2138 | } |
| 2139 | |
| 2140 | bool Program::getGlobalFuncFromCodeObj(std::vector<std::string>* func_names) const { |
| 2141 | return getSymbolsFromCodeObj(func_names, AMD_COMGR_SYMBOL_TYPE_FUNC); |
| 2142 | } |
| 2143 | |
| 2144 | bool Program::getGlobalVarFromCodeObj(std::vector<std::string>* var_names) const { |
| 2145 | return getSymbolsFromCodeObj(var_names, AMD_COMGR_SYMBOL_TYPE_OBJECT); |
no outgoing calls
no test coverage detected