Searched refs:funcName (Results 1 – 7 of 7) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | TargetLibraryInfo.cpp | 921 static StringRef sanitizeFunctionName(StringRef funcName) { in sanitizeFunctionName() argument 924 if (funcName.empty() || funcName.contains('\0')) in sanitizeFunctionName() 929 return GlobalValue::dropLLVMManglingEscape(funcName); in sanitizeFunctionName() 932 bool TargetLibraryInfoImpl::getLibFunc(StringRef funcName, LibFunc &F) const { in getLibFunc() argument 933 funcName = sanitizeFunctionName(funcName); in getLibFunc() 934 if (funcName.empty()) in getLibFunc() 939 const auto *I = std::lower_bound(Start, End, funcName); in getLibFunc() 940 if (I != End && *I == funcName) { in getLibFunc() 1207 bool TargetLibraryInfoImpl::isFunctionVectorizable(StringRef funcName) const { in isFunctionVectorizable() 1208 funcName = sanitizeFunctionName(funcName); in isFunctionVectorizable() [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/ |
| H A D | TargetLibraryInfo.h | 114 bool getLibFunc(StringRef funcName, LibFunc &F) const; 306 bool getLibFunc(StringRef funcName, LibFunc &F) const { in getLibFunc() argument 307 return Impl->getLibFunc(funcName, F); in getLibFunc()
|
| /openbsd-src/gnu/llvm/libunwind/src/ |
| H A D | AddressSpace.hpp | 722 char *funcName = getFuncNameFromTBTable(addr, nameLen, offset); in findFunctionName() 723 if (funcName != NULL) { in findFunctionName() 724 snprintf(buf, bufLen, "%.*s", nameLen, funcName); in findFunctionName()
|
| /openbsd-src/gnu/llvm/lld/wasm/ |
| H A D | Writer.cpp | 789 const std::string &funcName = commandExportWrapperNames.back(); in createCommandExportWrappers() local 791 auto func = make<SyntheticFunction>(*f->getSignature(), funcName); in createCommandExportWrappers() 798 symtab->addSyntheticFunction(funcName, f->flags, func); in createCommandExportWrappers()
|
| /openbsd-src/gnu/llvm/llvm/tools/bugpoint/ |
| H A D | Miscompilation.cpp | 848 GlobalVariable *funcName = new GlobalVariable( in CleanupAndPrepareModules() local 859 funcName, GEPargs); in CleanupAndPrepareModules()
|
| /openbsd-src/gnu/llvm/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 377 StringRef funcName, std::string Tag); 379 StringRef funcName, std::string Tag); 384 int i, StringRef funcName, 3253 StringRef funcName, in SynthesizeBlockFunc() argument 3259 funcName.str() + "_" + "block_func_" + utostr(i); in SynthesizeBlockFunc() 3345 StringRef funcName, in SynthesizeBlockHelperFuncs() argument 3350 S += funcName; in SynthesizeBlockHelperFuncs() 3370 S += funcName; in SynthesizeBlockHelperFuncs()
|
| H A D | RewriteModernObjC.cpp | 468 StringRef funcName, std::string Tag); 470 StringRef funcName, std::string Tag); 475 int i, StringRef funcName, 4040 StringRef funcName, in SynthesizeBlockFunc() argument 4050 funcName.str() + "_block_func_" + utostr(i); in SynthesizeBlockFunc() 4136 StringRef funcName, in SynthesizeBlockHelperFuncs() argument 4141 S += funcName; in SynthesizeBlockHelperFuncs() 4161 S += funcName; in SynthesizeBlockHelperFuncs()
|