Searched refs:funcName (Results 1 – 5 of 5) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | TargetLibraryInfo.cpp | 963 static StringRef sanitizeFunctionName(StringRef funcName) { in sanitizeFunctionName() argument 966 if (funcName.empty() || funcName.contains('\0')) in sanitizeFunctionName() 971 return GlobalValue::dropLLVMManglingEscape(funcName); in sanitizeFunctionName() 984 bool TargetLibraryInfoImpl::getLibFunc(StringRef funcName, LibFunc &F) const { in getLibFunc() argument 985 funcName = sanitizeFunctionName(funcName); in getLibFunc() 986 if (funcName.empty()) in getLibFunc() 992 if (auto Loc = Indices.find(funcName); Loc != Indices.end()) { in getLibFunc() 1331 bool TargetLibraryInfoImpl::isFunctionVectorizable(StringRef funcName) const { in isFunctionVectorizable() 1332 funcName = sanitizeFunctionName(funcName); in isFunctionVectorizable() 1333 if (funcName.empty()) in isFunctionVectorizable() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | TargetLibraryInfo.h | 149 bool getLibFunc(StringRef funcName, LibFunc &F) const; 346 bool getLibFunc(StringRef funcName, LibFunc &F) const { in getLibFunc() argument 347 return Impl->getLibFunc(funcName, F); in getLibFunc()
|
| /freebsd/contrib/llvm-project/libunwind/src/ |
| H A D | AddressSpace.hpp | 682 char *funcName = getFuncNameFromTBTable(addr, nameLen, offset); in findFunctionName() 683 if (funcName != NULL) { in findFunctionName() 684 snprintf(buf, bufLen, "%.*s", nameLen, funcName); in findFunctionName()
|
| /freebsd/contrib/llvm-project/llvm/tools/bugpoint/ |
| H A D | Miscompilation.cpp | 848 GlobalVariable *funcName = new GlobalVariable( in CleanupAndPrepareModules() local 859 funcName, GEPargs); in CleanupAndPrepareModules()
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteModernObjC.cpp | 467 StringRef funcName, 469 std::string SynthesizeBlockFunc(BlockExpr *CE, int i, StringRef funcName, 475 StringRef funcName, unsigned hasCopy); 4038 StringRef funcName, in SynthesizeBlockFunc() argument 4048 funcName.str() + "_block_func_" + utostr(i); in SynthesizeBlockFunc() 4134 BlockExpr *CE, int i, StringRef funcName, const std::string &Tag) { in SynthesizeBlockHelperFuncs() argument 4138 S += funcName; in SynthesizeBlockHelperFuncs() 4158 S += funcName; in SynthesizeBlockHelperFuncs()
|