Searched refs:funcName (Results 1 – 7 of 7) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | TargetLibraryInfo.cpp | 986 static StringRef sanitizeFunctionName(StringRef funcName) { in sanitizeFunctionName() argument 989 if (funcName.empty() || funcName.contains('\0')) in sanitizeFunctionName() 994 return GlobalValue::dropLLVMManglingEscape(funcName); in sanitizeFunctionName() 1007 bool TargetLibraryInfoImpl::getLibFunc(StringRef funcName, LibFunc &F) const { in getLibFunc() argument 1008 funcName = sanitizeFunctionName(funcName); in getLibFunc() 1009 if (funcName.empty()) in getLibFunc() 1015 if (auto Loc = Indices.find(funcName); Loc != Indices.end()) { in getLibFunc() 1433 bool TargetLibraryInfoImpl::isFunctionVectorizable(StringRef funcName) const { in isFunctionVectorizable() 1434 funcName = sanitizeFunctionName(funcName); in isFunctionVectorizable() 1435 if (funcName.empty()) in isFunctionVectorizable() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | TargetLibraryInfo.h | 152 LLVM_ABI bool getLibFunc(StringRef funcName, LibFunc &F) const; 352 bool getLibFunc(StringRef funcName, LibFunc &F) const { in getLibFunc() argument 353 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/clang/lib/CIR/CodeGen/ |
| H A D | CIRGenCall.cpp | 570 StringRef funcName; in emitCall() local 572 funcName = calleeFuncOp.getName(); in emitCall()
|
| /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 | RewriteObjC.cpp | 375 StringRef funcName, std::string Tag); 377 StringRef funcName, std::string Tag); 382 int i, StringRef funcName, 3251 StringRef funcName, in SynthesizeBlockFunc() argument 3257 funcName.str() + "_" + "block_func_" + utostr(i); in SynthesizeBlockFunc() 3343 StringRef funcName, in SynthesizeBlockHelperFuncs() argument 3348 S += funcName; in SynthesizeBlockHelperFuncs() 3368 S += funcName; in SynthesizeBlockHelperFuncs()
|
| H A D | RewriteModernObjC.cpp | 466 StringRef funcName, 468 std::string SynthesizeBlockFunc(BlockExpr *CE, int i, StringRef funcName, 474 StringRef funcName, unsigned hasCopy); 4038 StringRef funcName, in SynthesizeBlockFunc() argument 4048 funcName.str() + "_block_func_" + utostr(i); in SynthesizeBlockFunc() 4131 BlockExpr *CE, int i, StringRef funcName, const std::string &Tag) { in SynthesizeBlockHelperFuncs() argument 4135 S += funcName; in SynthesizeBlockHelperFuncs() 4155 S += funcName; in SynthesizeBlockHelperFuncs()
|