MCPcopy Create free account
hub / github.com/apache/impala / IsDefinedInImpalad

Method IsDefinedInImpalad

be/src/codegen/codegen-callgraph.cc:32–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30namespace impala {
31
32bool 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
40void CodegenCallGraph::FindGlobalUsers(
41 llvm::User* val, vector<llvm::GlobalObject*>* users) {

Callers

nothing calls this directly

Calls 2

GetSoFunctionPtrMethod · 0.80
okMethod · 0.45

Tested by

no test coverage detected