| 30 | namespace impala { |
| 31 | |
| 32 | bool CodegenCallGraph::IsDefinedInImpalad(const string& fn_name) { |
| 33 | void* fn_ptr = nullptr; |
| 34 | // Looking up fn in process so mtime is set to -1 (no versioning issue). |
| 35 | Status status = |
| 36 | LibCache::instance()->GetSoFunctionPtr("", fn_name, -1, &fn_ptr, nullptr, true); |
| 37 | return status.ok(); |
| 38 | } |
| 39 | |
| 40 | void CodegenCallGraph::FindGlobalUsers( |
| 41 | llvm::User* val, vector<llvm::GlobalObject*>* users) { |
nothing calls this directly
no test coverage detected