HomeSort by: relevance | last modified time | path
    Searched defs:getLibFunc (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
TargetLibraryInfo.cpp 689 bool TargetLibraryInfoImpl::getLibFunc(StringRef funcName, LibFunc &F) const {
1583 bool TargetLibraryInfoImpl::getLibFunc(const Function &FDecl,
1592 return getLibFunc(FDecl.getName(), F) &&
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
TargetLibraryInfo.h 110 bool getLibFunc(StringRef funcName, LibFunc &F) const;
117 bool getLibFunc(const Function &FDecl, LibFunc &F) const;
237 if (getLibFunc(AttrStr, LF))
278 bool getLibFunc(StringRef funcName, LibFunc &F) const {
279 return Impl->getLibFunc(funcName, F);
282 bool getLibFunc(const Function &FDecl, LibFunc &F) const {
283 return Impl->getLibFunc(FDecl, F);
288 bool getLibFunc(const CallBase &CB, LibFunc &F) const {
290 getLibFunc(*(CB.getCalledFunction()), F);

Completed in 21 milliseconds