MCPcopy Create free account
hub / github.com/AliveToolkit/alive2 / findFunction

Function findFunction

llvm_util/utils.cpp:545–548  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

543}
544
545llvm::Function *findFunction(llvm::Module &M, const string &FName) {
546 auto F = M.getFunction(FName);
547 return F && !F->isDeclaration() ? F : nullptr;
548}
549
550TailCallInfo parse_fn_tailcall(const llvm::CallInst &i) {
551 bool is_tailcall = i.isTailCall() || i.isMustTailCall();

Callers 2

mainFunction · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected