MCPcopy Create free account
hub / github.com/Samsung/UTopia / nextInLink

Method nextInLink

lib/rootdefanalysis/RDSpace.cpp:122–129  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

120}
121
122std::set<llvm::Instruction *> RDSpace::nextInLink(const llvm::Function &F) {
123 auto Iter = LinkMap.find(const_cast<llvm::Function *>(&F));
124 if (Iter == LinkMap.end())
125 return {};
126
127 assert(Iter->second && "Unexpected Program State");
128 return nextInCallee(*Iter->second, true);
129}
130
131bool RDSpace::isEntryFunction(Function &F) const {
132 return std::find(EntryFuncs.begin(), EntryFuncs.end(), &F) !=

Callers 1

traceLinkMethod · 0.80

Calls 2

endMethod · 0.80
findMethod · 0.45

Tested by

no test coverage detected